-
Notifications
You must be signed in to change notification settings - Fork 9
/
run.sh
12 lines (6 loc) · 1.01 KB
/
run.sh
1
2
3
4
5
6
7
8
python3 main.py --local_ep 20 --rounds 40 --server_ep 20 --update dist --teacher_type SWAG --use_client --use_SWA --num_users 10 --model resnet32 --weight_decay 0.0002 --exp fedbe &
python3 main.py --local_ep 20 --rounds 40 --server_ep 20 --update dist --teacher_type clients --use_client --num_users 10 --model resnet32 --weight_decay 0.0002 --exp vanilla &
python3 main.py --local_ep 20 --rounds 40 --server_ep 20 --update FedAvg --teacher_type clients --num_users 10 --model resnet32 --weight_decay 0.0002 --exp fedavg
python3 main.py --local_ep 20 --rounds 40 --server_ep 20 --update dist --teacher_type SWAG --use_SWA --use_client --num_users 10 --model cnn --weight_decay 0.001 --exp fedbe &
python3 main.py --local_ep 20 --rounds 40 --server_ep 20 --update dist --teacher_type clients --num_users 10 --model cnn --weight_decay 0.001 --use_client --exp vanilla &
python3 main.py --local_ep 20 --rounds 40 --server_ep 20 --update FedAvg --teacher_type clients --num_users 10 --model cnn --weight_decay 0.001 --exp fedavg