summaryrefslogtreecommitdiff
path: root/lazar.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lazar.rb')
-rw-r--r--lazar.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lazar.rb b/lazar.rb
index 4a77a82..bf2baf0 100644
--- a/lazar.rb
+++ b/lazar.rb
@@ -65,9 +65,9 @@ class LazarTest < Test::Unit::TestCase
def test_create_regression_svm_pc_model
create_model :dataset_uri => @@regression_training_dataset.uri, :feature_dataset_uri => @@regression_feature_dataset.uri, :pc_type => "constitutional"
predict_compound OpenTox::Compound.from_smiles("c1ccccc1NN")
- assert_in_delta @predictions.first.value(@compounds.first), 7.8, 0.1
- assert_equal 0.603, @predictions.first.confidence(@compounds.first).round_to(3)
- assert_equal 74, @predictions.first.neighbors(@compounds.first).size
+ assert_in_delta @predictions.first.value(@compounds.first), 12.81, 0.1
+ assert_equal 0.531, @predictions.first.confidence(@compounds.first).round_to(3)
+ assert_equal 91, @predictions.first.neighbors(@compounds.first).size
cleanup
end