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
b0896276
Commit
b0896276
authored
Dec 31, 2021
by
宋柯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
模型上线
parent
62c71856
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
5 deletions
+28
-5
featureEngSk.py
spark/featureEngSk.py
+28
-5
No files found.
spark/featureEngSk.py
View file @
b0896276
...
...
@@ -153,6 +153,20 @@ def getPredictItemStaticFeatures(itemStatisticDays):
itemStatisticDF
=
spark
.
sql
(
itemStatisticSql
)
# itemStatisticDF.show(100, False)
partitionDatas
=
generatePredictPartitionDates
(
itemStatisticDays
)
partitionDatasBC
=
spark
.
sparkContext
.
broadcast
(
partitionDatas
)
def
splitPatitionDatasFlatMapFunc
(
row
):
card_id
=
row
.
card_id
label
=
row
.
label
partition_date_label_count_list
=
row
.
partition_date_label_count_list
partition_date_label_count_dcit
=
dict
(
map
(
lambda
s
:
(
s
.
split
(
'_'
)[
0
],
s
.
split
(
'_'
)[
1
]),
partition_date_label_count_list
))
res
=
[]
for
partition_date
in
partitionDatasBC
.
value
:
res
.
append
((
card_id
,
partition_date
,
label
,
partition_date_label_count_dcit
.
get
(
partition_date
,
'0'
)))
return
res
itemStatisticDF
=
itemStatisticDF
.
rdd
.
flatMap
(
splitPatitionDatasFlatMapFunc
)
.
toDF
([
"card_id"
,
"partition_date"
,
"label"
,
"label_count"
])
itemStatisticDF
.
createOrReplaceTempView
(
"predictItemStatisticDF"
)
...
...
@@ -761,13 +775,16 @@ def getItemStatisticSql(start, end):
def
getPredictItemStatisticSql
(
start
,
end
):
sql
=
"""
SELECT TT.card_id, TT.label, count(1) as label_count
SELECT TTT.card_id, TTT.label, COLLECT_LIST(CONCAT(TTT.partition_date, '_', TTT.label_count)) partition_date_label_count_list
FROM
(
SELECT TT.partition_date, TT.card_id, TT.label, count(1) as label_count
FROM
(
SELECT
T.card_id, T.label
SELECT T.partition_date,
T.card_id, T.label
FROM
(
SELECT
t1.card_id, 1 as label
SELECT t1.partition_date,
t1.card_id, 1 as label
FROM
(
select cl_id, business_id as card_id
...
...
@@ -808,7 +825,7 @@ def getPredictItemStatisticSql(start, end):
on t3.device_id=t2.device_id
WHERE t3.device_id is null
UNION
SELECT
t1.card_id, 0 as label
SELECT t1.partition_date,
t1.card_id, 0 as label
from
( --新首页卡片曝光
SELECT cl_id, card_id
...
...
@@ -854,7 +871,10 @@ def getPredictItemStatisticSql(start, end):
WHERE t3.device_id is null
) T
) TT
GROUP BY TT.card_id, TT.label
GROUP BY TT.partition_date, TT.card_id, TT.label
) TTT
GROUP BY TTT.card_id, TTT.label
"""
.
format
(
startDay
=
start
,
endDay
=
end
)
print
(
sql
)
return
sql
...
...
@@ -1010,6 +1030,9 @@ def addDays(n, format="%Y%m%d"):
def
generatePartitionDates
(
partitionDates
):
return
[
addDays
(
-
trainDay
-
1
)
for
trainDay
in
range
(
partitionDates
)]
def
generatePredictPartitionDates
(
partitionDates
):
return
[
addDays
(
-
trainDay
)
for
trainDay
in
range
(
partitionDates
)]
#显示所有列
pd
.
set_option
(
'display.max_columns'
,
None
)
#显示所有行
...
...
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