diff --git a/unimore_bda_6/analysis/base.py b/unimore_bda_6/analysis/base.py index d1c3c8a..93d7c2e 100644 --- a/unimore_bda_6/analysis/base.py +++ b/unimore_bda_6/analysis/base.py @@ -40,6 +40,8 @@ class BaseSentimentAnalyzer(metaclass=abc.ABCMeta): Perform a model evaluation by calling repeatedly `.use` on every text of the test dataset and by comparing its resulting category with the expected category. """ + # TODO: Add precision and recall measures + evaluated: int = 0 perfect: int = 0