From 8ac195ba6f2db2d4559e501ed48463f18963bc91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Knaebel?= Date: Wed, 2 Aug 2017 15:13:09 +0200 Subject: [PATCH] add some static configs to run script --- run.sh | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 run.sh diff --git a/run.sh b/run.sh new file mode 100644 index 0000000..4434280 --- /dev/null +++ b/run.sh @@ -0,0 +1,49 @@ +python3 main.py --mode train \ + --train /tmp/rk/currentData.csv \ + --model /tmp/rk/results/simple_both \ + --epochs 25 \ + --hidden_char_dims 64 \ + --domain_embd 32 \ + --batch 256 \ + --balanced_weights \ + --model_output both + +python3 main.py --mode test --batch 512 --model /tmp/rk/results/simple_both --test /tmp/rk/futureData.csv + +python3 main.py --mode train \ + --train /tmp/rk/currentData.csv \ + --model /tmp/rk/results/simple_client \ + --epochs 25 \ + --hidden_char_dims 64 \ + --domain_embd 32 \ + --batch 256 \ + --balanced_weights \ + --model_output client + +python3 main.py --mode test --batch 512 --model /tmp/rk/results/simple_client --test /tmp/rk/futureData.csv + +python3 main.py --mode train \ + --train /tmp/rk/currentData.csv \ + --model /tmp/rk/results/simple_new_both \ + --epochs 25 \ + --hidden_char_dims 64 \ + --domain_embd 32 \ + --batch 256 \ + --balanced_weights \ + --model_output both \ + --new_model + +python3 main.py --mode test --batch 512 --model /tmp/rk/results/simple_new_both --test /tmp/rk/futureData.csv + +python3 main.py --mode train \ + --train /tmp/rk/currentData.csv \ + --model /tmp/rk/results/simple_new_client \ + --epochs 25 \ + --hidden_char_dims 64 \ + --domain_embd 32 \ + --batch 256 \ + --balanced_weights \ + --model_output client \ + --new_model + +python3 main.py --mode test --batch 512 --model /tmp/rk/results/simple_new_client --test /tmp/rk/futureData.csv \ No newline at end of file