abir-hr196 commited on
Commit
3fe2fd6
·
verified ·
1 Parent(s): 4366e74

Add README for seed 113

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