Keras
TF-Keras
sayakpaul HF staff commited on
Commit
90a9254
·
1 Parent(s): 82c0ae2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -20
README.md CHANGED
@@ -2,25 +2,9 @@
2
  library_name: keras
3
  ---
4
 
5
- ## Model description
6
 
7
- More information needed
8
 
9
- ## Intended uses & limitations
10
-
11
- More information needed
12
-
13
- ## Training and evaluation data
14
-
15
- More information needed
16
-
17
- ## Training Metrics
18
- Model history needed
19
- ## Model Plot
20
-
21
- <details>
22
- <summary>View Model Plot</summary>
23
-
24
- ![Model Image](./model.png)
25
-
26
- </details>
 
2
  library_name: keras
3
  ---
4
 
5
+ This model is a TensorFlow port of ViT B-16 [1] trained with recipes from [2]. ImageNet-1k dataset was used for training purposes. You can refer to [this notebook](https://github.com/sayakpaul/probing-vits/blob/main/notebooks/load-jax-weights-vitb16.ipynb) to know how the porting was done.
6
 
7
+ ## References
8
 
9
+ [1] An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale: https://arxiv.org/abs/2010.11929
10
+ [2] How to train your ViT? Data, Augmentation, and Regularization in Vision Transformers: https://arxiv.org/abs/2106.10270