about summary refs log tree commit diff
path: root/sourcecodes/run_scripts/run_test_set
blob: aef0188731c960f21cadb2ae51862ef009adf3cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/octave -qf
source("./run_scripts/path_cd.m")
arg_list = argv(); 
filename=strcat(arg_list{1},"ts_output.txt");
delete(filename);
filename=strcat(arg_list{1},"ts_plotly.html");
delete(filename);
testSetPredictions(arg_list{1});
#fclose(filename);
filename=strcat(arg_list{1},"ts_upload.txt");
delete(filename);

command=cstrcat("/home/jziebart/python/Python-2.7.15/python ",base_dir,"/ts_plotly.py ",arg_list{1});
test=system(command);