We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 032294d commit 043dbc5Copy full SHA for 043dbc5
.gitignore
@@ -4,3 +4,5 @@ slurm*out
4
/MNIST/
5
/lightning_logs/
6
/*.ckpt
7
+/logs
8
+/mlruns
mnist_lightning_ddp.py
@@ -6,8 +6,8 @@
import torch.nn.functional as F
from torchvision.datasets import MNIST
from torch.utils.data import DataLoader
9
-#import lightning as L
10
-import pytorch_lightning as L
+import lightning as L
+#import pytorch_lightning as L
11
import mlflow
12
13
class LitConvNet(L.LightningModule):
requirements.txt
@@ -1,7 +1,7 @@
1
-torch
2
-torchvision
3
-deepspeed
-mpi4py
-mlflow
-accelerate
-pytorch_lightning
+torch>=2.2
+torchvision>=0.17.1
+deepspeed>=0.13.3
+mpi4py>=3.1.5
+mlflow>=2.10.2
+accelerate>=0.27.2
+lightning>=2.2
0 commit comments