summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgebele <gebele@in-silico.ch>2017-04-11 08:03:15 +0000
committergebele <gebele@in-silico.ch>2017-04-11 08:03:15 +0000
commit324e502a3a8415512336b93fa4faf591d7904ad8 (patch)
tree8ea37fc267c526fe5a53db45b9d90afa1d6a7172
parent6201c1f3814628499e168bd99fddc5b65eb32fb5 (diff)
changed compound to predict fixed test
-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