From e0d0a15e5c8a95e54ef892aa3b701a6ed88332bc Mon Sep 17 00:00:00 2001 From: guochaorong Date: Thu, 16 Aug 2018 22:39:36 +0800 Subject: [PATCH] disable test_precision for model_sequence_tagging_for_ner --- fluid/sequence_tagging_for_ner/_ce.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluid/sequence_tagging_for_ner/_ce.py b/fluid/sequence_tagging_for_ner/_ce.py index 111a4d56..b6066701 100644 --- a/fluid/sequence_tagging_for_ner/_ce.py +++ b/fluid/sequence_tagging_for_ner/_ce.py @@ -8,7 +8,7 @@ from kpi import CostKpi, DurationKpi, AccKpi #### NOTE kpi.py should shared in models in some way!!!! train_acc_kpi = AccKpi('train_precision', 0.005, actived=True) -test_acc_kpi = CostKpi('test_precision', 0.005, actived=True) +test_acc_kpi = CostKpi('test_precision', 0.005, actived=False) train_duration_kpi = DurationKpi('train_duration', 0.05, actived=True) tracking_kpis = [ -- GitLab