Skip to content

Commit

Permalink
🐛 Fix CIFAR R18 configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
o-laurent committed Jan 29, 2025
1 parent 7d2f763 commit 87c1022
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ optimizer:
lr: 0.05
momentum: 0.9
weight_decay: 5e-4
nesterov: true
lr_scheduler:
milestones:
- 25
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ optimizer:
lr: 0.05
momentum: 0.9
weight_decay: 5e-4
nesterov: true
lr_scheduler:
milestones:
- 25
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ optimizer:
lr: 0.05
momentum: 0.9
weight_decay: 5e-4
nesterov: true
lr_scheduler:
milestones:
- 25
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ optimizer:
lr: 0.05
momentum: 0.9
weight_decay: 5e-4
nesterov: true
lr_scheduler:
milestones:
- 25
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ optimizer:
lr: 0.05
momentum: 0.9
weight_decay: 5e-4
nesterov: true
lr_scheduler:
milestones:
- 25
Expand Down
11 changes: 0 additions & 11 deletions experiments/classification/cifar10/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,3 @@ python resnet.py fit --config configs/resnet.yaml --model.arch 101 --model.versi
|Masked-Ensembles||
|MIMO||
|MC Dropout||

### VGG

||VGG11|VGG13|VGG16|VGG19|
|---|---|---|---|---|
|Standard|||||
|Packed-Ensembles|||||
|BatchEnsemble|||||
|Masked-Ensembles|||||
|MIMO|||||
|MC Dropout|||||
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ trainer:
accelerator: gpu
devices: 1
precision: 16-mixed
max_epochs: 75
max_epochs: 200
logger:
class_path: lightning.pytorch.loggers.TensorBoardLogger
init_args:
Expand Down Expand Up @@ -38,12 +38,13 @@ data:
root: ./data
batch_size: 128
optimizer:
lr: 0.05
lr: 0.1
momentum: 0.9
weight_decay: 1e-4
nesterov: true
lr_scheduler:
milestones:
- 25
- 50
- 60
- 120
- 160
gamma: 0.2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ trainer:
accelerator: gpu
devices: 1
precision: 16-mixed
max_epochs: 75
max_epochs: 200
logger:
class_path: lightning.pytorch.loggers.TensorBoardLogger
init_args:
Expand Down Expand Up @@ -39,12 +39,13 @@ data:
root: ./data
batch_size: 128
optimizer:
lr: 0.05
lr: 0.1
momentum: 0.9
weight_decay: 1e-4
nesterov: true
lr_scheduler:
milestones:
- 25
- 50
- 60
- 120
- 160
gamma: 0.2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ trainer:
accelerator: gpu
devices: 1
precision: 16-mixed
max_epochs: 75
max_epochs: 200
logger:
class_path: lightning.pytorch.loggers.TensorBoardLogger
init_args:
Expand Down Expand Up @@ -39,12 +39,13 @@ data:
root: ./data
batch_size: 128
optimizer:
lr: 0.05
lr: 0.1
momentum: 0.9
weight_decay: 1e-4
nesterov: true
lr_scheduler:
milestones:
- 25
- 50
- 60
- 120
- 160
gamma: 0.2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ trainer:
accelerator: gpu
devices: 1
precision: 16-mixed
max_epochs: 75
max_epochs: 200
logger:
class_path: lightning.pytorch.loggers.TensorBoardLogger
init_args:
Expand Down Expand Up @@ -40,12 +40,13 @@ data:
root: ./data
batch_size: 128
optimizer:
lr: 0.05
lr: 0.1
momentum: 0.9
weight_decay: 1e-4
nesterov: true
lr_scheduler:
milestones:
- 25
- 50
- 60
- 120
- 160
gamma: 0.2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ trainer:
accelerator: gpu
devices: 1
precision: 16-mixed
max_epochs: 75
max_epochs: 200
logger:
class_path: lightning.pytorch.loggers.TensorBoardLogger
init_args:
Expand Down Expand Up @@ -37,12 +37,13 @@ data:
root: ./data
batch_size: 128
optimizer:
lr: 0.05
lr: 0.1
momentum: 0.9
weight_decay: 1e-4
nesterov: true
lr_scheduler:
milestones:
- 25
- 50
- 60
- 120
- 160
gamma: 0.2

0 comments on commit 87c1022

Please sign in to comment.