Skip to content

Commit

Permalink
👕 Add TU trainer, CLI & datamodule to root init
Browse files Browse the repository at this point in the history
  • Loading branch information
o-laurent committed Oct 17, 2024
1 parent 7e7933a commit 3435604
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
data/
logs/
lightning_logs/
auto_tutorials_source/*.png
docs/*/generated/
docs/*/auto_tutorials/
*.pth
Expand Down
3 changes: 3 additions & 0 deletions torch_uncertainty/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# ruff: noqa: F401
from datamodules import TUDataModule
from utils import TULightningCLI, TUTrainer
1 change: 1 addition & 0 deletions torch_uncertainty/datamodules/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# ruff: noqa: F401
from .abstract import TUDataModule
from .classification.cifar10 import CIFAR10DataModule
from .classification.cifar100 import CIFAR100DataModule
from .classification.imagenet import ImageNetDataModule
Expand Down

0 comments on commit 3435604

Please sign in to comment.