summaryrefslogtreecommitdiff
path: root/report
diff options
context:
space:
mode:
authormguetlein <martin.guetlein@gmail.com>2011-06-30 23:49:22 +0200
committermguetlein <martin.guetlein@gmail.com>2011-06-30 23:49:22 +0200
commit95de1906994672c12d4d4b6fd1f5f09695fb1c60 (patch)
tree93ac2ce86b72c265d942d2b7f12a38939d5badb2 /report
parent0b0d101c77c2f40769036fb1455e8143f4dace9c (diff)
adding confidence-weighted regression stats
Diffstat (limited to 'report')
-rwxr-xr-xreport/report_factory.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/report/report_factory.rb b/report/report_factory.rb
index d16066e..fcd9bab 100755
--- a/report/report_factory.rb
+++ b/report/report_factory.rb
@@ -7,10 +7,12 @@ VAL_ATTR_CV = [ :algorithm_uri, :dataset_uri, :num_folds, :crossvalidation_fold
# selected attributes of interest when performing classification
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 = [ :num_instances, :num_unpredicted, :root_mean_squared_error, :mean_absolute_error, :r_square ]
+VAL_ATTR_REGR = [ :num_instances, :num_unpredicted, :root_mean_squared_error,
+ :weighted_root_mean_squared_error, :mean_absolute_error, :weighted_mean_absolute_error, :r_square, :weighted_r_square ]
-VAL_ATTR_BAR_PLOT_CLASS = [ :accuracy, :weighted_area_under_roc,
- :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ]
+#VAL_ATTR_BAR_PLOT_CLASS = [ :accuracy, :weighted_area_under_roc,
+# :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ]
+VAL_ATTR_BAR_PLOT_CLASS = [ :accuracy, :f_measure, :true_positive_rate, :true_negative_rate ]
VAL_ATTR_BAR_PLOT_REGR = [ :root_mean_squared_error, :mean_absolute_error, :r_square ]