Commit bc2780f3 authored by 赵威's avatar 赵威

update timer format

parent b33120f5
......@@ -34,7 +34,8 @@ 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 {:.3f}ms".format(time_end * 1000))
send_performance_msg_to_dingtalk("match_tractate_by_device {} n={} cost {:.3f}ms".format(
device_id, n, time_end * 1000))
return res
except Exception as e:
send_msg_to_dingtalk(str(traceback.format_exc()))
......
......@@ -92,7 +92,8 @@ 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 {:.3f}ms".format(time_end * 1000))
send_performance_msg_to_dingtalk("clicked_tractate_ids_item2vec_model id={} n={} cost {:.3f}ms".format(
id, n, 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