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, 15 insertions, 0 deletions
diff --git a/bin/crossvalidation.rb b/bin/crossvalidation.rb
new file mode 100755
index 0000000..b7cfdd7
--- /dev/null
+++ b/bin/crossvalidation.rb
@@ -0,0 +1,15 @@
+#!/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