Trevor Dohm commited on
Commit
1b85548
1 Parent(s): ae9e694

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -2
README.md CHANGED
@@ -15,5 +15,10 @@ Trained From Scratch, MNIST https://huggingface.co/datasets/mnist
15
 
16
  Guide: https://medium.com/mlearning-ai/vision-transformers-from-scratch-pytorch-a-step-by-step-guide-96c3313c2e0c
17
 
18
- ViT_Small: config = {"chw": (1, 28, 28), "n_patches": 7, "n_blocks": 4, "hidden_d": 8, "n_heads": 4, "out_d": 10} 23 kB 2K+ Steps
19
- ViT_Large: config = {"chw": (1, 28, 28), "n_patches": 7, "n_blocks": 6, "hidden_d": 64, "n_heads": 8, "out_d": 10} 881 kB 20K+ Steps
 
 
 
 
 
 
15
 
16
  Guide: https://medium.com/mlearning-ai/vision-transformers-from-scratch-pytorch-a-step-by-step-guide-96c3313c2e0c
17
 
18
+ ViT_Small:
19
+ {"chw": (1, 28, 28), "n_patches": 7, "n_blocks": 4, "hidden_d": 8, "n_heads": 4, "out_d": 10}
20
+ 23 kB 2K+ Steps
21
+
22
+ ViT_Large:
23
+ {"chw": (1, 28, 28), "n_patches": 7, "n_blocks": 6, "hidden_d": 64, "n_heads": 8, "out_d": 10}
24
+ 881 kB 20K+ Steps