From f1aae027dc7f41f6f84006b7847c8e91ec080f40 Mon Sep 17 00:00:00 2001 From: Jiawei Wang Date: Tue, 31 Mar 2020 16:10:07 +0800 Subject: [PATCH] fix echo info test=serving --- tools/serving_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/serving_build.sh b/tools/serving_build.sh index 381a366c..2001b643 100644 --- a/tools/serving_build.sh +++ b/tools/serving_build.sh @@ -220,7 +220,7 @@ function python_run_criteo_ctr_with_cube() { VAR2="0.67" #TODO: temporarily relax the threshold to 0.67 RES=$( echo "$AUC>$VAR2" | bc ) if [[ $RES -eq 0 ]]; then - echo "error with criteo_ctr_with_cube inference auc test, auc should > 0.70" + echo "error with criteo_ctr_with_cube inference auc test, auc should > 0.67" exit 1 fi echo "criteo_ctr_with_cube inference auc test success" @@ -246,7 +246,7 @@ function python_run_criteo_ctr_with_cube() { VAR2="0.67" #TODO: temporarily relax the threshold to 0.67 RES=$( echo "$AUC>$VAR2" | bc ) if [[ $RES -eq 0 ]]; then - echo "error with criteo_ctr_with_cube inference auc test, auc should > 0.70" + echo "error with criteo_ctr_with_cube inference auc test, auc should > 0.67" exit 1 fi echo "criteo_ctr_with_cube inference auc test success" -- GitLab