Skip to content

Commit

Permalink
Fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
SRM committed May 24, 2024
1 parent a091e51 commit b83305b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion train_clay.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ export PYTHONFAULTHANDLER=1
export PYTHONUNBUFFERED=1

# Run the model on multi node parallel cluster
srun python trainer.py fit --model ClayMAEModule --data ClayDataModule --config configs/config.yaml --data.data_dir /fsx/dra1/naip
srun python trainer.py fit --model ClayMAEModule --data ClayDataModule --config configs/config.yaml --data.data_dir /fsx
2 changes: 1 addition & 1 deletion trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from lightning.pytorch.cli import LightningCLI

from src.datamodule import ClayDataModule # noqa: F401
from src.model_clay_v1 import ClayMAEModule # noqa: F401
from src.model import ClayMAEModule # noqa: F401


# %%
Expand Down

0 comments on commit b83305b

Please sign in to comment.