Commit 7f0c2545 authored by 段英荣's avatar 段英荣

modify

parent 55c5647b
...@@ -14,7 +14,7 @@ from django.conf import settings ...@@ -14,7 +14,7 @@ from django.conf import settings
class LinUCB: class LinUCB:
d = 2 d = 2
alpha = 0.01 alpha = 0.25
r1 = 10 r1 = 10
r0 = -0.5 r0 = -0.5
default_tag_list = list() default_tag_list = list()
...@@ -87,10 +87,10 @@ class LinUCB: ...@@ -87,10 +87,10 @@ class LinUCB:
for top_score_index in np_score_dict[top_score]: for top_score_index in np_score_dict[top_score]:
tag_id = str(tag_list[top_score_index], encoding="utf-8") tag_id = str(tag_list[top_score_index], encoding="utf-8")
top_tag_dict[tag_id] = top_score top_tag_dict[tag_id] = top_score
if len(top_tag_dict) >= 5: if len(top_tag_dict) >= 10:
break break
if len(top_tag_dict) >= 5: if len(top_tag_dict) >= 10:
break break
logging.info("duan add,device_id:%s,sorted_np_score_list:%s,np_score_dict:%s" % (str(device_id), str(sorted_np_score_list), str(np_score_dict))) logging.info("duan add,device_id:%s,sorted_np_score_list:%s,np_score_dict:%s" % (str(device_id), str(sorted_np_score_list), str(np_score_dict)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment