Browse Source

feat:飞书添加真实CTCVR

zhaohaipeng 6 tháng trước cách đây
mục cha
commit
1344a290d3
1 tập tin đã thay đổi với 4 bổ sung2 xóa
  1. 4 2
      ad/01_ad_model_update.sh

+ 4 - 2
ad/01_ad_model_update.sh

@@ -84,9 +84,11 @@ send_success_upload_msg(){
   msg+="\n\t - 模型在HDFS中的路径: ${model_save_path}"
   msg+="\n\t - 模型上传OSS中的路径: ${MODEL_OSS_PATH}/${model_name}.tar.gz"
   
-  local top10_msg="| CID  | 真实CTCVR  | 老模型    | 新模型    | \n| ---- | -------- | -------- | -------- | "
+  local top10_msg="| CID  | 老模型相对真实CTCVR的变化 | 新模型相对真实CTCVR的变化 |"
+    top10_msg+=" \n| ---- | --------- | -------- |"
+
   for cid in "${!new_score_map[@]}"; do
-    top10_msg="${top10_msg} \n| ${cid} | ${real_score_map[$cid]} | ${old_score_map[$cid]} | ${new_score_map[$cid]} | "
+    top10_msg="${top10_msg} \n| ${cid} | ${old_score_map[$cid]} | ${new_score_map[$cid]} | "
   done
 
   local step_end_time=$(date +%s)