fesvhtr commited on
Commit
ef488c3
·
verified ·
1 Parent(s): e5247d8

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: ReasonSigLIP2-go16-384-S0-Rea
10
- - Base model: [google/siglip2-giant-opt-patch16-384](https://huggingface.co/google/siglip2-giant-opt-patch16-384)
11
- - Architecture: SigLIP2 ViT-Giant-Opt/16
12
- - Image resolution: 384
13
- - Training stage: Stage 0 - Reasoning
14
- - Training data: Only reasoning caption-image pairs from [ReasonLite-42M](https://huggingface.co/datasets/RISys-Lab/ReasonCLIPLite-42M) and [ReasonPro-16M](https://huggingface.co/datasets/RISys-Lab/ReasonCLIPPro-16M)
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 AutoModel, AutoProcessor
29
-
30
- model_id = "RISys-Lab/ReasonSigLIP2-go16-384-S0-Rea"
31
- model = AutoModel.from_pretrained(model_id)
32
- processor = AutoProcessor.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: ReasonSigLIP2-go16-384-S0-Rea
10
+ - Base model: [google/siglip2-giant-opt-patch16-384](https://huggingface.co/google/siglip2-giant-opt-patch16-384)
11
+ - Architecture: SigLIP2 ViT-Giant-Opt/16
12
+ - Image resolution: 384
13
+ - Training stage: Stage 0 - Reasoning
14
+ - Training data: Only reasoning caption-image pairs from [ReasonLite-42M](https://huggingface.co/datasets/RISys-Lab/ReasonCLIPLite-42M) and [ReasonPro-16M](https://huggingface.co/datasets/RISys-Lab/ReasonCLIPPro-16M)
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 AutoModel, AutoProcessor
30
+
31
+ model_id = "RISys-Lab/ReasonSigLIP2-go16-384-S0-Rea"
32
+ model = AutoModel.from_pretrained(model_id)
33
+ processor = AutoProcessor.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).