-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtrain_vpn
executable file
·13 lines (11 loc) · 1.16 KB
/
train_vpn
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# Deterministic Collect
# python train.py --config config/collect_deterministic.xml --prediction-step 1 --branch 4 --decay 0.9 --alg VPN --log result/vpn1 ${@:1}
# python train.py --config config/collect_deterministic.xml --prediction-step 2 --branch 4,4 --decay 0.9 --alg VPN --log result/vpn2 ${@:1}
# python train.py --config config/collect_deterministic.xml --prediction-step 3 --branch 4,4,4 --decay 0.9 --alg VPN --log result/vpn3 ${@:1}
# python train.py --config config/collect_deterministic.xml --prediction-step 5 --branch 4,4,4,1,1 --decay 0.8 --alg VPN --log result/vpn5 ${@:1}
# Stochastic Collect
# python train.py --config config/collect_stochastic.xml --prediction-step 1 --branch 4 --decay 0.9 --alg VPN --log result/vpn1 ${@:1}
# python train.py --config config/collect_stochastic.xml --prediction-step 2 --branch 4,4 --decay 0.9 --alg VPN --log result/vpn2 ${@:1}
# python train.py --config config/collect_stochastic.xml --prediction-step 3 --branch 4,4,4 --decay 0.9 --alg VPN --log result/vpn3 ${@:1}
# python train.py --config config/collect_stochastic.xml --prediction-step 5 --branch 4,4,4,1,1 --decay 0.8 --alg VPN --log result/vpn5 ${@:1}