diff options
author | Vasil Zlatanov <v@skozl.com> | 2018-11-19 13:37:32 +0000 |
---|---|---|
committer | Vasil Zlatanov <v@skozl.com> | 2018-11-19 13:37:32 +0000 |
commit | 477647a16a1fabc010931c64df711bff0fe1c79d (patch) | |
tree | 0b40a50f48af3c79be99c23487b22cbf6e24ff6d | |
parent | 414f11a0d741242ac372f29b52474901d2c40fd2 (diff) | |
download | vz215_np1915-477647a16a1fabc010931c64df711bff0fe1c79d.tar.gz vz215_np1915-477647a16a1fabc010931c64df711bff0fe1c79d.tar.bz2 vz215_np1915-477647a16a1fabc010931c64df711bff0fe1c79d.zip |
Use append flag
-rwxr-xr-x | test-random.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-random.sh b/test-random.sh index 8ae4e27..b10c555 100755 --- a/test-random.sh +++ b/test-random.sh @@ -1,6 +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 + python -W ignore train.py -i data.csv -ql -m $i -R $j -e 27 | tee -a test-random.txt done done |