Browse Source

增加从实验参数中获取阈值功能 未获取情况下使用全局阈值

gufengshou1 1 year ago
parent
commit
ac296fb0f1

+ 0 - 1
ad-engine-service/src/main/java/com/tzld/piaoquan/ad/engine/service/predict/model/threshold/ScoreV2ThresholdPredictModel.java

@@ -107,7 +107,6 @@ public class ScoreV2ThresholdPredictModel extends ThresholdPredictModel {
         result.put("threshold", threshold);
         result.put("score", maxItem == null ? -1 : maxItem.getScore());
         result.put("ad_predict", adPredict);
-        log.info("svc=predict modelName=modelV2 result={}", JSONObject.toJSONString(result));
 
         return result;
     }