-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbase.yaml
25 lines (24 loc) · 972 Bytes
/
base.yaml
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
misc:
project_name: tmp-project-name
run_name: tmp-run-name
log_model: False # whether to have wandb save artifacts
use_auto_scale_batch_size: False
enable_progress_bar: False
enable_checkpointing: False # whether to save model checkpoints
log_every_n_steps: 50
wandb_save_dir: '/vulcanscratch/psando/wandb' # path to save wandb files
dirpath: '/vulcanscratch/psando/poison_ckpts' # path to save your checkpoints
train:
model_name: ResNet18
dataset: CIFAR10 # either 'CIFAR10' 'CIFAR100' 'STL10' or 'SVHN'
dataset_path: '/vulcanscratch/psando/cifar-10/' # path to your dataset root
batch_size: 128
epochs: 100
num_workers: 16
learning_rate: 0.1
weight_decay: 5e-4
momentum: 0.9
adversarial_poison_path: False
unlearnable_poison_path: False
dataset_path: False
augmentations_key: 'none' # either 'none' 'cutout' 'cutmix' or 'mixup'