-
Notifications
You must be signed in to change notification settings - Fork 1
/
run
25 lines (18 loc) · 1.09 KB
/
run
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
python main.py --epochs 80 --model cnet --smote f --save_model_path cnet_no_smote
python main.py --epochs 600 --model cnet --mi t --smote f
python main.py --epochs 600 --model cnet --mi t --smote f --transfer_path cnet_no_smote
python main.py --epochs 80 --model bigru --smote f
python main.py --epochs 600 --model bigru --mi t --smote f
python main.py --epochs 80 --model bilstm --smote f
python main.py --epochs 600 --model bilstm --mi t --smote f
python main.py --epochs 80 --model seq --smote f
python main.py --epochs 600 --model seq --mi t --smote f
python main.py --epochs 80 --model cnet --smote t --save_model_path cnet_smote
python main.py --epochs 600 --model cnet --mi t --smote t
python main.py --epochs 600 --model cnet --mi t --smote t --transfer_path cnet_smote
python main.py --epochs 80 --model bigru --smote t
python main.py --epochs 600 --model bigru --mi t --smote t
python main.py --epochs 80 --model bilstm --smote t
python main.py --epochs 600 --model bilstm --mi t --smote t
python main.py --epochs 80 --model seq --smote t
python main.py --epochs 600 --model seq --mi t --smote t