abir-hr196 commited on
Commit
42c4b22
·
verified ·
1 Parent(s): 892b2bf

Add README for seed 112

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