Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.2-incubating
-
None
-
Mac OS X
Description
While using the Evaluation Class I kept getting this error:
NameError: global name '_should_run_regular_metrics' is not defined
I looked at the method, and it should be prepend with 'self.' when calling it. I also noticed other private methods didn't include self in their function definition.
_run_no_subregion_evaluation() vs. _run_no_subregion_evaluation(self)
_should_run_regular_metrics() vs. _should_run_regular_metrics(self)
This issue will fix these issue by adding more self to the Class definition. I also plan to add some new tests to run a couple evaluations and exercise the run() method a bit.