-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreference.sh
42 lines (37 loc) · 1009 Bytes
/
reference.sh
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -- store logs-- #
mkdir fedELC_logs
pip install scikit-learn
python main_fed_LNL.py \
--dataset cifar10 \
--model resnet18 \
--epochs 120 \
--noise_type_lst symmetric pairflip \
--noise_group_num 50 50 \
--group_noise_rate 0.0 0.4 0.0 0.4 \
--partition dirichlet \
--dd_alpha 1.0 \
--method fedELC | tee ./fedELC_logs/mixed04_dirichlet10.txt
# python main_fed_LNL.py \
# --dataset cifar10 \
# --model resnet18 \
# --epochs 120 \
# --noise_type_lst symmetric \
# --noise_group_num 100 \
# --group_noise_rate 0.0 0.4 \
# --partition dirichlet \
# --dd_alpha 1.0 \
# --epoch_of_stage1 20 \
# --lamda_pencil 1000 \
# --method fedELC | tee ./fedELC_logs/symm04_dirichlet10.txt
# python main_fed_LNL.py \
# --dataset cifar10 \
# --model resnet18 \
# --epochs 120 \
# --noise_type_lst pairflip \
# --noise_group_num 100 \
# --group_noise_rate 0.0 0.4 \
# --partition dirichlet \
# --dd_alpha 1.0 \
# --epoch_of_stage1 20 \
# --lamda_pencil 1000 \
# --method fedELC | tee ./fedELC_logs/pair04_dirichlet10.txt