about summary refs log tree commit diff
path: root/sourcecodes/run_scripts/run_kfold
diff options
context:
space:
mode:
authorziejd22019-01-28 16:37:57 -0600
committerziejd22019-01-28 16:37:57 -0600
commit995f6673b5e725d6907ccd4f8e25033e8524f116 (patch)
tree5df08d9503394eab1190a01a640f3c338e8c74d6 /sourcecodes/run_scripts/run_kfold
parentbb9d93322abf825368dedaafc2376ef8fdfc1e2f (diff)
downloadBNW-995f6673b5e725d6907ccd4f8e25033e8524f116.tar.gz
Deleting old versions of files
Diffstat (limited to 'sourcecodes/run_scripts/run_kfold')
-rw-r--r--sourcecodes/run_scripts/run_kfold18
1 files changed, 18 insertions, 0 deletions
diff --git a/sourcecodes/run_scripts/run_kfold b/sourcecodes/run_scripts/run_kfold
new file mode 100644
index 00000000..f90a5428
--- /dev/null
+++ b/sourcecodes/run_scripts/run_kfold
@@ -0,0 +1,18 @@
+#!/usr/bin/octave -qf
+cd ./data
+arg_list = argv(); 
+addpath("../bnt-master");
+addpath(genpathKPM("../bnt-master"));
+addpath("../parameter_learning");
+fileout=strcat(arg_list{1},"kfoldCV.txt");
+delete(fileout);
+filename=strcat(arg_list{1},"kfoldCV_temp.txt");
+fout_temp=fopen(filename,'w');
+fprintf(fout_temp,arg_list{2});
+kfoldCrossValid(arg_list{1},arg_list{2},arg_list{3});
+fclose(fout_temp);
+delete(filename);
+
+
+command=strcat({"/home/jziebart/python/Python-2.7.15/python ../kfold_plotly.py "},arg_list{1});
+test=system(command);