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
ca6c4e6f
Commit
ca6c4e6f
authored
5 years ago
by
张彦钊
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'zhao' into 'master'
把没有用户画像的日记队列也写到数据表 See merge request
!35
parents
cbd0f705
e671a9bb
master
mr/beta/bug22
offic
rtt
updatedb
zhao22
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
topic.py
copy_doris/topic.py
+0
-0
rerank_esmm.py
eda/esmm/Model_pipline/rerank_esmm.py
+2
-2
rerank.py
rerank.py
+4
-2
No files found.
copy_doris/topic.py
0 → 100644
View file @
ca6c4e6f
This diff is collapsed.
Click to expand it.
eda/esmm/Model_pipline/rerank_esmm.py
View file @
ca6c4e6f
...
@@ -87,7 +87,7 @@ def get_queues(device_id,city_id):
...
@@ -87,7 +87,7 @@ def get_queues(device_id,city_id):
def
tag_boost
(
cid_str
,
tag_list
):
def
tag_boost
(
cid_str
,
tag_list
):
if
cid_str
is
not
None
and
cid_str
!=
""
:
if
cid_str
is
not
None
and
cid_str
!=
""
and
len
(
tag_list
)
>
0
:
cids
=
cid_str
.
split
(
","
)
cids
=
cid_str
.
split
(
","
)
try
:
try
:
if
len
(
cids
)
>
6
and
len
(
tag_list
)
>
0
:
if
len
(
cids
)
>
6
and
len
(
tag_list
)
>
0
:
...
@@ -183,7 +183,7 @@ if __name__ == "__main__":
...
@@ -183,7 +183,7 @@ if __name__ == "__main__":
for
uid_city
in
child_users_list
:
for
uid_city
in
child_users_list
:
tag_list
=
get_user_profile
(
uid_city
[
0
])
tag_list
=
get_user_profile
(
uid_city
[
0
])
queues
=
get_queues
(
uid_city
[
0
],
uid_city
[
1
])
queues
=
get_queues
(
uid_city
[
0
],
uid_city
[
1
])
if
len
(
queues
)
>
0
and
len
(
tag_list
)
>
0
:
if
len
(
queues
)
>
0
:
new_native
=
tag_boost
(
queues
[
0
],
tag_list
)
new_native
=
tag_boost
(
queues
[
0
],
tag_list
)
new_nearby
=
tag_boost
(
queues
[
1
],
tag_list
)
new_nearby
=
tag_boost
(
queues
[
1
],
tag_list
)
...
...
This diff is collapsed.
Click to expand it.
rerank.py
View file @
ca6c4e6f
...
@@ -90,7 +90,7 @@ def get_queues(device_id,city_id):
...
@@ -90,7 +90,7 @@ def get_queues(device_id,city_id):
def
tag_boost
(
cid_str
,
tag_list
):
def
tag_boost
(
cid_str
,
tag_list
):
if
cid_str
is
not
None
and
cid_str
!=
""
:
if
cid_str
is
not
None
and
cid_str
!=
""
and
len
(
tag_list
)
!=
0
:
cids
=
cid_str
.
split
(
","
)
cids
=
cid_str
.
split
(
","
)
try
:
try
:
if
len
(
cids
)
>
6
and
len
(
tag_list
)
>
0
:
if
len
(
cids
)
>
6
and
len
(
tag_list
)
>
0
:
...
@@ -196,7 +196,7 @@ if __name__ == "__main__":
...
@@ -196,7 +196,7 @@ if __name__ == "__main__":
for
uid_city
in
child_users_list
:
for
uid_city
in
child_users_list
:
tag_list
=
get_user_profile
(
uid_city
[
0
])
tag_list
=
get_user_profile
(
uid_city
[
0
])
queues
=
get_queues
(
uid_city
[
0
],
uid_city
[
1
])
queues
=
get_queues
(
uid_city
[
0
],
uid_city
[
1
])
if
len
(
queues
)
>
0
and
len
(
tag_list
)
>
0
:
if
len
(
queues
)
>
0
:
new_native
=
tag_boost
(
queues
[
0
],
tag_list
)
new_native
=
tag_boost
(
queues
[
0
],
tag_list
)
new_nearby
=
tag_boost
(
queues
[
1
],
tag_list
)
new_nearby
=
tag_boost
(
queues
[
1
],
tag_list
)
...
@@ -209,6 +209,8 @@ if __name__ == "__main__":
...
@@ -209,6 +209,8 @@ if __name__ == "__main__":
df
=
df
.
rename
(
columns
=
{
0
:
"device_id"
,
1
:
"city_id"
,
2
:
"native_queue"
,
df
=
df
.
rename
(
columns
=
{
0
:
"device_id"
,
1
:
"city_id"
,
2
:
"native_queue"
,
3
:
"nearby_queue"
,
4
:
"nation_queue"
,
5
:
"megacity_queue"
,
6
:
"time"
})
3
:
"nearby_queue"
,
4
:
"nation_queue"
,
5
:
"megacity_queue"
,
6
:
"time"
})
print
(
"数量"
)
print
(
df
.
shape
[
0
])
to_data_base
(
df
)
to_data_base
(
df
)
...
...
This diff is collapsed.
Click to expand it.
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