fesvhtr commited on
Commit
d852309
·
verified ·
1 Parent(s): b5bd1fc

docs: add playground link

Browse files
Files changed (1) hide show
  1. README.md +36 -35
README.md CHANGED
@@ -1,35 +1,36 @@
1
- ---
2
- library_name: transformers
3
- license: cc-by-nc-sa-4.0
4
- tags: []
5
- ---
6
-
7
- ## Model Details
8
-
9
- - Model: ReasonCLIP-B32-S0-Des
10
- - Base model: [openai/clip-vit-base-patch32](https://huggingface.co/openai/clip-vit-base-patch32)
11
- - Architecture: CLIP ViT-B/32
12
- - Image resolution: 224
13
- - Training stage: Stage 0 - Descriptive
14
- - Training data: [CC12M-Refined](https://huggingface.co/datasets/RISys-Lab/CC12M-Refined)
15
-
16
- ## Method
17
-
18
- ![Method overview](https://raw.githubusercontent.com/RISys-Lab/ReasonCLIP/main/doc/method.png)
19
-
20
- ## Resources
21
-
22
- - GitHub: [RISys-Lab/ReasonCLIP](https://github.com/RISys-Lab/ReasonCLIP)
23
- - Paper: [arXiv:2606.26794](https://arxiv.org/abs/2606.26794)
24
-
25
- ## Usage
26
-
27
- ```python
28
- from transformers import CLIPModel, CLIPProcessor
29
-
30
- model_id = "RISys-Lab/ReasonCLIP-B32-S0-Des"
31
- model = CLIPModel.from_pretrained(model_id)
32
- processor = CLIPProcessor.from_pretrained(model_id)
33
- ```
34
-
35
- For the full checkpoint list, see the [ReasonCLIP model card](https://github.com/RISys-Lab/ReasonCLIP/blob/main/doc/model_card.md).
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: cc-by-nc-sa-4.0
4
+ tags: []
5
+ ---
6
+
7
+ ## Model Details
8
+
9
+ - Model: ReasonCLIP-B32-S0-Des
10
+ - Base model: [openai/clip-vit-base-patch32](https://huggingface.co/openai/clip-vit-base-patch32)
11
+ - Architecture: CLIP ViT-B/32
12
+ - Image resolution: 224
13
+ - Training stage: Stage 0 - Descriptive
14
+ - Training data: [CC12M-Refined](https://huggingface.co/datasets/RISys-Lab/CC12M-Refined)
15
+
16
+ ## Method
17
+
18
+ ![Method overview](https://raw.githubusercontent.com/RISys-Lab/ReasonCLIP/main/doc/method.png)
19
+
20
+ ## Resources
21
+
22
+ - GitHub: [RISys-Lab/ReasonCLIP](https://github.com/RISys-Lab/ReasonCLIP)
23
+ - Paper: [arXiv:2606.26794](https://arxiv.org/abs/2606.26794)
24
+ - Playground: [ReasonCLIP Playground](https://www.sczhang.com/reasonclip/)
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from transformers import CLIPModel, CLIPProcessor
30
+
31
+ model_id = "RISys-Lab/ReasonCLIP-B32-S0-Des"
32
+ model = CLIPModel.from_pretrained(model_id)
33
+ processor = CLIPProcessor.from_pretrained(model_id)
34
+ ```
35
+
36
+ For the full checkpoint list, see the [ReasonCLIP model card](https://github.com/RISys-Lab/ReasonCLIP/blob/main/doc/model_card.md).