gowitheflow commited on
Commit
b0f40dc
1 Parent(s): 33f1974

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -0
README.md CHANGED
@@ -24,3 +24,30 @@ configs:
24
  - split: test
25
  path: data/test-*
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  - split: test
25
  path: data/test-*
26
  ---
27
+ ### Dataset Summary
28
+
29
+ This dataset is rendered to images from STS-12. 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.
30
+
31
+ **Examples of Use**
32
+
33
+ Load test split:
34
+
35
+ ```python
36
+ from datasets import load_dataset
37
+ dataset = load_dataset("Pixel-Linguist/rendered-sts12", split="test")
38
+ ```
39
+
40
+ ### Languages
41
+
42
+ English-only; for multilingual and cross-lingual datasets, see `Pixel-Linguist/rendered-stsb` and `Pixel-Linguist/rendered-sts17`
43
+
44
+ ### Citation Information
45
+
46
+ ```
47
+ @article{xiao2024pixel,
48
+ title={Pixel Sentence Representation Learning},
49
+ 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},
50
+ journal={arXiv preprint arXiv:2402.08183},
51
+ year={2024}
52
+ }
53
+ ```