|
@@ -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)
|