From a29eb3e38414cd252850c9c4fb356f8b2bef6fb4 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Fri, 12 Feb 2021 19:54:07 +0100 Subject: model.rb refactored, mp2d models updated --- bin/crossvalidation.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 bin/crossvalidation.rb (limited to 'bin/crossvalidation.rb') 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 -- cgit v1.2.3