summaryrefslogtreecommitdiff
path: root/report/report_factory.rb
diff options
context:
space:
mode:
authormguetlein <martin.guetlein@gmail.com>2011-02-04 11:52:06 +0100
committermguetlein <martin.guetlein@gmail.com>2011-02-04 11:52:06 +0100
commit6762fc56b83fd91e8270a01b689bbf6e0eceb984 (patch)
treeeff30c23ab9ab45dfdcad4185526940d3aab8859 /report/report_factory.rb
parentaca886bf82e7ebf5a9d76642614418ed983ab45e (diff)
add num unpredicted to report
Diffstat (limited to 'report/report_factory.rb')
-rwxr-xr-xreport/report_factory.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/report/report_factory.rb b/report/report_factory.rb
index 8fa185e..e770d2f 100755
--- a/report/report_factory.rb
+++ b/report/report_factory.rb
@@ -5,9 +5,9 @@ VAL_ATTR_TRAIN_TEST = [ :model_uri, :training_dataset_uri, :test_dataset_uri, :p
VAL_ATTR_CV = [ :algorithm_uri, :dataset_uri, :num_folds, :crossvalidation_fold ]
# selected attributes of interest when performing classification
-VAL_ATTR_CLASS = [ :accuracy, :weighted_accuracy, :weighted_area_under_roc,
+VAL_ATTR_CLASS = [ :num_instances, :num_unpredicted, :accuracy, :weighted_accuracy, :weighted_area_under_roc,
:area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ]
-VAL_ATTR_REGR = [ :root_mean_squared_error, :mean_absolute_error, :r_square ]
+VAL_ATTR_REGR = [ :num_instances, :num_unpredicted, :root_mean_squared_error, :mean_absolute_error, :r_square ]
VAL_ATTR_BAR_PLOT_CLASS = [ :accuracy, :weighted_area_under_roc,
:area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ]