Skip to content

Commit

Permalink
🐛 Fix missing MNIST parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
o-laurent committed Jun 30, 2023
1 parent dd63306 commit 1843fa9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions torch_uncertainty/datamodules/mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,7 @@ def add_argparse_args(
p.add_argument("--batch_size", type=int, default=128)
p.add_argument("--val_split", type=int, default=0)
p.add_argument("--num_workers", type=int, default=4)
p.add_argument(
"--evaluate_ood", dest="ood_detection", action="store_true"
)
return parent_parser

0 comments on commit 1843fa9

Please sign in to comment.