1 parent 93efc56 commit ffe0c2bCopy full SHA for ffe0c2b
1 file changed
s2_organisation_and_version_control/exercise_files/train_solution.py
@@ -1,9 +1,9 @@
1
import matplotlib.pyplot as plt
2
import torch
3
import typer
4
-from model import MyAwesomeModel
+from model import MyAwesomeModel # noqa: I001
5
6
-from data import corrupt_mnist
+from data import corrupt_mnist # noqa: I001
7
8
DEVICE = torch.device("cuda" if torch.cuda.is_available() else "mps" if torch.backends.mps.is_available() else "cpu")
9
0 commit comments