summaryrefslogtreecommitdiff
path: root/test/model-validation.rb
diff options
context:
space:
mode:
authorgebele <gebele@in-silico.ch>2017-05-26 12:53:01 +0000
committergebele <gebele@in-silico.ch>2017-05-26 12:53:01 +0000
commit6ed197736516d98e200cc64d922f42eb3122589c (patch)
treed2c7de76b020be254cc82563d36e6711fd6f1867 /test/model-validation.rb
parent61a7d994d8f4fbcf25414beea96189bf885ad19d (diff)
parent9aa5203dd375225996c1efe4be1a4324ddc6cda7 (diff)
Merge branch 'development'
Diffstat (limited to 'test/model-validation.rb')
-rw-r--r--test/model-validation.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/model-validation.rb b/test/model-validation.rb
index 83986d6..9304232 100644
--- a/test/model-validation.rb
+++ b/test/model-validation.rb
@@ -12,7 +12,7 @@ class ValidationModelTest < MiniTest::Test
m.crossvalidations.each do |cv|
assert cv.accuracy > 0.74, "Crossvalidation accuracy (#{cv.accuracy}) should be larger than 0.75. This may happen due to an unfavorable training/test set split."
end
- prediction = m.predict Compound.from_smiles("CCCC(NN)C")
+ prediction = m.predict Compound.from_smiles("OCC(CN(CC(O)C)N=O)O")
assert_equal "true", prediction[:value]
m.delete
end