数据集:
stsb_multi_mt
任务:
文本分类计算机处理:
multilingual大小:
10K<n<100K批注创建人:
crowdsourced源数据集:
extended|other-sts-b预印本库:
arxiv:1708.00055许可:
otherSTS Benchmark comprises a selection of the English datasets used in the STS tasks organized in the context of SemEval between 2012 and 2017. The selection of datasets include text from image captions, news headlines and user forums. ( source )
These are different multilingual translations and the English original of the STSbenchmark dataset . Translation has been done with deepl.com . It can be used to train sentence embeddings like T-Systems-onsite/cross-en-de-roberta-sentence-transformer .
Examples of Use
Load German dev Dataset:
from datasets import load_dataset dataset = load_dataset("stsb_multi_mt", name="de", split="dev")
Load English train Dataset:
from datasets import load_dataset dataset = load_dataset("stsb_multi_mt", name="en", split="train")
[More Information Needed]
Available languages are: de, en, es, fr, it, nl, pl, pt, ru, zh
This dataset provides pairs of sentences and a score of their similarity.
score | 2 example sentences | explanation |
---|---|---|
5 | The bird is bathing in the sink. Birdie is washing itself in the water basin. | The two sentences are completely equivalent, as they mean the same thing. |
4 | Two boys on a couch are playing video games. Two boys are playing a video game. | The two sentences are mostly equivalent, but some unimportant details differ. |
3 | John said he is considered a witness but not a suspect. “He is not a suspect anymore.” John said. | The two sentences are roughly equivalent, but some important information differs/missing. |
2 | They flew out of the nest in groups. They flew into the nest together. | The two sentences are not equivalent, but share some details. |
1 | The woman is playing the violin. The young lady enjoys listening to the guitar. | The two sentences are not equivalent, but are on the same topic. |
0 | The black dog is running through the snow. A race car driver is driving his car through the mud. | The two sentences are completely dissimilar. |
An example:
{ "sentence1": "A man is playing a large flute.", "sentence2": "A man is playing a flute.", "similarity_score": 3.8 }
[More Information Needed]
[More Information Needed]
Who are the source language producers?[More Information Needed]
[More Information Needed]
Who are the annotators?[More Information Needed]
[More Information Needed]
[More Information Needed]
[More Information Needed]
[More Information Needed]
[More Information Needed]
See LICENSE and download at original dataset .
@InProceedings{huggingface:dataset:stsb_multi_mt, title = {Machine translated multilingual STS benchmark dataset.}, author={Philip May}, year={2021}, url={https://github.com/PhilipMay/stsb-multi-mt} }
Thanks to @PhilipMay for adding this dataset.