rwightman HF staff commited on
Commit
b530736
1 Parent(s): 94c218c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +217 -0
README.md CHANGED
@@ -6,3 +6,220 @@ library_tag: open_clip
6
  license: mit
7
  ---
8
  # Model card for CLIP-convnext_large_d_320.laion2B-s29B-b131K-ft
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  license: mit
7
  ---
8
  # Model card for CLIP-convnext_large_d_320.laion2B-s29B-b131K-ft
9
+
10
+ # Table of Contents
11
+
12
+ 1. [Model Details](#model-details)
13
+ 2. [Uses](#uses)
14
+ 3. [Training Details](#training-details)
15
+ 4. [Evaluation](#evaluation)
16
+ 5. [Acknowledgements](#acknowledgements)
17
+ 6. [Citation](#citation)
18
+
19
+ # Model Details
20
+
21
+ ## Model Description
22
+
23
+ A series of CLIP [ConvNeXt-Large](https://arxiv.org/abs/2201.03545) (w/ extra text depth, vision MLP head) models trained on subsets [LAION-5B](https://arxiv.org/abs/2210.08402) using [OpenCLIP](https://github.com/mlfoundations/open_clip).
24
+
25
+ The models utilize:
26
+ * the [timm](https://github.com/rwightman/pytorch-image-models) ConvNeXt-Large model (`convnext_large`) as the image tower
27
+ * a MLP (`fc - gelu - drop - fc`) head in vision tower instead of the single projection of other CLIP models
28
+ * a text tower with same width but 4 layers more depth than ViT-L / RN50x16 models (depth 16, embed dim 768).
29
+
30
+
31
+ This 320x320 resolution model is a fine-tune of [CLIP-convnext_large_d.laion2B-s26B-b102K-augreg](https://huggingface.co/laion/CLIP-convnext_large_d.laion2B-s26B-b102K-augreg) at a higher resolution. It was fine-tune from the final checkpoint of the original 256x256 training run w/ an additional ~2.5B samples and a lower learning rate.
32
+
33
+ At 320x320, the ConvNext-Large-D is significantly more efficient than the L/14 model at 336x336 that OpenAI fine-tuned. L/14-336 model is 2.5x more GMAC, 2.8x more activations, and 1.22x more parameters. The ConvNeXt was trained with 26B samples-seen and L/14 with 34B.
34
+
35
+ | Model | Dataset | Resolution | AugReg | Top-1 ImageNet Zero-Shot (%) |
36
+ | ----- | ------- | ---------- | ------------ | --------- |
37
+ | [convnext_large_d.laion2b_s26b_b102k-augreg](https://huggingface.co/laion/CLIP-convnext_large_d.laion2B-s26B-b102K-augreg) | LAION-2B | 256x256 | RRC (0.33, 1.0), RE (0.35), SD (0.1), D(0.1) | 75.9 |
38
+ | [convnext_large_d_320.laion2b_s29b_b131k-augreg-ft](https://huggingface.co/laion/CLIP-convnext_large_d_320.laion2B-s29B-b131K-augreg) | LAION-2B | 320x320 | RRC (0.5, 1.0), RE (0.4), SD (0.1), D(0.0) | 76.6 |
39
+ | [convnext_large_d_320.laion2b_s29b_b131k-augreg-ft-soup](https://huggingface.co/laion/CLIP-convnext_large_d_320.laion2B-s29B-b131K-augreg) | LAION-2B | 320x320 | RRC (0.5, 1.0), RE (0.4), SD (0.1), D(0.0) | 76.9 |
40
+
41
+ RRC = Random Resize Crop (crop pcts), RE = Random Erasing (prob), SD = Stochastic Depth (prob) -- image tower only, D = Dropout (prob) -- image tower head only
42
+
43
+ LAION-A = LAION Aesthetic, an ~900M sample subset of LAION-2B with pHash dedupe and asthetic score filtering.
44
+
45
+ Model training done by Ross Wightman on the [stability.ai](https://stability.ai/) cluster.
46
+
47
+ # Uses
48
+
49
+ As per the original [OpenAI CLIP model card](https://github.com/openai/CLIP/blob/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1/model-card.md), this model is intended as a research output for research communities. We hope that this model will enable researchers to better understand and explore zero-shot, arbitrary image classification. We also hope it can be used for interdisciplinary studies of the potential impact of such model.
50
+
51
+ The OpenAI CLIP paper includes a discussion of potential downstream impacts to provide an example for this sort of analysis. Additionally, the LAION-5B blog (https://laion.ai/blog/laion-5b/) and upcoming paper include additional discussion as it relates specifically to the training dataset.
52
+
53
+ ## Direct Use
54
+
55
+ Zero-shot image classification, image and text retrieval, among others.
56
+
57
+ ## Downstream Use
58
+
59
+ Image classification and other image task fine-tuning, linear probe image classification, image generation guiding and conditioning, among others.
60
+
61
+ ## Out-of-Scope Use
62
+
63
+ As per the OpenAI models,
64
+
65
+ **Any** deployed use case of the model - whether commercial or not - is currently out of scope. Non-deployed use cases such as image search in a constrained environment, are also not recommended unless there is thorough in-domain testing of the model with a specific, fixed class taxonomy. This is because our safety assessment demonstrated a high need for task specific testing especially given the variability of CLIP’s performance with different class taxonomies. This makes untested and unconstrained deployment of the model in any use case currently potentially harmful.
66
+
67
+ Certain use cases which would fall under the domain of surveillance and facial recognition are always out-of-scope regardless of performance of the model. This is because the use of artificial intelligence for tasks such as these can be premature currently given the lack of testing norms and checks to ensure its fair use.
68
+
69
+ Since the model has not been purposefully trained in or evaluated on any languages other than English, its use should be limited to English language use cases.
70
+
71
+ Further the above notice, the LAION-5B dataset used in training of these models has additional considerations, see below.
72
+
73
+ # Training Details
74
+
75
+ ## Training Data
76
+
77
+ This model was trained with one of (see table in intro):
78
+ * LAION-2B - A 2 billion sample English subset of LAION-5B (https://laion.ai/blog/laion-5b/).
79
+ * LAION-Aesthetic - A 900M sample subset of LAION-2B with pHash dedupe and asthetic score filtering
80
+
81
+ **IMPORTANT NOTE:** The motivation behind dataset creation is to democratize research and experimentation around large-scale multi-modal model training and handling of uncurated, large-scale datasets crawled from publically available internet. Our recommendation is therefore to use the dataset for research purposes. Be aware that this large-scale dataset is uncurated. Keep in mind that the uncurated nature of the dataset means that collected links may lead to strongly discomforting and disturbing content for a human viewer. Therefore, please use the demo links with caution and at your own risk. It is possible to extract a “safe” subset by filtering out samples based on the safety tags (using a customized trained NSFW classifier that we built). While this strongly reduces the chance for encountering potentially harmful content when viewing, we cannot entirely exclude the possibility for harmful content being still present in safe mode, so that the warning holds also there. We think that providing the dataset openly to broad research and other interested communities will allow for transparent investigation of benefits that come along with training large-scale models as well as pitfalls and dangers that may stay unreported or unnoticed when working with closed large datasets that remain restricted to a small community. Providing our dataset openly, we however do not recommend using it for creating ready-to-go industrial products, as the basic research about general properties and safety of such large-scale models, which we would like to encourage with this release, is still in progress.
82
+
83
+ ## Training Procedure
84
+
85
+ All 320x320 model fine-tunes were trained with a global batch size of 131072 for 10-16 checkpoint intervals of 203.7M samples for a total of ~2-3B samples seen over fine-tune.
86
+
87
+ For 320x320 models, a slurm script w/ srun below was used on 64 8-GPU (A100 40GB) nodes (Stability).
88
+
89
+ ```
90
+ /opt/slurm/sbin/srun --cpu_bind=v --accel-bind=gn python -m training.main \
91
+ --save-frequency 1 \
92
+ --name "convnext_large_320" \
93
+ --pretrained ""/runs/convnext_large_256/epoch_128.pt" \
94
+ --resume 'latest' \
95
+ --train-data="pipe:aws s3 cp s3://mybucket/path/{laion{00000..xxxxx}.tar -" \
96
+ --train-num-samples 203666042 \
97
+ --dataset-type webdataset \
98
+ --precision amp_bfloat16 \
99
+ --beta2 0.98 \
100
+ --warmup 2000 \
101
+ --batch-size=256 \
102
+ --epochs=12 \
103
+ --dataset-resampled \
104
+ --aug-cfg use_timm=True scale='(0.5, 1.0)' re_prob=0.4 \
105
+ --clip-grad-norm 5.0 \
106
+ --lr 5e-5 \
107
+ --workers=6 \
108
+ --model "convnext_large_d_320" \
109
+ --seed 0 \
110
+ --ddp-static-graph \
111
+ --local-loss \
112
+ --gather-with-grad \
113
+ --grad-checkpointing
114
+ ```
115
+
116
+ # Evaluation
117
+
118
+ Evaluation done with code in the [LAION CLIP Benchmark suite](https://github.com/LAION-AI/CLIP_benchmark).
119
+
120
+ ## Testing Data, Factors & Metrics
121
+
122
+ ### Testing Data
123
+
124
+ The testing is performed with VTAB+ (A combination of VTAB (https://arxiv.org/abs/1910.04867) w/ additional robustness datasets) for classification and COCO and Flickr for retrieval.
125
+
126
+ ## Results
127
+
128
+ The models achieve between 75.9 and 76.9 top-1 zero-shot accuracy on ImageNet-1k.
129
+
130
+ Zero-shot curve of origina from-scratch 256x256 training:
131
+ ![](convnext_large_zero_shot.png)
132
+
133
+ An initial round of benchmarks have been performed on a wider range of datasets, to be viewable at https://github.com/LAION-AI/CLIP_benchmark/blob/main/benchmark/results.ipynb
134
+
135
+ # Acknowledgements
136
+
137
+ Acknowledging [stability.ai](https://stability.ai/) for compute used to train this model.
138
+
139
+ # Citation
140
+
141
+ **BibTeX:**
142
+
143
+ LAION-5B
144
+ ```bibtex
145
+ @inproceedings{schuhmann2022laionb,
146
+ title={{LAION}-5B: An open large-scale dataset for training next generation image-text models},
147
+ author={Christoph Schuhmann and
148
+ Romain Beaumont and
149
+ Richard Vencu and
150
+ Cade W Gordon and
151
+ Ross Wightman and
152
+ Mehdi Cherti and
153
+ Theo Coombes and
154
+ Aarush Katta and
155
+ Clayton Mullis and
156
+ Mitchell Wortsman and
157
+ Patrick Schramowski and
158
+ Srivatsa R Kundurthy and
159
+ Katherine Crowson and
160
+ Ludwig Schmidt and
161
+ Robert Kaczmarczyk and
162
+ Jenia Jitsev},
163
+ booktitle={Thirty-sixth Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
164
+ year={2022},
165
+ url={https://openreview.net/forum?id=M3Y74vmsMcY}
166
+ }
167
+ ```
168
+
169
+ OpenCLIP software
170
+ ```bibtex
171
+ @software{ilharco_gabriel_2021_5143773,
172
+ author = {Ilharco, Gabriel and
173
+ Wortsman, Mitchell and
174
+ Wightman, Ross and
175
+ Gordon, Cade and
176
+ Carlini, Nicholas and
177
+ Taori, Rohan and
178
+ Dave, Achal and
179
+ Shankar, Vaishaal and
180
+ Namkoong, Hongseok and
181
+ Miller, John and
182
+ Hajishirzi, Hannaneh and
183
+ Farhadi, Ali and
184
+ Schmidt, Ludwig},
185
+ title = {OpenCLIP},
186
+ month = jul,
187
+ year = 2021,
188
+ note = {If you use this software, please cite it as below.},
189
+ publisher = {Zenodo},
190
+ version = {0.1},
191
+ doi = {10.5281/zenodo.5143773},
192
+ url = {https://doi.org/10.5281/zenodo.5143773}
193
+ }
194
+ ```
195
+
196
+ OpenAI CLIP paper
197
+ ```bibtex
198
+ @inproceedings{Radford2021LearningTV,
199
+ title={Learning Transferable Visual Models From Natural Language Supervision},
200
+ author={Alec Radford and Jong Wook Kim and Chris Hallacy and A. Ramesh and Gabriel Goh and Sandhini Agarwal and Girish Sastry and Amanda Askell and Pamela Mishkin and Jack Clark and Gretchen Krueger and Ilya Sutskever},
201
+ booktitle={ICML},
202
+ year={2021}
203
+ }
204
+ ```
205
+
206
+ ```bibtex
207
+ @Article{liu2022convnet,
208
+ author = {Zhuang Liu and Hanzi Mao and Chao-Yuan Wu and Christoph Feichtenhofer and Trevor Darrell and Saining Xie},
209
+ title = {A ConvNet for the 2020s},
210
+ journal = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
211
+ year = {2022},
212
+ }
213
+ ```
214
+
215
+ ```bibtex
216
+ @misc{rw2019timm,
217
+ author = {Ross Wightman},
218
+ title = {PyTorch Image Models},
219
+ year = {2019},
220
+ publisher = {GitHub},
221
+ journal = {GitHub repository},
222
+ doi = {10.5281/zenodo.4414861},
223
+ howpublished = {\url{https://github.com/rwightman/pytorch-image-models}}
224
+ }
225
+ ```