-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.sh
More file actions
23 lines (16 loc) · 1.03 KB
/
main.sh
File metadata and controls
23 lines (16 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
git pull
# set your wandb account, see https://wandb.ai/
wandb login
# for Digits dataset
# CUDA_VISIBLE_DEVICES=4 python EVNet_main.py --data_name Digits --num_fea_aim 64 --nu 5e-3 --epochs 900
# for Mnist dataset
# CUDA_VISIBLE_DEVICES=5 python EVNet_main.py --data_name Mnist --num_fea_aim 600 --nu 5e-3 --epochs 900
# CUDA_VISIBLE_DEVICES=5 python EVNet_main.py --data_name Gast10k1457 --num_fea_aim 1200 --nu 5e-3 --epochs 1200 --K 3
# for Cifar dataset
# CUDA_VISIBLE_DEVICES=5 python EVNet_main.py --data_name Cifar10 --num_fea_aim 3100 --nu 5e-3 --epochs 900 --log_interval 300
# if you dont want to use gpu, you can use CUDA_VISIBLE_DEVICES=-1
# CUDA_VISIBLE_DEVICES=-1 python EVNet_main.py --data_name Digits --num_fea_aim 64 --nu 5e-3 --epochs 900
# if you want to use your own dataset, you can use the following command:
# CUDA_VISIBLE_DEVICES=-1 python EVNet_main.py --data_name CSV --num_fea_aim 64 --nu 5e-3 --epochs 3000 --data_path=data/niu/
# and the data file is data/niu/data.csv
# and the label file is data/niu/label.csv