2017-07-14 14:58:17 +02:00
|
|
|
run:
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode train --train data/rk_mini.csv.gz --model results/test/test_both_1 --epochs 2 --depth small \
|
|
|
|
--filter_embd 32 --kernel_embd 3 --filter_main 16 --kernel_main 3 --dense_main 128 \
|
|
|
|
--dense_embd 16 --domain_embd 8 --batch 64 --balanced_weights --type final --model_output both
|
2017-07-30 15:49:37 +02:00
|
|
|
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode train --train data/rk_mini.csv.gz --model results/test/test_both_2 --epochs 2 --depth small \
|
|
|
|
--filter_embd 32 --kernel_embd 3 --filter_main 16 --kernel_main 3 --dense_main 128 \
|
|
|
|
--dense_embd 16 --domain_embd 8 --batch 64 --balanced_weights --type inter --model_output both
|
2017-09-01 10:42:26 +02:00
|
|
|
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode train --train data/rk_mini.csv.gz --model results/test/test_both_3 --epochs 2 --depth medium \
|
|
|
|
--filter_embd 32 --kernel_embd 3 --filter_main 16 --kernel_main 3 --dense_main 128 \
|
|
|
|
--dense_embd 16 --domain_embd 8 --batch 64 --balanced_weights --type final --model_output both
|
2017-09-01 10:42:26 +02:00
|
|
|
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode train --train data/rk_mini.csv.gz --model results/test/test_both_4 --epochs 2 --depth medium \
|
|
|
|
--filter_embd 32 --kernel_embd 3 --filter_main 16 --kernel_main 3 --dense_main 128 \
|
|
|
|
--dense_embd 16 --domain_embd 8 --batch 64 --balanced_weights --type inter --model_output both
|
2017-07-14 14:58:17 +02:00
|
|
|
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode train --train data/rk_mini.csv.gz --model results/test/test_both_5 --epochs 2 --depth small \
|
|
|
|
--filter_embd 32 --kernel_embd 3 --filter_main 16 --kernel_main 3 --dense_main 128 \
|
|
|
|
--dense_embd 16 --domain_embd 8 --batch 64 --balanced_weights --type staggered --model_output both
|
|
|
|
|
|
|
|
python3 main.py --mode train --train data/rk_mini.csv.gz --model results/test/test_client_1 --epochs 2 --depth small \
|
|
|
|
--filter_embd 32 --kernel_embd 3 --filter_main 16 --kernel_main 3 --dense_main 128 \
|
|
|
|
--dense_embd 16 --domain_embd 8 --batch 64 --balanced_weights --type final --model_output client
|
|
|
|
|
|
|
|
python3 main.py --mode train --train data/rk_mini.csv.gz --model results/test/test_client_2 --epochs 2 --depth small \
|
|
|
|
--filter_embd 32 --kernel_embd 3 --filter_main 16 --kernel_main 3 --dense_main 128 \
|
|
|
|
--dense_embd 16 --domain_embd 8 --batch 64 --balanced_weights --type inter --model_output client
|
|
|
|
|
|
|
|
python3 main.py --mode train --train data/rk_mini.csv.gz --model results/test/test_client_3 --epochs 2 --depth medium \
|
|
|
|
--filter_embd 32 --kernel_embd 3 --filter_main 16 --kernel_main 3 --dense_main 128 \
|
|
|
|
--dense_embd 16 --domain_embd 8 --batch 64 --balanced_weights --type final --model_output client
|
|
|
|
|
|
|
|
python3 main.py --mode train --train data/rk_mini.csv.gz --model results/test/test_client_4 --epochs 2 --depth medium \
|
|
|
|
--filter_embd 32 --kernel_embd 3 --filter_main 16 --kernel_main 3 --dense_main 128 \
|
|
|
|
--dense_embd 16 --domain_embd 8 --batch 64 --balanced_weights --type inter --model_output client
|
2017-09-07 14:24:55 +02:00
|
|
|
|
2017-07-04 20:42:48 +02:00
|
|
|
test:
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode test --batch 128 --models results/test/test_both_* --test data/rk_mini.csv.gz --model_output both
|
|
|
|
python3 main.py --mode test --batch 128 --models results/test/test_client_* --test data/rk_mini.csv.gz --model_output client
|
2017-07-14 14:58:17 +02:00
|
|
|
|
|
|
|
fancy:
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode fancy --batch 128 --model results/test/test_both_1 --test data/rk_mini.csv.gz
|
|
|
|
|
|
|
|
python3 main.py --mode fancy --batch 128 --model results/test/test_both_2 --test data/rk_mini.csv.gz
|
|
|
|
|
|
|
|
python3 main.py --mode fancy --batch 128 --model results/test/test_both_3 --test data/rk_mini.csv.gz
|
|
|
|
|
|
|
|
python3 main.py --mode fancy --batch 128 --model results/test/test_both_4 --test data/rk_mini.csv.gz
|
|
|
|
|
|
|
|
python3 main.py --mode fancy --batch 128 --model results/test/test_both_5 --test data/rk_mini.csv.gz
|
|
|
|
|
|
|
|
python3 main.py --mode fancy --batch 128 --model results/test/test_client_1 --test data/rk_mini.csv.gz
|
2017-09-01 10:42:26 +02:00
|
|
|
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode fancy --batch 128 --model results/test/test_client_2 --test data/rk_mini.csv.gz
|
2017-09-01 10:42:26 +02:00
|
|
|
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode fancy --batch 128 --model results/test/test_client_3 --test data/rk_mini.csv.gz
|
2017-09-01 10:42:26 +02:00
|
|
|
|
2017-09-08 17:11:13 +02:00
|
|
|
python3 main.py --mode fancy --batch 128 --model results/test/test_client_4 --test data/rk_mini.csv.gz
|
2017-09-01 10:42:26 +02:00
|
|
|
|
|
|
|
all-fancy:
|
2017-09-08 22:59:55 +02:00
|
|
|
python3 main.py --mode all_fancy --batch 128 --models results/test/test* --test data/rk_mini.csv.gz \
|
|
|
|
--out-prefix results/test/
|
2017-07-04 20:42:48 +02:00
|
|
|
|
2017-07-07 16:48:10 +02:00
|
|
|
hyper:
|
2017-08-03 09:08:24 +02:00
|
|
|
python3 main.py --mode hyperband --batch 64 --train data/rk_data.csv.gz
|
2017-09-01 10:42:26 +02:00
|
|
|
|
|
|
|
clean:
|
2017-09-08 17:11:13 +02:00
|
|
|
rm -r results/test/test*
|
2017-09-08 19:10:23 +02:00
|
|
|
rm data/rk_mini.csv.gz_raw.h5
|
2017-09-08 13:55:13 +02:00
|
|
|
rm data/rk_mini.csv.gz.h5
|