Zhouf23 commited on
Commit
a7c475b
1 Parent(s): b056a3c

Upload 2 files

Browse files
model-202404191128/model.txt ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ class LinearNet(nn.Module):
3
+ def __init__(self, input_size = 784, latent_space = 16, n_classes = 10,):
4
+ super().__init__()
5
+ self.fc1 = nn.Linear(input_size, latent_space)
6
+ self.fc2 = nn.Linear(latent_space, n_classes)
7
+
8
+ def forward(self, x):
9
+ x = self.fc1(x)
10
+ x = self.fc2(x)
11
+ output = F.log_softmax(x, dim=1)
12
+ return output
model-202404191128/weight_history.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23299e516c34e493c4cd4dc15f7d2c469900f317eb1327b30eb6d136a8b447f7
3
+ size 407360128