Skip to content

Commit

Permalink
Merge pull request #41 from ENSTA-U2IS/add-mimo
Browse files Browse the repository at this point in the history
✨ Add MIMO
  • Loading branch information
o-laurent authored Aug 25, 2023
2 parents 368c1e9 + f8829c6 commit a0f1348
Show file tree
Hide file tree
Showing 20 changed files with 936 additions and 72 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ To date, the following deep learning baselines have been implemented:
- Deep Ensembles
- BatchEnsemble
- Masksembles
- MIMO
- Packed-Ensembles (see [blog post](https://medium.com/@adrien.lafage/make-your-neural-networks-more-reliable-with-packed-ensembles-7ad0b737a873))
- Bayesian Neural Networks

Expand Down
4 changes: 2 additions & 2 deletions experiments/classification/cifar10/wideresnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

args = init_args(WideResNet, CIFAR10DataModule)

net_name = f"{args.version}-wideresnet{args.arch}-cifar10"
net_name = f"{args.version}-wideresnet28x10-cifar10"

# datamodule
args.root = str(root / "data")
Expand All @@ -26,7 +26,7 @@
in_channels=dm.num_channels,
loss=nn.CrossEntropyLoss,
optimization_procedure=get_procedure(
f"resnet{args.arch}", "cifar10", args.version
"wideresnet28x10", "cifar10", args.version
),
style="cifar",
**vars(args),
Expand Down
Loading

0 comments on commit a0f1348

Please sign in to comment.