Commit fb8d0a68 authored by 赵威's avatar 赵威

update time format

parent 013bcf0b
......@@ -34,7 +34,7 @@ def match_tractate_by_device(device_id, n=10):
res = I.tolist()[0]
time_end = time.time() - time_begin
if time_end > 0.04:
send_performance_msg_to_dingtalk("match_tractate_by_device cost {:.5f}s".format(time_end))
send_performance_msg_to_dingtalk("match_tractate_by_device cost {:.3f}ms".format(time_end * 1000))
return res
except Exception as e:
send_msg_to_dingtalk(str(traceback.format_exc()))
......
......@@ -92,7 +92,7 @@ def clicked_tractate_ids_item2vec_model(id, n=5):
res = TRACTATE_CLICK_IDS_MODEL.wv.most_similar(id, topn=n)
time_end = time.time() - time_begin
if time_end > 0.04:
send_performance_msg_to_dingtalk("clicked_tractate_ids_item2vec_model cost {:.5f}s".format(time_end))
send_performance_msg_to_dingtalk("clicked_tractate_ids_item2vec_model cost {:.3f}ms".format(time_end * 1000))
return res
except KeyError as e:
# send_msg_to_dingtalk("tractate_item2vec: " + str(e))
......
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