summaryrefslogtreecommitdiff
path: root/bin/crossvalidation.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bin/crossvalidation.rb')
-rwxr-xr-xbin/crossvalidation.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/crossvalidation.rb b/bin/crossvalidation.rb
deleted file mode 100755
index b7cfdd7..0000000
--- a/bin/crossvalidation.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env ruby
-require_relative "../lib/lazar"
-dir = ARGV[0]
-dependent_variable_type = File.read(File.join(dir, "dependent-variable-type")).chomp
-independent_variable_type = File.read(File.join(dir, "independent-variable-type")).chomp
-if dependent_variable_type == "binary" and independent_variable_type == "binary"
- model = TanimotoClassificationModel.new dir
-elsif dependent_variable_type == "binary" and independent_variable_type == "numeric"
- model = CosineClassificationModel.new dir
-elsif dependent_variable_type == "numeric" and independent_variable_type == "binary"
- model = TanimotoRegressionModel.new dir
-elsif dependent_variable_type == "numeric" and independent_variable_type == "numeric"
- model = CosineRegressionModel.new dir
-end
-model.crossvalidation