gowitheflow commited on
Commit
2b17b62
1 Parent(s): 0f3867f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -0
README.md CHANGED
@@ -19,3 +19,30 @@ configs:
19
  - split: test
20
  path: data/test-*
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  - split: test
20
  path: data/test-*
21
  ---
22
+ ### Dataset Summary
23
+
24
+ This dataset is rendered to images from STS-15. We envision the need to assess vision encoders' abilities to understand texts. A natural way will be assessing them with the STS protocols, with texts rendered into images.
25
+
26
+ **Examples of Use**
27
+
28
+ Load test split:
29
+
30
+ ```python
31
+ from datasets import load_dataset
32
+ dataset = load_dataset("Pixel-Linguist/rendered-sts15", split="test")
33
+ ```
34
+
35
+ ### Languages
36
+
37
+ English-only; for multilingual and cross-lingual datasets, see `Pixel-Linguist/rendered-stsb` and `Pixel-Linguist/rendered-sts17`
38
+
39
+ ### Citation Information
40
+
41
+ ```
42
+ @article{xiao2024pixel,
43
+ title={Pixel Sentence Representation Learning},
44
+ author={Xiao, Chenghao and Huang, Zhuoxu and Chen, Danlu and Hudson, G Thomas and Li, Yizhi and Duan, Haoran and Lin, Chenghua and Fu, Jie and Han, Jungong and Moubayed, Noura Al},
45
+ journal={arXiv preprint arXiv:2402.08183},
46
+ year={2024}
47
+ }
48
+ ```