abir-hr196 commited on
Commit
5c87b03
·
verified ·
1 Parent(s): 2a21ebe

Add README for seed 132

Browse files
Files changed (1) hide show
  1. seed_132/README.md +19 -0
seed_132/README.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # MNIST CNN Model (Seed 132)
2
+
3
+ This is a Convolutional Neural Network (CNN) trained on the MNIST dataset with random seed 132.
4
+
5
+ ## Run Details
6
+ - Repository: [abir-hr196/cnn_transfer](https://huggingface.co/abir-hr196/cnn_transfer)
7
+ - Seed-Specific Run: [seed_132](https://huggingface.co/abir-hr196/cnn_transfer/tree/main/seed_132)
8
+
9
+ ## How to Use
10
+
11
+ ```python
12
+ import torch
13
+
14
+ # Load the model
15
+ model_path = "seed_132/pytorch_model.bin"
16
+ # model = YourCNNClass()
17
+ # model.load_state_dict(torch.load(model_path))
18
+ # model.eval()
19
+ ```