-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathscripts.sh
More file actions
14 lines (13 loc) · 1.05 KB
/
scripts.sh
File metadata and controls
14 lines (13 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Train and Retrain From Scratch
python main.py --train_from_scratch --retrain_from_scratch
# Unlearn on CIFAR10
# Most of the methods here are configured with their recommended (or best) settings. If the performance is not as expected, you may need to adjust the parameters as described in the Supplementary Material.
python main.py --method random_label --unlearn_rate 3e-4 --description lr_3e-4
python main.py --method finetune --unlearn_rate 2e-2 --description lr_2e-2
python main.py --method gradient_ascent --unlearn_rate 1e-5 --description lr_1e-5
python main.py --method boundary_shrink --unlearn_rate 5e-5 --description lr_5e-5
python main.py --method boundary_expand --unlearn_rate 8e-4 --description lr_8e-4
python main.py --method l2ul_adv --unlearn_rate 1e-5 --description lr_1e-5
python main.py --method fisher --alpha 1e-7 --description lr_1e-7
python main.py --method wood_fisher --alpha 1 --description lr_1
python main.py --method delete --unlearn_rate 1e-3 --description lr_1e-3