about summary refs log tree commit diff
path: root/sourcecodes/run_scripts/run_loo
diff options
context:
space:
mode:
Diffstat (limited to 'sourcecodes/run_scripts/run_loo')
-rw-r--r--sourcecodes/run_scripts/run_loo17
1 files changed, 17 insertions, 0 deletions
diff --git a/sourcecodes/run_scripts/run_loo b/sourcecodes/run_scripts/run_loo
new file mode 100644
index 00000000..3ff4f4db
--- /dev/null
+++ b/sourcecodes/run_scripts/run_loo
@@ -0,0 +1,17 @@
+#!/usr/bin/octave -qf
+cd ./data
+arg_list = argv(); 
+addpath("../bnt-master");
+addpath(genpathKPM("../bnt-master"));
+addpath("../parameter_learning");
+filename=strcat(arg_list{1},"looCV.txt");
+delete(filename);
+filename=strcat(arg_list{1},"looCV_temp.txt");
+fout_temp=fopen(filename,'w');
+fprintf(fout_temp,arg_list{2});
+fclose(fout_temp);
+looCrossValid(arg_list{1},arg_list{2});
+delete(filename);
+
+command=strcat({"/home/jziebart/python/Python-2.7.15/python ../cv_plotly.py "},arg_list{1});
+test=system(command);