From 2b05b010ff189f270849145b7e3e90fe48ed42b0 Mon Sep 17 00:00:00 2001 From: typhoonzero Date: Mon, 16 Apr 2018 13:14:11 +0800 Subject: [PATCH] fix chunk evaluator name in metrics --- python/paddle/fluid/metrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/paddle/fluid/metrics.py b/python/paddle/fluid/metrics.py index 99a81c1d424..68e75bbb1fa 100644 --- a/python/paddle/fluid/metrics.py +++ b/python/paddle/fluid/metrics.py @@ -169,7 +169,7 @@ class Accuracy(MetricBase): return self.value / self.weight -class ChunkEvalutor(MetricBase): +class ChunkEvaluator(MetricBase): """ Accumulate counter numbers output by chunk_eval from mini-batches and compute the precision recall and F1-score using the accumulated counter -- GitLab