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
58f22a26
Commit
58f22a26
authored
Jun 11, 2021
by
郭羽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
美购精排模型耗时优化
parent
57937d89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
27 deletions
+28
-27
featureEng.py
spark/featureEng.py
+28
-27
No files found.
spark/featureEng.py
View file @
58f22a26
...
...
@@ -311,8 +311,8 @@ def featuresToRedis(samples,columns,prefix,redisKey):
k
=
d
[
idCol
]
v
=
json
.
dumps
(
d
.
asDict
(),
ensure_ascii
=
False
)
newKey
=
redisKey
+
k
conn
.
set
(
newKey
,
v
)
conn
.
expire
(
newKey
,
60
*
60
*
24
*
7
)
#
conn.set(newKey, v)
#
conn.expire(newKey, 60 * 60 * 24 * 7)
#根据timestamp获取每个user最新的记录
prefixSamples
=
samples
.
groupBy
(
idCol
)
.
agg
(
F
.
max
(
"timestamp"
)
.
alias
(
timestampCol
))
...
...
@@ -698,30 +698,30 @@ if __name__ == '__main__':
timestmp6
=
int
(
round
(
time
.
time
()))
print
(
"item feature to redis 耗时s:{}"
.
format
(
timestmp6
-
timestmp5
))
# model columns
print
(
"model columns to redis..."
)
model_columns
=
user_columns
+
item_columns
featureColumnsToRedis
(
model_columns
)
train_columns
=
model_columns
+
[
"label"
,
"timestamp"
]
trainSamples
=
samplesWithUserFeatures
.
select
(
*
train_columns
)
print
(
"write to hdfs start..."
)
splitTimestamp
=
int
(
time
.
mktime
(
time
.
strptime
(
endDay
,
"
%
Y
%
m
%
d"
)))
splitAndSaveTrainingTestSamplesByTimeStamp
(
trainSamples
,
splitTimestamp
,
TRAIN_FILE_PATH
)
print
(
"write to hdfs success..."
)
timestmp7
=
int
(
round
(
time
.
time
()))
print
(
"数据写入hdfs 耗时s:{}"
.
format
(
timestmp7
-
timestmp6
))
# 离散数据字典生成
print
(
"数据字典生成..."
)
dataVocab
=
getDataVocab
(
samplesWithUserFeatures
)
timestmp8
=
int
(
round
(
time
.
time
()))
print
(
"数据字典生成 耗时s:{}"
.
format
(
timestmp8
-
timestmp7
))
# 字典转为json 存入redis
print
(
"数据字典存入redis..."
)
dataVocabStr
=
json
.
dumps
(
dataVocab
,
ensure_ascii
=
False
)
dataVocabToRedis
(
dataVocabStr
)
timestmp9
=
int
(
round
(
time
.
time
()))
print
(
"总耗时s:{}"
.
format
(
timestmp9
-
timestmp8
))
#
#
model columns
#
print("model columns to redis...")
#
model_columns = user_columns + item_columns
#
featureColumnsToRedis(model_columns)
#
#
train_columns = model_columns + ["label", "timestamp"]
#
trainSamples = samplesWithUserFeatures.select(*train_columns)
#
print("write to hdfs start...")
#
splitTimestamp = int(time.mktime(time.strptime(endDay, "%Y%m%d")))
#
splitAndSaveTrainingTestSamplesByTimeStamp(trainSamples, splitTimestamp, TRAIN_FILE_PATH)
#
print("write to hdfs success...")
#
timestmp7 = int(round(time.time()))
#
print("数据写入hdfs 耗时s:{}".format(timestmp7 - timestmp6))
#
#
#
离散数据字典生成
#
print("数据字典生成...")
#
dataVocab = getDataVocab(samplesWithUserFeatures)
#
timestmp8 = int(round(time.time()))
#
print("数据字典生成 耗时s:{}".format(timestmp8 - timestmp7))
#
#
字典转为json 存入redis
#
print("数据字典存入redis...")
#
dataVocabStr = json.dumps(dataVocab, ensure_ascii=False)
#
dataVocabToRedis(dataVocabStr)
#
timestmp9 = int(round(time.time()))
#
print("总耗时s:{}".format(timestmp9 - timestmp8))
spark
.
stop
()
\ No newline at end of file
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