Zero-Shot Image Classification
OpenCLIP
chs20 commited on
Commit
8e043fb
1 Parent(s): 5f405c0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -9,6 +9,20 @@ TeCoA ([Mao et al. (2023)](https://arxiv.org/abs/2212.07016)) CLIP ViT-L/14 mode
9
 
10
  Supervised adversarial fine-tuning from Openai CLIP initialization on ImageNet with infinity-norm and radius 2/255.
11
 
 
 
12
  ```python
13
  model, _, image_processor = open_clip.create_model_and_transforms('hf-hub:chs20/tecoa2-clip')
 
 
 
 
 
 
 
 
 
 
 
 
14
  ```
 
9
 
10
  Supervised adversarial fine-tuning from Openai CLIP initialization on ImageNet with infinity-norm and radius 2/255.
11
 
12
+ ## Usage
13
+
14
  ```python
15
  model, _, image_processor = open_clip.create_model_and_transforms('hf-hub:chs20/tecoa2-clip')
16
+ ```
17
+
18
+
19
+ ## Citation
20
+ If you find this model useful, please consider citing our paper:
21
+ ```bibtex
22
+ @article{schlarmann2024robustclip,
23
+ title={Robust CLIP: Unsupervised Adversarial Fine-Tuning of Vision Embeddings for Robust Large Vision-Language Models},
24
+ author={Christian Schlarmann and Naman Deep Singh and Francesco Croce and Matthias Hein},
25
+ year={2024},
26
+ journal={ICML}
27
+ }
28
  ```