Browse Source

修改阈值分数为0.4

罗俊辉 11 tháng trước cách đây
mục cha
commit
8103a31463
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      deal/videos_deal.py

+ 1 - 1
deal/videos_deal.py

@@ -90,7 +90,7 @@ class VideoDeal(object):
             print(i)
         result_list_final = []
         for index, item in enumerate(result_list):
-            if score_list[index] > 0.5:
+            if score_list[index] > 0.4:
                 result_list_final.append(item)
         return self.response_obj(result_list_final)