Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
serviceRec
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
郭羽
serviceRec
Commits
eff7b4c2
Commit
eff7b4c2
authored
Dec 15, 2021
by
宋柯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
模型调试
parent
f3f46616
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
43 deletions
+53
-43
featureEngSk.py
spark/featureEngSk.py
+53
-43
No files found.
spark/featureEngSk.py
View file @
eff7b4c2
...
...
@@ -863,7 +863,7 @@ def addDays(n, format="%Y%m%d"):
return
(
date
.
today
()
+
timedelta
(
days
=
n
))
.
strftime
(
format
)
def
generatePartitionDates
(
partitionDates
):
return
[
addDays
(
-
trainDay
)
for
trainDay
in
range
(
partitionDates
)]
return
[
addDays
(
-
trainDay
-
1
)
for
trainDay
in
range
(
partitionDates
)]
#显示所有列
pd
.
set_option
(
'display.max_columns'
,
None
)
...
...
@@ -873,8 +873,8 @@ pd.set_option('display.max_rows', None)
pd
.
set_option
(
'max_colwidth'
,
100
)
def
get_click_exp_start_end_time
(
trainDays
):
startDay
=
addDays
(
-
int
(
trainDays
))
endDay
=
addDays
(
0
)
startDay
=
addDays
(
-
int
(
trainDays
)
-
1
)
endDay
=
addDays
(
-
1
)
print
(
"click_exp_start_end_time: {}, {}"
.
format
(
startDay
,
endDay
),
flush
=
True
)
return
startDay
,
endDay
...
...
@@ -943,7 +943,7 @@ if __name__ == '__main__':
itemEsFeatureDF
=
get_item_es_feature_df
()
#计算 item 统计特征
clickStaticFeatures
,
expStaticFeatures
=
getItemStaticFeatures
(
itemStatisticStartDays
+
trainDays
,
startDay
,
endDay
)
clickStaticFeatures
,
expStaticFeatures
=
getItemStaticFeatures
(
itemStatisticStartDays
+
trainDays
+
1
,
startDay
,
endDay
)
#user Profile Feature
userProfileFeatureDF
=
getUserProfileFeature
(
spark
,
addDays
(
-
trainDays
-
1
,
format
=
"
%
Y-
%
m-
%
d"
),
addDays
(
-
1
,
format
=
"
%
Y-
%
m-
%
d"
))
...
...
@@ -957,42 +957,40 @@ if __name__ == '__main__':
.
withColumnRenamed
(
"device_id"
,
USER_PREFIX
+
CATEGORY_PREFIX
+
"device_id"
)
\
.
withColumnRenamed
(
"os"
,
USER_PREFIX
+
CATEGORY_PREFIX
+
"os"
)
\
.
withColumnRenamed
(
"user_city_id"
,
USER_PREFIX
+
CATEGORY_PREFIX
+
"user_city_id"
)
\
.
drop
(
"partition_date"
,
"timestamp"
)
# | -- card_id: string(nullable=true)
# | -- partition_date: string(nullable=true)
# | -- device_id: string(nullable=true)
# | -- timestamp: long(nullable=true)
# | -- os: string(nullable=true)
# | -- user_city_id: string(nullable=true)
.
drop
(
"timestamp"
)
# | -- ITEM_CATEGORY_card_id: string(nullable=false)
# | -- USER_CATEGORY_device_id: string(nullable=false)
# | -- USER_CATEGORY_os: string(nullable=false)
# | -- USER_CATEGORY_user_city_id: string(nullable=false)
# | -- label: integer(nullable=false)
# | --
second_solutions: string(nullable=tru
e)
# | --
second_demands: string(nullable=tru
e)
# | --
second_positions: string(nullable=tru
e)
# | --
projects: string(nullable=tru
e)
# | -- ITEM_NUMERIC_click_count_sum: double(nullable=
tru
e)
# | -- ITEM_NUMERIC_click_count_avg: double(nullable=
tru
e)
# | -- ITEM_NUMERIC_click_count_stddev: double(nullable=
tru
e)
# | -- ITEM_NUMERIC_exp_count_sum: double(nullable=
tru
e)
# | -- ITEM_NUMERIC_exp_count_avg: double(nullable=
tru
e)
# | -- ITEM_NUMERIC_exp_count_stddev: double(nullable=
tru
e)
# | -- ITEM_NUMERIC_discount: double(nullable=
tru
e)
# | -- ITEM_NUMERIC_case_count: long(nullable=
tru
e)
# | -- ITEM_NUMERIC_sales_count: long(nullable=
tru
e)
# | -- ITEM_CATEGORY_service_type: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_merchant_id: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_doctor_type: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_doctor_id: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_doctor_famous: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_hospital_id: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_hospital_city_tag_id: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_hospital_type: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_hospital_is_high_quality: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_second_demands: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_second_solutions: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_second_positions: string(nullable=
tru
e)
# | -- ITEM_CATEGORY_projects: string(nullable=
tru
e)
# | -- ITEM_NUMERIC_sku_price: double(nullable=
tru
e)
# | --
USER_MULTI_CATEGORY_second_solutions: string(nullable=fals
e)
# | --
USER_MULTI_CATEGORY_second_demands: string(nullable=fals
e)
# | --
USER_MULTI_CATEGORY_second_positions: string(nullable=fals
e)
# | --
USER_MULTI_CATEGORY_projects: string(nullable=fals
e)
# | -- ITEM_NUMERIC_click_count_sum: double(nullable=
fals
e)
# | -- ITEM_NUMERIC_click_count_avg: double(nullable=
fals
e)
# | -- ITEM_NUMERIC_click_count_stddev: double(nullable=
fals
e)
# | -- ITEM_NUMERIC_exp_count_sum: double(nullable=
fals
e)
# | -- ITEM_NUMERIC_exp_count_avg: double(nullable=
fals
e)
# | -- ITEM_NUMERIC_exp_count_stddev: double(nullable=
fals
e)
# | -- ITEM_NUMERIC_discount: double(nullable=
fals
e)
# | -- ITEM_NUMERIC_case_count: long(nullable=
fals
e)
# | -- ITEM_NUMERIC_sales_count: long(nullable=
fals
e)
# | -- ITEM_CATEGORY_service_type: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_merchant_id: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_doctor_type: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_doctor_id: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_doctor_famous: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_hospital_id: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_hospital_city_tag_id: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_hospital_type: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_hospital_is_high_quality: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_second_demands: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_second_solutions: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_second_positions: string(nullable=
fals
e)
# | -- ITEM_CATEGORY_projects: string(nullable=
fals
e)
# | -- ITEM_NUMERIC_sku_price: double(nullable=
fals
e)
#
fields
=
[
field
.
name
for
field
in
samples
.
schema
.
fields
]
multi_categoty_fields
=
[]
...
...
@@ -1010,17 +1008,29 @@ if __name__ == '__main__':
fields_na_value_dict
[
field
]
=
0
samples
=
samples
.
na
.
fill
(
fields_na_value_dict
)
.
coalesce
(
1
)
samples
.
cache
()
samples
.
printSchema
()
samples
.
show
(
20
,
False
)
test_samples
=
samples
.
where
(
"partition_date = '{}'"
.
format
(
endDay
))
train_samples
=
samples
.
where
(
"partition_date <> '{}'"
.
format
(
endDay
))
train_samples
.
cache
()
train_samples
.
show
(
20
,
False
)
write_time_start
=
time
.
time
()
for
categoty_field
in
categoty_fields
:
output_file
=
"file:///home/gmuser/"
+
categoty_field
+
"_vocab"
samples
.
select
(
categoty_field
)
.
where
(
F
.
col
(
categoty_field
)
!=
'-1'
)
.
distinct
()
.
write
.
mode
(
"overwrite"
)
.
options
(
header
=
"false"
)
.
csv
(
output_file
)
train_
samples
.
select
(
categoty_field
)
.
where
(
F
.
col
(
categoty_field
)
!=
'-1'
)
.
distinct
()
.
write
.
mode
(
"overwrite"
)
.
options
(
header
=
"false"
)
.
csv
(
output_file
)
for
multi_categoty_field
in
multi_categoty_fields
:
output_file
=
"file:///home/gmuser/"
+
multi_categoty_field
+
"_vocab"
samples
.
selectExpr
(
"explode(split({multi_categoty_field},','))"
.
format
(
multi_categoty_field
=
multi_categoty_field
))
.
where
(
F
.
col
(
multi_categoty_field
)
!=
'-1'
)
.
distinct
()
.
write
.
mode
(
"overwrite"
)
.
options
(
header
=
"false"
)
.
csv
(
output_file
)
train_samples
.
selectExpr
(
"explode(split({multi_categoty_field},','))"
.
format
(
multi_categoty_field
=
multi_categoty_field
))
.
where
(
F
.
col
(
multi_categoty_field
)
!=
'-1'
)
.
distinct
()
.
write
.
mode
(
"overwrite"
)
.
options
(
header
=
"false"
)
.
csv
(
output_file
)
output_file
=
"file:///home/gmuser/train_samples"
train_samples
.
write
.
mode
(
"overwrite"
)
.
options
(
header
=
"false"
)
.
csv
(
output_file
)
output_file
=
"file:///home/gmuser/test_samples"
test_samples
.
write
.
mode
(
"overwrite"
)
.
options
(
header
=
"false"
)
.
csv
(
output_file
)
print
(
"训练数据写入 耗时s:{}"
.
format
(
time
.
time
()
-
write_time_start
))
print
(
"总耗时:{} mins"
.
format
((
time
.
time
()
-
start
)
/
60
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment