espejelomar commited on
Commit
5ed8930
1 Parent(s): 7d69c10

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -5
README.md CHANGED
@@ -45,17 +45,27 @@ We propose to use the visual denotations of linguistic expressions (i.e. the set
45
 
46
  Disclaimer: The team releasing Flickr30k did not upload the dataset to the Hub and did not write a dataset card. These steps were done by the Hugging Face team.
47
 
48
- ### Supported Tasks and Leaderboards
49
 
50
- [More Information Needed](https://shannon.cs.illinois.edu/DenotationGraph/)
51
 
52
  ### Languages
53
 
54
- [More Information Needed](https://shannon.cs.illinois.edu/DenotationGraph/)
55
 
56
- ## Dataset Structure
 
 
 
 
 
 
 
 
 
 
 
57
 
58
- [More Information Needed](https://shannon.cs.illinois.edu/DenotationGraph/)
59
 
60
  ### Curation Rationale
61
 
 
45
 
46
  Disclaimer: The team releasing Flickr30k did not upload the dataset to the Hub and did not write a dataset card. These steps were done by the Hugging Face team.
47
 
48
+ ### Supported Tasks
49
 
50
+ - [Sentence Transformers](https://huggingface.co/sentence-transformers) training; useful for semantic search and sentence similarity.
51
 
52
  ### Languages
53
 
54
+ - English.
55
 
56
+ ## Dataset Structure: Equivalent sentence pairs.
57
+
58
+ Each example in the dataset contains quintuplets of similar sentences and is formatted as a dictionary with the key "set" and a list with the sentences as "value":
59
+
60
+ ```
61
+ {"set": [sentence_1, sentence_2, sentence3, sentence4, sentence5]}
62
+ {"set": [sentence_1, sentence_2, sentence3, sentence4, sentence5]}
63
+ ...
64
+ {"set": [sentence_1, sentence_2, sentence3, sentence4, sentence5]}
65
+ ```
66
+
67
+ This dataset is useful for training Sentence Transformers models. Refer to the following post on how to train models using similar pairs of sentences.
68
 
 
69
 
70
  ### Curation Rationale
71