Commit 9282a18b authored by 赵威's avatar 赵威

add timer

parent 341be451
......@@ -120,8 +120,20 @@ def clicked_tractate_ids_item2vec_model_by_ids(ids, n=5):
res.extend(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_by_ids ids={} n={} cost {:.3f}ms".format(
ids, n, time_end * 1000))
timer_dict = {
"method": "clicked_tractate_ids_item2vec_model_by_ids",
"api": "strategy_embedding/word_vector/tractate_item2vec_by_ids",
"ids": ids,
"n": n,
"total_timer": "{:.3f}ms".format(time_end * 1000)
}
msg_res = ""
for (k, v) in timer_dict.items():
msg_res += str(k)
msg_res += ": "
msg_res += str(v)
msg_res += "\n"
send_performance_msg_to_dingtalk(msg_res)
return res
except Exception as e:
send_msg_to_dingtalk(str(traceback.format_exc()))
......
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