Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
ffm-baseline
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ML
ffm-baseline
Commits
12c83c1e
Commit
12c83c1e
authored
Jan 01, 2019
by
王志伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://git.wanmeizhensuo.com/ML/ffm-baseline
parents
d8cdc1f2
3cead548
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
5 deletions
+17
-5
sort_and_2sql.py
eda/esmm/Model_pipline/sort_and_2sql.py
+1
-1
submit.sh
eda/esmm/Model_pipline/submit.sh
+1
-1
EsmmData.scala
eda/feededa/src/main/scala/com/gmei/EsmmData.scala
+15
-3
No files found.
eda/esmm/Model_pipline/sort_and_2sql.py
View file @
12c83c1e
...
...
@@ -19,7 +19,7 @@ def con_sql(sql):
return
result
def
set_join
(
lst
):
return
','
.
join
([
str
(
i
)
for
i
in
se
t
(
lst
)])
return
','
.
join
([
str
(
i
)
for
i
in
lis
t
(
lst
)])
def
main
():
...
...
eda/esmm/Model_pipline/submit.sh
View file @
12c83c1e
...
...
@@ -27,7 +27,7 @@ echo "Bayes Error Rate" : $((repe_feat*100/all_sample))%
echo
"split data"
split
-l
$((
`
wc
-l
<
${
DATA_PATH
}
/tr.csv
`
/
15
))
${
DATA_PATH
}
/tr.csv
-d
-a
4
${
DATA_PATH
}
/tr/tr_
--additional-suffix
=
.csv
split
-l
$((
`
wc
-l
<
${
DATA_PATH
}
/va.csv
`
/
5
))
${
DATA_PATH
}
/va.csv
-d
-a
4
${
DATA_PATH
}
/va/va_
--additional-suffix
=
.csv
split
-l
$((
`
wc
-l
<
${
DATA_PATH
}
/native.csv
`
/
5
))
${
DATA_PATH
}
/native.csv
-d
-a
4
${
DATA_PATH
}
/native/native_
--additional-suffix
=
.csv
split
-l
$((
`
wc
-l
<
${
DATA_PATH
}
/native.csv
`
/
1
5
))
${
DATA_PATH
}
/native.csv
-d
-a
4
${
DATA_PATH
}
/native/native_
--additional-suffix
=
.csv
split
-l
$((
`
wc
-l
<
${
DATA_PATH
}
/nearby.csv
`
/
5
))
${
DATA_PATH
}
/nearby.csv
-d
-a
4
${
DATA_PATH
}
/nearby/nearby_
--additional-suffix
=
.csv
echo
"csv to tfrecord"
...
...
eda/feededa/src/main/scala/com/gmei/EsmmData.scala
View file @
12c83c1e
...
...
@@ -310,7 +310,7 @@ object EsmmPredData {
// native_data
val
native_data
=
sc
.
sql
(
s
"""
|select distinct a.device_id,a.city_id,b.native_queue from data_feed_
click
a
|select distinct a.device_id,a.city_id,b.native_queue from data_feed_
exposure
a
|left join (select if(city_id='world','worldwide',city_id) city_id,native_queue from biz_feed_diary_queue) b
|on a.city_id = b.city_id
|where a.stat_date='${yesteday_have_seq}' and b.native_queue != ""
...
...
@@ -417,9 +417,21 @@ object EsmmPredData {
|and d.partition_date='${yesteday}'
"""
.
stripMargin
)
union_data_scity_id
.
createOrReplaceTempView
(
"union_data_scity_id"
)
val
union_data_scity_id2
=
sc
.
sql
(
s
"""
|select device_id,cid_id,first(stat_date) stat_date,first(ucity_id) ucity_id,first(label) label,first(diary_service_id)diary_service_id,first(y) y,
|first(z) z,first(clevel1_id) clevel1_id,first(slevel1_id) slevel1_id,first(ccity_name) ccity_name,first(scity_id) scity_id
|from union_data_scity_id
|group by device_id,cid_id
"""
.
stripMargin
)
// union_data_scity_id.createOrReplaceTempView("union_data_scity_id")
println
(
union_data_scity_id
.
count
())
GmeiConfig
.
writeToJDBCTable
(
"jdbc:mysql://10.66.157.22:4000/jerry_test?user=root&password=3SYz54LS9#^9sBvC&rewriteBatchedStatements=true"
,
union_data_scity_id
,
table
=
"esmm_pre_data"
,
SaveMode
.
Overwrite
)
println
(
union_data_scity_id
2
.
count
())
GmeiConfig
.
writeToJDBCTable
(
"jdbc:mysql://10.66.157.22:4000/jerry_test?user=root&password=3SYz54LS9#^9sBvC&rewriteBatchedStatements=true"
,
union_data_scity_id
2
,
table
=
"esmm_pre_data"
,
SaveMode
.
Overwrite
)
...
...
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