summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorhelma@in-silico.ch <helma@in-silico.ch>2018-11-16 18:42:42 +0100
committerhelma@in-silico.ch <helma@in-silico.ch>2018-11-16 18:42:42 +0100
commit0882c2cd0de934d7377fc9d08c306be98612c88a (patch)
tree683da6042a5cc4d1786c79fa94d02111ca4af67a /README.md
parent7e547fd4a296f497615a7805d565b378cb1bd7cd (diff)
real datasets for testing, test data cleanup, Daphnia import, upper and lower similarity thresholds
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0e9a87d..08ddaf6 100644
--- a/README.md
+++ b/README.md
@@ -123,7 +123,7 @@ algorithms = {
},
:similarity => { # similarity algorithm
:method => "Algorithm::Similarity.tanimoto",
- :min => 0.1 # similarity threshold for neighbors
+ :min => [0.5,0.2] # similarity thresholds for neighbors: first value for predictions with high confidence, second value for predictions with medium confidence
},
:feature_selection => nil, # no feature selection
:prediction => { # local modelling algorithm
@@ -150,7 +150,7 @@ algorithms = {
},
:similarity => { # similarity algorithm
:method => "Algorithm::Similarity.weighted_cosine",
- :min => 0.5
+ :min => [0.5,0.2]
},
:feature_selection => { # feature selection algorithm
:method => "Algorithm::FeatureSelection.correlation_filter",
@@ -220,7 +220,7 @@ algorithms = {
},
:similarity => {
:method => "Algorithm::Similarity.weighted_cosine",
- :min => 0.5
+ :min => [0.5,0.2]
},
:feature_selection => {
:method => "Algorithm::FeatureSelection.correlation_filter",