Repository: climate Updated Branches: refs/heads/master a69f5545f -> c93ba05b0
Minor docstring fix, swap shape of Evaluation.results Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/b664ba4b Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/b664ba4b Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/b664ba4b Branch: refs/heads/master Commit: b664ba4b128102d81d88904edc5728acb069471e Parents: 26b6c91 Author: cgoodale <[email protected]> Authored: Mon Oct 20 08:43:12 2014 -0700 Committer: cgoodale <[email protected]> Committed: Mon Oct 20 08:43:12 2014 -0700 ---------------------------------------------------------------------- ocw/evaluation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/b664ba4b/ocw/evaluation.py ---------------------------------------------------------------------- diff --git a/ocw/evaluation.py b/ocw/evaluation.py index a27a27f..237ea27 100644 --- a/ocw/evaluation.py +++ b/ocw/evaluation.py @@ -90,13 +90,13 @@ class Evaluation(object): self._subregions = subregions #: A list containing the results of running regular metric evaluations. - #: The shape of results is ``(num_metrics, num_target_datasets)`` if + #: The shape of results is ``(num_target_datasets, num_metrics)`` if #: the user doesn't specify subregion information. Otherwise the shape - #: is ``(num_metrics, num_target_datasets, num_subregions)``. + #: is ``(num_target_datasets, num_metrics, num_subregions)``. self.results = [] #: A list containing the results of running the unary metric #: evaluations. The shape of unary_results is - #: ``(num_metrics, num_targets)`` where ``num_targets = + #: ``(num_targets, num_metrics)`` where ``num_targets = #: num_target_ds + (1 if ref_dataset != None else 0`` self.unary_results = []
