summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Vorgrimmler <vorgrimmlerdavid@gmx.de>2012-04-18 16:08:48 +0200
committerDavid Vorgrimmler <vorgrimmlerdavid@gmx.de>2012-04-18 16:08:48 +0200
commit97f088e626794f83ae093f8849f7fec369dd88db (patch)
tree1019e0860e71a86df1d8588f1130f6c54385e37b
parent324e7f2dc7c8417fd5af0a084f06ecc92de41d48 (diff)
parent87bd2a6e7521eb27df7b47292d2d46fd5a45443e (diff)
Merge branch 'jl' into development
-rw-r--r--lib/prediction_data.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/prediction_data.rb b/lib/prediction_data.rb
index 42da5fc..d387d24 100644
--- a/lib/prediction_data.rb
+++ b/lib/prediction_data.rb
@@ -270,7 +270,7 @@ module Lib
def self.classification_vals(dataset, compound, feature, accept_values)
v_indices = []
values(dataset, compound, feature).each do |v|
- i = accept_values.index(v.to_s)
+ i = accept_values.index(v)
raise "illegal class_value of prediction (value is '"+v.to_s+"'), accept values are "+
accept_values.inspect unless v==nil or i!=nil
v_indices << i
@@ -294,4 +294,4 @@ module Lib
v_mod
end
end
-end \ No newline at end of file
+end