summaryrefslogtreecommitdiff
path: root/report/validation_data.rb
diff options
context:
space:
mode:
authormguetlein <martin.guetlein@gmail.com>2011-08-18 10:38:51 +0200
committermguetlein <martin.guetlein@gmail.com>2011-08-18 10:38:51 +0200
commitd27d53d98238ede80fc3b1a0c277ca890a84c736 (patch)
treec40f2952c7b569976f5de8e754937e85c9a75ed6 /report/validation_data.rb
parent01cc1d014f1f9ccdeb5925e3fa7d64b2d06c2085 (diff)
fix ROC stuff, rename weighted_auc to average_auc
Diffstat (limited to 'report/validation_data.rb')
-rwxr-xr-xreport/validation_data.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/report/validation_data.rb b/report/validation_data.rb
index aa146a6..b6522b6 100755
--- a/report/validation_data.rb
+++ b/report/validation_data.rb
@@ -1,9 +1,9 @@
# the variance is computed when merging results for these attributes
VAL_ATTR_VARIANCE = [ :area_under_roc, :percent_correct, :root_mean_squared_error, :mean_absolute_error,
- :r_square, :accuracy, :weighted_area_under_roc, :weighted_accuracy, :weighted_root_mean_squared_error, :weighted_mean_absolute_error,
+ :r_square, :accuracy, :average_area_under_roc, :weighted_accuracy, :weighted_root_mean_squared_error, :weighted_mean_absolute_error,
:weighted_r_square ]
-VAL_ATTR_RANKING = [ :area_under_roc, :percent_correct, :true_positive_rate, :true_negative_rate, :weighted_area_under_roc, :accuracy, :f_measure ]
+VAL_ATTR_RANKING = [ :area_under_roc, :percent_correct, :true_positive_rate, :true_negative_rate, :average_area_under_roc, :accuracy, :f_measure ]
ATTR_NICE_NAME = {}