aboutsummaryrefslogtreecommitdiff
path: root/test-random.sh
diff options
context:
space:
mode:
authorVasil Zlatanov <v@skozl.com>2018-11-19 13:33:17 +0000
committerVasil Zlatanov <v@skozl.com>2018-11-19 13:33:17 +0000
commit414f11a0d741242ac372f29b52474901d2c40fd2 (patch)
treef8f67e1abd4b7a06c4915c051e3ce19b915ffa10 /test-random.sh
parentba9acf333f77951ccb789e2eef2a287c29440e95 (diff)
downloadvz215_np1915-414f11a0d741242ac372f29b52474901d2c40fd2.tar.gz
vz215_np1915-414f11a0d741242ac372f29b52474901d2c40fd2.tar.bz2
vz215_np1915-414f11a0d741242ac372f29b52474901d2c40fd2.zip
Add test-random script
Diffstat (limited to 'test-random.sh')
-rwxr-xr-xtest-random.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-random.sh b/test-random.sh
new file mode 100755
index 0000000..8ae4e27
--- /dev/null
+++ b/test-random.sh
@@ -0,0 +1,6 @@
+for i in $(seq 100 5 180);do
+ for j in $(seq 20 5 100);do
+ echo "Testing with M = $i + ${j}R"
+ python -W ignore train.py -i data.csv -ql -m $i -R $j -e 27 | tee test-random.txt
+ done
+done