Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
P
physical
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
钟尚武
physical
Commits
e1f6d1b0
Commit
e1f6d1b0
authored
Mar 08, 2019
by
段英荣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify linucb
parent
2489e092
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
collect_data.py
linucb/views/collect_data.py
+9
-9
No files found.
linucb/views/collect_data.py
View file @
e1f6d1b0
...
@@ -103,7 +103,7 @@ class CollectData(object):
...
@@ -103,7 +103,7 @@ class CollectData(object):
reward
=
1
if
is_click
or
is_vote
else
0
reward
=
1
if
is_click
or
is_vote
else
0
logging
.
info
(
"positive tag_list,device_id:
%
s,t
ag_list:
%
s"
%
(
str
(
device
_id
),
str
(
tag_list
)))
logging
.
info
(
"positive tag_list,device_id:
%
s,t
opic_id:
%
s,tag_list:
%
s"
%
(
str
(
device_id
),
str
(
topic
_id
),
str
(
tag_list
)))
for
tag_id
in
tag_list
:
for
tag_id
in
tag_list
:
self
.
update_user_linucb_tag_info
(
reward
,
device_id
,
tag_id
,
user_feature
)
self
.
update_user_linucb_tag_info
(
reward
,
device_id
,
tag_id
,
user_feature
)
...
@@ -121,17 +121,17 @@ class CollectData(object):
...
@@ -121,17 +121,17 @@ class CollectData(object):
for
sql_item
in
sql_query_results
:
for
sql_item
in
sql_query_results
:
tag_list
.
append
(
sql_item
.
tag_id
)
tag_list
.
append
(
sql_item
.
tag_id
)
is_click
=
0
is_click
=
0
is_vote
=
0
is_vote
=
0
reward
=
1
if
is_click
or
is_vote
else
0
reward
=
1
if
is_click
or
is_vote
else
0
logging
.
info
(
"negative tag_list,device_id:
%
s,tag_list:
%
s"
%
(
str
(
device
_id
),
str
(
tag_list
)))
logging
.
info
(
"negative tag_list,device_id:
%
s,topic_id:
%
s,tag_list:
%
s"
%
(
str
(
device_id
),
str
(
exposure_topic
_id
),
str
(
tag_list
)))
for
tag_id
in
tag_list
:
for
tag_id
in
tag_list
:
self
.
update_user_linucb_tag_info
(
reward
,
device_id
,
tag_id
,
user_feature
)
self
.
update_user_linucb_tag_info
(
reward
,
device_id
,
tag_id
,
user_feature
)
# 更新该用户的推荐tag数据,放在 更新完成user tag行为信息之后
# 更新该用户的推荐tag数据,放在 更新完成user tag行为信息之后
self
.
update_recommend_tag_list
(
device_id
,
user_feature
)
self
.
update_recommend_tag_list
(
device_id
,
user_feature
)
else
:
else
:
logging
.
warning
(
"unknown type msg:
%
s"
%
raw_val_dict
.
get
(
"type"
,
"missing type"
))
logging
.
warning
(
"unknown type msg:
%
s"
%
raw_val_dict
.
get
(
"type"
,
"missing type"
))
...
...
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