id stringlengths 2 115 | lastModified stringlengths 24 24 | tags list | author stringlengths 2 42 ⌀ | description stringlengths 0 6.67k ⌀ | citation stringlengths 0 10.7k ⌀ | likes int64 0 3.66k | downloads int64 0 8.89M | created timestamp[us] | card stringlengths 11 977k | card_len int64 11 977k | embeddings list |
|---|---|---|---|---|---|---|---|---|---|---|---|
BeIR/fever-qrels | 2022-10-23T06:08:11.000Z | [
"task_categories:text-retrieval",
"task_ids:entity-linking-retrieval",
"task_ids:fact-checking-retrieval",
"multilinguality:monolingual",
"language:en",
"license:cc-by-sa-4.0",
"region:us"
] | BeIR | null | null | 0 | 1,184 | 2022-06-05T17:28:01 | ---
annotations_creators: []
language_creators: []
language:
- en
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
paperswithcode_id: beir
pretty_name: BEIR Benchmark
size_categories:
msmarco:
- 1M<n<10M
trec-covid:
- 100k<n<1M
nfcorpus:
- 1K<n<10K
nq:
- 1M<n<10M
hotpotqa:
- 1M<n<10M
fiqa:
- 10K<n<100K
arguana:
- 1K<n<10K
touche-2020:
- 100K<n<1M
cqadupstack:
- 100K<n<1M
quora:
- 100K<n<1M
dbpedia:
- 1M<n<10M
scidocs:
- 10K<n<100K
fever:
- 1M<n<10M
climate-fever:
- 1M<n<10M
scifact:
- 1K<n<10K
source_datasets: []
task_categories:
- text-retrieval
- zero-shot-retrieval
- information-retrieval
- zero-shot-information-retrieval
task_ids:
- passage-retrieval
- entity-linking-retrieval
- fact-checking-retrieval
- tweet-retrieval
- citation-prediction-retrieval
- duplication-question-retrieval
- argument-retrieval
- news-retrieval
- biomedical-information-retrieval
- question-answering-retrieval
---
# Dataset Card for BEIR Benchmark
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://github.com/UKPLab/beir
- **Repository:** https://github.com/UKPLab/beir
- **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
- **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
- **Point of Contact:** nandan.thakur@uwaterloo.ca
### Dataset Summary
BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks:
- Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
- Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
- Bio-Medical IR: [TREC-COVID](https://ir.nist.gov/covidSubmit/index.html), [BioASQ](http://bioasq.org), [NFCorpus](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/)
- News Retrieval: [TREC-NEWS](https://trec.nist.gov/data/news2019.html), [Robust04](https://trec.nist.gov/data/robust/04.guidelines.html)
- Argument Retrieval: [Touche-2020](https://webis.de/events/touche-20/shared-task-1.html), [ArguAna](tp://argumentation.bplaced.net/arguana/data)
- Duplicate Question Retrieval: [Quora](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs), [CqaDupstack](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/)
- Citation-Prediction: [SCIDOCS](https://allenai.org/data/scidocs)
- Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
- Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
All these datasets have been preprocessed and can be used for your experiments.
```python
```
### Supported Tasks and Leaderboards
The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia.
The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/).
### Languages
All tasks are in English (`en`).
## Dataset Structure
All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format:
- `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}`
- `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}`
- `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1`
### Data Instances
A high level example of any beir dataset:
```python
corpus = {
"doc1" : {
"title": "Albert Einstein",
"text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
its influence on the philosophy of science. He is best known to the general public for his mass–energy \
equivalence formula E = mc2, which has been dubbed 'the world's most famous equation'. He received the 1921 \
Nobel Prize in Physics 'for his services to theoretical physics, and especially for his discovery of the law \
of the photoelectric effect', a pivotal step in the development of quantum theory."
},
"doc2" : {
"title": "", # Keep title an empty string if not present
"text": "Wheat beer is a top-fermented beer which is brewed with a large proportion of wheat relative to the amount of \
malted barley. The two main varieties are German Weißbier and Belgian witbier; other types include Lambic (made\
with wild yeast), Berliner Weisse (a cloudy, sour beer), and Gose (a sour, salty beer)."
},
}
queries = {
"q1" : "Who developed the mass-energy equivalence formula?",
"q2" : "Which beer is brewed with a large proportion of wheat?"
}
qrels = {
"q1" : {"doc1": 1},
"q2" : {"doc2": 1},
}
```
### Data Fields
Examples from all configurations have the following features:
### Corpus
- `corpus`: a `dict` feature representing the document title and passage text, made up of:
- `_id`: a `string` feature representing the unique document id
- `title`: a `string` feature, denoting the title of the document.
- `text`: a `string` feature, denoting the text of the document.
### Queries
- `queries`: a `dict` feature representing the query, made up of:
- `_id`: a `string` feature representing the unique query id
- `text`: a `string` feature, denoting the text of the query.
### Qrels
- `qrels`: a `dict` feature representing the query document relevance judgements, made up of:
- `_id`: a `string` feature representing the query id
- `_id`: a `string` feature, denoting the document id.
- `score`: a `int32` feature, denoting the relevance judgement between query and document.
### Data Splits
| Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
| -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:|
| MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` |
| TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` |
| NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` |
| BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
| NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` |
| HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` |
| FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` |
| Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
| TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
| ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` |
| Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` |
| CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` |
| Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` |
| DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` |
| SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` |
| FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` |
| Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` |
| SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` |
| Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
## Dataset Creation
### Curation Rationale
[Needs More Information]
### Source Data
#### Initial Data Collection and Normalization
[Needs More Information]
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
[Needs More Information]
#### Who are the annotators?
[Needs More Information]
### Personal and Sensitive Information
[Needs More Information]
## Considerations for Using the Data
### Social Impact of Dataset
[Needs More Information]
### Discussion of Biases
[Needs More Information]
### Other Known Limitations
[Needs More Information]
## Additional Information
### Dataset Curators
[Needs More Information]
### Licensing Information
[Needs More Information]
### Citation Information
Cite as:
```
@inproceedings{
thakur2021beir,
title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych},
booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
year={2021},
url={https://openreview.net/forum?id=wCu6T5xFjeJ}
}
```
### Contributions
Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset. | 13,988 | [
[
-0.0396728515625,
-0.039825439453125,
0.01094818115234375,
0.00365447998046875,
0.004215240478515625,
0.00008702278137207031,
-0.0081939697265625,
-0.018890380859375,
0.021697998046875,
0.005970001220703125,
-0.034332275390625,
-0.0545654296875,
-0.026397705078125,
0.0153961181640625,
-0.0228424072265625,
0.0740966796875,
0.0010747909545898438,
0.00446319580078125,
-0.018524169921875,
-0.0277862548828125,
-0.006099700927734375,
-0.03399658203125,
-0.038330078125,
-0.022064208984375,
0.034576416015625,
0.030120849609375,
0.03216552734375,
0.0369873046875,
0.06512451171875,
0.0196533203125,
-0.0128631591796875,
0.01464080810546875,
-0.032073974609375,
-0.008697509765625,
-0.0189971923828125,
-0.02545166015625,
-0.0256195068359375,
-0.003215789794921875,
0.05340576171875,
0.036834716796875,
-0.0037364959716796875,
0.0288238525390625,
0.00594329833984375,
0.058074951171875,
-0.033721923828125,
0.00878143310546875,
-0.040679931640625,
-0.007904052734375,
-0.027618408203125,
-0.009124755859375,
-0.00627899169921875,
-0.01433563232421875,
-0.0025424957275390625,
-0.049560546875,
0.03338623046875,
0.0185089111328125,
0.09039306640625,
0.01136016845703125,
-0.02587890625,
-0.01453399658203125,
-0.032501220703125,
0.064453125,
-0.049774169921875,
0.03662109375,
0.0386962890625,
0.0190582275390625,
-0.01071929931640625,
-0.062347412109375,
-0.042449951171875,
-0.0071258544921875,
-0.027679443359375,
0.034881591796875,
-0.011993408203125,
-0.0263824462890625,
0.026947021484375,
0.0316162109375,
-0.0655517578125,
-0.011993408203125,
-0.036468505859375,
-0.01514434814453125,
0.0584716796875,
0.0227813720703125,
0.002437591552734375,
-0.030670166015625,
-0.02392578125,
-0.032958984375,
-0.0311737060546875,
0.02044677734375,
0.01561737060546875,
0.0218353271484375,
-0.0251312255859375,
0.0303955078125,
-0.034332275390625,
0.037689208984375,
0.006542205810546875,
-0.0078277587890625,
0.049072265625,
-0.061920166015625,
-0.0038127899169921875,
-0.00879669189453125,
0.0770263671875,
0.0309600830078125,
-0.0303192138671875,
-0.004306793212890625,
-0.00433349609375,
-0.0203704833984375,
0.0004792213439941406,
-0.0648193359375,
-0.0115814208984375,
0.04486083984375,
-0.033782958984375,
-0.00154876708984375,
0.0233917236328125,
-0.07415771484375,
-0.00548553466796875,
0.0006823539733886719,
0.0300445556640625,
-0.0396728515625,
-0.0120849609375,
0.0018682479858398438,
-0.04345703125,
0.0261688232421875,
-0.0006093978881835938,
-0.04742431640625,
0.02398681640625,
0.033966064453125,
0.061004638671875,
-0.003139495849609375,
-0.019927978515625,
-0.0253143310546875,
0.0109710693359375,
-0.01088714599609375,
0.04986572265625,
-0.024200439453125,
-0.030792236328125,
-0.0107574462890625,
0.0115203857421875,
-0.002567291259765625,
-0.0256195068359375,
0.07049560546875,
-0.02960205078125,
0.03411865234375,
-0.059906005859375,
-0.031280517578125,
-0.0082244873046875,
0.0259246826171875,
-0.052764892578125,
0.09661865234375,
0.0201416015625,
-0.08331298828125,
0.0221099853515625,
-0.06890869140625,
-0.03277587890625,
0.0007615089416503906,
-0.00859832763671875,
-0.034637451171875,
-0.0269012451171875,
0.017333984375,
0.03216552734375,
-0.04730224609375,
0.00974273681640625,
-0.0121307373046875,
-0.0164794921875,
0.01377105712890625,
0.002513885498046875,
0.07513427734375,
0.029449462890625,
-0.026275634765625,
-0.01233673095703125,
-0.0657958984375,
0.0014276504516601562,
0.023834228515625,
-0.0296783447265625,
-0.0128936767578125,
-0.0033016204833984375,
0.014312744140625,
0.00890350341796875,
0.0222625732421875,
-0.039398193359375,
0.00032210350036621094,
-0.023040771484375,
0.03778076171875,
0.020263671875,
0.010955810546875,
0.0179290771484375,
-0.0533447265625,
0.020111083984375,
0.01021575927734375,
0.0260467529296875,
0.005218505859375,
-0.03350830078125,
-0.038177490234375,
-0.022003173828125,
0.0266571044921875,
0.048492431640625,
-0.041290283203125,
0.0465087890625,
-0.03900146484375,
-0.07025146484375,
-0.043121337890625,
0.00550079345703125,
0.033843994140625,
0.05755615234375,
0.04644775390625,
-0.00653839111328125,
-0.03936767578125,
-0.0694580078125,
-0.013763427734375,
-0.0163116455078125,
0.00858306884765625,
0.036224365234375,
0.06671142578125,
-0.008880615234375,
0.055450439453125,
-0.04473876953125,
-0.0218505859375,
-0.00815582275390625,
0.0036754608154296875,
0.0380859375,
0.04742431640625,
0.049407958984375,
-0.08599853515625,
-0.035614013671875,
-0.00260162353515625,
-0.05889892578125,
0.0005660057067871094,
0.005001068115234375,
-0.014617919921875,
0.01436614990234375,
0.033447265625,
-0.044525146484375,
0.02471923828125,
0.009796142578125,
-0.02001953125,
0.028900146484375,
-0.01016998291015625,
0.041259765625,
-0.09332275390625,
0.044586181640625,
0.01091766357421875,
0.0110015869140625,
-0.040740966796875,
0.00545501708984375,
0.00933837890625,
0.01546478271484375,
-0.032928466796875,
0.051849365234375,
-0.03228759765625,
0.005779266357421875,
0.0240936279296875,
0.0027523040771484375,
0.0167236328125,
0.02471923828125,
-0.01494598388671875,
0.0584716796875,
0.036895751953125,
-0.049102783203125,
0.0243682861328125,
0.032379150390625,
-0.0240325927734375,
0.0278167724609375,
-0.0521240234375,
-0.00843048095703125,
-0.007274627685546875,
0.0190582275390625,
-0.07244873046875,
-0.021087646484375,
0.017669677734375,
-0.0491943359375,
0.0169525146484375,
-0.01044464111328125,
-0.0556640625,
-0.047119140625,
-0.040557861328125,
0.01515960693359375,
0.0372314453125,
-0.026397705078125,
0.036834716796875,
0.0261688232421875,
0.009307861328125,
-0.059326171875,
-0.054779052734375,
-0.0139923095703125,
-0.01971435546875,
-0.053192138671875,
0.050628662109375,
-0.022613525390625,
-0.020721435546875,
0.01372528076171875,
-0.00507354736328125,
-0.004604339599609375,
0.005756378173828125,
0.0184173583984375,
0.021728515625,
-0.007732391357421875,
0.006542205810546875,
-0.011077880859375,
0.0134735107421875,
-0.009002685546875,
0.005237579345703125,
0.0433349609375,
-0.0277099609375,
-0.0097808837890625,
-0.02703857421875,
0.0230560302734375,
0.0419921875,
-0.0254974365234375,
0.053375244140625,
0.06365966796875,
-0.02667236328125,
0.01399993896484375,
-0.041046142578125,
-0.01100921630859375,
-0.03369140625,
0.018096923828125,
-0.0296173095703125,
-0.045867919921875,
0.055908203125,
0.0110321044921875,
0.0120391845703125,
0.072021484375,
0.034912109375,
-0.01447296142578125,
0.055938720703125,
0.01457977294921875,
-0.00528717041015625,
0.03485107421875,
-0.050994873046875,
-0.003765106201171875,
-0.06256103515625,
-0.038116455078125,
-0.06878662109375,
-0.01529693603515625,
-0.0521240234375,
-0.0290679931640625,
0.035186767578125,
0.01230621337890625,
-0.034149169921875,
0.0289459228515625,
-0.051788330078125,
0.0115203857421875,
0.055419921875,
0.007389068603515625,
-0.002048492431640625,
0.0002655982971191406,
-0.0200347900390625,
0.0127410888671875,
-0.060760498046875,
-0.02081298828125,
0.09173583984375,
0.0048828125,
0.03778076171875,
0.01270294189453125,
0.06011962890625,
0.0219879150390625,
0.0007953643798828125,
-0.024932861328125,
0.0419921875,
-0.01227569580078125,
-0.07574462890625,
-0.0179443359375,
-0.041046142578125,
-0.08673095703125,
0.00901031494140625,
-0.031341552734375,
-0.052642822265625,
0.0250396728515625,
0.002971649169921875,
-0.021392822265625,
0.0184783935546875,
-0.057464599609375,
0.059783935546875,
-0.0253753662109375,
-0.054107666015625,
-0.005035400390625,
-0.06365966796875,
0.01390838623046875,
0.0019664764404296875,
0.0259552001953125,
-0.0022373199462890625,
-0.00461578369140625,
0.079345703125,
-0.03216552734375,
0.031005859375,
-0.01233673095703125,
0.03424072265625,
0.0303955078125,
-0.0264434814453125,
0.03863525390625,
0.007740020751953125,
-0.03717041015625,
0.02679443359375,
0.03338623046875,
-0.044525146484375,
-0.0242767333984375,
0.054107666015625,
-0.0582275390625,
-0.0333251953125,
-0.05181884765625,
-0.035736083984375,
-0.0027408599853515625,
0.025726318359375,
0.03778076171875,
0.033355712890625,
-0.021148681640625,
0.0284576416015625,
0.042327880859375,
-0.0252227783203125,
0.027435302734375,
0.04180908203125,
-0.0028781890869140625,
-0.045745849609375,
0.058197021484375,
0.0215911865234375,
-0.0106353759765625,
0.05133056640625,
0.019866943359375,
-0.0343017578125,
-0.04473876953125,
-0.02178955078125,
0.020050048828125,
-0.041839599609375,
-0.033294677734375,
-0.056243896484375,
-0.02044677734375,
-0.055419921875,
0.0006232261657714844,
-0.01119232177734375,
-0.01922607421875,
-0.0279083251953125,
-0.006435394287109375,
0.04632568359375,
0.0251312255859375,
-0.030181884765625,
0.00980377197265625,
-0.06134033203125,
0.028594970703125,
-0.005496978759765625,
0.0155792236328125,
-0.0157470703125,
-0.0340576171875,
-0.02911376953125,
0.01055908203125,
-0.025177001953125,
-0.04766845703125,
0.0293426513671875,
0.0147247314453125,
0.05889892578125,
0.01739501953125,
0.0155029296875,
0.050689697265625,
-0.01047515869140625,
0.07879638671875,
0.01451873779296875,
-0.042236328125,
0.0462646484375,
-0.02911376953125,
0.018096923828125,
0.0633544921875,
0.051116943359375,
-0.0298919677734375,
-0.01103973388671875,
-0.057891845703125,
-0.07659912109375,
0.049896240234375,
0.027099609375,
-0.017059326171875,
-0.0039520263671875,
0.0196075439453125,
0.0043182373046875,
0.0080413818359375,
-0.0292816162109375,
-0.05133056640625,
-0.0262603759765625,
-0.020111083984375,
-0.005889892578125,
0.0018634796142578125,
-0.0282135009765625,
-0.042327880859375,
0.0697021484375,
0.00836944580078125,
0.031890869140625,
0.046600341796875,
-0.0017480850219726562,
0.0035037994384765625,
0.0219268798828125,
0.0308380126953125,
0.04754638671875,
-0.048736572265625,
-0.0012426376342773438,
0.0115814208984375,
-0.0428466796875,
-0.01494598388671875,
0.037872314453125,
-0.01470184326171875,
0.003459930419921875,
0.0246124267578125,
0.0352783203125,
-0.00397491455078125,
-0.05023193359375,
0.030120849609375,
-0.010833740234375,
-0.036468505859375,
-0.02398681640625,
0.01013946533203125,
0.0119476318359375,
0.0202789306640625,
0.045196533203125,
-0.006855010986328125,
0.0179443359375,
-0.045989990234375,
0.021240234375,
0.03173828125,
-0.007266998291015625,
-0.0174713134765625,
0.053985595703125,
-0.0011911392211914062,
-0.00844573974609375,
0.035797119140625,
-0.0293426513671875,
-0.03533935546875,
0.055633544921875,
0.0194549560546875,
0.03668212890625,
0.0023136138916015625,
0.0122528076171875,
0.058807373046875,
0.022796630859375,
-0.01152801513671875,
0.043487548828125,
0.006603240966796875,
-0.043792724609375,
0.00843048095703125,
-0.046112060546875,
-0.021148681640625,
0.019134521484375,
-0.054107666015625,
0.01690673828125,
-0.02716064453125,
-0.027679443359375,
0.0266571044921875,
0.0408935546875,
-0.08013916015625,
0.0178680419921875,
-0.01369476318359375,
0.080078125,
-0.050750732421875,
0.04962158203125,
0.06201171875,
-0.053863525390625,
-0.0570068359375,
-0.01219940185546875,
-0.00421142578125,
-0.043182373046875,
0.040740966796875,
-0.0047149658203125,
0.0165557861328125,
-0.006580352783203125,
-0.0452880859375,
-0.076416015625,
0.10992431640625,
0.00662994384765625,
-0.038116455078125,
0.016143798828125,
0.0078277587890625,
0.048004150390625,
-0.01071929931640625,
0.033294677734375,
0.03607177734375,
0.05145263671875,
0.0076141357421875,
-0.05712890625,
0.0116424560546875,
-0.041229248046875,
-0.0277862548828125,
0.0146026611328125,
-0.0821533203125,
0.060577392578125,
0.0011692047119140625,
-0.0113525390625,
-0.0083465576171875,
0.042327880859375,
0.0158233642578125,
0.056915283203125,
0.0171661376953125,
0.0657958984375,
0.07000732421875,
-0.014556884765625,
0.08319091796875,
-0.03460693359375,
0.035980224609375,
0.0670166015625,
-0.017974853515625,
0.060791015625,
0.026824951171875,
-0.0312347412109375,
0.0302886962890625,
0.053009033203125,
-0.0281982421875,
0.047515869140625,
0.005527496337890625,
0.0013036727905273438,
0.0012674331665039062,
-0.01067352294921875,
-0.0516357421875,
0.0289459228515625,
0.02734375,
-0.016143798828125,
-0.00769805908203125,
-0.0179901123046875,
0.0048065185546875,
-0.00934600830078125,
-0.01708984375,
0.04718017578125,
-0.0124664306640625,
-0.042022705078125,
0.058563232421875,
-0.0016260147094726562,
0.050628662109375,
-0.05450439453125,
0.01422882080078125,
-0.0303192138671875,
-0.0014619827270507812,
-0.03076171875,
-0.06256103515625,
0.0203704833984375,
0.0023021697998046875,
-0.0293731689453125,
0.0012998580932617188,
0.04571533203125,
-0.0103607177734375,
-0.0428466796875,
0.0165863037109375,
0.04541015625,
0.027374267578125,
0.01204681396484375,
-0.0731201171875,
0.002140045166015625,
-0.0013208389282226562,
-0.026275634765625,
0.0260467529296875,
0.028228759765625,
0.00736236572265625,
0.043182373046875,
0.05841064453125,
-0.0011444091796875,
0.0026569366455078125,
-0.0136260986328125,
0.06756591796875,
-0.0697021484375,
-0.02178955078125,
-0.043121337890625,
0.0313720703125,
-0.0265655517578125,
-0.03363037109375,
0.061920166015625,
0.084716796875,
0.06866455078125,
0.01021575927734375,
0.06591796875,
-0.037567138671875,
0.046905517578125,
-0.0238189697265625,
0.0633544921875,
-0.06982421875,
0.005756378173828125,
-0.0092926025390625,
-0.038299560546875,
-0.0125885009765625,
0.023223876953125,
-0.0208892822265625,
0.004703521728515625,
0.054534912109375,
0.076904296875,
0.0023345947265625,
-0.0108642578125,
0.004299163818359375,
0.020538330078125,
0.0193328857421875,
0.03082275390625,
0.03533935546875,
-0.061004638671875,
0.049957275390625,
-0.0330810546875,
0.000014543533325195312,
-0.0294952392578125,
-0.049560546875,
-0.0545654296875,
-0.07293701171875,
-0.030731201171875,
-0.04266357421875,
0.009918212890625,
0.0748291015625,
0.052001953125,
-0.06878662109375,
-0.0074462890625,
0.007415771484375,
0.01345062255859375,
-0.0281219482421875,
-0.0204925537109375,
0.0555419921875,
-0.0028171539306640625,
-0.045013427734375,
0.01131439208984375,
-0.0007634162902832031,
-0.0027942657470703125,
0.0179443359375,
-0.008209228515625,
-0.042327880859375,
0.00299835205078125,
0.036102294921875,
0.035186767578125,
-0.037384033203125,
-0.004642486572265625,
0.00482940673828125,
-0.019439697265625,
0.021728515625,
0.017974853515625,
-0.047119140625,
0.0100555419921875,
0.057769775390625,
0.03704833984375,
0.050689697265625,
0.006015777587890625,
-0.004817962646484375,
-0.03656005859375,
-0.00531005859375,
0.0178070068359375,
0.02923583984375,
0.02923583984375,
-0.0294342041015625,
0.058563232421875,
0.0259552001953125,
-0.0408935546875,
-0.065673828125,
-0.0250091552734375,
-0.11383056640625,
-0.0178070068359375,
0.091796875,
0.0001779794692993164,
-0.026123046875,
-0.002582550048828125,
-0.003993988037109375,
0.0308990478515625,
-0.053375244140625,
0.045867919921875,
0.044677734375,
-0.01285552978515625,
0.01201629638671875,
-0.045440673828125,
0.033294677734375,
0.0188140869140625,
-0.066162109375,
-0.0159759521484375,
0.020721435546875,
0.033843994140625,
0.022552490234375,
0.0419921875,
-0.01561737060546875,
0.00426483154296875,
0.010223388671875,
0.006622314453125,
-0.01143646240234375,
0.0036334991455078125,
-0.00550079345703125,
0.017059326171875,
-0.017333984375,
-0.0169525146484375
]
] |
dlb/plue | 2022-10-29T12:19:26.000Z | [
"task_categories:text-classification",
"task_ids:acceptability-classification",
"task_ids:natural-language-inference",
"task_ids:semantic-similarity-scoring",
"task_ids:sentiment-classification",
"task_ids:text-scoring",
"annotations_creators:found",
"language_creators:machine-generated",
"multilinguality:monolingual",
"multilinguality:translation",
"size_categories:10K<n<100K",
"source_datasets:extended|glue",
"language:pt",
"license:lgpl-3.0",
"paraphrase-identification",
"qa-nli",
"coreference-nli",
"region:us"
] | dlb | PLUE: Portuguese Language Understanding Evaluationis a Portuguese translation of
the GLUE benchmark and Scitail using OPUS-MT model and Google Cloud Translation. | @misc{Gomes2020,
author = {GOMES, J. R. S.},
title = {Portuguese Language Understanding Evaluation},
year = {2020},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\\url{https://github.com/jubs12/PLUE}},
commit = {CURRENT_COMMIT}
}
@inproceedings{wang2019glue,
title={{GLUE}: A Multi-Task Benchmark and Analysis Platform for Natural Language Understanding},
author={Wang, Alex and Singh, Amanpreet and Michael, Julian and Hill, Felix and Levy, Omer and Bowman, Samuel R.},
note={In the Proceedings of ICLR.},
year={2019}
} | 6 | 1,183 | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- machine-generated
language:
- pt
license:
- lgpl-3.0
multilinguality:
- monolingual
- translation
size_categories:
- 10K<n<100K
source_datasets:
- extended|glue
task_categories:
- text-classification
task_ids:
- acceptability-classification
- natural-language-inference
- semantic-similarity-scoring
- sentiment-classification
- text-scoring
pretty_name: PLUE (Portuguese Language Understanding Evaluation benchmark)
tags:
- paraphrase-identification
- qa-nli
- coreference-nli
---
# Dataset Card for PLUE
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Repository:** https://github.com/ju-resplande/PLUE
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
Portuguese translation of the <a href="https://gluebenchmark.com/">GLUE benchmark</a>, <a href=https://nlp.stanford.edu/projects/snli/>SNLI</a>, and <a href=https://allenai.org/data/scitail> Scitail</a> using <a href=https://github.com/Helsinki-NLP/OPUS-MT>OPUS-MT model</a> and <a href=https://cloud.google.com/translate/docs>Google Cloud Translation</a>.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
The language data in PLUE is Brazilian Portuguese (BCP-47 pt-BR)
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
```bibtex
@misc{Gomes2020,
author = {GOMES, J. R. S.},
title = {PLUE: Portuguese Language Understanding Evaluation},
year = {2020},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/jubs12/PLUE}},
commit = {CURRENT_COMMIT}
}
```
### Contributions
Thanks to [@ju-resplande](https://github.com/ju-resplande) for adding this dataset. | 3,654 | [
[
-0.0250244140625,
-0.0293426513671875,
0.0067596435546875,
0.025970458984375,
-0.0261077880859375,
0.005290985107421875,
-0.0322265625,
-0.0157318115234375,
0.047149658203125,
0.0462646484375,
-0.04498291015625,
-0.0709228515625,
-0.043365478515625,
0.0170135498046875,
-0.008758544921875,
0.087890625,
-0.01084136962890625,
-0.015106201171875,
-0.0164337158203125,
-0.0261383056640625,
-0.016693115234375,
-0.03424072265625,
-0.03228759765625,
-0.004505157470703125,
0.017608642578125,
0.048126220703125,
0.046142578125,
0.04144287109375,
0.03216552734375,
0.023529052734375,
0.0005884170532226562,
0.0162353515625,
-0.051910400390625,
-0.019134521484375,
-0.01123809814453125,
-0.019134521484375,
-0.051239013671875,
-0.00356292724609375,
0.048980712890625,
0.048919677734375,
-0.0019006729125976562,
0.031341552734375,
0.0139007568359375,
0.052642822265625,
-0.03021240234375,
0.052642822265625,
-0.015869140625,
-0.01428985595703125,
-0.0352783203125,
-0.0073394775390625,
-0.010345458984375,
-0.040985107421875,
0.001956939697265625,
-0.060028076171875,
0.0024566650390625,
-0.0090179443359375,
0.065673828125,
0.00493621826171875,
-0.0175323486328125,
-0.0208282470703125,
-0.0252227783203125,
0.05377197265625,
-0.043914794921875,
0.0166473388671875,
0.0435791015625,
0.00583648681640625,
-0.006519317626953125,
-0.070556640625,
-0.02886962890625,
0.00867462158203125,
-0.018035888671875,
0.03204345703125,
-0.0116729736328125,
-0.01611328125,
0.032623291015625,
0.033843994140625,
-0.038055419921875,
-0.0243072509765625,
-0.044281005859375,
-0.0181427001953125,
0.0726318359375,
0.0019092559814453125,
0.016387939453125,
-0.017486572265625,
-0.01861572265625,
-0.022216796875,
-0.036773681640625,
0.0167083740234375,
0.03082275390625,
0.0224761962890625,
-0.0634765625,
0.0333251953125,
-0.00763702392578125,
0.051116943359375,
-0.0177764892578125,
-0.0252227783203125,
0.06072998046875,
-0.034393310546875,
0.0005435943603515625,
-0.01311492919921875,
0.07647705078125,
0.035003662109375,
0.00901031494140625,
0.006198883056640625,
0.0020465850830078125,
-0.0104217529296875,
-0.01044464111328125,
-0.048828125,
-0.0258941650390625,
0.03167724609375,
-0.03460693359375,
-0.01409149169921875,
0.02484130859375,
-0.07196044921875,
-0.0175018310546875,
-0.015869140625,
-0.00562286376953125,
-0.0244598388671875,
-0.028411865234375,
-0.0004558563232421875,
-0.004764556884765625,
0.0186004638671875,
0.006389617919921875,
-0.034454345703125,
0.0292510986328125,
0.0283660888671875,
0.05328369140625,
-0.0160675048828125,
-0.0184478759765625,
-0.0269775390625,
0.01361083984375,
-0.00769805908203125,
0.045684814453125,
-0.0217132568359375,
-0.058349609375,
0.01007080078125,
0.035797119140625,
-0.007289886474609375,
-0.0261383056640625,
0.0853271484375,
-0.0014753341674804688,
0.0263671875,
-0.04595947265625,
-0.0318603515625,
-0.018157958984375,
-0.00567626953125,
-0.0631103515625,
0.09844970703125,
0.020050048828125,
-0.07330322265625,
0.0137176513671875,
-0.06610107421875,
-0.03924560546875,
0.0224151611328125,
-0.01226806640625,
-0.0379638671875,
-0.01416015625,
0.01065826416015625,
0.0259552001953125,
-0.033416748046875,
0.0279998779296875,
-0.01222991943359375,
-0.0042572021484375,
0.0153656005859375,
-0.0054931640625,
0.09796142578125,
0.01183319091796875,
-0.01003265380859375,
0.0165863037109375,
-0.0648193359375,
-0.01519775390625,
0.030242919921875,
-0.019927978515625,
-0.01641845703125,
-0.00843048095703125,
0.017608642578125,
0.00914764404296875,
0.04180908203125,
-0.02850341796875,
0.01448822021484375,
-0.030548095703125,
0.042572021484375,
0.026519775390625,
0.005550384521484375,
0.033538818359375,
-0.0313720703125,
0.036773681640625,
0.0005545616149902344,
0.02423095703125,
0.00714111328125,
-0.057220458984375,
-0.05352783203125,
-0.0221405029296875,
0.0341796875,
0.06005859375,
-0.060272216796875,
0.05645751953125,
-0.03619384765625,
-0.04595947265625,
-0.05291748046875,
0.0098419189453125,
0.0276031494140625,
0.044342041015625,
0.03363037109375,
-0.034881591796875,
-0.052764892578125,
-0.0638427734375,
0.01271820068359375,
-0.005474090576171875,
0.01108551025390625,
0.0377197265625,
0.07049560546875,
-0.0023555755615234375,
0.058441162109375,
-0.03802490234375,
-0.0203399658203125,
-0.0275115966796875,
0.0035991668701171875,
0.0290374755859375,
0.038726806640625,
0.04736328125,
-0.0660400390625,
-0.03497314453125,
-0.018218994140625,
-0.05291748046875,
-0.0270843505859375,
0.0073394775390625,
-0.0207977294921875,
0.0150604248046875,
0.0042877197265625,
-0.01557159423828125,
0.043792724609375,
0.049041748046875,
-0.028533935546875,
0.035888671875,
-0.0110931396484375,
0.0118560791015625,
-0.08447265625,
0.0265045166015625,
0.00574493408203125,
0.001934051513671875,
-0.041290283203125,
-0.01220703125,
0.00281524658203125,
-0.0070953369140625,
-0.036590576171875,
0.048675537109375,
-0.0240325927734375,
-0.0028553009033203125,
0.0141448974609375,
0.01508331298828125,
0.01373291015625,
0.030517578125,
0.01690673828125,
0.05908203125,
0.0509033203125,
-0.03094482421875,
0.0255584716796875,
0.040618896484375,
-0.028167724609375,
0.03857421875,
-0.059783935546875,
0.0017910003662109375,
-0.0023822784423828125,
0.0277252197265625,
-0.06976318359375,
-0.0225372314453125,
0.043731689453125,
-0.036590576171875,
0.011993408203125,
-0.0163116455078125,
-0.0491943359375,
-0.041107177734375,
-0.040008544921875,
0.01074981689453125,
0.0194091796875,
-0.01499176025390625,
0.032470703125,
0.05206298828125,
-0.01183319091796875,
-0.036102294921875,
-0.059600830078125,
-0.00034689903259277344,
-0.0221405029296875,
-0.05755615234375,
0.052886962890625,
-0.024627685546875,
-0.004413604736328125,
-0.004459381103515625,
0.01556396484375,
-0.01116180419921875,
0.0003094673156738281,
0.0179443359375,
0.0221099853515625,
0.00673675537109375,
-0.015716552734375,
-0.003833770751953125,
-0.007007598876953125,
-0.01100921630859375,
-0.00753021240234375,
0.03411865234375,
-0.0108184814453125,
0.000820159912109375,
-0.028533935546875,
0.025054931640625,
0.0241851806640625,
-0.035980224609375,
0.0584716796875,
0.058807373046875,
-0.01806640625,
0.00563812255859375,
-0.033416748046875,
-0.0010738372802734375,
-0.027984619140625,
0.00215911865234375,
-0.0231781005859375,
-0.05023193359375,
0.074462890625,
0.0088043212890625,
0.0098724365234375,
0.04364013671875,
0.04290771484375,
0.0092315673828125,
0.03814697265625,
0.028839111328125,
-0.016143798828125,
0.029815673828125,
-0.05096435546875,
-0.0062103271484375,
-0.0582275390625,
-0.0235443115234375,
-0.0478515625,
-0.0177001953125,
-0.0694580078125,
-0.047088623046875,
0.018157958984375,
0.011199951171875,
-0.0124969482421875,
0.046630859375,
-0.0435791015625,
0.0157928466796875,
0.06317138671875,
0.003566741943359375,
0.0103607177734375,
-0.003376007080078125,
-0.007541656494140625,
-0.00970458984375,
-0.055938720703125,
-0.036865234375,
0.0838623046875,
0.0253448486328125,
0.0177764892578125,
0.00439453125,
0.06610107421875,
-0.0023212432861328125,
0.0157470703125,
-0.0318603515625,
0.045654296875,
-0.0276947021484375,
-0.0347900390625,
-0.0190277099609375,
-0.027130126953125,
-0.08197021484375,
-0.003620147705078125,
-0.0182342529296875,
-0.04876708984375,
0.042327880859375,
-0.0008649826049804688,
-0.01500701904296875,
0.00672149658203125,
-0.0587158203125,
0.08319091796875,
-0.02783203125,
-0.042083740234375,
0.01375579833984375,
-0.06201171875,
0.0105743408203125,
0.0165863037109375,
0.045379638671875,
-0.006744384765625,
-0.0162353515625,
0.08355712890625,
-0.0389404296875,
0.073974609375,
-0.017608642578125,
-0.00530242919921875,
0.043914794921875,
-0.0164031982421875,
0.04095458984375,
0.01258087158203125,
-0.00945281982421875,
0.041229248046875,
-0.0032558441162109375,
-0.024383544921875,
-0.015411376953125,
0.048004150390625,
-0.056488037109375,
-0.01126861572265625,
-0.03314208984375,
-0.041259765625,
0.006717681884765625,
0.01776123046875,
0.02423095703125,
0.0193328857421875,
-0.0038776397705078125,
0.024810791015625,
0.033355712890625,
-0.036468505859375,
0.0181732177734375,
0.04180908203125,
-0.0024623870849609375,
-0.053955078125,
0.07550048828125,
0.031829833984375,
-0.00887298583984375,
0.0278167724609375,
0.01007843017578125,
-0.035980224609375,
-0.0310516357421875,
-0.02154541015625,
0.0303955078125,
-0.03411865234375,
-0.01354217529296875,
-0.02032470703125,
-0.007282257080078125,
-0.05487060546875,
-0.00458526611328125,
-0.006885528564453125,
-0.033203125,
-0.033477783203125,
-0.0179443359375,
0.04119873046875,
0.016571044921875,
-0.0257110595703125,
0.0191192626953125,
-0.046142578125,
0.0196380615234375,
-0.00015211105346679688,
0.02801513671875,
-0.0272369384765625,
-0.03570556640625,
-0.0175323486328125,
0.0022449493408203125,
-0.0191650390625,
-0.07684326171875,
0.0447998046875,
0.0095062255859375,
0.05615234375,
0.00611114501953125,
0.01763916015625,
0.037994384765625,
-0.007808685302734375,
0.07049560546875,
0.01114654541015625,
-0.04864501953125,
0.06134033203125,
-0.039703369140625,
0.015411376953125,
0.05535888671875,
0.03759765625,
-0.025848388671875,
-0.0080413818359375,
-0.07659912109375,
-0.09197998046875,
0.053070068359375,
0.026641845703125,
-0.0125885009765625,
-0.01308441162109375,
0.0017452239990234375,
0.0005459785461425781,
0.0240325927734375,
-0.06585693359375,
-0.0626220703125,
-0.02294921875,
-0.018585205078125,
0.00542449951171875,
-0.0281524658203125,
-0.0278167724609375,
-0.026947021484375,
0.0552978515625,
0.004184722900390625,
0.017425537109375,
0.0123291015625,
-0.000002384185791015625,
0.003841400146484375,
0.0189361572265625,
0.03790283203125,
0.04510498046875,
-0.0257415771484375,
-0.0196533203125,
0.006740570068359375,
-0.036407470703125,
-0.0261077880859375,
0.03216552734375,
-0.0244903564453125,
0.00351715087890625,
0.027252197265625,
0.06915283203125,
0.0226287841796875,
-0.038970947265625,
0.04925537109375,
0.01081085205078125,
-0.033477783203125,
-0.047454833984375,
-0.0174560546875,
0.006343841552734375,
0.005786895751953125,
0.0207977294921875,
-0.0244140625,
0.010650634765625,
-0.0289154052734375,
0.0176239013671875,
0.0019779205322265625,
-0.0132904052734375,
-0.0181427001953125,
0.0498046875,
0.032562255859375,
-0.017364501953125,
0.02423095703125,
-0.029022216796875,
-0.02313232421875,
0.045257568359375,
0.0166168212890625,
0.050079345703125,
-0.0111236572265625,
0.0257720947265625,
0.051910400390625,
0.0248565673828125,
-0.005390167236328125,
0.059356689453125,
0.0020313262939453125,
-0.052947998046875,
-0.037017822265625,
-0.044097900390625,
-0.01316070556640625,
0.0194854736328125,
-0.06158447265625,
0.034210205078125,
-0.020416259765625,
-0.01702880859375,
-0.0116424560546875,
0.024627685546875,
-0.0606689453125,
0.0106048583984375,
0.008819580078125,
0.0699462890625,
-0.07275390625,
0.06622314453125,
0.06317138671875,
-0.06512451171875,
-0.056915283203125,
-0.033355712890625,
0.003818511962890625,
-0.059326171875,
0.038055419921875,
-0.01190948486328125,
0.029144287109375,
-0.0018444061279296875,
-0.039459228515625,
-0.06109619140625,
0.09417724609375,
0.027435302734375,
-0.040374755859375,
0.01505279541015625,
0.01177215576171875,
0.03643798828125,
-0.031768798828125,
0.021270751953125,
0.05816650390625,
0.0562744140625,
0.0073394775390625,
-0.07330322265625,
-0.00017321109771728516,
-0.0297088623046875,
-0.00890350341796875,
0.0031070709228515625,
-0.05401611328125,
0.044097900390625,
0.0006661415100097656,
-0.01412200927734375,
-0.01293182373046875,
0.04876708984375,
0.0341796875,
0.021697998046875,
0.0220184326171875,
0.06048583984375,
0.058990478515625,
-0.0296783447265625,
0.0789794921875,
-0.04541015625,
0.0289764404296875,
0.0987548828125,
-0.0052947998046875,
0.05096435546875,
0.01617431640625,
-0.034820556640625,
0.047943115234375,
0.035797119140625,
-0.01471710205078125,
0.029296875,
0.0078277587890625,
0.0026531219482421875,
0.0033855438232421875,
-0.0295562744140625,
-0.04083251953125,
0.030853271484375,
0.049102783203125,
-0.032867431640625,
0.001049041748046875,
-0.008544921875,
0.0211334228515625,
0.01015472412109375,
-0.025054931640625,
0.048004150390625,
0.00008440017700195312,
-0.031707763671875,
0.037261962890625,
-0.00859832763671875,
0.0435791015625,
-0.044219970703125,
-0.0034732818603515625,
-0.016357421875,
-0.01470184326171875,
-0.03302001953125,
-0.079345703125,
0.0254669189453125,
-0.00630950927734375,
-0.0152740478515625,
-0.027313232421875,
0.0457763671875,
-0.039276123046875,
-0.052490234375,
0.0236663818359375,
0.03759765625,
0.0254058837890625,
0.02288818359375,
-0.08349609375,
0.02581787109375,
0.0184478759765625,
-0.018218994140625,
0.011322021484375,
0.036956787109375,
-0.0104217529296875,
0.028778076171875,
0.037750244140625,
0.0201263427734375,
-0.0098876953125,
0.027862548828125,
0.05657958984375,
-0.030517578125,
-0.042022705078125,
-0.033050537109375,
0.06231689453125,
-0.034759521484375,
-0.036468505859375,
0.060882568359375,
0.0653076171875,
0.07275390625,
-0.00142669677734375,
0.07452392578125,
-0.036285400390625,
0.061065673828125,
-0.0133209228515625,
0.03961181640625,
-0.0343017578125,
0.005786895751953125,
-0.029144287109375,
-0.050384521484375,
-0.0230255126953125,
0.059783935546875,
-0.044219970703125,
-0.005588531494140625,
0.04327392578125,
0.0584716796875,
0.0182952880859375,
-0.0017480850219726562,
0.0010595321655273438,
0.0312347412109375,
-0.0004248619079589844,
0.04180908203125,
0.012451171875,
-0.050323486328125,
0.0518798828125,
-0.04840087890625,
-0.0225677490234375,
-0.007122039794921875,
-0.07391357421875,
-0.047393798828125,
-0.06549072265625,
-0.055145263671875,
-0.041290283203125,
-0.003543853759765625,
0.060028076171875,
0.03436279296875,
-0.083984375,
-0.04425048828125,
0.0033855438232421875,
0.009521484375,
-0.0195770263671875,
-0.01971435546875,
0.048583984375,
0.01507568359375,
-0.054656982421875,
0.0113067626953125,
0.00792694091796875,
0.0009512901306152344,
-0.0009140968322753906,
-0.01302337646484375,
-0.022186279296875,
-0.030731201171875,
0.037750244140625,
0.0413818359375,
-0.04254150390625,
0.0014257431030273438,
-0.00972747802734375,
0.00897216796875,
0.00202178955078125,
0.03643798828125,
-0.034576416015625,
0.0278778076171875,
0.052947998046875,
0.01560211181640625,
0.038299560546875,
0.0024261474609375,
0.0243377685546875,
-0.059326171875,
0.0310821533203125,
0.0168609619140625,
0.043365478515625,
0.0305328369140625,
-0.0159912109375,
0.0684814453125,
0.03375244140625,
-0.0367431640625,
-0.0467529296875,
-0.006916046142578125,
-0.1004638671875,
-0.005001068115234375,
0.0909423828125,
-0.02069091796875,
-0.02655029296875,
-0.016357421875,
-0.0247650146484375,
0.0293731689453125,
-0.0604248046875,
0.0271453857421875,
0.04962158203125,
0.00830078125,
-0.006458282470703125,
-0.05670166015625,
0.037322998046875,
-0.00727081298828125,
-0.06475830078125,
0.001201629638671875,
0.034942626953125,
0.00862884521484375,
0.018646240234375,
0.0689697265625,
-0.0240325927734375,
0.00435638427734375,
-0.0144195556640625,
0.0160064697265625,
0.0010089874267578125,
-0.0080718994140625,
0.002384185791015625,
0.003143310546875,
-0.017486572265625,
-0.007137298583984375
]
] |
eugenesiow/Div2k | 2022-10-21T04:01:10.000Z | [
"task_categories:other",
"annotations_creators:machine-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:unknown",
"source_datasets:original",
"license:other",
"other-image-super-resolution",
"region:us"
] | eugenesiow | DIV2K dataset: DIVerse 2K resolution high quality images as used for the challenges @ NTIRE (CVPR 2017 and
CVPR 2018) and @ PIRM (ECCV 2018) | @InProceedings{Agustsson_2017_CVPR_Workshops,
author = {Agustsson, Eirikur and Timofte, Radu},
title = {NTIRE 2017 Challenge on Single Image Super-Resolution: Dataset and Study},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops},
url = "http://www.vision.ee.ethz.ch/~timofter/publications/Agustsson-CVPRW-2017.pdf",
month = {July},
year = {2017}
} | 2 | 1,182 | 2022-03-02T23:29:22 | ---
annotations_creators:
- machine-generated
language_creators:
- found
language: []
license:
- other
multilinguality:
- monolingual
size_categories:
- unknown
source_datasets:
- original
task_categories:
- other
task_ids: []
pretty_name: Div2k
tags:
- other-image-super-resolution
---
# Dataset Card for Div2k
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage**: https://data.vision.ee.ethz.ch/cvl/DIV2K/
- **Repository**: https://huggingface.co/datasets/eugenesiow/Div2k
- **Paper**: http://www.vision.ee.ethz.ch/~timofter/publications/Agustsson-CVPRW-2017.pdf
- **Leaderboard**: https://github.com/eugenesiow/super-image#scale-x2
### Dataset Summary
DIV2K is a dataset of RGB images (2K resolution high quality images) with a large diversity of contents.
The DIV2K dataset is divided into:
- train data: starting from 800 high definition high resolution images we obtain corresponding low resolution images and provide both high and low resolution images for 2, 3, and 4 downscaling factors
- validation data: 100 high definition high resolution images are used for genereting low resolution corresponding images, the low res are provided from the beginning of the challenge and are meant for the participants to get online feedback from the validation server; the high resolution images will be released when the final phase of the challenge starts.
Install with `pip`:
```bash
pip install datasets super-image
```
Evaluate a model with the [`super-image`](https://github.com/eugenesiow/super-image) library:
```python
from datasets import load_dataset
from super_image import EdsrModel
from super_image.data import EvalDataset, EvalMetrics
dataset = load_dataset('eugenesiow/Div2k', 'bicubic_x2', split='validation')
eval_dataset = EvalDataset(dataset)
model = EdsrModel.from_pretrained('eugenesiow/edsr-base', scale=2)
EvalMetrics().evaluate(model, eval_dataset)
```
### Supported Tasks and Leaderboards
The dataset is commonly used for training and evaluation of the `image-super-resolution` task.
Unofficial [`super-image`](https://github.com/eugenesiow/super-image) leaderboard for:
- [Scale 2](https://github.com/eugenesiow/super-image#scale-x2)
- [Scale 3](https://github.com/eugenesiow/super-image#scale-x3)
- [Scale 4](https://github.com/eugenesiow/super-image#scale-x4)
- [Scale 8](https://github.com/eugenesiow/super-image#scale-x8)
### Languages
Not applicable.
## Dataset Structure
### Data Instances
An example of `train` for `bicubic_x2` looks as follows.
```
{
"hr": "/.cache/huggingface/datasets/downloads/extracted/DIV2K_valid_HR/0801.png",
"lr": "/.cache/huggingface/datasets/downloads/extracted/DIV2K_valid_LR_bicubic/X2/0801x2.png"
}
```
### Data Fields
The data fields are the same among all splits.
- `hr`: a `string` to the path of the High Resolution (HR) `.png` image.
- `lr`: a `string` to the path of the Low Resolution (LR) `.png` image.
### Data Splits
| name |train |validation|
|-------|-----:|---:|
|bicubic_x2|800|100|
|bicubic_x3|800|100|
|bicubic_x4|800|100|
|bicubic_x8|800|100|
|unknown_x2|800|100|
|unknown_x3|800|100|
|unknown_x4|800|100|
|realistic_mild_x4|800|100|
|realistic_difficult_x4|800|100|
|realistic_wild_x4|800|100|
## Dataset Creation
### Curation Rationale
Please refer to the [Initial Data Collection and Normalization](#initial-data-collection-and-normalization) section.
### Source Data
#### Initial Data Collection and Normalization
**Resolution and quality**: All the images are 2K resolution, that is they have 2K pixels on at least one of
the axes (vertical or horizontal). All the images were processed using the same tools. For simplicity, since the most
common magnification factors in the recent SR literature are of ×2, ×3 and ×4 we cropped the images to multiple of
12 pixels on both axes. Most of the crawled images were originally above 20M pixels.
The images are of high quality both aesthetically and in the terms of small amounts of noise and other corruptions
(like blur and color shifts).
**Diversity**: The authors collected images from dozens of sites. A preference was made for sites with freely
shared high quality photography (such as https://www.pexels.com/ ). Note that we did not use images from Flickr,
Instagram, or other legally binding or copyright restricted images. We only seldom used keywords to assure the diversity
for our dataset. DIV2K covers a large diversity of contents, ranging from people, handmade objects and environments
(cities, villages), to flora and fauna, and natural sceneries including underwater and dim light conditions.
**Partitions**: After collecting the DIV2K 1000 images the authors computed image entropy, bit per pixel (bpp) PNG
compression rates and CORNIA scores (see Section 7.6) and applied bicubic downscaling ×3 and then upscaling ×3 with
bicubic interpolation (imresize Matlab function), ANR [47] and A+ [48] methods and default settings.
The authors randomly generated partitions of 800 train, 100 validation and 100 test images until they achieved a good
balance firstly in visual contents and then on the average entropy, average bpp, average number of pixels per
image (ppi), average CORNIA quality scores and also in the relative differences between the average PSNR scores of
bicubic, ANR and A+ methods.
Only the 800 train and 100 validation images are included in this dataset.
#### Who are the source language producers?
The authors manually crawled 1000 color RGB images from Internet paying special attention to the image quality,
to the diversity of sources (sites and cameras), to the image contents and to the copyrights.
### Annotations
#### Annotation process
No annotations.
#### Who are the annotators?
No annotators.
### Personal and Sensitive Information
All the images are collected from the Internet, and the copyright belongs to the original owners. If any of the images
belongs to you and you would like it removed, please kindly inform the authors, and they will remove it from the dataset
immediately.
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
- **Original Author**: [Radu Timofte](http://people.ee.ethz.ch/~timofter/)
### Licensing Information
Please notice that this dataset is made available for academic research purpose only. All the images are
collected from the Internet, and the copyright belongs to the original owners. If any of the images belongs to
you and you would like it removed, please kindly inform the authors, and they will remove it from the dataset
immediately.
### Citation Information
```bibtex
@InProceedings{Agustsson_2017_CVPR_Workshops,
author = {Agustsson, Eirikur and Timofte, Radu},
title = {NTIRE 2017 Challenge on Single Image Super-Resolution: Dataset and Study},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops},
url = "http://www.vision.ee.ethz.ch/~timofter/publications/Agustsson-CVPRW-2017.pdf",
month = {July},
year = {2017}
}
```
### Contributions
Thanks to [@eugenesiow](https://github.com/eugenesiow) for adding this dataset.
| 8,364 | [
[
-0.0380859375,
-0.02001953125,
0.005657196044921875,
0.01125335693359375,
-0.039642333984375,
0.0013074874877929688,
-0.0018157958984375,
-0.03643798828125,
0.0147705078125,
0.0043792724609375,
-0.0487060546875,
-0.0435791015625,
-0.047607421875,
0.0094757080078125,
-0.00034689903259277344,
0.063232421875,
-0.00603485107421875,
0.003437042236328125,
-0.0276947021484375,
-0.0147247314453125,
-0.0309295654296875,
-0.01244354248046875,
-0.0305023193359375,
-0.0045013427734375,
0.019073486328125,
0.041168212890625,
0.042236328125,
0.05096435546875,
0.055145263671875,
0.0219268798828125,
-0.00801849365234375,
0.0205535888671875,
-0.05291748046875,
-0.0179901123046875,
-0.0098724365234375,
-0.021881103515625,
-0.023040771484375,
0.0110626220703125,
0.04095458984375,
0.02099609375,
-0.0010862350463867188,
0.03277587890625,
0.0167083740234375,
0.0675048828125,
-0.0285491943359375,
0.02886962890625,
-0.021697998046875,
0.005340576171875,
-0.0148162841796875,
-0.0005507469177246094,
-0.0023345947265625,
-0.01390838623046875,
-0.005321502685546875,
-0.067138671875,
0.01983642578125,
-0.01166534423828125,
0.09197998046875,
0.0178985595703125,
-0.0151824951171875,
-0.010986328125,
-0.04376220703125,
0.051025390625,
-0.033538818359375,
0.01386260986328125,
0.039520263671875,
0.0230255126953125,
0.0012950897216796875,
-0.05853271484375,
-0.056060791015625,
0.023681640625,
-0.01544189453125,
0.038604736328125,
-0.0301361083984375,
-0.033233642578125,
0.03155517578125,
0.03143310546875,
-0.048126220703125,
0.00252532958984375,
-0.04473876953125,
-0.011932373046875,
0.06341552734375,
0.0176544189453125,
0.01971435546875,
-0.0196685791015625,
-0.0292205810546875,
-0.0226287841796875,
-0.0239410400390625,
0.0221710205078125,
0.0303802490234375,
-0.0022068023681640625,
-0.03594970703125,
0.0281524658203125,
-0.00824737548828125,
0.0245513916015625,
0.0119781494140625,
-0.0157928466796875,
0.046142578125,
-0.052886962890625,
-0.00597381591796875,
-0.0208892822265625,
0.057952880859375,
0.07135009765625,
-0.00750732421875,
0.01495361328125,
0.002620697021484375,
0.01009368896484375,
-0.007312774658203125,
-0.068115234375,
-0.0316162109375,
0.021270751953125,
-0.051116943359375,
-0.0186309814453125,
0.00249481201171875,
-0.09075927734375,
-0.0213165283203125,
-0.0246124267578125,
0.0220489501953125,
-0.0222625732421875,
-0.04345703125,
-0.00981903076171875,
-0.016448974609375,
0.0406494140625,
0.03155517578125,
-0.05267333984375,
0.016082763671875,
0.0110626220703125,
0.062042236328125,
0.00539398193359375,
-0.0071258544921875,
-0.0014553070068359375,
-0.0059661865234375,
-0.03704833984375,
0.053070068359375,
-0.0215911865234375,
-0.040802001953125,
-0.0115509033203125,
0.0297088623046875,
0.0172576904296875,
-0.038848876953125,
0.050262451171875,
-0.025390625,
0.0117340087890625,
-0.041717529296875,
-0.0161285400390625,
-0.0129852294921875,
0.018096923828125,
-0.039093017578125,
0.1015625,
0.03369140625,
-0.062164306640625,
0.035980224609375,
-0.02484130859375,
-0.0139312744140625,
0.01551055908203125,
-0.0119476318359375,
-0.049652099609375,
-0.01316070556640625,
0.0191802978515625,
0.036956787109375,
-0.0269927978515625,
-0.004364013671875,
-0.0151519775390625,
-0.012969970703125,
-0.00844573974609375,
-0.00960540771484375,
0.058349609375,
0.01274871826171875,
-0.0283355712890625,
-0.0181427001953125,
-0.0694580078125,
-0.0038204193115234375,
0.045379638671875,
-0.01412200927734375,
-0.0216522216796875,
-0.01505279541015625,
0.01520538330078125,
0.04278564453125,
0.020538330078125,
-0.04681396484375,
0.0207977294921875,
-0.00731658935546875,
0.027984619140625,
0.053924560546875,
-0.0014314651489257812,
0.01617431640625,
-0.016357421875,
0.0161285400390625,
0.0164642333984375,
0.035675048828125,
-0.0036182403564453125,
-0.045867919921875,
-0.04522705078125,
-0.035247802734375,
0.02783203125,
0.033416748046875,
-0.050445556640625,
0.041107177734375,
-0.025909423828125,
-0.066650390625,
-0.0276031494140625,
-0.0016279220581054688,
0.03387451171875,
0.0404052734375,
0.03314208984375,
-0.0355224609375,
-0.04217529296875,
-0.08056640625,
0.030517578125,
0.0023975372314453125,
0.004695892333984375,
0.040985107421875,
0.06878662109375,
-0.01340484619140625,
0.05596923828125,
-0.0462646484375,
-0.0335693359375,
-0.0032100677490234375,
-0.01239776611328125,
0.0197601318359375,
0.044647216796875,
0.0560302734375,
-0.0777587890625,
-0.060150146484375,
-0.014892578125,
-0.05731201171875,
0.01267242431640625,
0.00193023681640625,
-0.020111083984375,
0.01971435546875,
0.0165252685546875,
-0.029144287109375,
0.054901123046875,
0.0377197265625,
-0.029327392578125,
0.05426025390625,
-0.0306396484375,
0.0262908935546875,
-0.087890625,
0.01519775390625,
0.03106689453125,
-0.00823211669921875,
-0.035797119140625,
-0.00940704345703125,
0.01194000244140625,
0.0052032470703125,
-0.0304107666015625,
0.01580810546875,
-0.03277587890625,
-0.006168365478515625,
-0.0017652511596679688,
-0.01044464111328125,
0.0171356201171875,
0.0379638671875,
0.00501251220703125,
0.041656494140625,
0.06622314453125,
-0.02703857421875,
0.039093017578125,
0.03826904296875,
-0.03948974609375,
0.059112548828125,
-0.0660400390625,
0.0167999267578125,
-0.01739501953125,
0.0264892578125,
-0.09320068359375,
-0.032745361328125,
0.0252227783203125,
-0.04327392578125,
0.039886474609375,
-0.02435302734375,
-0.054107666015625,
-0.0472412109375,
-0.04376220703125,
0.0243377685546875,
0.04864501953125,
-0.038299560546875,
0.01381683349609375,
0.0340576171875,
0.005985260009765625,
-0.024566650390625,
-0.05853271484375,
-0.0050506591796875,
-0.01314544677734375,
-0.04205322265625,
0.039154052734375,
-0.01080322265625,
0.0004646778106689453,
0.0147552490234375,
-0.0025768280029296875,
0.0050506591796875,
-0.0242919921875,
0.032958984375,
0.04522705078125,
0.006282806396484375,
-0.0152587890625,
-0.01390838623046875,
-0.0104522705078125,
-0.012420654296875,
-0.0081634521484375,
0.03570556640625,
-0.01221466064453125,
-0.006683349609375,
-0.063720703125,
0.01995849609375,
0.045654296875,
-0.010986328125,
0.052581787109375,
0.054840087890625,
-0.041351318359375,
0.0228729248046875,
-0.0343017578125,
-0.007648468017578125,
-0.03106689453125,
0.0386962890625,
-0.0200653076171875,
-0.034149169921875,
0.0574951171875,
-0.0009593963623046875,
0.0109405517578125,
0.057708740234375,
0.04498291015625,
-0.030364990234375,
0.07513427734375,
0.0186614990234375,
0.01097869873046875,
0.023651123046875,
-0.07122802734375,
-0.0041046142578125,
-0.08197021484375,
-0.06005859375,
-0.027008056640625,
-0.04443359375,
-0.053070068359375,
-0.050567626953125,
0.021484375,
0.012115478515625,
-0.01385498046875,
0.02886962890625,
-0.0572509765625,
0.03802490234375,
0.0469970703125,
0.0310821533203125,
-0.01477813720703125,
0.0214996337890625,
-0.0007271766662597656,
-0.021453857421875,
-0.041107177734375,
-0.02886962890625,
0.08544921875,
0.03363037109375,
0.032379150390625,
0.0004017353057861328,
0.0280914306640625,
0.0224609375,
-0.01323699951171875,
-0.032440185546875,
0.039154052734375,
-0.027984619140625,
-0.052642822265625,
-0.015472412109375,
-0.01885986328125,
-0.07196044921875,
0.00013554096221923828,
-0.0257720947265625,
-0.05572509765625,
0.051300048828125,
0.01190185546875,
-0.035797119140625,
0.032806396484375,
-0.048187255859375,
0.060943603515625,
-0.01074981689453125,
-0.05682373046875,
-0.00496673583984375,
-0.07476806640625,
0.0011568069458007812,
0.005252838134765625,
0.0248260498046875,
-0.003833770751953125,
-0.0014629364013671875,
0.07464599609375,
-0.037841796875,
0.055419921875,
-0.0275115966796875,
0.022369384765625,
0.04217529296875,
-0.01375579833984375,
0.04595947265625,
0.005767822265625,
0.01120758056640625,
0.046630859375,
0.01702880859375,
-0.034942626953125,
-0.0298004150390625,
0.04656982421875,
-0.08502197265625,
-0.00847625732421875,
-0.039337158203125,
-0.021942138671875,
0.008087158203125,
0.0062408447265625,
0.039520263671875,
0.045806884765625,
0.018951416015625,
0.031768798828125,
0.04205322265625,
-0.0249481201171875,
0.0174560546875,
0.021728515625,
0.004299163818359375,
-0.052337646484375,
0.07318115234375,
0.037322998046875,
0.0070037841796875,
0.001850128173828125,
0.01483917236328125,
-0.03887939453125,
-0.03802490234375,
-0.037628173828125,
0.018524169921875,
-0.048675537109375,
-0.022705078125,
-0.0261077880859375,
-0.00873565673828125,
-0.043487548828125,
-0.00246429443359375,
-0.03070068359375,
-0.0209197998046875,
-0.038482666015625,
-0.0056610107421875,
0.02740478515625,
0.0435791015625,
-0.04156494140625,
0.01226043701171875,
-0.0333251953125,
0.0221710205078125,
0.0271148681640625,
0.029296875,
-0.0155792236328125,
-0.056671142578125,
-0.018890380859375,
0.002429962158203125,
-0.0281524658203125,
-0.0501708984375,
0.032928466796875,
0.002628326416015625,
0.038543701171875,
0.0193939208984375,
-0.0008907318115234375,
0.05621337890625,
-0.01540374755859375,
0.08233642578125,
0.038482666015625,
-0.0232086181640625,
0.0601806640625,
-0.0220184326171875,
0.00995635986328125,
0.05328369140625,
0.0438232421875,
-0.027313232421875,
0.01080322265625,
-0.05792236328125,
-0.0836181640625,
0.0635986328125,
0.0249176025390625,
0.00724029541015625,
0.0198822021484375,
0.03912353515625,
0.004177093505859375,
-0.002056121826171875,
-0.048309326171875,
-0.050384521484375,
-0.03179931640625,
-0.0086822509765625,
-0.005970001220703125,
-0.035186767578125,
-0.012359619140625,
-0.0548095703125,
0.06781005859375,
0.01233673095703125,
0.02069091796875,
0.037353515625,
0.0093994140625,
-0.0156402587890625,
-0.0167083740234375,
0.0275421142578125,
0.035888671875,
-0.0171356201171875,
-0.0017795562744140625,
-0.0011243820190429688,
-0.057586669921875,
0.0059814453125,
0.0063934326171875,
-0.0222320556640625,
-0.013580322265625,
0.020233154296875,
0.05682373046875,
-0.0120849609375,
-0.0181732177734375,
0.037811279296875,
-0.01416778564453125,
-0.055206298828125,
-0.0229949951171875,
-0.00909423828125,
-0.0047149658203125,
0.0255584716796875,
0.0305938720703125,
0.021759033203125,
0.00904083251953125,
-0.03314208984375,
0.01134490966796875,
0.01261138916015625,
-0.02703857421875,
-0.032928466796875,
0.042236328125,
0.009796142578125,
-0.00591278076171875,
0.057464599609375,
-0.04180908203125,
-0.0275726318359375,
0.06378173828125,
0.0248260498046875,
0.0333251953125,
0.000056624412536621094,
0.01934814453125,
0.0760498046875,
0.0260009765625,
0.0006985664367675781,
0.02423095703125,
0.0113525390625,
-0.048858642578125,
-0.0099029541015625,
-0.0472412109375,
-0.004306793212890625,
0.044830322265625,
-0.051910400390625,
0.0293426513671875,
-0.0316162109375,
-0.01409149169921875,
0.00562286376953125,
0.026397705078125,
-0.0599365234375,
0.0241546630859375,
0.0301666259765625,
0.06591796875,
-0.06890869140625,
0.041839599609375,
0.06329345703125,
-0.048583984375,
-0.0809326171875,
-0.01503753662109375,
0.0120697021484375,
-0.04779052734375,
0.039520263671875,
0.024383544921875,
0.024627685546875,
0.00943756103515625,
-0.0478515625,
-0.05419921875,
0.108642578125,
0.01134490966796875,
-0.052215576171875,
0.0213623046875,
0.0155792236328125,
0.037811279296875,
-0.010162353515625,
0.0284576416015625,
0.039154052734375,
0.03387451171875,
0.035308837890625,
-0.048126220703125,
-0.0026226043701171875,
-0.0400390625,
0.01129150390625,
-0.004940032958984375,
-0.078369140625,
0.04541015625,
-0.0158843994140625,
-0.014862060546875,
-0.008880615234375,
0.0294189453125,
0.020416259765625,
0.0295562744140625,
0.04754638671875,
0.07232666015625,
0.037322998046875,
-0.0185089111328125,
0.06695556640625,
-0.017822265625,
0.051055908203125,
0.06683349609375,
0.0013904571533203125,
0.03857421875,
0.03497314453125,
-0.044921875,
0.036407470703125,
0.08001708984375,
-0.03594970703125,
0.06329345703125,
0.0057220458984375,
-0.00293731689453125,
-0.0105133056640625,
-0.0163116455078125,
-0.043182373046875,
0.0322265625,
0.0227813720703125,
-0.0214080810546875,
-0.0140380859375,
0.006977081298828125,
-0.0038204193115234375,
-0.007160186767578125,
-0.033538818359375,
0.045806884765625,
-0.0195465087890625,
-0.0266571044921875,
0.037811279296875,
-0.0135955810546875,
0.04693603515625,
-0.037506103515625,
-0.013580322265625,
-0.0265655517578125,
0.005710601806640625,
-0.037506103515625,
-0.08544921875,
0.0272979736328125,
-0.0007543563842773438,
-0.020965576171875,
-0.0133056640625,
0.05682373046875,
-0.0072784423828125,
-0.056884765625,
0.01334381103515625,
0.004405975341796875,
0.033599853515625,
0.00789642333984375,
-0.07855224609375,
0.009185791015625,
0.00778961181640625,
-0.040618896484375,
0.0229339599609375,
0.0252838134765625,
0.0145721435546875,
0.01910400390625,
0.052154541015625,
0.0024852752685546875,
-0.00766754150390625,
-0.00916290283203125,
0.08172607421875,
-0.01080322265625,
-0.0205535888671875,
-0.0614013671875,
0.057647705078125,
-0.03143310546875,
-0.0254364013671875,
0.059417724609375,
0.07672119140625,
0.0714111328125,
-0.0034732818603515625,
0.0634765625,
-0.037322998046875,
0.022125244140625,
-0.01070404052734375,
0.040313720703125,
-0.059478759765625,
-0.00576019287109375,
-0.027618408203125,
-0.039031982421875,
-0.019927978515625,
0.049896240234375,
-0.0249481201171875,
-0.00988006591796875,
0.0216827392578125,
0.07598876953125,
-0.0090789794921875,
-0.01551055908203125,
0.0173187255859375,
0.01605224609375,
0.00799560546875,
0.035797119140625,
0.043853759765625,
-0.05853271484375,
0.048919677734375,
-0.05352783203125,
-0.04156494140625,
-0.012481689453125,
-0.046142578125,
-0.043212890625,
-0.06231689453125,
-0.053741455078125,
-0.0399169921875,
-0.0168914794921875,
0.0506591796875,
0.0654296875,
-0.0592041015625,
0.008636474609375,
-0.0008568763732910156,
-0.0164642333984375,
-0.0159759521484375,
-0.0142974853515625,
0.050048828125,
0.023040771484375,
-0.054473876953125,
-0.02020263671875,
0.0265350341796875,
0.01332855224609375,
-0.00662994384765625,
-0.01910400390625,
-0.0208282470703125,
-0.01983642578125,
0.04205322265625,
0.0149993896484375,
-0.0253143310546875,
-0.01139068603515625,
-0.0024890899658203125,
-0.00308990478515625,
0.0254364013671875,
0.0187530517578125,
-0.03607177734375,
0.041595458984375,
0.037994384765625,
0.00995635986328125,
0.040863037109375,
-0.00719451904296875,
-0.0275115966796875,
-0.045318603515625,
0.0159912109375,
0.002532958984375,
0.032379150390625,
0.0235443115234375,
-0.03631591796875,
0.05133056640625,
0.0618896484375,
-0.046661376953125,
-0.06610107421875,
-0.009918212890625,
-0.08856201171875,
-0.01348114013671875,
0.09552001953125,
-0.0265350341796875,
-0.0235137939453125,
-0.0023097991943359375,
-0.0267791748046875,
0.029052734375,
-0.0185089111328125,
0.044830322265625,
0.04791259765625,
0.0001800060272216797,
-0.016937255859375,
-0.051422119140625,
0.02093505859375,
-0.007640838623046875,
-0.058441162109375,
-0.00634765625,
0.0377197265625,
0.0338134765625,
0.0301666259765625,
0.043060302734375,
-0.03387451171875,
0.0160064697265625,
0.01450347900390625,
0.0160369873046875,
-0.00878143310546875,
-0.00832366943359375,
-0.006084442138671875,
-0.00472259521484375,
-0.0274200439453125,
-0.034271240234375
]
] |
philipphager/baidu-ultr-606k | 2023-10-30T10:25:33.000Z | [
"task_categories:text-retrieval",
"license:cc-by-nc-4.0",
"MonoBERT",
"unbiased learning to rank",
"ultr",
"baidu",
"ltr",
"clicks",
"region:us"
] | philipphager | Query-document vectors and clicks for the Baidu Unbiased Learning to Rank dataset used
at the WSDM23 cup. This dataset uses the winning BERT cross-encoder from Tencent
to compute query-document vectors (768 dims), mainly for ease of use and to enable
usage of simpler, smaller neural networks that are more common in ULTR research.
This dataset contains features for part-00000.gz of the Baidu dataset,
containing 589,824 queries and 6,271,536 documents. | @InProceedings{huggingface:dataset,
title = {baidu-ultr-606k},
author={Philipp Hager},
year={2023}
} | 1 | 1,177 | 2023-10-17T15:08:53 | ---
license: cc-by-nc-4.0
task_categories:
- text-retrieval
tags:
- MonoBERT
- unbiased learning to rank
- ultr
- baidu
- ltr
- clicks
pretty_name: Baidu ULTR-606K
---
# Baidu Unbiased Learning to Rank - 606K
At NeurIPS 2022, [Baidu released the first large-scale click dataset](A Large Scale Search Dataset for Unbiased Learning to Rank
) for unbiased learing to rank. The full dataset contains over 1.2 B sessions of users browsing the Baidu search engine. The dataset comprises a.o., user clicks, skips, dwell-time, and the original query and document text. Traditionally, the unbiased learning to rank community uses query-document feature representations (e.g., [MSLR30K](https://www.microsoft.com/en-us/research/project/mslr/), [Istella-S](http://quickrank.isti.cnr.it/istella-dataset/), or [Yahoo! Webscope](https://webscope.sandbox.yahoo.com/catalog.php?datatype=c)), small neural network models, and focuses more on the aspect of removing click biases.
To make the massive Baidu dataset more accessible, we encode the query and document text into query-document embeddings using the winning BERT cross-encoder model from the WSDM Cup 2023. As BERT embeddings with 768 dimensions use a lot of memory, we encode them with half-precision floats and compress the dataset using [Arrow feather](https://arrow.apache.org/docs/python/feather.html).
This dataset focuses only on the first partition (partition-0) from the [original dataset](https://drive.google.com/drive/folders/1Q3bzSgiGh1D5iunRky6mb89LpxfAO73J). It comprises 606k user sessions with clicks for training and the complete Baidu validation set containing expert annotations (the test set from the WSDM Cup 2023 was not released publicly).
## I. Load training clicks
Load clicks from the training dataset (patition 0 / 1,999) of Baidu ULTR. The first partition contains 606k search queries. We converted the query and document text from the original dataset to query-document features using the winning [BERT cross-encoder model](https://github.com/lixsh6/Tencent_wsdm_cup2023/tree/main/pytorch_unbias/) from the WSDM Cup 2023.
```
from datasets import load_dataset
from torch.utils.data import DataLoader
dataset = load_dataset("philipphager/baidu-ultr-606k", name="clicks", split="train")
dataset.set_format("torch")
loader = DataLoader(dataset, collate_fn=collate_clicks, batch_size=8)
```
You can use the following `collate_fn` method to create a batch of queries (with differnet number of documents) and to select which columns to load from the training set.
```
from collections import defaultdict
from typing import List
import torch
from torch.nn.utils.rnn import pad_sequence
def collate_clicks(samples: List):
"""
Pad a batch of queries to the size of the query with the most documents.
"""
batch = defaultdict(lambda: [])
for sample in samples:
# Select information to load for each query:
# Available are: ["query_id", "position", "click", "n", "query_document_embedding",
# "media_type", "displayed_time", "serp_height", "slipoff_count_after_click"]
batch["query_id"].append(sample["query_id"])
batch["query_document_embedding"].append(sample["query_document_embedding"])
batch["click"].append(sample["click"])
batch["n"].append(sample["n"])
# Convert to tensors and pad to document-level features:
return {
"query_id": torch.tensor(batch["query_id"]),
"query_document_embedding": pad_sequence(
batch["query_document_embedding"], batch_first=True
),
"click": pad_sequence(batch["click"], batch_first=True),
"n": torch.tensor(batch["n"]),
}
```
## II. Load expert annotations for validation
Only the validation set of the Baidu ULTR dataset is public. It also contains different columns from the training set, so you need to adjust your collate function accordingly:
```
from datasets import load_dataset
from torch.utils.data import DataLoader
val_dataset = load_dataset("philipphager/baidu-ultr-606k", name="annotations", split="validation")
val_dataset.set_format("torch")
loader = DataLoader(val_dataset, collate_fn=collate_annotations, batch_size=8)
```
Aggregating annotations:
```
def collate_annotations(samples: List):
"""
Pad a batch of queries to the size of the query with the most documents.
"""
batch = defaultdict(lambda: [])
for sample in samples:
# Available are: ["query_id", "label", "n", "query_document_embedding", "frequency_bucket"]
batch["query_id"].append(sample["query_id"])
batch["query_document_embedding"].append(sample["query_document_embedding"])
batch["label"].append(sample["label"])
batch["n"].append(sample["n"])
batch["frequency_bucket"].append(sample["frequency_bucket"])
# Convert to tensors and pad to document-level features:
return {
"query_id": torch.tensor(batch["query_id"]),
"query_document_embedding": pad_sequence(
batch["query_document_embedding"], batch_first=True
),
"label": pad_sequence(batch["label"], batch_first=True),
"n": torch.tensor(batch["n"]),
"frequency_bucket": torch.tensor(batch["frequency_bucket"]),
}
``` | 5,248 | [
[
-0.03521728515625,
-0.0413818359375,
0.004726409912109375,
0.021331787109375,
-0.0119781494140625,
-0.0137176513671875,
-0.0294342041015625,
-0.007305145263671875,
0.024627685546875,
0.018798828125,
-0.0233612060546875,
-0.06072998046875,
-0.044921875,
0.0011968612670898438,
-0.028594970703125,
0.0743408203125,
0.0025539398193359375,
-0.0014247894287109375,
-0.034881591796875,
-0.0169830322265625,
-0.0084075927734375,
-0.0193634033203125,
-0.0499267578125,
-0.00362396240234375,
0.0253448486328125,
0.0200958251953125,
0.0202484130859375,
0.0264434814453125,
0.039337158203125,
0.03021240234375,
0.0049896240234375,
0.0382080078125,
-0.044281005859375,
-0.0066680908203125,
0.0012969970703125,
-0.03900146484375,
-0.0138702392578125,
0.0231475830078125,
0.05316162109375,
0.03582763671875,
0.0208892822265625,
-0.002544403076171875,
0.018280029296875,
0.041656494140625,
-0.03521728515625,
0.025848388671875,
-0.042724609375,
-0.007843017578125,
-0.0132904052734375,
-0.0225677490234375,
-0.042083740234375,
-0.030364990234375,
0.011322021484375,
-0.06317138671875,
0.053924560546875,
0.01102447509765625,
0.08514404296875,
0.0208892822265625,
-0.0291900634765625,
-0.02227783203125,
-0.0227508544921875,
0.059112548828125,
-0.043212890625,
0.0258636474609375,
0.048492431640625,
-0.00206756591796875,
-0.01401519775390625,
-0.06927490234375,
-0.038330078125,
-0.0008959770202636719,
-0.02325439453125,
0.0189666748046875,
0.013031005859375,
-0.004100799560546875,
0.025970458984375,
0.00885009765625,
-0.05413818359375,
-0.0019283294677734375,
-0.04620361328125,
-0.0134124755859375,
0.06243896484375,
0.00492095947265625,
-0.004398345947265625,
-0.0169525146484375,
-0.021331787109375,
-0.026580810546875,
-0.028076171875,
0.00914764404296875,
0.027740478515625,
0.009796142578125,
-0.0146636962890625,
0.02288818359375,
-0.0276641845703125,
0.05303955078125,
0.013427734375,
-0.00742340087890625,
0.045135498046875,
-0.010528564453125,
-0.024322509765625,
0.004425048828125,
0.0782470703125,
0.0261993408203125,
-0.0034027099609375,
-0.00508880615234375,
0.00626373291015625,
-0.0172119140625,
0.01271820068359375,
-0.0714111328125,
-0.0267791748046875,
0.0390625,
-0.0243377685546875,
-0.038787841796875,
0.01303863525390625,
-0.059722900390625,
-0.0311737060546875,
0.01451873779296875,
0.045074462890625,
-0.053741455078125,
0.006809234619140625,
0.005916595458984375,
-0.01358795166015625,
0.0200958251953125,
0.01983642578125,
-0.07537841796875,
-0.0065460205078125,
0.0325927734375,
0.06390380859375,
-0.00013506412506103516,
-0.042144775390625,
-0.03790283203125,
0.00018668174743652344,
-0.00742340087890625,
0.04730224609375,
-0.0325927734375,
-0.029510498046875,
0.016876220703125,
0.018157958984375,
-0.0292205810546875,
-0.025726318359375,
0.04486083984375,
-0.037872314453125,
0.0284576416015625,
-0.031585693359375,
-0.0445556640625,
-0.0199737548828125,
0.02264404296875,
-0.04638671875,
0.102294921875,
0.01219940185546875,
-0.069091796875,
0.0411376953125,
-0.0443115234375,
-0.031158447265625,
-0.005542755126953125,
-0.0157470703125,
-0.042449951171875,
-0.01396942138671875,
0.04290771484375,
0.044281005859375,
-0.01401519775390625,
-0.008026123046875,
-0.0240936279296875,
-0.0296173095703125,
0.021484375,
-0.02239990234375,
0.0653076171875,
0.0027904510498046875,
-0.0228729248046875,
0.0002739429473876953,
-0.05169677734375,
-0.013824462890625,
0.0093841552734375,
-0.041961669921875,
-0.0012788772583007812,
-0.0166015625,
0.016632080078125,
0.005558013916015625,
0.01387786865234375,
-0.048492431640625,
0.03167724609375,
-0.021881103515625,
0.040557861328125,
0.03472900390625,
0.003131866455078125,
0.0300750732421875,
-0.02203369140625,
0.0035858154296875,
0.00388336181640625,
0.01271820068359375,
-0.0066680908203125,
-0.041656494140625,
-0.060546875,
-0.023345947265625,
0.0347900390625,
0.01139068603515625,
-0.0472412109375,
0.038421630859375,
-0.033111572265625,
-0.04541015625,
-0.06500244140625,
0.0128173828125,
0.00033092498779296875,
0.0487060546875,
0.034423828125,
-0.00820159912109375,
-0.020050048828125,
-0.040374755859375,
0.00907135009765625,
0.00333404541015625,
0.005947113037109375,
0.02947998046875,
0.04766845703125,
0.00417327880859375,
0.0615234375,
-0.045257568359375,
-0.0528564453125,
-0.0076904296875,
0.026580810546875,
0.0175628662109375,
0.042083740234375,
0.044158935546875,
-0.06884765625,
-0.044921875,
-0.0219268798828125,
-0.06884765625,
0.0103759765625,
-0.01084136962890625,
-0.017974853515625,
0.032012939453125,
0.04150390625,
-0.049530029296875,
0.0343017578125,
0.01441192626953125,
-0.013946533203125,
0.0159454345703125,
-0.0300750732421875,
0.0282440185546875,
-0.07684326171875,
0.01004791259765625,
0.006008148193359375,
0.00884246826171875,
-0.016021728515625,
-0.0022430419921875,
0.0142669677734375,
-0.00832366943359375,
-0.044403076171875,
0.03515625,
-0.03955078125,
0.00513458251953125,
-0.004283905029296875,
0.0279693603515625,
0.0223846435546875,
0.040191650390625,
0.00388336181640625,
0.042999267578125,
0.04876708984375,
-0.03692626953125,
0.0440673828125,
0.037872314453125,
-0.02911376953125,
0.0313720703125,
-0.0389404296875,
-0.0009241104125976562,
-0.00786590576171875,
0.0284423828125,
-0.091796875,
-0.02069091796875,
-0.00078582763671875,
-0.062103271484375,
0.03851318359375,
-0.030181884765625,
-0.041748046875,
-0.0304718017578125,
-0.050567626953125,
0.015167236328125,
0.023162841796875,
-0.04608154296875,
0.0272216796875,
0.01119232177734375,
0.0207672119140625,
-0.05950927734375,
-0.046142578125,
-0.0178985595703125,
-0.01021575927734375,
-0.06085205078125,
0.037353515625,
0.00514984130859375,
0.0264434814453125,
0.006805419921875,
0.007480621337890625,
0.0185699462890625,
-0.0086212158203125,
0.0200653076171875,
0.0198516845703125,
0.004302978515625,
0.01398468017578125,
-0.00559234619140625,
-0.00762176513671875,
-0.00527191162109375,
-0.027587890625,
0.063720703125,
-0.00797271728515625,
-0.0253448486328125,
-0.022430419921875,
0.002803802490234375,
0.034942626953125,
-0.03143310546875,
0.07415771484375,
0.099609375,
-0.026153564453125,
-0.00738525390625,
-0.043853759765625,
-0.0115509033203125,
-0.0369873046875,
0.0343017578125,
-0.023834228515625,
-0.038726806640625,
0.03369140625,
0.0036773681640625,
0.01078033447265625,
0.054443359375,
0.042205810546875,
-0.035919189453125,
0.055877685546875,
0.020843505859375,
-0.0218353271484375,
0.0302276611328125,
-0.0780029296875,
-0.00789642333984375,
-0.07244873046875,
-0.0443115234375,
-0.03900146484375,
-0.042877197265625,
-0.05316162109375,
-0.03778076171875,
0.0374755859375,
0.01007080078125,
-0.0183868408203125,
0.01324462890625,
-0.05096435546875,
0.006649017333984375,
0.0535888671875,
0.0256805419921875,
-0.01171875,
0.0113525390625,
-0.01287841796875,
-0.0022907257080078125,
-0.040924072265625,
-0.00489044189453125,
0.10418701171875,
-0.00036215782165527344,
0.056640625,
-0.0086212158203125,
0.06561279296875,
0.0186767578125,
-0.00423431396484375,
-0.045867919921875,
0.03814697265625,
-0.005035400390625,
-0.042938232421875,
-0.031707763671875,
-0.01568603515625,
-0.0880126953125,
0.015106201171875,
-0.03961181640625,
-0.056640625,
0.02117919921875,
-0.0175628662109375,
-0.01629638671875,
0.025543212890625,
-0.0430908203125,
0.06085205078125,
-0.01317596435546875,
-0.052581787109375,
-0.005611419677734375,
-0.038177490234375,
-0.007205963134765625,
0.01059722900390625,
-0.005985260009765625,
-0.00258636474609375,
-0.0007576942443847656,
0.083984375,
-0.03399658203125,
0.051239013671875,
-0.0207672119140625,
0.025726318359375,
0.0225677490234375,
-0.016204833984375,
0.0418701171875,
0.004497528076171875,
-0.02264404296875,
0.00028061866760253906,
-0.01222991943359375,
-0.04327392578125,
-0.0443115234375,
0.06793212890625,
-0.0758056640625,
-0.031280517578125,
-0.035400390625,
-0.042938232421875,
-0.007091522216796875,
0.018646240234375,
0.04705810546875,
0.04388427734375,
-0.006694793701171875,
0.042877197265625,
0.05938720703125,
-0.0176544189453125,
0.0489501953125,
0.0192108154296875,
0.0018911361694335938,
-0.040496826171875,
0.07666015625,
0.018402099609375,
-0.00768280029296875,
0.040863037109375,
-0.005397796630859375,
-0.045318603515625,
-0.05499267578125,
-0.035369873046875,
0.03131103515625,
-0.0445556640625,
-0.0135345458984375,
-0.06646728515625,
-0.0220794677734375,
-0.0657958984375,
-0.02716064453125,
-0.01425933837890625,
-0.0191802978515625,
-0.0269622802734375,
-0.00853729248046875,
0.052459716796875,
0.0325927734375,
-0.006694793701171875,
0.029510498046875,
-0.04705810546875,
0.0015430450439453125,
0.014373779296875,
0.00691986083984375,
-0.00980377197265625,
-0.049560546875,
-0.037322998046875,
-0.0140838623046875,
-0.0296783447265625,
-0.050872802734375,
0.040985107421875,
0.0106964111328125,
0.050140380859375,
0.04150390625,
0.0184173583984375,
0.03131103515625,
-0.00551605224609375,
0.06256103515625,
-0.00386810302734375,
-0.0364990234375,
0.051300048828125,
-0.0272216796875,
-0.006366729736328125,
0.052520751953125,
0.059783935546875,
-0.024383544921875,
-0.005168914794921875,
-0.05084228515625,
-0.07745361328125,
0.067138671875,
0.01348114013671875,
-0.0098419189453125,
0.005916595458984375,
0.0113372802734375,
-0.00794219970703125,
0.00823974609375,
-0.033111572265625,
-0.026519775390625,
-0.00920867919921875,
-0.02490234375,
-0.0052642822265625,
-0.001979827880859375,
-0.02069091796875,
-0.027252197265625,
0.06158447265625,
-0.009429931640625,
0.0390625,
0.02105712890625,
-0.0307159423828125,
0.0206451416015625,
-0.01812744140625,
0.02447509765625,
0.03277587890625,
-0.04705810546875,
-0.0002319812774658203,
0.0121917724609375,
-0.051971435546875,
-0.0099945068359375,
0.0306396484375,
-0.01425933837890625,
0.00482177734375,
0.0291290283203125,
0.056488037109375,
0.0115814208984375,
-0.00846099853515625,
0.047088623046875,
0.01117706298828125,
-0.017608642578125,
-0.01422119140625,
-0.0023975372314453125,
0.011138916015625,
0.01549530029296875,
0.0278778076171875,
-0.01093292236328125,
0.0004925727844238281,
-0.032379150390625,
0.015960693359375,
0.0233917236328125,
-0.0203857421875,
0.0028476715087890625,
0.06884765625,
0.028656005859375,
0.00003629922866821289,
0.0665283203125,
-0.01300811767578125,
-0.0310821533203125,
0.047393798828125,
0.021331787109375,
0.05718994140625,
0.0113983154296875,
0.021087646484375,
0.048492431640625,
0.02557373046875,
0.00670623779296875,
0.005733489990234375,
-0.0056304931640625,
-0.051116943359375,
0.008392333984375,
-0.05548095703125,
-0.0147705078125,
0.01605224609375,
-0.046905517578125,
0.035369873046875,
-0.0257720947265625,
-0.008392333984375,
0.01299285888671875,
0.048004150390625,
-0.07452392578125,
0.0271148681640625,
-0.00011909008026123047,
0.07275390625,
-0.05535888671875,
0.07403564453125,
0.052093505859375,
-0.0733642578125,
-0.0391845703125,
-0.010498046875,
-0.005115509033203125,
-0.07354736328125,
0.0374755859375,
0.01727294921875,
0.0294647216796875,
0.001483917236328125,
-0.040069580078125,
-0.049530029296875,
0.10955810546875,
0.0011692047119140625,
-0.006465911865234375,
-0.00196075439453125,
0.0274505615234375,
0.0229034423828125,
-0.022125244140625,
0.04644775390625,
0.03338623046875,
0.034271240234375,
0.01003265380859375,
-0.037933349609375,
0.0093994140625,
-0.020355224609375,
-0.016143798828125,
0.004024505615234375,
-0.07421875,
0.060455322265625,
-0.01213836669921875,
0.018707275390625,
-0.0173797607421875,
0.055938720703125,
0.00856781005859375,
0.028472900390625,
0.0176849365234375,
0.0660400390625,
0.0679931640625,
-0.0221710205078125,
0.06842041015625,
-0.01849365234375,
0.048309326171875,
0.061248779296875,
0.007534027099609375,
0.06402587890625,
0.01116180419921875,
-0.019775390625,
0.0172882080078125,
0.066650390625,
-0.0257568359375,
0.052032470703125,
-0.00601959228515625,
-0.017791748046875,
-0.0058441162109375,
0.01001739501953125,
-0.043670654296875,
0.039794921875,
0.03302001953125,
-0.035400390625,
-0.00994110107421875,
0.00003218650817871094,
0.01348114013671875,
-0.0267791748046875,
-0.00567626953125,
0.0457763671875,
-0.01126861572265625,
-0.02496337890625,
0.056671142578125,
0.003360748291015625,
0.0738525390625,
-0.043975830078125,
0.01267242431640625,
-0.03277587890625,
0.007793426513671875,
-0.03570556640625,
-0.06622314453125,
-0.00550079345703125,
-0.0166473388671875,
-0.01248931884765625,
0.00164794921875,
0.0521240234375,
-0.042999267578125,
-0.04034423828125,
0.0161590576171875,
0.01416015625,
0.03985595703125,
-0.007335662841796875,
-0.04833984375,
0.01348114013671875,
0.01157379150390625,
-0.030059814453125,
0.042449951171875,
0.040069580078125,
0.00800323486328125,
0.0357666015625,
0.053436279296875,
0.0014591217041015625,
0.0189361572265625,
-0.0084075927734375,
0.0638427734375,
-0.047943115234375,
-0.0233306884765625,
-0.0322265625,
0.03167724609375,
-0.0277557373046875,
-0.03192138671875,
0.04534912109375,
0.0679931640625,
0.07830810546875,
0.0014657974243164062,
0.062164306640625,
-0.0222320556640625,
0.0024242401123046875,
-0.0294189453125,
0.0870361328125,
-0.04833984375,
0.0005431175231933594,
-0.007221221923828125,
-0.0556640625,
-0.0034427642822265625,
0.04156494140625,
-0.0280914306640625,
0.01203155517578125,
0.0458984375,
0.07501220703125,
-0.00485992431640625,
-0.00693511962890625,
0.0218658447265625,
0.02069091796875,
0.0266571044921875,
0.037078857421875,
0.0166015625,
-0.06329345703125,
0.06195068359375,
-0.03814697265625,
-0.0137481689453125,
-0.04815673828125,
-0.045867919921875,
-0.06610107421875,
-0.06488037109375,
-0.0310821533203125,
-0.044677734375,
-0.01605224609375,
0.0628662109375,
0.0552978515625,
-0.055328369140625,
0.000919342041015625,
0.0257720947265625,
0.00569915771484375,
-0.0097808837890625,
-0.0185699462890625,
0.075927734375,
-0.03948974609375,
-0.08428955078125,
0.0130767822265625,
-0.00460052490234375,
-0.02099609375,
-0.00353240966796875,
-0.004199981689453125,
-0.039703369140625,
-0.0131988525390625,
0.042449951171875,
0.0158233642578125,
-0.0240631103515625,
-0.0130615234375,
-0.0048980712890625,
-0.01552581787109375,
0.00846099853515625,
0.031280517578125,
-0.06298828125,
0.044281005859375,
0.0574951171875,
0.0498046875,
0.08319091796875,
-0.0194549560546875,
0.004077911376953125,
-0.056304931640625,
0.021759033203125,
-0.00438690185546875,
0.038726806640625,
0.024383544921875,
-0.02899169921875,
0.057586669921875,
0.0418701171875,
-0.039093017578125,
-0.047576904296875,
-0.03448486328125,
-0.09912109375,
0.00014638900756835938,
0.07989501953125,
-0.0245361328125,
-0.0200958251953125,
0.0003342628479003906,
-0.0135345458984375,
0.0377197265625,
-0.04193115234375,
0.055145263671875,
0.0457763671875,
-0.02276611328125,
-0.0014142990112304688,
-0.034698486328125,
0.04315185546875,
0.01364898681640625,
-0.03997802734375,
-0.0226287841796875,
0.016082763671875,
0.030853271484375,
0.0110321044921875,
0.0465087890625,
-0.0129852294921875,
0.005016326904296875,
0.0273590087890625,
0.0069580078125,
-0.031951904296875,
-0.01336669921875,
-0.005962371826171875,
0.022674560546875,
-0.02154541015625,
-0.057037353515625
]
] |
roszcz/masked-maestro-v3 | 2023-10-02T15:21:06.000Z | [
"region:us"
] | roszcz | null | null | 0 | 1,176 | 2023-10-02T12:02:32 | ---
dataset_info:
features:
- name: pitch
sequence: int8
length: 90
- name: start
sequence: float64
length: 90
- name: dstart
sequence: float64
length: 90
- name: end
sequence: float64
length: 90
- name: duration
sequence: float64
length: 90
- name: velocity
sequence: int8
length: 90
- name: source
dtype: string
- name: masking_space
struct:
- name: <Random Mask>
sequence: bool
length: 90
- name: <LH Mask>
sequence: bool
length: 90
- name: <RH Mask>
sequence: bool
length: 90
- name: <Harmonic Root Mask>
sequence: bool
length: 90
- name: <Harmonic Outliers Mask>
sequence: bool
length: 90
splits:
- name: test
num_bytes: 472275625
num_examples: 136870
- name: validation
num_bytes: 407260307
num_examples: 118080
- name: train
num_bytes: 3605902471
num_examples: 1045755
download_size: 4317450762
dataset_size: 4485438403
---
# Dataset Card for "masked-maestro-v3"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 1,192 | [
[
-0.05169677734375,
-0.0106658935546875,
0.00852203369140625,
0.0204315185546875,
-0.01195526123046875,
0.0135498046875,
0.032867431640625,
-0.02166748046875,
0.067138671875,
0.057830810546875,
-0.06341552734375,
-0.049713134765625,
-0.044830322265625,
-0.01428985595703125,
-0.0301971435546875,
0.0860595703125,
0.0046539306640625,
0.004047393798828125,
-0.02325439453125,
0.01073455810546875,
-0.03912353515625,
-0.037261962890625,
-0.037506103515625,
-0.04254150390625,
0.055572509765625,
0.052093505859375,
0.02362060546875,
0.032989501953125,
0.046142578125,
0.0142974853515625,
0.0024127960205078125,
-0.0105438232421875,
-0.0223236083984375,
-0.00498199462890625,
-0.00562286376953125,
-0.03387451171875,
-0.090087890625,
0.0113983154296875,
0.036285400390625,
0.0298004150390625,
-0.0018854141235351562,
0.042938232421875,
-0.0206146240234375,
0.069091796875,
-0.028778076171875,
0.050140380859375,
-0.023712158203125,
0.0141448974609375,
-0.055572509765625,
-0.0094451904296875,
0.0243682861328125,
-0.0284423828125,
-0.00075531005859375,
-0.07757568359375,
0.015655517578125,
-0.003002166748046875,
0.058380126953125,
0.01190185546875,
0.00537872314453125,
0.019012451171875,
-0.0343017578125,
0.0008230209350585938,
0.004810333251953125,
0.01250457763671875,
0.0672607421875,
0.06658935546875,
0.0242156982421875,
-0.04339599609375,
-0.0286102294921875,
0.0242919921875,
-0.002796173095703125,
0.02520751953125,
0.0007634162902832031,
-0.006534576416015625,
0.029388427734375,
0.045440673828125,
-0.0267791748046875,
-0.0041351318359375,
-0.0718994140625,
-0.022216796875,
0.046875,
0.0086669921875,
-0.0031223297119140625,
0.0006041526794433594,
-0.007114410400390625,
-0.007244110107421875,
-0.05596923828125,
-0.0074005126953125,
0.056304931640625,
0.004749298095703125,
-0.06927490234375,
0.039703369140625,
-0.0187530517578125,
0.045745849609375,
0.028533935546875,
0.02410888671875,
0.0621337890625,
-0.00885009765625,
-0.01163482666015625,
0.00409698486328125,
0.01424407958984375,
0.03631591796875,
0.01134490966796875,
0.0102386474609375,
-0.0127716064453125,
-0.0200042724609375,
0.0223846435546875,
-0.066162109375,
-0.058349609375,
0.0242919921875,
-0.0333251953125,
-0.033843994140625,
0.041046142578125,
-0.0616455078125,
-0.040130615234375,
-0.0256500244140625,
0.0281219482421875,
0.0216064453125,
-0.05169677734375,
0.01031494140625,
-0.04229736328125,
0.03778076171875,
0.024658203125,
-0.06109619140625,
0.044097900390625,
0.055908203125,
0.03662109375,
0.0008254051208496094,
-0.0161895751953125,
-0.04803466796875,
0.0236053466796875,
-0.0018777847290039062,
0.053466796875,
-0.0239105224609375,
-0.0262603759765625,
0.01038360595703125,
0.0279998779296875,
-0.0027980804443359375,
-0.044952392578125,
0.062042236328125,
-0.04339599609375,
-0.004199981689453125,
-0.0231475830078125,
-0.015960693359375,
-0.016082763671875,
0.0213470458984375,
-0.07952880859375,
0.0675048828125,
0.0175323486328125,
-0.037353515625,
0.019195556640625,
-0.08612060546875,
-0.027069091796875,
0.045867919921875,
0.00009131431579589844,
-0.04693603515625,
0.00713348388671875,
0.0122528076171875,
0.05279541015625,
-0.0015010833740234375,
0.0196075439453125,
-0.044189453125,
-0.0178680419921875,
0.0110931396484375,
0.0194244384765625,
0.063232421875,
0.00623321533203125,
0.01084136962890625,
0.0043182373046875,
-0.06622314453125,
-0.0268096923828125,
0.006526947021484375,
0.01552581787109375,
-0.0017232894897460938,
-0.031280517578125,
0.00572967529296875,
-0.011993408203125,
0.024993896484375,
-0.0236053466796875,
0.02099609375,
0.0199127197265625,
-0.0032444000244140625,
0.056884765625,
0.005157470703125,
0.01284027099609375,
-0.041168212890625,
0.041107177734375,
0.0003323554992675781,
0.047210693359375,
0.004512786865234375,
-0.0401611328125,
-0.050506591796875,
-0.019134521484375,
0.0360107421875,
0.04998779296875,
-0.06439208984375,
0.046722412109375,
-0.0027332305908203125,
-0.05596923828125,
-0.0205230712890625,
0.00041556358337402344,
0.0178070068359375,
0.0260772705078125,
0.020904541015625,
-0.037017822265625,
-0.0572509765625,
-0.0821533203125,
0.019683837890625,
0.00006687641143798828,
-0.0154266357421875,
0.02374267578125,
0.06060791015625,
-0.0211029052734375,
0.046173095703125,
-0.054534912109375,
-0.0435791015625,
-0.006343841552734375,
-0.0232696533203125,
0.02825927734375,
0.060760498046875,
0.059600830078125,
-0.04833984375,
-0.01690673828125,
-0.0256500244140625,
-0.0335693359375,
-0.0209197998046875,
0.032196044921875,
-0.0276336669921875,
-0.01959228515625,
0.0222930908203125,
-0.01544952392578125,
0.02825927734375,
0.060211181640625,
-0.01477813720703125,
0.01049041748046875,
0.01244354248046875,
0.01134490966796875,
-0.07794189453125,
0.0248260498046875,
0.00007641315460205078,
-0.0178680419921875,
-0.0401611328125,
0.00030350685119628906,
0.013153076171875,
-0.0121002197265625,
-0.0127105712890625,
0.03192138671875,
-0.0253143310546875,
-0.01371002197265625,
0.005992889404296875,
0.0015106201171875,
-0.00891876220703125,
0.02789306640625,
0.0177001953125,
0.030853271484375,
0.093505859375,
-0.03192138671875,
0.06268310546875,
0.0201873779296875,
-0.0014390945434570312,
0.08636474609375,
-0.06396484375,
0.00873565673828125,
-0.006732940673828125,
0.0174560546875,
-0.0308837890625,
-0.0599365234375,
0.059844970703125,
-0.040069580078125,
0.037994384765625,
-0.051025390625,
-0.04559326171875,
-0.050506591796875,
-0.043060302734375,
0.0479736328125,
0.040283203125,
-0.04937744140625,
0.0225830078125,
0.07135009765625,
0.0034084320068359375,
0.0089569091796875,
-0.055145263671875,
0.005367279052734375,
-0.027740478515625,
-0.015228271484375,
0.038421630859375,
-0.0244293212890625,
-0.001766204833984375,
-0.02838134765625,
0.01099395751953125,
-0.017669677734375,
-0.0008497238159179688,
0.03253173828125,
0.017913818359375,
0.0038585662841796875,
0.0065765380859375,
0.00017726421356201172,
-0.058349609375,
0.01407623291015625,
-0.0127410888671875,
0.01354217529296875,
-0.01157379150390625,
-0.0171356201171875,
-0.036224365234375,
0.0249176025390625,
0.01959228515625,
-0.01401519775390625,
0.0210113525390625,
0.0751953125,
-0.0484619140625,
0.005855560302734375,
-0.039825439453125,
-0.003192901611328125,
-0.0362548828125,
-0.01026153564453125,
-0.0197601318359375,
-0.054534912109375,
0.048187255859375,
0.0193023681640625,
-0.025787353515625,
0.06048583984375,
0.045074462890625,
0.00653839111328125,
0.04351806640625,
0.033203125,
-0.01329803466796875,
0.032379150390625,
-0.0258941650390625,
-0.0205230712890625,
-0.06549072265625,
-0.05328369140625,
-0.040985107421875,
-0.0255889892578125,
-0.047637939453125,
-0.028228759765625,
0.0345458984375,
0.0015735626220703125,
-0.0207061767578125,
0.04058837890625,
-0.045501708984375,
0.034271240234375,
0.061187744140625,
0.0168304443359375,
-0.005306243896484375,
-0.01206207275390625,
0.04327392578125,
0.021240234375,
-0.0394287109375,
0.00399017333984375,
0.088623046875,
0.0328369140625,
0.046356201171875,
0.024932861328125,
0.056365966796875,
0.021759033203125,
0.0152130126953125,
-0.0165557861328125,
0.032073974609375,
0.0219268798828125,
-0.050689697265625,
0.010223388671875,
0.004795074462890625,
-0.056488037109375,
-0.0181427001953125,
-0.022918701171875,
-0.0194244384765625,
0.03289794921875,
0.0256500244140625,
-0.006587982177734375,
0.0169219970703125,
-0.044921875,
0.062408447265625,
0.0084991455078125,
-0.00713348388671875,
0.01386260986328125,
-0.059112548828125,
0.038543701171875,
-0.00897216796875,
-0.0013933181762695312,
-0.0071563720703125,
-0.0137786865234375,
0.069580078125,
-0.04437255859375,
0.0819091796875,
-0.04266357421875,
-0.003818511962890625,
0.005130767822265625,
-0.021636962890625,
0.026397705078125,
0.042816162109375,
0.0065765380859375,
0.0235443115234375,
-0.0111236572265625,
-0.040252685546875,
-0.02001953125,
0.053466796875,
-0.051727294921875,
-0.01433563232421875,
-0.0268096923828125,
-0.015960693359375,
-0.01020050048828125,
0.0129241943359375,
0.01277923583984375,
0.039886474609375,
-0.0055389404296875,
0.00786590576171875,
0.06817626953125,
0.0253143310546875,
0.011444091796875,
0.03253173828125,
-0.02288818359375,
-0.048858642578125,
0.0692138671875,
0.008148193359375,
-0.0138092041015625,
0.0187835693359375,
0.0178070068359375,
-0.0025691986083984375,
-0.047515869140625,
-0.04840087890625,
0.00525665283203125,
-0.0159759521484375,
-0.044586181640625,
-0.032440185546875,
-0.025421142578125,
-0.024017333984375,
-0.02398681640625,
-0.01959228515625,
-0.048492431640625,
-0.047088623046875,
-0.039764404296875,
0.08111572265625,
0.04266357421875,
-0.053863525390625,
0.044586181640625,
-0.049285888671875,
0.04913330078125,
0.0286102294921875,
0.07635498046875,
-0.03448486328125,
-0.0238037109375,
-0.0283966064453125,
-0.0193328857421875,
-0.003955841064453125,
-0.043792724609375,
-0.0157012939453125,
0.0039215087890625,
0.05328369140625,
0.02337646484375,
-0.01354217529296875,
0.036895751953125,
-0.00577545166015625,
0.062225341796875,
0.00826263427734375,
-0.0582275390625,
0.048858642578125,
-0.046539306640625,
0.02020263671875,
0.061065673828125,
0.01953125,
-0.0189056396484375,
-0.00789642333984375,
-0.0745849609375,
-0.04296875,
0.04998779296875,
0.020172119140625,
0.00910186767578125,
0.0180206298828125,
0.020416259765625,
0.01389312744140625,
0.041412353515625,
-0.06121826171875,
-0.06591796875,
-0.0247802734375,
0.005443572998046875,
0.0008139610290527344,
-0.026641845703125,
-0.029022216796875,
-0.05072021484375,
0.051300048828125,
-0.0024471282958984375,
0.0377197265625,
0.004619598388671875,
0.0176239013671875,
0.0012140274047851562,
-0.0295257568359375,
0.05340576171875,
0.035400390625,
-0.037078857421875,
0.005237579345703125,
-0.01175689697265625,
-0.0416259765625,
-0.037689208984375,
0.04937744140625,
-0.0023746490478515625,
-0.014801025390625,
0.038177490234375,
0.0509033203125,
-0.01953125,
-0.00109100341796875,
0.053466796875,
0.006557464599609375,
-0.04046630859375,
-0.040069580078125,
0.01262664794921875,
-0.00666046142578125,
0.0159454345703125,
0.01326751708984375,
0.013153076171875,
0.030364990234375,
-0.01560211181640625,
0.022918701171875,
-0.0017957687377929688,
-0.0565185546875,
-0.04071044921875,
0.04595947265625,
0.0341796875,
-0.031402587890625,
0.0215911865234375,
-0.0227203369140625,
-0.05145263671875,
0.042205810546875,
0.01448822021484375,
0.0745849609375,
-0.020751953125,
0.03387451171875,
0.030364990234375,
0.025970458984375,
0.0074462890625,
0.04193115234375,
-0.03741455078125,
-0.0222320556640625,
0.003963470458984375,
0.0013380050659179688,
-0.0231170654296875,
-0.0129547119140625,
-0.07080078125,
0.0245208740234375,
-0.040618896484375,
0.0079345703125,
-0.0150146484375,
0.01265716552734375,
-0.060821533203125,
-0.005504608154296875,
-0.001384735107421875,
0.08477783203125,
-0.05950927734375,
0.060028076171875,
0.027587890625,
-0.018310546875,
-0.0287017822265625,
-0.0220184326171875,
0.0168914794921875,
-0.07354736328125,
0.007694244384765625,
0.007534027099609375,
0.006504058837890625,
-0.01284027099609375,
-0.0616455078125,
-0.04718017578125,
0.09344482421875,
-0.0010547637939453125,
-0.033721923828125,
0.054840087890625,
-0.0223541259765625,
0.031463623046875,
-0.0257415771484375,
0.0037250518798828125,
0.034637451171875,
0.068359375,
0.0240631103515625,
-0.057159423828125,
-0.012451171875,
-0.04302978515625,
-0.0170135498046875,
0.02215576171875,
-0.038330078125,
0.026763916015625,
0.004810333251953125,
0.0164794921875,
-0.0017423629760742188,
0.040374755859375,
0.00809478759765625,
0.0232391357421875,
0.0230712890625,
0.040435791015625,
0.05767822265625,
-0.0228729248046875,
0.074462890625,
0.0020904541015625,
0.015838623046875,
0.07318115234375,
-0.01335906982421875,
0.005298614501953125,
0.0258636474609375,
0.0013275146484375,
0.021240234375,
0.04852294921875,
-0.045989990234375,
0.03765869140625,
0.03656005859375,
-0.018829345703125,
-0.01053619384765625,
-0.0008063316345214844,
-0.070068359375,
0.00864410400390625,
0.0164794921875,
-0.025970458984375,
0.01102447509765625,
0.001781463623046875,
0.0210723876953125,
-0.0209197998046875,
-0.057220458984375,
0.05340576171875,
-0.0227203369140625,
-0.0231475830078125,
0.01019287109375,
0.0003540515899658203,
0.0261688232421875,
-0.044708251953125,
-0.017608642578125,
-0.0147247314453125,
-0.002101898193359375,
-0.036468505859375,
-0.07427978515625,
0.042327880859375,
-0.0206756591796875,
-0.01262664794921875,
-0.02166748046875,
0.046630859375,
-0.0226593017578125,
-0.0626220703125,
-0.0027256011962890625,
0.026580810546875,
0.0132904052734375,
0.006191253662109375,
-0.06341552734375,
0.02911376953125,
-0.0273895263671875,
0.00002866983413696289,
0.005641937255859375,
0.0053863525390625,
0.0097503662109375,
0.037139892578125,
0.03619384765625,
0.0006537437438964844,
-0.0233154296875,
0.0255126953125,
0.06622314453125,
-0.0341796875,
-0.02740478515625,
-0.0333251953125,
0.052276611328125,
-0.04315185546875,
-0.046478271484375,
0.047637939453125,
0.07501220703125,
0.0753173828125,
-0.0206298828125,
0.045654296875,
-0.0131988525390625,
0.041168212890625,
-0.032745361328125,
0.04095458984375,
-0.0287017822265625,
0.009490966796875,
-0.030059814453125,
-0.0433349609375,
-0.08087158203125,
0.032318115234375,
0.0084228515625,
0.002445220947265625,
0.015777587890625,
0.0726318359375,
-0.020782470703125,
0.005802154541015625,
0.0027217864990234375,
-0.001049041748046875,
0.0099029541015625,
0.0216827392578125,
0.0291595458984375,
-0.044036865234375,
0.00004035234451293945,
-0.0178680419921875,
-0.037078857421875,
-0.0177001953125,
-0.06866455078125,
-0.0767822265625,
-0.053009033203125,
-0.04742431640625,
-0.02789306640625,
-0.002780914306640625,
0.043670654296875,
0.07037353515625,
-0.040985107421875,
-0.0177764892578125,
0.00476837158203125,
0.04339599609375,
-0.011444091796875,
-0.00785064697265625,
0.04119873046875,
0.03826904296875,
-0.044769287109375,
-0.0032672882080078125,
0.01247406005859375,
0.018890380859375,
-0.0272216796875,
0.00000476837158203125,
0.0214385986328125,
-0.0146026611328125,
0.03466796875,
0.0305328369140625,
-0.0087432861328125,
-0.032806396484375,
-0.033447265625,
0.018341064453125,
0.006443023681640625,
0.07403564453125,
-0.0501708984375,
0.015106201171875,
0.0306854248046875,
0.0117645263671875,
0.056671142578125,
-0.022705078125,
0.040435791015625,
-0.047637939453125,
-0.0081787109375,
-0.00937652587890625,
0.026123046875,
0.0031032562255859375,
-0.0158538818359375,
0.060394287109375,
0.034576416015625,
-0.0252838134765625,
-0.04840087890625,
0.025726318359375,
-0.1114501953125,
0.0297088623046875,
0.047088623046875,
0.0220489501953125,
-0.0156707763671875,
-0.019256591796875,
-0.030364990234375,
-0.01251220703125,
-0.043701171875,
0.017974853515625,
0.0253143310546875,
0.0074310302734375,
-0.02752685546875,
-0.028961181640625,
0.04986572265625,
-0.040283203125,
-0.0816650390625,
-0.00620269775390625,
0.042755126953125,
-0.0005445480346679688,
0.0028228759765625,
0.050933837890625,
-0.037353515625,
0.0255126953125,
-0.001163482666015625,
0.012664794921875,
-0.047210693359375,
-0.05084228515625,
-0.0301361083984375,
0.02056884765625,
-0.025604248046875,
-0.040771484375
]
] |
nlphuji/flickr_1k_test_image_text_retrieval | 2023-01-14T19:54:08.000Z | [
"region:us"
] | nlphuji | null | null | 0 | 1,172 | 2023-01-12T14:36:57 | # Flickr30k (1K test set)
Original paper: [From image descriptions to visual denotations: New similarity metrics for semantic inference over event descriptions](https://aclanthology.org/Q14-1006)
Homepage: https://shannon.cs.illinois.edu/DenotationGraph/
1K test set split from: http://cs.stanford.edu/people/karpathy/deepimagesent/caption_datasets.zip
Bibtex:
```
@article{young2014image,
title={From image descriptions to visual denotations: New similarity metrics for semantic inference over event descriptions},
author={Young, Peter and Lai, Alice and Hodosh, Micah and Hockenmaier, Julia},
journal={Transactions of the Association for Computational Linguistics},
volume={2},
pages={67--78},
year={2014},
publisher={MIT Press}
}
``` | 754 | [
[
-0.04949951171875,
-0.0232086181640625,
0.01392364501953125,
-0.0038433074951171875,
-0.037506103515625,
-0.011199951171875,
0.0028743743896484375,
-0.04583740234375,
0.00811004638671875,
0.0250396728515625,
-0.049468994140625,
-0.0303802490234375,
-0.03436279296875,
0.005802154541015625,
-0.0340576171875,
0.06011962890625,
-0.001453399658203125,
0.003742218017578125,
-0.02825927734375,
-0.0282440185546875,
0.0105133056640625,
0.020843505859375,
-0.0379638671875,
0.00582122802734375,
0.04827880859375,
0.01512908935546875,
0.04840087890625,
0.049041748046875,
0.07080078125,
0.0137786865234375,
0.0068359375,
-0.018310546875,
-0.0185699462890625,
-0.01206207275390625,
-0.007381439208984375,
-0.0016880035400390625,
0.0048065185546875,
0.03277587890625,
0.0821533203125,
0.049468994140625,
0.0309600830078125,
0.034088134765625,
-0.01316070556640625,
0.044647216796875,
-0.0537109375,
0.025543212890625,
-0.035888671875,
0.0157012939453125,
-0.015655517578125,
0.00250244140625,
-0.01654052734375,
-0.0068206787109375,
0.01428985595703125,
-0.058074951171875,
0.05438232421875,
0.0021343231201171875,
0.11138916015625,
0.01983642578125,
-0.012725830078125,
0.0279693603515625,
-0.0303802490234375,
0.03839111328125,
-0.0411376953125,
0.0290679931640625,
0.01605224609375,
0.041015625,
0.006259918212890625,
-0.07293701171875,
-0.07452392578125,
-0.00811004638671875,
0.002338409423828125,
0.00957489013671875,
-0.0189666748046875,
-0.0133056640625,
0.0318603515625,
0.0445556640625,
-0.0467529296875,
0.0034999847412109375,
-0.05126953125,
-0.01239776611328125,
0.054534912109375,
0.0086669921875,
0.0032196044921875,
-0.03948974609375,
-0.0255889892578125,
-0.047760009765625,
-0.036895751953125,
-0.0041351318359375,
0.0270843505859375,
0.021575927734375,
-0.031829833984375,
0.0533447265625,
-0.0330810546875,
0.035064697265625,
-0.0116424560546875,
0.0038318634033203125,
0.04632568359375,
-0.051025390625,
-0.00954437255859375,
-0.03204345703125,
0.0697021484375,
0.0660400390625,
0.029052734375,
-0.0216827392578125,
0.0201873779296875,
-0.0024318695068359375,
0.002044677734375,
-0.05987548828125,
-0.040374755859375,
-0.01751708984375,
-0.05322265625,
-0.02020263671875,
0.0438232421875,
-0.07427978515625,
-0.0288848876953125,
-0.01763916015625,
0.0158233642578125,
-0.01465606689453125,
-0.01580810546875,
-0.0012674331665039062,
-0.038818359375,
0.06011962890625,
0.026092529296875,
-0.019927978515625,
0.021087646484375,
0.042755126953125,
0.0654296875,
-0.0208587646484375,
-0.0477294921875,
-0.02685546875,
-0.0108489990234375,
-0.01910400390625,
0.06573486328125,
-0.0211639404296875,
0.001117706298828125,
-0.0011987686157226562,
0.02252197265625,
-0.0029315948486328125,
-0.03167724609375,
0.023284912109375,
-0.0478515625,
0.00421142578125,
-0.0025768280029296875,
-0.0362548828125,
-0.006038665771484375,
0.01113128662109375,
-0.0733642578125,
0.07379150390625,
0.0111083984375,
-0.06414794921875,
0.06268310546875,
-0.041534423828125,
-0.020599365234375,
0.0291290283203125,
-0.0226287841796875,
-0.0261993408203125,
-0.005008697509765625,
0.006504058837890625,
0.02813720703125,
-0.003757476806640625,
-0.0189056396484375,
-0.04534912109375,
-0.022979736328125,
0.018341064453125,
0.00370025634765625,
0.055328369140625,
0.020172119140625,
-0.0025806427001953125,
0.0015268325805664062,
-0.05657958984375,
-0.01096343994140625,
0.0194549560546875,
-0.006244659423828125,
-0.010589599609375,
-0.015655517578125,
0.0188751220703125,
-0.000980377197265625,
0.0150909423828125,
-0.06439208984375,
0.0104217529296875,
-0.0084991455078125,
-0.0010423660278320312,
0.039337158203125,
0.00490570068359375,
0.031005859375,
-0.0180816650390625,
0.04229736328125,
0.00807952880859375,
0.0208282470703125,
-0.02777099609375,
-0.03656005859375,
-0.03338623046875,
-0.016845703125,
0.0167083740234375,
0.020751953125,
-0.043243408203125,
0.02203369140625,
-0.053070068359375,
-0.046051025390625,
-0.047637939453125,
-0.0033206939697265625,
0.0303802490234375,
0.0361328125,
0.0220184326171875,
-0.0280609130859375,
-0.036834716796875,
-0.08074951171875,
-0.00040459632873535156,
-0.01007080078125,
-0.002880096435546875,
0.0264892578125,
0.053985595703125,
-0.00783538818359375,
0.072021484375,
-0.04620361328125,
-0.030059814453125,
0.0167999267578125,
0.0063934326171875,
-0.00004684925079345703,
0.02423095703125,
0.054534912109375,
-0.06439208984375,
-0.04998779296875,
-0.01224517822265625,
-0.0379638671875,
0.0013456344604492188,
-0.004261016845703125,
0.004024505615234375,
0.028167724609375,
0.03314208984375,
-0.038787841796875,
0.047607421875,
0.01561737060546875,
-0.0303802490234375,
0.052581787109375,
0.0228271484375,
0.033355712890625,
-0.0693359375,
0.00713348388671875,
0.0149688720703125,
0.000827789306640625,
0.0171356201171875,
0.0184478759765625,
-0.0196990966796875,
0.0019273757934570312,
-0.037506103515625,
0.064208984375,
-0.03948974609375,
-0.011932373046875,
-0.00970458984375,
0.01898193359375,
-0.005401611328125,
0.01198577880859375,
-0.0103759765625,
0.04644775390625,
0.0748291015625,
-0.01898193359375,
0.04119873046875,
0.05816650390625,
-0.045196533203125,
0.041168212890625,
-0.04205322265625,
-0.00991058349609375,
-0.0128326416015625,
0.0289154052734375,
-0.09033203125,
-0.028411865234375,
0.007427215576171875,
-0.04412841796875,
-0.01042938232421875,
-0.037811279296875,
-0.058563232421875,
-0.027435302734375,
-0.047637939453125,
0.0220489501953125,
0.05487060546875,
-0.0347900390625,
0.025421142578125,
0.0236968994140625,
0.0050506591796875,
-0.042236328125,
-0.0638427734375,
0.020843505859375,
-0.003444671630859375,
-0.03857421875,
0.0100860595703125,
-0.00005263090133666992,
-0.0248565673828125,
0.01922607421875,
0.0019683837890625,
-0.007556915283203125,
-0.02362060546875,
0.043731689453125,
0.0232391357421875,
-0.01024627685546875,
0.0299072265625,
-0.01467132568359375,
-0.00046634674072265625,
-0.005462646484375,
0.00022590160369873047,
0.02069091796875,
-0.0208587646484375,
-0.0196533203125,
-0.032135009765625,
0.00864410400390625,
0.00875091552734375,
-0.004283905029296875,
0.045440673828125,
0.069580078125,
-0.011993408203125,
0.01788330078125,
-0.04302978515625,
-0.0129852294921875,
-0.031097412109375,
0.01605224609375,
-0.03857421875,
-0.080810546875,
0.05609130859375,
0.0142669677734375,
-0.007625579833984375,
0.06573486328125,
0.00402069091796875,
-0.021392822265625,
0.03216552734375,
0.022216796875,
0.01045989990234375,
0.046051025390625,
-0.037017822265625,
-0.004070281982421875,
-0.061431884765625,
-0.0077667236328125,
-0.045745849609375,
-0.03216552734375,
-0.062225341796875,
-0.035369873046875,
-0.00588226318359375,
-0.00439453125,
-0.0309600830078125,
0.0273895263671875,
-0.0305023193359375,
0.049957275390625,
0.0491943359375,
0.00930023193359375,
0.0200653076171875,
0.0299530029296875,
0.0063629150390625,
-0.013275146484375,
-0.04071044921875,
-0.0352783203125,
0.07177734375,
0.004241943359375,
0.05584716796875,
-0.0012044906616210938,
0.04400634765625,
0.0213623046875,
0.02105712890625,
-0.043609619140625,
0.06298828125,
-0.033599853515625,
-0.052978515625,
-0.0264892578125,
-0.027435302734375,
-0.08709716796875,
-0.01114654541015625,
-0.0012388229370117188,
-0.06488037109375,
0.016876220703125,
-0.0009355545043945312,
0.00205230712890625,
0.019012451171875,
-0.038726806640625,
0.0709228515625,
0.0191497802734375,
-0.01220703125,
0.0035858154296875,
-0.06610107421875,
0.01210784912109375,
0.001293182373046875,
0.0016021728515625,
-0.027069091796875,
-0.01398468017578125,
0.08721923828125,
-0.0032444000244140625,
0.07281494140625,
-0.020111083984375,
0.023681640625,
0.03466796875,
0.00299835205078125,
0.0114898681640625,
0.00656890869140625,
0.007213592529296875,
0.01265716552734375,
0.0341796875,
-0.030303955078125,
-0.026458740234375,
0.05169677734375,
-0.0472412109375,
-0.013824462890625,
-0.0242767333984375,
-0.04205322265625,
0.00849151611328125,
0.030303955078125,
0.0307159423828125,
0.038330078125,
-0.0183868408203125,
0.02960205078125,
0.0223388671875,
-0.0093231201171875,
0.039337158203125,
0.033477783203125,
-0.021575927734375,
-0.0391845703125,
0.03216552734375,
0.0006008148193359375,
-0.00434112548828125,
0.024200439453125,
0.0066070556640625,
-0.021026611328125,
-0.050628662109375,
-0.01354217529296875,
0.030120849609375,
-0.06982421875,
-0.0213470458984375,
-0.046905517578125,
-0.00885009765625,
-0.051971435546875,
-0.0223846435546875,
-0.0194244384765625,
-0.049072265625,
-0.0218963623046875,
-0.0280914306640625,
0.048736572265625,
0.03704833984375,
-0.01629638671875,
0.03350830078125,
-0.05157470703125,
0.026611328125,
0.005176544189453125,
0.050506591796875,
0.005619049072265625,
-0.049591064453125,
-0.0189666748046875,
-0.0024967193603515625,
-0.01145172119140625,
-0.047943115234375,
0.01291656494140625,
0.037567138671875,
0.051513671875,
0.035400390625,
0.0219573974609375,
0.050262451171875,
-0.01207733154296875,
0.07720947265625,
0.0179443359375,
-0.03839111328125,
0.051513671875,
-0.03619384765625,
0.0308990478515625,
0.0716552734375,
0.032379150390625,
-0.0204925537109375,
-0.0183258056640625,
-0.07623291015625,
-0.05889892578125,
0.0300750732421875,
-0.011474609375,
0.040863037109375,
-0.01291656494140625,
0.035736083984375,
0.014923095703125,
-0.0093536376953125,
-0.073974609375,
-0.0126495361328125,
0.0012664794921875,
-0.0211181640625,
-0.014862060546875,
-0.0159912109375,
-0.040740966796875,
-0.0423583984375,
0.037322998046875,
-0.033172607421875,
0.0251007080078125,
0.0159149169921875,
-0.00685882568359375,
-0.02142333984375,
-0.0104827880859375,
0.023040771484375,
0.047149658203125,
-0.016265869140625,
0.032379150390625,
0.0003809928894042969,
-0.04803466796875,
-0.0120697021484375,
0.031585693359375,
-0.01270294189453125,
-0.0018253326416015625,
0.06842041015625,
0.056182861328125,
-0.00016939640045166016,
-0.05877685546875,
0.053070068359375,
0.0157012939453125,
-0.037994384765625,
-0.022552490234375,
0.0019702911376953125,
-0.0073699951171875,
0.02252197265625,
0.036712646484375,
-0.0246734619140625,
0.0177764892578125,
-0.0194244384765625,
0.046417236328125,
0.033782958984375,
-0.05511474609375,
-0.0185089111328125,
0.0304718017578125,
-0.00853729248046875,
-0.0093231201171875,
0.04852294921875,
-0.0445556640625,
-0.013702392578125,
0.051910400390625,
-0.00029778480529785156,
0.0655517578125,
0.042083740234375,
0.037139892578125,
0.0517578125,
0.0288238525390625,
0.0142059326171875,
0.029571533203125,
0.00568389892578125,
-0.0677490234375,
-0.032379150390625,
-0.04595947265625,
-0.01464080810546875,
-0.003753662109375,
-0.0478515625,
0.00045108795166015625,
-0.00997161865234375,
0.004421234130859375,
0.0302886962890625,
0.001861572265625,
-0.05609130859375,
0.01265716552734375,
0.0036830902099609375,
0.08673095703125,
-0.06695556640625,
0.0207061767578125,
0.061187744140625,
-0.062286376953125,
-0.04656982421875,
-0.0105438232421875,
-0.00670623779296875,
-0.03570556640625,
0.05926513671875,
0.01320648193359375,
0.0196075439453125,
-0.005100250244140625,
-0.0738525390625,
-0.0596923828125,
0.0888671875,
0.005924224853515625,
-0.0263214111328125,
0.045013427734375,
0.00290679931640625,
0.042510986328125,
-0.032196044921875,
-0.01317596435546875,
0.01386260986328125,
0.049713134765625,
0.037322998046875,
-0.061004638671875,
-0.000009953975677490234,
-0.036651611328125,
-0.0103759765625,
0.014190673828125,
-0.042327880859375,
0.0396728515625,
-0.027191162109375,
-0.0253753662109375,
0.01141357421875,
0.037261962890625,
0.0171051025390625,
0.04071044921875,
0.03460693359375,
0.06890869140625,
0.01337432861328125,
-0.023529052734375,
0.0792236328125,
0.023040771484375,
0.037567138671875,
0.114501953125,
-0.0218963623046875,
0.0595703125,
0.05413818359375,
-0.0433349609375,
0.026885986328125,
0.05987548828125,
-0.058563232421875,
0.0511474609375,
0.01047515869140625,
0.0011816024780273438,
-0.0002079010009765625,
-0.0019474029541015625,
-0.01381683349609375,
0.0328369140625,
-0.0203704833984375,
-0.0406494140625,
-0.027496337890625,
0.0171051025390625,
-0.01197052001953125,
-0.009979248046875,
0.0006961822509765625,
0.06768798828125,
-0.01287841796875,
-0.033355712890625,
0.016845703125,
-0.03948974609375,
0.02935791015625,
-0.01702880859375,
-0.00357818603515625,
-0.0140838623046875,
0.00894927978515625,
-0.0095062255859375,
-0.0906982421875,
0.031768798828125,
-0.00791168212890625,
-0.00992584228515625,
0.000705718994140625,
0.051971435546875,
0.002178192138671875,
-0.045013427734375,
0.0110626220703125,
0.0267333984375,
0.0379638671875,
0.0048065185546875,
-0.049102783203125,
-0.004547119140625,
-0.0121307373046875,
-0.025543212890625,
0.00652313232421875,
0.019500732421875,
0.004611968994140625,
0.04864501953125,
0.031158447265625,
-0.005069732666015625,
0.040557861328125,
0.0162506103515625,
0.058563232421875,
-0.03985595703125,
-0.0259552001953125,
-0.037017822265625,
0.043853759765625,
-0.0288543701171875,
-0.04534912109375,
0.061309814453125,
0.07220458984375,
0.08721923828125,
-0.038330078125,
0.051513671875,
-0.033782958984375,
0.013702392578125,
-0.01236724853515625,
0.03594970703125,
-0.04345703125,
-0.0235748291015625,
-0.0171051025390625,
-0.06439208984375,
-0.05059814453125,
0.03564453125,
-0.008514404296875,
0.00606536865234375,
0.052154541015625,
0.06414794921875,
-0.0030727386474609375,
-0.022705078125,
0.00460052490234375,
-0.005664825439453125,
0.00983428955078125,
-0.00197601318359375,
0.057159423828125,
-0.0484619140625,
0.039093017578125,
-0.0400390625,
-0.01035308837890625,
-0.006134033203125,
-0.0760498046875,
-0.043212890625,
-0.0687255859375,
-0.07415771484375,
-0.031494140625,
-0.006168365478515625,
0.0230560302734375,
0.050872802734375,
-0.05584716796875,
0.002685546875,
-0.00374603271484375,
-0.0126495361328125,
-0.01763916015625,
-0.0200653076171875,
0.046966552734375,
0.0008168220520019531,
-0.04437255859375,
-0.0255584716796875,
0.004962921142578125,
0.0274810791015625,
-0.0137786865234375,
-0.007534027099609375,
-0.0280609130859375,
-0.0115203857421875,
0.016632080078125,
0.01512908935546875,
-0.051544189453125,
-0.026885986328125,
-0.00882720947265625,
-0.007488250732421875,
0.005615234375,
0.03631591796875,
-0.040863037109375,
0.030029296875,
0.0562744140625,
0.0236968994140625,
0.060760498046875,
-0.0190887451171875,
-0.01116180419921875,
-0.055694580078125,
0.02142333984375,
0.0009279251098632812,
0.021728515625,
0.03350830078125,
0.00359344482421875,
0.0750732421875,
0.03399658203125,
-0.0198822021484375,
-0.06488037109375,
0.013824462890625,
-0.1436767578125,
0.0008187294006347656,
0.09075927734375,
-0.0196990966796875,
-0.00943756103515625,
0.0206146240234375,
-0.006816864013671875,
0.0199737548828125,
-0.003143310546875,
0.052459716796875,
0.040191650390625,
0.00568389892578125,
-0.07684326171875,
-0.0206298828125,
0.02520751953125,
-0.0220184326171875,
-0.061187744140625,
-0.003559112548828125,
0.050079345703125,
0.0200653076171875,
0.03302001953125,
0.03350830078125,
-0.0255126953125,
0.02850341796875,
0.0220794677734375,
0.037200927734375,
-0.0225982666015625,
-0.00347137451171875,
-0.012176513671875,
0.007720947265625,
-0.0029048919677734375,
-0.03778076171875
]
] |
CM/codexglue_code2text_javascript | 2023-04-22T01:51:42.000Z | [
"region:us"
] | CM | null | null | 2 | 1,171 | 2023-04-22T01:51:30 | ---
dataset_info:
features:
- name: id
dtype: int32
- name: repo
dtype: string
- name: path
dtype: string
- name: func_name
dtype: string
- name: original_string
dtype: string
- name: language
dtype: string
- name: code
dtype: string
- name: code_tokens
sequence: string
- name: docstring
dtype: string
- name: docstring_tokens
sequence: string
- name: sha
dtype: string
- name: url
dtype: string
splits:
- name: train
num_bytes: 160860431
num_examples: 58025
- name: validation
num_bytes: 10337344
num_examples: 3885
- name: test
num_bytes: 10190713
num_examples: 3291
download_size: 65795549
dataset_size: 181388488
---
# Dataset Card for "codexglue_code2text_javascript"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 916 | [
[
-0.022857666015625,
-0.01169586181640625,
0.005168914794921875,
0.0247039794921875,
-0.0010118484497070312,
0.00992584228515625,
-0.00750732421875,
-0.01824951171875,
0.043426513671875,
0.03985595703125,
-0.046142578125,
-0.07452392578125,
-0.042694091796875,
-0.030059814453125,
-0.0233154296875,
0.09539794921875,
-0.004497528076171875,
0.005146026611328125,
-0.041534423828125,
-0.0027294158935546875,
-0.0237579345703125,
-0.034454345703125,
-0.035247802734375,
-0.0293731689453125,
0.048248291015625,
0.048858642578125,
0.040252685546875,
0.0333251953125,
0.057525634765625,
0.004913330078125,
0.01580810546875,
-0.01053619384765625,
-0.03192138671875,
-0.016815185546875,
-0.024566650390625,
-0.053192138671875,
-0.06689453125,
-0.00739288330078125,
0.0215911865234375,
0.03326416015625,
-0.0132904052734375,
0.063232421875,
-0.01523590087890625,
0.039947509765625,
-0.036376953125,
0.064453125,
-0.0182647705078125,
-0.00432586669921875,
-0.0426025390625,
-0.01462554931640625,
-0.0066375732421875,
-0.03863525390625,
-0.0150909423828125,
-0.0797119140625,
0.0193634033203125,
-0.004108428955078125,
0.043670654296875,
0.01366424560546875,
-0.0024509429931640625,
-0.038177490234375,
-0.0292205810546875,
0.015655517578125,
-0.0230712890625,
-0.003742218017578125,
0.06793212890625,
0.026123046875,
0.00572967529296875,
-0.07598876953125,
-0.0291290283203125,
0.01212310791015625,
-0.00807952880859375,
0.03558349609375,
-0.00025534629821777344,
0.0021381378173828125,
0.036529541015625,
0.035797119140625,
-0.0611572265625,
-0.01727294921875,
-0.045379638671875,
-0.033203125,
0.039154052734375,
0.011962890625,
0.035003662109375,
0.01384735107421875,
-0.00772857666015625,
-0.02679443359375,
-0.036529541015625,
0.0010471343994140625,
0.0391845703125,
0.01427459716796875,
-0.0751953125,
0.03265380859375,
0.024444580078125,
0.023956298828125,
-0.00817108154296875,
0.02410888671875,
0.0452880859375,
-0.017486572265625,
-0.0023555755615234375,
0.0005345344543457031,
0.006076812744140625,
0.0316162109375,
0.02886962890625,
-0.0025157928466796875,
0.007266998291015625,
0.0306243896484375,
0.02105712890625,
-0.0821533203125,
-0.054840087890625,
0.0194854736328125,
-0.050140380859375,
-0.019012451171875,
0.030303955078125,
-0.07061767578125,
-0.035888671875,
-0.0168914794921875,
-0.0088653564453125,
0.01403045654296875,
-0.04705810546875,
-0.0011587142944335938,
-0.0555419921875,
0.012481689453125,
0.0091705322265625,
-0.0865478515625,
0.03790283203125,
0.050079345703125,
0.0298309326171875,
0.01560211181640625,
0.00165557861328125,
-0.0210723876953125,
0.0216522216796875,
-0.0186614990234375,
0.060089111328125,
-0.049652099609375,
-0.036529541015625,
0.0321044921875,
0.02569580078125,
0.0178680419921875,
-0.026092529296875,
0.0501708984375,
-0.03228759765625,
-0.007686614990234375,
-0.03338623046875,
-0.039794921875,
-0.0007767677307128906,
0.008636474609375,
-0.077880859375,
0.086181640625,
0.034820556640625,
-0.038848876953125,
0.0325927734375,
-0.072998046875,
-0.03277587890625,
0.03857421875,
-0.02044677734375,
-0.0193634033203125,
0.01433563232421875,
-0.0125274658203125,
0.01377105712890625,
-0.023406982421875,
0.02264404296875,
-0.048736572265625,
-0.0246734619140625,
0.01366424560546875,
0.00518035888671875,
0.052764892578125,
0.0162353515625,
0.01439666748046875,
-0.0093231201171875,
-0.0667724609375,
0.0063629150390625,
0.01236724853515625,
-0.010772705078125,
-0.01554107666015625,
-0.0191802978515625,
0.054290771484375,
-0.00601959228515625,
0.029754638671875,
-0.01080322265625,
0.042694091796875,
-0.023101806640625,
-0.016326904296875,
0.0401611328125,
-0.004913330078125,
0.029296875,
-0.0228729248046875,
0.0439453125,
-0.0250701904296875,
0.01494598388671875,
0.0010986328125,
-0.040435791015625,
-0.0408935546875,
0.0037021636962890625,
0.0240631103515625,
0.04498291015625,
-0.053497314453125,
0.031829833984375,
0.01032257080078125,
-0.061248779296875,
-0.0167388916015625,
0.0175933837890625,
0.0423583984375,
-0.0021305084228515625,
0.0300750732421875,
-0.034942626953125,
-0.0477294921875,
-0.05218505859375,
0.0187225341796875,
-0.024749755859375,
0.0021820068359375,
0.0272216796875,
0.050628662109375,
-0.02593994140625,
0.061859130859375,
-0.06634521484375,
-0.019439697265625,
-0.0057220458984375,
0.004932403564453125,
0.0232086181640625,
0.04913330078125,
0.0726318359375,
-0.04925537109375,
-0.0282745361328125,
-0.0233612060546875,
-0.040008544921875,
-0.0296478271484375,
0.01544952392578125,
-0.0240020751953125,
-0.001941680908203125,
0.018341064453125,
-0.0206451416015625,
0.060302734375,
0.0723876953125,
-0.037689208984375,
0.0077362060546875,
0.0014142990112304688,
0.00617218017578125,
-0.09295654296875,
0.0396728515625,
-0.0027179718017578125,
-0.00040984153747558594,
-0.033966064453125,
0.0011653900146484375,
0.019012451171875,
-0.00450897216796875,
-0.004932403564453125,
0.05682373046875,
-0.02264404296875,
-0.01180267333984375,
-0.019775390625,
-0.002216339111328125,
0.00453948974609375,
0.0222930908203125,
0.007358551025390625,
0.0655517578125,
0.0576171875,
-0.0218353271484375,
0.061859130859375,
0.041351318359375,
-0.0033817291259765625,
0.037628173828125,
-0.050628662109375,
0.01184844970703125,
-0.006710052490234375,
0.040130615234375,
-0.0697021484375,
-0.050537109375,
0.03515625,
-0.0384521484375,
0.0299224853515625,
-0.037017822265625,
-0.056365966796875,
-0.050628662109375,
-0.020599365234375,
0.063232421875,
0.03961181640625,
-0.048614501953125,
0.0110015869140625,
0.0526123046875,
-0.0016155242919921875,
-0.01195526123046875,
-0.08905029296875,
0.00807952880859375,
0.004093170166015625,
-0.018402099609375,
0.0526123046875,
-0.03729248046875,
-0.0031871795654296875,
-0.0173187255859375,
0.00980377197265625,
-0.0290985107421875,
-0.018310546875,
0.044525146484375,
0.0157470703125,
-0.0035400390625,
0.04669189453125,
0.0018415451049804688,
-0.05767822265625,
0.012725830078125,
-0.0252838134765625,
0.0310516357421875,
-0.00042128562927246094,
-0.01110076904296875,
-0.023529052734375,
0.02099609375,
0.0010347366333007812,
-0.009185791015625,
0.02105712890625,
0.07745361328125,
-0.04510498046875,
-0.0255279541015625,
-0.025238037109375,
-0.00716400146484375,
-0.0311126708984375,
0.0138702392578125,
0.0015726089477539062,
-0.0482177734375,
0.04510498046875,
-0.0054931640625,
-0.01233673095703125,
0.046844482421875,
0.070556640625,
0.01317596435546875,
0.033203125,
0.04498291015625,
-0.02044677734375,
0.018829345703125,
-0.01363372802734375,
-0.0229949951171875,
-0.02056884765625,
-0.0271759033203125,
-0.047515869140625,
-0.0169219970703125,
-0.04071044921875,
-0.0377197265625,
-0.01025390625,
-0.00482940673828125,
0.0051422119140625,
0.05352783203125,
-0.04486083984375,
0.0283203125,
0.0300750732421875,
-0.00902557373046875,
-0.00873565673828125,
0.00958251953125,
0.0167388916015625,
0.010711669921875,
-0.036895751953125,
-0.0213775634765625,
0.08001708984375,
0.0306396484375,
0.07611083984375,
0.031494140625,
0.037261962890625,
0.040313720703125,
0.022064208984375,
-0.022613525390625,
0.0191192626953125,
-0.0029735565185546875,
-0.06634521484375,
0.0162506103515625,
0.007061004638671875,
-0.056243896484375,
-0.04266357421875,
-0.0126190185546875,
-0.04058837890625,
0.01317596435546875,
0.028350830078125,
0.0010538101196289062,
0.00006276369094848633,
-0.048431396484375,
0.067626953125,
0.0108642578125,
-0.0174713134765625,
-0.020721435546875,
-0.048431396484375,
-0.0004265308380126953,
0.0199737548828125,
0.014251708984375,
-0.006435394287109375,
-0.01230621337890625,
0.0645751953125,
-0.0253143310546875,
0.088623046875,
-0.031646728515625,
-0.0262298583984375,
0.0274200439453125,
-0.0155792236328125,
0.02197265625,
0.0501708984375,
0.0030879974365234375,
0.01287078857421875,
0.014434814453125,
-0.033477783203125,
-0.03662109375,
0.04608154296875,
-0.044525146484375,
0.023468017578125,
-0.02862548828125,
-0.0268402099609375,
-0.007633209228515625,
0.0041656494140625,
0.018157958984375,
0.07000732421875,
-0.030792236328125,
0.0008668899536132812,
0.039520263671875,
0.0031604766845703125,
0.03802490234375,
0.0197296142578125,
-0.0305328369140625,
-0.040863037109375,
0.071044921875,
-0.00522613525390625,
-0.0120391845703125,
0.0269927978515625,
-0.0013685226440429688,
-0.00966644287109375,
-0.021881103515625,
-0.0494384765625,
0.00225067138671875,
-0.049652099609375,
-0.040771484375,
-0.01100921630859375,
-0.016021728515625,
-0.034698486328125,
-0.031280517578125,
-0.0187225341796875,
-0.044647216796875,
-0.0521240234375,
-0.036163330078125,
0.059661865234375,
0.04681396484375,
-0.0251922607421875,
0.03363037109375,
-0.05712890625,
0.0303955078125,
-0.00838470458984375,
0.06884765625,
-0.018646240234375,
-0.019012451171875,
-0.0396728515625,
-0.016265869140625,
0.01161956787109375,
-0.035888671875,
-0.002452850341796875,
-0.0006885528564453125,
0.032012939453125,
0.00818634033203125,
-0.011077880859375,
0.03753662109375,
-0.001689910888671875,
0.05584716796875,
0.0236663818359375,
-0.04998779296875,
0.036102294921875,
-0.0258026123046875,
0.0369873046875,
0.06439208984375,
0.0178985595703125,
-0.034576416015625,
-0.00669097900390625,
-0.05328369140625,
-0.049774169921875,
0.049530029296875,
0.0159912109375,
0.03118896484375,
0.0009832382202148438,
0.027435302734375,
0.01514434814453125,
0.0198974609375,
-0.0595703125,
-0.06353759765625,
-0.00506591796875,
-0.044219970703125,
0.0201873779296875,
-0.041656494140625,
-0.0204315185546875,
-0.0269927978515625,
0.043304443359375,
-0.0225372314453125,
0.041595458984375,
-0.0107574462890625,
-0.0013208389282226562,
-0.006877899169921875,
-0.00847625732421875,
0.04400634765625,
0.043487548828125,
-0.025054931640625,
-0.0002472400665283203,
-0.00653076171875,
-0.04913330078125,
-0.02850341796875,
0.030792236328125,
0.011077880859375,
-0.0167083740234375,
0.057281494140625,
0.0416259765625,
-0.01419830322265625,
-0.030364990234375,
0.043304443359375,
-0.01125335693359375,
-0.0345458984375,
-0.062164306640625,
0.0205078125,
0.0127105712890625,
0.008819580078125,
0.005535125732421875,
0.00270843505859375,
0.02337646484375,
-0.0247344970703125,
0.035919189453125,
-0.00652313232421875,
-0.054779052734375,
-0.032257080078125,
0.025177001953125,
0.037811279296875,
-0.0216522216796875,
0.03271484375,
-0.0195770263671875,
-0.0167388916015625,
0.0675048828125,
0.05560302734375,
0.04278564453125,
-0.0022125244140625,
0.029266357421875,
0.03582763671875,
0.0111541748046875,
0.02301025390625,
0.044281005859375,
-0.0262451171875,
-0.036773681640625,
-0.0010366439819335938,
-0.0283660888671875,
-0.007343292236328125,
-0.0301666259765625,
-0.06744384765625,
0.0212860107421875,
-0.053802490234375,
-0.019012451171875,
-0.005672454833984375,
0.0016002655029296875,
-0.06195068359375,
0.016204833984375,
0.0276947021484375,
0.098388671875,
-0.046630859375,
0.0657958984375,
0.043212890625,
-0.042816162109375,
-0.037445068359375,
-0.004726409912109375,
0.0249176025390625,
-0.07562255859375,
0.0195770263671875,
0.01311492919921875,
0.01221466064453125,
-0.0036411285400390625,
-0.05950927734375,
-0.05303955078125,
0.08349609375,
-0.0021800994873046875,
-0.04315185546875,
0.0238189697265625,
-0.0016021728515625,
0.04241943359375,
-0.0208740234375,
0.04107666015625,
0.03021240234375,
0.06842041015625,
0.00946807861328125,
-0.044921875,
-0.000492095947265625,
-0.055938720703125,
-0.0064239501953125,
0.0155029296875,
-0.04742431640625,
0.00389862060546875,
0.0082550048828125,
-0.0113067626953125,
0.0200347900390625,
0.043426513671875,
-0.0195770263671875,
0.03765869140625,
0.0078277587890625,
0.0345458984375,
0.059661865234375,
-0.019134521484375,
0.074462890625,
-0.01361083984375,
0.050018310546875,
0.0772705078125,
-0.0247802734375,
0.01409149169921875,
0.01477813720703125,
-0.00949859619140625,
0.0384521484375,
0.0233917236328125,
-0.05511474609375,
0.03045654296875,
0.042266845703125,
-0.02117919921875,
-0.004215240478515625,
-0.017730712890625,
-0.059356689453125,
0.024871826171875,
0.04144287109375,
-0.0384521484375,
-0.0011930465698242188,
-0.0095062255859375,
0.023956298828125,
0.005184173583984375,
-0.02392578125,
0.0662841796875,
-0.004238128662109375,
-0.0247039794921875,
0.0002741813659667969,
0.010986328125,
0.0211334228515625,
-0.056793212890625,
-0.0285491943359375,
-0.0008344650268554688,
0.0127410888671875,
-0.039520263671875,
-0.07611083984375,
0.0499267578125,
-0.0101470947265625,
-0.031158447265625,
-0.0006361007690429688,
0.059967041015625,
-0.03668212890625,
-0.0594482421875,
0.045135498046875,
0.0082855224609375,
-0.00039505958557128906,
0.034393310546875,
-0.07623291015625,
0.0250244140625,
-0.0100860595703125,
-0.0035495758056640625,
0.005218505859375,
-0.009124755859375,
0.01453399658203125,
0.025482177734375,
0.04522705078125,
-0.0161285400390625,
-0.042724609375,
0.049346923828125,
0.068359375,
-0.042694091796875,
-0.03057861328125,
-0.046630859375,
0.049346923828125,
-0.03155517578125,
-0.04705810546875,
0.0367431640625,
0.07220458984375,
0.055389404296875,
-0.024078369140625,
0.07513427734375,
-0.0307464599609375,
0.02081298828125,
-0.0377197265625,
0.04913330078125,
-0.025848388671875,
-0.019378662109375,
-0.0222320556640625,
-0.053131103515625,
-0.0687255859375,
0.03436279296875,
0.0208282470703125,
0.0070037841796875,
0.04913330078125,
0.0941162109375,
-0.005855560302734375,
0.01271820068359375,
-0.00022280216217041016,
0.00334930419921875,
0.0241546630859375,
0.02996826171875,
0.016448974609375,
-0.0279388427734375,
0.0251617431640625,
0.0095062255859375,
-0.043212890625,
-0.00878143310546875,
-0.06329345703125,
-0.07818603515625,
-0.051025390625,
-0.025421142578125,
-0.04681396484375,
0.0035457611083984375,
0.07830810546875,
0.064697265625,
-0.07086181640625,
-0.0185089111328125,
-0.0093231201171875,
-0.0042724609375,
0.006839752197265625,
-0.00928497314453125,
0.03924560546875,
0.00431060791015625,
-0.033447265625,
-0.006855010986328125,
0.019683837890625,
0.0040283203125,
-0.0017862319946289062,
-0.0036144256591796875,
0.01511383056640625,
0.0052337646484375,
0.015777587890625,
0.025421142578125,
-0.02008056640625,
-0.01861572265625,
-0.0419921875,
-0.0204620361328125,
-0.0019855499267578125,
0.0860595703125,
-0.0275726318359375,
0.025665283203125,
0.03289794921875,
0.040252685546875,
0.049224853515625,
-0.0014772415161132812,
0.037078857421875,
-0.060791015625,
0.0249786376953125,
-0.01357269287109375,
0.0224761962890625,
-0.005924224853515625,
-0.02825927734375,
0.06463623046875,
0.034942626953125,
-0.03350830078125,
-0.0125885009765625,
0.01169586181640625,
-0.10968017578125,
0.006557464599609375,
0.085205078125,
0.00876617431640625,
-0.021453857421875,
-0.01227569580078125,
-0.043060302734375,
0.0137786865234375,
-0.05609130859375,
0.012481689453125,
0.049835205078125,
0.037872314453125,
0.005847930908203125,
-0.0276947021484375,
0.05084228515625,
-0.0221710205078125,
-0.0914306640625,
0.02081298828125,
0.041351318359375,
-0.0017461776733398438,
0.01409912109375,
0.061187744140625,
-0.0218353271484375,
0.02777099609375,
0.029541015625,
0.042877197265625,
-0.01438140869140625,
-0.04254150390625,
-0.0033359527587890625,
0.003932952880859375,
-0.0119171142578125,
0.0002932548522949219
]
] |
Nan-Do/SPP_30K_reasoning_tasks | 2023-08-22T07:09:57.000Z | [
"task_categories:text-generation",
"task_categories:conversational",
"task_categories:text2text-generation",
"language:en",
"code",
"python",
"reasoning",
"region:us"
] | Nan-Do | null | null | 1 | 1,170 | 2023-08-21T02:34:43 | ---
dataset_info:
features:
- name: type
dtype: int64
- name: instruction
dtype: string
- name: input
dtype: string
- name: output
dtype: string
splits:
- name: train
num_bytes: 44253001
num_examples: 89898
download_size: 10073876
dataset_size: 44253001
task_categories:
- text-generation
- conversational
- text2text-generation
language:
- en
tags:
- code
- python
- reasoning
pretty_name: SPP python reasoning tasks
---
# Dataset Card for "SPP_30K_verified_tasks"
### Dataset Summary
This is an augmented version of the [Synthetic Python Problems(SPP) Dataset](https://huggingface.co/datasets/wuyetao/spp).
This dataset has been generated from the subset of the data has been de-duplicated and verified using a Python interpreter. (SPP_30k_verified.jsonl).
The original dataset contains small Python functions that include a docstring with a small description of what the function does and some calling examples
for the function.
The current dataset includes three different tasks:
- Type 1: give the code as input and ask the model to generate some example calls along the expected return value
- Type 2: give the description and the example calling calls and ask the model to write the function.
- Type 3: give the the function and the example calls without the expected value as input and ask the model to write what the function should return.
For example:
```python
def lowest_prime_factor(n):
""" Find the smallest prime factor of a given number.
Examples:
>>> lowest_prime_factor(12)
2
>>> lowest_prime_factor(14)
2
>>> lowest_prime_factor(8)
2
"""
smallest = 2
while(n % smallest!= 0):
smallest+=1
return smallest
```
First task:
```
INSTRUCTION:
Execute the following function with several example calls, showing the values returned in each case.
INPUT:
def lowest_prime_factor(n):
smallest = 2
while(n % smallest!= 0):
smallest+=1
return smallest
OUTPUT:
Sure, here you have several example calls along the return values they will generate.
"""
>>> lowest_prime_factor(12)
2
>>> lowest_prime_factor(14)
2
>>> lowest_prime_factor(8)
2
"""
```
Second task:
```
INSTRUCTION:
Follow the task given and refer to the provided calling examples as you create the function's body.
INPUT:
Find the smallest prime factor of a given number.
Examples:
>>> lowest_prime_factor(12)
2
>>> lowest_prime_factor(14)
2
>>> lowest_prime_factor(8)
2
OUTPUT:
Of course, here's a function implementation based on the provided calling examples and task.
""" python
def lowest_prime_factor(n):
smallest = 2
while(n % smallest!= 0):
smallest+=1
return smallest
"""
```
Third task:
```
INSTRUCTION:
Examine the given function and the accompanying instance function calls, and outline the specific output generated by each call.
INPUT:
def lowest_prime_factor(n):
smallest = 2
while(n % smallest!= 0):
smallest+=1
return smallest
Function calls:
>>> lowest_prime_factor(12)
>>> lowest_prime_factor(14)
>>> lowest_prime_factor(8)
OUTPUT:
Sure thing, here you have the specific output generated by each function call.
>>> lowest_prime_factor(12)
2
>>> lowest_prime_factor(14)
2
>>> lowest_prime_factor(8)
2
```
### Languages
The dataset is in English.
### Data Splits
There are no splits (Only training).
## Dataset Creation
August of 2023
### Curation Rationale
This dataset was created to improve the Python 3 reasoning/understanding capabilities of LLMs.
### Source Data
The source dataset can be found at [Synthetic Python Problems(SPP) Dataset](https://huggingface.co/datasets/wuyetao/spp).
### Annotations
The dataset includes an instruction, input, output and type columns.
The type colum indicates the type of task (from 1 to 3).
#### Annotation process
The responses were generated parsing the docstrings of the functions. | 3,906 | [
[
-0.0240325927734375,
-0.04962158203125,
0.0256195068359375,
0.021820068359375,
-0.0005097389221191406,
-0.0222625732421875,
-0.0118255615234375,
-0.001361846923828125,
-0.0128631591796875,
0.0400390625,
-0.07000732421875,
-0.022796630859375,
-0.024871826171875,
0.046112060546875,
-0.00937652587890625,
0.05987548828125,
0.0021533966064453125,
-0.0007410049438476562,
-0.006061553955078125,
0.016571044921875,
-0.0008687973022460938,
-0.03363037109375,
-0.050689697265625,
-0.05035400390625,
-0.004619598388671875,
0.048126220703125,
0.0262603759765625,
0.03692626953125,
0.04681396484375,
0.03173828125,
0.0006127357482910156,
0.0306549072265625,
-0.0445556640625,
-0.042510986328125,
0.007236480712890625,
-0.04913330078125,
-0.031463623046875,
0.01314544677734375,
0.032501220703125,
0.052337646484375,
0.018768310546875,
0.040283203125,
0.015106201171875,
0.056610107421875,
-0.02130126953125,
0.046142578125,
-0.0144195556640625,
0.001804351806640625,
-0.0159149169921875,
-0.0281524658203125,
-0.0313720703125,
0.0012598037719726562,
-0.0174407958984375,
-0.055206298828125,
0.03814697265625,
0.0029964447021484375,
0.0511474609375,
0.0273895263671875,
-0.0252227783203125,
-0.02484130859375,
-0.0430908203125,
0.07080078125,
-0.06292724609375,
-0.026641845703125,
0.0438232421875,
-0.00716400146484375,
-0.0268707275390625,
-0.03900146484375,
-0.0654296875,
-0.0194854736328125,
-0.017822265625,
0.0076751708984375,
-0.0035305023193359375,
0.0033359527587890625,
0.06011962890625,
0.055084228515625,
-0.0400390625,
-0.0166168212890625,
-0.0528564453125,
-0.0196533203125,
0.06915283203125,
0.04364013671875,
0.0013141632080078125,
-0.046875,
-0.0038280487060546875,
-0.0201263427734375,
-0.05963134765625,
0.0190277099609375,
0.036651611328125,
0.037506103515625,
-0.0257415771484375,
0.0968017578125,
-0.03717041015625,
0.049896240234375,
0.0207366943359375,
-0.035064697265625,
0.0306549072265625,
-0.0443115234375,
-0.023406982421875,
-0.0250091552734375,
0.03875732421875,
0.038787841796875,
0.007190704345703125,
0.037750244140625,
-0.0244598388671875,
-0.0017290115356445312,
-0.0118865966796875,
-0.059478759765625,
-0.040740966796875,
0.029052734375,
-0.0416259765625,
-0.041107177734375,
-0.0087738037109375,
-0.0491943359375,
-0.0306549072265625,
-0.03656005859375,
0.039337158203125,
-0.039154052734375,
-0.00531768798828125,
0.004669189453125,
-0.006870269775390625,
0.00594329833984375,
0.01071929931640625,
-0.056396484375,
0.044677734375,
0.06158447265625,
0.0540771484375,
-0.0032711029052734375,
-0.007160186767578125,
-0.0496826171875,
-0.015838623046875,
-0.01517486572265625,
0.03265380859375,
-0.0259857177734375,
-0.02410888671875,
-0.0172576904296875,
0.021484375,
-0.007587432861328125,
-0.05072021484375,
0.027130126953125,
0.00007194280624389648,
0.01096343994140625,
-0.0262603759765625,
-0.04290771484375,
-0.02001953125,
0.0009131431579589844,
-0.04766845703125,
0.09576416015625,
0.0313720703125,
-0.040313720703125,
0.00243377685546875,
-0.066162109375,
-0.0292816162109375,
0.023040771484375,
0.004772186279296875,
-0.03607177734375,
0.007450103759765625,
0.0165557861328125,
0.036834716796875,
-0.0234222412109375,
-0.01523590087890625,
-0.024810791015625,
-0.0340576171875,
0.02410888671875,
-0.0224456787109375,
0.0762939453125,
0.012298583984375,
-0.037933349609375,
0.0046234130859375,
-0.06884765625,
0.0018405914306640625,
0.0193023681640625,
-0.031829833984375,
0.0121002197265625,
-0.008514404296875,
-0.003631591796875,
-0.002559661865234375,
0.031005859375,
-0.04315185546875,
0.0214691162109375,
-0.033782958984375,
0.053253173828125,
0.04754638671875,
0.028656005859375,
0.03228759765625,
-0.04937744140625,
0.0181121826171875,
-0.0007772445678710938,
0.0011091232299804688,
0.005779266357421875,
-0.055206298828125,
-0.07476806640625,
-0.010223388671875,
0.00592041015625,
0.0546875,
-0.0645751953125,
0.047698974609375,
0.0035762786865234375,
-0.03955078125,
-0.015594482421875,
0.01107025146484375,
0.01629638671875,
0.0416259765625,
0.025848388671875,
0.015716552734375,
-0.05078125,
-0.06927490234375,
0.023590087890625,
-0.0244598388671875,
-0.003108978271484375,
0.013946533203125,
0.06439208984375,
-0.01049041748046875,
0.048431396484375,
-0.047607421875,
-0.0261993408203125,
-0.03387451171875,
0.019195556640625,
0.061126708984375,
0.059783935546875,
0.0211334228515625,
-0.05230712890625,
-0.012603759765625,
-0.016448974609375,
-0.0231170654296875,
-0.01358795166015625,
-0.0261993408203125,
-0.007598876953125,
0.015777587890625,
0.0008068084716796875,
-0.050018310546875,
0.03582763671875,
0.008819580078125,
-0.0193939208984375,
0.06396484375,
-0.014068603515625,
0.01338958740234375,
-0.0697021484375,
0.02117919921875,
0.00644683837890625,
0.003692626953125,
-0.04876708984375,
0.00421142578125,
-0.007282257080078125,
-0.021270751953125,
-0.029327392578125,
0.0347900390625,
-0.00859832763671875,
-0.007480621337890625,
-0.005023956298828125,
-0.019073486328125,
-0.007762908935546875,
0.053558349609375,
-0.01171112060546875,
0.065673828125,
0.02789306640625,
-0.044403076171875,
0.0430908203125,
0.013214111328125,
-0.0083770751953125,
0.0144500732421875,
-0.05267333984375,
-0.0004107952117919922,
0.00634765625,
-0.0100250244140625,
-0.09161376953125,
-0.0263519287109375,
0.046142578125,
-0.0328369140625,
-0.00847625732421875,
-0.0245513916015625,
-0.0609130859375,
-0.050994873046875,
-0.028289794921875,
0.01433563232421875,
0.042205810546875,
-0.0222930908203125,
0.0310516357421875,
0.0156402587890625,
-0.01953125,
-0.0309906005859375,
-0.051239013671875,
-0.037750244140625,
-0.0220794677734375,
-0.03863525390625,
0.03277587890625,
-0.0180206298828125,
-0.0173797607421875,
-0.0003941059112548828,
-0.00507354736328125,
-0.004734039306640625,
-0.007480621337890625,
0.0220794677734375,
0.04132080078125,
-0.0016078948974609375,
-0.0110015869140625,
-0.01139068603515625,
-0.021026611328125,
0.01220703125,
0.0009150505065917969,
0.0494384765625,
-0.04302978515625,
-0.0185394287109375,
-0.0242919921875,
0.0253143310546875,
0.018096923828125,
-0.00269317626953125,
0.00913238525390625,
0.050140380859375,
-0.05908203125,
-0.0189971923828125,
-0.0126495361328125,
-0.0221710205078125,
-0.042724609375,
0.0221099853515625,
-0.049102783203125,
-0.040313720703125,
0.042022705078125,
0.0121917724609375,
0.0126800537109375,
0.061737060546875,
0.06396484375,
-0.0035076141357421875,
0.06719970703125,
0.03021240234375,
0.0218963623046875,
0.0027866363525390625,
-0.06329345703125,
0.0191497802734375,
-0.047119140625,
-0.012237548828125,
-0.0250244140625,
-0.01422882080078125,
-0.048370361328125,
-0.048004150390625,
0.0225830078125,
0.029937744140625,
-0.028289794921875,
0.036529541015625,
-0.046173095703125,
0.034393310546875,
0.06158447265625,
0.0103302001953125,
0.0026836395263671875,
0.0125579833984375,
-0.01214599609375,
-0.0035533905029296875,
-0.049346923828125,
-0.035797119140625,
0.094970703125,
0.003101348876953125,
0.045562744140625,
-0.006671905517578125,
0.076904296875,
0.03582763671875,
0.038299560546875,
-0.070068359375,
0.058929443359375,
-0.0257415771484375,
-0.0267791748046875,
-0.026031494140625,
-0.0452880859375,
-0.054473876953125,
0.01548004150390625,
-0.002277374267578125,
-0.0543212890625,
0.00794219970703125,
0.01513671875,
-0.052581787109375,
0.0024509429931640625,
-0.052581787109375,
0.05615234375,
-0.0010499954223632812,
-0.039398193359375,
-0.014373779296875,
-0.02099609375,
0.03717041015625,
0.017791748046875,
0.00394439697265625,
-0.0187225341796875,
0.00666046142578125,
0.06793212890625,
-0.046478271484375,
0.07354736328125,
-0.005001068115234375,
0.0176544189453125,
0.0399169921875,
0.0017251968383789062,
0.03411865234375,
0.022430419921875,
-0.01268768310546875,
-0.021453857421875,
0.018768310546875,
-0.030364990234375,
-0.0152740478515625,
0.04730224609375,
-0.06195068359375,
-0.043304443359375,
-0.04022216796875,
-0.043609619140625,
0.01331329345703125,
0.034698486328125,
0.0310821533203125,
0.051513671875,
0.0223388671875,
0.00627899169921875,
0.01285552978515625,
-0.00591278076171875,
0.043426513671875,
0.034576416015625,
-0.0023250579833984375,
-0.042327880859375,
0.0789794921875,
0.003978729248046875,
-0.004009246826171875,
0.031646728515625,
0.0171966552734375,
-0.0284271240234375,
-0.01198577880859375,
-0.023468017578125,
0.02801513671875,
-0.050048828125,
-0.030914306640625,
-0.005825042724609375,
-0.01464080810546875,
-0.02935791015625,
-0.004405975341796875,
-0.0228118896484375,
-0.053558349609375,
-0.031768798828125,
-0.0002751350402832031,
0.0157318115234375,
0.04840087890625,
-0.037994384765625,
0.010650634765625,
-0.044342041015625,
0.041259765625,
0.01354217529296875,
-0.0114898681640625,
-0.014678955078125,
-0.017425537109375,
0.00016582012176513672,
0.01261138916015625,
-0.039703369140625,
-0.064453125,
0.041534423828125,
0.01727294921875,
0.037078857421875,
0.0253753662109375,
0.0257415771484375,
0.04437255859375,
-0.020904541015625,
0.0665283203125,
-0.0012073516845703125,
-0.0777587890625,
0.0287017822265625,
0.00015461444854736328,
0.0010528564453125,
0.0186614990234375,
0.01904296875,
-0.01470184326171875,
-0.0039043426513671875,
-0.06414794921875,
-0.045623779296875,
0.061767578125,
0.05328369140625,
-0.022186279296875,
-0.0068359375,
0.01837158203125,
-0.002197265625,
0.006885528564453125,
-0.052337646484375,
-0.039825439453125,
-0.0017309188842773438,
-0.0160980224609375,
-0.012237548828125,
-0.0022335052490234375,
-0.046295166015625,
-0.03399658203125,
0.05364990234375,
-0.029327392578125,
0.060546875,
0.01543426513671875,
-0.0024280548095703125,
-0.0144500732421875,
0.011962890625,
0.05322265625,
0.05078125,
-0.0301055908203125,
0.0188446044921875,
0.01019287109375,
-0.022247314453125,
0.006313323974609375,
0.031463623046875,
-0.00862884521484375,
-0.0225372314453125,
0.0313720703125,
0.033355712890625,
-0.01265716552734375,
-0.04241943359375,
0.0272979736328125,
0.023956298828125,
-0.0232086181640625,
-0.051300048828125,
0.012054443359375,
0.0007519721984863281,
0.0119171142578125,
0.04998779296875,
0.02410888671875,
0.0212860107421875,
-0.0233612060546875,
0.03570556640625,
0.00878143310546875,
0.01465606689453125,
-0.030059814453125,
0.03753662109375,
0.017730712890625,
-0.0243682861328125,
0.055908203125,
-0.044036865234375,
-0.04742431640625,
0.08154296875,
0.037353515625,
0.034454345703125,
0.0242462158203125,
0.03936767578125,
0.0509033203125,
0.036834716796875,
-0.0006213188171386719,
0.061920166015625,
-0.005962371826171875,
-0.054595947265625,
-0.044158935546875,
-0.035308837890625,
-0.031585693359375,
0.038116455078125,
-0.058197021484375,
0.00196075439453125,
-0.031646728515625,
-0.0167999267578125,
0.005008697509765625,
0.053009033203125,
-0.0631103515625,
0.01023101806640625,
0.01421356201171875,
0.053985595703125,
-0.0797119140625,
0.038116455078125,
0.048492431640625,
-0.0234375,
-0.04779052734375,
-0.031646728515625,
0.0191650390625,
-0.0699462890625,
0.051483154296875,
0.030059814453125,
0.0184173583984375,
-0.0056610107421875,
-0.0445556640625,
-0.06182861328125,
0.0767822265625,
0.0027713775634765625,
-0.0111846923828125,
0.018157958984375,
0.04791259765625,
0.042266845703125,
-0.037750244140625,
0.007259368896484375,
0.040740966796875,
0.045013427734375,
-0.01165008544921875,
-0.03594970703125,
0.027130126953125,
-0.052459716796875,
-0.00402069091796875,
-0.01490020751953125,
-0.034942626953125,
0.0841064453125,
-0.035430908203125,
-0.00986480712890625,
0.0281524658203125,
0.04351806640625,
0.05157470703125,
0.021759033203125,
0.033660888671875,
0.035003662109375,
0.050628662109375,
-0.03070068359375,
0.084716796875,
-0.0310821533203125,
0.045806884765625,
0.060302734375,
0.00043845176696777344,
0.058807373046875,
0.03955078125,
-0.043212890625,
0.00011903047561645508,
0.062255859375,
-0.037200927734375,
0.03436279296875,
0.03594970703125,
-0.0025634765625,
-0.02471923828125,
0.009429931640625,
-0.0128631591796875,
0.0066986083984375,
0.037322998046875,
-0.0138397216796875,
-0.01267242431640625,
-0.012359619140625,
-0.0182952880859375,
-0.02935791015625,
-0.028167724609375,
0.0197601318359375,
0.002162933349609375,
-0.048065185546875,
0.0634765625,
0.01522064208984375,
0.03680419921875,
-0.0212860107421875,
-0.036529541015625,
-0.01303863525390625,
0.04180908203125,
-0.0301055908203125,
-0.07366943359375,
0.01403045654296875,
-0.021026611328125,
-0.0201873779296875,
-0.006267547607421875,
0.054443359375,
-0.024566650390625,
-0.06451416015625,
-0.01526641845703125,
0.02099609375,
0.0107879638671875,
0.01110076904296875,
-0.061737060546875,
0.0014743804931640625,
0.0232391357421875,
-0.0281524658203125,
-0.0016460418701171875,
0.0117034912109375,
0.0240325927734375,
0.0516357421875,
0.06585693359375,
0.0005259513854980469,
0.019439697265625,
-0.0147857666015625,
0.052947998046875,
-0.02520751953125,
-0.0239715576171875,
-0.0400390625,
0.048828125,
-0.0201416015625,
-0.05877685546875,
0.04022216796875,
0.054534912109375,
0.06854248046875,
-0.037353515625,
0.05682373046875,
-0.04107666015625,
0.0250091552734375,
-0.0257568359375,
0.01006317138671875,
-0.0266876220703125,
0.019927978515625,
0.007122039794921875,
-0.060028076171875,
-0.0007963180541992188,
0.0662841796875,
-0.02734375,
-0.01154327392578125,
0.05096435546875,
0.079833984375,
0.006809234619140625,
0.0111846923828125,
-0.0007009506225585938,
0.00350189208984375,
0.02294921875,
0.0555419921875,
0.042236328125,
-0.042236328125,
0.036224365234375,
-0.0926513671875,
-0.0273895263671875,
-0.01241302490234375,
-0.041961669921875,
-0.06219482421875,
-0.054595947265625,
-0.020599365234375,
-0.034271240234375,
-0.0250701904296875,
0.06573486328125,
0.055206298828125,
-0.078369140625,
-0.034881591796875,
-0.01776123046875,
0.0018701553344726562,
-0.055908203125,
-0.0309600830078125,
0.03411865234375,
-0.01552581787109375,
-0.07421875,
0.03326416015625,
0.0027256011962890625,
0.0012788772583007812,
0.0037937164306640625,
-0.01320648193359375,
0.003902435302734375,
-0.00907135009765625,
0.040374755859375,
0.0311737060546875,
-0.04541015625,
-0.0243377685546875,
0.00748443603515625,
-0.00441741943359375,
-0.00986480712890625,
0.06011962890625,
-0.0193023681640625,
0.004772186279296875,
0.054840087890625,
0.03668212890625,
0.056304931640625,
0.007740020751953125,
0.04302978515625,
-0.054962158203125,
0.0005016326904296875,
0.016998291015625,
0.042694091796875,
0.018402099609375,
-0.03948974609375,
0.06011962890625,
0.042510986328125,
-0.039398193359375,
-0.06365966796875,
0.01427459716796875,
-0.0863037109375,
0.0022068023681640625,
0.0948486328125,
-0.01617431640625,
-0.0218963623046875,
0.0007548332214355469,
-0.01751708984375,
0.01251220703125,
-0.032470703125,
0.036529541015625,
0.037445068359375,
-0.05804443359375,
-0.00914764404296875,
-0.0176239013671875,
0.045013427734375,
0.03631591796875,
-0.05035400390625,
0.002277374267578125,
0.0198822021484375,
0.0250701904296875,
0.0310516357421875,
0.038299560546875,
-0.0009241104125976562,
0.0156097412109375,
0.02130126953125,
-0.0183258056640625,
-0.035980224609375,
-0.0014362335205078125,
-0.0022830963134765625,
0.0213470458984375,
-0.0269622802734375,
-0.01605224609375
]
] |
spider | 2022-11-03T16:31:49.000Z | [
"task_categories:text2text-generation",
"annotations_creators:expert-generated",
"language_creators:expert-generated",
"language_creators:machine-generated",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:en",
"license:cc-by-4.0",
"text-to-sql",
"region:us"
] | null | Spider is a large-scale complex and cross-domain semantic parsing and text-toSQL dataset annotated by 11 college students | @article{yu2018spider,
title={Spider: A large-scale human-labeled dataset for complex and cross-domain semantic parsing and text-to-sql task},
author={Yu, Tao and Zhang, Rui and Yang, Kai and Yasunaga, Michihiro and Wang, Dongxu and Li, Zifan and Ma, James and Li, Irene and Yao, Qingning and Roman, Shanelle and others},
journal={arXiv preprint arXiv:1809.08887},
year={2018}
} | 57 | 1,168 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- expert-generated
- machine-generated
language:
- en
license:
- cc-by-4.0
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- text2text-generation
task_ids: []
paperswithcode_id: spider-1
pretty_name: Spider
tags:
- text-to-sql
dataset_info:
features:
- name: db_id
dtype: string
- name: query
dtype: string
- name: question
dtype: string
- name: query_toks
sequence: string
- name: query_toks_no_value
sequence: string
- name: question_toks
sequence: string
config_name: spider
splits:
- name: train
num_bytes: 4743786
num_examples: 7000
- name: validation
num_bytes: 682090
num_examples: 1034
download_size: 99736136
dataset_size: 5425876
---
# Dataset Card for Spider
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://yale-lily.github.io/spider
- **Repository:** https://github.com/taoyds/spider
- **Paper:** https://www.aclweb.org/anthology/D18-1425/
- **Point of Contact:** [Yale LILY](https://yale-lily.github.io/)
### Dataset Summary
Spider is a large-scale complex and cross-domain semantic parsing and text-to-SQL dataset annotated by 11 Yale students
The goal of the Spider challenge is to develop natural language interfaces to cross-domain databases
### Supported Tasks and Leaderboards
The leaderboard can be seen at https://yale-lily.github.io/spider
### Languages
The text in the dataset is in English.
## Dataset Structure
### Data Instances
**What do the instances that comprise the dataset represent?**
Each instance is natural language question and the equivalent SQL query
**How many instances are there in total?**
**What data does each instance consist of?**
[More Information Needed]
### Data Fields
* **db_id**: Database name
* **question**: Natural language to interpret into SQL
* **query**: Target SQL query
* **query_toks**: List of tokens for the query
* **query_toks_no_value**: List of tokens for the query
* **question_toks**: List of tokens for the question
### Data Splits
**train**: 7000 questions and SQL query pairs
**dev**: 1034 question and SQL query pairs
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
#### Who are the source language producers?
[More Information Needed]
### Annotations
The dataset was annotated by 11 college students at Yale University
#### Annotation process
#### Who are the annotators?
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
## Additional Information
The listed authors in the homepage are maintaining/supporting the dataset.
### Dataset Curators
[More Information Needed]
### Licensing Information
The spider dataset is licensed under
the [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/legalcode)
[More Information Needed]
### Citation Information
```
@article{yu2018spider,
title={Spider: A large-scale human-labeled dataset for complex and cross-domain semantic parsing and text-to-sql task},
author={Yu, Tao and Zhang, Rui and Yang, Kai and Yasunaga, Michihiro and Wang, Dongxu and Li, Zifan and Ma, James and Li, Irene and Yao, Qingning and Roman, Shanelle and others},
journal={arXiv preprint arXiv:1809.08887},
year={2018}
}
```
### Contributions
Thanks to [@olinguyen](https://github.com/olinguyen) for adding this dataset. | 4,687 | [
[
-0.0250244140625,
-0.0380859375,
0.0158843994140625,
0.0057220458984375,
-0.0179901123046875,
0.0235595703125,
-0.00738525390625,
-0.036163330078125,
0.05377197265625,
0.0302886962890625,
-0.0484619140625,
-0.058319091796875,
-0.045013427734375,
0.04010009765625,
-0.0218658447265625,
0.07598876953125,
0.01059722900390625,
-0.0026721954345703125,
0.0026302337646484375,
-0.0088348388671875,
-0.00852203369140625,
-0.033721923828125,
-0.0249481201171875,
0.00841522216796875,
0.048919677734375,
0.042877197265625,
0.05029296875,
0.07318115234375,
0.036651611328125,
0.0195770263671875,
-0.016632080078125,
0.0185546875,
-0.02130126953125,
-0.015472412109375,
-0.039703369140625,
-0.03173828125,
-0.039703369140625,
0.0083465576171875,
0.0537109375,
0.0792236328125,
0.0135498046875,
0.039825439453125,
0.01068878173828125,
0.05535888671875,
-0.054901123046875,
0.022674560546875,
-0.037628173828125,
-0.00901031494140625,
-0.04254150390625,
-0.019378662109375,
-0.0301055908203125,
-0.016693115234375,
-0.004131317138671875,
-0.050628662109375,
0.0190887451171875,
0.01038360595703125,
0.0760498046875,
0.01454925537109375,
-0.045166015625,
-0.0161285400390625,
-0.0230560302734375,
0.041168212890625,
-0.041748046875,
0.003604888916015625,
0.0390625,
0.020263671875,
-0.0302276611328125,
-0.05377197265625,
-0.05657958984375,
0.01043701171875,
-0.004581451416015625,
0.0084381103515625,
-0.0124359130859375,
-0.0218963623046875,
0.0198974609375,
0.0213775634765625,
-0.052581787109375,
-0.00759124755859375,
-0.0377197265625,
-0.0079193115234375,
0.0560302734375,
0.025299072265625,
0.025543212890625,
-0.033203125,
-0.0210723876953125,
-0.0267791748046875,
-0.02508544921875,
0.01015472412109375,
0.0394287109375,
0.0531005859375,
-0.036865234375,
0.065185546875,
-0.0271453857421875,
0.041229248046875,
0.0006656646728515625,
-0.001888275146484375,
0.04083251953125,
-0.038665771484375,
0.01251220703125,
-0.0012445449829101562,
0.049652099609375,
0.030609130859375,
0.022369384765625,
-0.01137542724609375,
0.0161895751953125,
0.0013093948364257812,
0.01160430908203125,
-0.033538818359375,
-0.01763916015625,
0.044921875,
-0.033477783203125,
-0.012939453125,
0.0144805908203125,
-0.08929443359375,
-0.046478271484375,
-0.01056671142578125,
0.010772705078125,
-0.006565093994140625,
-0.0275421142578125,
0.006443023681640625,
-0.036346435546875,
0.02740478515625,
-0.00580596923828125,
-0.04010009765625,
0.0361328125,
0.0380859375,
0.0489501953125,
-0.0159912109375,
-0.03863525390625,
-0.0206298828125,
0.034393310546875,
-0.0141143798828125,
0.056396484375,
-0.032196044921875,
-0.00846099853515625,
-0.000476837158203125,
0.041229248046875,
-0.01528167724609375,
-0.0195770263671875,
0.048828125,
-0.01861572265625,
0.0206451416015625,
-0.02655029296875,
-0.03289794921875,
-0.01071929931640625,
0.0203094482421875,
-0.07452392578125,
0.0694580078125,
0.01528167724609375,
-0.07421875,
0.033966064453125,
-0.059783935546875,
-0.0352783203125,
0.014801025390625,
0.00856781005859375,
-0.0244140625,
-0.0276336669921875,
-0.0028057098388671875,
0.0294952392578125,
-0.03936767578125,
0.0074920654296875,
-0.0330810546875,
-0.00508880615234375,
0.0118408203125,
0.01128387451171875,
0.093994140625,
0.012298583984375,
-0.04119873046875,
0.00737762451171875,
-0.0833740234375,
-0.0014829635620117188,
0.0455322265625,
-0.0145721435546875,
-0.01219940185546875,
0.0081024169921875,
0.01085662841796875,
0.0003914833068847656,
0.03240966796875,
-0.036712646484375,
0.0206146240234375,
-0.0283050537109375,
0.025390625,
0.0504150390625,
-0.00530242919921875,
0.02886962890625,
-0.0174713134765625,
0.03326416015625,
-0.00313568115234375,
0.0225677490234375,
0.00925445556640625,
-0.040679931640625,
-0.07244873046875,
-0.0123443603515625,
0.0292205810546875,
0.054412841796875,
-0.046905517578125,
0.05828857421875,
-0.04345703125,
-0.056396484375,
-0.033935546875,
-0.00508880615234375,
0.02716064453125,
0.0222320556640625,
0.037384033203125,
-0.0235137939453125,
-0.0560302734375,
-0.06640625,
-0.01194000244140625,
-0.00978851318359375,
0.0150146484375,
0.0307769775390625,
0.07000732421875,
-0.010894775390625,
0.072998046875,
-0.062255859375,
-0.0197906494140625,
-0.03375244140625,
-0.0029659271240234375,
0.0197906494140625,
0.04071044921875,
0.0240631103515625,
-0.0726318359375,
-0.0322265625,
-0.0216064453125,
-0.04254150390625,
-0.0027942657470703125,
0.00634765625,
-0.01151275634765625,
0.039886474609375,
-0.0063018798828125,
-0.041259765625,
0.0469970703125,
0.042266845703125,
-0.06298828125,
0.0484619140625,
0.0062103271484375,
0.01186370849609375,
-0.10064697265625,
0.0303192138671875,
-0.0004100799560546875,
-0.0022487640380859375,
-0.03253173828125,
0.0017690658569335938,
-0.00785064697265625,
-0.007671356201171875,
-0.0250701904296875,
0.04693603515625,
-0.037841796875,
-0.005802154541015625,
0.00408935546875,
0.01190948486328125,
0.006130218505859375,
0.041717529296875,
-0.005218505859375,
0.055877685546875,
0.046295166015625,
-0.04852294921875,
0.0240020751953125,
0.0236968994140625,
-0.00494384765625,
0.0259552001953125,
-0.05560302734375,
0.0028533935546875,
0.002750396728515625,
0.0309906005859375,
-0.07196044921875,
-0.037933349609375,
0.04510498046875,
-0.05999755859375,
-0.0016222000122070312,
-0.0151214599609375,
-0.06805419921875,
-0.033599853515625,
-0.036041259765625,
0.0086517333984375,
0.0107574462890625,
-0.025054931640625,
0.03851318359375,
0.056640625,
0.0161895751953125,
-0.0316162109375,
-0.048919677734375,
0.0218963623046875,
-0.018524169921875,
-0.0433349609375,
0.0220794677734375,
-0.0107421875,
-0.008941650390625,
0.0014696121215820312,
0.01611328125,
-0.02197265625,
0.0018701553344726562,
0.007137298583984375,
0.01140594482421875,
0.0148162841796875,
0.0015745162963867188,
-0.0274810791015625,
-0.02130126953125,
-0.00672149658203125,
-0.010009765625,
0.05401611328125,
0.005077362060546875,
-0.019500732421875,
-0.0245208740234375,
0.03680419921875,
0.01220703125,
-0.01421356201171875,
0.06256103515625,
0.048248291015625,
-0.0238800048828125,
-0.004337310791015625,
-0.0243377685546875,
-0.00954437255859375,
-0.0293121337890625,
0.01331329345703125,
-0.0294342041015625,
-0.045166015625,
0.050689697265625,
0.005077362060546875,
-0.00791168212890625,
0.058197021484375,
0.025390625,
-0.0027751922607421875,
0.07342529296875,
0.047393798828125,
-0.00917816162109375,
0.01244354248046875,
-0.043487548828125,
0.001255035400390625,
-0.059844970703125,
-0.020721435546875,
-0.07940673828125,
-0.01032257080078125,
-0.07208251953125,
-0.0295562744140625,
-0.0007791519165039062,
0.00023674964904785156,
-0.03460693359375,
0.052154541015625,
-0.058135986328125,
0.022003173828125,
0.048309326171875,
0.01151275634765625,
0.00028061866760253906,
-0.01043701171875,
0.003322601318359375,
0.0084991455078125,
-0.043243408203125,
-0.04400634765625,
0.07403564453125,
0.0097808837890625,
0.0214080810546875,
0.0254974365234375,
0.036346435546875,
0.0261077880859375,
-0.039703369140625,
-0.03021240234375,
0.0609130859375,
-0.0186309814453125,
-0.064697265625,
-0.0269012451171875,
-0.027130126953125,
-0.10479736328125,
-0.00237274169921875,
-0.00788116455078125,
-0.07318115234375,
0.033782958984375,
0.0001481771469116211,
0.0175018310546875,
0.0221710205078125,
-0.05499267578125,
0.06585693359375,
-0.0017175674438476562,
-0.031341552734375,
-0.005550384521484375,
-0.0782470703125,
0.00146484375,
0.0152130126953125,
0.02166748046875,
-0.0082244873046875,
-0.02471923828125,
0.0693359375,
-0.03619384765625,
0.08258056640625,
-0.011138916015625,
0.01491546630859375,
0.0224456787109375,
-0.00893402099609375,
0.05010986328125,
-0.016693115234375,
-0.01070404052734375,
0.0176544189453125,
-0.0016927719116210938,
-0.0462646484375,
-0.0193023681640625,
0.0230865478515625,
-0.046417236328125,
-0.0292816162109375,
-0.057403564453125,
-0.02685546875,
0.0021572113037109375,
0.02801513671875,
0.00949859619140625,
0.0178680419921875,
0.0236968994140625,
0.0269317626953125,
0.0301971435546875,
-0.02008056640625,
0.0226593017578125,
0.03631591796875,
0.00659942626953125,
-0.046295166015625,
0.06500244140625,
0.0283050537109375,
0.00927734375,
0.024627685546875,
0.01123046875,
-0.0257110595703125,
-0.0235595703125,
-0.037933349609375,
0.0168304443359375,
-0.051239013671875,
-0.00911712646484375,
-0.049468994140625,
0.0007653236389160156,
-0.057830810546875,
0.003662109375,
-0.0083465576171875,
-0.0400390625,
-0.0260162353515625,
0.00266265869140625,
0.04473876953125,
0.0277099609375,
-0.0087890625,
0.00925445556640625,
-0.039642333984375,
0.030517578125,
-0.0108795166015625,
0.038177490234375,
-0.0012607574462890625,
-0.018585205078125,
-0.0220489501953125,
0.01078033447265625,
-0.0142974853515625,
-0.08270263671875,
0.025177001953125,
0.004505157470703125,
0.04901123046875,
-0.00856781005859375,
0.025726318359375,
0.0576171875,
-0.014190673828125,
0.092041015625,
-0.0007677078247070312,
-0.061431884765625,
0.059478759765625,
-0.03253173828125,
0.0244598388671875,
0.048004150390625,
0.045379638671875,
-0.02630615234375,
-0.016204833984375,
-0.062408447265625,
-0.0841064453125,
0.062408447265625,
0.0232391357421875,
-0.0053558349609375,
-0.00537109375,
0.007781982421875,
-0.01358795166015625,
0.0010471343994140625,
-0.0679931640625,
-0.053253173828125,
-0.007251739501953125,
-0.009429931640625,
-0.00438690185546875,
-0.0186309814453125,
-0.0089111328125,
-0.032379150390625,
0.05126953125,
-0.016571044921875,
0.003337860107421875,
0.0155181884765625,
-0.003387451171875,
0.0088348388671875,
0.0217437744140625,
0.0229644775390625,
0.04608154296875,
-0.011962890625,
0.01088714599609375,
0.01506805419921875,
-0.04779052734375,
-0.009857177734375,
0.009063720703125,
-0.0104827880859375,
-0.0123748779296875,
0.036376953125,
0.035797119140625,
0.0025463104248046875,
-0.05340576171875,
0.037261962890625,
0.0119781494140625,
-0.0023555755615234375,
-0.043701171875,
-0.00327301025390625,
-0.002048492431640625,
0.01145172119140625,
0.0394287109375,
-0.0244903564453125,
0.037628173828125,
-0.043304443359375,
0.01080322265625,
0.0105743408203125,
-0.01200103759765625,
-0.01418304443359375,
0.0318603515625,
0.0032100677490234375,
-0.0298309326171875,
0.0198211669921875,
-0.0298919677734375,
-0.040771484375,
0.056793212890625,
0.037353515625,
0.070068359375,
0.01503753662109375,
0.0131072998046875,
0.041900634765625,
0.030059814453125,
0.0254974365234375,
0.0452880859375,
-0.00809478759765625,
-0.037994384765625,
-0.0178985595703125,
-0.043792724609375,
-0.0272064208984375,
-0.005039215087890625,
-0.041290283203125,
0.03179931640625,
-0.0202484130859375,
-0.007709503173828125,
0.0170745849609375,
0.0391845703125,
-0.037628173828125,
0.017791748046875,
-0.0213165283203125,
0.07940673828125,
-0.052947998046875,
0.052215576171875,
0.0657958984375,
-0.07415771484375,
-0.07080078125,
-0.002651214599609375,
0.0183563232421875,
-0.0347900390625,
0.04217529296875,
0.001804351806640625,
0.0006618499755859375,
0.0020847320556640625,
-0.056488037109375,
-0.06646728515625,
0.07940673828125,
0.0091094970703125,
-0.00878143310546875,
0.01222991943359375,
0.04327392578125,
0.042205810546875,
-0.0257720947265625,
0.015289306640625,
0.03509521484375,
0.05950927734375,
0.01092529296875,
-0.06512451171875,
0.01232147216796875,
-0.048004150390625,
-0.0098114013671875,
0.00492095947265625,
-0.051513671875,
0.07171630859375,
-0.00417327880859375,
-0.02606201171875,
-0.0013637542724609375,
0.025726318359375,
0.0306549072265625,
0.024383544921875,
0.045501708984375,
0.045928955078125,
0.0504150390625,
-0.00926971435546875,
0.08624267578125,
-0.0260162353515625,
0.021026611328125,
0.085693359375,
-0.01392364501953125,
0.060516357421875,
0.0289459228515625,
-0.0321044921875,
0.046905517578125,
0.053497314453125,
-0.0236663818359375,
0.01264190673828125,
0.025390625,
0.0106658935546875,
-0.0092315673828125,
-0.0307159423828125,
-0.039825439453125,
0.042327880859375,
0.0048370361328125,
-0.0230255126953125,
-0.0106658935546875,
-0.01873779296875,
0.01507568359375,
0.0183563232421875,
-0.011962890625,
0.07208251953125,
-0.0263671875,
-0.0242462158203125,
0.04229736328125,
-0.0179901123046875,
0.041656494140625,
-0.037811279296875,
-0.0139007568359375,
0.0016460418701171875,
0.0129241943359375,
-0.0361328125,
-0.0859375,
0.0316162109375,
0.008544921875,
-0.04412841796875,
0.0058746337890625,
0.0426025390625,
-0.008941650390625,
-0.036346435546875,
0.0304718017578125,
0.00848388671875,
0.040252685546875,
0.01116180419921875,
-0.05828857421875,
0.0165863037109375,
-0.0003261566162109375,
-0.0183868408203125,
0.015380859375,
0.036651611328125,
-0.00980377197265625,
0.060394287109375,
0.04925537109375,
0.02239990234375,
0.0050048828125,
0.0082855224609375,
0.06683349609375,
-0.060577392578125,
-0.0341796875,
-0.03802490234375,
0.06390380859375,
-0.038848876953125,
-0.03717041015625,
0.07318115234375,
0.071044921875,
0.059326171875,
0.002445220947265625,
0.047637939453125,
-0.041412353515625,
0.07281494140625,
-0.0133819580078125,
0.048065185546875,
-0.057525634765625,
0.00269317626953125,
-0.035125732421875,
-0.0562744140625,
-0.021881103515625,
0.0184783935546875,
-0.01052093505859375,
0.0006113052368164062,
0.04718017578125,
0.0654296875,
0.0210723876953125,
-0.0030498504638671875,
-0.01291656494140625,
0.0189361572265625,
0.0156097412109375,
0.0311279296875,
0.0248870849609375,
-0.04443359375,
0.05340576171875,
-0.03643798828125,
-0.01885986328125,
-0.00919342041015625,
-0.0572509765625,
-0.05401611328125,
-0.0799560546875,
-0.023773193359375,
-0.04449462890625,
0.015838623046875,
0.0650634765625,
0.0430908203125,
-0.06561279296875,
-0.0294647216796875,
-0.0002837181091308594,
0.0146942138671875,
-0.00589752197265625,
-0.0211029052734375,
0.04949951171875,
-0.013580322265625,
-0.05767822265625,
-0.0030517578125,
-0.0012531280517578125,
-0.00577545166015625,
-0.0182342529296875,
-0.0056304931640625,
-0.05633544921875,
-0.01288604736328125,
0.035003662109375,
0.0260772705078125,
-0.045989990234375,
-0.0190887451171875,
-0.000232696533203125,
-0.012298583984375,
-0.005466461181640625,
0.0157623291015625,
-0.05059814453125,
0.0173187255859375,
0.0491943359375,
0.022369384765625,
0.021453857421875,
-0.0119781494140625,
0.0167694091796875,
-0.04852294921875,
0.011749267578125,
0.01471710205078125,
0.025848388671875,
0.012664794921875,
-0.034271240234375,
0.072998046875,
0.0262451171875,
-0.0284271240234375,
-0.0709228515625,
0.001373291015625,
-0.1060791015625,
-0.030609130859375,
0.0997314453125,
0.0001348257064819336,
-0.0380859375,
-0.0301055908203125,
-0.0103607177734375,
0.03759765625,
-0.0250244140625,
0.04083251953125,
0.04400634765625,
0.015655517578125,
-0.00946044921875,
-0.0163726806640625,
0.0307464599609375,
-0.006336212158203125,
-0.0816650390625,
0.00629425048828125,
0.0284576416015625,
0.009552001953125,
0.037384033203125,
0.0287322998046875,
-0.006755828857421875,
0.01457977294921875,
0.01023101806640625,
0.03399658203125,
0.0074310302734375,
-0.022674560546875,
-0.00740814208984375,
0.0179443359375,
-0.015716552734375,
-0.0223388671875
]
] |
bigbio/med_qa | 2023-09-26T13:00:32.000Z | [
"multilinguality:multilingual",
"language:en",
"language:zh",
"license:unknown",
"region:us"
] | bigbio | In this work, we present the first free-form multiple-choice OpenQA dataset for solving medical problems, MedQA,
collected from the professional medical board exams. It covers three languages: English, simplified Chinese, and
traditional Chinese, and contains 12,723, 34,251, and 14,123 questions for the three languages, respectively. Together
with the question data, we also collect and release a large-scale corpus from medical textbooks from which the reading
comprehension models can obtain necessary knowledge for answering the questions. | @article{jin2021disease,
title={What disease does this patient have? a large-scale open domain question answering dataset from medical exams},
author={Jin, Di and Pan, Eileen and Oufattole, Nassim and Weng, Wei-Hung and Fang, Hanyi and Szolovits, Peter},
journal={Applied Sciences},
volume={11},
number={14},
pages={6421},
year={2021},
publisher={MDPI}
} | 23 | 1,164 | 2022-11-13T22:09:18 | ---
language:
- en
- zh
bigbio_language:
- English
- Chinese (Simplified)
- Chinese (Traditional, Taiwan)
license: unknown
multilinguality: multilingual
bigbio_license_shortname: UNKNOWN
pretty_name: MedQA
homepage: https://github.com/jind11/MedQA
bigbio_pubmed: False
bigbio_public: True
bigbio_tasks:
- QUESTION_ANSWERING
---
# Dataset Card for MedQA
## Dataset Description
- **Homepage:** https://github.com/jind11/MedQA
- **Pubmed:** False
- **Public:** True
- **Tasks:** QA
In this work, we present the first free-form multiple-choice OpenQA dataset for solving medical problems, MedQA,
collected from the professional medical board exams. It covers three languages: English, simplified Chinese, and
traditional Chinese, and contains 12,723, 34,251, and 14,123 questions for the three languages, respectively. Together
with the question data, we also collect and release a large-scale corpus from medical textbooks from which the reading
comprehension models can obtain necessary knowledge for answering the questions.
## Citation Information
```
@article{jin2021disease,
title={What disease does this patient have? a large-scale open domain question answering dataset from medical exams},
author={Jin, Di and Pan, Eileen and Oufattole, Nassim and Weng, Wei-Hung and Fang, Hanyi and Szolovits, Peter},
journal={Applied Sciences},
volume={11},
number={14},
pages={6421},
year={2021},
publisher={MDPI}
}
```
| 1,438 | [
[
-0.0092620849609375,
-0.0535888671875,
0.0460205078125,
-0.000396728515625,
-0.018218994140625,
-0.02581787109375,
-0.0031223297119140625,
-0.0100860595703125,
0.019744873046875,
0.051361083984375,
-0.03643798828125,
-0.0418701171875,
-0.0126953125,
0.01837158203125,
0.006526947021484375,
0.07080078125,
-0.029388427734375,
0.049652099609375,
-0.0280609130859375,
-0.030487060546875,
-0.007061004638671875,
-0.03521728515625,
-0.049285888671875,
0.002834320068359375,
0.04193115234375,
0.033843994140625,
0.05108642578125,
0.02880859375,
0.0299530029296875,
0.00637054443359375,
0.0006775856018066406,
0.01519775390625,
-0.01558685302734375,
-0.0034236907958984375,
-0.00847625732421875,
-0.041290283203125,
-0.036468505859375,
-0.0005197525024414062,
0.047088623046875,
0.04241943359375,
-0.0100860595703125,
0.0369873046875,
-0.00872039794921875,
0.0517578125,
-0.01137542724609375,
0.0064544677734375,
-0.019866943359375,
-0.01001739501953125,
-0.0237274169921875,
-0.00485992431640625,
-0.03289794921875,
-0.035369873046875,
-0.007595062255859375,
-0.057861328125,
-0.0034332275390625,
-0.00614166259765625,
0.08990478515625,
0.03656005859375,
-0.061370849609375,
-0.0150604248046875,
-0.01617431640625,
0.04052734375,
-0.037628173828125,
0.00933074951171875,
0.043853759765625,
0.03594970703125,
0.0018091201782226562,
-0.048492431640625,
-0.056243896484375,
0.00881195068359375,
0.005710601806640625,
0.0302734375,
0.00788116455078125,
-0.01316070556640625,
0.00858306884765625,
0.032501220703125,
-0.059051513671875,
-0.01904296875,
-0.051605224609375,
-0.0173492431640625,
0.04443359375,
0.0252227783203125,
0.0286102294921875,
-0.0181732177734375,
-0.02801513671875,
-0.004909515380859375,
-0.038818359375,
0.0188751220703125,
-0.0214385986328125,
0.0034847259521484375,
-0.01406097412109375,
0.056427001953125,
-0.01293182373046875,
0.048858642578125,
-0.027923583984375,
0.002315521240234375,
0.04913330078125,
-0.047271728515625,
-0.02288818359375,
-0.03369140625,
0.050048828125,
0.02490234375,
0.016815185546875,
0.0133819580078125,
0.0178985595703125,
-0.04071044921875,
0.0074005126953125,
-0.041839599609375,
-0.0250091552734375,
0.0728759765625,
-0.05963134765625,
-0.0024871826171875,
-0.004093170166015625,
-0.059814453125,
-0.02972412109375,
-0.022705078125,
0.0357666015625,
-0.017364501953125,
-0.0280303955078125,
0.029296875,
0.01111602783203125,
0.0338134765625,
0.00921630859375,
-0.0182342529296875,
0.01342010498046875,
0.006988525390625,
0.0304412841796875,
-0.01080322265625,
0.004108428955078125,
-0.0311279296875,
-0.020599365234375,
-0.03228759765625,
0.045013427734375,
-0.01085662841796875,
-0.0023021697998046875,
-0.01183319091796875,
0.0252532958984375,
-0.02557373046875,
-0.055419921875,
0.041290283203125,
-0.0416259765625,
0.035247802734375,
-0.032562255859375,
-0.0219268798828125,
-0.016510009765625,
0.02197265625,
-0.0758056640625,
0.0689697265625,
0.0203704833984375,
-0.05474853515625,
0.00922393798828125,
-0.0399169921875,
0.00690460205078125,
0.01383209228515625,
-0.01751708984375,
-0.0294342041015625,
-0.0264892578125,
0.0469970703125,
0.024932861328125,
-0.038970947265625,
0.023681640625,
0.0015163421630859375,
0.0019130706787109375,
0.0223236083984375,
-0.0216064453125,
0.0897216796875,
0.01543426513671875,
0.005802154541015625,
0.0036411285400390625,
-0.060302734375,
0.0269927978515625,
0.02606201171875,
-0.031219482421875,
-0.01788330078125,
-0.006114959716796875,
0.00238037109375,
0.041259765625,
0.015167236328125,
-0.05718994140625,
0.0242156982421875,
-0.0187225341796875,
-0.0009937286376953125,
0.0352783203125,
0.03515625,
-0.01369476318359375,
-0.053131103515625,
0.053497314453125,
0.0246429443359375,
0.028106689453125,
0.0073699951171875,
-0.07373046875,
-0.040496826171875,
-0.021636962890625,
0.045166015625,
0.059539794921875,
-0.0927734375,
0.004222869873046875,
-0.00390625,
-0.035186767578125,
-0.0804443359375,
-0.02557373046875,
0.026153564453125,
0.0401611328125,
0.0592041015625,
0.0111541748046875,
-0.0018453598022460938,
-0.056793212890625,
0.00537109375,
-0.0162811279296875,
-0.01407623291015625,
0.05181884765625,
0.041046142578125,
-0.002803802490234375,
0.047760009765625,
-0.06549072265625,
-0.02276611328125,
0.013092041015625,
-0.0283660888671875,
0.0259552001953125,
0.03173828125,
0.0367431640625,
-0.06280517578125,
-0.0242462158203125,
-0.0181121826171875,
-0.03546142578125,
-0.0150604248046875,
-0.0180206298828125,
-0.043304443359375,
0.0113525390625,
0.0263214111328125,
-0.0212249755859375,
0.0227813720703125,
0.040374755859375,
-0.045623779296875,
0.05609130859375,
-0.0026569366455078125,
0.02606201171875,
-0.10272216796875,
0.023956298828125,
-0.0170745849609375,
0.022186279296875,
-0.04205322265625,
0.0080413818359375,
0.0181427001953125,
0.004444122314453125,
-0.02685546875,
0.0643310546875,
-0.01296234130859375,
0.03887939453125,
0.028900146484375,
0.00545501708984375,
0.0067901611328125,
0.04266357421875,
-0.0023250579833984375,
0.0472412109375,
0.039703369140625,
-0.04302978515625,
0.017852783203125,
0.051239013671875,
-0.0161895751953125,
0.0293426513671875,
-0.056915283203125,
-0.01145172119140625,
-0.0232391357421875,
0.0025177001953125,
-0.07550048828125,
-0.023956298828125,
0.03515625,
-0.05743408203125,
-0.007030487060546875,
0.015655517578125,
-0.04132080078125,
-0.0321044921875,
-0.0059356689453125,
0.0450439453125,
0.01520538330078125,
-0.0295257568359375,
0.0243988037109375,
0.0283050537109375,
-0.017608642578125,
-0.05828857421875,
-0.044921875,
-0.04541015625,
0.0169525146484375,
-0.04815673828125,
0.01222991943359375,
-0.0396728515625,
-0.004241943359375,
0.004367828369140625,
-0.0006227493286132812,
-0.053009033203125,
-0.01446533203125,
-0.007633209228515625,
0.03839111328125,
-0.029693603515625,
0.043548583984375,
0.0180206298828125,
0.00977325439453125,
0.00988006591796875,
-0.00676727294921875,
0.0216827392578125,
0.01016998291015625,
-0.033782958984375,
-0.00887298583984375,
0.048492431640625,
0.038360595703125,
-0.04473876953125,
0.043609619140625,
0.01593017578125,
-0.04937744140625,
0.005924224853515625,
-0.005947113037109375,
0.00388336181640625,
-0.0299072265625,
0.0333251953125,
-0.034423828125,
-0.0408935546875,
0.051361083984375,
0.040252685546875,
0.0236358642578125,
0.0594482421875,
0.05413818359375,
0.003986358642578125,
0.07135009765625,
0.002899169921875,
0.005237579345703125,
-0.0217742919921875,
-0.006885528564453125,
-0.0226898193359375,
-0.045379638671875,
-0.03472900390625,
-0.0545654296875,
-0.0023937225341796875,
-0.028594970703125,
-0.052978515625,
0.053375244140625,
0.0013208389282226562,
-0.027862548828125,
-0.0186004638671875,
-0.029388427734375,
0.0284576416015625,
0.046356201171875,
0.0406494140625,
0.0264129638671875,
-0.0110931396484375,
-0.040740966796875,
0.01171112060546875,
-0.054290771484375,
-0.0245208740234375,
0.10662841796875,
0.029571533203125,
0.03802490234375,
0.022613525390625,
0.04656982421875,
-0.01557159423828125,
0.023162841796875,
-0.055877685546875,
0.029693603515625,
-0.0171661376953125,
-0.08087158203125,
-0.031280517578125,
-0.039886474609375,
-0.097412109375,
0.0172271728515625,
-0.007564544677734375,
-0.026153564453125,
0.01265716552734375,
-0.010040283203125,
-0.04345703125,
0.0196685791015625,
-0.0185089111328125,
0.058349609375,
-0.0034332275390625,
0.0078277587890625,
0.0213165283203125,
-0.061126708984375,
0.040283203125,
-0.009979248046875,
0.011962890625,
-0.002655029296875,
-0.016632080078125,
0.07122802734375,
-0.005947113037109375,
0.034393310546875,
-0.020263671875,
-0.01232147216796875,
0.0275726318359375,
-0.021820068359375,
-0.0232696533203125,
0.023193359375,
-0.0087890625,
-0.006969451904296875,
0.057373046875,
-0.062744140625,
-0.024139404296875,
0.00937652587890625,
-0.0601806640625,
-0.0148773193359375,
-0.036163330078125,
-0.039581298828125,
-0.0307464599609375,
0.033050537109375,
0.01058197021484375,
0.066650390625,
0.001190185546875,
0.0095367431640625,
0.058258056640625,
-0.051361083984375,
-0.001209259033203125,
0.038177490234375,
-0.025146484375,
-0.043487548828125,
0.057037353515625,
0.0234832763671875,
0.022491455078125,
0.0160369873046875,
0.0068359375,
-0.02105712890625,
-0.033905029296875,
-0.063232421875,
0.0526123046875,
-0.049224853515625,
-0.0169219970703125,
-0.031494140625,
-0.039520263671875,
-0.01177978515625,
0.0263519287109375,
0.0170745849609375,
-0.0249481201171875,
-0.039520263671875,
0.01337432861328125,
0.0088348388671875,
0.038482666015625,
0.020843505859375,
-0.0088958740234375,
-0.08172607421875,
0.05450439453125,
0.0083465576171875,
0.040252685546875,
-0.01123046875,
-0.02703857421875,
-0.0181121826171875,
0.008056640625,
-0.01415252685546875,
-0.08709716796875,
0.0191497802734375,
0.00371551513671875,
0.0706787109375,
0.0118865966796875,
0.033416748046875,
0.0175323486328125,
-0.01373291015625,
0.08465576171875,
-0.0196990966796875,
-0.0261077880859375,
0.0170135498046875,
-0.021331787109375,
0.03509521484375,
0.0533447265625,
0.06463623046875,
-0.039093017578125,
-0.01288604736328125,
-0.048248291015625,
-0.047393798828125,
0.04766845703125,
0.00473785400390625,
-0.018341064453125,
-0.006988525390625,
0.032440185546875,
0.0018339157104492188,
-0.003997802734375,
-0.046539306640625,
-0.046661376953125,
0.0038909912109375,
-0.0467529296875,
0.0025768280029296875,
-0.00838470458984375,
-0.0248870849609375,
-0.032562255859375,
0.0660400390625,
-0.0238189697265625,
0.03900146484375,
0.041534423828125,
0.0102996826171875,
0.00970458984375,
0.030731201171875,
0.037200927734375,
0.03857421875,
-0.01262664794921875,
-0.021728515625,
-0.01168060302734375,
-0.069580078125,
0.01189422607421875,
0.022369384765625,
-0.022064208984375,
-0.0018777847290039062,
0.006946563720703125,
0.017486572265625,
-0.040863037109375,
-0.06536865234375,
0.046295166015625,
-0.00963592529296875,
-0.059326171875,
-0.0083465576171875,
-0.00884246826171875,
0.0006947517395019531,
0.0122222900390625,
0.0242156982421875,
-0.011871337890625,
0.00786590576171875,
0.0007753372192382812,
0.04010009765625,
-0.00004112720489501953,
-0.031036376953125,
0.00742340087890625,
0.046722412109375,
0.0010204315185546875,
0.0193634033203125,
0.054107666015625,
-0.0006127357482910156,
-0.0280609130859375,
0.0565185546875,
0.0227508544921875,
0.0218048095703125,
-0.01483154296875,
0.032440185546875,
0.05096435546875,
0.025634765625,
0.0179595947265625,
0.09747314453125,
0.029815673828125,
-0.057464599609375,
-0.0304412841796875,
-0.0292816162109375,
-0.04119873046875,
0.03912353515625,
-0.06854248046875,
0.01100921630859375,
-0.01389312744140625,
0.0013608932495117188,
0.009246826171875,
0.020172119140625,
-0.034027099609375,
0.035858154296875,
-0.0012903213500976562,
0.10406494140625,
-0.040130615234375,
0.05584716796875,
0.0531005859375,
-0.05426025390625,
-0.07244873046875,
0.006450653076171875,
-0.0094757080078125,
-0.0426025390625,
0.006114959716796875,
-0.00955963134765625,
0.03546142578125,
-0.0002930164337158203,
-0.04559326171875,
-0.068115234375,
0.075439453125,
0.00643157958984375,
-0.00962066650390625,
-0.006134033203125,
0.0091094970703125,
0.026702880859375,
-0.0113525390625,
0.016143798828125,
0.0352783203125,
0.03973388671875,
-0.003566741943359375,
-0.076416015625,
0.005580902099609375,
-0.054901123046875,
-0.05389404296875,
0.0130767822265625,
-0.05157470703125,
0.07904052734375,
-0.0245208740234375,
-0.0052032470703125,
0.0262908935546875,
0.024932861328125,
0.038604736328125,
0.03875732421875,
0.0191650390625,
0.026580810546875,
0.08172607421875,
-0.01450347900390625,
0.06231689453125,
-0.01143646240234375,
0.0076141357421875,
0.07269287109375,
0.0007658004760742188,
0.066650390625,
0.020263671875,
-0.0243682861328125,
0.036651611328125,
0.05780029296875,
0.01145172119140625,
0.0177001953125,
0.03399658203125,
-0.006877899169921875,
-0.0186004638671875,
0.01403045654296875,
-0.0478515625,
0.020263671875,
0.031585693359375,
-0.0321044921875,
-0.0169677734375,
0.00788116455078125,
0.0030517578125,
0.0019130706787109375,
-0.0265655517578125,
0.0382080078125,
-0.0138397216796875,
-0.05181884765625,
0.0706787109375,
-0.0036334991455078125,
0.00930023193359375,
-0.04315185546875,
-0.01244354248046875,
-0.01354217529296875,
-0.004291534423828125,
-0.01303863525390625,
-0.075927734375,
0.0030879974365234375,
-0.02081298828125,
-0.0219268798828125,
0.025543212890625,
0.0170135498046875,
-0.05303955078125,
-0.0266571044921875,
-0.00994110107421875,
0.06292724609375,
0.038482666015625,
0.00656890869140625,
-0.055572509765625,
-0.041259765625,
0.0117950439453125,
-0.01308441162109375,
0.005939483642578125,
0.0225677490234375,
-0.0229949951171875,
0.043548583984375,
0.036102294921875,
0.00444793701171875,
0.0076141357421875,
0.0005426406860351562,
0.07501220703125,
-0.037200927734375,
-0.029510498046875,
-0.01090240478515625,
0.053131103515625,
0.00125885009765625,
-0.05242919921875,
0.0230712890625,
0.0447998046875,
0.050445556640625,
-0.0167083740234375,
0.0491943359375,
0.0005960464477539062,
0.06829833984375,
-0.046417236328125,
0.07122802734375,
-0.06036376953125,
-0.01568603515625,
0.0007090568542480469,
-0.01161956787109375,
-0.04815673828125,
0.01448822021484375,
0.0015249252319335938,
-0.0140228271484375,
0.06939697265625,
0.0574951171875,
0.0226898193359375,
0.0047149658203125,
0.0106201171875,
0.0153961181640625,
0.00681304931640625,
0.06573486328125,
0.022613525390625,
-0.0531005859375,
0.04327392578125,
-0.002880096435546875,
-0.0305023193359375,
0.0104827880859375,
-0.014801025390625,
-0.05584716796875,
-0.08209228515625,
-0.022491455078125,
-0.051910400390625,
-0.0230712890625,
0.074462890625,
0.0288848876953125,
-0.07928466796875,
0.00879669189453125,
0.055328369140625,
0.0162353515625,
-0.04180908203125,
-0.01091766357421875,
0.05816650390625,
0.0023365020751953125,
-0.03131103515625,
0.01025390625,
-0.035247802734375,
0.00970458984375,
0.0015392303466796875,
0.0017137527465820312,
-0.0281982421875,
0.0311279296875,
0.0259552001953125,
0.02227783203125,
-0.0390625,
0.0026912689208984375,
0.033447265625,
-0.030670166015625,
0.018280029296875,
0.0310211181640625,
-0.046661376953125,
0.03582763671875,
0.042755126953125,
0.05780029296875,
0.0008902549743652344,
0.008636474609375,
0.00742340087890625,
-0.0301513671875,
-0.041046142578125,
0.0294036865234375,
0.01140594482421875,
-0.016082763671875,
-0.02142333984375,
0.035552978515625,
0.0087432861328125,
-0.04864501953125,
-0.046966552734375,
0.003131866455078125,
-0.08941650390625,
-0.038818359375,
0.09063720703125,
-0.0003509521484375,
-0.01354217529296875,
-0.04461669921875,
-0.048095703125,
0.01800537109375,
-0.01128387451171875,
0.0218963623046875,
0.0474853515625,
-0.00850677490234375,
-0.00955963134765625,
-0.064208984375,
0.047393798828125,
0.0251922607421875,
-0.09197998046875,
-0.0006542205810546875,
0.0416259765625,
0.01470184326171875,
-0.0043792724609375,
0.07763671875,
-0.045379638671875,
0.041473388671875,
-0.0187530517578125,
0.01023101806640625,
-0.00518035888671875,
-0.0269927978515625,
-0.0377197265625,
0.02374267578125,
-0.0132293701171875,
-0.0386962890625
]
] |
jxm/the_office_lines | 2023-03-07T18:30:51.000Z | [
"region:us"
] | jxm | null | null | 18 | 1,162 | 2023-03-07T18:24:28 | ## the_office_lines
<img src="https://a.pinatafarm.com/1351x1232/c8fa71efd1/the-office-handshake.jpg" width="256">
A dataset of lines from the U.S. version of the tv show "The Office". Lines were originally scraped from the website [officequotes.net](https://www.officequotes.net/), are fan-transcribed, and may be of dubious quality.
Contains a train split (47,927 lines), test split (5,991 lines) and validation split (5,991 lines). Contains lines from all 9 seasons, every episode, but may be complete.
Lines are annotated with an ID number, season number, episode number, scene number (within the episode), speaker name, and whether or not the text came from a deleted scene. Here is an example:
```
> dataset["val"][0]
{'id': 3735,
'season': 2,
'episode': 5,
'scene': 32,
'line_text': 'No, you have the power to undo it.',
'speaker': 'Creed',
'deleted': False}
```
| 882 | [
[
-0.02276611328125,
-0.052032470703125,
0.0147552490234375,
-0.01351165771484375,
-0.052520751953125,
-0.002788543701171875,
0.0153350830078125,
-0.0038967132568359375,
0.048919677734375,
0.070556640625,
-0.06524658203125,
-0.025665283203125,
-0.02899169921875,
0.040069580078125,
-0.02667236328125,
0.08587646484375,
0.0107879638671875,
0.00978851318359375,
-0.01018524169921875,
-0.00676727294921875,
-0.0261077880859375,
-0.009124755859375,
-0.0009794235229492188,
-0.0084381103515625,
0.022430419921875,
0.06402587890625,
0.0572509765625,
0.07427978515625,
0.0277557373046875,
0.00868988037109375,
0.0025730133056640625,
0.006893157958984375,
-0.03961181640625,
0.0006923675537109375,
0.0107269287109375,
-0.01506805419921875,
-0.028472900390625,
0.019439697265625,
0.030242919921875,
0.061767578125,
-0.00852203369140625,
0.00720977783203125,
-0.0051116943359375,
0.0281524658203125,
0.00856781005859375,
0.01412200927734375,
-0.05517578125,
-0.0016622543334960938,
-0.00222015380859375,
-0.006053924560546875,
0.00203704833984375,
-0.040679931640625,
0.0292205810546875,
-0.03826904296875,
0.0031585693359375,
0.024810791015625,
0.1280517578125,
0.002101898193359375,
-0.027069091796875,
-0.00466156005859375,
-0.004589080810546875,
0.047454833984375,
-0.062255859375,
-0.0109100341796875,
0.057830810546875,
0.01556396484375,
-0.005290985107421875,
-0.050689697265625,
-0.035980224609375,
0.0087432861328125,
0.00022923946380615234,
0.0067291259765625,
-0.00983428955078125,
-0.022918701171875,
0.0178070068359375,
0.0268096923828125,
-0.038909912109375,
-0.01265716552734375,
-0.056121826171875,
0.0016183853149414062,
0.04364013671875,
0.01256561279296875,
0.032073974609375,
-0.032196044921875,
-0.032012939453125,
-0.024932861328125,
-0.026153564453125,
-0.0258026123046875,
0.031280517578125,
0.029022216796875,
-0.0143890380859375,
0.042633056640625,
-0.0141143798828125,
0.0277557373046875,
-0.035858154296875,
0.005558013916015625,
0.021209716796875,
-0.013275146484375,
-0.02880859375,
0.022064208984375,
0.07977294921875,
0.0560302734375,
0.052459716796875,
-0.0001080632209777832,
0.0283660888671875,
0.01039886474609375,
0.01885986328125,
-0.05316162109375,
-0.042083740234375,
0.020172119140625,
-0.03466796875,
-0.0223541259765625,
0.01500701904296875,
-0.044036865234375,
-0.0364990234375,
-0.0281829833984375,
-0.00875091552734375,
-0.051544189453125,
-0.0106353759765625,
-0.0279541015625,
-0.039306640625,
0.0179443359375,
0.0295562744140625,
-0.036834716796875,
0.00617218017578125,
0.047393798828125,
0.0458984375,
0.02984619140625,
-0.032867431640625,
-0.0249786376953125,
-0.0408935546875,
-0.036865234375,
0.049652099609375,
-0.03363037109375,
-0.0172882080078125,
-0.023895263671875,
0.00437164306640625,
0.0060882568359375,
-0.03515625,
0.0297698974609375,
-0.0296173095703125,
0.0140533447265625,
-0.047149658203125,
-0.037384033203125,
0.007434844970703125,
0.01102447509765625,
-0.0411376953125,
0.065673828125,
0.00547027587890625,
-0.06231689453125,
0.04766845703125,
-0.039947509765625,
-0.0260162353515625,
-0.02081298828125,
-0.0096893310546875,
-0.026885986328125,
-0.0141143798828125,
0.00664520263671875,
0.021392822265625,
-0.0008540153503417969,
0.006069183349609375,
-0.03411865234375,
-0.0213470458984375,
0.0142364501953125,
-0.02398681640625,
0.0814208984375,
0.05401611328125,
0.002391815185546875,
-0.01910400390625,
-0.08123779296875,
0.0075225830078125,
0.012176513671875,
-0.0085296630859375,
-0.0352783203125,
-0.003055572509765625,
-0.001857757568359375,
0.022247314453125,
0.019195556640625,
-0.048248291015625,
0.01386260986328125,
-0.0159454345703125,
0.0010251998901367188,
0.0528564453125,
0.00792694091796875,
0.005298614501953125,
-0.03802490234375,
0.039581298828125,
0.0022716522216796875,
0.002429962158203125,
-0.008880615234375,
-0.03387451171875,
-0.036865234375,
-0.0360107421875,
0.004718780517578125,
0.054962158203125,
-0.04791259765625,
0.06365966796875,
-0.047210693359375,
-0.03729248046875,
-0.032318115234375,
-0.006488800048828125,
0.013458251953125,
0.02398681640625,
0.0298309326171875,
-0.01113128662109375,
-0.043670654296875,
-0.068359375,
-0.0303802490234375,
0.01306915283203125,
-0.0215606689453125,
0.018768310546875,
0.04022216796875,
0.04412841796875,
0.0977783203125,
-0.051422119140625,
-0.024566650390625,
-0.023345947265625,
0.003978729248046875,
0.0350341796875,
0.0076446533203125,
0.005985260009765625,
-0.038330078125,
-0.06976318359375,
-0.01275634765625,
-0.059417724609375,
-0.031646728515625,
-0.009185791015625,
-0.0295562744140625,
-0.030914306640625,
0.025238037109375,
0.004001617431640625,
0.050323486328125,
0.0294952392578125,
-0.0704345703125,
0.0242462158203125,
-0.01479339599609375,
-0.003940582275390625,
-0.10272216796875,
0.00614166259765625,
-0.01116180419921875,
-0.02154541015625,
-0.044097900390625,
-0.0330810546875,
-0.01207733154296875,
-0.01424407958984375,
-0.0240325927734375,
0.0030975341796875,
-0.056549072265625,
0.0007405281066894531,
-0.0093994140625,
0.022705078125,
0.02154541015625,
0.019287109375,
-0.004608154296875,
0.04315185546875,
0.0292205810546875,
0.0006151199340820312,
0.034149169921875,
0.055572509765625,
-0.03857421875,
0.06231689453125,
-0.0162506103515625,
0.03076171875,
-0.017333984375,
0.0102691650390625,
-0.09466552734375,
-0.0017175674438476562,
0.005329132080078125,
-0.01154327392578125,
-0.00988006591796875,
-0.0152435302734375,
-0.039947509765625,
0.004161834716796875,
-0.024810791015625,
-0.005786895751953125,
0.03460693359375,
-0.01274871826171875,
0.014617919921875,
0.021026611328125,
-0.01300811767578125,
-0.05340576171875,
-0.048858642578125,
0.035186767578125,
-0.024017333984375,
-0.040557861328125,
-0.00858306884765625,
0.02886962890625,
-0.0306243896484375,
0.0161285400390625,
0.00756072998046875,
-0.024810791015625,
0.009490966796875,
0.02587890625,
0.0282745361328125,
0.0034503936767578125,
-0.0277252197265625,
-0.00185394287109375,
0.03228759765625,
-0.00702667236328125,
0.0201263427734375,
0.055206298828125,
0.0194244384765625,
0.0183563232421875,
-0.032806396484375,
0.046905517578125,
0.061004638671875,
0.00018417835235595703,
0.052276611328125,
0.01157379150390625,
-0.007274627685546875,
-0.0147857666015625,
-0.01107025146484375,
-0.010955810546875,
-0.0238189697265625,
0.013397216796875,
-0.036529541015625,
-0.0182647705078125,
0.056976318359375,
0.027069091796875,
0.000029087066650390625,
0.035400390625,
-0.03802490234375,
-0.0084381103515625,
0.039794921875,
0.0035686492919921875,
-0.011505126953125,
0.03375244140625,
-0.037445068359375,
0.0034427642822265625,
-0.05731201171875,
-0.0066070556640625,
-0.0233154296875,
-0.0355224609375,
-0.025238037109375,
-0.00855255126953125,
0.0213165283203125,
0.005039215087890625,
-0.01007080078125,
0.052001953125,
-0.021331787109375,
0.044647216796875,
0.043121337890625,
0.017425537109375,
0.01512908935546875,
0.007106781005859375,
-0.0296173095703125,
-0.00832366943359375,
-0.0261688232421875,
-0.048095703125,
0.061859130859375,
0.022003173828125,
0.048431396484375,
0.012054443359375,
0.04840087890625,
0.031768798828125,
0.0135498046875,
-0.04931640625,
0.0645751953125,
-0.036407470703125,
-0.04156494140625,
-0.03851318359375,
-0.04632568359375,
-0.0802001953125,
0.01279449462890625,
-0.0112457275390625,
-0.051422119140625,
0.0122833251953125,
-0.01739501953125,
-0.016876220703125,
0.0228424072265625,
-0.031036376953125,
0.062103271484375,
-0.0035762786865234375,
-0.0162506103515625,
-0.00146484375,
-0.05230712890625,
-0.01122283935546875,
-0.00131988525390625,
0.0160064697265625,
-0.0302886962890625,
0.0243377685546875,
0.07696533203125,
-0.11041259765625,
0.07269287109375,
-0.004566192626953125,
-0.01171112060546875,
0.03076171875,
-0.01248931884765625,
0.034149169921875,
-0.025146484375,
-0.0123443603515625,
0.0194244384765625,
0.021942138671875,
-0.01210784912109375,
0.0020732879638671875,
0.033966064453125,
-0.05474853515625,
0.0184783935546875,
-0.043548583984375,
-0.01959228515625,
0.0016460418701171875,
0.038665771484375,
0.050018310546875,
0.061126708984375,
-0.01119232177734375,
0.0100860595703125,
-0.00218963623046875,
-0.0145263671875,
0.02081298828125,
-0.006725311279296875,
-0.024383544921875,
-0.051361083984375,
0.048797607421875,
0.03826904296875,
0.01568603515625,
0.002681732177734375,
0.01751708984375,
-0.0396728515625,
-0.007061004638671875,
-0.007190704345703125,
0.022979736328125,
-0.0611572265625,
-0.00038623809814453125,
-0.0242462158203125,
-0.011383056640625,
-0.02435302734375,
0.0032520294189453125,
-0.002132415771484375,
-0.01506805419921875,
-0.050537109375,
-0.0205535888671875,
0.044647216796875,
0.0584716796875,
0.020111083984375,
0.0138092041015625,
-0.045501708984375,
0.0153045654296875,
0.0220184326171875,
0.022216796875,
-0.0225982666015625,
-0.036834716796875,
-0.0177001953125,
0.007007598876953125,
-0.035552978515625,
-0.07171630859375,
0.0535888671875,
0.00440216064453125,
0.0112152099609375,
0.0295562744140625,
0.04461669921875,
0.05706787109375,
-0.04364013671875,
0.08807373046875,
0.01071929931640625,
-0.059967041015625,
0.0172882080078125,
-0.05267333984375,
0.01027679443359375,
0.055145263671875,
0.01325225830078125,
-0.03875732421875,
-0.041839599609375,
-0.077880859375,
-0.0814208984375,
0.0626220703125,
0.0087127685546875,
0.011566162109375,
-0.0080718994140625,
-0.01390838623046875,
0.00782012939453125,
0.04620361328125,
-0.01374053955078125,
-0.04974365234375,
-0.035888671875,
-0.034698486328125,
0.0159454345703125,
-0.01012420654296875,
-0.0255584716796875,
-0.00785064697265625,
0.0244598388671875,
0.0008502006530761719,
0.0284881591796875,
0.030426025390625,
0.01251983642578125,
0.002269744873046875,
0.0256500244140625,
0.048797607421875,
0.0849609375,
-0.058563232421875,
0.01325225830078125,
0.01178741455078125,
-0.041839599609375,
-0.017822265625,
-0.0046234130859375,
0.01788330078125,
0.0166473388671875,
0.0163726806640625,
0.083740234375,
-0.0313720703125,
-0.032257080078125,
0.032440185546875,
-0.00634765625,
-0.0282440185546875,
-0.064453125,
-0.00379180908203125,
-0.034698486328125,
0.0017375946044921875,
0.0513916015625,
0.00762176513671875,
0.00799560546875,
-0.055206298828125,
0.052337646484375,
0.0195465087890625,
-0.019012451171875,
-0.01215362548828125,
0.037109375,
-0.017181396484375,
-0.0233154296875,
0.054931640625,
-0.0029659271240234375,
-0.052703857421875,
0.048187255859375,
0.0071563720703125,
0.0506591796875,
0.02276611328125,
0.0000673532485961914,
0.002788543701171875,
-0.006290435791015625,
0.0002827644348144531,
0.051605224609375,
0.0163116455078125,
-0.050933837890625,
-0.0203704833984375,
-0.0235748291015625,
-0.026763916015625,
0.032867431640625,
-0.06732177734375,
0.02587890625,
-0.047088623046875,
-0.01367950439453125,
-0.01306915283203125,
-0.01290130615234375,
-0.040283203125,
0.048187255859375,
0.007595062255859375,
0.0816650390625,
-0.0899658203125,
0.0452880859375,
0.03826904296875,
-0.0206146240234375,
-0.09552001953125,
0.017822265625,
-0.0171356201171875,
-0.0687255859375,
0.0472412109375,
0.0110321044921875,
0.0296630859375,
0.0015287399291992188,
-0.03887939453125,
-0.0457763671875,
0.06201171875,
0.0014944076538085938,
-0.00933837890625,
0.006122589111328125,
0.022369384765625,
0.03363037109375,
-0.0247802734375,
0.0297393798828125,
0.034454345703125,
0.015289306640625,
0.01528167724609375,
-0.08392333984375,
0.0049285888671875,
-0.0261077880859375,
-0.0275421142578125,
0.005863189697265625,
-0.05975341796875,
0.06573486328125,
0.01007843017578125,
0.0037441253662109375,
0.01178741455078125,
0.01430511474609375,
-0.0043487548828125,
0.008819580078125,
0.0587158203125,
0.042877197265625,
0.044952392578125,
-0.02886962890625,
0.06561279296875,
0.0016078948974609375,
0.0341796875,
0.07177734375,
-0.0118255615234375,
0.068359375,
0.0377197265625,
-0.0265655517578125,
0.053955078125,
0.01412200927734375,
-0.01543426513671875,
0.053436279296875,
0.031280517578125,
0.0294647216796875,
-0.006916046142578125,
0.0038928985595703125,
-0.005405426025390625,
0.052459716796875,
-0.003772735595703125,
-0.0467529296875,
-0.01267242431640625,
-0.0283203125,
0.0677490234375,
-0.01580810546875,
0.00688934326171875,
0.052001953125,
0.0118408203125,
-0.059112548828125,
0.0587158203125,
-0.045135498046875,
0.01959228515625,
-0.0433349609375,
-0.020751953125,
-0.027587890625,
0.0037174224853515625,
-0.01617431640625,
-0.07000732421875,
0.01480865478515625,
0.00923919677734375,
0.008636474609375,
-0.024871826171875,
-0.0002880096435546875,
-0.0418701171875,
-0.0254974365234375,
-0.0115814208984375,
0.0013685226440429688,
0.046417236328125,
0.0062255859375,
-0.04791259765625,
0.00595855712890625,
0.032470703125,
-0.0154571533203125,
0.00522613525390625,
0.046417236328125,
0.019287109375,
0.032806396484375,
0.04473876953125,
0.034637451171875,
0.00545501708984375,
-0.0009918212890625,
0.04998779296875,
-0.04986572265625,
-0.068603515625,
-0.06268310546875,
0.0777587890625,
-0.072998046875,
-0.04132080078125,
0.0745849609375,
0.049224853515625,
0.018218994140625,
-0.02056884765625,
0.06927490234375,
-0.01348876953125,
0.07025146484375,
-0.044891357421875,
0.05609130859375,
-0.06402587890625,
0.034332275390625,
-0.04718017578125,
-0.04248046875,
-0.0169677734375,
0.06396484375,
-0.03326416015625,
-0.0029430389404296875,
0.07440185546875,
0.030487060546875,
-0.01184844970703125,
0.0171966552734375,
0.024993896484375,
0.014862060546875,
0.027496337890625,
0.004810333251953125,
0.055572509765625,
-0.045196533203125,
0.060028076171875,
-0.02301025390625,
-0.00473785400390625,
-0.0187225341796875,
-0.0792236328125,
-0.06414794921875,
-0.04046630859375,
-0.03375244140625,
-0.058990478515625,
-0.030364990234375,
0.0745849609375,
0.039337158203125,
-0.0413818359375,
-0.021087646484375,
-0.0020389556884765625,
-0.0345458984375,
-0.021209716796875,
-0.021942138671875,
0.04864501953125,
0.024871826171875,
-0.03070068359375,
0.03448486328125,
-0.02703857421875,
-0.00014781951904296875,
0.026214599609375,
0.0184478759765625,
-0.0181427001953125,
0.0081024169921875,
-0.0005207061767578125,
0.017059326171875,
-0.0216522216796875,
-0.04168701171875,
0.01015472412109375,
0.00958251953125,
0.0228424072265625,
0.0131072998046875,
-0.00856781005859375,
0.031768798828125,
0.05426025390625,
0.0012807846069335938,
0.00878143310546875,
0.04974365234375,
0.035400390625,
-0.07305908203125,
-0.0095977783203125,
0.0023097991943359375,
0.059112548828125,
0.040252685546875,
-0.026580810546875,
0.02740478515625,
0.03387451171875,
-0.050933837890625,
-0.06298828125,
-0.01013946533203125,
-0.09619140625,
-0.01105499267578125,
0.09368896484375,
-0.0181121826171875,
-0.0186920166015625,
-0.034210205078125,
-0.035675048828125,
0.02386474609375,
-0.061370849609375,
0.034820556640625,
0.0528564453125,
-0.01367950439453125,
-0.00220489501953125,
-0.0234375,
0.03485107421875,
0.0185394287109375,
-0.0416259765625,
0.0191497802734375,
0.047576904296875,
0.064453125,
0.040008544921875,
0.051116943359375,
0.000965118408203125,
-0.0197601318359375,
0.009735107421875,
0.009246826171875,
-0.0111236572265625,
-0.01593017578125,
-0.003387451171875,
0.0139923095703125,
-0.006000518798828125,
-0.06512451171875
]
] |
mlabonne/guanaco-llama2 | 2023-07-26T14:49:17.000Z | [
"region:us"
] | mlabonne | null | null | 7 | 1,161 | 2023-07-23T13:53:10 | ---
dataset_info:
features:
- name: text
dtype: string
splits:
- name: train
num_bytes: 15409089
num_examples: 9846
- name: test
num_bytes: 815811
num_examples: 518
download_size: 9461517
dataset_size: 16224900
---
# Guanaco: Lazy Llama 2 Formatting
This is the excellent [`timdettmers/openassistant-guanaco`](https://huggingface.co/datasets/timdettmers/openassistant-guanaco) dataset, processed to match Llama 2's prompt format as described [in this article](https://huggingface.co/blog/llama2#how-to-prompt-llama-2).
Useful if you don't want to reformat it by yourself (e.g., using a script). It was designed for [this article](https://mlabonne.github.io/blog/posts/Fine_Tune_Your_Own_Llama_2_Model_in_a_Colab_Notebook.html) about fine-tuning a Llama 2 model in a Google Colab.
| 816 | [
[
0.006267547607421875,
-0.059600830078125,
0.03277587890625,
0.06463623046875,
-0.040496826171875,
-0.0007700920104980469,
-0.00899505615234375,
-0.0286712646484375,
0.03717041015625,
0.019927978515625,
-0.056610107421875,
-0.0394287109375,
-0.0283355712890625,
0.0048675537109375,
-0.01004791259765625,
0.11004638671875,
-0.00807952880859375,
-0.010345458984375,
-0.0189208984375,
-0.006175994873046875,
-0.05645751953125,
-0.0001569986343383789,
-0.05841064453125,
-0.0214080810546875,
0.06671142578125,
0.052490234375,
0.056396484375,
0.058563232421875,
0.033660888671875,
0.0141143798828125,
0.0014257431030273438,
0.0159149169921875,
-0.04437255859375,
0.02984619140625,
-0.0005016326904296875,
-0.0165863037109375,
-0.0518798828125,
-0.0008544921875,
0.016326904296875,
0.020355224609375,
-0.02716064453125,
0.0274200439453125,
-0.004474639892578125,
0.029205322265625,
-0.03753662109375,
0.0243988037109375,
-0.031585693359375,
-0.019073486328125,
-0.034637451171875,
-0.00466156005859375,
-0.0023899078369140625,
-0.050689697265625,
-0.027313232421875,
-0.06561279296875,
0.022369384765625,
0.0252838134765625,
0.072509765625,
0.030609130859375,
-0.0224761962890625,
-0.0306549072265625,
-0.03936767578125,
0.04779052734375,
-0.020263671875,
-0.0093841552734375,
0.0469970703125,
0.040802001953125,
-0.026702880859375,
-0.08453369140625,
-0.048126220703125,
-0.005794525146484375,
-0.00835418701171875,
0.010345458984375,
-0.03802490234375,
-0.0050811767578125,
-0.0002994537353515625,
0.01849365234375,
-0.060882568359375,
0.026702880859375,
-0.048797607421875,
-0.018218994140625,
0.036346435546875,
0.0264739990234375,
0.007598876953125,
-0.0007534027099609375,
-0.032623291015625,
-0.00971221923828125,
-0.06341552734375,
-0.0007834434509277344,
0.048187255859375,
0.00757598876953125,
-0.038330078125,
0.052886962890625,
-0.032012939453125,
0.038116455078125,
0.0017957687377929688,
-0.0083160400390625,
0.0228118896484375,
-0.0195159912109375,
-0.01300811767578125,
-0.0134429931640625,
0.04974365234375,
0.04168701171875,
0.035064697265625,
-0.01253509521484375,
-0.0274200439453125,
-0.0008997917175292969,
0.01148223876953125,
-0.05841064453125,
-0.049530029296875,
0.029510498046875,
-0.03509521484375,
-0.01512908935546875,
-0.0027217864990234375,
-0.04608154296875,
-0.022491455078125,
-0.0143890380859375,
0.00876617431640625,
-0.0010986328125,
0.005893707275390625,
0.002719879150390625,
0.0049591064453125,
0.00843048095703125,
0.04541015625,
-0.0809326171875,
0.0106353759765625,
0.04486083984375,
0.08172607421875,
0.0080108642578125,
-0.0122833251953125,
-0.065185546875,
0.00815582275390625,
0.0030002593994140625,
0.09765625,
-0.0253448486328125,
-0.04486083984375,
-0.01043701171875,
0.006927490234375,
0.01085662841796875,
-0.0430908203125,
0.03875732421875,
-0.02996826171875,
0.004985809326171875,
-0.0165557861328125,
0.01003265380859375,
-0.007549285888671875,
0.0154876708984375,
-0.05902099609375,
0.0826416015625,
0.0172271728515625,
-0.02789306640625,
0.00244140625,
-0.0693359375,
-0.030609130859375,
-0.0036678314208984375,
0.01409912109375,
-0.0443115234375,
-0.006175994873046875,
0.0197601318359375,
0.019927978515625,
-0.03985595703125,
0.0095367431640625,
-0.026275634765625,
-0.0264739990234375,
0.01702880859375,
0.0166473388671875,
0.0653076171875,
0.041412353515625,
0.0096282958984375,
0.03265380859375,
-0.0506591796875,
0.01309967041015625,
0.022918701171875,
-0.01253509521484375,
-0.00775146484375,
-0.0193634033203125,
0.0185546875,
-0.00913238525390625,
0.048492431640625,
-0.0205841064453125,
0.0543212890625,
0.01331329345703125,
0.031463623046875,
0.06549072265625,
-0.0029239654541015625,
0.01751708984375,
-0.02093505859375,
0.047454833984375,
-0.019256591796875,
0.04620361328125,
0.0006804466247558594,
-0.046234130859375,
-0.04913330078125,
-0.042572021484375,
0.013519287109375,
0.042694091796875,
-0.0194549560546875,
0.0278167724609375,
0.01494598388671875,
-0.05389404296875,
-0.03363037109375,
0.036376953125,
0.020965576171875,
0.03668212890625,
0.0300445556640625,
-0.041748046875,
-0.045745849609375,
-0.05755615234375,
0.0146026611328125,
-0.023834228515625,
-0.0182952880859375,
0.0110321044921875,
0.038909912109375,
-0.0229644775390625,
0.0633544921875,
-0.0653076171875,
-0.01641845703125,
0.002685546875,
0.00778961181640625,
0.013092041015625,
0.039154052734375,
0.0400390625,
-0.040985107421875,
-0.023101806640625,
-0.0079498291015625,
-0.050689697265625,
-0.035308837890625,
0.00429534912109375,
-0.040496826171875,
-0.013580322265625,
0.0177001953125,
-0.061431884765625,
0.03265380859375,
0.030548095703125,
-0.039031982421875,
0.045318603515625,
-0.01036834716796875,
-0.00986480712890625,
-0.06689453125,
0.025421142578125,
-0.0031261444091796875,
-0.01447296142578125,
-0.023834228515625,
0.003719329833984375,
0.012054443359375,
0.0129241943359375,
-0.0216217041015625,
0.052459716796875,
-0.042816162109375,
-0.0007081031799316406,
-0.0269622802734375,
-0.0072479248046875,
0.0142974853515625,
0.016632080078125,
-0.0181427001953125,
0.08074951171875,
0.0222320556640625,
-0.0110321044921875,
0.0443115234375,
0.037017822265625,
-0.0241851806640625,
0.03167724609375,
-0.0908203125,
0.05816650390625,
-0.004062652587890625,
0.0316162109375,
-0.07904052734375,
-0.033660888671875,
0.050567626953125,
-0.007450103759765625,
-0.008392333984375,
-0.022125244140625,
-0.056365966796875,
-0.0198516845703125,
-0.035980224609375,
0.04840087890625,
0.0341796875,
-0.05230712890625,
0.00949859619140625,
0.01334381103515625,
-0.033966064453125,
-0.0230255126953125,
-0.03948974609375,
0.00445556640625,
-0.03472900390625,
-0.0347900390625,
0.0203399658203125,
-0.024871826171875,
-0.030303955078125,
-0.0252838134765625,
0.01480865478515625,
-0.01081085205078125,
0.00528717041015625,
0.04339599609375,
0.040985107421875,
-0.01727294921875,
0.0117034912109375,
0.016632080078125,
-0.00945281982421875,
-0.0055694580078125,
-0.004123687744140625,
0.054779052734375,
-0.01485443115234375,
0.0025424957275390625,
-0.040191650390625,
0.025543212890625,
0.0099945068359375,
-0.0235748291015625,
0.04052734375,
0.042510986328125,
-0.0226898193359375,
0.0003600120544433594,
-0.03369140625,
-0.0003197193145751953,
-0.03802490234375,
-0.007205963134765625,
-0.0118255615234375,
-0.0496826171875,
0.05621337890625,
0.00038123130798339844,
-0.0202484130859375,
0.0284881591796875,
0.0540771484375,
-0.020538330078125,
0.04840087890625,
0.0672607421875,
0.001495361328125,
0.04217529296875,
-0.0150604248046875,
0.00396728515625,
-0.06207275390625,
-0.064208984375,
-0.0633544921875,
-0.0252227783203125,
-0.0305023193359375,
-0.0226593017578125,
0.0167694091796875,
0.026123046875,
-0.031494140625,
0.0266265869140625,
-0.03240966796875,
0.050689697265625,
0.038116455078125,
0.01280975341796875,
0.0233917236328125,
0.00957489013671875,
0.024871826171875,
0.00899505615234375,
-0.021392822265625,
-0.050506591796875,
0.0762939453125,
0.007129669189453125,
0.08807373046875,
0.022216796875,
0.039337158203125,
0.0207672119140625,
0.01800537109375,
-0.05877685546875,
0.029815673828125,
0.006877899169921875,
-0.01433563232421875,
-0.00498199462890625,
-0.00433349609375,
-0.08721923828125,
-0.0246429443359375,
0.00803375244140625,
-0.0657958984375,
0.0182952880859375,
0.025665283203125,
-0.038543701171875,
-0.0093841552734375,
-0.06842041015625,
0.061126708984375,
-0.006927490234375,
-0.01528167724609375,
-0.00980377197265625,
-0.047882080078125,
0.0178985595703125,
0.0044708251953125,
-0.038299560546875,
-0.028778076171875,
-0.0281829833984375,
0.059844970703125,
-0.050750732421875,
0.06585693359375,
-0.01849365234375,
-0.0115203857421875,
0.04156494140625,
-0.0024433135986328125,
0.0491943359375,
0.041656494140625,
-0.0088348388671875,
0.0095672607421875,
-0.0306243896484375,
-0.04541015625,
-0.03741455078125,
0.05157470703125,
-0.05780029296875,
-0.0283966064453125,
-0.025665283203125,
-0.054931640625,
0.004680633544921875,
0.0018911361694335938,
0.0088348388671875,
0.006015777587890625,
-0.015228271484375,
-0.00412750244140625,
0.03607177734375,
0.020355224609375,
0.0340576171875,
0.020599365234375,
-0.0007290840148925781,
-0.030731201171875,
0.039337158203125,
-0.0011320114135742188,
-0.0173187255859375,
0.0139923095703125,
0.009002685546875,
-0.036468505859375,
-0.034454345703125,
-0.042999267578125,
0.02154541015625,
-0.04522705078125,
-0.045379638671875,
-0.0255584716796875,
0.00783538818359375,
-0.0308380126953125,
-0.009735107421875,
0.0020427703857421875,
-0.054595947265625,
-0.060699462890625,
-0.015960693359375,
0.0704345703125,
0.060455322265625,
-0.0069732666015625,
0.06878662109375,
-0.0196533203125,
0.024932861328125,
0.029205322265625,
0.00978851318359375,
-0.014739990234375,
-0.031585693359375,
-0.01337432861328125,
-0.01348114013671875,
-0.039764404296875,
-0.0386962890625,
0.0200653076171875,
0.0139312744140625,
0.0238037109375,
0.037261962890625,
-0.00807952880859375,
0.060516357421875,
-0.00968170166015625,
0.055023193359375,
0.01812744140625,
-0.04217529296875,
0.0628662109375,
-0.032989501953125,
0.024932861328125,
0.0435791015625,
0.028900146484375,
-0.031829833984375,
-0.00016355514526367188,
-0.0268707275390625,
-0.0760498046875,
0.034454345703125,
0.00975799560546875,
0.00832366943359375,
0.004787445068359375,
0.0214996337890625,
0.042144775390625,
0.0212554931640625,
-0.0386962890625,
-0.013580322265625,
-0.0377197265625,
-0.0212860107421875,
-0.000865936279296875,
-0.02825927734375,
-0.034210205078125,
-0.00970458984375,
0.032318115234375,
-0.0244903564453125,
0.02911376953125,
-0.01009368896484375,
-0.0039043426513671875,
-0.005313873291015625,
-0.0016269683837890625,
0.05950927734375,
0.039947509765625,
-0.0215606689453125,
-0.01212310791015625,
-0.005565643310546875,
-0.052490234375,
0.0083770751953125,
0.0194549560546875,
-0.00958251953125,
-0.01861572265625,
0.0260467529296875,
0.0653076171875,
-0.01415252685546875,
-0.041259765625,
0.01233673095703125,
-0.0037403106689453125,
0.0175628662109375,
-0.033233642578125,
0.0215606689453125,
-0.00885009765625,
0.02984619140625,
0.031524658203125,
0.004337310791015625,
0.01052093505859375,
-0.044189453125,
-0.020233154296875,
0.00948333740234375,
0.0125885009765625,
-0.0364990234375,
0.0626220703125,
0.02215576171875,
-0.0231781005859375,
0.0712890625,
-0.0184478759765625,
-0.0011205673217773438,
0.05804443359375,
0.06024169921875,
0.068359375,
-0.00257110595703125,
0.0214080810546875,
0.025115966796875,
0.0157470703125,
-0.004856109619140625,
0.043121337890625,
-0.0271148681640625,
-0.01629638671875,
-0.004093170166015625,
-0.02947998046875,
-0.036895751953125,
0.005641937255859375,
-0.05377197265625,
0.0231475830078125,
-0.060272216796875,
-0.00887298583984375,
-0.01531219482421875,
0.01190185546875,
-0.06744384765625,
0.01200103759765625,
-0.01425933837890625,
0.0789794921875,
-0.05767822265625,
0.072509765625,
0.0535888671875,
-0.029754638671875,
-0.055511474609375,
0.007663726806640625,
0.0130157470703125,
-0.07733154296875,
0.0321044921875,
0.02105712890625,
-0.014923095703125,
-0.01334381103515625,
-0.06060791015625,
-0.05584716796875,
0.10516357421875,
0.032989501953125,
-0.0506591796875,
0.00649261474609375,
-0.0104522705078125,
0.03460693359375,
-0.0289459228515625,
0.036834716796875,
0.046234130859375,
0.049530029296875,
-0.01052093505859375,
-0.0684814453125,
0.0160980224609375,
-0.035919189453125,
0.00434112548828125,
-0.01052093505859375,
-0.087890625,
0.06561279296875,
-0.045135498046875,
-0.007198333740234375,
0.053680419921875,
0.07000732421875,
0.0217742919921875,
0.037841796875,
0.03912353515625,
0.035736083984375,
0.07916259765625,
-0.031158447265625,
0.06634521484375,
0.0231781005859375,
0.0212860107421875,
0.0843505859375,
-0.03179931640625,
0.040191650390625,
0.0565185546875,
-0.0190277099609375,
0.060882568359375,
0.06353759765625,
-0.018524169921875,
0.0517578125,
0.00432586669921875,
-0.0172882080078125,
-0.00004655122756958008,
-0.0252838134765625,
-0.02984619140625,
0.041717529296875,
0.00833892822265625,
0.00048041343688964844,
-0.01322174072265625,
-0.01186370849609375,
0.0221099853515625,
-0.002681732177734375,
-0.0205230712890625,
0.040985107421875,
-0.0003123283386230469,
-0.027984619140625,
0.033233642578125,
0.00420379638671875,
0.047271728515625,
-0.05413818359375,
-0.00041604042053222656,
-0.052398681640625,
-0.0202789306640625,
-0.0321044921875,
-0.06658935546875,
0.00894927978515625,
0.026397705078125,
-0.034576416015625,
-0.0007867813110351562,
0.046661376953125,
-0.018157958984375,
-0.0230712890625,
0.01094818115234375,
0.033294677734375,
0.0240631103515625,
0.00830078125,
-0.043731689453125,
0.02349853515625,
-0.01058197021484375,
-0.033203125,
0.0113525390625,
0.01480865478515625,
-0.04071044921875,
0.04852294921875,
0.054962158203125,
-0.007587432861328125,
-0.0122833251953125,
0.0244140625,
0.0709228515625,
-0.05450439453125,
-0.048828125,
-0.042694091796875,
0.046173095703125,
-0.010833740234375,
-0.052764892578125,
0.042327880859375,
0.057830810546875,
0.05865478515625,
-0.029754638671875,
0.034454345703125,
-0.0275726318359375,
0.002788543701171875,
-0.051239013671875,
0.050201416015625,
-0.0287933349609375,
0.003726959228515625,
0.006378173828125,
-0.05389404296875,
-0.017669677734375,
0.042816162109375,
-0.0136260986328125,
0.01727294921875,
0.043548583984375,
0.08892822265625,
-0.01096343994140625,
-0.0046844482421875,
-0.01302337646484375,
0.0017385482788085938,
0.00803375244140625,
0.02801513671875,
0.0478515625,
-0.01409912109375,
0.050079345703125,
-0.0289306640625,
-0.01041412353515625,
-0.031494140625,
-0.06854248046875,
-0.04803466796875,
-0.041900634765625,
-0.0234222412109375,
-0.0245208740234375,
0.0175628662109375,
0.06353759765625,
0.0535888671875,
-0.052398681640625,
-0.0260467529296875,
0.0157928466796875,
0.00909423828125,
-0.0142974853515625,
-0.01285552978515625,
0.02593994140625,
0.00897216796875,
-0.056854248046875,
0.0340576171875,
0.004150390625,
0.0264434814453125,
0.008331298828125,
-0.009063720703125,
0.0089874267578125,
-0.011077880859375,
0.036407470703125,
0.044036865234375,
-0.034637451171875,
-0.02545166015625,
-0.01522064208984375,
-0.0177001953125,
0.02374267578125,
0.06109619140625,
-0.064697265625,
0.007404327392578125,
0.0243377685546875,
-0.006717681884765625,
0.032745361328125,
0.012908935546875,
0.02154541015625,
-0.052947998046875,
0.04547119140625,
-0.00339508056640625,
0.03131103515625,
0.0343017578125,
-0.0345458984375,
0.05523681640625,
0.01020050048828125,
-0.041595458984375,
-0.059600830078125,
-0.0037326812744140625,
-0.11370849609375,
0.016510009765625,
0.0733642578125,
-0.006504058837890625,
-0.02978515625,
0.011138916015625,
-0.045654296875,
0.0254669189453125,
-0.061279296875,
0.0809326171875,
0.01611328125,
-0.01531219482421875,
0.003932952880859375,
-0.0241851806640625,
0.0139617919921875,
0.01480865478515625,
-0.07745361328125,
-0.0081634521484375,
0.03680419921875,
0.0308380126953125,
-0.00838470458984375,
0.0478515625,
0.0014085769653320312,
0.0408935546875,
-0.004878997802734375,
0.01280975341796875,
-0.039520263671875,
-0.0438232421875,
-0.0249786376953125,
-0.0031337738037109375,
0.01078033447265625,
-0.0304107666015625
]
] |
Tevatron/msmarco-passage | 2023-07-18T07:34:33.000Z | [
"region:us"
] | Tevatron | null | @misc{bajaj2018ms,
title={MS MARCO: A Human Generated MAchine Reading COmprehension Dataset},
author={Payal Bajaj and Daniel Campos and Nick Craswell and Li Deng and Jianfeng Gao and Xiaodong Liu
and Rangan Majumder and Andrew McNamara and Bhaskar Mitra and Tri Nguyen and Mir Rosenberg and Xia Song
and Alina Stoica and Saurabh Tiwary and Tong Wang},
year={2018},
eprint={1611.09268},
archivePrefix={arXiv},
primaryClass={cs.CL}
} | 3 | 1,156 | 2022-03-02T23:29:22 | Entry not found | 15 | [
[
-0.02142333984375,
-0.01495361328125,
0.05718994140625,
0.0288238525390625,
-0.035064697265625,
0.046539306640625,
0.052520751953125,
0.005062103271484375,
0.0513916015625,
0.016998291015625,
-0.052093505859375,
-0.014984130859375,
-0.060394287109375,
0.03790283203125,
-0.0264892578125,
0.038421630859375,
-0.0095977783203125,
-0.00711822509765625,
0.01873779296875,
-0.01837158203125,
-0.03582763671875,
-0.0244903564453125,
-0.0789794921875,
0.004055023193359375,
0.035308837890625,
0.049346923828125,
0.05035400390625,
0.0242767333984375,
0.042694091796875,
0.0260772705078125,
-0.015380859375,
0.03204345703125,
-0.0027446746826171875,
0.00015556812286376953,
-0.0233917236328125,
-0.03662109375,
-0.018951416015625,
0.00502777099609375,
0.07275390625,
0.064208984375,
-0.018890380859375,
0.003520965576171875,
-0.0203399658203125,
0.02197265625,
-0.032958984375,
0.0202484130859375,
-0.0014934539794921875,
0.01081085205078125,
-0.046722412109375,
-0.0367431640625,
0.000835418701171875,
-0.048828125,
0.01190185546875,
-0.0457763671875,
0.054840087890625,
0.0123291015625,
0.0765380859375,
0.00984954833984375,
-0.0306854248046875,
-0.054168701171875,
-0.043426513671875,
0.037872314453125,
-0.0216827392578125,
0.0263214111328125,
0.046600341796875,
-0.0032253265380859375,
-0.06512451171875,
-0.044769287109375,
-0.0308074951171875,
0.0194091796875,
0.0234832763671875,
-0.0226593017578125,
-0.0116119384765625,
-0.020294189453125,
0.01049041748046875,
0.008514404296875,
-0.0321044921875,
-0.036773681640625,
-0.036285400390625,
-0.02630615234375,
0.0411376953125,
0.023101806640625,
0.0161285400390625,
-0.01251983642578125,
-0.02142333984375,
0.005847930908203125,
-0.02764892578125,
0.0225830078125,
0.04205322265625,
0.04718017578125,
-0.038543701171875,
0.03717041015625,
-0.0032939910888671875,
0.049346923828125,
0.007602691650390625,
-0.018218994140625,
0.0275115966796875,
-0.009765625,
0.0036678314208984375,
0.028045654296875,
0.0209197998046875,
0.018829345703125,
-0.021728515625,
0.01348114013671875,
-0.021331787109375,
-0.0202484130859375,
-0.01483917236328125,
-0.0195770263671875,
-0.023834228515625,
0.03643798828125,
-0.021942138671875,
-0.028411865234375,
0.07586669921875,
-0.02783203125,
-0.048492431640625,
0.0219879150390625,
0.0269622802734375,
-0.006587982177734375,
-0.0246429443359375,
-0.0034542083740234375,
-0.05609130859375,
-0.0005054473876953125,
0.049713134765625,
-0.047760009765625,
0.0223541259765625,
0.031402587890625,
0.0491943359375,
0.01305389404296875,
-0.00927734375,
-0.0285186767578125,
0.0197296142578125,
-0.057464599609375,
0.041961669921875,
-0.013336181640625,
-0.066650390625,
0.007389068603515625,
0.059539794921875,
-0.0250701904296875,
-0.0802001953125,
0.07037353515625,
-0.04571533203125,
0.010650634765625,
-0.044921875,
-0.0097198486328125,
-0.004718780517578125,
-0.00031113624572753906,
-0.040435791015625,
0.05023193359375,
0.0389404296875,
-0.033172607421875,
0.01421356201171875,
-0.0172576904296875,
-0.025970458984375,
0.0257720947265625,
-0.00528717041015625,
-0.01448822021484375,
0.04736328125,
-0.04412841796875,
-0.0178985595703125,
0.01953125,
0.0157012939453125,
-0.0236968994140625,
-0.0526123046875,
0.00560760498046875,
-0.0038547515869140625,
0.10296630859375,
-0.00258636474609375,
-0.0238037109375,
-0.045074462890625,
-0.076416015625,
-0.004673004150390625,
0.045684814453125,
-0.061004638671875,
-0.01849365234375,
-0.0030841827392578125,
-0.0173797607421875,
0.005954742431640625,
0.049041748046875,
-0.07427978515625,
0.0187530517578125,
-0.003398895263671875,
-0.01519012451171875,
0.054840087890625,
0.0102386474609375,
0.0164031982421875,
0.0099334716796875,
0.0285186767578125,
0.035003662109375,
0.00737762451171875,
0.045318603515625,
-0.023040771484375,
-0.0643310546875,
0.040863037109375,
0.016754150390625,
0.053924560546875,
-0.03314208984375,
0.017791748046875,
0.0179290771484375,
-0.0226287841796875,
-0.037750244140625,
-0.0205841064453125,
0.005970001220703125,
0.0099334716796875,
0.007396697998046875,
-0.037933349609375,
-0.04364013671875,
-0.06427001953125,
-0.0090179443359375,
-0.0286102294921875,
-0.023712158203125,
0.013916015625,
0.0384521484375,
-0.0794677734375,
0.0274200439453125,
-0.051116943359375,
-0.04669189453125,
-0.00070953369140625,
-0.0128326416015625,
0.050079345703125,
0.0286865234375,
0.033416748046875,
-0.042449951171875,
-0.037628173828125,
-0.0148773193359375,
-0.06854248046875,
-0.0088348388671875,
0.0164642333984375,
0.0203094482421875,
-0.0088958740234375,
-0.0181884765625,
-0.032318115234375,
0.0537109375,
0.009765625,
-0.0357666015625,
0.034637451171875,
-0.0200347900390625,
0.01142120361328125,
-0.042327880859375,
-0.004596710205078125,
-0.043914794921875,
-0.0000712275505065918,
-0.0239410400390625,
-0.038055419921875,
0.00982666015625,
0.004673004150390625,
-0.01064300537109375,
0.01910400390625,
-0.060333251953125,
-0.00007289648056030273,
-0.04937744140625,
0.025177001953125,
0.004238128662109375,
-0.020904541015625,
-0.0011682510375976562,
0.06634521484375,
0.0516357421875,
-0.0254974365234375,
0.047882080078125,
0.029449462890625,
0.01263427734375,
0.05059814453125,
-0.012420654296875,
0.01093292236328125,
-0.034820556640625,
-0.00807952880859375,
-0.058990478515625,
-0.07281494140625,
0.048553466796875,
-0.040557861328125,
0.02423095703125,
-0.028411865234375,
0.0172119140625,
-0.0458984375,
-0.0025501251220703125,
0.03192138671875,
-0.0039520263671875,
-0.045562744140625,
0.03472900390625,
0.0301055908203125,
-0.0134124755859375,
-0.04388427734375,
-0.03515625,
0.026153564453125,
0.040863037109375,
-0.01085662841796875,
0.004566192626953125,
0.0099334716796875,
-0.036102294921875,
-0.0027256011962890625,
-0.02569580078125,
-0.0303802490234375,
0.0036296844482421875,
0.00864410400390625,
-0.00036525726318359375,
-0.02685546875,
-0.005741119384765625,
-0.0238037109375,
-0.03094482421875,
0.01453399658203125,
0.019989013671875,
-0.002742767333984375,
-0.028289794921875,
-0.0240020751953125,
-0.05889892578125,
0.044525146484375,
0.035614013671875,
0.0034942626953125,
0.05010986328125,
0.01114654541015625,
-0.053192138671875,
-0.00897216796875,
-0.01168060302734375,
0.017913818359375,
-0.037078857421875,
0.0092010498046875,
-0.0008668899536132812,
-0.00418853759765625,
0.0174713134765625,
0.016876220703125,
-0.028564453125,
0.06158447265625,
-0.017333984375,
-0.0238189697265625,
0.052825927734375,
0.03961181640625,
0.03289794921875,
0.01094818115234375,
-0.00296783447265625,
0.059783935546875,
-0.07940673828125,
-0.043548583984375,
-0.0491943359375,
-0.01053619384765625,
-0.0288543701171875,
-0.002132415771484375,
0.041534423828125,
0.0192413330078125,
-0.00885772705078125,
0.03155517578125,
-0.0347900390625,
0.02362060546875,
0.06707763671875,
0.0236968994140625,
0.0228118896484375,
-0.05023193359375,
-0.016693115234375,
-0.00928497314453125,
-0.06634521484375,
-0.0174713134765625,
0.058837890625,
0.01509857177734375,
0.056060791015625,
0.03973388671875,
0.0450439453125,
0.00905609130859375,
0.0167694091796875,
-0.020294189453125,
0.0260009765625,
0.029083251953125,
-0.069091796875,
-0.028350830078125,
0.0014123916625976562,
-0.06439208984375,
-0.00945281982421875,
-0.0023097991943359375,
-0.02825927734375,
0.05096435546875,
0.00001621246337890625,
-0.0270538330078125,
0.05126953125,
-0.0301971435546875,
0.050201416015625,
-0.02972412109375,
-0.0017986297607421875,
0.031158447265625,
-0.046905517578125,
0.0310516357421875,
0.00855255126953125,
0.041168212890625,
-0.0010528564453125,
-0.0027217864990234375,
0.047119140625,
-0.060577392578125,
0.0168914794921875,
-0.0421142578125,
0.01483917236328125,
0.01611328125,
0.03424072265625,
0.039581298828125,
0.02899169921875,
0.006717681884765625,
-0.015899658203125,
0.002716064453125,
-0.0546875,
-0.01396942138671875,
0.046295166015625,
-0.047698974609375,
-0.045562744140625,
-0.08203125,
0.009613037109375,
0.018157958984375,
0.02587890625,
0.052825927734375,
0.03790283203125,
0.0085601806640625,
0.045196533203125,
0.06561279296875,
-0.004543304443359375,
0.06085205078125,
0.0214385986328125,
0.006092071533203125,
-0.014556884765625,
0.046661376953125,
0.0176544189453125,
-0.0163726806640625,
-0.007904052734375,
0.01389312744140625,
-0.00732421875,
-0.039276123046875,
-0.033172607421875,
0.024566650390625,
-0.044677734375,
-0.01213836669921875,
-0.041412353515625,
-0.04010009765625,
-0.033905029296875,
0.0045928955078125,
-0.047454833984375,
0.0159149169921875,
-0.051422119140625,
-0.007049560546875,
0.002857208251953125,
0.06494140625,
-0.0390625,
0.03851318359375,
-0.07452392578125,
0.0128173828125,
-0.00527191162109375,
0.052581787109375,
0.014190673828125,
-0.048736572265625,
-0.0263824462890625,
-0.007659912109375,
-0.02471923828125,
-0.090087890625,
0.014190673828125,
-0.0163116455078125,
0.01534271240234375,
0.040771484375,
0.00926971435546875,
0.034881591796875,
-0.0227813720703125,
0.046600341796875,
-0.0037975311279296875,
-0.046875,
0.0526123046875,
-0.03338623046875,
0.032958984375,
0.0648193359375,
0.035400390625,
-0.052978515625,
0.0023746490478515625,
-0.069091796875,
-0.039886474609375,
0.0254974365234375,
0.0079193115234375,
-0.0023937225341796875,
-0.044219970703125,
-0.0035762786865234375,
-0.010711669921875,
0.040069580078125,
-0.0689697265625,
-0.052154541015625,
0.0171051025390625,
0.035064697265625,
0.005401611328125,
-0.037506103515625,
0.0138397216796875,
-0.0361328125,
0.0706787109375,
0.02996826171875,
0.021728515625,
0.0557861328125,
0.0308380126953125,
-0.0253753662109375,
0.006130218505859375,
0.05084228515625,
0.04425048828125,
-0.0347900390625,
-0.01934814453125,
-0.005855560302734375,
-0.060577392578125,
0.003936767578125,
0.007411956787109375,
-0.0008912086486816406,
0.06024169921875,
0.0384521484375,
0.0168304443359375,
0.02996826171875,
-0.0482177734375,
0.05877685546875,
-0.00989532470703125,
-0.00823974609375,
-0.07080078125,
0.01291656494140625,
-0.0159149169921875,
0.033233642578125,
0.0667724609375,
0.0347900390625,
-0.0031642913818359375,
-0.05401611328125,
-0.0009369850158691406,
0.04608154296875,
-0.04705810546875,
-0.0115814208984375,
0.062744140625,
0.0255584716796875,
-0.0859375,
0.07342529296875,
-0.03570556640625,
-0.037200927734375,
0.060546875,
0.03466796875,
0.07452392578125,
-0.0293426513671875,
0.00003081560134887695,
0.0176544189453125,
0.0274200439453125,
0.0360107421875,
0.0721435546875,
0.0286407470703125,
-0.052642822265625,
0.05859375,
-0.0164031982421875,
-0.0267486572265625,
-0.0035648345947265625,
-0.0284271240234375,
0.01119232177734375,
-0.02923583984375,
-0.007114410400390625,
-0.0228271484375,
0.018951416015625,
-0.046875,
0.028411865234375,
-0.005550384521484375,
0.05743408203125,
-0.0567626953125,
0.03131103515625,
0.042144775390625,
-0.022125244140625,
-0.056396484375,
-0.017364501953125,
-0.00762176513671875,
-0.04241943359375,
0.0200347900390625,
-0.030242919921875,
0.0029392242431640625,
0.006404876708984375,
-0.0430908203125,
-0.078125,
0.060333251953125,
-0.042449951171875,
-0.0184783935546875,
0.013580322265625,
-0.007625579833984375,
0.0191497802734375,
-0.016754150390625,
0.0007257461547851562,
0.0277862548828125,
0.0496826171875,
0.0188751220703125,
-0.05126953125,
-0.0245208740234375,
0.00009232759475708008,
-0.0295562744140625,
0.05035400390625,
-0.039825439453125,
0.07861328125,
-0.036895751953125,
-0.003948211669921875,
0.029449462890625,
0.0163726806640625,
0.01395416259765625,
0.04400634765625,
0.0095672607421875,
0.04827880859375,
0.071044921875,
-0.0270538330078125,
0.0584716796875,
0.01751708984375,
0.031463623046875,
0.048004150390625,
-0.04302978515625,
0.049835205078125,
0.02105712890625,
-0.037689208984375,
0.061248779296875,
0.085693359375,
-0.01041412353515625,
0.0535888671875,
0.0034084320068359375,
-0.07171630859375,
0.0216217041015625,
-0.01374053955078125,
-0.049957275390625,
0.0208892822265625,
0.0126190185546875,
-0.045928955078125,
-0.038299560546875,
-0.015960693359375,
-0.023651123046875,
-0.007659912109375,
-0.0506591796875,
0.04461669921875,
-0.0011453628540039062,
-0.033905029296875,
0.01251220703125,
0.01910400390625,
0.01149749755859375,
-0.0347900390625,
-0.0019464492797851562,
-0.01515960693359375,
0.0176544189453125,
-0.03765869140625,
-0.03472900390625,
0.0379638671875,
-0.02154541015625,
-0.035430908203125,
0.01204681396484375,
0.050628662109375,
-0.01123046875,
-0.02996826171875,
0.0215301513671875,
0.04620361328125,
0.0110321044921875,
0.0281982421875,
-0.0155792236328125,
0.0162506103515625,
-0.005329132080078125,
-0.0044403076171875,
0.01837158203125,
0.0228729248046875,
0.0148773193359375,
0.0295562744140625,
0.028717041015625,
-0.0012340545654296875,
-0.00710296630859375,
-0.0254058837890625,
0.027374267578125,
-0.06329345703125,
-0.03790283203125,
-0.041839599609375,
0.0181732177734375,
-0.0015535354614257812,
-0.07183837890625,
0.0274810791015625,
0.0955810546875,
0.0687255859375,
-0.031585693359375,
0.07086181640625,
-0.01446533203125,
0.06365966796875,
0.0275726318359375,
0.03594970703125,
-0.03997802734375,
0.0025539398193359375,
-0.0289459228515625,
-0.0714111328125,
-0.02374267578125,
0.0301666259765625,
-0.0015287399291992188,
-0.0227813720703125,
0.057891845703125,
0.039031982421875,
-0.0222015380859375,
-0.00782012939453125,
0.0031948089599609375,
-0.0019931793212890625,
-0.00821685791015625,
0.03411865234375,
0.050750732421875,
-0.06201171875,
-0.007076263427734375,
-0.01432037353515625,
-0.0423583984375,
-0.03350830078125,
-0.06390380859375,
-0.00856781005859375,
-0.01062774658203125,
0.0023365020751953125,
-0.03759765625,
0.00015866756439208984,
0.0802001953125,
0.037689208984375,
-0.07373046875,
-0.035186767578125,
0.0223846435546875,
0.0260162353515625,
-0.012420654296875,
-0.01605224609375,
0.0197906494140625,
0.01019287109375,
-0.039215087890625,
0.045654296875,
0.0537109375,
0.01389312744140625,
0.0130157470703125,
0.01055908203125,
-0.05462646484375,
-0.00989532470703125,
0.0115509033203125,
0.062744140625,
-0.0623779296875,
-0.0472412109375,
-0.0021190643310546875,
-0.0180206298828125,
-0.0038356781005859375,
0.0113525390625,
-0.0269012451171875,
0.034423828125,
0.0229644775390625,
0.03314208984375,
0.003719329833984375,
-0.00362396240234375,
0.035888671875,
-0.06011962890625,
0.006259918212890625,
0.0274200439453125,
0.02752685546875,
-0.0265655517578125,
-0.039215087890625,
0.044586181640625,
0.06683349609375,
-0.043731689453125,
-0.0579833984375,
-0.0131683349609375,
-0.06646728515625,
0.0027980804443359375,
0.04486083984375,
0.03326416015625,
-0.031890869140625,
-0.027679443359375,
-0.037261962890625,
-0.00832366943359375,
-0.0090484619140625,
0.050567626953125,
0.07830810546875,
-0.04931640625,
0.00530242919921875,
-0.06890869140625,
0.04376220703125,
-0.0160675048828125,
-0.0229339599609375,
-0.0322265625,
0.0254364013671875,
0.0233917236328125,
0.02923583984375,
0.040771484375,
0.00934600830078125,
0.0552978515625,
0.020721435546875,
-0.01129150390625,
0.017913818359375,
-0.030242919921875,
-0.0019140243530273438,
-0.0038604736328125,
0.02056884765625,
-0.068115234375
]
] |
minskiter/weibo | 2023-07-22T13:49:08.000Z | [
"size_categories:1K<n<10K",
"language:zh",
"license:apache-2.0",
"social",
"region:us"
] | minskiter | The Weibo NER dataset is a Chinese Named Entity Recognition dataset
drawn from the social media website Sina Weibo. | @inproceedings{peng-dredze-2015-named,
title = "Named Entity Recognition for {C}hinese
Social Media with Jointly Trained Embeddings",
author = "Peng, Nanyun and Dredze, Mark",
booktitle = "Proceedings of the 2015 Conference on
Empirical Methods in Natural Language Processing",
month = sep,
year = "2015",
address = "Lisbon, Portugal",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/D15-1064",
doi = "10.18653/v1/D15-1064",
pages = "548--554",
} | 0 | 1,156 | 2023-07-17T07:31:25 | ---
license: apache-2.0
dataset_info:
features:
- name: text
sequence: string
- name: labels
sequence:
class_label:
names:
'0': O
'1': B-PER.NAM
'2': I-PER.NAM
'3': E-PER.NAM
'4': S-PER.NAM
'5': B-ORG.NAM
'6': I-ORG.NAM
'7': E-ORG.NAM
'8': S-ORG.NAM
'9': B-LOC.NAM
'10': I-LOC.NAM
'11': E-LOC.NAM
'12': S-LOC.NAM
'13': B-GPE.NAM
'14': I-GPE.NAM
'15': E-GPE.NAM
'16': S-GPE.NAM
'17': B-PER.NOM
'18': I-PER.NOM
'19': E-PER.NOM
'20': S-PER.NOM
'21': B-ORG.NOM
'22': I-ORG.NOM
'23': E-ORG.NOM
'24': S-ORG.NOM
'25': B-LOC.NOM
'26': I-LOC.NOM
'27': E-LOC.NOM
'28': S-LOC.NOM
'29': B-GPE.NOM
'30': I-GPE.NOM
'31': E-GPE.NOM
'32': S-GPE.NOM
splits:
- name: train
num_bytes: 1095833
num_examples: 1350
- name: validation
num_bytes: 215953
num_examples: 270
- name: test
num_bytes: 220694
num_examples: 270
download_size: 217348
dataset_size: 1532480
language:
- zh
tags:
- social
size_categories:
- 1K<n<10K
---
### How to loading dataset?
```python
from datasets import load_dataset
datasets = load_dataset("minskiter/weibo",save_infos=True)
train,validation,test = datasets['train'],datasets['validation'],datasets['test']
# convert label to str
print(train.features['labels'].feature.int2str(0))
```
### Force Update
```python
from datasets import load_dataset
datasets = load_dataset("minskiter/weibo", download_mode="force_redownload")
```
### CHANGE LOGS
- 21/7/2023 v1.0.2 Fix data format.
- 16/7/2023 v1.0.0 Publish weibo data. | 1,825 | [
[
-0.011962890625,
-0.0113067626953125,
-0.0151519775390625,
0.043487548828125,
-0.0185546875,
-0.0047454833984375,
-0.004032135009765625,
-0.017852783203125,
0.00968170166015625,
0.03955078125,
-0.031707763671875,
-0.0330810546875,
-0.0301513671875,
0.0004992485046386719,
-0.026153564453125,
0.1087646484375,
-0.0185546875,
0.01351165771484375,
-0.0113372802734375,
-0.02545166015625,
-0.032501220703125,
-0.03216552734375,
-0.04840087890625,
-0.0282745361328125,
0.02374267578125,
0.02362060546875,
0.033599853515625,
0.02984619140625,
0.044342041015625,
0.0222625732421875,
0.007518768310546875,
0.0005240440368652344,
-0.0341796875,
-0.01459503173828125,
-0.005706787109375,
-0.033843994140625,
-0.0210113525390625,
-0.00218963623046875,
0.042877197265625,
0.034271240234375,
-0.01212310791015625,
0.0230712890625,
0.00782012939453125,
0.040863037109375,
-0.025909423828125,
0.01050567626953125,
-0.03033447265625,
-0.0140380859375,
0.00007843971252441406,
0.00841522216796875,
-0.0195159912109375,
-0.050628662109375,
0.00070953369140625,
-0.06158447265625,
0.029266357421875,
0.0186767578125,
0.10552978515625,
0.01141357421875,
-0.02166748046875,
-0.0017108917236328125,
-0.037994384765625,
0.06268310546875,
-0.0714111328125,
-0.010711669921875,
0.046600341796875,
0.032958984375,
-0.0328369140625,
-0.0726318359375,
-0.0187835693359375,
-0.0018625259399414062,
-0.004161834716796875,
-0.017303466796875,
0.0157012939453125,
-0.02618408203125,
0.039398193359375,
0.018280029296875,
-0.026397705078125,
-0.00551605224609375,
-0.070556640625,
-0.0165863037109375,
0.0809326171875,
0.0015192031860351562,
0.027496337890625,
-0.0051422119140625,
-0.027374267578125,
-0.0325927734375,
-0.0220947265625,
-0.00391387939453125,
0.0194091796875,
0.0284881591796875,
-0.03936767578125,
0.0121917724609375,
-0.0298614501953125,
0.03594970703125,
-0.0098114013671875,
0.00299072265625,
0.068603515625,
-0.00676727294921875,
-0.035888671875,
0.00826263427734375,
0.07708740234375,
0.041259765625,
0.0183868408203125,
0.0235443115234375,
-0.016754150390625,
-0.03424072265625,
0.01053619384765625,
-0.046051025390625,
-0.046600341796875,
0.0482177734375,
-0.0290374755859375,
-0.049285888671875,
0.032012939453125,
-0.046478271484375,
-0.04638671875,
0.0128173828125,
0.045928955078125,
-0.0301971435546875,
-0.0195159912109375,
0.00508880615234375,
-0.0164794921875,
0.0126800537109375,
0.038543701171875,
-0.07537841796875,
0.01212310791015625,
0.0306396484375,
0.047332763671875,
0.0341796875,
-0.0225982666015625,
-0.0237884521484375,
-0.01247406005859375,
-0.0225830078125,
0.0523681640625,
0.02294921875,
-0.01117706298828125,
0.007720947265625,
0.0340576171875,
0.01465606689453125,
-0.0452880859375,
0.03167724609375,
-0.03643798828125,
0.00676727294921875,
-0.04705810546875,
-0.0156402587890625,
-0.041107177734375,
0.031707763671875,
-0.0491943359375,
0.0914306640625,
0.034820556640625,
-0.0703125,
0.022796630859375,
-0.0352783203125,
-0.0570068359375,
0.0003070831298828125,
0.00927734375,
-0.041656494140625,
-0.010467529296875,
-0.0033245086669921875,
0.0156402587890625,
0.015655517578125,
0.0260009765625,
-0.0428466796875,
-0.0295867919921875,
0.032073974609375,
-0.0061798095703125,
0.08013916015625,
0.006824493408203125,
0.0018892288208007812,
-0.00818634033203125,
-0.061492919921875,
-0.002025604248046875,
0.01397705078125,
-0.03509521484375,
-0.00513458251953125,
0.005260467529296875,
0.032958984375,
0.0081024169921875,
0.04803466796875,
-0.053314208984375,
0.04278564453125,
-0.0130157470703125,
0.031829833984375,
0.061004638671875,
-0.014495849609375,
-0.006542205810546875,
-0.03558349609375,
-0.00400543212890625,
0.0279541015625,
0.0241546630859375,
0.0200347900390625,
-0.024505615234375,
-0.035400390625,
0.0171661376953125,
0.048614501953125,
0.04150390625,
-0.044403076171875,
0.0452880859375,
-0.01201629638671875,
-0.05316162109375,
-0.03326416015625,
0.0115966796875,
-0.01953125,
0.0166473388671875,
0.0224609375,
0.001476287841796875,
-0.04339599609375,
-0.05474853515625,
0.020843505859375,
-0.007335662841796875,
-0.0011157989501953125,
0.0283660888671875,
0.06640625,
-0.0164947509765625,
0.058624267578125,
-0.050537109375,
-0.0224761962890625,
-0.0247039794921875,
0.014251708984375,
0.0494384765625,
0.0546875,
0.05584716796875,
-0.0631103515625,
-0.0276947021484375,
-0.00914764404296875,
-0.05950927734375,
-0.0006928443908691406,
-0.0206756591796875,
0.0103759765625,
0.006076812744140625,
0.0014333724975585938,
-0.00710296630859375,
0.03363037109375,
0.040557861328125,
-0.028167724609375,
0.05084228515625,
-0.0285491943359375,
0.024383544921875,
-0.08172607421875,
0.00620269775390625,
0.0003809928894042969,
-0.015655517578125,
-0.01324462890625,
-0.026092529296875,
0.009246826171875,
-0.0017557144165039062,
-0.0653076171875,
0.04913330078125,
-0.01275634765625,
-0.0149688720703125,
-0.0092926025390625,
0.0218353271484375,
0.024200439453125,
0.01373291015625,
-0.050872802734375,
0.03375244140625,
0.07476806640625,
-0.06524658203125,
0.07977294921875,
0.044403076171875,
-0.039642333984375,
-0.004913330078125,
-0.04913330078125,
-0.0012359619140625,
-0.0132904052734375,
0.03082275390625,
-0.08319091796875,
-0.040863037109375,
0.0462646484375,
-0.037384033203125,
0.022735595703125,
-0.014923095703125,
-0.040618896484375,
-0.034912109375,
-0.04022216796875,
0.007404327392578125,
0.03424072265625,
-0.0411376953125,
0.016448974609375,
0.0166168212890625,
0.01276397705078125,
-0.044647216796875,
-0.0750732421875,
-0.0004487037658691406,
-0.0020809173583984375,
-0.024871826171875,
0.015716552734375,
-0.0021953582763671875,
-0.0178375244140625,
0.0026702880859375,
-0.0061187744140625,
-0.004596710205078125,
0.0061187744140625,
-0.014495849609375,
0.031890869140625,
0.0007395744323730469,
0.0089111328125,
-0.0022449493408203125,
-0.01557159423828125,
0.001956939697265625,
-0.005138397216796875,
0.026123046875,
0.00565338134765625,
0.0086669921875,
-0.033966064453125,
-0.0181884765625,
0.01528167724609375,
0.009033203125,
0.059906005859375,
0.06591796875,
-0.03143310546875,
-0.0128326416015625,
-0.0150146484375,
-0.0078277587890625,
-0.037994384765625,
0.0239105224609375,
-0.0052947998046875,
-0.0048828125,
0.039520263671875,
-0.0103607177734375,
0.0158233642578125,
0.03656005859375,
0.0011653900146484375,
-0.031890869140625,
0.06829833984375,
0.0299835205078125,
-0.0153045654296875,
0.038421630859375,
-0.03253173828125,
-0.00750732421875,
-0.0721435546875,
-0.027923583984375,
-0.0386962890625,
-0.0438232421875,
-0.04583740234375,
0.0030307769775390625,
-0.0002675056457519531,
0.025909423828125,
-0.0230712890625,
0.046875,
-0.05987548828125,
0.0088653564453125,
0.035888671875,
0.0325927734375,
-0.026123046875,
-0.005096435546875,
0.013214111328125,
0.0009245872497558594,
-0.0127105712890625,
-0.018585205078125,
0.08782958984375,
0.00037741661071777344,
0.065185546875,
-0.004451751708984375,
0.030731201171875,
0.030731201171875,
0.01934814453125,
-0.045379638671875,
0.0384521484375,
-0.037933349609375,
-0.048309326171875,
0.00038909912109375,
-0.0219573974609375,
-0.0452880859375,
-0.006671905517578125,
-0.01020050048828125,
-0.07489013671875,
0.0224761962890625,
-0.0033245086669921875,
-0.003963470458984375,
0.032958984375,
-0.0252227783203125,
0.07086181640625,
-0.0455322265625,
-0.0121917724609375,
0.0078582763671875,
-0.051544189453125,
0.005947113037109375,
-0.002277374267578125,
0.020233154296875,
-0.02850341796875,
0.014312744140625,
0.08587646484375,
-0.04010009765625,
0.0693359375,
-0.041168212890625,
0.00461578369140625,
0.01187896728515625,
-0.0180206298828125,
0.0257568359375,
0.010528564453125,
-0.022918701171875,
0.0208740234375,
0.007080078125,
-0.037322998046875,
-0.048614501953125,
0.046783447265625,
-0.07000732421875,
-0.0200653076171875,
-0.041015625,
-0.03778076171875,
0.017791748046875,
0.0164794921875,
0.031646728515625,
0.043060302734375,
-0.006694793701171875,
0.0265960693359375,
0.048858642578125,
-0.01708984375,
0.0301666259765625,
0.0202178955078125,
-0.038787841796875,
-0.0572509765625,
0.06903076171875,
0.0298004150390625,
0.0009908676147460938,
0.01253509521484375,
0.0228271484375,
-0.0169219970703125,
-0.033935546875,
-0.03729248046875,
0.016326904296875,
-0.053497314453125,
-0.015960693359375,
-0.036041259765625,
-0.0222625732421875,
-0.049468994140625,
-0.00908660888671875,
-0.00916290283203125,
-0.0229034423828125,
-0.030487060546875,
0.00695037841796875,
0.06524658203125,
0.045013427734375,
-0.047393798828125,
0.042083740234375,
-0.06640625,
0.031158447265625,
-0.006076812744140625,
0.0185546875,
-0.024383544921875,
-0.050384521484375,
-0.05474853515625,
0.0220184326171875,
-0.041107177734375,
-0.0498046875,
0.0291900634765625,
-0.0007624626159667969,
0.0268096923828125,
0.03167724609375,
0.02117919921875,
0.0281524658203125,
-0.005786895751953125,
0.07025146484375,
-0.0034942626953125,
-0.06561279296875,
0.06982421875,
-0.02752685546875,
-0.01305389404296875,
0.046478271484375,
0.02984619140625,
-0.0318603515625,
0.0009355545043945312,
-0.065673828125,
-0.0684814453125,
0.07269287109375,
0.012725830078125,
0.01427459716796875,
0.0234527587890625,
0.028839111328125,
-0.00012189149856567383,
0.03680419921875,
-0.04803466796875,
-0.03265380859375,
-0.037811279296875,
-0.02783203125,
0.005828857421875,
0.01419830322265625,
-0.019866943359375,
-0.043975830078125,
0.07537841796875,
0.0016651153564453125,
0.00748443603515625,
0.0223388671875,
0.014923095703125,
0.0026149749755859375,
0.00475311279296875,
0.027557373046875,
0.043670654296875,
-0.03851318359375,
-0.035858154296875,
0.0148162841796875,
-0.042633056640625,
0.0124053955078125,
0.0178375244140625,
-0.0252838134765625,
0.0170135498046875,
0.00568389892578125,
0.0628662109375,
0.0188751220703125,
-0.0164947509765625,
0.032135009765625,
0.0203399658203125,
-0.0076751708984375,
-0.02496337890625,
0.0246429443359375,
-0.01122283935546875,
0.01074981689453125,
0.029083251953125,
0.0214996337890625,
-0.0000024437904357910156,
-0.031707763671875,
0.022705078125,
-0.008026123046875,
-0.0285491943359375,
-0.0175628662109375,
0.05682373046875,
0.006587982177734375,
-0.019500732421875,
0.0631103515625,
-0.002872467041015625,
-0.034515380859375,
0.08233642578125,
0.045013427734375,
0.062225341796875,
0.0005393028259277344,
0.0285186767578125,
0.047576904296875,
0.01215362548828125,
-0.02886962890625,
0.033599853515625,
0.004871368408203125,
-0.08050537109375,
0.007598876953125,
-0.045928955078125,
-0.040863037109375,
0.025146484375,
-0.0684814453125,
0.0350341796875,
-0.050567626953125,
-0.020294189453125,
-0.009521484375,
0.0303955078125,
-0.02056884765625,
0.0430908203125,
-0.004253387451171875,
0.0679931640625,
-0.06304931640625,
0.06658935546875,
0.0765380859375,
-0.037139892578125,
-0.05718994140625,
-0.00738525390625,
-0.00966644287109375,
-0.05010986328125,
0.047210693359375,
0.029205322265625,
0.040557861328125,
0.014312744140625,
-0.08734130859375,
-0.0509033203125,
0.07415771484375,
-0.01433563232421875,
-0.0236663818359375,
0.0283050537109375,
-0.0208282470703125,
0.01934814453125,
-0.0223541259765625,
-0.005096435546875,
0.0288238525390625,
0.05682373046875,
0.001026153564453125,
-0.02752685546875,
0.0053253173828125,
-0.0223541259765625,
-0.00516510009765625,
0.016448974609375,
-0.0560302734375,
0.07574462890625,
-0.0379638671875,
0.01319122314453125,
0.0002377033233642578,
0.0479736328125,
0.023193359375,
0.00839996337890625,
0.022857666015625,
0.041259765625,
0.06280517578125,
-0.03314208984375,
0.045074462890625,
-0.00833892822265625,
0.07672119140625,
0.0693359375,
-0.04498291015625,
0.057098388671875,
0.0078277587890625,
-0.026885986328125,
0.07110595703125,
0.06597900390625,
-0.07415771484375,
0.04864501953125,
0.01129150390625,
-0.0146026611328125,
0.007755279541015625,
0.00028777122497558594,
-0.032562255859375,
0.0044097900390625,
0.0294647216796875,
-0.0179901123046875,
-0.016326904296875,
0.019561767578125,
0.0251007080078125,
-0.04010009765625,
-0.01531982421875,
0.052703857421875,
-0.0028705596923828125,
-0.0117645263671875,
0.041839599609375,
0.0020160675048828125,
0.04541015625,
-0.0626220703125,
0.0033626556396484375,
-0.001422882080078125,
0.027313232421875,
-0.045654296875,
-0.07330322265625,
0.012725830078125,
-0.012237548828125,
-0.009368896484375,
0.0084991455078125,
0.0750732421875,
-0.024017333984375,
-0.043701171875,
0.0278778076171875,
-0.020538330078125,
0.0211029052734375,
0.01568603515625,
-0.0648193359375,
0.0178375244140625,
0.0218658447265625,
-0.0310211181640625,
0.022247314453125,
0.0178375244140625,
0.02099609375,
0.049896240234375,
0.062103271484375,
0.01451873779296875,
-0.0222625732421875,
0.0059051513671875,
0.06719970703125,
-0.07159423828125,
-0.038787841796875,
-0.042205810546875,
0.0579833984375,
-0.02362060546875,
-0.0271148681640625,
0.041595458984375,
0.041259765625,
0.0587158203125,
0.0013170242309570312,
0.08160400390625,
-0.04705810546875,
0.003021240234375,
-0.0167999267578125,
0.078857421875,
-0.04833984375,
-0.01328277587890625,
-0.0008530616760253906,
-0.021514892578125,
0.0026721954345703125,
0.039642333984375,
-0.0113525390625,
0.0129547119140625,
0.039031982421875,
0.05126953125,
-0.00628662109375,
0.005756378173828125,
0.007526397705078125,
0.053680419921875,
0.015655517578125,
0.018585205078125,
0.01141357421875,
-0.09722900390625,
0.03472900390625,
-0.0472412109375,
-0.034393310546875,
-0.03131103515625,
-0.058868408203125,
-0.043914794921875,
-0.0171966552734375,
-0.04144287109375,
-0.060333251953125,
-0.0218963623046875,
0.048614501953125,
0.037933349609375,
-0.06927490234375,
-0.0147247314453125,
0.0188751220703125,
0.013092041015625,
-0.0295867919921875,
-0.030517578125,
0.0310516357421875,
-0.0283203125,
-0.04498291015625,
0.01120758056640625,
-0.004039764404296875,
0.0128326416015625,
-0.0047149658203125,
0.0224609375,
-0.0283050537109375,
-0.0175018310546875,
0.0098876953125,
0.028900146484375,
-0.0225830078125,
-0.03497314453125,
-0.042694091796875,
-0.0179901123046875,
0.03521728515625,
0.0201873779296875,
-0.0648193359375,
0.0142974853515625,
0.06829833984375,
0.0158538818359375,
0.0234832763671875,
-0.0032711029052734375,
0.035186767578125,
-0.050445556640625,
0.0147247314453125,
-0.0247955322265625,
0.0418701171875,
0.03460693359375,
-0.030426025390625,
0.038543701171875,
0.04150390625,
-0.045379638671875,
-0.062408447265625,
-0.018585205078125,
-0.07269287109375,
-0.0143890380859375,
0.060028076171875,
-0.0208740234375,
-0.044830322265625,
-0.022003173828125,
-0.0174560546875,
0.033905029296875,
-0.0212249755859375,
0.05029296875,
0.05126953125,
0.0027790069580078125,
0.0189666748046875,
-0.0423583984375,
0.032958984375,
-0.0175018310546875,
-0.06671142578125,
0.004634857177734375,
0.00849151611328125,
0.049652099609375,
0.024749755859375,
0.033447265625,
-0.0020599365234375,
0.0191192626953125,
0.0302276611328125,
0.017578125,
-0.01053619384765625,
-0.0171356201171875,
-0.0173187255859375,
-0.0141754150390625,
-0.040374755859375,
-0.054595947265625
]
] |
mlsum | 2023-06-01T14:59:54.000Z | [
"task_categories:summarization",
"task_categories:translation",
"task_categories:text-classification",
"task_ids:news-articles-summarization",
"task_ids:multi-class-classification",
"task_ids:multi-label-classification",
"task_ids:topic-classification",
"annotations_creators:found",
"language_creators:found",
"multilinguality:multilingual",
"size_categories:100K<n<1M",
"size_categories:10K<n<100K",
"source_datasets:extended|cnn_dailymail",
"source_datasets:original",
"language:de",
"language:es",
"language:fr",
"language:ru",
"language:tr",
"license:other",
"region:us"
] | null | We present MLSUM, the first large-scale MultiLingual SUMmarization dataset.
Obtained from online newspapers, it contains 1.5M+ article/summary pairs in five different languages -- namely, French, German, Spanish, Russian, Turkish.
Together with English newspapers from the popular CNN/Daily mail dataset, the collected data form a large scale multilingual dataset which can enable new research directions for the text summarization community.
We report cross-lingual comparative analyses based on state-of-the-art systems.
These highlight existing biases which motivate the use of a multi-lingual dataset. | @article{scialom2020mlsum,
title={MLSUM: The Multilingual Summarization Corpus},
author={Scialom, Thomas and Dray, Paul-Alexis and Lamprier, Sylvain and Piwowarski, Benjamin and Staiano, Jacopo},
journal={arXiv preprint arXiv:2004.14900},
year={2020}
} | 26 | 1,149 | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- found
language:
- de
- es
- fr
- ru
- tr
license:
- other
multilinguality:
- multilingual
size_categories:
- 100K<n<1M
- 10K<n<100K
source_datasets:
- extended|cnn_dailymail
- original
task_categories:
- summarization
- translation
- text-classification
task_ids:
- news-articles-summarization
- multi-class-classification
- multi-label-classification
- topic-classification
paperswithcode_id: mlsum
pretty_name: MLSUM
dataset_info:
- config_name: de
features:
- name: text
dtype: string
- name: summary
dtype: string
- name: topic
dtype: string
- name: url
dtype: string
- name: title
dtype: string
- name: date
dtype: string
splits:
- name: train
num_bytes: 846959840
num_examples: 220887
- name: validation
num_bytes: 47119541
num_examples: 11394
- name: test
num_bytes: 46847612
num_examples: 10701
download_size: 1005814154
dataset_size: 940926993
- config_name: es
features:
- name: text
dtype: string
- name: summary
dtype: string
- name: topic
dtype: string
- name: url
dtype: string
- name: title
dtype: string
- name: date
dtype: string
splits:
- name: train
num_bytes: 1214558302
num_examples: 266367
- name: validation
num_bytes: 50643400
num_examples: 10358
- name: test
num_bytes: 71263665
num_examples: 13920
download_size: 1456211154
dataset_size: 1336465367
- config_name: fr
features:
- name: text
dtype: string
- name: summary
dtype: string
- name: topic
dtype: string
- name: url
dtype: string
- name: title
dtype: string
- name: date
dtype: string
splits:
- name: train
num_bytes: 1471965014
num_examples: 392902
- name: validation
num_bytes: 70413212
num_examples: 16059
- name: test
num_bytes: 69660288
num_examples: 15828
download_size: 1849565564
dataset_size: 1612038514
- config_name: ru
features:
- name: text
dtype: string
- name: summary
dtype: string
- name: topic
dtype: string
- name: url
dtype: string
- name: title
dtype: string
- name: date
dtype: string
splits:
- name: train
num_bytes: 257389497
num_examples: 25556
- name: validation
num_bytes: 9128497
num_examples: 750
- name: test
num_bytes: 9656398
num_examples: 757
download_size: 766226107
dataset_size: 276174392
- config_name: tu
features:
- name: text
dtype: string
- name: summary
dtype: string
- name: topic
dtype: string
- name: url
dtype: string
- name: title
dtype: string
- name: date
dtype: string
splits:
- name: train
num_bytes: 641622783
num_examples: 249277
- name: validation
num_bytes: 25530661
num_examples: 11565
- name: test
num_bytes: 27830212
num_examples: 12775
download_size: 942308960
dataset_size: 694983656
config_names:
- de
- es
- fr
- ru
- tu
---
# Dataset Card for MLSUM
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** []()
- **Repository:** https://github.com/recitalAI/MLSUM
- **Paper:** https://www.aclweb.org/anthology/2020.emnlp-main.647/
- **Point of Contact:** [email](thomas@recital.ai)
- **Size of downloaded dataset files:** 1.83 GB
- **Size of the generated dataset:** 4.86 GB
- **Total amount of disk used:** 6.69 GB
### Dataset Summary
We present MLSUM, the first large-scale MultiLingual SUMmarization dataset.
Obtained from online newspapers, it contains 1.5M+ article/summary pairs in five different languages -- namely, French, German, Spanish, Russian, Turkish.
Together with English newspapers from the popular CNN/Daily mail dataset, the collected data form a large scale multilingual dataset which can enable new research directions for the text summarization community.
We report cross-lingual comparative analyses based on state-of-the-art systems.
These highlight existing biases which motivate the use of a multi-lingual dataset.
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Dataset Structure
### Data Instances
#### de
- **Size of downloaded dataset files:** 346.58 MB
- **Size of the generated dataset:** 940.93 MB
- **Total amount of disk used:** 1.29 GB
An example of 'validation' looks as follows.
```
{
"date": "01/01/2001",
"summary": "A text",
"text": "This is a text",
"title": "A sample",
"topic": "football",
"url": "https://www.google.com"
}
```
#### es
- **Size of downloaded dataset files:** 513.31 MB
- **Size of the generated dataset:** 1.34 GB
- **Total amount of disk used:** 1.85 GB
An example of 'validation' looks as follows.
```
{
"date": "01/01/2001",
"summary": "A text",
"text": "This is a text",
"title": "A sample",
"topic": "football",
"url": "https://www.google.com"
}
```
#### fr
- **Size of downloaded dataset files:** 619.99 MB
- **Size of the generated dataset:** 1.61 GB
- **Total amount of disk used:** 2.23 GB
An example of 'validation' looks as follows.
```
{
"date": "01/01/2001",
"summary": "A text",
"text": "This is a text",
"title": "A sample",
"topic": "football",
"url": "https://www.google.com"
}
```
#### ru
- **Size of downloaded dataset files:** 106.22 MB
- **Size of the generated dataset:** 276.17 MB
- **Total amount of disk used:** 382.39 MB
An example of 'train' looks as follows.
```
{
"date": "01/01/2001",
"summary": "A text",
"text": "This is a text",
"title": "A sample",
"topic": "football",
"url": "https://www.google.com"
}
```
#### tu
- **Size of downloaded dataset files:** 247.50 MB
- **Size of the generated dataset:** 694.99 MB
- **Total amount of disk used:** 942.48 MB
An example of 'train' looks as follows.
```
{
"date": "01/01/2001",
"summary": "A text",
"text": "This is a text",
"title": "A sample",
"topic": "football",
"url": "https://www.google.com"
}
```
### Data Fields
The data fields are the same among all splits.
#### de
- `text`: a `string` feature.
- `summary`: a `string` feature.
- `topic`: a `string` feature.
- `url`: a `string` feature.
- `title`: a `string` feature.
- `date`: a `string` feature.
#### es
- `text`: a `string` feature.
- `summary`: a `string` feature.
- `topic`: a `string` feature.
- `url`: a `string` feature.
- `title`: a `string` feature.
- `date`: a `string` feature.
#### fr
- `text`: a `string` feature.
- `summary`: a `string` feature.
- `topic`: a `string` feature.
- `url`: a `string` feature.
- `title`: a `string` feature.
- `date`: a `string` feature.
#### ru
- `text`: a `string` feature.
- `summary`: a `string` feature.
- `topic`: a `string` feature.
- `url`: a `string` feature.
- `title`: a `string` feature.
- `date`: a `string` feature.
#### tu
- `text`: a `string` feature.
- `summary`: a `string` feature.
- `topic`: a `string` feature.
- `url`: a `string` feature.
- `title`: a `string` feature.
- `date`: a `string` feature.
### Data Splits
|name|train |validation|test |
|----|-----:|---------:|----:|
|de |220887| 11394|10701|
|es |266367| 10358|13920|
|fr |392902| 16059|15828|
|ru | 25556| 750| 757|
|tu |249277| 11565|12775|
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
Usage of dataset is restricted to non-commercial research purposes only. Copyright belongs to the original copyright holders. See https://github.com/recitalAI/MLSUM#mlsum
### Citation Information
```
@article{scialom2020mlsum,
title={MLSUM: The Multilingual Summarization Corpus},
author={Scialom, Thomas and Dray, Paul-Alexis and Lamprier, Sylvain and Piwowarski, Benjamin and Staiano, Jacopo},
journal={arXiv preprint arXiv:2004.14900},
year={2020}
}
```
### Contributions
Thanks to [@RachelKer](https://github.com/RachelKer), [@albertvillanova](https://github.com/albertvillanova), [@thomwolf](https://github.com/thomwolf) for adding this dataset. | 11,019 | [
[
-0.04888916015625,
-0.039276123046875,
0.00975799560546875,
0.0114593505859375,
-0.01296234130859375,
-0.002017974853515625,
-0.035400390625,
-0.028717041015625,
0.049896240234375,
0.0244903564453125,
-0.061004638671875,
-0.06866455078125,
-0.043212890625,
0.0214385986328125,
-0.01727294921875,
0.0943603515625,
-0.0059051513671875,
-0.0122222900390625,
-0.022705078125,
-0.01305389404296875,
-0.0125885009765625,
-0.033111572265625,
-0.018829345703125,
-0.00315093994140625,
0.039306640625,
0.0408935546875,
0.0400390625,
0.06475830078125,
0.05035400390625,
0.0177764892578125,
-0.0025787353515625,
0.0028972625732421875,
-0.03521728515625,
-0.0170135498046875,
0.0131072998046875,
-0.011322021484375,
-0.04266357421875,
0.0140228271484375,
0.0506591796875,
0.05096435546875,
-0.005733489990234375,
0.03997802734375,
-0.0004763603210449219,
0.07281494140625,
-0.02252197265625,
0.032928466796875,
-0.0205535888671875,
-0.001338958740234375,
-0.0155029296875,
-0.0026035308837890625,
0.002716064453125,
-0.03509521484375,
-0.0012149810791015625,
-0.05511474609375,
0.0197906494140625,
-0.0006351470947265625,
0.0743408203125,
0.0143585205078125,
-0.0162506103515625,
-0.026519775390625,
-0.0265655517578125,
0.054718017578125,
-0.05596923828125,
0.01641845703125,
0.0406494140625,
0.0219268798828125,
0.0032863616943359375,
-0.042572021484375,
-0.037811279296875,
0.01117706298828125,
-0.026092529296875,
0.0210113525390625,
0.007904052734375,
-0.0283966064453125,
0.027008056640625,
0.047027587890625,
-0.06256103515625,
-0.015960693359375,
-0.034576416015625,
-0.00995635986328125,
0.0828857421875,
0.021087646484375,
0.0166473388671875,
-0.026458740234375,
-0.0018415451049804688,
-0.0188140869140625,
-0.038177490234375,
0.006320953369140625,
0.04254150390625,
0.049560546875,
-0.05218505859375,
0.046905517578125,
-0.0235748291015625,
0.041473388671875,
-0.00988006591796875,
-0.01395416259765625,
0.053375244140625,
-0.06365966796875,
-0.019744873046875,
-0.00687408447265625,
0.0732421875,
0.0477294921875,
-0.0014333724975585938,
0.00792694091796875,
0.0098724365234375,
-0.01470947265625,
-0.00583648681640625,
-0.06842041015625,
-0.0281829833984375,
0.04266357421875,
-0.044952392578125,
-0.025238037109375,
0.021820068359375,
-0.09149169921875,
-0.0152740478515625,
-0.0268707275390625,
0.00571441650390625,
-0.00601959228515625,
-0.030181884765625,
0.01120758056640625,
-0.0029144287109375,
0.0128173828125,
0.01537322998046875,
-0.0501708984375,
0.0165252685546875,
0.03662109375,
0.06353759765625,
-0.0042266845703125,
-0.0298309326171875,
-0.01068878173828125,
-0.01511383056640625,
-0.00022268295288085938,
0.04412841796875,
-0.0187835693359375,
-0.0310516357421875,
-0.005107879638671875,
0.037017822265625,
-0.00853729248046875,
-0.0159912109375,
0.06036376953125,
-0.005645751953125,
0.043243408203125,
-0.044403076171875,
-0.03192138671875,
-0.0097198486328125,
0.027679443359375,
-0.06927490234375,
0.0931396484375,
0.01517486572265625,
-0.0732421875,
0.03778076171875,
-0.059234619140625,
-0.035491943359375,
-0.01097869873046875,
0.002986907958984375,
-0.053375244140625,
-0.0306854248046875,
0.0266265869140625,
0.042755126953125,
-0.029754638671875,
0.0271759033203125,
-0.0179595947265625,
-0.004611968994140625,
0.0005578994750976562,
0.00788116455078125,
0.090576171875,
0.01314544677734375,
-0.017364501953125,
0.006931304931640625,
-0.08111572265625,
-0.01432037353515625,
0.0288848876953125,
-0.028533935546875,
-0.0036411285400390625,
-0.01415252685546875,
0.02691650390625,
0.0252227783203125,
0.0197601318359375,
-0.027740478515625,
0.0236968994140625,
-0.0125579833984375,
0.0205230712890625,
0.037628173828125,
-0.002323150634765625,
0.0300445556640625,
-0.0357666015625,
0.03131103515625,
-0.00036025047302246094,
0.0237884521484375,
-0.0163726806640625,
-0.040252685546875,
-0.044219970703125,
-0.017547607421875,
0.034332275390625,
0.038238525390625,
-0.04168701171875,
0.060272216796875,
-0.050018310546875,
-0.05419921875,
-0.043487548828125,
0.013885498046875,
0.0151214599609375,
0.040130615234375,
0.0269775390625,
-0.01113128662109375,
-0.056671142578125,
-0.056793212890625,
0.0207672119140625,
-0.0000438690185546875,
0.01145172119140625,
0.04827880859375,
0.072998046875,
-0.00223541259765625,
0.06585693359375,
-0.052581787109375,
-0.0298614501953125,
-0.021453857421875,
-0.0080108642578125,
0.02996826171875,
0.03973388671875,
0.059844970703125,
-0.0677490234375,
-0.045623779296875,
-0.007381439208984375,
-0.067138671875,
-0.0108184814453125,
-0.006412506103515625,
-0.00872039794921875,
0.0146331787109375,
0.01493072509765625,
-0.043914794921875,
0.023590087890625,
0.048736572265625,
-0.036102294921875,
0.045166015625,
-0.004474639892578125,
0.0214996337890625,
-0.09796142578125,
0.03472900390625,
0.00467681884765625,
0.0038127899169921875,
-0.044219970703125,
-0.01331329345703125,
-0.005764007568359375,
0.003009796142578125,
-0.0245513916015625,
0.0474853515625,
-0.035186767578125,
0.00016057491302490234,
0.011932373046875,
0.0131988525390625,
0.007228851318359375,
0.03533935546875,
-0.0093536376953125,
0.059844970703125,
0.05120849609375,
-0.04296875,
0.024322509765625,
0.03143310546875,
-0.03460693359375,
0.0294647216796875,
-0.04522705078125,
-0.01268768310546875,
-0.013580322265625,
0.031646728515625,
-0.06658935546875,
-0.036895751953125,
0.028289794921875,
-0.049957275390625,
0.0177001953125,
-0.01593017578125,
-0.043548583984375,
-0.042083740234375,
-0.0469970703125,
0.00882720947265625,
0.01531219482421875,
-0.02581787109375,
0.039337158203125,
0.050262451171875,
-0.01087188720703125,
-0.038726806640625,
-0.05615234375,
0.003444671630859375,
-0.01708984375,
-0.05963134765625,
0.021453857421875,
-0.0247955322265625,
-0.0116424560546875,
0.00860595703125,
0.01861572265625,
0.005382537841796875,
0.0005130767822265625,
0.01136016845703125,
0.016510009765625,
-0.0034923553466796875,
-0.004856109619140625,
-0.00989532470703125,
-0.0020465850830078125,
0.002872467041015625,
-0.01338958740234375,
0.034576416015625,
-0.0005331039428710938,
-0.00787353515625,
-0.0250244140625,
0.0210723876953125,
0.037322998046875,
-0.01080322265625,
0.0579833984375,
0.0611572265625,
-0.0177001953125,
0.016632080078125,
-0.0224456787109375,
-0.00571441650390625,
-0.02581787109375,
0.01195526123046875,
-0.01049041748046875,
-0.051361083984375,
0.0738525390625,
0.021881103515625,
0.023406982421875,
0.0640869140625,
0.045074462890625,
-0.002231597900390625,
0.04608154296875,
0.0158843994140625,
-0.022705078125,
0.029205322265625,
-0.053955078125,
-0.01690673828125,
-0.049102783203125,
-0.0306854248046875,
-0.0618896484375,
-0.0279083251953125,
-0.061920166015625,
-0.0286407470703125,
0.00852203369140625,
-0.01531219482421875,
-0.0193023681640625,
0.028289794921875,
-0.04473876953125,
0.0247802734375,
0.039794921875,
0.001190185546875,
0.006641387939453125,
-0.00232696533203125,
-0.0007567405700683594,
-0.0021209716796875,
-0.03961181640625,
-0.0211181640625,
0.10113525390625,
0.0183258056640625,
0.0316162109375,
0.012420654296875,
0.04681396484375,
0.0208587646484375,
0.001766204833984375,
-0.03302001953125,
0.038055419921875,
-0.009613037109375,
-0.0537109375,
-0.0230560302734375,
-0.0435791015625,
-0.0732421875,
0.0088043212890625,
-0.0274658203125,
-0.04107666015625,
0.015716552734375,
-0.0020771026611328125,
-0.0019092559814453125,
0.028656005859375,
-0.051116943359375,
0.061248779296875,
-0.0102691650390625,
-0.0233154296875,
0.01922607421875,
-0.07659912109375,
0.023101806640625,
0.00457000732421875,
0.041015625,
-0.01506805419921875,
0.0103912353515625,
0.0723876953125,
-0.04888916015625,
0.05963134765625,
-0.0268402099609375,
-0.0002853870391845703,
0.024261474609375,
-0.0238494873046875,
0.040557861328125,
0.0007076263427734375,
-0.01169586181640625,
0.03509521484375,
-0.0160064697265625,
-0.028228759765625,
-0.033935546875,
0.0526123046875,
-0.04827880859375,
-0.0111083984375,
-0.031219482421875,
-0.039794921875,
0.0023403167724609375,
0.0237274169921875,
0.0200958251953125,
0.017913818359375,
-0.01313018798828125,
0.025177001953125,
0.04327392578125,
-0.018585205078125,
0.025177001953125,
0.020172119140625,
-0.023895263671875,
-0.058135986328125,
0.06365966796875,
0.0143585205078125,
-0.0035419464111328125,
0.0226287841796875,
0.018310546875,
-0.032318115234375,
-0.032958984375,
-0.057708740234375,
0.019683837890625,
-0.035797119140625,
-0.02001953125,
-0.055450439453125,
-0.01186370849609375,
-0.045806884765625,
-0.0085601806640625,
-0.0118408203125,
-0.047027587890625,
-0.033477783203125,
-0.0264129638671875,
0.047332763671875,
0.0310516357421875,
-0.025238037109375,
0.0109405517578125,
-0.04888916015625,
0.0038814544677734375,
-0.0048675537109375,
0.0257720947265625,
-0.008209228515625,
-0.035430908203125,
-0.047027587890625,
0.0087738037109375,
-0.004276275634765625,
-0.03448486328125,
0.03448486328125,
0.00905609130859375,
0.03436279296875,
0.013458251953125,
-0.00489044189453125,
0.043701171875,
-0.01503753662109375,
0.08489990234375,
0.0024089813232421875,
-0.041259765625,
0.0496826171875,
-0.046905517578125,
0.0306396484375,
0.06829833984375,
0.03228759765625,
-0.0325927734375,
-0.0195465087890625,
-0.05401611328125,
-0.07110595703125,
0.05853271484375,
0.031768798828125,
-0.00032782554626464844,
0.01739501953125,
0.00873565673828125,
0.01064300537109375,
0.024078369140625,
-0.051483154296875,
-0.062103271484375,
-0.0209503173828125,
-0.0190582275390625,
-0.0133209228515625,
-0.0038890838623046875,
-0.0213165283203125,
-0.04150390625,
0.06524658203125,
-0.0026721954345703125,
0.0200958251953125,
0.01395416259765625,
-0.00589752197265625,
0.002056121826171875,
0.005329132080078125,
0.056304931640625,
0.03460693359375,
-0.03143310546875,
-0.0088958740234375,
0.0009298324584960938,
-0.06646728515625,
-0.00809478759765625,
0.031829833984375,
-0.028076171875,
0.00849151611328125,
0.0272979736328125,
0.050048828125,
0.01033782958984375,
-0.0299835205078125,
0.037078857421875,
-0.0160675048828125,
-0.0460205078125,
-0.021881103515625,
-0.0124053955078125,
0.00004875659942626953,
-0.000949859619140625,
0.0269775390625,
-0.01300048828125,
0.009185791015625,
-0.024810791015625,
0.022491455078125,
0.01306915283203125,
-0.007328033447265625,
-0.03057861328125,
0.0443115234375,
0.009796142578125,
0.00362396240234375,
0.02874755859375,
-0.0210113525390625,
-0.0361328125,
0.060760498046875,
0.007843017578125,
0.058624267578125,
-0.00010317564010620117,
0.0176239013671875,
0.06475830078125,
0.0312042236328125,
-0.0009245872497558594,
0.033355712890625,
0.0009593963623046875,
-0.045501708984375,
-0.018707275390625,
-0.04449462890625,
-0.015960693359375,
0.020904541015625,
-0.052215576171875,
0.0233001708984375,
-0.019989013671875,
-0.00630950927734375,
0.01230621337890625,
0.041748046875,
-0.054046630859375,
0.0209503173828125,
-0.0089569091796875,
0.07403564453125,
-0.07470703125,
0.0386962890625,
0.04913330078125,
-0.049102783203125,
-0.054840087890625,
-0.0143585205078125,
0.026458740234375,
-0.0276641845703125,
0.0238189697265625,
0.00824737548828125,
0.0238189697265625,
-0.01285552978515625,
-0.04620361328125,
-0.0684814453125,
0.1014404296875,
0.00841522216796875,
-0.0263671875,
0.012237548828125,
0.018768310546875,
0.039581298828125,
-0.0284881591796875,
0.0185546875,
0.042572021484375,
0.06231689453125,
0.0144805908203125,
-0.0625,
0.0119476318359375,
-0.044189453125,
-0.0274658203125,
0.01593017578125,
-0.0650634765625,
0.058502197265625,
-0.00402069091796875,
-0.00756072998046875,
-0.021209716796875,
0.037872314453125,
0.01282501220703125,
0.034271240234375,
0.01904296875,
0.060791015625,
0.063232421875,
-0.0277862548828125,
0.07861328125,
-0.0288848876953125,
0.05084228515625,
0.07928466796875,
-0.0082550048828125,
0.036712646484375,
0.0176544189453125,
-0.03289794921875,
0.02734375,
0.055084228515625,
-0.0287628173828125,
0.033050537109375,
-0.00457000732421875,
-0.0004911422729492188,
0.01496124267578125,
-0.009002685546875,
-0.0450439453125,
0.026885986328125,
0.015167236328125,
-0.03302001953125,
-0.0171661376953125,
-0.0024166107177734375,
0.0235137939453125,
-0.01284027099609375,
-0.017669677734375,
0.061798095703125,
-0.015472412109375,
-0.0247039794921875,
0.03289794921875,
-0.01885986328125,
0.051361083984375,
-0.04168701171875,
0.0160980224609375,
-0.0233154296875,
-0.006793975830078125,
-0.03851318359375,
-0.0732421875,
0.037139892578125,
0.0073699951171875,
-0.035125732421875,
-0.0162353515625,
0.04461669921875,
-0.03546142578125,
-0.061187744140625,
0.01181793212890625,
0.033355712890625,
0.0237884521484375,
0.01812744140625,
-0.0750732421875,
0.0161285400390625,
0.01465606689453125,
-0.039947509765625,
0.0260467529296875,
0.030242919921875,
0.0115814208984375,
0.033782958984375,
0.06298828125,
0.0143585205078125,
-0.0022430419921875,
0.01371002197265625,
0.072509765625,
-0.0545654296875,
-0.03265380859375,
-0.04931640625,
0.054412841796875,
-0.0248870849609375,
-0.028533935546875,
0.06854248046875,
0.08453369140625,
0.07421875,
-0.00356292724609375,
0.07061767578125,
-0.041259765625,
0.043426513671875,
-0.03594970703125,
0.06231689453125,
-0.062744140625,
0.0015382766723632812,
-0.035797119140625,
-0.052459716796875,
-0.043914794921875,
0.0284423828125,
-0.0122222900390625,
0.01129150390625,
0.031646728515625,
0.07049560546875,
0.004322052001953125,
0.013397216796875,
0.003147125244140625,
0.0102386474609375,
0.019989013671875,
0.0291595458984375,
0.015716552734375,
-0.053497314453125,
0.044158935546875,
-0.038330078125,
-0.00783538818359375,
-0.0200042724609375,
-0.07025146484375,
-0.060577392578125,
-0.06988525390625,
-0.0272369384765625,
-0.040283203125,
-0.01629638671875,
0.072998046875,
0.04754638671875,
-0.07098388671875,
-0.02032470703125,
0.004444122314453125,
0.012298583984375,
-0.0119171142578125,
-0.023162841796875,
0.056243896484375,
0.0114898681640625,
-0.0570068359375,
0.0015544891357421875,
0.006916046142578125,
0.006317138671875,
-0.01137542724609375,
-0.0087738037109375,
-0.030914306640625,
-0.01995849609375,
0.046142578125,
0.0257415771484375,
-0.0220947265625,
0.0092010498046875,
0.0016851425170898438,
-0.0033245086669921875,
0.0230560302734375,
0.038604736328125,
-0.0274200439453125,
0.02203369140625,
0.04620361328125,
0.0290985107421875,
0.0443115234375,
0.004718780517578125,
0.003875732421875,
-0.051971435546875,
0.00815582275390625,
-0.001361846923828125,
0.02874755859375,
0.0302886962890625,
-0.04095458984375,
0.06170654296875,
0.023681640625,
-0.0443115234375,
-0.059417724609375,
-0.0194244384765625,
-0.092041015625,
-0.0056915283203125,
0.09576416015625,
-0.0018510818481445312,
-0.0252227783203125,
-0.0095672607421875,
-0.00995635986328125,
0.0034809112548828125,
-0.046173095703125,
0.04925537109375,
0.06915283203125,
0.0037403106689453125,
0.00042057037353515625,
-0.041717529296875,
0.042266845703125,
-0.01097869873046875,
-0.09033203125,
0.0206756591796875,
0.04461669921875,
0.0181121826171875,
0.0185394287109375,
0.05230712890625,
-0.0177459716796875,
0.0009140968322753906,
0.0037136077880859375,
0.01788330078125,
-0.0202789306640625,
-0.024505615234375,
-0.022613525390625,
0.00070953369140625,
-0.042999267578125,
-0.00882720947265625
]
] |
Intel/orca_dpo_pairs | 2023-09-26T11:18:30.000Z | [
"license:apache-2.0",
"arxiv:2306.02707",
"region:us"
] | Intel | null | null | 1 | 1,149 | 2023-09-21T10:35:16 | ---
license: apache-2.0
---
The dataset contains 12k examples from [Orca](https://arxiv.org/abs/2306.02707) style dataset [Open-Orca/OpenOrca](https://huggingface.co/datasets/Open-Orca/OpenOrca).
| 196 | [
[
-0.0268402099609375,
-0.03875732421875,
0.012054443359375,
0.014556884765625,
-0.023681640625,
-0.02752685546875,
0.0173492431640625,
-0.03253173828125,
0.0341796875,
0.05584716796875,
-0.042724609375,
-0.061004638671875,
-0.00916290283203125,
-0.00205230712890625,
-0.0391845703125,
0.067138671875,
-0.0011444091796875,
0.01201629638671875,
0.0093536376953125,
-0.049652099609375,
-0.01067352294921875,
-0.0010328292846679688,
-0.053192138671875,
-0.020843505859375,
0.054046630859375,
0.055511474609375,
0.039093017578125,
0.05621337890625,
0.0267181396484375,
0.00978851318359375,
0.01641845703125,
0.006893157958984375,
-0.036346435546875,
-0.00042176246643066406,
-0.0328369140625,
-0.0138702392578125,
-0.031402587890625,
0.02496337890625,
0.0288543701171875,
0.043487548828125,
-0.0303802490234375,
0.0394287109375,
-0.01776123046875,
0.0545654296875,
-0.048797607421875,
0.025482177734375,
-0.01361846923828125,
-0.0093841552734375,
-0.039703369140625,
0.01324462890625,
-0.013885498046875,
-0.054962158203125,
0.005764007568359375,
-0.058502197265625,
-0.01104736328125,
0.0233612060546875,
0.055877685546875,
0.009490966796875,
-0.0297393798828125,
-0.032135009765625,
-0.020233154296875,
0.03326416015625,
-0.020263671875,
0.017791748046875,
0.0247955322265625,
0.04327392578125,
-0.024169921875,
-0.048370361328125,
-0.03302001953125,
0.0240936279296875,
0.01082611083984375,
0.026214599609375,
-0.0211639404296875,
-0.0165252685546875,
0.0281219482421875,
0.046295166015625,
-0.0570068359375,
-0.00579071044921875,
-0.034759521484375,
0.004642486572265625,
0.035064697265625,
0.0154266357421875,
0.01374053955078125,
-0.0031261444091796875,
0.0036106109619140625,
-0.060028076171875,
-0.0572509765625,
0.006725311279296875,
0.06439208984375,
0.01065826416015625,
-0.037628173828125,
0.06085205078125,
0.00013017654418945312,
0.06988525390625,
-0.04425048828125,
-0.006641387939453125,
0.0257110595703125,
-0.0230560302734375,
-0.038665771484375,
-0.0091552734375,
0.0299224853515625,
0.0239715576171875,
0.024627685546875,
0.0037860870361328125,
0.00763702392578125,
0.0211639404296875,
0.0060882568359375,
-0.050689697265625,
-0.044525146484375,
0.0042266845703125,
-0.0704345703125,
-0.0287322998046875,
0.036102294921875,
-0.07183837890625,
-0.019439697265625,
-0.0157012939453125,
-0.000008463859558105469,
-0.027801513671875,
-0.0170745849609375,
0.039093017578125,
-0.01242828369140625,
0.054656982421875,
0.0011587142944335938,
-0.031646728515625,
0.042327880859375,
0.031585693359375,
0.05023193359375,
-0.00469207763671875,
0.0021762847900390625,
-0.0172271728515625,
-0.017364501953125,
-0.036895751953125,
0.067138671875,
-0.03948974609375,
-0.042816162109375,
0.00472259521484375,
0.024627685546875,
0.0030879974365234375,
-0.025054931640625,
0.055908203125,
-0.0272979736328125,
-0.001987457275390625,
-0.030792236328125,
-0.0084228515625,
-0.03076171875,
-0.0237579345703125,
-0.06378173828125,
0.0880126953125,
0.01203155517578125,
-0.037628173828125,
0.0439453125,
-0.074951171875,
-0.0196685791015625,
-0.004718780517578125,
-0.016754150390625,
-0.02783203125,
-0.00010001659393310547,
-0.00557708740234375,
0.0209197998046875,
-0.01012420654296875,
-0.027801513671875,
-0.03973388671875,
0.00429534912109375,
-0.00975799560546875,
0.02008056640625,
0.06890869140625,
0.05377197265625,
0.008819580078125,
0.01209259033203125,
-0.0765380859375,
-0.0212554931640625,
0.037628173828125,
0.0007429122924804688,
-0.05950927734375,
-0.033355712890625,
0.038116455078125,
0.005855560302734375,
0.012908935546875,
-0.06292724609375,
0.061492919921875,
-0.0076446533203125,
0.03704833984375,
0.03253173828125,
0.02337646484375,
0.00997161865234375,
-0.03912353515625,
0.05657958984375,
-0.0172119140625,
0.0014667510986328125,
-0.0098114013671875,
-0.04559326171875,
-0.0280914306640625,
-0.0265655517578125,
0.01012420654296875,
0.02880859375,
-0.03594970703125,
0.02783203125,
-0.0087432861328125,
-0.06890869140625,
-0.021697998046875,
-0.0163421630859375,
0.017120361328125,
0.043182373046875,
0.01959228515625,
-0.036346435546875,
-0.047760009765625,
-0.05926513671875,
0.0025196075439453125,
0.01251983642578125,
-0.0017137527465820312,
0.06048583984375,
0.06695556640625,
0.01404571533203125,
0.069091796875,
-0.0445556640625,
-0.0135498046875,
0.0224456787109375,
0.002872467041015625,
0.033538818359375,
0.0240478515625,
0.079833984375,
-0.040283203125,
-0.01074981689453125,
-0.01227569580078125,
-0.041015625,
0.0122833251953125,
0.01329803466796875,
-0.037994384765625,
0.00240325927734375,
0.042022705078125,
0.004302978515625,
0.06329345703125,
0.039337158203125,
-0.0572509765625,
0.0207977294921875,
-0.0211334228515625,
0.017486572265625,
-0.0989990234375,
0.037200927734375,
0.0157623291015625,
-0.022857666015625,
-0.0024051666259765625,
-0.0047454833984375,
-0.0003402233123779297,
-0.0183868408203125,
-0.039642333984375,
0.0452880859375,
-0.01476287841796875,
-0.023101806640625,
0.006595611572265625,
-0.004497528076171875,
-0.001506805419921875,
0.00347900390625,
0.02459716796875,
0.0287017822265625,
0.049346923828125,
-0.00923919677734375,
0.047698974609375,
0.049774169921875,
-0.06219482421875,
0.045806884765625,
-0.051910400390625,
0.012725830078125,
-0.0026187896728515625,
0.049713134765625,
-0.0789794921875,
-0.048492431640625,
0.01502227783203125,
0.0066375732421875,
-0.0255279541015625,
-0.0218658447265625,
-0.068359375,
-0.01543426513671875,
-0.041748046875,
0.03326416015625,
0.0293426513671875,
-0.059112548828125,
0.025787353515625,
0.0211029052734375,
-0.006378173828125,
-0.04486083984375,
-0.05059814453125,
-0.004009246826171875,
-0.03765869140625,
-0.022796630859375,
0.0235137939453125,
-0.00647735595703125,
-0.004180908203125,
0.0095977783203125,
0.005840301513671875,
0.025604248046875,
-0.0201568603515625,
0.051971435546875,
0.0364990234375,
-0.00867462158203125,
-0.0157318115234375,
-0.01485443115234375,
0.0303192138671875,
-0.002838134765625,
-0.0110626220703125,
0.06134033203125,
-0.0114898681640625,
-0.024658203125,
-0.021514892578125,
0.0037746429443359375,
0.056793212890625,
0.022613525390625,
0.06640625,
0.0176849365234375,
-0.0347900390625,
-0.0056304931640625,
-0.017608642578125,
-0.00896453857421875,
-0.027374267578125,
-0.005634307861328125,
-0.03814697265625,
-0.0276336669921875,
0.0692138671875,
0.007419586181640625,
0.016448974609375,
0.049468994140625,
0.02752685546875,
0.01340484619140625,
0.032684326171875,
0.0316162109375,
-0.037384033203125,
0.04473876953125,
-0.034454345703125,
-0.0227813720703125,
-0.0306396484375,
-0.042144775390625,
-0.0528564453125,
-0.03369140625,
-0.04656982421875,
-0.00391387939453125,
-0.00244903564453125,
-0.0110931396484375,
-0.04510498046875,
0.07342529296875,
-0.048614501953125,
0.03729248046875,
0.05316162109375,
0.0186004638671875,
0.0210723876953125,
0.01009368896484375,
-0.01470184326171875,
0.019287109375,
-0.04302978515625,
-0.033599853515625,
0.0855712890625,
0.016510009765625,
0.09130859375,
0.0154876708984375,
0.0219573974609375,
0.0226593017578125,
0.0001500844955444336,
-0.0267181396484375,
0.0130157470703125,
-0.01491546630859375,
-0.05059814453125,
-0.02105712890625,
-0.0184478759765625,
-0.08697509765625,
-0.06195068359375,
-0.0058746337890625,
-0.0439453125,
0.064453125,
0.0118560791015625,
-0.0291595458984375,
0.01666259765625,
-0.04144287109375,
0.07562255859375,
0.031707763671875,
0.017364501953125,
-0.00716400146484375,
-0.042724609375,
0.01490020751953125,
0.0054931640625,
0.0012559890747070312,
0.00484466552734375,
-0.007068634033203125,
0.07086181640625,
-0.0256195068359375,
0.053497314453125,
0.001232147216796875,
-0.01157379150390625,
0.034912109375,
-0.00971221923828125,
0.029937744140625,
0.010986328125,
0.01263427734375,
0.004009246826171875,
0.0066375732421875,
-0.03411865234375,
-0.01088714599609375,
0.053253173828125,
-0.04833984375,
0.054534912109375,
-0.046844482421875,
-0.0286865234375,
0.00893402099609375,
-0.006252288818359375,
0.0390625,
0.053466796875,
-0.0248260498046875,
0.03802490234375,
0.038055419921875,
-0.0311279296875,
0.0212860107421875,
0.033935546875,
-0.0244140625,
-0.037017822265625,
0.06268310546875,
0.0128173828125,
-0.0149383544921875,
0.0026702880859375,
0.005863189697265625,
-0.0443115234375,
-0.01641845703125,
-0.025543212890625,
0.0276336669921875,
-0.035980224609375,
-0.0244140625,
-0.033447265625,
0.001560211181640625,
-0.048492431640625,
-0.0184173583984375,
-0.0178375244140625,
-0.042999267578125,
-0.0238494873046875,
-0.01073455810546875,
0.090087890625,
0.06915283203125,
-0.01244354248046875,
0.022674560546875,
-0.0036029815673828125,
0.022552490234375,
0.01629638671875,
0.039947509765625,
-0.005977630615234375,
-0.048980712890625,
0.01105499267578125,
-0.043548583984375,
-0.005489349365234375,
-0.0443115234375,
0.036285400390625,
0.00882720947265625,
0.027862548828125,
0.05804443359375,
0.00672149658203125,
0.04559326171875,
-0.0242156982421875,
0.056182861328125,
-0.0024871826171875,
-0.03076171875,
0.055694580078125,
-0.04315185546875,
-0.0026092529296875,
0.04461669921875,
0.04827880859375,
-0.03216552734375,
0.02313232421875,
-0.08380126953125,
-0.057403564453125,
0.048828125,
0.005218505859375,
-0.036041259765625,
0.005657196044921875,
0.042877197265625,
0.0275726318359375,
0.0114288330078125,
-0.035430908203125,
-0.04949951171875,
-0.0433349609375,
-0.0199737548828125,
-0.009246826171875,
0.003826141357421875,
-0.024200439453125,
0.0103759765625,
0.05126953125,
-0.0084228515625,
0.007354736328125,
-0.0123291015625,
0.01081085205078125,
-0.0048675537109375,
-0.014068603515625,
0.0654296875,
0.0258941650390625,
-0.04400634765625,
-0.0033779144287109375,
-0.0073394775390625,
-0.04833984375,
-0.0172119140625,
0.00030541419982910156,
0.01456451416015625,
-0.024932861328125,
0.024932861328125,
0.0250091552734375,
-0.027313232421875,
-0.059967041015625,
-0.001800537109375,
-0.0087432861328125,
0.002025604248046875,
-0.0291290283203125,
0.006755828857421875,
-0.004474639892578125,
0.01044464111328125,
0.02557373046875,
-0.0006780624389648438,
0.0186614990234375,
-0.06268310546875,
0.0145721435546875,
0.0170745849609375,
-0.020843505859375,
-0.0284423828125,
0.03564453125,
-0.018707275390625,
0.002689361572265625,
0.046478271484375,
0.001094818115234375,
0.022430419921875,
0.0487060546875,
0.007137298583984375,
0.0287017822265625,
-0.001094818115234375,
-0.0115966796875,
0.032989501953125,
-0.0013675689697265625,
-0.01009368896484375,
0.059783935546875,
0.019866943359375,
-0.058441162109375,
-0.0202484130859375,
-0.03948974609375,
-0.042449951171875,
0.055419921875,
-0.07855224609375,
0.0268096923828125,
-0.039642333984375,
0.0117950439453125,
0.0103759765625,
0.00690460205078125,
-0.05517578125,
0.017486572265625,
-0.0160369873046875,
0.12103271484375,
-0.0960693359375,
0.072021484375,
0.07476806640625,
-0.041961669921875,
-0.047271728515625,
-0.051605224609375,
0.0179290771484375,
-0.09088134765625,
0.035369873046875,
-0.016693115234375,
-0.0096893310546875,
-0.01482391357421875,
-0.06475830078125,
-0.0352783203125,
0.0797119140625,
0.01541900634765625,
-0.023345947265625,
0.02001953125,
-0.0156097412109375,
0.0146484375,
-0.049346923828125,
0.01116943359375,
0.07501220703125,
0.032073974609375,
0.01139068603515625,
-0.031402587890625,
-0.0212249755859375,
-0.02349853515625,
-0.0017108917236328125,
-0.0163726806640625,
-0.05560302734375,
0.018768310546875,
0.022003173828125,
0.017242431640625,
0.032135009765625,
0.045074462890625,
0.0243072509765625,
-0.0004963874816894531,
0.04254150390625,
0.07196044921875,
0.0269317626953125,
-0.0161895751953125,
0.06268310546875,
-0.001617431640625,
0.0251312255859375,
0.08233642578125,
-0.00615692138671875,
0.0264434814453125,
0.00421142578125,
-0.0173187255859375,
0.05023193359375,
0.088623046875,
-0.0222625732421875,
0.0614013671875,
0.0002651214599609375,
-0.00762176513671875,
0.0146331787109375,
-0.0263824462890625,
-0.036651611328125,
0.037322998046875,
0.041412353515625,
-0.0262908935546875,
-0.0303497314453125,
0.00732421875,
0.020904541015625,
-0.004436492919921875,
-0.024139404296875,
0.052825927734375,
-0.006443023681640625,
-0.0103302001953125,
0.00472259521484375,
-0.01348114013671875,
0.0269927978515625,
-0.044525146484375,
-0.02410888671875,
-0.0259552001953125,
-0.0106964111328125,
-0.01488494873046875,
-0.063720703125,
0.01357269287109375,
-0.00415802001953125,
-0.0156097412109375,
-0.0294342041015625,
0.040557861328125,
-0.005641937255859375,
-0.033905029296875,
-0.00318145751953125,
0.0098724365234375,
0.05157470703125,
0.015594482421875,
-0.046630859375,
-0.01006317138671875,
-0.004352569580078125,
-0.030120849609375,
0.0311737060546875,
0.054656982421875,
-0.007236480712890625,
0.035675048828125,
0.033416748046875,
0.0230712890625,
-0.01157379150390625,
0.0023250579833984375,
0.06207275390625,
-0.04803466796875,
-0.015869140625,
-0.032501220703125,
-0.006061553955078125,
-0.014739990234375,
-0.053253173828125,
0.054107666015625,
0.07611083984375,
0.06396484375,
-0.031341552734375,
0.038330078125,
-0.023284912109375,
0.0386962890625,
-0.0186614990234375,
0.04913330078125,
-0.018341064453125,
-0.037994384765625,
-0.04559326171875,
-0.0682373046875,
-0.0302581787109375,
0.0809326171875,
-0.0050048828125,
0.0090484619140625,
0.01953125,
0.055908203125,
-0.018951416015625,
0.007633209228515625,
0.0158538818359375,
0.004306793212890625,
0.00031065940856933594,
0.00968170166015625,
0.0183563232421875,
-0.0173797607421875,
0.0458984375,
-0.032012939453125,
-0.037628173828125,
-0.021820068359375,
-0.09759521484375,
-0.0587158203125,
-0.044219970703125,
-0.0234222412109375,
-0.048004150390625,
-0.01038360595703125,
0.07489013671875,
0.074462890625,
-0.090087890625,
-0.0243377685546875,
-0.012939453125,
-0.0172119140625,
-0.01418304443359375,
-0.01047515869140625,
0.0615234375,
0.0272674560546875,
-0.056549072265625,
0.0289459228515625,
0.0088348388671875,
0.01519775390625,
-0.01059722900390625,
0.0207977294921875,
0.005878448486328125,
0.005451202392578125,
0.0262451171875,
0.06964111328125,
-0.022674560546875,
-0.039276123046875,
-0.01397705078125,
0.020904541015625,
-0.0034351348876953125,
0.0660400390625,
-0.06304931640625,
0.00913238525390625,
0.03350830078125,
0.0157470703125,
0.040985107421875,
0.0240325927734375,
0.008758544921875,
-0.05499267578125,
0.0200653076171875,
-0.01320648193359375,
0.051361083984375,
-0.0054473876953125,
-0.0019245147705078125,
0.0784912109375,
0.027801513671875,
-0.03826904296875,
-0.035491943359375,
0.01134490966796875,
-0.1141357421875,
0.007366180419921875,
0.052581787109375,
-0.01448822021484375,
-0.00571441650390625,
-0.00860595703125,
-0.017333984375,
0.0112152099609375,
-0.07440185546875,
0.04730224609375,
0.048431396484375,
-0.0203094482421875,
-0.006450653076171875,
-0.036041259765625,
0.037445068359375,
-0.0248565673828125,
-0.06463623046875,
0.005847930908203125,
0.016357421875,
0.0157318115234375,
0.0201568603515625,
0.0005168914794921875,
-0.034942626953125,
-0.002170562744140625,
0.0023403167724609375,
0.0239715576171875,
-0.00440216064453125,
-0.039276123046875,
-0.012847900390625,
0.0027713775634765625,
-0.01806640625,
-0.0262908935546875
]
] |
clarin-pl/polemo2-official | 2022-08-29T16:40:01.000Z | [
"task_categories:text-classification",
"task_ids:sentiment-classification",
"annotations_creators:expert-generated",
"language_creators:other",
"multilinguality:monolingual",
"size_categories:8K",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:pl",
"license:cc-by-sa-4.0",
"region:us"
] | clarin-pl | PolEmo 2.0: Corpus of Multi-Domain Consumer Reviews, evaluation data for article presented at CoNLL. | @inproceedings{kocon-etal-2019-multi,
title = "Multi-Level Sentiment Analysis of {P}ol{E}mo 2.0: Extended Corpus of Multi-Domain Consumer Reviews",
author = "Koco{\'n}, Jan and
Mi{\l}kowski, Piotr and
Za{\'s}ko-Zieli{\'n}ska, Monika",
booktitle = "Proceedings of the 23rd Conference on Computational Natural Language Learning (CoNLL)",
month = nov,
year = "2019",
address = "Hong Kong, China",
publisher = "Association for Computational Linguistics",
url = "https://www.aclweb.org/anthology/K19-1092",
doi = "10.18653/v1/K19-1092",
pages = "980--991",} | 4 | 1,145 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- other
language:
- pl
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
pretty_name: 'Polemo2'
size_categories:
- 8K
- 1K<n<10K
source_datasets:
- original
task_categories:
- text-classification
task_ids:
- sentiment-classification
---
# Polemo2
## Description
The PolEmo2.0 is a dataset of online consumer reviews from four domains: medicine, hotels, products, and university. It is human-annotated on a level of full reviews and individual sentences. Current version (PolEmo 2.0) contains 8,216 reviews having 57,466 sentences. Each text and sentence was manually annotated with sentiment in the 2+1 scheme, which gives a total of 197,046 annotations. About 85% of the reviews are from the medicine and hotel domains. Each review is annotated with four labels: positive, negative, neutral, or ambiguous.
## Tasks (input, output and metrics)
The task is to predict the correct label of the review.
**Input** ('*text*' column): sentence
**Output** ('*target*' column): label for sentence sentiment ('zero': neutral, 'minus': negative, 'plus': positive, 'amb': ambiguous)
**Domain**: Online reviews
**Measurements**: Accuracy, F1 Macro
**Example**:
Input: `Na samym wejściu hotel śmierdzi . W pokojach jest pleśń na ścianach , brudny dywan . W łazience śmierdzi chemią , hotel nie grzeje w pokojach panuje chłód . Wyposażenie pokoju jest stare , kran się rusza , drzwi na balkon nie domykają się . Jedzenie jest w małych ilościach i nie smaczne . Nie polecam nikomu tego hotelu .`
Input (translated by DeepL): `At the very entrance the hotel stinks . In the rooms there is mold on the walls , dirty carpet . The bathroom smells of chemicals , the hotel does not heat in the rooms are cold . The room furnishings are old , the faucet moves , the door to the balcony does not close . The food is in small quantities and not tasty . I would not recommend this hotel to anyone .`
Output: `1` (negative)
## Data splits
| Subset | Cardinality |
|--------|------------:|
| train | 6573 |
| val | 823 |
| test | 820 |
## Class distribution
| Class | train | dev | test |
|:--------|--------:|-------------:|-------:|
| minus | 0.3756 | 0.3694 | 0.4134 |
| plus | 0.2775 | 0.2868 | 0.2768 |
| amb | 0.1991 | 0.1883 | 0.1659 |
| zero | 0.1477 | 0.1555 | 0.1439 |
## Citation
```
@inproceedings{kocon-etal-2019-multi,
title = "Multi-Level Sentiment Analysis of {P}ol{E}mo 2.0: Extended Corpus of Multi-Domain Consumer Reviews",
author = "Koco{\'n}, Jan and
Mi{\l}kowski, Piotr and
Za{\'s}ko-Zieli{\'n}ska, Monika",
booktitle = "Proceedings of the 23rd Conference on Computational Natural Language Learning (CoNLL)",
month = nov,
year = "2019",
address = "Hong Kong, China",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/K19-1092",
doi = "10.18653/v1/K19-1092",
pages = "980--991",
abstract = "In this article we present an extended version of PolEmo {--} a corpus of consumer reviews from 4 domains: medicine, hotels, products and school. Current version (PolEmo 2.0) contains 8,216 reviews having 57,466 sentences. Each text and sentence was manually annotated with sentiment in 2+1 scheme, which gives a total of 197,046 annotations. We obtained a high value of Positive Specific Agreement, which is 0.91 for texts and 0.88 for sentences. PolEmo 2.0 is publicly available under a Creative Commons copyright license. We explored recent deep learning approaches for the recognition of sentiment, such as Bi-directional Long Short-Term Memory (BiLSTM) and Bidirectional Encoder Representations from Transformers (BERT).",
}
```
## License
```
Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)
```
## Links
[HuggingFace](https://huggingface.co/datasets/clarin-pl/polemo2-official)
[Source](https://clarin-pl.eu/dspace/handle/11321/710)
[Paper](https://aclanthology.org/K19-1092/)
## Examples
### Loading
```python
from pprint import pprint
from datasets import load_dataset
dataset = load_dataset("clarin-pl/polemo2-official")
pprint(dataset['train'][0])
# {'target': 1,
# 'text': 'Na samym wejściu hotel śmierdzi . W pokojach jest pleśń na ścianach '
# ', brudny dywan . W łazience śmierdzi chemią , hotel nie grzeje w '
# 'pokojach panuje chłód . Wyposażenie pokoju jest stare , kran się '
# 'rusza , drzwi na balkon nie domykają się . Jedzenie jest w małych '
# 'ilościach i nie smaczne . Nie polecam nikomu tego hotelu .'}
```
### Evaluation
```python
import random
from pprint import pprint
from datasets import load_dataset, load_metric
dataset = load_dataset("clarin-pl/polemo2-official")
references = dataset["test"]["target"]
# generate random predictions
predictions = [random.randrange(max(references) + 1) for _ in range(len(references))]
acc = load_metric("accuracy")
f1 = load_metric("f1")
acc_score = acc.compute(predictions=predictions, references=references)
f1_score = f1.compute(predictions=predictions, references=references, average='macro')
pprint(acc_score)
pprint(f1_score)
# {'accuracy': 0.2475609756097561}
# {'f1': 0.23747048177471738}
```
| 5,320 | [
[
-0.050140380859375,
-0.03350830078125,
0.021881103515625,
0.0189666748046875,
-0.036529541015625,
-0.0162353515625,
-0.03790283203125,
-0.037750244140625,
0.01470184326171875,
0.018218994140625,
-0.0290679931640625,
-0.051727294921875,
-0.036834716796875,
0.026214599609375,
0.021575927734375,
0.091064453125,
-0.006397247314453125,
0.01377105712890625,
-0.0214080810546875,
0.00218963623046875,
-0.015625,
-0.045196533203125,
-0.0301361083984375,
-0.031005859375,
0.0294342041015625,
0.045928955078125,
0.03717041015625,
-0.00333404541015625,
0.036468505859375,
0.01715087890625,
-0.002185821533203125,
0.0428466796875,
-0.01995849609375,
0.0008625984191894531,
-0.0036411285400390625,
-0.027099609375,
-0.05255126953125,
0.00659942626953125,
0.023040771484375,
0.03375244140625,
0.0278167724609375,
0.0171661376953125,
0.0175323486328125,
0.0491943359375,
-0.03204345703125,
0.033599853515625,
-0.023712158203125,
-0.0015897750854492188,
0.00742340087890625,
0.0019664764404296875,
-0.0230560302734375,
-0.030670166015625,
0.0025653839111328125,
-0.043365478515625,
0.015655517578125,
0.01267242431640625,
0.085693359375,
-0.0165557861328125,
-0.02288818359375,
-0.0404052734375,
-0.045166015625,
0.0787353515625,
-0.06744384765625,
0.0005936622619628906,
0.056610107421875,
0.00720977783203125,
0.008209228515625,
-0.021514892578125,
-0.05645751953125,
-0.005992889404296875,
-0.019317626953125,
0.0265350341796875,
-0.00457000732421875,
-0.0271148681640625,
0.001026153564453125,
0.0160675048828125,
-0.03985595703125,
-0.007259368896484375,
-0.0411376953125,
0.0014638900756835938,
0.05908203125,
0.003421783447265625,
0.003841400146484375,
-0.043243408203125,
-0.052459716796875,
-0.0167236328125,
-0.039215087890625,
0.00738525390625,
0.02349853515625,
0.0302581787109375,
-0.0114898681640625,
0.035308837890625,
-0.007671356201171875,
0.030609130859375,
0.004390716552734375,
-0.013427734375,
0.0596923828125,
-0.036956787109375,
-0.01529693603515625,
-0.006439208984375,
0.08319091796875,
0.0660400390625,
0.027130126953125,
0.0216217041015625,
-0.0157318115234375,
-0.00304412841796875,
-0.003833770751953125,
-0.043060302734375,
-0.0181732177734375,
0.0306396484375,
-0.01763916015625,
-0.031646728515625,
0.03546142578125,
-0.08056640625,
-0.033905029296875,
-0.0134735107421875,
0.01043701171875,
-0.03643798828125,
-0.035064697265625,
0.0159454345703125,
-0.01708984375,
0.027374267578125,
0.0250091552734375,
-0.042694091796875,
0.024169921875,
0.058441162109375,
0.0548095703125,
-0.0024242401123046875,
-0.02984619140625,
-0.00421905517578125,
-0.0171966552734375,
-0.03399658203125,
0.066650390625,
-0.01131439208984375,
-0.027191162109375,
0.0078277587890625,
0.0014429092407226562,
-0.00872039794921875,
-0.05126953125,
0.0655517578125,
-0.031646728515625,
0.04876708984375,
-0.0266876220703125,
-0.03155517578125,
-0.03912353515625,
0.027130126953125,
-0.028411865234375,
0.072509765625,
0.0250701904296875,
-0.060699462890625,
0.01568603515625,
-0.034454345703125,
-0.0235595703125,
-0.0155792236328125,
0.0260009765625,
-0.06463623046875,
0.00809478759765625,
0.021026611328125,
0.0256500244140625,
-0.022552490234375,
0.01316070556640625,
-0.03857421875,
-0.00479888916015625,
0.042083740234375,
-0.0016374588012695312,
0.07830810546875,
0.0242919921875,
-0.026763916015625,
-0.0016431808471679688,
-0.042694091796875,
0.0017185211181640625,
0.00972747802734375,
-0.01763916015625,
-0.0225372314453125,
-0.0026912689208984375,
0.01253509521484375,
0.04229736328125,
0.0252532958984375,
-0.037750244140625,
0.0164031982421875,
-0.041046142578125,
0.028472900390625,
0.0421142578125,
0.01336669921875,
0.032470703125,
-0.0362548828125,
0.040618896484375,
0.0165557861328125,
0.022735595703125,
0.0175323486328125,
-0.0531005859375,
-0.0621337890625,
-0.017822265625,
0.014923095703125,
0.047607421875,
-0.0380859375,
0.0596923828125,
-0.0258636474609375,
-0.030914306640625,
-0.02532958984375,
0.01204681396484375,
0.039276123046875,
0.030181884765625,
0.03753662109375,
0.0034618377685546875,
-0.056854248046875,
-0.06622314453125,
-0.0067596435546875,
-0.014190673828125,
-0.0157012939453125,
0.030303955078125,
0.046630859375,
-0.01503753662109375,
0.06292724609375,
-0.047637939453125,
-0.059539794921875,
-0.034393310546875,
0.0027484893798828125,
0.04083251953125,
0.0281524658203125,
0.04833984375,
-0.049560546875,
-0.0665283203125,
0.0089111328125,
-0.0592041015625,
-0.01074981689453125,
0.00274658203125,
0.004001617431640625,
0.0291595458984375,
-0.0007343292236328125,
-0.05877685546875,
0.00007092952728271484,
0.0263214111328125,
-0.038055419921875,
0.050384521484375,
-0.01378631591796875,
-0.0047760009765625,
-0.0780029296875,
0.00035881996154785156,
0.0007262229919433594,
-0.0160064697265625,
-0.040130615234375,
-0.01270294189453125,
-0.0020008087158203125,
-0.00333404541015625,
-0.031402587890625,
0.041595458984375,
-0.041656494140625,
-0.00858306884765625,
-0.0172119140625,
0.0302734375,
0.0292205810546875,
0.053070068359375,
-0.0005450248718261719,
0.034332275390625,
0.049072265625,
-0.03680419921875,
0.024505615234375,
0.031494140625,
-0.03680419921875,
0.038726806640625,
-0.043243408203125,
0.007518768310546875,
0.001888275146484375,
0.0284881591796875,
-0.08062744140625,
-0.00684356689453125,
0.0648193359375,
-0.06390380859375,
0.010162353515625,
0.00091552734375,
-0.0447998046875,
-0.034423828125,
-0.0604248046875,
0.01824951171875,
0.036346435546875,
-0.024658203125,
0.027374267578125,
0.027679443359375,
-0.019927978515625,
-0.04351806640625,
-0.047607421875,
-0.0043487548828125,
-0.0199127197265625,
-0.0283050537109375,
-0.00905609130859375,
0.00714111328125,
-0.021392822265625,
-0.0016832351684570312,
0.00785064697265625,
0.0054473876953125,
-0.01395416259765625,
0.0171661376953125,
0.02703857421875,
-0.00501251220703125,
0.01412200927734375,
-0.0033550262451171875,
-0.017486572265625,
0.01165771484375,
-0.0269622802734375,
0.06280517578125,
-0.04534912109375,
0.02020263671875,
-0.051605224609375,
0.0223541259765625,
0.04095458984375,
-0.01026153564453125,
0.03424072265625,
0.048919677734375,
-0.0139312744140625,
-0.01367950439453125,
-0.01032257080078125,
0.0011949539184570312,
-0.032196044921875,
0.022247314453125,
-0.0335693359375,
-0.0292205810546875,
0.041900634765625,
0.00617218017578125,
-0.01214599609375,
0.05841064453125,
0.042266845703125,
-0.0303497314453125,
0.0634765625,
0.006656646728515625,
0.006519317626953125,
0.0171966552734375,
-0.050872802734375,
0.0289459228515625,
-0.0782470703125,
-0.039306640625,
-0.0308074951171875,
-0.03082275390625,
-0.045654296875,
-0.0599365234375,
0.0290679931640625,
0.022796630859375,
-0.0142059326171875,
0.028839111328125,
-0.03424072265625,
0.00591278076171875,
0.04718017578125,
0.0158538818359375,
0.01088714599609375,
0.0004858970642089844,
-0.004077911376953125,
0.0054168701171875,
-0.041900634765625,
-0.039398193359375,
0.07562255859375,
0.034942626953125,
0.043914794921875,
-0.004779815673828125,
0.039642333984375,
0.0272369384765625,
0.0178070068359375,
-0.070068359375,
0.042083740234375,
-0.0193328857421875,
-0.0482177734375,
-0.01282501220703125,
-0.02276611328125,
-0.062103271484375,
0.0333251953125,
-0.014892578125,
-0.028839111328125,
0.055328369140625,
0.0016336441040039062,
-0.028228759765625,
0.0198516845703125,
-0.04827880859375,
0.04730224609375,
-0.024383544921875,
-0.023651123046875,
-0.012115478515625,
-0.04803466796875,
0.01470184326171875,
0.007350921630859375,
0.031402587890625,
-0.031341552734375,
-0.00897216796875,
0.0574951171875,
-0.032928466796875,
0.078369140625,
-0.0287017822265625,
-0.004627227783203125,
0.041900634765625,
-0.002910614013671875,
0.03314208984375,
0.018951416015625,
-0.01360321044921875,
0.037445068359375,
-0.01303863525390625,
-0.027923583984375,
-0.0233154296875,
0.05712890625,
-0.0830078125,
-0.0186309814453125,
-0.05731201171875,
-0.015655517578125,
-0.01154327392578125,
0.02960205078125,
0.04205322265625,
0.01314544677734375,
0.00445556640625,
0.006092071533203125,
0.0310516357421875,
-0.032470703125,
0.0214691162109375,
0.0177154541015625,
-0.0284271240234375,
-0.08184814453125,
0.06475830078125,
-0.0074310302734375,
-0.0023860931396484375,
0.036102294921875,
0.041046142578125,
-0.03399658203125,
-0.0255279541015625,
-0.0208892822265625,
0.0362548828125,
-0.045257568359375,
-0.047119140625,
-0.04412841796875,
0.002819061279296875,
-0.0487060546875,
-0.012664794921875,
-0.0275115966796875,
-0.0491943359375,
-0.0254364013671875,
-0.022796630859375,
0.0167083740234375,
0.0498046875,
-0.0142364501953125,
0.0233154296875,
-0.0263824462890625,
0.00957489013671875,
0.01062774658203125,
0.0180816650390625,
-0.02392578125,
-0.035308837890625,
-0.0187225341796875,
0.0134735107421875,
-0.01763916015625,
-0.056396484375,
0.051910400390625,
0.02667236328125,
0.007137298583984375,
0.055877685546875,
0.034149169921875,
0.0198822021484375,
-0.016326904296875,
0.069580078125,
0.031829833984375,
-0.0638427734375,
0.038909912109375,
-0.022430419921875,
0.0105133056640625,
0.047088623046875,
0.040191650390625,
-0.03558349609375,
-0.026214599609375,
-0.04486083984375,
-0.0706787109375,
0.055633544921875,
-0.006954193115234375,
0.00963592529296875,
-0.007068634033203125,
0.0041656494140625,
0.0170745849609375,
0.031219482421875,
-0.06744384765625,
-0.01131439208984375,
-0.026763916015625,
-0.0006656646728515625,
-0.031829833984375,
-0.04278564453125,
-0.0229034423828125,
-0.038177490234375,
0.062469482421875,
0.0094757080078125,
0.04791259765625,
0.030303955078125,
-0.00446319580078125,
-0.01044464111328125,
0.014373779296875,
0.07135009765625,
0.05352783203125,
-0.036956787109375,
0.0272369384765625,
0.00836944580078125,
-0.020233154296875,
-0.01267242431640625,
-0.01036834716796875,
-0.0278472900390625,
0.024169921875,
0.032012939453125,
0.0753173828125,
0.002819061279296875,
-0.03125,
0.055267333984375,
0.01073455810546875,
-0.03472900390625,
-0.060699462890625,
-0.0185394287109375,
-0.0111236572265625,
0.0012388229370117188,
0.0166168212890625,
0.0252685546875,
0.006183624267578125,
-0.04296875,
0.0199737548828125,
0.0238800048828125,
-0.028839111328125,
-0.037567138671875,
0.0302581787109375,
0.01517486572265625,
-0.0232391357421875,
0.05029296875,
-0.0364990234375,
-0.0743408203125,
0.0362548828125,
0.033477783203125,
0.0771484375,
-0.01334381103515625,
0.037628173828125,
0.072998046875,
0.011962890625,
0.0079803466796875,
0.02264404296875,
0.006000518798828125,
-0.055206298828125,
0.00177001953125,
-0.0634765625,
-0.0179595947265625,
0.0013494491577148438,
-0.042633056640625,
0.0274658203125,
-0.04156494140625,
-0.02490234375,
-0.0180816650390625,
0.030120849609375,
-0.040252685546875,
0.01149749755859375,
0.022674560546875,
0.04827880859375,
-0.0736083984375,
0.05938720703125,
0.052398681640625,
-0.0213165283203125,
-0.03912353515625,
-0.003055572509765625,
-0.01076507568359375,
-0.052093505859375,
0.0382080078125,
0.0187530517578125,
-0.01216888427734375,
-0.03955078125,
-0.0194549560546875,
-0.045196533203125,
0.0621337890625,
-0.016510009765625,
-0.034912109375,
0.0113983154296875,
0.0207977294921875,
0.05902099609375,
-0.04046630859375,
0.013336181640625,
0.01413726806640625,
0.046661376953125,
-0.00795745849609375,
-0.060333251953125,
0.00525665283203125,
-0.03253173828125,
-0.0006265640258789062,
-0.0074005126953125,
-0.056671142578125,
0.08447265625,
-0.022674560546875,
0.0007843971252441406,
-0.0115814208984375,
0.03857421875,
0.0157470703125,
0.056793212890625,
0.043731689453125,
0.037384033203125,
0.053192138671875,
-0.004093170166015625,
0.07855224609375,
-0.0168304443359375,
0.07177734375,
0.09088134765625,
-0.0185699462890625,
0.082763671875,
0.0247802734375,
-0.0305023193359375,
0.06298828125,
0.054718017578125,
-0.02667236328125,
0.054595947265625,
0.0108184814453125,
-0.01273345947265625,
-0.00815582275390625,
0.0158843994140625,
-0.03424072265625,
0.036285400390625,
0.021881103515625,
-0.031097412109375,
-0.0115203857421875,
0.0191497802734375,
0.025299072265625,
-0.0056915283203125,
-0.01302337646484375,
0.054534912109375,
0.0200958251953125,
-0.05975341796875,
0.069091796875,
0.00579833984375,
0.043731689453125,
-0.034515380859375,
0.0191192626953125,
-0.02093505859375,
0.033233642578125,
-0.0224151611328125,
-0.0567626953125,
0.015777587890625,
-0.0090789794921875,
-0.010772705078125,
-0.0255279541015625,
0.04638671875,
-0.033294677734375,
-0.059539794921875,
0.034454345703125,
0.02227783203125,
0.0170745849609375,
-0.004207611083984375,
-0.055267333984375,
-0.003284454345703125,
0.005489349365234375,
-0.0290679931640625,
0.0170745849609375,
0.022796630859375,
0.00609588623046875,
0.0323486328125,
0.037353515625,
0.01172637939453125,
-0.004302978515625,
-0.01384735107421875,
0.06329345703125,
-0.031829833984375,
-0.0457763671875,
-0.049468994140625,
0.0265655517578125,
-0.0223388671875,
-0.048553466796875,
0.0679931640625,
0.06634521484375,
0.0714111328125,
-0.041473388671875,
0.063720703125,
-0.0149383544921875,
0.0447998046875,
-0.0130157470703125,
0.036651611328125,
-0.03753662109375,
0.02703857421875,
-0.0017452239990234375,
-0.058563232421875,
-0.033660888671875,
0.06591796875,
-0.0599365234375,
-0.00794219970703125,
0.05975341796875,
0.048583984375,
0.0135040283203125,
-0.0219879150390625,
0.010284423828125,
0.0328369140625,
0.00820159912109375,
0.053253173828125,
0.05645751953125,
-0.0452880859375,
0.03717041015625,
-0.045562744140625,
-0.0207672119140625,
-0.040557861328125,
-0.035919189453125,
-0.06329345703125,
-0.04229736328125,
-0.031951904296875,
-0.052276611328125,
-0.0028533935546875,
0.07275390625,
0.035308837890625,
-0.09130859375,
-0.0283355712890625,
0.0037593841552734375,
0.0189208984375,
-0.050689697265625,
-0.0219879150390625,
0.051055908203125,
-0.02984619140625,
-0.0673828125,
0.002559661865234375,
0.003078460693359375,
-0.027099609375,
-0.0029735565185546875,
-0.01267242431640625,
-0.0167083740234375,
0.0018463134765625,
0.053802490234375,
0.008087158203125,
-0.046630859375,
-0.01451873779296875,
0.001346588134765625,
-0.0160675048828125,
0.0300750732421875,
0.041595458984375,
-0.029937744140625,
0.0212249755859375,
0.0589599609375,
-0.00777435302734375,
0.0254364013671875,
0.00893402099609375,
0.0175933837890625,
-0.038818359375,
-0.003574371337890625,
0.037506103515625,
0.0220794677734375,
0.0252532958984375,
-0.0277557373046875,
0.026214599609375,
0.033935546875,
-0.043609619140625,
-0.05029296875,
0.00884246826171875,
-0.10919189453125,
-0.03729248046875,
0.11590576171875,
-0.02215576171875,
-0.020050048828125,
-0.00673675537109375,
-0.022491455078125,
0.00897979736328125,
-0.035675048828125,
0.06146240234375,
0.04278564453125,
-0.0287322998046875,
-0.00489044189453125,
-0.035064697265625,
0.049468994140625,
0.0188751220703125,
-0.047271728515625,
0.0090179443359375,
0.037139892578125,
0.04278564453125,
0.031402587890625,
0.047393798828125,
-0.01549530029296875,
0.00826263427734375,
-0.0022029876708984375,
0.01309967041015625,
-0.01097869873046875,
-0.024688720703125,
-0.0288848876953125,
0.027496337890625,
-0.007045745849609375,
-0.03466796875
]
] |
snips_built_in_intents | 2023-01-25T14:44:32.000Z | [
"task_categories:text-classification",
"task_ids:intent-classification",
"annotations_creators:expert-generated",
"language_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:n<1K",
"source_datasets:original",
"language:en",
"license:cc0-1.0",
"arxiv:1805.10190",
"region:us"
] | null | Snips' built in intents dataset was initially used to compare different voice assistants and released as a public dataset hosted at
https://github.com/sonos/nlu-benchmark 2016-12-built-in-intents. The dataset contains 328 utterances over 10 intent classes. The
related paper mentioned on the github page is https://arxiv.org/abs/1805.10190 and a related Medium post is
https://medium.com/snips-ai/benchmarking-natural-language-understanding-systems-d35be6ce568d . | @article{DBLP:journals/corr/abs-1805-10190,
author = {Alice Coucke and
Alaa Saade and
Adrien Ball and
Th{\'{e}}odore Bluche and
Alexandre Caulier and
David Leroy and
Cl{\'{e}}ment Doumouro and
Thibault Gisselbrecht and
Francesco Caltagirone and
Thibaut Lavril and
Ma{\"{e}}l Primet and
Joseph Dureau},
title = {Snips Voice Platform: an embedded Spoken Language Understanding system
for private-by-design voice interfaces},
journal = {CoRR},
volume = {abs/1805.10190},
year = {2018},
url = {http://arxiv.org/abs/1805.10190},
archivePrefix = {arXiv},
eprint = {1805.10190},
timestamp = {Mon, 13 Aug 2018 16:46:59 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1805-10190.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
} | 4 | 1,142 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- expert-generated
language:
- en
license:
- cc0-1.0
multilinguality:
- monolingual
size_categories:
- n<1K
source_datasets:
- original
task_categories:
- text-classification
task_ids:
- intent-classification
paperswithcode_id: snips
pretty_name: SNIPS Natural Language Understanding benchmark
dataset_info:
features:
- name: text
dtype: string
- name: label
dtype:
class_label:
names:
'0': ComparePlaces
'1': RequestRide
'2': GetWeather
'3': SearchPlace
'4': GetPlaceDetails
'5': ShareCurrentLocation
'6': GetTrafficInformation
'7': BookRestaurant
'8': GetDirections
'9': ShareETA
splits:
- name: train
num_bytes: 19431
num_examples: 328
download_size: 9130264
dataset_size: 19431
train-eval-index:
- config: default
task: text-classification
task_id: multi_class_classification
train_split: train
col_mapping:
text: text
label: target
metrics:
- type: accuracy
name: Accuracy
- type: f1
name: F1 macro
args:
average: macro
- type: f1
name: F1 micro
args:
average: micro
- type: f1
name: F1 weighted
args:
average: weighted
- type: precision
name: Precision macro
args:
average: macro
- type: precision
name: Precision micro
args:
average: micro
- type: precision
name: Precision weighted
args:
average: weighted
- type: recall
name: Recall macro
args:
average: macro
- type: recall
name: Recall micro
args:
average: micro
- type: recall
name: Recall weighted
args:
average: weighted
---
# Dataset Card for Snips Built In Intents
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://github.com/sonos/nlu-benchmark/tree/master/2016-12-built-in-intents
- **Repository:** https://github.com/sonos/nlu-benchmark/tree/master/2016-12-built-in-intents
- **Paper:** https://arxiv.org/abs/1805.10190
- **Point of Contact:** The Snips team has joined Sonos in November 2019. These open datasets remain available and their access is now managed by the Sonos Voice Experience Team. Please email sve-research@sonos.com with any question.
### Dataset Summary
Snips' built in intents dataset was initially used to compare different voice assistants and released as a public dataset hosted at
https://github.com/sonos/nlu-benchmark in folder 2016-12-built-in-intents. The dataset contains 328 utterances over 10 intent classes.
A related Medium post is https://medium.com/snips-ai/benchmarking-natural-language-understanding-systems-d35be6ce568d.
### Supported Tasks and Leaderboards
There are no related shared tasks that we are aware of.
### Languages
English
## Dataset Structure
### Data Instances
The dataset contains 328 utterances over 10 intent classes. Each sample looks like:
`{'label': 8, 'text': 'Transit directions to Barcelona Pizza.'}`
### Data Fields
- `text`: The text utterance expressing some user intent.
- `label`: The intent label of the piece of text utterance.
### Data Splits
The source data is not split.
## Dataset Creation
### Curation Rationale
The dataset was originally created to compare the performance of a number of voice assistants. However, the labelled utterances are useful
for developing and benchmarking text chatbots as well.
### Source Data
#### Initial Data Collection and Normalization
It is not clear how the data was collected. From the Medium post: `The benchmark relies on a set of 328 queries built by the business team
at Snips, and kept secret from data scientists and engineers throughout the development of the solution.`
#### Who are the source language producers?
Originally prepared by snips.ai. The Snips team has since joined Sonos in November 2019. These open datasets remain available and their
access is now managed by the Sonos Voice Experience Team. Please email sve-research@sonos.com with any question.
### Annotations
#### Annotation process
It is not clear how the data was collected. From the Medium post: `The benchmark relies on a set of 328 queries built by the business team
at Snips, and kept secret from data scientists and engineers throughout the development of the solution.`
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
Originally prepared by snips.ai. The Snips team has since joined Sonos in November 2019. These open datasets remain available and their
access is now managed by the Sonos Voice Experience Team. Please email sve-research@sonos.com with any question.
### Licensing Information
The source data is licensed under Creative Commons Zero v1.0 Universal.
### Citation Information
Any publication based on these datasets must include a full citation to the following paper in which the results were published by the Snips Team:
Coucke A. et al., "Snips Voice Platform: an embedded Spoken Language Understanding system for private-by-design voice interfaces." CoRR 2018,
https://arxiv.org/abs/1805.10190
### Contributions
Thanks to [@bduvenhage](https://github.com/bduvenhage) for adding this dataset. | 6,564 | [
[
-0.01678466796875,
-0.01201629638671875,
0.0189666748046875,
0.0032806396484375,
-0.0204010009765625,
-0.01108551025390625,
-0.0277862548828125,
-0.035247802734375,
0.03936767578125,
0.05523681640625,
-0.061553955078125,
-0.0416259765625,
-0.06353759765625,
0.00415802001953125,
-0.0271759033203125,
0.083740234375,
0.034576416015625,
-0.00457763671875,
-0.01983642578125,
-0.01314544677734375,
-0.005405426025390625,
-0.0082855224609375,
-0.04095458984375,
0.0233612060546875,
0.0204010009765625,
0.06500244140625,
0.021331787109375,
0.043548583984375,
0.0260009765625,
0.0184783935546875,
-0.029693603515625,
0.0234222412109375,
-0.040283203125,
0.0277099609375,
0.01404571533203125,
-0.0233612060546875,
-0.0277862548828125,
-0.007720947265625,
0.0482177734375,
0.0294036865234375,
-0.0174407958984375,
0.04339599609375,
0.014678955078125,
0.044921875,
-0.04510498046875,
0.01247406005859375,
-0.0712890625,
-0.005260467529296875,
-0.0214996337890625,
-0.024658203125,
-0.0150299072265625,
-0.0240478515625,
0.0206298828125,
-0.026641845703125,
0.00522613525390625,
-0.01470184326171875,
0.05389404296875,
0.027618408203125,
-0.00614166259765625,
-0.032684326171875,
-0.02813720703125,
0.06201171875,
-0.07635498046875,
0.024383544921875,
0.02130126953125,
0.03607177734375,
-0.01395416259765625,
-0.0263671875,
-0.02386474609375,
0.007068634033203125,
0.0105743408203125,
0.006786346435546875,
-0.0117645263671875,
-0.023529052734375,
0.036163330078125,
0.029693603515625,
-0.021759033203125,
-0.00885009765625,
-0.055145263671875,
0.00597381591796875,
0.07427978515625,
-0.0047149658203125,
0.0029659271240234375,
-0.0355224609375,
-0.042266845703125,
-0.0022525787353515625,
-0.041656494140625,
0.0262908935546875,
0.0292205810546875,
0.04986572265625,
-0.023590087890625,
0.059326171875,
-0.0211181640625,
0.0281219482421875,
-0.004344940185546875,
-0.0244903564453125,
0.045867919921875,
-0.0301361083984375,
-0.0160980224609375,
0.008880615234375,
0.0699462890625,
0.031463623046875,
0.0091552734375,
-0.0012416839599609375,
-0.0028476715087890625,
-0.026824951171875,
0.00717926025390625,
-0.037872314453125,
0.0279998779296875,
0.031463623046875,
-0.01421356201171875,
-0.0269317626953125,
-0.0005536079406738281,
-0.0308837890625,
-0.0227813720703125,
-0.0020198822021484375,
0.003711700439453125,
-0.0217132568359375,
-0.018707275390625,
0.0161590576171875,
-0.0263671875,
0.019744873046875,
0.01100921630859375,
-0.058868408203125,
0.050689697265625,
0.04229736328125,
0.05853271484375,
-0.025543212890625,
-0.03253173828125,
-0.01422882080078125,
0.0144195556640625,
-0.00742340087890625,
0.0657958984375,
0.0003173351287841797,
-0.0299072265625,
-0.018829345703125,
0.0116729736328125,
-0.027252197265625,
-0.0528564453125,
0.055572509765625,
0.004695892333984375,
0.0240478515625,
-0.0242462158203125,
-0.04730224609375,
0.00444793701171875,
0.008392333984375,
-0.034576416015625,
0.10888671875,
-0.0120086669921875,
-0.039031982421875,
0.0323486328125,
-0.061004638671875,
-0.02484130859375,
0.004665374755859375,
-0.0218505859375,
-0.0305328369140625,
-0.00909423828125,
0.0189361572265625,
0.0467529296875,
-0.0184783935546875,
0.031768798828125,
-0.005802154541015625,
-0.0187530517578125,
0.0048828125,
-0.0078125,
0.08453369140625,
0.01061248779296875,
-0.03851318359375,
0.018768310546875,
-0.038330078125,
-0.00864410400390625,
0.015533447265625,
0.0031795501708984375,
0.0012178421020507812,
0.016815185546875,
-0.01413726806640625,
0.01065826416015625,
0.00878143310546875,
-0.061065673828125,
0.00481414794921875,
-0.019073486328125,
0.038909912109375,
0.04339599609375,
0.00931549072265625,
0.016876220703125,
-0.0183563232421875,
0.031768798828125,
-0.0027713775634765625,
0.045074462890625,
-0.0017642974853515625,
-0.05963134765625,
-0.037506103515625,
-0.033294677734375,
-0.005580902099609375,
0.034637451171875,
-0.023345947265625,
0.0499267578125,
-0.04522705078125,
-0.05499267578125,
-0.034942626953125,
0.006633758544921875,
0.03814697265625,
0.034423828125,
0.0162811279296875,
-0.00975799560546875,
-0.029632568359375,
-0.0802001953125,
-0.0156097412109375,
0.00200653076171875,
-0.0213165283203125,
0.08099365234375,
0.026214599609375,
0.004772186279296875,
0.062744140625,
-0.037872314453125,
-0.02142333984375,
-0.037506103515625,
-0.0234222412109375,
0.01806640625,
0.0235443115234375,
0.0379638671875,
-0.04339599609375,
-0.005603790283203125,
-0.041259765625,
-0.0293731689453125,
-0.0198822021484375,
0.0004203319549560547,
-0.01056671142578125,
-0.0007195472717285156,
0.0306549072265625,
-0.032989501953125,
0.03680419921875,
0.06475830078125,
-0.032684326171875,
0.040985107421875,
0.037078857421875,
0.014923095703125,
-0.0867919921875,
-0.0010509490966796875,
-0.0016603469848632812,
-0.005405426025390625,
-0.0272064208984375,
-0.039093017578125,
-0.0230865478515625,
-0.0205535888671875,
-0.07720947265625,
0.0260772705078125,
-0.02227783203125,
-0.057769775390625,
0.01544189453125,
0.0246124267578125,
0.01177215576171875,
0.02984619140625,
-0.001743316650390625,
0.0850830078125,
0.051605224609375,
-0.0496826171875,
0.0170135498046875,
0.03411865234375,
-0.0232696533203125,
0.023162841796875,
-0.06951904296875,
0.001331329345703125,
0.02081298828125,
0.0236358642578125,
-0.07183837890625,
-0.00308990478515625,
0.0280303955078125,
-0.061248779296875,
-0.01336669921875,
-0.032470703125,
-0.032073974609375,
-0.00485992431640625,
-0.044464111328125,
0.01511383056640625,
-0.000560760498046875,
-0.0286865234375,
0.026336669921875,
0.0712890625,
-0.0177001953125,
-0.03460693359375,
-0.05084228515625,
0.00449371337890625,
-0.01111602783203125,
-0.05224609375,
0.0231170654296875,
0.0017423629760742188,
0.02044677734375,
-0.0059967041015625,
-0.014984130859375,
-0.0016031265258789062,
-0.019866943359375,
0.0267791748046875,
0.0207366943359375,
-0.000013947486877441406,
-0.00801849365234375,
-0.006473541259765625,
-0.0011835098266601562,
-0.00036835670471191406,
0.005016326904296875,
0.0355224609375,
-0.024200439453125,
-0.01471710205078125,
-0.03948974609375,
0.0186920166015625,
0.051788330078125,
-0.00569915771484375,
0.018951416015625,
0.0222625732421875,
-0.0190887451171875,
-0.004367828369140625,
-0.04547119140625,
-0.022430419921875,
-0.033843994140625,
0.004009246826171875,
-0.0228729248046875,
-0.05218505859375,
0.0545654296875,
0.02154541015625,
0.0234527587890625,
0.0355224609375,
0.004016876220703125,
-0.0124053955078125,
0.0513916015625,
0.005496978759765625,
-0.002758026123046875,
0.05181884765625,
-0.0477294921875,
0.0014905929565429688,
-0.087890625,
-0.03155517578125,
-0.051544189453125,
-0.0247802734375,
-0.052490234375,
-0.034912109375,
0.0207672119140625,
-0.0193939208984375,
0.00775909423828125,
0.05718994140625,
-0.04779052734375,
0.02813720703125,
0.066162109375,
0.0078277587890625,
-0.005214691162109375,
-0.0025844573974609375,
0.01849365234375,
-0.005733489990234375,
-0.0675048828125,
-0.0384521484375,
0.083251953125,
0.0268096923828125,
0.032257080078125,
-0.00336456298828125,
0.055023193359375,
0.00418853759765625,
-0.03271484375,
-0.0654296875,
0.07855224609375,
-0.04022216796875,
-0.044281005859375,
-0.04583740234375,
-0.031005859375,
-0.074462890625,
-0.00004488229751586914,
-0.015594482421875,
-0.071533203125,
0.0190277099609375,
-0.00797271728515625,
-0.0292816162109375,
0.0254364013671875,
-0.051483154296875,
0.0570068359375,
-0.0281829833984375,
-0.0087127685546875,
0.0099029541015625,
-0.06243896484375,
0.01107025146484375,
0.0634765625,
-0.0026035308837890625,
-0.0400390625,
0.0113372802734375,
0.0943603515625,
-0.016632080078125,
0.06463623046875,
-0.0226898193359375,
0.00841522216796875,
0.03533935546875,
-0.01568603515625,
0.016876220703125,
-0.005279541015625,
-0.00281524658203125,
0.039337158203125,
0.024139404296875,
-0.020355224609375,
-0.03411865234375,
0.052886962890625,
-0.03826904296875,
-0.0039825439453125,
-0.0262451171875,
-0.0291900634765625,
-0.01373291015625,
0.020233154296875,
0.0155029296875,
0.042572021484375,
0.01146697998046875,
0.04266357421875,
0.05023193359375,
-0.0267333984375,
0.011016845703125,
0.0289154052734375,
0.006805419921875,
-0.0294342041015625,
0.039764404296875,
0.0162200927734375,
0.0274658203125,
-0.00482940673828125,
0.028472900390625,
-0.043182373046875,
-0.0303955078125,
-0.039093017578125,
0.0180816650390625,
-0.025299072265625,
-0.018096923828125,
-0.0360107421875,
-0.0303192138671875,
-0.071533203125,
0.0038700103759765625,
-0.0648193359375,
-0.042724609375,
-0.0222625732421875,
-0.0107421875,
0.03778076171875,
0.0318603515625,
-0.002834320068359375,
0.0188446044921875,
-0.041534423828125,
0.04071044921875,
0.01419830322265625,
0.0355224609375,
-0.044464111328125,
-0.0333251953125,
-0.00418853759765625,
0.002162933349609375,
-0.00202178955078125,
-0.050689697265625,
0.005832672119140625,
0.01413726806640625,
0.044708251953125,
0.0264892578125,
0.005146026611328125,
0.053985595703125,
-0.01214599609375,
0.0926513671875,
-0.01434326171875,
-0.06640625,
0.07781982421875,
-0.040283203125,
0.026458740234375,
0.07415771484375,
-0.0007185935974121094,
-0.051025390625,
-0.034698486328125,
-0.080810546875,
-0.08355712890625,
0.06951904296875,
0.0172271728515625,
0.0011186599731445312,
-0.000980377197265625,
0.0106048583984375,
-0.0012273788452148438,
0.0282135009765625,
-0.032989501953125,
-0.0296173095703125,
0.007610321044921875,
-0.00907135009765625,
-0.002170562744140625,
-0.02288818359375,
-0.00925445556640625,
-0.0198822021484375,
0.049163818359375,
0.0018873214721679688,
0.032989501953125,
0.014739990234375,
0.010894775390625,
0.00719451904296875,
0.022705078125,
0.061065673828125,
0.032379150390625,
-0.032562255859375,
-0.002338409423828125,
0.004154205322265625,
-0.039459228515625,
-0.034881591796875,
-0.0005354881286621094,
-0.032623291015625,
0.014251708984375,
0.01214599609375,
0.066650390625,
0.050506591796875,
-0.06317138671875,
0.058929443359375,
-0.01611328125,
-0.0260009765625,
-0.031524658203125,
0.0107574462890625,
-0.01313018798828125,
0.01149749755859375,
0.02117919921875,
0.00933074951171875,
0.04412841796875,
-0.0255279541015625,
0.0177459716796875,
0.0284271240234375,
-0.0291748046875,
-0.00421142578125,
0.0230865478515625,
0.0196075439453125,
-0.0247802734375,
0.01348114013671875,
0.0014142990112304688,
-0.033905029296875,
0.0452880859375,
0.0200042724609375,
0.07025146484375,
-0.0110931396484375,
0.02325439453125,
0.02789306640625,
0.0286865234375,
-0.00263214111328125,
0.042724609375,
-0.0295257568359375,
-0.0477294921875,
-0.0061798095703125,
-0.0172882080078125,
-0.050872802734375,
0.0181121826171875,
-0.0703125,
0.0281219482421875,
-0.0246124267578125,
-0.01445770263671875,
0.0016965866088867188,
0.0087890625,
-0.038482666015625,
0.02105712890625,
0.0112457275390625,
0.08160400390625,
-0.0703125,
0.02166748046875,
0.03778076171875,
-0.01334381103515625,
-0.06353759765625,
-0.0208892822265625,
0.01517486572265625,
-0.061553955078125,
0.01422119140625,
0.0023860931396484375,
-0.0521240234375,
-0.0253753662109375,
-0.05718994140625,
-0.07928466796875,
0.08270263671875,
0.0157012939453125,
-0.02337646484375,
0.018890380859375,
0.005535125732421875,
0.0186004638671875,
-0.03985595703125,
0.02349853515625,
0.04144287109375,
0.0087890625,
0.0158843994140625,
-0.07635498046875,
-0.0036468505859375,
-0.03173828125,
-0.0203094482421875,
-0.0104827880859375,
-0.04266357421875,
0.0335693359375,
-0.012451171875,
-0.02508544921875,
-0.0245208740234375,
0.01282501220703125,
0.045654296875,
0.048431396484375,
0.0587158203125,
0.04241943359375,
0.0270538330078125,
-0.00537872314453125,
0.05426025390625,
-0.020172119140625,
0.002685546875,
0.09796142578125,
-0.0009541511535644531,
0.088134765625,
0.0574951171875,
-0.0200042724609375,
0.0145111083984375,
0.033447265625,
0.01174163818359375,
0.0304412841796875,
-0.005939483642578125,
0.0010004043579101562,
0.0158843994140625,
-0.0271148681640625,
-0.036529541015625,
0.059234619140625,
0.034515380859375,
-0.0304718017578125,
0.01251220703125,
-0.0157470703125,
0.0010690689086914062,
-0.022308349609375,
0.00506591796875,
0.08123779296875,
-0.018280029296875,
-0.0330810546875,
0.0306549072265625,
-0.044097900390625,
0.06390380859375,
-0.050811767578125,
0.0199737548828125,
-0.006443023681640625,
-0.01312255859375,
-0.029052734375,
-0.08477783203125,
0.034942626953125,
0.01031494140625,
0.0018024444580078125,
-0.04193115234375,
0.049224853515625,
-0.0182342529296875,
-0.03515625,
0.0199127197265625,
0.026824951171875,
0.04962158203125,
0.0105438232421875,
-0.0634765625,
0.0260772705078125,
0.00872039794921875,
-0.0297698974609375,
-0.01403045654296875,
0.020538330078125,
0.0294342041015625,
0.0521240234375,
0.050872802734375,
0.049224853515625,
0.01995849609375,
0.0292205810546875,
0.066162109375,
-0.046600341796875,
-0.049041748046875,
-0.016265869140625,
0.041595458984375,
-0.03411865234375,
-0.060211181640625,
0.0665283203125,
0.069091796875,
0.0762939453125,
0.01038360595703125,
0.053375244140625,
-0.009063720703125,
0.0908203125,
-0.020111083984375,
0.0293731689453125,
-0.044342041015625,
0.039581298828125,
-0.036285400390625,
-0.043731689453125,
-0.0169525146484375,
0.03314208984375,
-0.0440673828125,
-0.01158905029296875,
0.01430511474609375,
0.06414794921875,
-0.0109710693359375,
0.01012420654296875,
0.0037288665771484375,
-0.0032482147216796875,
0.01410675048828125,
0.0187835693359375,
0.050048828125,
-0.0589599609375,
0.047119140625,
-0.0357666015625,
-0.021331787109375,
-0.0307769775390625,
-0.04058837890625,
-0.0367431640625,
-0.047607421875,
-0.023651123046875,
-0.007030487060546875,
0.01526641845703125,
0.058441162109375,
0.07342529296875,
-0.05706787109375,
-0.04254150390625,
0.009002685546875,
0.00534820556640625,
-0.0217132568359375,
-0.018585205078125,
0.00934600830078125,
0.002685546875,
-0.044158935546875,
0.04437255859375,
0.028961181640625,
0.0019235610961914062,
-0.006107330322265625,
-0.0008478164672851562,
-0.018096923828125,
0.0007567405700683594,
0.044158935546875,
0.03582763671875,
-0.04998779296875,
-0.0048980712890625,
0.0252685546875,
-0.003246307373046875,
0.00885009765625,
0.052886962890625,
-0.032867431640625,
0.0211334228515625,
0.03704833984375,
0.0255126953125,
0.051544189453125,
0.0028133392333984375,
0.00492095947265625,
-0.0711669921875,
0.01885986328125,
0.03955078125,
0.01107025146484375,
0.032379150390625,
-0.0269622802734375,
0.03729248046875,
-0.00701141357421875,
-0.04071044921875,
-0.07464599609375,
0.0077972412109375,
-0.09307861328125,
0.0005254745483398438,
0.09942626953125,
0.005161285400390625,
-0.0155792236328125,
0.007720947265625,
-0.0152130126953125,
0.01044464111328125,
-0.06427001953125,
0.050689697265625,
0.0233001708984375,
-0.037384033203125,
-0.0302276611328125,
-0.05523681640625,
0.0506591796875,
0.036651611328125,
-0.0653076171875,
0.007709503173828125,
0.0287933349609375,
0.01445770263671875,
0.00600433349609375,
0.07183837890625,
-0.020538330078125,
-0.0015974044799804688,
-0.0008859634399414062,
-0.0034885406494140625,
0.0019378662109375,
-0.042755126953125,
-0.0018558502197265625,
-0.0244293212890625,
-0.020355224609375,
-0.0673828125
]
] |
wmt18 | 2023-04-05T13:44:00.000Z | [
"task_categories:translation",
"annotations_creators:no-annotation",
"language_creators:found",
"multilinguality:translation",
"size_categories:10M<n<100M",
"source_datasets:extended|europarl_bilingual",
"source_datasets:extended|news_commentary",
"source_datasets:extended|opus_paracrawl",
"source_datasets:extended|setimes",
"source_datasets:extended|un_multi",
"language:cs",
"language:de",
"language:en",
"language:et",
"language:fi",
"language:kk",
"language:ru",
"language:tr",
"language:zh",
"license:unknown",
"region:us"
] | null | null | @InProceedings{bojar-EtAl:2018:WMT1,
author = {Bojar, Ond\v{r}ej and Federmann, Christian and Fishel, Mark
and Graham, Yvette and Haddow, Barry and Huck, Matthias and
Koehn, Philipp and Monz, Christof},
title = {Findings of the 2018 Conference on Machine Translation (WMT18)},
booktitle = {Proceedings of the Third Conference on Machine Translation,
Volume 2: Shared Task Papers},
month = {October},
year = {2018},
address = {Belgium, Brussels},
publisher = {Association for Computational Linguistics},
pages = {272--307},
url = {http://www.aclweb.org/anthology/W18-6401}
} | 3 | 1,142 | 2022-03-02T23:29:22 | ---
annotations_creators:
- no-annotation
language_creators:
- found
language:
- cs
- de
- en
- et
- fi
- kk
- ru
- tr
- zh
license:
- unknown
multilinguality:
- translation
size_categories:
- 10M<n<100M
source_datasets:
- extended|europarl_bilingual
- extended|news_commentary
- extended|opus_paracrawl
- extended|setimes
- extended|un_multi
task_categories:
- translation
task_ids: []
pretty_name: WMT18
paperswithcode_id: wmt-2018
dataset_info:
- config_name: cs-en
features:
- name: translation
dtype:
translation:
languages:
- cs
- en
splits:
- name: train
num_bytes: 1461016186
num_examples: 11046024
- name: validation
num_bytes: 674430
num_examples: 3005
- name: test
num_bytes: 696229
num_examples: 2983
download_size: 2030359086
dataset_size: 1462386845
- config_name: de-en
features:
- name: translation
dtype:
translation:
languages:
- de
- en
splits:
- name: train
num_bytes: 8187552108
num_examples: 42271874
- name: validation
num_bytes: 729519
num_examples: 3004
- name: test
num_bytes: 757649
num_examples: 2998
download_size: 3808612335
dataset_size: 8189039276
- config_name: et-en
features:
- name: translation
dtype:
translation:
languages:
- et
- en
splits:
- name: train
num_bytes: 647992667
num_examples: 2175873
- name: validation
num_bytes: 459398
num_examples: 2000
- name: test
num_bytes: 489394
num_examples: 2000
download_size: 524534404
dataset_size: 648941459
- config_name: fi-en
features:
- name: translation
dtype:
translation:
languages:
- fi
- en
splits:
- name: train
num_bytes: 857171881
num_examples: 3280600
- name: validation
num_bytes: 1388828
num_examples: 6004
- name: test
num_bytes: 691841
num_examples: 3000
download_size: 491874780
dataset_size: 859252550
- config_name: kk-en
features:
- name: translation
dtype:
translation:
languages:
- kk
- en
splits:
- name: train
- name: validation
- name: test
download_size: 0
dataset_size: 0
- config_name: ru-en
features:
- name: translation
dtype:
translation:
languages:
- ru
- en
splits:
- name: train
num_bytes: 13665367647
num_examples: 36858512
- name: validation
num_bytes: 1040195
num_examples: 3001
- name: test
num_bytes: 1085596
num_examples: 3000
download_size: 4195144356
dataset_size: 13667493438
- config_name: tr-en
features:
- name: translation
dtype:
translation:
languages:
- tr
- en
splits:
- name: train
num_bytes: 60416617
num_examples: 205756
- name: validation
num_bytes: 752773
num_examples: 3007
- name: test
num_bytes: 770313
num_examples: 3000
download_size: 62263061
dataset_size: 61939703
- config_name: zh-en
features:
- name: translation
dtype:
translation:
languages:
- zh
- en
splits:
- name: train
num_bytes: 5536169801
num_examples: 25160346
- name: validation
num_bytes: 540347
num_examples: 2001
- name: test
num_bytes: 1107522
num_examples: 3981
download_size: 2259428767
dataset_size: 5537817670
---
# Dataset Card for "wmt18"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [http://www.statmt.org/wmt18/translation-task.html](http://www.statmt.org/wmt18/translation-task.html)
- **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of downloaded dataset files:** 2.03 GB
- **Size of the generated dataset:** 1.46 GB
- **Total amount of disk used:** 3.49 GB
### Dataset Summary
<div class="course-tip course-tip-orange bg-gradient-to-br dark:bg-gradient-to-r before:border-orange-500 dark:before:border-orange-800 from-orange-50 dark:from-gray-900 to-white dark:to-gray-950 border border-orange-50 text-orange-700 dark:text-gray-400">
<p><b>Warning:</b> There are issues with the Common Crawl corpus data (<a href="https://www.statmt.org/wmt13/training-parallel-commoncrawl.tgz">training-parallel-commoncrawl.tgz</a>):</p>
<ul>
<li>Non-English files contain many English sentences.</li>
<li>Their "parallel" sentences in English are not aligned: they are uncorrelated with their counterpart.</li>
</ul>
<p>We have contacted the WMT organizers.</p>
</div>
Translation dataset based on the data from statmt.org.
Versions exist for different years using a combination of data
sources. The base `wmt` allows you to create a custom dataset by choosing
your own data/language pair. This can be done as follows:
```python
from datasets import inspect_dataset, load_dataset_builder
inspect_dataset("wmt18", "path/to/scripts")
builder = load_dataset_builder(
"path/to/scripts/wmt_utils.py",
language_pair=("fr", "de"),
subsets={
datasets.Split.TRAIN: ["commoncrawl_frde"],
datasets.Split.VALIDATION: ["euelections_dev2019"],
},
)
# Standard version
builder.download_and_prepare()
ds = builder.as_dataset()
# Streamable version
ds = builder.as_streaming_dataset()
```
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Dataset Structure
### Data Instances
#### cs-en
- **Size of downloaded dataset files:** 2.03 GB
- **Size of the generated dataset:** 1.46 GB
- **Total amount of disk used:** 3.49 GB
An example of 'validation' looks as follows.
```
```
### Data Fields
The data fields are the same among all splits.
#### cs-en
- `translation`: a multilingual `string` variable, with possible languages including `cs`, `en`.
### Data Splits
|name | train |validation|test|
|-----|-------:|---------:|---:|
|cs-en|11046024| 3005|2983|
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{bojar-EtAl:2018:WMT1,
author = {Bojar, Ond
{r}ej and Federmann, Christian and Fishel, Mark
and Graham, Yvette and Haddow, Barry and Huck, Matthias and
Koehn, Philipp and Monz, Christof},
title = {Findings of the 2018 Conference on Machine Translation (WMT18)},
booktitle = {Proceedings of the Third Conference on Machine Translation,
Volume 2: Shared Task Papers},
month = {October},
year = {2018},
address = {Belgium, Brussels},
publisher = {Association for Computational Linguistics},
pages = {272--307},
url = {http://www.aclweb.org/anthology/W18-6401}
}
```
### Contributions
Thanks to [@thomwolf](https://github.com/thomwolf), [@patrickvonplaten](https://github.com/patrickvonplaten) for adding this dataset. | 10,313 | [
[
-0.044281005859375,
-0.0379638671875,
0.01459503173828125,
0.01253509521484375,
-0.0289306640625,
0.00435638427734375,
-0.035858154296875,
-0.037445068359375,
0.042999267578125,
0.025909423828125,
-0.060302734375,
-0.06634521484375,
-0.044830322265625,
0.0191497802734375,
-0.006916046142578125,
0.08740234375,
-0.0221405029296875,
-0.00536346435546875,
-0.0291748046875,
-0.031280517578125,
-0.03302001953125,
-0.029876708984375,
-0.0250091552734375,
-0.0187530517578125,
0.0361328125,
0.0377197265625,
0.044097900390625,
0.07098388671875,
0.051025390625,
0.0223388671875,
0.002315521240234375,
0.007419586181640625,
-0.025421142578125,
-0.0176239013671875,
-0.0012025833129882812,
-0.02056884765625,
-0.04498291015625,
0.00800323486328125,
0.035186767578125,
0.051025390625,
-0.013275146484375,
0.04461669921875,
0.008270263671875,
0.060272216796875,
-0.017333984375,
0.03863525390625,
-0.0218963623046875,
-0.009002685546875,
-0.036895751953125,
-0.012420654296875,
-0.0019235610961914062,
-0.0237274169921875,
-0.00632476806640625,
-0.05133056640625,
0.008056640625,
0.00391387939453125,
0.06634521484375,
0.00881195068359375,
-0.01174163818359375,
-0.00853729248046875,
-0.0267181396484375,
0.0521240234375,
-0.05474853515625,
0.01186370849609375,
0.04718017578125,
0.0136566162109375,
-0.00621795654296875,
-0.05377197265625,
-0.03668212890625,
0.0165252685546875,
-0.008697509765625,
0.0213470458984375,
-0.0090484619140625,
-0.025115966796875,
0.036041259765625,
0.042449951171875,
-0.0570068359375,
-0.01013946533203125,
-0.0430908203125,
-0.01512908935546875,
0.07696533203125,
0.0218963623046875,
0.01377105712890625,
-0.0177154541015625,
-0.00482940673828125,
-0.03594970703125,
-0.030670166015625,
-0.0026988983154296875,
0.039031982421875,
0.04541015625,
-0.06793212890625,
0.04547119140625,
-0.015625,
0.038330078125,
-0.0177459716796875,
0.000041544437408447266,
0.0626220703125,
-0.04071044921875,
-0.00975799560546875,
-0.01238250732421875,
0.079345703125,
0.04449462890625,
0.004383087158203125,
0.00115966796875,
-0.0007758140563964844,
-0.011871337890625,
-0.0103759765625,
-0.060760498046875,
-0.015655517578125,
0.040618896484375,
-0.04620361328125,
-0.0318603515625,
0.007244110107421875,
-0.0794677734375,
-0.013702392578125,
-0.035308837890625,
0.0222015380859375,
-0.0178375244140625,
-0.0302581787109375,
0.00879669189453125,
-0.022918701171875,
0.00971221923828125,
0.01357269287109375,
-0.036376953125,
0.0206451416015625,
0.034515380859375,
0.058990478515625,
-0.013671875,
-0.036834716796875,
-0.0147705078125,
-0.004383087158203125,
-0.00476837158203125,
0.03643798828125,
-0.017486572265625,
-0.025390625,
-0.00220489501953125,
0.036651611328125,
-0.009979248046875,
-0.0211181640625,
0.0616455078125,
-0.004852294921875,
0.03973388671875,
-0.046234130859375,
-0.02716064453125,
-0.0015439987182617188,
0.02618408203125,
-0.056976318359375,
0.0982666015625,
0.019866943359375,
-0.07354736328125,
0.00862884521484375,
-0.07257080078125,
-0.038360595703125,
0.0083160400390625,
0.005588531494140625,
-0.0416259765625,
-0.01091766357421875,
0.0111541748046875,
0.0343017578125,
-0.035064697265625,
0.027679443359375,
-0.023406982421875,
-0.0138397216796875,
0.01255035400390625,
-0.008392333984375,
0.09600830078125,
0.015533447265625,
-0.0163421630859375,
0.0076446533203125,
-0.07623291015625,
-0.015716552734375,
0.041015625,
-0.0206298828125,
-0.0029010772705078125,
-0.018280029296875,
0.036651611328125,
0.020751953125,
0.025970458984375,
-0.040283203125,
0.0264892578125,
-0.005970001220703125,
0.031158447265625,
0.05023193359375,
-0.0005893707275390625,
0.01678466796875,
-0.037109375,
0.0295562744140625,
0.017059326171875,
0.0280914306640625,
0.004055023193359375,
-0.0517578125,
-0.038818359375,
-0.00400543212890625,
0.031707763671875,
0.040924072265625,
-0.06024169921875,
0.055999755859375,
-0.04437255859375,
-0.05731201171875,
-0.039825439453125,
0.003025054931640625,
0.01477813720703125,
0.04620361328125,
0.042510986328125,
-0.0261993408203125,
-0.06256103515625,
-0.05548095703125,
0.00910186767578125,
-0.0098114013671875,
0.00872039794921875,
0.0271453857421875,
0.06573486328125,
-0.0154571533203125,
0.046661376953125,
-0.0513916015625,
-0.02496337890625,
-0.023681640625,
-0.0085296630859375,
0.0194244384765625,
0.056488037109375,
0.040496826171875,
-0.057342529296875,
-0.0325927734375,
-0.01739501953125,
-0.053955078125,
0.0005931854248046875,
0.0053253173828125,
-0.0250701904296875,
0.00865936279296875,
0.01837158203125,
-0.043731689453125,
0.0283355712890625,
0.045318603515625,
-0.03350830078125,
0.031768798828125,
-0.0023193359375,
0.00860595703125,
-0.1083984375,
0.029327392578125,
0.00665283203125,
-0.00615692138671875,
-0.03131103515625,
-0.0121002197265625,
-0.00902557373046875,
-0.00438690185546875,
-0.0286712646484375,
0.04486083984375,
-0.0157318115234375,
0.0210418701171875,
0.01117706298828125,
0.0008182525634765625,
0.007568359375,
0.048797607421875,
-0.006378173828125,
0.04180908203125,
0.058868408203125,
-0.037689208984375,
0.0257110595703125,
0.04107666015625,
-0.013671875,
0.0450439453125,
-0.046234130859375,
0.0013589859008789062,
-0.00832366943359375,
0.0243682861328125,
-0.052001953125,
-0.032379150390625,
0.0406494140625,
-0.045074462890625,
0.033416748046875,
-0.024139404296875,
-0.061370849609375,
-0.05230712890625,
-0.04290771484375,
0.0138397216796875,
0.033905029296875,
-0.0235748291015625,
0.0251617431640625,
0.0458984375,
0.0168304443359375,
-0.02252197265625,
-0.074462890625,
0.006107330322265625,
-0.0230560302734375,
-0.043701171875,
0.03216552734375,
-0.02728271484375,
0.006290435791015625,
0.00716400146484375,
0.01763916015625,
0.004077911376953125,
0.00033164024353027344,
0.01275634765625,
0.0195465087890625,
-0.001857757568359375,
-0.005584716796875,
-0.01145172119140625,
-0.0096282958984375,
0.0033931732177734375,
-0.0264892578125,
0.03369140625,
-0.00514984130859375,
-0.010101318359375,
-0.02777099609375,
0.01605224609375,
0.031341552734375,
-0.0269012451171875,
0.05694580078125,
0.076904296875,
-0.031646728515625,
0.02252197265625,
-0.02886962890625,
-0.00970458984375,
-0.0306549072265625,
0.020111083984375,
-0.005336761474609375,
-0.04730224609375,
0.06365966796875,
0.0156707763671875,
0.018646240234375,
0.058563232421875,
0.04559326171875,
-0.00846099853515625,
0.059600830078125,
0.0243682861328125,
-0.006526947021484375,
0.04083251953125,
-0.039215087890625,
-0.023834228515625,
-0.0679931640625,
-0.0279388427734375,
-0.049652099609375,
-0.038543701171875,
-0.08184814453125,
-0.03265380859375,
0.0011148452758789062,
-0.0172576904296875,
-0.021148681640625,
0.043243408203125,
-0.056396484375,
0.0177459716796875,
0.04119873046875,
0.0110626220703125,
0.0021495819091796875,
0.00390625,
-0.00655364990234375,
-0.00629425048828125,
-0.0408935546875,
-0.0240325927734375,
0.099853515625,
0.0282745361328125,
0.0217437744140625,
0.0013990402221679688,
0.058990478515625,
0.01102447509765625,
0.0081939697265625,
-0.0284881591796875,
0.04046630859375,
-0.00627899169921875,
-0.041259765625,
-0.01558685302734375,
-0.046875,
-0.07843017578125,
-0.0034637451171875,
-0.0124969482421875,
-0.051544189453125,
0.0299835205078125,
-0.001983642578125,
0.0126953125,
0.03271484375,
-0.049591064453125,
0.07855224609375,
-0.0090484619140625,
-0.033447265625,
0.0140380859375,
-0.07611083984375,
0.00968170166015625,
0.00936126708984375,
0.03704833984375,
-0.0272064208984375,
0.00403594970703125,
0.093017578125,
-0.05023193359375,
0.0626220703125,
-0.0374755859375,
0.0146636962890625,
0.030181884765625,
-0.0181732177734375,
0.0408935546875,
-0.006954193115234375,
-0.01404571533203125,
0.03778076171875,
0.01071929931640625,
-0.036163330078125,
-0.0206451416015625,
0.04278564453125,
-0.049835205078125,
-0.004421234130859375,
-0.033905029296875,
-0.047760009765625,
-0.01294708251953125,
0.0325927734375,
0.019439697265625,
0.03167724609375,
-0.0084381103515625,
0.0183868408203125,
0.0372314453125,
-0.014678955078125,
0.0301361083984375,
0.0217132568359375,
-0.01025390625,
-0.05377197265625,
0.0782470703125,
0.0188751220703125,
-0.00942230224609375,
0.0209503173828125,
0.030670166015625,
-0.024322509765625,
-0.0362548828125,
-0.052581787109375,
0.01904296875,
-0.03887939453125,
-0.0301666259765625,
-0.041900634765625,
-0.00213623046875,
-0.033233642578125,
0.013031005859375,
-0.0240325927734375,
-0.0489501953125,
-0.0185699462890625,
-0.0179443359375,
0.06231689453125,
0.0340576171875,
-0.033294677734375,
0.007686614990234375,
-0.04736328125,
0.0028533935546875,
-0.0257110595703125,
0.03857421875,
-0.0004429817199707031,
-0.03546142578125,
-0.043304443359375,
0.01490020751953125,
-0.0244293212890625,
-0.038238525390625,
0.0226898193359375,
-0.005176544189453125,
0.0302734375,
-0.00455474853515625,
0.01050567626953125,
0.051666259765625,
-0.0203704833984375,
0.0699462890625,
0.0029277801513671875,
-0.046661376953125,
0.043701171875,
-0.04132080078125,
0.029388427734375,
0.07049560546875,
0.03338623046875,
-0.039703369140625,
-0.0176544189453125,
-0.06610107421875,
-0.06610107421875,
0.059967041015625,
0.03289794921875,
0.00835418701171875,
0.00836944580078125,
0.01215362548828125,
-0.00862884521484375,
0.0261077880859375,
-0.047607421875,
-0.057220458984375,
-0.0182037353515625,
-0.036895751953125,
-0.002407073974609375,
0.001453399658203125,
-0.0236053466796875,
-0.048614501953125,
0.06011962890625,
-0.0034313201904296875,
0.022735595703125,
0.014862060546875,
0.0039825439453125,
-0.0086212158203125,
0.00409698486328125,
0.042999267578125,
0.04290771484375,
-0.030914306640625,
-0.003047943115234375,
0.004917144775390625,
-0.0616455078125,
-0.013885498046875,
0.03045654296875,
-0.01200103759765625,
0.00038552284240722656,
0.0278472900390625,
0.05450439453125,
0.004695892333984375,
-0.0292510986328125,
0.04205322265625,
-0.01360321044921875,
-0.034912109375,
-0.0159454345703125,
-0.02191162109375,
0.01338958740234375,
-0.003696441650390625,
0.016143798828125,
0.004062652587890625,
0.00044465065002441406,
-0.0283660888671875,
0.0187530517578125,
0.005474090576171875,
-0.0274505615234375,
-0.037139892578125,
0.04754638671875,
0.0120086669921875,
-0.0015354156494140625,
0.042510986328125,
-0.023406982421875,
-0.03662109375,
0.043701171875,
0.0174560546875,
0.058135986328125,
0.0001480579376220703,
0.00513458251953125,
0.05657958984375,
0.031524658203125,
-0.0011072158813476562,
0.041046142578125,
-0.00733184814453125,
-0.040069580078125,
-0.0128936767578125,
-0.039825439453125,
-0.0160980224609375,
0.0134429931640625,
-0.06903076171875,
0.03326416015625,
-0.01345062255859375,
-0.00862884521484375,
-0.00783538818359375,
0.032928466796875,
-0.07586669921875,
0.01099395751953125,
-0.007389068603515625,
0.0755615234375,
-0.07171630859375,
0.049530029296875,
0.050018310546875,
-0.060882568359375,
-0.059173583984375,
-0.013153076171875,
0.01580810546875,
-0.0460205078125,
0.004009246826171875,
0.00624847412109375,
0.04583740234375,
-0.0006580352783203125,
-0.055633544921875,
-0.053802490234375,
0.09295654296875,
0.01702880859375,
-0.0281982421875,
0.01513671875,
0.030029296875,
0.0462646484375,
-0.0124969482421875,
0.0163421630859375,
0.038421630859375,
0.057403564453125,
0.015869140625,
-0.058868408203125,
0.027069091796875,
-0.034088134765625,
-0.01751708984375,
0.01329803466796875,
-0.056793212890625,
0.039703369140625,
0.003936767578125,
-0.0024509429931640625,
-0.01861572265625,
0.038543701171875,
0.0193634033203125,
0.0244903564453125,
0.0168304443359375,
0.057952880859375,
0.06719970703125,
-0.0234375,
0.0872802734375,
-0.021148681640625,
0.0347900390625,
0.07769775390625,
0.0014247894287109375,
0.050201416015625,
0.034942626953125,
-0.0357666015625,
0.027740478515625,
0.0606689453125,
-0.0303497314453125,
0.026702880859375,
0.01071929931640625,
0.01190185546875,
0.004913330078125,
-0.0199127197265625,
-0.048004150390625,
0.0200653076171875,
0.01788330078125,
-0.018280029296875,
-0.01180267333984375,
0.004547119140625,
0.022064208984375,
-0.0178985595703125,
-0.00966644287109375,
0.056488037109375,
0.00469207763671875,
-0.0217437744140625,
0.033233642578125,
-0.0032367706298828125,
0.0462646484375,
-0.043212890625,
0.00948333740234375,
-0.01611328125,
0.0033397674560546875,
-0.038238525390625,
-0.07843017578125,
0.045379638671875,
-0.0031833648681640625,
-0.0216217041015625,
-0.02734375,
0.032958984375,
-0.03802490234375,
-0.0546875,
0.01369476318359375,
0.03240966796875,
0.0286865234375,
0.0111083984375,
-0.08599853515625,
0.03582763671875,
0.00847625732421875,
-0.030731201171875,
0.03228759765625,
0.04132080078125,
-0.006366729736328125,
0.0206146240234375,
0.059722900390625,
0.004268646240234375,
-0.01509857177734375,
0.0220489501953125,
0.06500244140625,
-0.04339599609375,
-0.022857666015625,
-0.054351806640625,
0.06298828125,
-0.01971435546875,
-0.032196044921875,
0.059112548828125,
0.0814208984375,
0.08209228515625,
-0.0020809173583984375,
0.057281494140625,
-0.038726806640625,
0.03863525390625,
-0.0150909423828125,
0.062347412109375,
-0.057525634765625,
0.0025463104248046875,
-0.034698486328125,
-0.048675537109375,
-0.032470703125,
0.0213470458984375,
-0.008636474609375,
0.007762908935546875,
0.036224365234375,
0.05889892578125,
-0.004730224609375,
0.00428009033203125,
-0.001804351806640625,
0.0152130126953125,
0.0267181396484375,
0.03668212890625,
0.018768310546875,
-0.0723876953125,
0.045440673828125,
-0.048858642578125,
-0.006374359130859375,
-0.00128936767578125,
-0.0697021484375,
-0.06011962890625,
-0.08062744140625,
-0.04827880859375,
-0.05340576171875,
-0.0177154541015625,
0.0836181640625,
0.04229736328125,
-0.0626220703125,
-0.024566650390625,
-0.006084442138671875,
0.01139068603515625,
-0.01120758056640625,
-0.0220947265625,
0.050933837890625,
0.0141448974609375,
-0.05389404296875,
0.0007600784301757812,
-0.0008716583251953125,
0.01317596435546875,
-0.0001226663589477539,
-0.0073089599609375,
-0.0240478515625,
-0.0194854736328125,
0.032318115234375,
0.0251312255859375,
-0.0186309814453125,
0.004596710205078125,
-0.01070404052734375,
-0.0065155029296875,
0.0214996337890625,
0.0333251953125,
-0.02288818359375,
0.0182647705078125,
0.040313720703125,
0.0296630859375,
0.053253173828125,
-0.00951385498046875,
0.0209503173828125,
-0.05853271484375,
0.0172119140625,
0.00724029541015625,
0.033905029296875,
0.0364990234375,
-0.02178955078125,
0.06610107421875,
0.03692626953125,
-0.0302581787109375,
-0.07568359375,
-0.01837158203125,
-0.09490966796875,
0.004558563232421875,
0.079833984375,
0.007221221923828125,
-0.035797119140625,
-0.005680084228515625,
-0.00839996337890625,
0.0220489501953125,
-0.033599853515625,
0.02392578125,
0.057159423828125,
0.0087127685546875,
0.0040130615234375,
-0.051116943359375,
0.041412353515625,
-0.007579803466796875,
-0.07904052734375,
0.0170135498046875,
0.0152130126953125,
0.024322509765625,
0.00992584228515625,
0.0469970703125,
-0.02899169921875,
0.0027179718017578125,
-0.0046234130859375,
0.0245208740234375,
-0.0299835205078125,
0.004436492919921875,
-0.0197601318359375,
-0.0229339599609375,
-0.0232391357421875,
-0.0220489501953125
]
] |
BeIR/climate-fever-qrels | 2022-10-23T06:08:28.000Z | [
"task_categories:text-retrieval",
"task_ids:entity-linking-retrieval",
"task_ids:fact-checking-retrieval",
"multilinguality:monolingual",
"language:en",
"license:cc-by-sa-4.0",
"region:us"
] | BeIR | null | null | 0 | 1,139 | 2022-06-05T17:28:22 | ---
annotations_creators: []
language_creators: []
language:
- en
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
paperswithcode_id: beir
pretty_name: BEIR Benchmark
size_categories:
msmarco:
- 1M<n<10M
trec-covid:
- 100k<n<1M
nfcorpus:
- 1K<n<10K
nq:
- 1M<n<10M
hotpotqa:
- 1M<n<10M
fiqa:
- 10K<n<100K
arguana:
- 1K<n<10K
touche-2020:
- 100K<n<1M
cqadupstack:
- 100K<n<1M
quora:
- 100K<n<1M
dbpedia:
- 1M<n<10M
scidocs:
- 10K<n<100K
fever:
- 1M<n<10M
climate-fever:
- 1M<n<10M
scifact:
- 1K<n<10K
source_datasets: []
task_categories:
- text-retrieval
- zero-shot-retrieval
- information-retrieval
- zero-shot-information-retrieval
task_ids:
- passage-retrieval
- entity-linking-retrieval
- fact-checking-retrieval
- tweet-retrieval
- citation-prediction-retrieval
- duplication-question-retrieval
- argument-retrieval
- news-retrieval
- biomedical-information-retrieval
- question-answering-retrieval
---
# Dataset Card for BEIR Benchmark
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://github.com/UKPLab/beir
- **Repository:** https://github.com/UKPLab/beir
- **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
- **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
- **Point of Contact:** nandan.thakur@uwaterloo.ca
### Dataset Summary
BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks:
- Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
- Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
- Bio-Medical IR: [TREC-COVID](https://ir.nist.gov/covidSubmit/index.html), [BioASQ](http://bioasq.org), [NFCorpus](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/)
- News Retrieval: [TREC-NEWS](https://trec.nist.gov/data/news2019.html), [Robust04](https://trec.nist.gov/data/robust/04.guidelines.html)
- Argument Retrieval: [Touche-2020](https://webis.de/events/touche-20/shared-task-1.html), [ArguAna](tp://argumentation.bplaced.net/arguana/data)
- Duplicate Question Retrieval: [Quora](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs), [CqaDupstack](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/)
- Citation-Prediction: [SCIDOCS](https://allenai.org/data/scidocs)
- Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
- Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
All these datasets have been preprocessed and can be used for your experiments.
```python
```
### Supported Tasks and Leaderboards
The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia.
The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/).
### Languages
All tasks are in English (`en`).
## Dataset Structure
All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format:
- `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}`
- `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}`
- `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1`
### Data Instances
A high level example of any beir dataset:
```python
corpus = {
"doc1" : {
"title": "Albert Einstein",
"text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
its influence on the philosophy of science. He is best known to the general public for his mass–energy \
equivalence formula E = mc2, which has been dubbed 'the world's most famous equation'. He received the 1921 \
Nobel Prize in Physics 'for his services to theoretical physics, and especially for his discovery of the law \
of the photoelectric effect', a pivotal step in the development of quantum theory."
},
"doc2" : {
"title": "", # Keep title an empty string if not present
"text": "Wheat beer is a top-fermented beer which is brewed with a large proportion of wheat relative to the amount of \
malted barley. The two main varieties are German Weißbier and Belgian witbier; other types include Lambic (made\
with wild yeast), Berliner Weisse (a cloudy, sour beer), and Gose (a sour, salty beer)."
},
}
queries = {
"q1" : "Who developed the mass-energy equivalence formula?",
"q2" : "Which beer is brewed with a large proportion of wheat?"
}
qrels = {
"q1" : {"doc1": 1},
"q2" : {"doc2": 1},
}
```
### Data Fields
Examples from all configurations have the following features:
### Corpus
- `corpus`: a `dict` feature representing the document title and passage text, made up of:
- `_id`: a `string` feature representing the unique document id
- `title`: a `string` feature, denoting the title of the document.
- `text`: a `string` feature, denoting the text of the document.
### Queries
- `queries`: a `dict` feature representing the query, made up of:
- `_id`: a `string` feature representing the unique query id
- `text`: a `string` feature, denoting the text of the query.
### Qrels
- `qrels`: a `dict` feature representing the query document relevance judgements, made up of:
- `_id`: a `string` feature representing the query id
- `_id`: a `string` feature, denoting the document id.
- `score`: a `int32` feature, denoting the relevance judgement between query and document.
### Data Splits
| Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
| -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:|
| MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` |
| TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` |
| NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` |
| BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
| NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` |
| HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` |
| FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` |
| Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
| TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
| ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` |
| Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` |
| CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` |
| Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` |
| DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` |
| SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` |
| FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` |
| Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` |
| SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` |
| Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
## Dataset Creation
### Curation Rationale
[Needs More Information]
### Source Data
#### Initial Data Collection and Normalization
[Needs More Information]
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
[Needs More Information]
#### Who are the annotators?
[Needs More Information]
### Personal and Sensitive Information
[Needs More Information]
## Considerations for Using the Data
### Social Impact of Dataset
[Needs More Information]
### Discussion of Biases
[Needs More Information]
### Other Known Limitations
[Needs More Information]
## Additional Information
### Dataset Curators
[Needs More Information]
### Licensing Information
[Needs More Information]
### Citation Information
Cite as:
```
@inproceedings{
thakur2021beir,
title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych},
booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
year={2021},
url={https://openreview.net/forum?id=wCu6T5xFjeJ}
}
```
### Contributions
Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset. | 13,988 | [
[
-0.0396728515625,
-0.03985595703125,
0.010955810546875,
0.003665924072265625,
0.004230499267578125,
0.00008660554885864258,
-0.0081939697265625,
-0.018890380859375,
0.0216827392578125,
0.005954742431640625,
-0.034332275390625,
-0.0545654296875,
-0.0263824462890625,
0.0153961181640625,
-0.0228118896484375,
0.0740966796875,
0.0010728836059570312,
0.004459381103515625,
-0.0185394287109375,
-0.0277862548828125,
-0.006099700927734375,
-0.03399658203125,
-0.038330078125,
-0.022064208984375,
0.034576416015625,
0.030120849609375,
0.03216552734375,
0.036956787109375,
0.06512451171875,
0.0196533203125,
-0.01287841796875,
0.01464080810546875,
-0.032073974609375,
-0.0086822509765625,
-0.0189971923828125,
-0.0254669189453125,
-0.0256195068359375,
-0.00322723388671875,
0.053375244140625,
0.03680419921875,
-0.0037364959716796875,
0.0288238525390625,
0.00594329833984375,
0.058013916015625,
-0.033721923828125,
0.00879669189453125,
-0.040679931640625,
-0.007904052734375,
-0.027618408203125,
-0.009124755859375,
-0.00627899169921875,
-0.01433563232421875,
-0.0025386810302734375,
-0.049560546875,
0.03338623046875,
0.0185089111328125,
0.09039306640625,
0.011383056640625,
-0.0258636474609375,
-0.01453399658203125,
-0.032562255859375,
0.064453125,
-0.049774169921875,
0.03662109375,
0.038726806640625,
0.0190582275390625,
-0.01071929931640625,
-0.062347412109375,
-0.04241943359375,
-0.0071258544921875,
-0.027679443359375,
0.034912109375,
-0.0120086669921875,
-0.026397705078125,
0.026947021484375,
0.0316162109375,
-0.0655517578125,
-0.01197052001953125,
-0.036468505859375,
-0.01514434814453125,
0.0584716796875,
0.0227813720703125,
0.002429962158203125,
-0.0306549072265625,
-0.02392578125,
-0.032958984375,
-0.0311737060546875,
0.020477294921875,
0.0156097412109375,
0.021820068359375,
-0.0251312255859375,
0.0303955078125,
-0.034332275390625,
0.03765869140625,
0.006557464599609375,
-0.00782012939453125,
0.049072265625,
-0.061920166015625,
-0.003810882568359375,
-0.00879669189453125,
0.0770263671875,
0.0309600830078125,
-0.0303192138671875,
-0.00431060791015625,
-0.00434112548828125,
-0.020355224609375,
0.00047898292541503906,
-0.0648193359375,
-0.0115814208984375,
0.044830322265625,
-0.033721923828125,
-0.0015382766723632812,
0.0233917236328125,
-0.0740966796875,
-0.00548553466796875,
0.0006818771362304688,
0.0300140380859375,
-0.0396728515625,
-0.0120849609375,
0.0018510818481445312,
-0.04345703125,
0.0261688232421875,
-0.0006022453308105469,
-0.04742431640625,
0.02398681640625,
0.03399658203125,
0.061004638671875,
-0.0031414031982421875,
-0.019927978515625,
-0.0253143310546875,
0.01097869873046875,
-0.0109100341796875,
0.04986572265625,
-0.024200439453125,
-0.030792236328125,
-0.01076507568359375,
0.01149749755859375,
-0.0025691986083984375,
-0.0256195068359375,
0.07049560546875,
-0.02960205078125,
0.03411865234375,
-0.059906005859375,
-0.031280517578125,
-0.008209228515625,
0.0259246826171875,
-0.052764892578125,
0.09661865234375,
0.0201416015625,
-0.08331298828125,
0.0220947265625,
-0.06890869140625,
-0.032745361328125,
0.0007491111755371094,
-0.00859832763671875,
-0.034637451171875,
-0.0269012451171875,
0.017333984375,
0.03216552734375,
-0.04730224609375,
0.0097503662109375,
-0.0121307373046875,
-0.0164642333984375,
0.01377105712890625,
0.0025177001953125,
0.07513427734375,
0.029449462890625,
-0.026275634765625,
-0.0123291015625,
-0.0657958984375,
0.00141143798828125,
0.023834228515625,
-0.0296173095703125,
-0.01287841796875,
-0.0032901763916015625,
0.014312744140625,
0.00891876220703125,
0.0222625732421875,
-0.039337158203125,
0.00031185150146484375,
-0.0230560302734375,
0.03778076171875,
0.020233154296875,
0.010955810546875,
0.0179290771484375,
-0.0533447265625,
0.0201263427734375,
0.01020050048828125,
0.0260467529296875,
0.005214691162109375,
-0.03350830078125,
-0.038177490234375,
-0.022003173828125,
0.0266571044921875,
0.048492431640625,
-0.041290283203125,
0.0465087890625,
-0.03900146484375,
-0.07025146484375,
-0.043121337890625,
0.00550079345703125,
0.033843994140625,
0.057647705078125,
0.04644775390625,
-0.00653076171875,
-0.03936767578125,
-0.0694580078125,
-0.01377105712890625,
-0.0163421630859375,
0.00858306884765625,
0.03619384765625,
0.06671142578125,
-0.0088958740234375,
0.055450439453125,
-0.04473876953125,
-0.0218353271484375,
-0.0081634521484375,
0.003681182861328125,
0.0380859375,
0.04742431640625,
0.04937744140625,
-0.08599853515625,
-0.035614013671875,
-0.002597808837890625,
-0.05889892578125,
0.000560760498046875,
0.00501251220703125,
-0.0146026611328125,
0.01436614990234375,
0.033447265625,
-0.044525146484375,
0.02471923828125,
0.009796142578125,
-0.02001953125,
0.028839111328125,
-0.01015472412109375,
0.041259765625,
-0.09332275390625,
0.044586181640625,
0.01091766357421875,
0.0110015869140625,
-0.040740966796875,
0.005474090576171875,
0.00933074951171875,
0.01546478271484375,
-0.03289794921875,
0.051849365234375,
-0.03228759765625,
0.00579071044921875,
0.024078369140625,
0.0027484893798828125,
0.0167236328125,
0.02471923828125,
-0.0149688720703125,
0.0584716796875,
0.036834716796875,
-0.049102783203125,
0.0243682861328125,
0.032379150390625,
-0.0240325927734375,
0.0277862548828125,
-0.0521240234375,
-0.00843048095703125,
-0.007266998291015625,
0.0190887451171875,
-0.07244873046875,
-0.0210723876953125,
0.017669677734375,
-0.049224853515625,
0.0169525146484375,
-0.01044464111328125,
-0.0556640625,
-0.047119140625,
-0.040557861328125,
0.015167236328125,
0.0372314453125,
-0.0263824462890625,
0.036834716796875,
0.026214599609375,
0.0092926025390625,
-0.059234619140625,
-0.054779052734375,
-0.0139923095703125,
-0.01971435546875,
-0.053192138671875,
0.050628662109375,
-0.0226287841796875,
-0.020721435546875,
0.0137176513671875,
-0.00506591796875,
-0.004611968994140625,
0.00576019287109375,
0.018402099609375,
0.021728515625,
-0.007740020751953125,
0.006542205810546875,
-0.01108551025390625,
0.0134735107421875,
-0.009002685546875,
0.005260467529296875,
0.0433349609375,
-0.0277252197265625,
-0.009765625,
-0.02703857421875,
0.023040771484375,
0.0419921875,
-0.0254974365234375,
0.0533447265625,
0.06365966796875,
-0.0266876220703125,
0.0140228271484375,
-0.04107666015625,
-0.01100921630859375,
-0.03369140625,
0.0181121826171875,
-0.0296173095703125,
-0.045867919921875,
0.055908203125,
0.0110321044921875,
0.01204681396484375,
0.07196044921875,
0.034912109375,
-0.01447296142578125,
0.05596923828125,
0.01457977294921875,
-0.00528717041015625,
0.03485107421875,
-0.050994873046875,
-0.003757476806640625,
-0.06256103515625,
-0.0380859375,
-0.06878662109375,
-0.01529693603515625,
-0.0521240234375,
-0.0290679931640625,
0.035186767578125,
0.0123138427734375,
-0.0341796875,
0.0289459228515625,
-0.051788330078125,
0.01149749755859375,
0.055419921875,
0.00737762451171875,
-0.0020427703857421875,
0.0002586841583251953,
-0.0200347900390625,
0.01273345947265625,
-0.060791015625,
-0.0208282470703125,
0.09161376953125,
0.0048980712890625,
0.037750244140625,
0.012725830078125,
0.06011962890625,
0.0219879150390625,
0.0007772445678710938,
-0.024932861328125,
0.0419921875,
-0.01227569580078125,
-0.07568359375,
-0.017974853515625,
-0.041046142578125,
-0.08673095703125,
0.009002685546875,
-0.0313720703125,
-0.052642822265625,
0.0250396728515625,
0.002979278564453125,
-0.021392822265625,
0.0184478759765625,
-0.057464599609375,
0.059783935546875,
-0.025360107421875,
-0.0540771484375,
-0.0050201416015625,
-0.06365966796875,
0.01390838623046875,
0.0019550323486328125,
0.0259857177734375,
-0.00223541259765625,
-0.004611968994140625,
0.079345703125,
-0.03216552734375,
0.031005859375,
-0.0123138427734375,
0.034210205078125,
0.0303955078125,
-0.02642822265625,
0.03863525390625,
0.007740020751953125,
-0.03717041015625,
0.0267791748046875,
0.03338623046875,
-0.044525146484375,
-0.0242767333984375,
0.054107666015625,
-0.0582275390625,
-0.0333251953125,
-0.05181884765625,
-0.035736083984375,
-0.002758026123046875,
0.0257110595703125,
0.03778076171875,
0.0333251953125,
-0.0211639404296875,
0.0284271240234375,
0.042327880859375,
-0.02520751953125,
0.027435302734375,
0.041778564453125,
-0.0029010772705078125,
-0.045745849609375,
0.058197021484375,
0.0215606689453125,
-0.0106353759765625,
0.05133056640625,
0.019866943359375,
-0.0343017578125,
-0.04473876953125,
-0.02178955078125,
0.020050048828125,
-0.041839599609375,
-0.03326416015625,
-0.056243896484375,
-0.02044677734375,
-0.055419921875,
0.000637054443359375,
-0.01119232177734375,
-0.01922607421875,
-0.0279083251953125,
-0.006427764892578125,
0.04632568359375,
0.025146484375,
-0.030181884765625,
0.0097808837890625,
-0.06134033203125,
0.02862548828125,
-0.00550079345703125,
0.01555633544921875,
-0.0157470703125,
-0.03411865234375,
-0.02911376953125,
0.01055908203125,
-0.025177001953125,
-0.04766845703125,
0.0293731689453125,
0.0147247314453125,
0.05889892578125,
0.0173797607421875,
0.0155029296875,
0.050689697265625,
-0.01049041748046875,
0.07879638671875,
0.01450347900390625,
-0.042236328125,
0.046234130859375,
-0.02911376953125,
0.0181121826171875,
0.0633544921875,
0.051116943359375,
-0.029876708984375,
-0.01105499267578125,
-0.057861328125,
-0.07659912109375,
0.049896240234375,
0.0271148681640625,
-0.017059326171875,
-0.00395965576171875,
0.01959228515625,
0.004302978515625,
0.00803375244140625,
-0.0292816162109375,
-0.05133056640625,
-0.0262603759765625,
-0.0200958251953125,
-0.00589752197265625,
0.001857757568359375,
-0.0281982421875,
-0.042327880859375,
0.0697021484375,
0.00838470458984375,
0.031890869140625,
0.04656982421875,
-0.00174713134765625,
0.003509521484375,
0.021942138671875,
0.0308837890625,
0.047607421875,
-0.048736572265625,
-0.0012464523315429688,
0.0115814208984375,
-0.042816162109375,
-0.01494598388671875,
0.037872314453125,
-0.01470184326171875,
0.003459930419921875,
0.0246124267578125,
0.0352783203125,
-0.003971099853515625,
-0.050262451171875,
0.030120849609375,
-0.010833740234375,
-0.03643798828125,
-0.0240020751953125,
0.01013946533203125,
0.0119476318359375,
0.0202789306640625,
0.045196533203125,
-0.006866455078125,
0.0179443359375,
-0.045989990234375,
0.021240234375,
0.031707763671875,
-0.0072784423828125,
-0.0174713134765625,
0.053985595703125,
-0.0011968612670898438,
-0.00844573974609375,
0.035797119140625,
-0.0293426513671875,
-0.03533935546875,
0.055633544921875,
0.0194549560546875,
0.03668212890625,
0.0023021697998046875,
0.01224517822265625,
0.058807373046875,
0.0227813720703125,
-0.01152801513671875,
0.043487548828125,
0.006626129150390625,
-0.043792724609375,
0.0084228515625,
-0.046112060546875,
-0.0211639404296875,
0.019134521484375,
-0.054107666015625,
0.01690673828125,
-0.0271759033203125,
-0.027679443359375,
0.02667236328125,
0.040863037109375,
-0.08013916015625,
0.0178680419921875,
-0.01369476318359375,
0.080078125,
-0.050750732421875,
0.049591064453125,
0.06201171875,
-0.053863525390625,
-0.0570068359375,
-0.01218414306640625,
-0.004199981689453125,
-0.043182373046875,
0.040740966796875,
-0.004718780517578125,
0.01654052734375,
-0.00658416748046875,
-0.0452880859375,
-0.076416015625,
0.10992431640625,
0.006633758544921875,
-0.038116455078125,
0.0161285400390625,
0.00782012939453125,
0.048004150390625,
-0.01071929931640625,
0.033294677734375,
0.03607177734375,
0.05145263671875,
0.0076141357421875,
-0.05712890625,
0.0116424560546875,
-0.041229248046875,
-0.02777099609375,
0.01458740234375,
-0.0821533203125,
0.060577392578125,
0.0011854171752929688,
-0.0113372802734375,
-0.0083465576171875,
0.042327880859375,
0.015838623046875,
0.056915283203125,
0.01715087890625,
0.0657958984375,
0.07000732421875,
-0.01454925537109375,
0.08319091796875,
-0.034637451171875,
0.035980224609375,
0.0670166015625,
-0.017974853515625,
0.060882568359375,
0.026824951171875,
-0.0312347412109375,
0.0302886962890625,
0.053009033203125,
-0.0281982421875,
0.0474853515625,
0.00551605224609375,
0.0013017654418945312,
0.0012712478637695312,
-0.01068878173828125,
-0.051666259765625,
0.0289459228515625,
0.0273590087890625,
-0.01611328125,
-0.00769805908203125,
-0.0179901123046875,
0.004817962646484375,
-0.00933837890625,
-0.01708984375,
0.0472412109375,
-0.0124664306640625,
-0.0419921875,
0.058563232421875,
-0.001617431640625,
0.050628662109375,
-0.05450439453125,
0.01422882080078125,
-0.03033447265625,
-0.00147247314453125,
-0.03076171875,
-0.06256103515625,
0.0203857421875,
0.0023174285888671875,
-0.0293731689453125,
0.0013151168823242188,
0.045684814453125,
-0.0103607177734375,
-0.0428466796875,
0.0166015625,
0.045440673828125,
0.0273590087890625,
0.01203155517578125,
-0.0731201171875,
0.002132415771484375,
-0.0013284683227539062,
-0.026275634765625,
0.0260467529296875,
0.028228759765625,
0.007335662841796875,
0.043182373046875,
0.05841064453125,
-0.0011510848999023438,
0.0026531219482421875,
-0.0136260986328125,
0.06756591796875,
-0.06964111328125,
-0.021820068359375,
-0.043121337890625,
0.031341552734375,
-0.0265655517578125,
-0.033599853515625,
0.061920166015625,
0.084716796875,
0.06866455078125,
0.01021575927734375,
0.06591796875,
-0.037506103515625,
0.046905517578125,
-0.0238189697265625,
0.0633544921875,
-0.06982421875,
0.005779266357421875,
-0.0092926025390625,
-0.038299560546875,
-0.0125885009765625,
0.0232086181640625,
-0.0208892822265625,
0.004703521728515625,
0.054534912109375,
0.076904296875,
0.002338409423828125,
-0.0108642578125,
0.004306793212890625,
0.020538330078125,
0.0193328857421875,
0.030792236328125,
0.035369873046875,
-0.061004638671875,
0.049957275390625,
-0.033050537109375,
0.000011265277862548828,
-0.029449462890625,
-0.049560546875,
-0.054595947265625,
-0.07293701171875,
-0.0307159423828125,
-0.042755126953125,
0.00994110107421875,
0.07489013671875,
0.051971435546875,
-0.06884765625,
-0.0074615478515625,
0.007427215576171875,
0.01343536376953125,
-0.0281219482421875,
-0.0204925537109375,
0.0555419921875,
-0.0028247833251953125,
-0.045013427734375,
0.011322021484375,
-0.0007615089416503906,
-0.0028133392333984375,
0.0179443359375,
-0.008209228515625,
-0.042327880859375,
0.0030002593994140625,
0.036102294921875,
0.035186767578125,
-0.03741455078125,
-0.004634857177734375,
0.0048370361328125,
-0.0194549560546875,
0.021728515625,
0.017974853515625,
-0.047088623046875,
0.0100555419921875,
0.057769775390625,
0.037078857421875,
0.050750732421875,
0.006015777587890625,
-0.0048065185546875,
-0.03656005859375,
-0.005313873291015625,
0.0178070068359375,
0.029205322265625,
0.02923583984375,
-0.0294036865234375,
0.058563232421875,
0.0259246826171875,
-0.0408935546875,
-0.065673828125,
-0.0250091552734375,
-0.11383056640625,
-0.0178070068359375,
0.09185791015625,
0.00017952919006347656,
-0.026092529296875,
-0.002590179443359375,
-0.00399017333984375,
0.0309295654296875,
-0.053375244140625,
0.045867919921875,
0.044677734375,
-0.01285552978515625,
0.0120086669921875,
-0.0455322265625,
0.033294677734375,
0.0188446044921875,
-0.066162109375,
-0.0160064697265625,
0.020721435546875,
0.033782958984375,
0.0225372314453125,
0.0419921875,
-0.01561737060546875,
0.00428009033203125,
0.01019287109375,
0.006622314453125,
-0.01142120361328125,
0.0036258697509765625,
-0.0055084228515625,
0.017059326171875,
-0.0173187255859375,
-0.0169525146484375
]
] |
assin2 | 2023-01-25T14:26:53.000Z | [
"task_categories:text-classification",
"task_ids:text-scoring",
"task_ids:natural-language-inference",
"task_ids:semantic-similarity-scoring",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:pt",
"license:unknown",
"region:us"
] | null | The ASSIN 2 corpus is composed of rather simple sentences. Following the procedures of SemEval 2014 Task 1.
The training and validation data are composed, respectively, of 6,500 and 500 sentence pairs in Brazilian Portuguese,
annotated for entailment and semantic similarity. Semantic similarity values range from 1 to 5, and text entailment
classes are either entailment or none. The test data are composed of approximately 3,000 sentence pairs with the same
annotation. All data were manually annotated. | @inproceedings{real2020assin,
title={The assin 2 shared task: a quick overview},
author={Real, Livy and Fonseca, Erick and Oliveira, Hugo Goncalo},
booktitle={International Conference on Computational Processing of the Portuguese Language},
pages={406--412},
year={2020},
organization={Springer}
} | 9 | 1,138 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- found
language:
- pt
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- text-classification
task_ids:
- text-scoring
- natural-language-inference
- semantic-similarity-scoring
paperswithcode_id: assin2
pretty_name: ASSIN 2
dataset_info:
features:
- name: sentence_pair_id
dtype: int64
- name: premise
dtype: string
- name: hypothesis
dtype: string
- name: relatedness_score
dtype: float32
- name: entailment_judgment
dtype:
class_label:
names:
'0': NONE
'1': ENTAILMENT
splits:
- name: train
num_bytes: 864816
num_examples: 6500
- name: test
num_bytes: 339580
num_examples: 2448
- name: validation
num_bytes: 66895
num_examples: 500
download_size: 2113646
dataset_size: 1271291
---
# Dataset Card for ASSIN 2
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [ASSIN 2 homepage](https://sites.google.com/view/assin2)
- **Repository:** [ASSIN 2 repository](https://sites.google.com/view/assin2)
- **Paper:** [The ASSIN 2 shared task: a quick overview](https://drive.google.com/file/d/1ft1VU6xiVm-N58dfAp6FHWjQ4IvcXgqp/view)
- **Point of Contact:** [Livy Real](mailto:livyreal@gmail.com)
### Dataset Summary
The ASSIN 2 corpus is composed of rather simple sentences. Following the procedures of SemEval 2014 Task 1.
The training and validation data are composed, respectively, of 6,500 and 500 sentence pairs in Brazilian Portuguese,
annotated for entailment and semantic similarity. Semantic similarity values range from 1 to 5, and text entailment
classes are either entailment or none. The test data are composed of approximately 3,000 sentence pairs with the same
annotation. All data were manually annotated.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
The language supported is Portuguese.
## Dataset Structure
### Data Instances
An example from the ASSIN 2 dataset looks as follows:
```
{
"entailment_judgment": 1,
"hypothesis": "Uma criança está segurando uma pistola de água",
"premise": "Uma criança risonha está segurando uma pistola de água e sendo espirrada com água",
"relatedness_score": 4.5,
"sentence_pair_id": 1
}
```
### Data Fields
- `sentence_pair_id`: a `int64` feature.
- `premise`: a `string` feature.
- `hypothesis`: a `string` feature.
- `relatedness_score`: a `float32` feature.
- `entailment_judgment`: a classification label, with possible values including `NONE`, `ENTAILMENT`.
### Data Splits
The data is split into train, validation and test set. The split sizes are as follow:
| Train | Val | Test |
| ------ | ----- | ---- |
| 6500 | 500 | 2448 |
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
```
@inproceedings{real2020assin,
title={The assin 2 shared task: a quick overview},
author={Real, Livy and Fonseca, Erick and Oliveira, Hugo Goncalo},
booktitle={International Conference on Computational Processing of the Portuguese Language},
pages={406--412},
year={2020},
organization={Springer}
}
```
### Contributions
Thanks to [@jonatasgrosman](https://github.com/jonatasgrosman) for adding this dataset. | 5,047 | [
[
-0.01849365234375,
-0.04974365234375,
0.01186370849609375,
0.01528167724609375,
-0.019073486328125,
-0.006862640380859375,
-0.01358795166015625,
-0.043487548828125,
0.024383544921875,
0.037353515625,
-0.0297393798828125,
-0.061737060546875,
-0.0535888671875,
0.00989532470703125,
-0.0187835693359375,
0.09228515625,
-0.0269622802734375,
-0.006076812744140625,
-0.0303192138671875,
-0.029632568359375,
-0.0304107666015625,
-0.0288848876953125,
-0.04736328125,
-0.01302337646484375,
0.01378631591796875,
0.0367431640625,
0.0391845703125,
0.05548095703125,
0.033935546875,
0.0156402587890625,
0.002864837646484375,
0.016204833984375,
-0.032470703125,
-0.0011243820190429688,
-0.0009784698486328125,
-0.045379638671875,
-0.03515625,
0.005462646484375,
0.0360107421875,
0.035003662109375,
0.0191802978515625,
0.0316162109375,
0.01641845703125,
0.04730224609375,
-0.04766845703125,
0.0496826171875,
-0.019378662109375,
-0.015777587890625,
-0.0265350341796875,
0.00731658935546875,
-0.01364898681640625,
-0.0240478515625,
-0.004329681396484375,
-0.053985595703125,
0.006175994873046875,
0.002605438232421875,
0.069091796875,
0.01450347900390625,
-0.032745361328125,
-0.019012451171875,
-0.0223236083984375,
0.04644775390625,
-0.0439453125,
0.0038509368896484375,
0.0572509765625,
0.00959014892578125,
0.00439453125,
-0.052642822265625,
-0.048828125,
0.020050048828125,
-0.036895751953125,
0.0222930908203125,
-0.0133819580078125,
-0.006931304931640625,
0.0189208984375,
0.01971435546875,
-0.04827880859375,
-0.01012420654296875,
-0.04498291015625,
-0.022308349609375,
0.07623291015625,
0.003597259521484375,
0.0155029296875,
-0.0139617919921875,
-0.016876220703125,
-0.0204925537109375,
-0.0543212890625,
0.006893157958984375,
0.05059814453125,
0.01168060302734375,
-0.046783447265625,
0.047119140625,
-0.01300811767578125,
0.02459716796875,
-0.0208892822265625,
0.00884246826171875,
0.05126953125,
-0.0428466796875,
0.0023193359375,
-0.004611968994140625,
0.0660400390625,
0.04095458984375,
0.0140228271484375,
0.006381988525390625,
-0.01395416259765625,
0.0149993896484375,
-0.0062713623046875,
-0.054901123046875,
-0.03289794921875,
0.041290283203125,
-0.03582763671875,
-0.01947021484375,
0.0089263916015625,
-0.074462890625,
-0.01708984375,
-0.0258941650390625,
0.0290679931640625,
-0.0245361328125,
-0.022674560546875,
-0.01505279541015625,
-0.004222869873046875,
0.031982421875,
0.00629425048828125,
-0.050750732421875,
0.04852294921875,
0.06207275390625,
0.07537841796875,
-0.0203704833984375,
-0.0183563232421875,
-0.03106689453125,
0.00792694091796875,
-0.0120391845703125,
0.05535888671875,
-0.0309295654296875,
-0.0266265869140625,
0.024078369140625,
0.024261474609375,
0.00045037269592285156,
-0.025482177734375,
0.052703857421875,
-0.0217132568359375,
0.025360107421875,
-0.0428466796875,
-0.036895751953125,
-0.02252197265625,
0.01023101806640625,
-0.04779052734375,
0.09625244140625,
0.01514434814453125,
-0.06304931640625,
0.0222320556640625,
-0.05908203125,
-0.05133056640625,
-0.00948333740234375,
-0.02685546875,
-0.036376953125,
-0.0226287841796875,
0.006710052490234375,
0.0242767333984375,
-0.031341552734375,
0.008544921875,
-0.01049041748046875,
-0.026397705078125,
-0.0020923614501953125,
-0.0012950897216796875,
0.079345703125,
0.0113067626953125,
-0.025604248046875,
-0.005100250244140625,
-0.056610107421875,
-0.01849365234375,
0.017181396484375,
-0.006328582763671875,
-0.0240478515625,
-0.01319122314453125,
0.02276611328125,
0.0229949951171875,
0.0305938720703125,
-0.0352783203125,
0.01117706298828125,
-0.046234130859375,
0.02471923828125,
0.04052734375,
0.00954437255859375,
0.029266357421875,
-0.0309295654296875,
0.0221710205078125,
0.01291656494140625,
0.0042877197265625,
0.001781463623046875,
-0.0491943359375,
-0.0657958984375,
-0.0121917724609375,
0.02880859375,
0.0615234375,
-0.045318603515625,
0.04876708984375,
-0.0234832763671875,
-0.037109375,
-0.055084228515625,
0.0037441253662109375,
0.052459716796875,
0.01384735107421875,
0.037200927734375,
-0.0291748046875,
-0.05084228515625,
-0.079345703125,
0.0034885406494140625,
-0.021270751953125,
0.0051116943359375,
0.032196044921875,
0.08056640625,
-0.005615234375,
0.05572509765625,
-0.053619384765625,
-0.03662109375,
-0.0159759521484375,
0.01549530029296875,
-0.0020771026611328125,
0.044464111328125,
0.051544189453125,
-0.056732177734375,
-0.03192138671875,
-0.0198974609375,
-0.0604248046875,
-0.0164337158203125,
0.0064544677734375,
-0.02667236328125,
0.032379150390625,
0.0196990966796875,
-0.0300750732421875,
0.044708251953125,
0.0259552001953125,
-0.0440673828125,
0.0306854248046875,
-0.01213836669921875,
0.02044677734375,
-0.10028076171875,
0.0119171142578125,
0.0118560791015625,
0.00959014892578125,
-0.037811279296875,
-0.015899658203125,
-0.014007568359375,
0.015838623046875,
-0.021026611328125,
0.057769775390625,
-0.0298919677734375,
-0.004913330078125,
-0.01364898681640625,
0.006290435791015625,
0.0089263916015625,
0.04669189453125,
-0.0069122314453125,
0.057708740234375,
0.05438232421875,
-0.03466796875,
0.01556396484375,
0.0535888671875,
-0.02838134765625,
0.04132080078125,
-0.07080078125,
0.00409698486328125,
-0.013671875,
0.0307769775390625,
-0.08782958984375,
-0.03375244140625,
0.03948974609375,
-0.052734375,
0.0146484375,
-0.006649017333984375,
-0.069580078125,
-0.0086669921875,
-0.0396728515625,
0.026397705078125,
0.0380859375,
-0.0215911865234375,
0.0282745361328125,
0.051055908203125,
-0.00551605224609375,
-0.026336669921875,
-0.07171630859375,
-0.0144500732421875,
-0.0115509033203125,
-0.0487060546875,
0.031524658203125,
0.00439453125,
-0.0174102783203125,
0.0009679794311523438,
0.024505615234375,
-0.009765625,
-0.00475311279296875,
0.039337158203125,
0.01556396484375,
0.0097503662109375,
0.017120361328125,
0.028564453125,
-0.007678985595703125,
0.01186370849609375,
-0.001537322998046875,
0.0350341796875,
0.006378173828125,
-0.00783538818359375,
-0.0308074951171875,
0.036102294921875,
0.0209808349609375,
-0.036376953125,
0.0667724609375,
0.0601806640625,
-0.045074462890625,
0.021148681640625,
-0.03558349609375,
-0.022979736328125,
-0.0255279541015625,
0.033447265625,
-0.0248260498046875,
-0.0548095703125,
0.061614990234375,
0.0210113525390625,
0.0272979736328125,
0.06048583984375,
0.043914794921875,
0.013031005859375,
0.06927490234375,
0.02081298828125,
-0.01012420654296875,
0.016082763671875,
-0.051055908203125,
-0.0033054351806640625,
-0.069580078125,
-0.038818359375,
-0.04278564453125,
-0.03375244140625,
-0.058746337890625,
-0.0311126708984375,
0.013702392578125,
-0.011322021484375,
-0.0305938720703125,
0.034454345703125,
-0.0322265625,
0.0178680419921875,
0.0557861328125,
0.01207733154296875,
0.00481414794921875,
-0.0005388259887695312,
0.0088653564453125,
0.0052642822265625,
-0.0275421142578125,
-0.042755126953125,
0.09393310546875,
0.0309295654296875,
0.0149383544921875,
0.0210113525390625,
0.048187255859375,
0.0220794677734375,
-0.002399444580078125,
-0.03204345703125,
0.043975830078125,
-0.0222015380859375,
-0.04833984375,
-0.0143890380859375,
-0.007389068603515625,
-0.071044921875,
0.0012464523315429688,
-0.023681640625,
-0.0645751953125,
0.029266357421875,
0.00562286376953125,
-0.025543212890625,
0.0008897781372070312,
-0.0550537109375,
0.0672607421875,
-0.0023956298828125,
-0.04547119140625,
-0.00994110107421875,
-0.08563232421875,
0.01190185546875,
0.00785064697265625,
0.0191650390625,
-0.00777435302734375,
-0.0203094482421875,
0.098876953125,
-0.0380859375,
0.06243896484375,
-0.01557159423828125,
0.0081634521484375,
0.0501708984375,
-0.012847900390625,
0.04888916015625,
0.0157318115234375,
-0.00864410400390625,
0.03143310546875,
0.01131439208984375,
-0.0257110595703125,
-0.044342041015625,
0.0521240234375,
-0.08001708984375,
-0.01091766357421875,
-0.042266845703125,
-0.0279083251953125,
-0.0017528533935546875,
0.0033168792724609375,
0.03466796875,
0.0258636474609375,
0.00921630859375,
0.016326904296875,
0.03466796875,
-0.0034008026123046875,
-0.0004553794860839844,
0.0214996337890625,
0.0052947998046875,
-0.04071044921875,
0.05810546875,
0.023956298828125,
-0.003932952880859375,
0.0267181396484375,
-0.0081024169921875,
-0.036376953125,
-0.0276641845703125,
-0.023681640625,
0.02239990234375,
-0.04034423828125,
-0.0181884765625,
-0.06048583984375,
-0.01503753662109375,
-0.053497314453125,
0.0037517547607421875,
-0.0149383544921875,
-0.035491943359375,
-0.03466796875,
-0.024078369140625,
0.046539306640625,
0.030853271484375,
-0.01474761962890625,
0.03106689453125,
-0.0272674560546875,
0.0088043212890625,
0.00008404254913330078,
0.0207672119140625,
-0.014007568359375,
-0.05072021484375,
-0.023468017578125,
0.0175323486328125,
-0.01751708984375,
-0.0687255859375,
0.0154571533203125,
0.0132293701171875,
0.0328369140625,
0.01654052734375,
0.005733489990234375,
0.0274200439453125,
-0.0140533447265625,
0.07330322265625,
-0.005687713623046875,
-0.0404052734375,
0.062347412109375,
-0.0162353515625,
0.004329681396484375,
0.07452392578125,
0.0272064208984375,
-0.020721435546875,
-0.014190673828125,
-0.0555419921875,
-0.09014892578125,
0.05950927734375,
0.044586181640625,
0.0009784698486328125,
-0.0072021484375,
0.031097412109375,
0.00925445556640625,
0.01383209228515625,
-0.047698974609375,
-0.05731201171875,
-0.006427764892578125,
-0.0301666259765625,
0.008514404296875,
-0.028594970703125,
-0.0251617431640625,
-0.02764892578125,
0.07208251953125,
0.00457763671875,
0.036468505859375,
0.00489044189453125,
0.0009298324584960938,
0.0098114013671875,
0.004421234130859375,
0.0204010009765625,
0.02288818359375,
-0.0134735107421875,
0.0043792724609375,
0.01416015625,
-0.037872314453125,
-0.0034942626953125,
0.0251617431640625,
-0.030303955078125,
-0.0018606185913085938,
0.037841796875,
0.07220458984375,
0.0031642913818359375,
-0.04058837890625,
0.05682373046875,
0.01111602783203125,
-0.035125732421875,
-0.042999267578125,
0.004421234130859375,
-0.0268402099609375,
0.023345947265625,
0.01151275634765625,
-0.01369476318359375,
0.0293426513671875,
-0.04107666015625,
0.02142333984375,
0.013580322265625,
-0.0292510986328125,
-0.0289154052734375,
0.054351806640625,
0.016510009765625,
-0.0086669921875,
0.0298614501953125,
-0.038665771484375,
-0.028076171875,
0.0518798828125,
0.0274658203125,
0.06170654296875,
0.0157318115234375,
0.015838623046875,
0.061859130859375,
0.0153350830078125,
-0.0172882080078125,
0.036956787109375,
0.00528717041015625,
-0.046539306640625,
-0.01416015625,
-0.037109375,
-0.0018339157104492188,
0.0167236328125,
-0.0494384765625,
0.03521728515625,
-0.01629638671875,
0.0021514892578125,
-0.0119781494140625,
0.026947021484375,
-0.0496826171875,
0.0193634033203125,
-0.00890350341796875,
0.059967041015625,
-0.08868408203125,
0.038177490234375,
0.07305908203125,
-0.0533447265625,
-0.056976318359375,
-0.008392333984375,
0.02020263671875,
-0.05609130859375,
0.0240631103515625,
0.016265869140625,
0.0341796875,
-0.01284027099609375,
-0.05267333984375,
-0.053009033203125,
0.1014404296875,
0.0062713623046875,
-0.0189208984375,
0.007534027099609375,
0.0206451416015625,
0.051971435546875,
-0.0308074951171875,
0.028778076171875,
0.061126708984375,
0.04229736328125,
0.0201416015625,
-0.044708251953125,
0.0159912109375,
-0.040252685546875,
-0.01236724853515625,
0.01520538330078125,
-0.06591796875,
0.0487060546875,
-0.00936126708984375,
-0.00769805908203125,
-0.0035343170166015625,
0.0567626953125,
0.03009033203125,
0.044158935546875,
0.0239715576171875,
0.053802490234375,
0.046051025390625,
-0.023345947265625,
0.06573486328125,
-0.0283203125,
0.027252197265625,
0.0977783203125,
-0.01038360595703125,
0.059844970703125,
0.0219268798828125,
-0.036376953125,
0.039642333984375,
0.0556640625,
-0.01110076904296875,
0.04229736328125,
0.0070343017578125,
-0.00554656982421875,
0.008148193359375,
-0.0200653076171875,
-0.035369873046875,
0.049102783203125,
0.020599365234375,
-0.034881591796875,
0.005176544189453125,
-0.018310546875,
0.02880859375,
0.00728607177734375,
-0.00922393798828125,
0.0643310546875,
-0.0083770751953125,
-0.0491943359375,
0.0084686279296875,
0.0048828125,
0.037078857421875,
-0.0309295654296875,
-0.01519775390625,
-0.016693115234375,
-0.006336212158203125,
-0.02813720703125,
-0.07769775390625,
0.033905029296875,
0.0005812644958496094,
-0.01140594482421875,
0.0073089599609375,
0.049896240234375,
-0.04376220703125,
-0.052734375,
0.01456451416015625,
0.032012939453125,
0.029022216796875,
0.0054779052734375,
-0.051055908203125,
0.00861358642578125,
0.003986358642578125,
-0.0179901123046875,
0.0216217041015625,
0.0323486328125,
-0.0080108642578125,
0.020599365234375,
0.031402587890625,
0.00905609130859375,
-0.025787353515625,
0.00247955322265625,
0.05755615234375,
-0.0181121826171875,
-0.0372314453125,
-0.056549072265625,
0.046295166015625,
-0.0267181396484375,
-0.042449951171875,
0.047943115234375,
0.08306884765625,
0.07257080078125,
0.01117706298828125,
0.07733154296875,
-0.0307769775390625,
0.04412841796875,
-0.0232696533203125,
0.0537109375,
-0.04803466796875,
0.0086212158203125,
-0.0154876708984375,
-0.05682373046875,
-0.01995849609375,
0.055816650390625,
-0.035247802734375,
0.00994110107421875,
0.0391845703125,
0.0703125,
0.0168304443359375,
0.0014657974243164062,
-0.00762176513671875,
0.02447509765625,
0.01259613037109375,
0.046783447265625,
0.006221771240234375,
-0.0743408203125,
0.037445068359375,
-0.0300750732421875,
-0.028076171875,
-0.017059326171875,
-0.0310211181640625,
-0.0660400390625,
-0.07794189453125,
-0.04620361328125,
-0.0491943359375,
0.01959228515625,
0.071044921875,
0.025421142578125,
-0.07958984375,
-0.01255035400390625,
-0.010162353515625,
-0.00325775146484375,
-0.0103607177734375,
-0.0173187255859375,
0.056427001953125,
0.0118865966796875,
-0.050628662109375,
-0.030853271484375,
0.007110595703125,
0.003589630126953125,
-0.004512786865234375,
-0.0219573974609375,
-0.0380859375,
-0.0081024169921875,
0.040008544921875,
0.0142822265625,
-0.03363037109375,
-0.024505615234375,
-0.01247406005859375,
-0.003658294677734375,
-0.0006351470947265625,
0.02545166015625,
-0.0428466796875,
0.0223236083984375,
0.048004150390625,
0.0284576416015625,
0.02838134765625,
0.0011606216430664062,
0.015869140625,
-0.051605224609375,
0.0198516845703125,
0.011383056640625,
0.0289306640625,
0.0167694091796875,
-0.0273284912109375,
0.07159423828125,
0.025482177734375,
-0.043914794921875,
-0.04815673828125,
-0.001068115234375,
-0.08502197265625,
0.005756378173828125,
0.123291015625,
-0.0113677978515625,
-0.01407623291015625,
-0.0161285400390625,
-0.025238037109375,
0.05255126953125,
-0.046295166015625,
0.045318603515625,
0.054656982421875,
0.0022735595703125,
0.00004494190216064453,
-0.043609619140625,
0.035919189453125,
0.00923919677734375,
-0.07940673828125,
-0.002048492431640625,
0.03265380859375,
0.0034732818603515625,
0.00966644287109375,
0.04998779296875,
-0.0230255126953125,
0.01358795166015625,
0.0008792877197265625,
-0.0006928443908691406,
-0.0031757354736328125,
-0.01203155517578125,
-0.0014858245849609375,
-0.0055084228515625,
-0.0181427001953125,
-0.0305633544921875
]
] |
turing-motors/LLaVA-Instruct-150K-JA | 2023-08-28T11:26:23.000Z | [
"task_categories:visual-question-answering",
"task_categories:question-answering",
"size_categories:100K<n<1M",
"language:ja",
"license:cc-by-nc-4.0",
"region:us"
] | turing-motors | null | null | 4 | 1,136 | 2023-08-28T10:50:24 | ---
license: cc-by-nc-4.0
task_categories:
- visual-question-answering
- question-answering
language:
- ja
pretty_name: Japanese LLaVA Visual Instruct 150K
size_categories:
- 100K<n<1M
---
## Dataset Details
**Dataset Type:**
Japanese LLaVA Instruct 150K is a localized version of the original LLaVA Visual Instruct 150K dataset. This version is translated into Japanese using DeepL API and is aimed at serving similar purposes in the context of Japanese language.
**Resources for More Information:**
For information on the original dataset: [LLaVA Visual Instruct 150K](https://llava-vl.github.io/)
**License:**
Attribution-NonCommercial 4.0 International (CC BY-NC-4.0)
The dataset should abide by the policy of OpenAI: [OpenAI Terms of Use](https://openai.com/policies/terms-of-use)
**Questions or Comments:**
For questions or comments about the original model, you can go to [LLaVA GitHub Issues](https://github.com/haotian-liu/LLaVA/issues).
## Intended Use
**Primary Intended Uses:**
The primary use of this translated dataset is research on large multimodal models and chatbots in a Japanese context.
**Primary Intended Users:**
The primary intended users are researchers and hobbyists interested in computer vision, natural language processing, machine learning, and artificial intelligence, particularly those focusing on the Japanese language.
---
**Note:** This dataset is a translation of the original LLaVA Visual Instruct 150K, carried out using the DeepL API. The license remains the same as the original dataset, Attribution-NonCommercial 4.0 International (CC BY-NC-4.0).
---
| 1,619 | [
[
-0.00821685791015625,
-0.055816650390625,
0.034332275390625,
0.016632080078125,
-0.029266357421875,
-0.0015621185302734375,
-0.0248565673828125,
-0.025726318359375,
0.029083251953125,
0.059417724609375,
-0.06280517578125,
-0.0537109375,
-0.0316162109375,
0.00905609130859375,
-0.0037994384765625,
0.06549072265625,
-0.029693603515625,
0.0177764892578125,
-0.0235595703125,
-0.00408935546875,
-0.03936767578125,
-0.0086212158203125,
-0.039794921875,
-0.01447296142578125,
0.0297698974609375,
0.050506591796875,
0.041015625,
0.0125885009765625,
0.050201416015625,
0.0195770263671875,
0.016143798828125,
-0.000995635986328125,
-0.058624267578125,
-0.0009145736694335938,
0.0159912109375,
-0.04718017578125,
-0.04052734375,
-0.0282745361328125,
0.06573486328125,
0.03076171875,
-0.01123046875,
0.0294036865234375,
-0.0005898475646972656,
0.044158935546875,
-0.03436279296875,
0.04345703125,
-0.042877197265625,
0.00762176513671875,
-0.040283203125,
0.004638671875,
-0.029510498046875,
-0.0146942138671875,
-0.0188140869140625,
-0.0704345703125,
-0.0127105712890625,
-0.01274871826171875,
0.0694580078125,
0.0245361328125,
-0.034698486328125,
0.0028514862060546875,
-0.034271240234375,
0.05126953125,
-0.0556640625,
0.01548004150390625,
0.03912353515625,
0.053955078125,
-0.0167388916015625,
-0.052886962890625,
-0.031524658203125,
-0.0010309219360351562,
0.00982666015625,
0.0182647705078125,
-0.0168609619140625,
-0.004146575927734375,
0.03204345703125,
0.0236663818359375,
-0.04296875,
0.0093536376953125,
-0.0293121337890625,
-0.007328033447265625,
0.06329345703125,
0.0341796875,
0.0302276611328125,
-0.034149169921875,
-0.0193023681640625,
-0.0291900634765625,
-0.05206298828125,
0.0005350112915039062,
0.0220947265625,
0.02862548828125,
-0.046783447265625,
0.055267333984375,
-0.039886474609375,
0.01953125,
-0.02716064453125,
-0.0445556640625,
0.054718017578125,
-0.04296875,
-0.023223876953125,
0.0059967041015625,
0.0770263671875,
0.0222625732421875,
0.032867431640625,
0.0227203369140625,
-0.0037593841552734375,
-0.0225372314453125,
0.0028591156005859375,
-0.04498291015625,
0.004184722900390625,
-0.01013946533203125,
-0.032470703125,
-0.01434326171875,
-0.0016880035400390625,
-0.05902099609375,
-0.01526641845703125,
-0.0272979736328125,
0.00860595703125,
-0.0167388916015625,
-0.023223876953125,
0.0034122467041015625,
0.022857666015625,
0.036346435546875,
0.024658203125,
-0.046600341796875,
0.01329803466796875,
0.033782958984375,
0.052215576171875,
0.0034046173095703125,
-0.02325439453125,
0.018524169921875,
0.0230560302734375,
-0.016845703125,
0.0400390625,
-0.0198822021484375,
-0.045745849609375,
-0.0008668899536132812,
0.0301513671875,
0.00653839111328125,
-0.0213470458984375,
0.045013427734375,
-0.0212860107421875,
0.01222991943359375,
-0.01580810546875,
-0.0243988037109375,
-0.01470184326171875,
0.0016231536865234375,
-0.0419921875,
0.0706787109375,
-0.0008301734924316406,
-0.0528564453125,
0.0252532958984375,
-0.0439453125,
-0.0249786376953125,
0.031982421875,
-0.0198974609375,
-0.038543701171875,
-0.011932373046875,
0.0310516357421875,
0.031097412109375,
-0.0119171142578125,
0.039215087890625,
-0.03863525390625,
-0.016326904296875,
0.0166473388671875,
-0.05206298828125,
0.08282470703125,
0.0182647705078125,
-0.00742340087890625,
0.01503753662109375,
-0.043731689453125,
-0.02655029296875,
0.03472900390625,
-0.0160675048828125,
-0.0261077880859375,
-0.02764892578125,
-0.00824737548828125,
-0.0196075439453125,
0.044708251953125,
-0.060150146484375,
0.03692626953125,
-0.025787353515625,
-0.0027446746826171875,
0.06317138671875,
0.007061004638671875,
0.020660400390625,
0.0012235641479492188,
0.0635986328125,
-0.0086517333984375,
0.04766845703125,
-0.0189361572265625,
-0.0648193359375,
-0.051849365234375,
-0.0302886962890625,
0.00115203857421875,
0.051605224609375,
-0.08038330078125,
0.00841522216796875,
-0.0543212890625,
-0.03662109375,
-0.063232421875,
0.0143280029296875,
0.022918701171875,
0.04217529296875,
-0.0034770965576171875,
0.0015411376953125,
-0.056915283203125,
-0.09063720703125,
0.016632080078125,
0.000027120113372802734,
-0.0019969940185546875,
0.04132080078125,
0.055267333984375,
-0.032562255859375,
0.0428466796875,
-0.04766845703125,
-0.029022216796875,
-0.0180816650390625,
-0.01277923583984375,
0.043853759765625,
0.01221466064453125,
0.03387451171875,
-0.046539306640625,
-0.062103271484375,
0.0084991455078125,
-0.0810546875,
-0.0002282857894897461,
-0.00782012939453125,
-0.03741455078125,
0.00913238525390625,
0.0242767333984375,
-0.0281219482421875,
0.054840087890625,
0.041595458984375,
-0.005733489990234375,
0.0110321044921875,
0.002208709716796875,
0.0256805419921875,
-0.11688232421875,
0.003376007080078125,
-0.001628875732421875,
-0.024658203125,
-0.0265960693359375,
0.01413726806640625,
0.00038051605224609375,
-0.0301513671875,
-0.04547119140625,
0.045684814453125,
-0.01309967041015625,
-0.01690673828125,
0.0005559921264648438,
-0.0037994384765625,
-0.00952911376953125,
0.037567138671875,
-0.0074920654296875,
0.069580078125,
0.04632568359375,
-0.0238189697265625,
0.042266845703125,
0.04534912109375,
-0.053131103515625,
0.0312347412109375,
-0.056671142578125,
0.00011706352233886719,
-0.00797271728515625,
0.0209197998046875,
-0.075439453125,
-0.049560546875,
0.04901123046875,
-0.041015625,
0.01678466796875,
-0.01425933837890625,
-0.04742431640625,
-0.0162200927734375,
-0.0321044921875,
0.032470703125,
0.04229736328125,
-0.031982421875,
0.03289794921875,
0.032196044921875,
-0.01519012451171875,
-0.0482177734375,
-0.0823974609375,
0.004566192626953125,
-0.0181121826171875,
-0.0440673828125,
0.01203155517578125,
-0.005535125732421875,
-0.009857177734375,
-0.00002765655517578125,
0.035369873046875,
-0.002140045166015625,
-0.00646209716796875,
0.033721923828125,
0.0439453125,
-0.0092926025390625,
-0.00974273681640625,
0.0052032470703125,
-0.01079559326171875,
-0.009765625,
0.032867431640625,
0.035125732421875,
-0.001735687255859375,
-0.03436279296875,
-0.07342529296875,
0.00916290283203125,
0.0234527587890625,
0.0160369873046875,
0.0562744140625,
0.0377197265625,
-0.01459503173828125,
0.0230560302734375,
-0.025421142578125,
-0.0043182373046875,
-0.036224365234375,
0.040802001953125,
-0.04644775390625,
-0.040863037109375,
0.047119140625,
0.00933837890625,
0.0026531219482421875,
0.03466796875,
0.0282440185546875,
-0.0245361328125,
0.06719970703125,
0.039276123046875,
-0.0291900634765625,
0.052520751953125,
-0.027374267578125,
-0.005428314208984375,
-0.07080078125,
-0.032470703125,
-0.0186004638671875,
-0.02386474609375,
-0.059295654296875,
-0.0191802978515625,
0.034576416015625,
-0.024993896484375,
-0.029693603515625,
0.01299285888671875,
-0.01129913330078125,
0.0357666015625,
0.026123046875,
0.0229644775390625,
0.01519012451171875,
0.042694091796875,
0.029937744140625,
-0.0229339599609375,
-0.038909912109375,
-0.020782470703125,
0.10394287109375,
0.039215087890625,
0.06719970703125,
0.0112762451171875,
0.061553955078125,
0.0082550048828125,
0.0105743408203125,
-0.0469970703125,
0.0550537109375,
-0.0266265869140625,
-0.0419921875,
-0.0265045166015625,
-0.0499267578125,
-0.090087890625,
-0.0148468017578125,
0.0088348388671875,
-0.041290283203125,
0.0005297660827636719,
-0.0186004638671875,
0.01788330078125,
0.022674560546875,
-0.0361328125,
0.061553955078125,
-0.0223236083984375,
0.00025653839111328125,
-0.014068603515625,
-0.025054931640625,
0.041259765625,
0.00441741943359375,
0.0211334228515625,
-0.018035888671875,
-0.01461029052734375,
0.05828857421875,
-0.0081634521484375,
0.09442138671875,
-0.0236663818359375,
-0.0159912109375,
0.01617431640625,
-0.00788116455078125,
0.0377197265625,
0.02093505859375,
0.00420379638671875,
0.04498291015625,
-0.01136016845703125,
-0.031219482421875,
-0.029266357421875,
0.054595947265625,
-0.082275390625,
-0.030853271484375,
-0.017669677734375,
-0.02825927734375,
0.005947113037109375,
0.0169525146484375,
0.030487060546875,
0.0277099609375,
-0.004329681396484375,
0.0401611328125,
0.040313720703125,
-0.03314208984375,
0.004535675048828125,
0.04669189453125,
-0.0341796875,
-0.0535888671875,
0.0672607421875,
0.006328582763671875,
0.0106201171875,
0.029571533203125,
-0.002193450927734375,
-0.0137176513671875,
-0.014007568359375,
-0.042816162109375,
0.029571533203125,
-0.059112548828125,
-0.014892578125,
-0.00450897216796875,
-0.016876220703125,
-0.038238525390625,
-0.005184173583984375,
-0.0419921875,
-0.00937652587890625,
-0.0285186767578125,
-0.003383636474609375,
0.041778564453125,
0.04541015625,
0.017608642578125,
0.0219573974609375,
-0.031219482421875,
0.0369873046875,
0.00518798828125,
0.0360107421875,
-0.01751708984375,
-0.060394287109375,
-0.020751953125,
0.0218505859375,
-0.00023317337036132812,
-0.047027587890625,
0.034149169921875,
0.007015228271484375,
0.055145263671875,
0.005428314208984375,
-0.00982666015625,
0.06414794921875,
-0.00905609130859375,
0.062408447265625,
0.017181396484375,
-0.039306640625,
0.06719970703125,
-0.0279083251953125,
0.053863525390625,
0.07012939453125,
0.0440673828125,
-0.039215087890625,
-0.01190185546875,
-0.04425048828125,
-0.06378173828125,
0.057647705078125,
0.00362396240234375,
0.033233642578125,
0.0224609375,
0.032196044921875,
0.023529052734375,
0.001201629638671875,
-0.07647705078125,
-0.023284912109375,
-0.01105499267578125,
-0.048614501953125,
-0.007110595703125,
-0.022369384765625,
-0.0037288665771484375,
-0.0188140869140625,
0.0531005859375,
-0.01255035400390625,
0.0183258056640625,
-0.004772186279296875,
-0.00588226318359375,
-0.006378173828125,
-0.00627899169921875,
0.03399658203125,
0.03863525390625,
-0.01308441162109375,
-0.0296630859375,
0.0228118896484375,
-0.044891357421875,
-0.0038814544677734375,
-0.0203094482421875,
-0.043701171875,
-0.0029888153076171875,
0.05120849609375,
0.0858154296875,
0.0289459228515625,
-0.04510498046875,
0.037139892578125,
-0.0168914794921875,
-0.01517486572265625,
-0.053466796875,
-0.005706787109375,
-0.0113677978515625,
0.0084991455078125,
0.005100250244140625,
-0.0312347412109375,
0.0144805908203125,
-0.0301971435546875,
-0.007396697998046875,
0.0192413330078125,
-0.0146026611328125,
-0.01580810546875,
0.0260772705078125,
0.01067352294921875,
-0.006526947021484375,
0.0655517578125,
0.0016565322875976562,
-0.000037550926208496094,
0.0452880859375,
0.02069091796875,
0.070068359375,
-0.004638671875,
0.0218505859375,
0.05133056640625,
0.01334381103515625,
0.0184478759765625,
0.04571533203125,
0.0010976791381835938,
-0.056182861328125,
-0.041168212890625,
-0.03765869140625,
-0.0307769775390625,
0.02386474609375,
-0.04937744140625,
0.025848388671875,
-0.0347900390625,
-0.004741668701171875,
-0.0206451416015625,
0.003086090087890625,
-0.048065185546875,
-0.0065765380859375,
0.0279998779296875,
0.046234130859375,
-0.064453125,
0.07830810546875,
0.053192138671875,
-0.05328369140625,
-0.052734375,
-0.0158233642578125,
0.003936767578125,
-0.0863037109375,
0.0537109375,
-0.00296783447265625,
0.0130767822265625,
-0.0265045166015625,
-0.06756591796875,
-0.0760498046875,
0.09765625,
0.036773681640625,
-0.056732177734375,
0.0272369384765625,
0.03515625,
0.0301361083984375,
-0.0204620361328125,
0.01255035400390625,
0.0177001953125,
0.0377197265625,
0.00826263427734375,
-0.07305908203125,
-0.01404571533203125,
-0.0306396484375,
0.01214599609375,
-0.003376007080078125,
-0.060516357421875,
0.03515625,
0.01165771484375,
-0.00934600830078125,
0.0016355514526367188,
0.046417236328125,
0.026824951171875,
0.0278167724609375,
0.01459503173828125,
0.036834716796875,
0.04254150390625,
0.0019502639770507812,
0.091796875,
-0.01134490966796875,
0.012481689453125,
0.0858154296875,
-0.007518768310546875,
0.0606689453125,
0.0251312255859375,
-0.042572021484375,
0.0474853515625,
0.050567626953125,
-0.0118560791015625,
0.04302978515625,
-0.02471923828125,
0.00041985511779785156,
0.00630950927734375,
-0.01360321044921875,
-0.03472900390625,
0.0401611328125,
0.02239990234375,
-0.0166015625,
0.0140838623046875,
0.0212860107421875,
0.0095367431640625,
-0.00978851318359375,
-0.01837158203125,
0.07318115234375,
-0.0018262863159179688,
-0.0214080810546875,
0.04962158203125,
-0.017242431640625,
0.055267333984375,
-0.0677490234375,
0.003170013427734375,
-0.042022705078125,
-0.0004115104675292969,
-0.0090179443359375,
-0.086181640625,
0.01320648193359375,
0.0087432861328125,
-0.003971099853515625,
-0.01812744140625,
0.0526123046875,
-0.01020050048828125,
-0.06396484375,
0.0096893310546875,
0.00423431396484375,
0.036407470703125,
0.0270538330078125,
-0.066162109375,
0.0229339599609375,
0.042449951171875,
-0.03363037109375,
0.029449462890625,
0.0221405029296875,
-0.00774383544921875,
0.07440185546875,
0.032958984375,
0.00563812255859375,
-0.0050201416015625,
0.041656494140625,
0.06427001953125,
-0.03472900390625,
-0.022735595703125,
-0.04571533203125,
0.047576904296875,
-0.016143798828125,
-0.034912109375,
0.06573486328125,
0.04254150390625,
0.07440185546875,
-0.0228424072265625,
0.051971435546875,
0.0087738037109375,
0.0124969482421875,
-0.049835205078125,
0.0220947265625,
-0.060699462890625,
0.01204681396484375,
-0.0240631103515625,
-0.05548095703125,
-0.01509857177734375,
0.0266876220703125,
-0.0209503173828125,
-0.0011053085327148438,
0.01824951171875,
0.0670166015625,
-0.00426483154296875,
-0.0081634521484375,
0.024810791015625,
0.0228271484375,
0.0158843994140625,
0.054412841796875,
0.047210693359375,
-0.046234130859375,
0.043670654296875,
-0.0433349609375,
-0.01242828369140625,
-0.0186309814453125,
-0.04376220703125,
-0.05169677734375,
-0.039031982421875,
-0.033782958984375,
0.0051727294921875,
-0.01416778564453125,
0.03460693359375,
0.041412353515625,
-0.062164306640625,
-0.03765869140625,
0.00380706787109375,
-0.005954742431640625,
0.021484375,
-0.01788330078125,
0.02264404296875,
-0.0005564689636230469,
-0.056915283203125,
0.0343017578125,
0.0050506591796875,
0.004638671875,
-0.02838134765625,
-0.019378662109375,
-0.009185791015625,
-0.0172882080078125,
0.0287628173828125,
0.0185546875,
-0.05914306640625,
0.004909515380859375,
-0.0116119384765625,
-0.0082550048828125,
0.01361846923828125,
0.0220794677734375,
-0.03570556640625,
0.046173095703125,
0.0567626953125,
0.0233917236328125,
0.0555419921875,
-0.02044677734375,
0.029144287109375,
-0.0614013671875,
0.047882080078125,
-0.00826263427734375,
0.04364013671875,
0.02783203125,
-0.045684814453125,
0.05731201171875,
0.012908935546875,
-0.033477783203125,
-0.059906005859375,
0.01352691650390625,
-0.08099365234375,
-0.017669677734375,
0.08404541015625,
-0.00637054443359375,
-0.03411865234375,
0.0192413330078125,
-0.042572021484375,
0.0182952880859375,
-0.0435791015625,
0.021484375,
0.037139892578125,
0.0003006458282470703,
-0.037872314453125,
-0.0609130859375,
0.01255035400390625,
0.003078460693359375,
-0.0672607421875,
-0.00439453125,
0.0249786376953125,
0.0153961181640625,
-0.01192474365234375,
0.050750732421875,
-0.008392333984375,
0.004650115966796875,
0.0114898681640625,
0.026947021484375,
-0.006244659423828125,
-0.0159149169921875,
-0.02471923828125,
-0.01155853271484375,
0.00004398822784423828,
-0.0156707763671875
]
] |
open-web-math/open-web-math | 2023-10-17T20:14:00.000Z | [
"arxiv:2310.06786",
"region:us"
] | open-web-math | null | null | 162 | 1,134 | 2023-09-06T00:25:12 | ---
dataset_info:
features:
- name: url
dtype: string
- name: text
dtype: string
- name: date
dtype: string
- name: metadata
dtype: string
splits:
- name: train
num_bytes: 56651995057
num_examples: 6315233
download_size: 16370689925
dataset_size: 56651995057
license: odc-by
task_categories:
- text-generation
language:
- en
pretty_name: OpenWebMath
size_categories:
- 10B<n<100B
---
<img src="imgs/OpenWebMath-left.png" width="300">
[Keiran Paster](https://keirp.com)\*, [Marco Dos Santos](https://marco-dossantos.github.io/)\*, [Zhangir Azerbayev](https://zhangir-azerbayev.github.io/), [Jimmy Ba](https://jimmylba.github.io/)
[GitHub ](https://github.com/keirp/OpenWebMath) | [ArXiv](https://arxiv.org/abs/2310.06786)
| [PDF](https://arxiv.org/pdf/2310.06786.pdf)
**OpenWebMath** is a dataset containing the majority of the high-quality, mathematical text from the internet. It is filtered and extracted from over 200B HTML files on Common Crawl down to a set of **6.3 million documents** containing a total of **14.7B tokens**. OpenWebMath is intended for use in _pretraining_ and _finetuning_ large language models.
You can download the dataset using Hugging Face:
```python
from datasets import load_dataset
ds = load_dataset("open-web-math/open-web-math")
```
# OpenWebMath Contents
The dataset is structured as follows:
```python
{
"text": ..., # document text.
"url": ..., # document url.
"date": ..., # date the page was crawled.
"metadata": ..., # JSON containing information from the extraction process.
}
```
OpenWebMath contains documents from over 130k different domains, including data from forums, educational pages, and blogs. The dataset contains documents covering mathematics, physics, statistics, computer science, and more. The following table shows the most common domains in OpenWebMath by character count.
| Domain | # Characters | % Characters |
| ----------------- | ------------- | ------------ |
| stackexchange.com | 4,655,132,784 | 9.55% |
| nature.com | 1,529,935,838 | 3.14% |
| wordpress.com | 1,294,166,938 | 2.66% |
| physicsforums.com | 1,160,137,919 | 2.38% |
| github.io | 725,689,722 | 1.49% |
| zbmath.org | 620,019,503 | 1.27% |
| wikipedia.org | 618,024,754 | 1.27% |
| groundai.com | 545,214,990 | 1.12% |
| blogspot.com | 520,392,333 | 1.07% |
| mathoverflow.net | 499,102,560 | 1.02% |
# OpenWebMath Pipeline
<img src="imgs/pipeline.png" alt="Overview of the OpenWebMath Pipeline">
OpenWebMath builds on the massive [Common Crawl](https://commoncrawl.org/) dataset, which contains over 200B HTML documents. We filtered the data to only include documents that are: (1) in English, (2) contain mathematical content, and (3) are of high quality. We also put a strong emphasis on extracting LaTeX content from the HTML documents as well as reducing boilerplate in comparison to other web datasets.
The OpenWebMath pipeline consists of five steps:
1. **Prefiltering HTML Documents**:
- We apply a simple prefilter to all HTML documents in Common Crawl in order to skip documents without mathematical content to unnecessary processing time.
2. **Text Extraction**:
- Extract text, including LaTeX content, from the HTML documents while removing boilerplate.
3. **Content Classification and Filtering**:
- Apply a [FastText language identification model](https://fasttext.cc/docs/en/language-identification.html) to keep only English documents.
- Filter high perplexity documents using a [KenLM](https://github.com/kpu/kenlm) model trained on [Proof-Pile](https://huggingface.co/datasets/hoskinson-center/proof-pile).
- Filter non-mathematical documents using our own _MathScore_ model.
4. **Deduplication**:
- Deduplicate the dataset using SimHash in [text-dedup](https://github.com/ChenghaoMou/text-dedup).
5. **Manual Inspection**:
- Inspect the documents gathered from previous steps and remove low quality pages.
For a detailed discussion on the processing pipeline, please refer to our paper.
# License
OpenWebMath is made available under an ODC-By 1.0 license; users should also abide by the CommonCrawl ToU: [https://commoncrawl.org/terms-of-use/](https://commoncrawl.org/terms-of-use/). We do not alter the license of any of the underlying data.
# Citation Information
```
@misc{paster2023openwebmath,
title={OpenWebMath: An Open Dataset of High-Quality Mathematical Web Text},
author={Keiran Paster and Marco Dos Santos and Zhangir Azerbayev and Jimmy Ba},
year={2023},
eprint={2310.06786},
archivePrefix={arXiv},
primaryClass={cs.AI}
}
```
| 4,802 | [
[
-0.05413818359375,
-0.055999755859375,
0.0168914794921875,
0.0002722740173339844,
-0.0113983154296875,
-0.01529693603515625,
-0.018218994140625,
-0.032928466796875,
0.0006723403930664062,
0.007843017578125,
-0.03289794921875,
-0.056427001953125,
-0.038604736328125,
0.0101776123046875,
-0.018768310546875,
0.06915283203125,
-0.01190948486328125,
-0.002346038818359375,
-0.01372528076171875,
-0.004241943359375,
0.0216522216796875,
-0.01378631591796875,
-0.0142822265625,
-0.0097503662109375,
0.029754638671875,
0.006031036376953125,
0.049072265625,
0.053375244140625,
0.054473876953125,
0.0200653076171875,
0.0183563232421875,
0.004856109619140625,
-0.0443115234375,
-0.00739288330078125,
-0.02362060546875,
-0.01007080078125,
-0.035797119140625,
0.012542724609375,
0.036407470703125,
0.064697265625,
-0.01177978515625,
0.02203369140625,
0.011505126953125,
0.0440673828125,
-0.06109619140625,
-0.0010271072387695312,
-0.039520263671875,
-0.007648468017578125,
-0.0399169921875,
-0.003643035888671875,
-0.0258026123046875,
-0.0472412109375,
0.01346588134765625,
-0.06317138671875,
0.03289794921875,
0.0046844482421875,
0.07257080078125,
-0.00545501708984375,
-0.0121307373046875,
-0.021331787109375,
-0.0184173583984375,
0.07977294921875,
-0.045623779296875,
0.041351318359375,
0.0472412109375,
0.00820159912109375,
-0.016693115234375,
-0.056060791015625,
-0.03729248046875,
0.0283203125,
0.005176544189453125,
0.0232086181640625,
-0.049163818359375,
-0.0230712890625,
0.025054931640625,
0.03314208984375,
-0.08538818359375,
0.0085601806640625,
-0.044097900390625,
-0.02935791015625,
0.04156494140625,
0.0007195472717285156,
0.0259857177734375,
-0.01065826416015625,
-0.0174407958984375,
-0.0316162109375,
-0.0195770263671875,
0.0087890625,
0.033294677734375,
0.0095977783203125,
-0.0130157470703125,
0.05206298828125,
-0.0232391357421875,
0.0419921875,
-0.025421142578125,
-0.0311279296875,
0.0292510986328125,
-0.027496337890625,
-0.0131683349609375,
-0.0141754150390625,
0.08282470703125,
0.03076171875,
0.0305023193359375,
-0.004669189453125,
0.0132904052734375,
0.01343536376953125,
-0.0004184246063232422,
-0.08404541015625,
-0.0198974609375,
0.0265655517578125,
-0.04974365234375,
-0.00579833984375,
0.03424072265625,
-0.08984375,
-0.004535675048828125,
-0.0015201568603515625,
0.022247314453125,
-0.057952880859375,
-0.01012420654296875,
0.021636962890625,
-0.03948974609375,
-0.012115478515625,
0.0357666015625,
-0.026123046875,
0.026947021484375,
0.03936767578125,
0.07244873046875,
-0.0157012939453125,
-0.0284881591796875,
-0.0249176025390625,
0.001873016357421875,
0.005619049072265625,
0.04888916015625,
-0.041748046875,
-0.005451202392578125,
-0.004131317138671875,
-0.0030879974365234375,
0.00418853759765625,
-0.023590087890625,
0.039306640625,
-0.03619384765625,
0.03729248046875,
0.00751495361328125,
-0.0273590087890625,
-0.01947021484375,
-0.003574371337890625,
-0.053375244140625,
0.06634521484375,
0.01385498046875,
-0.06658935546875,
0.0031909942626953125,
-0.05718994140625,
-0.01995849609375,
-0.01282501220703125,
0.027618408203125,
-0.020294189453125,
-0.0027866363525390625,
0.0321044921875,
0.03485107421875,
-0.04144287109375,
-0.01114654541015625,
-0.037078857421875,
-0.01363372802734375,
0.0233001708984375,
-0.019744873046875,
0.09527587890625,
0.047454833984375,
-0.01580810546875,
-0.037384033203125,
-0.092041015625,
0.017822265625,
0.034881591796875,
-0.023712158203125,
-0.034210205078125,
-0.0002827644348144531,
-0.0016956329345703125,
0.01312255859375,
0.0243682861328125,
-0.04632568359375,
0.03472900390625,
-0.022369384765625,
0.0232086181640625,
0.0594482421875,
-0.0004818439483642578,
0.02813720703125,
-0.029083251953125,
0.04205322265625,
0.006633758544921875,
-0.00012034177780151367,
-0.0172271728515625,
-0.058807373046875,
-0.032684326171875,
-0.045196533203125,
0.03521728515625,
0.0303802490234375,
-0.0247650146484375,
0.034820556640625,
-0.0312347412109375,
-0.059600830078125,
-0.055450439453125,
-0.00691986083984375,
0.028778076171875,
0.032562255859375,
0.045135498046875,
-0.023956298828125,
-0.02734375,
-0.0477294921875,
-0.01525115966796875,
0.01171112060546875,
-0.0233154296875,
-0.00848388671875,
0.0518798828125,
-0.0179595947265625,
0.073486328125,
-0.086181640625,
-0.0136566162109375,
0.02789306640625,
0.018310546875,
0.0243377685546875,
0.0262451171875,
0.034027099609375,
-0.052886962890625,
-0.053070068359375,
-0.0017919540405273438,
-0.04638671875,
-0.0269927978515625,
0.0203857421875,
-0.0286407470703125,
0.0243377685546875,
0.008636474609375,
-0.04132080078125,
0.040496826171875,
0.0322265625,
-0.01096343994140625,
0.035491943359375,
0.00554656982421875,
0.006214141845703125,
-0.06744384765625,
0.0236358642578125,
0.0181427001953125,
0.004276275634765625,
-0.0202789306640625,
0.0197906494140625,
0.0028057098388671875,
-0.017120361328125,
-0.0245208740234375,
0.049407958984375,
-0.044647216796875,
0.00815582275390625,
0.027099609375,
0.04229736328125,
0.0014963150024414062,
0.047454833984375,
-0.02410888671875,
0.04638671875,
0.0401611328125,
-0.04736328125,
0.01036834716796875,
0.0181121826171875,
-0.0245208740234375,
0.032867431640625,
-0.0226593017578125,
-0.001857757568359375,
0.004650115966796875,
0.019317626953125,
-0.0767822265625,
-0.01556396484375,
0.00965118408203125,
-0.060638427734375,
-0.0026111602783203125,
-0.0213470458984375,
-0.05029296875,
-0.033447265625,
-0.06634521484375,
0.0026531219482421875,
0.055633544921875,
-0.0275726318359375,
0.0176544189453125,
0.029693603515625,
-0.00543212890625,
-0.038482666015625,
-0.03558349609375,
-0.0360107421875,
0.01265716552734375,
-0.06256103515625,
0.0238494873046875,
-0.032196044921875,
-0.0244903564453125,
0.01873779296875,
-0.00457000732421875,
-0.0261993408203125,
0.00946044921875,
0.01393890380859375,
0.0109405517578125,
-0.00637054443359375,
-0.024810791015625,
-0.00017178058624267578,
-0.0121612548828125,
-0.003658294677734375,
-0.030487060546875,
0.0732421875,
0.0011119842529296875,
-0.040924072265625,
-0.03271484375,
0.01551055908203125,
0.043670654296875,
-0.026763916015625,
0.042816162109375,
0.061279296875,
-0.0374755859375,
0.00394439697265625,
-0.01561737060546875,
0.0032253265380859375,
-0.034149169921875,
0.01367950439453125,
-0.0168304443359375,
-0.039093017578125,
0.036865234375,
0.00943756103515625,
0.0296173095703125,
0.06719970703125,
0.0384521484375,
-0.0149993896484375,
0.086669921875,
0.005828857421875,
0.0024051666259765625,
0.01416015625,
-0.04736328125,
0.00968170166015625,
-0.0545654296875,
-0.020416259765625,
-0.06732177734375,
-0.023956298828125,
-0.077392578125,
-0.033599853515625,
0.015869140625,
0.0276641845703125,
-0.0284576416015625,
0.02947998046875,
-0.0440673828125,
0.01473236083984375,
0.0531005859375,
-0.001743316650390625,
0.02313232421875,
0.02294921875,
-0.042205810546875,
-0.01849365234375,
-0.02508544921875,
-0.031646728515625,
0.09326171875,
0.0078887939453125,
0.0576171875,
0.02789306640625,
0.049835205078125,
0.002651214599609375,
-0.00353240966796875,
-0.040679931640625,
0.048248291015625,
-0.009124755859375,
-0.0457763671875,
-0.0228118896484375,
-0.041595458984375,
-0.09747314453125,
0.02880859375,
-0.0088653564453125,
-0.059234619140625,
-0.00988006591796875,
-0.00743865966796875,
0.01416015625,
0.035491943359375,
-0.0401611328125,
0.0361328125,
0.0089263916015625,
-0.040771484375,
-0.0161590576171875,
-0.042083740234375,
0.0192108154296875,
-0.01070404052734375,
0.04522705078125,
-0.0007748603820800781,
-0.0067596435546875,
0.05303955078125,
-0.05401611328125,
0.032196044921875,
-0.007965087890625,
0.0011272430419921875,
0.0249176025390625,
0.0146484375,
0.033905029296875,
-0.0145721435546875,
-0.0132293701171875,
0.03839111328125,
-0.0120697021484375,
-0.046600341796875,
-0.01953125,
0.052276611328125,
-0.062103271484375,
-0.01096343994140625,
-0.0517578125,
-0.0144195556640625,
0.006244659423828125,
0.046356201171875,
0.0357666015625,
0.04302978515625,
-0.009490966796875,
0.0292510986328125,
0.04327392578125,
-0.021392822265625,
0.0513916015625,
0.0280303955078125,
-0.0272979736328125,
-0.053131103515625,
0.075927734375,
0.0241241455078125,
0.004619598388671875,
0.033355712890625,
0.0309600830078125,
-0.0164337158203125,
-0.048492431640625,
-0.030181884765625,
0.0290985107421875,
-0.03955078125,
-0.0321044921875,
-0.07171630859375,
-0.0169219970703125,
-0.055206298828125,
-0.030426025390625,
-0.00498199462890625,
-0.044647216796875,
-0.0364990234375,
0.020172119140625,
0.034210205078125,
0.0292510986328125,
-0.02203369140625,
0.0090179443359375,
-0.05523681640625,
0.03594970703125,
0.00482940673828125,
0.0321044921875,
0.0180206298828125,
-0.03143310546875,
-0.0172271728515625,
0.0177154541015625,
-0.052276611328125,
-0.04669189453125,
0.035736083984375,
0.00799560546875,
0.051849365234375,
0.04058837890625,
0.020721435546875,
0.066162109375,
-0.0389404296875,
0.0732421875,
0.03326416015625,
-0.061004638671875,
0.039794921875,
-0.0343017578125,
0.0277252197265625,
0.036285400390625,
0.0736083984375,
-0.023529052734375,
-0.032745361328125,
-0.05181884765625,
-0.059173583984375,
0.0517578125,
0.022857666015625,
-0.0238037109375,
0.00484466552734375,
-0.007610321044921875,
0.0152435302734375,
0.00039196014404296875,
-0.05035400390625,
-0.026275634765625,
-0.022247314453125,
-0.0288543701171875,
0.01519012451171875,
0.0095977783203125,
-0.003925323486328125,
-0.02783203125,
0.062347412109375,
-0.00835418701171875,
0.035430908203125,
0.01145172119140625,
-0.042144775390625,
-0.01149749755859375,
0.01264190673828125,
0.04229736328125,
0.06439208984375,
-0.0265350341796875,
0.00872039794921875,
-0.005870819091796875,
-0.07635498046875,
-0.01221466064453125,
0.0216064453125,
-0.006229400634765625,
-0.0028839111328125,
0.0389404296875,
0.0261688232421875,
0.010467529296875,
-0.04876708984375,
0.036956787109375,
-0.0006470680236816406,
-0.0244903564453125,
-0.010833740234375,
0.01213836669921875,
0.0077362060546875,
-0.0006856918334960938,
0.048248291015625,
0.00324249267578125,
0.016937255859375,
-0.03717041015625,
0.012115478515625,
0.02679443359375,
0.0003972053527832031,
-0.036407470703125,
0.03387451171875,
-0.007762908935546875,
-0.0182952880859375,
0.04229736328125,
-0.0244903564453125,
-0.042877197265625,
0.0256805419921875,
0.046173095703125,
0.04876708984375,
0.0017728805541992188,
0.0030345916748046875,
0.04876708984375,
0.014678955078125,
0.0132293701171875,
0.027252197265625,
0.0196380615234375,
-0.0254974365234375,
-0.01288604736328125,
-0.07769775390625,
-0.031829833984375,
0.01416015625,
-0.052490234375,
0.038238525390625,
-0.03387451171875,
0.01062774658203125,
0.0277252197265625,
0.025054931640625,
-0.054107666015625,
0.016357421875,
-0.01800537109375,
0.0618896484375,
-0.029296875,
0.04364013671875,
0.052032470703125,
-0.053955078125,
-0.02752685546875,
0.0103302001953125,
0.0120697021484375,
-0.0643310546875,
0.0330810546875,
0.0081939697265625,
0.0012912750244140625,
0.0168914794921875,
-0.05828857421875,
-0.07281494140625,
0.09014892578125,
0.01003265380859375,
-0.031280517578125,
0.00348663330078125,
0.0007228851318359375,
0.037872314453125,
0.0118560791015625,
0.0288543701171875,
-0.00876617431640625,
0.048736572265625,
-0.00438690185546875,
-0.064208984375,
0.0079803466796875,
-0.024566650390625,
-0.025421142578125,
0.03765869140625,
-0.0499267578125,
0.090576171875,
-0.003391265869140625,
-0.018310546875,
-0.004718780517578125,
0.0222930908203125,
0.0256805419921875,
0.03509521484375,
0.0271759033203125,
0.0789794921875,
0.06524658203125,
-0.01195526123046875,
0.06549072265625,
-0.00658416748046875,
0.048980712890625,
0.051483154296875,
-0.011444091796875,
0.0657958984375,
0.0103302001953125,
-0.05303955078125,
0.050140380859375,
0.0452880859375,
-0.0112152099609375,
0.041015625,
0.0122222900390625,
0.01824951171875,
0.0128021240234375,
0.01137542724609375,
-0.04486083984375,
0.032958984375,
0.00921630859375,
-0.012298583984375,
-0.0357666015625,
0.002288818359375,
0.036529541015625,
-0.0006661415100097656,
-0.016998291015625,
0.035247802734375,
-0.004993438720703125,
-0.040924072265625,
0.05096435546875,
0.00754547119140625,
0.057769775390625,
-0.05279541015625,
0.005275726318359375,
-0.007781982421875,
0.0186920166015625,
-0.02490234375,
-0.0723876953125,
0.0088958740234375,
0.0259246826171875,
-0.027496337890625,
-0.0195465087890625,
0.04962158203125,
-0.01019287109375,
-0.02056884765625,
0.025146484375,
0.028411865234375,
0.03338623046875,
-0.01263427734375,
-0.043243408203125,
0.0010805130004882812,
0.00994873046875,
-0.036285400390625,
0.044097900390625,
0.047393798828125,
-0.006847381591796875,
0.0294647216796875,
0.0955810546875,
-0.003238677978515625,
0.011871337890625,
-0.02093505859375,
0.06658935546875,
-0.063720703125,
-0.0278167724609375,
-0.06500244140625,
0.0484619140625,
-0.0200347900390625,
-0.03948974609375,
0.07080078125,
0.0728759765625,
0.08355712890625,
-0.0009908676147460938,
0.05902099609375,
-0.01654052734375,
0.044891357421875,
-0.043212890625,
0.066162109375,
-0.0654296875,
-0.0245513916015625,
-0.04425048828125,
-0.07452392578125,
-0.0237884521484375,
0.05706787109375,
0.01513671875,
-0.01255035400390625,
0.06988525390625,
0.029571533203125,
-0.0179290771484375,
-0.00287628173828125,
0.010467529296875,
0.01459503173828125,
0.0260009765625,
0.0267333984375,
0.0338134765625,
-0.046417236328125,
0.05621337890625,
-0.032562255859375,
-0.0256500244140625,
-0.0310516357421875,
-0.0672607421875,
-0.053070068359375,
-0.05609130859375,
-0.0186767578125,
-0.043548583984375,
-0.026519775390625,
0.0628662109375,
0.03778076171875,
-0.0665283203125,
-0.005889892578125,
0.00652313232421875,
0.01282501220703125,
-0.0097808837890625,
-0.0233154296875,
0.027099609375,
0.00009036064147949219,
-0.06671142578125,
0.00919342041015625,
0.0131988525390625,
-0.0013380050659179688,
-0.01372528076171875,
0.0017137527465820312,
-0.037872314453125,
0.006069183349609375,
0.043670654296875,
0.005523681640625,
-0.036346435546875,
0.0036220550537109375,
0.0192718505859375,
-0.017059326171875,
0.011688232421875,
0.031951904296875,
-0.03570556640625,
0.0211944580078125,
0.057403564453125,
0.0230712890625,
0.04541015625,
-0.01123809814453125,
0.001556396484375,
-0.0227203369140625,
0.0052490234375,
0.00994873046875,
0.033660888671875,
-0.00180816650390625,
-0.01052093505859375,
0.05828857421875,
0.052032470703125,
-0.034942626953125,
-0.0804443359375,
-0.00968170166015625,
-0.09613037109375,
-0.033172607421875,
0.07769775390625,
-0.0184783935546875,
-0.01104736328125,
-0.006122589111328125,
0.0005283355712890625,
0.017364501953125,
-0.04571533203125,
0.0246429443359375,
0.062042236328125,
-0.0019054412841796875,
0.01788330078125,
-0.042572021484375,
0.0013980865478515625,
-0.01201629638671875,
-0.06884765625,
-0.0189361572265625,
0.047393798828125,
0.033233642578125,
0.0478515625,
0.036834716796875,
-0.01548004150390625,
0.0019683837890625,
-0.004425048828125,
0.016845703125,
-0.0084991455078125,
-0.01078033447265625,
-0.0017938613891601562,
0.0347900390625,
-0.035614013671875,
-0.01071929931640625
]
] |
theblackcat102/evol-codealpaca-v1 | 2023-09-07T11:42:00.000Z | [
"task_categories:text-generation",
"size_categories:100K<n<1M",
"language:en",
"license:cc-by-nc-4.0",
"code",
"region:us"
] | theblackcat102 | null | null | 70 | 1,133 | 2023-07-23T01:28:44 | ---
license: cc-by-nc-4.0
task_categories:
- text-generation
language:
- en
tags:
- code
size_categories:
- 100K<n<1M
---
## Evolved codealpaca
Updates:
* 2023/08/26 - Filtered results now only contain pure english instruction and removed any mentioned of trained by OAI response
Median sequence length : 471
We employed a methodology similar to that of [WizardCoder](https://huggingface.co/WizardLM/WizardCoder-15B-V1.0), with the exception that ours is open-source. We used the gpt-4-0314 and gpt-4-0613 models to augment and answer each response, with the bulk of generation handled by gpt-4-0314.
The aim of this dataset is twofold: firstly, to facilitate the recreation of other wizardcoder models using newer pretrained models, such as LLaMA-2; and secondly, to serve as a testing ground for the [evol-dataset](https://github.com/theblackcat102/evol-dataset) package, as we strive to develop improved future augmentation strategies.
We used a total of [10 strategies](https://github.com/theblackcat102/evol-dataset/tree/main/evolinstruct/instructions) to augment the [HuggingFaceH4/CodeAlpaca_20K](https://huggingface.co/datasets/HuggingFaceH4/CodeAlpaca_20K) dataset and create our own.
It's important to note that we introduced a new "language" augmentation strategy in this project, which enables the conversion of existing instructions into Chinese.
A Chinese code evol version is now available here : [theblackcat102/evol-code-zh](https://huggingface.co/datasets/theblackcat102/evol-code-zh)
## Comparison to existing dataset
Comparing to [nickrosh/Evol-Instruct-Code-80k-v1](https://huggingface.co/datasets/nickrosh/Evol-Instruct-Code-80k-v1), evol-codealpaca-v1 has longer instruction and output conversation

### Citation
If you use this dataset to finetune any LLMs just cite wizard coder
```
@misc{luo2023wizardcoder,
title={WizardCoder: Empowering Code Large Language Models with Evol-Instruct},
author={Ziyang Luo and Can Xu and Pu Zhao and Qingfeng Sun and Xiubo Geng and Wenxiang Hu and Chongyang Tao and Jing Ma and Qingwei Lin and Daxin Jiang},
year={2023},
}
``` | 2,169 | [
[
-0.023101806640625,
-0.05322265625,
-0.0051727294921875,
0.0286865234375,
-0.006763458251953125,
-0.0021381378173828125,
-0.0182952880859375,
-0.045562744140625,
0.02362060546875,
0.044586181640625,
-0.033172607421875,
-0.04144287109375,
-0.0218658447265625,
0.018402099609375,
-0.01403045654296875,
0.08831787109375,
-0.01108551025390625,
0.0090179443359375,
0.0015096664428710938,
-0.011993408203125,
-0.02734375,
-0.037261962890625,
-0.030548095703125,
-0.0121307373046875,
0.0205078125,
0.032867431640625,
0.0546875,
0.042388916015625,
0.0173797607421875,
0.021453857421875,
0.00004881620407104492,
0.018280029296875,
-0.034271240234375,
-0.030609130859375,
0.03515625,
-0.0111846923828125,
-0.06268310546875,
-0.01016998291015625,
0.02374267578125,
0.0419921875,
-0.01454925537109375,
0.0175933837890625,
-0.00007939338684082031,
0.057373046875,
-0.02825927734375,
0.033660888671875,
-0.03155517578125,
0.0136260986328125,
0.002223968505859375,
-0.0155029296875,
-0.025421142578125,
-0.038909912109375,
0.00042724609375,
-0.05548095703125,
0.005126953125,
-0.0026988983154296875,
0.061798095703125,
0.00600433349609375,
-0.01947021484375,
-0.037933349609375,
-0.045806884765625,
0.037506103515625,
-0.05828857421875,
0.01488494873046875,
0.033660888671875,
0.00861358642578125,
-0.0181884765625,
-0.0552978515625,
-0.055389404296875,
-0.031585693359375,
0.00685882568359375,
0.0160980224609375,
-0.003936767578125,
0.01316070556640625,
0.0274658203125,
0.040771484375,
-0.056396484375,
0.0106201171875,
-0.050872802734375,
-0.0240020751953125,
0.059173583984375,
0.0008258819580078125,
0.032135009765625,
0.01267242431640625,
-0.00994110107421875,
-0.019775390625,
-0.052825927734375,
0.002460479736328125,
0.03961181640625,
0.0049896240234375,
-0.027496337890625,
0.06072998046875,
-0.01611328125,
0.055633544921875,
0.0123443603515625,
-0.01488494873046875,
0.056976318359375,
-0.0294952392578125,
-0.020782470703125,
0.0081024169921875,
0.058563232421875,
0.0160369873046875,
0.0219268798828125,
-0.0012788772583007812,
-0.02386474609375,
-0.0178985595703125,
0.004177093505859375,
-0.0711669921875,
-0.0160980224609375,
0.009307861328125,
-0.0296783447265625,
-0.006977081298828125,
0.0222320556640625,
-0.06402587890625,
-0.015594482421875,
-0.01177978515625,
0.01108551025390625,
-0.031646728515625,
-0.023040771484375,
0.02972412109375,
0.004619598388671875,
0.0645751953125,
0.01715087890625,
-0.0665283203125,
0.01104736328125,
0.04791259765625,
0.057830810546875,
0.0026874542236328125,
-0.0330810546875,
-0.02252197265625,
-0.0215301513671875,
-0.036651611328125,
0.0360107421875,
-0.041778564453125,
-0.0280609130859375,
0.00823211669921875,
0.01111602783203125,
-0.003475189208984375,
-0.0330810546875,
0.039794921875,
-0.0587158203125,
0.04327392578125,
0.00502777099609375,
-0.041839599609375,
-0.016357421875,
-0.01053619384765625,
-0.06170654296875,
0.07373046875,
0.02667236328125,
-0.02935791015625,
0.0114898681640625,
-0.05389404296875,
-0.0210418701171875,
-0.00800323486328125,
-0.0154266357421875,
-0.02899169921875,
-0.0173492431640625,
0.0220947265625,
0.0119476318359375,
-0.0238037109375,
0.00612640380859375,
-0.0131683349609375,
-0.04034423828125,
0.00875091552734375,
-0.0499267578125,
0.072998046875,
0.027130126953125,
-0.0226287841796875,
-0.0037250518798828125,
-0.08203125,
-0.0010938644409179688,
0.0266265869140625,
-0.027099609375,
-0.0016422271728515625,
-0.027130126953125,
-0.006336212158203125,
0.02197265625,
0.03277587890625,
-0.0301361083984375,
0.037261962890625,
-0.044769287109375,
0.00855255126953125,
0.03765869140625,
-0.01389312744140625,
0.04193115234375,
-0.0032024383544921875,
0.05596923828125,
-0.02581787109375,
0.0270538330078125,
-0.01995849609375,
-0.05889892578125,
-0.05194091796875,
-0.0065460205078125,
-0.00055694580078125,
0.059234619140625,
-0.074462890625,
0.06182861328125,
-0.0372314453125,
-0.03936767578125,
-0.0472412109375,
0.0139617919921875,
0.0400390625,
0.02783203125,
0.03106689453125,
-0.0252685546875,
-0.0283203125,
-0.051971435546875,
0.01226806640625,
-0.029632568359375,
-0.0183868408203125,
-0.0007529258728027344,
0.028350830078125,
-0.01495361328125,
0.057342529296875,
-0.03509521484375,
0.0068359375,
-0.024169921875,
-0.01531982421875,
0.0274200439453125,
0.031829833984375,
0.04229736328125,
-0.04876708984375,
-0.03515625,
0.01474761962890625,
-0.048126220703125,
-0.019073486328125,
-0.0184326171875,
-0.01116943359375,
0.016510009765625,
0.011077880859375,
-0.0389404296875,
0.033660888671875,
0.047607421875,
-0.0253448486328125,
0.041717529296875,
-0.0197906494140625,
0.021087646484375,
-0.08306884765625,
-0.0092926025390625,
-0.0121917724609375,
0.0160675048828125,
-0.0548095703125,
0.0119171142578125,
0.014312744140625,
0.00302886962890625,
-0.031829833984375,
0.026519775390625,
-0.052032470703125,
-0.0087127685546875,
-0.019073486328125,
0.0012302398681640625,
-0.003040313720703125,
0.0621337890625,
-0.0067138671875,
0.0887451171875,
0.0338134765625,
-0.033721923828125,
0.042755126953125,
0.03399658203125,
-0.0099639892578125,
-0.0081329345703125,
-0.0631103515625,
0.032073974609375,
0.010406494140625,
0.0209808349609375,
-0.057647705078125,
-0.01557159423828125,
0.04595947265625,
-0.0531005859375,
0.034759521484375,
-0.0129547119140625,
-0.041107177734375,
-0.03912353515625,
-0.044097900390625,
0.0240020751953125,
0.06732177734375,
-0.059814453125,
0.028900146484375,
0.015228271484375,
0.006900787353515625,
-0.05255126953125,
-0.051239013671875,
0.01209259033203125,
-0.0132598876953125,
-0.0572509765625,
0.0267791748046875,
-0.018310546875,
-0.00347900390625,
-0.0261383056640625,
-0.01235198974609375,
-0.013824462890625,
-0.01971435546875,
0.00357818603515625,
0.042510986328125,
-0.01983642578125,
-0.0018854141235351562,
-0.0006985664367675781,
0.0002837181091308594,
0.0088348388671875,
-0.017181396484375,
0.0491943359375,
-0.00472259521484375,
-0.0308685302734375,
-0.01349639892578125,
0.006557464599609375,
0.025543212890625,
-0.0161895751953125,
0.06170654296875,
0.045562744140625,
-0.01136016845703125,
-0.007099151611328125,
-0.02764892578125,
-0.0012302398681640625,
-0.04058837890625,
0.03399658203125,
-0.0258941650390625,
-0.06201171875,
0.049407958984375,
0.022735595703125,
0.020538330078125,
0.0288543701171875,
0.037750244140625,
0.0472412109375,
0.06353759765625,
0.039031982421875,
-0.01535797119140625,
0.045654296875,
-0.0313720703125,
0.00966644287109375,
-0.049560546875,
-0.03155517578125,
-0.033172607421875,
0.0218963623046875,
-0.05645751953125,
-0.044342041015625,
0.00594329833984375,
0.0133514404296875,
-0.0165863037109375,
0.042327880859375,
-0.049041748046875,
0.034942626953125,
0.01474761962890625,
0.0035343170166015625,
0.005138397216796875,
0.0167083740234375,
0.0184783935546875,
0.0196075439453125,
-0.0443115234375,
-0.04248046875,
0.08648681640625,
0.0286407470703125,
0.06878662109375,
0.00392913818359375,
0.043060302734375,
0.0124053955078125,
-0.0006923675537109375,
-0.042694091796875,
0.0399169921875,
0.0041961669921875,
-0.00724029541015625,
-0.0219879150390625,
-0.0293731689453125,
-0.08575439453125,
0.004375457763671875,
0.01290130615234375,
-0.043212890625,
0.01148223876953125,
-0.00417327880859375,
-0.01873779296875,
0.00701904296875,
-0.0638427734375,
0.05816650390625,
-0.0184326171875,
-0.014892578125,
0.0011053085327148438,
-0.051666259765625,
0.039306640625,
-0.018585205078125,
-0.0042724609375,
0.01230621337890625,
-0.0157470703125,
0.0535888671875,
-0.061737060546875,
0.0550537109375,
-0.0033588409423828125,
-0.04058837890625,
0.02880859375,
-0.0292816162109375,
0.038665771484375,
-0.007221221923828125,
-0.009033203125,
0.022186279296875,
-0.0136871337890625,
-0.0400390625,
-0.044647216796875,
0.045806884765625,
-0.0631103515625,
-0.038360595703125,
-0.0206756591796875,
-0.0165252685546875,
0.0012845993041992188,
-0.005523681640625,
0.0187225341796875,
0.045257568359375,
0.00841522216796875,
0.005191802978515625,
0.056182861328125,
-0.0546875,
0.03485107421875,
0.04559326171875,
-0.0166473388671875,
-0.038543701171875,
0.0670166015625,
0.0057830810546875,
0.021240234375,
0.02362060546875,
-0.00016546249389648438,
-0.0133056640625,
-0.03863525390625,
-0.052490234375,
0.01470947265625,
-0.056396484375,
-0.01421356201171875,
-0.049468994140625,
-0.033721923828125,
-0.048553466796875,
-0.004589080810546875,
-0.0233154296875,
-0.037506103515625,
-0.02105712890625,
-0.0157012939453125,
0.0562744140625,
0.049468994140625,
0.0117034912109375,
0.00583648681640625,
-0.06732177734375,
0.022369384765625,
0.0181884765625,
0.018280029296875,
0.0018644332885742188,
-0.05755615234375,
-0.04681396484375,
0.01004791259765625,
-0.01070404052734375,
-0.0811767578125,
0.0465087890625,
0.020355224609375,
0.050933837890625,
0.01593017578125,
0.0034942626953125,
0.06622314453125,
-0.043975830078125,
0.08795166015625,
0.0059051513671875,
-0.05181884765625,
0.040924072265625,
0.004116058349609375,
0.0232696533203125,
0.0219268798828125,
0.01168060302734375,
-0.0206451416015625,
-0.022613525390625,
-0.0287628173828125,
-0.0723876953125,
0.059051513671875,
0.017425537109375,
0.03228759765625,
-0.0024623870849609375,
0.03057861328125,
0.025421142578125,
-0.0044097900390625,
-0.03912353515625,
-0.036865234375,
-0.0240478515625,
-0.0168304443359375,
0.01442718505859375,
-0.01018524169921875,
0.0041046142578125,
-0.027801513671875,
0.044219970703125,
-0.0210723876953125,
0.046356201171875,
0.01084136962890625,
-0.012908935546875,
0.0026302337646484375,
0.0128936767578125,
0.05499267578125,
0.0537109375,
0.0037670135498046875,
-0.035369873046875,
0.0230560302734375,
-0.0738525390625,
-0.00628662109375,
0.03411865234375,
-0.0007233619689941406,
-0.0095367431640625,
0.0465087890625,
0.06951904296875,
-0.0135650634765625,
-0.057464599609375,
0.04486083984375,
-0.0051727294921875,
0.0015392303466796875,
-0.049224853515625,
0.0100250244140625,
-0.0233612060546875,
0.007289886474609375,
0.03826904296875,
-0.00801849365234375,
0.0254364013671875,
-0.020050048828125,
0.0147247314453125,
0.0041046142578125,
-0.0093841552734375,
-0.038330078125,
0.04052734375,
0.01824951171875,
-0.011077880859375,
0.040191650390625,
-0.03240966796875,
-0.0341796875,
0.07244873046875,
0.0416259765625,
0.07421875,
-0.01157379150390625,
0.010528564453125,
0.039031982421875,
0.0249481201171875,
-0.0019741058349609375,
0.020172119140625,
-0.0050506591796875,
-0.04766845703125,
-0.04815673828125,
-0.027069091796875,
-0.0181121826171875,
0.01296234130859375,
-0.04925537109375,
0.03106689453125,
-0.0155029296875,
0.0240020751953125,
-0.03155517578125,
0.0215301513671875,
-0.053924560546875,
-0.00848388671875,
0.0160675048828125,
0.0897216796875,
-0.043792724609375,
0.08935546875,
0.044921875,
-0.060333251953125,
-0.06890869140625,
0.00777435302734375,
-0.0015287399291992188,
-0.0838623046875,
0.03118896484375,
0.0126800537109375,
0.0006551742553710938,
-0.013946533203125,
-0.0546875,
-0.051239013671875,
0.10784912109375,
0.018646240234375,
-0.042327880859375,
-0.0055694580078125,
0.006927490234375,
0.051025390625,
-0.033203125,
0.044281005859375,
0.054107666015625,
0.0207061767578125,
0.01496124267578125,
-0.08428955078125,
0.005336761474609375,
-0.044769287109375,
0.006015777587890625,
-0.0133514404296875,
-0.0576171875,
0.044647216796875,
-0.022674560546875,
-0.01329803466796875,
0.0259857177734375,
0.0638427734375,
0.0229034423828125,
0.0298004150390625,
0.014251708984375,
0.0203857421875,
0.048492431640625,
0.00972747802734375,
0.0880126953125,
-0.048675537109375,
0.01123046875,
0.06219482421875,
-0.0141448974609375,
0.039764404296875,
0.01416778564453125,
-0.03399658203125,
0.032470703125,
0.055389404296875,
-0.00931549072265625,
0.0325927734375,
0.017608642578125,
-0.007740020751953125,
0.024261474609375,
0.01239776611328125,
-0.051605224609375,
0.019378662109375,
0.02276611328125,
-0.0233306884765625,
0.01381683349609375,
0.0060882568359375,
0.024505615234375,
-0.007137298583984375,
-0.01311492919921875,
0.06427001953125,
-0.0130462646484375,
-0.037109375,
0.068603515625,
-0.01140594482421875,
0.0794677734375,
-0.059173583984375,
-0.026702880859375,
-0.044647216796875,
-0.010101318359375,
-0.0155792236328125,
-0.051971435546875,
-0.00019800662994384766,
0.01377105712890625,
0.007556915283203125,
0.00135040283203125,
0.04071044921875,
-0.0517578125,
-0.0305023193359375,
0.02667236328125,
0.024383544921875,
0.025970458984375,
0.0290374755859375,
-0.05810546875,
0.0109405517578125,
0.019775390625,
-0.0290069580078125,
0.0184326171875,
0.0394287109375,
0.00629425048828125,
0.0384521484375,
0.0374755859375,
0.004608154296875,
0.0254364013671875,
0.017242431640625,
0.0838623046875,
-0.031829833984375,
-0.0179595947265625,
-0.042877197265625,
0.0268707275390625,
-0.0205078125,
-0.036376953125,
0.06927490234375,
0.0521240234375,
0.06671142578125,
-0.0163421630859375,
0.054107666015625,
-0.0229034423828125,
0.0007357597351074219,
-0.0513916015625,
0.02813720703125,
-0.033172607421875,
0.0513916015625,
-0.01666259765625,
-0.0771484375,
-0.00763702392578125,
0.0294647216796875,
-0.01467132568359375,
0.020050048828125,
0.03485107421875,
0.094482421875,
0.014617919921875,
-0.0013532638549804688,
0.02667236328125,
-0.0008392333984375,
0.0321044921875,
0.056854248046875,
0.05084228515625,
-0.049560546875,
0.06329345703125,
-0.028076171875,
-0.032684326171875,
-0.0094451904296875,
-0.033477783203125,
-0.06317138671875,
-0.037017822265625,
-0.0288848876953125,
-0.042938232421875,
0.004467010498046875,
0.09893798828125,
0.03076171875,
-0.06390380859375,
-0.0121307373046875,
0.0010232925415039062,
0.0005927085876464844,
-0.0263519287109375,
-0.017547607421875,
0.036407470703125,
-0.01776123046875,
-0.0712890625,
0.03546142578125,
0.00611114501953125,
0.00566864013671875,
-0.0176239013671875,
-0.04522705078125,
0.01505279541015625,
0.006603240966796875,
0.048370361328125,
0.04632568359375,
-0.0516357421875,
-0.007480621337890625,
0.0260162353515625,
-0.01172637939453125,
0.00807952880859375,
0.050872802734375,
-0.0419921875,
0.034393310546875,
0.044097900390625,
0.04779052734375,
0.01152801513671875,
-0.014984130859375,
0.04437255859375,
-0.043182373046875,
0.0159149169921875,
0.0002071857452392578,
0.0282745361328125,
0.0246734619140625,
-0.036956787109375,
0.058197021484375,
0.005615234375,
-0.052825927734375,
-0.037750244140625,
-0.002620697021484375,
-0.0738525390625,
-0.0087890625,
0.111572265625,
-0.012847900390625,
-0.021240234375,
-0.01250457763671875,
-0.039215087890625,
0.0163421630859375,
-0.046844482421875,
0.04632568359375,
0.0249786376953125,
-0.01238250732421875,
-0.0287017822265625,
-0.03997802734375,
0.035675048828125,
-0.0030612945556640625,
-0.06878662109375,
-0.005218505859375,
0.053619384765625,
-0.0013561248779296875,
0.01384735107421875,
0.051177978515625,
-0.0212554931640625,
0.030670166015625,
0.023590087890625,
0.028228759765625,
-0.020294189453125,
-0.003833770751953125,
-0.050872802734375,
-0.006969451904296875,
0.0015001296997070312,
-0.0300750732421875
]
] |
natural_questions | 2023-04-05T13:35:01.000Z | [
"task_categories:question-answering",
"task_ids:open-domain-qa",
"annotations_creators:no-annotation",
"language_creators:crowdsourced",
"multilinguality:monolingual",
"size_categories:100K<n<1M",
"source_datasets:original",
"language:en",
"license:cc-by-sa-3.0",
"region:us"
] | null | The NQ corpus contains questions from real users, and it requires QA systems to
read and comprehend an entire Wikipedia article that may or may not contain the
answer to the question. The inclusion of real user questions, and the
requirement that solutions should read an entire page to find the answer, cause
NQ to be a more realistic and challenging task than prior QA datasets. | @article{47761,
title = {Natural Questions: a Benchmark for Question Answering Research},
author = {Tom Kwiatkowski and Jennimaria Palomaki and Olivia Redfield and Michael Collins and Ankur Parikh and Chris Alberti and Danielle Epstein and Illia Polosukhin and Matthew Kelcey and Jacob Devlin and Kenton Lee and Kristina N. Toutanova and Llion Jones and Ming-Wei Chang and Andrew Dai and Jakob Uszkoreit and Quoc Le and Slav Petrov},
year = {2019},
journal = {Transactions of the Association of Computational Linguistics}
} | 24 | 1,122 | 2022-03-02T23:29:22 | ---
annotations_creators:
- no-annotation
language_creators:
- crowdsourced
language:
- en
license:
- cc-by-sa-3.0
multilinguality:
- monolingual
size_categories:
- 100K<n<1M
source_datasets:
- original
task_categories:
- question-answering
task_ids:
- open-domain-qa
paperswithcode_id: natural-questions
pretty_name: Natural Questions
dataset_info:
features:
- name: id
dtype: string
- name: document
struct:
- name: title
dtype: string
- name: url
dtype: string
- name: html
dtype: string
- name: tokens
sequence:
- name: token
dtype: string
- name: is_html
dtype: bool
- name: question
struct:
- name: text
dtype: string
- name: tokens
sequence: string
- name: annotations
sequence:
- name: id
dtype: string
- name: long_answer
struct:
- name: start_token
dtype: int64
- name: end_token
dtype: int64
- name: start_byte
dtype: int64
- name: end_byte
dtype: int64
- name: short_answers
sequence:
- name: start_token
dtype: int64
- name: end_token
dtype: int64
- name: start_byte
dtype: int64
- name: end_byte
dtype: int64
- name: text
dtype: string
- name: yes_no_answer
dtype:
class_label:
names:
'0': 'NO'
'1': 'YES'
- name: long_answer_candidates
sequence:
- name: start_token
dtype: int64
- name: end_token
dtype: int64
- name: start_byte
dtype: int64
- name: end_byte
dtype: int64
- name: top_label
dtype: bool
splits:
- name: train
num_bytes: 97445142568
num_examples: 307373
- name: validation
num_bytes: 2353975312
num_examples: 7830
download_size: 45069199013
dataset_size: 99799117880
---
# Dataset Card for Natural Questions
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://ai.google.com/research/NaturalQuestions/dataset](https://ai.google.com/research/NaturalQuestions/dataset)
- **Repository:** [https://github.com/google-research-datasets/natural-questions](https://github.com/google-research-datasets/natural-questions)
- **Paper:** [https://research.google/pubs/pub47761/](https://research.google/pubs/pub47761/)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of downloaded dataset files:** 45.07 GB
- **Size of the generated dataset:** 99.80 GB
- **Total amount of disk used:** 144.87 GB
### Dataset Summary
The NQ corpus contains questions from real users, and it requires QA systems to
read and comprehend an entire Wikipedia article that may or may not contain the
answer to the question. The inclusion of real user questions, and the
requirement that solutions should read an entire page to find the answer, cause
NQ to be a more realistic and challenging task than prior QA datasets.
### Supported Tasks and Leaderboards
[https://ai.google.com/research/NaturalQuestions](https://ai.google.com/research/NaturalQuestions)
### Languages
en
## Dataset Structure
### Data Instances
- **Size of downloaded dataset files:** 45.07 GB
- **Size of the generated dataset:** 99.80 GB
- **Total amount of disk used:** 144.87 GB
An example of 'train' looks as follows. This is a toy example.
```
{
"id": "797803103760793766",
"document": {
"title": "Google",
"url": "http://www.wikipedia.org/Google",
"html": "<html><body><h1>Google Inc.</h1><p>Google was founded in 1998 By:<ul><li>Larry</li><li>Sergey</li></ul></p></body></html>",
"tokens":[
{"token": "<h1>", "start_byte": 12, "end_byte": 16, "is_html": True},
{"token": "Google", "start_byte": 16, "end_byte": 22, "is_html": False},
{"token": "inc", "start_byte": 23, "end_byte": 26, "is_html": False},
{"token": ".", "start_byte": 26, "end_byte": 27, "is_html": False},
{"token": "</h1>", "start_byte": 27, "end_byte": 32, "is_html": True},
{"token": "<p>", "start_byte": 32, "end_byte": 35, "is_html": True},
{"token": "Google", "start_byte": 35, "end_byte": 41, "is_html": False},
{"token": "was", "start_byte": 42, "end_byte": 45, "is_html": False},
{"token": "founded", "start_byte": 46, "end_byte": 53, "is_html": False},
{"token": "in", "start_byte": 54, "end_byte": 56, "is_html": False},
{"token": "1998", "start_byte": 57, "end_byte": 61, "is_html": False},
{"token": "by", "start_byte": 62, "end_byte": 64, "is_html": False},
{"token": ":", "start_byte": 64, "end_byte": 65, "is_html": False},
{"token": "<ul>", "start_byte": 65, "end_byte": 69, "is_html": True},
{"token": "<li>", "start_byte": 69, "end_byte": 73, "is_html": True},
{"token": "Larry", "start_byte": 73, "end_byte": 78, "is_html": False},
{"token": "</li>", "start_byte": 78, "end_byte": 83, "is_html": True},
{"token": "<li>", "start_byte": 83, "end_byte": 87, "is_html": True},
{"token": "Sergey", "start_byte": 87, "end_byte": 92, "is_html": False},
{"token": "</li>", "start_byte": 92, "end_byte": 97, "is_html": True},
{"token": "</ul>", "start_byte": 97, "end_byte": 102, "is_html": True},
{"token": "</p>", "start_byte": 102, "end_byte": 106, "is_html": True}
],
},
"question" :{
"text": "who founded google",
"tokens": ["who", "founded", "google"]
},
"long_answer_candidates": [
{"start_byte": 32, "end_byte": 106, "start_token": 5, "end_token": 22, "top_level": True},
{"start_byte": 65, "end_byte": 102, "start_token": 13, "end_token": 21, "top_level": False},
{"start_byte": 69, "end_byte": 83, "start_token": 14, "end_token": 17, "top_level": False},
{"start_byte": 83, "end_byte": 92, "start_token": 17, "end_token": 20 , "top_level": False}
],
"annotations": [{
"id": "6782080525527814293",
"long_answer": {"start_byte": 32, "end_byte": 106, "start_token": 5, "end_token": 22, "candidate_index": 0},
"short_answers": [
{"start_byte": 73, "end_byte": 78, "start_token": 15, "end_token": 16, "text": "Larry"},
{"start_byte": 87, "end_byte": 92, "start_token": 18, "end_token": 19, "text": "Sergey"}
],
"yes_no_answer": -1
}]
}
```
### Data Fields
The data fields are the same among all splits.
#### default
- `id`: a `string` feature.
- `document` a dictionary feature containing:
- `title`: a `string` feature.
- `url`: a `string` feature.
- `html`: a `string` feature.
- `tokens`: a dictionary feature containing:
- `token`: a `string` feature.
- `is_html`: a `bool` feature.
- `start_byte`: a `int64` feature.
- `end_byte`: a `int64` feature.
- `question`: a dictionary feature containing:
- `text`: a `string` feature.
- `tokens`: a `list` of `string` features.
- `long_answer_candidates`: a dictionary feature containing:
- `start_token`: a `int64` feature.
- `end_token`: a `int64` feature.
- `start_byte`: a `int64` feature.
- `end_byte`: a `int64` feature.
- `top_level`: a `bool` feature.
- `annotations`: a dictionary feature containing:
- `id`: a `string` feature.
- `long_answers`: a dictionary feature containing:
- `start_token`: a `int64` feature.
- `end_token`: a `int64` feature.
- `start_byte`: a `int64` feature.
- `end_byte`: a `int64` feature.
- `candidate_index`: a `int64` feature.
- `short_answers`: a dictionary feature containing:
- `start_token`: a `int64` feature.
- `end_token`: a `int64` feature.
- `start_byte`: a `int64` feature.
- `end_byte`: a `int64` feature.
- `text`: a `string` feature.
- `yes_no_answer`: a classification label, with possible values including `NO` (0), `YES` (1).
### Data Splits
| name | train | validation |
|---------|-------:|-----------:|
| default | 307373 | 7830 |
| dev | N/A | 7830 |
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[Creative Commons Attribution-ShareAlike 3.0 Unported](https://creativecommons.org/licenses/by-sa/3.0/).
### Citation Information
```
@article{47761,
title = {Natural Questions: a Benchmark for Question Answering Research},
author = {Tom Kwiatkowski and Jennimaria Palomaki and Olivia Redfield and Michael Collins and Ankur Parikh and Chris Alberti and Danielle Epstein and Illia Polosukhin and Matthew Kelcey and Jacob Devlin and Kenton Lee and Kristina N. Toutanova and Llion Jones and Ming-Wei Chang and Andrew Dai and Jakob Uszkoreit and Quoc Le and Slav Petrov},
year = {2019},
journal = {Transactions of the Association of Computational Linguistics}
}
```
### Contributions
Thanks to [@thomwolf](https://github.com/thomwolf), [@lhoestq](https://github.com/lhoestq) for adding this dataset. | 11,675 | [
[
-0.05609130859375,
-0.05535888671875,
0.019775390625,
0.0016202926635742188,
-0.007232666015625,
0.0111083984375,
-0.0126800537109375,
-0.025909423828125,
0.0533447265625,
0.0240936279296875,
-0.059295654296875,
-0.057769775390625,
-0.0279541015625,
0.02386474609375,
-0.016448974609375,
0.085205078125,
0.0025844573974609375,
-0.01324462890625,
-0.0211029052734375,
-0.00440216064453125,
-0.0033473968505859375,
-0.0052947998046875,
-0.034454345703125,
0.00273895263671875,
0.029083251953125,
0.034759521484375,
0.04718017578125,
0.05792236328125,
0.041412353515625,
0.0192413330078125,
-0.019561767578125,
0.005016326904296875,
-0.020904541015625,
-0.0196075439453125,
-0.00798797607421875,
-0.0274810791015625,
-0.03375244140625,
0.009124755859375,
0.042755126953125,
0.045135498046875,
0.00165557861328125,
0.03936767578125,
-0.005779266357421875,
0.060302734375,
-0.025634765625,
0.0227203369140625,
-0.0281982421875,
0.0014047622680664062,
-0.017303466796875,
-0.01091766357421875,
0.012939453125,
-0.04248046875,
-0.0008053779602050781,
-0.06414794921875,
0.0243988037109375,
0.004608154296875,
0.0816650390625,
0.009307861328125,
-0.0192413330078125,
-0.039093017578125,
-0.0242767333984375,
0.037628173828125,
-0.060150146484375,
0.01541900634765625,
0.044647216796875,
0.02752685546875,
-0.0151824951171875,
-0.054840087890625,
-0.070068359375,
0.00966644287109375,
-0.01538848876953125,
0.0206756591796875,
0.00023758411407470703,
-0.0280914306640625,
0.0246124267578125,
0.042266845703125,
-0.05511474609375,
-0.0168609619140625,
-0.033905029296875,
-0.010406494140625,
0.06683349609375,
0.0211639404296875,
0.0240020751953125,
-0.042572021484375,
-0.01230621337890625,
-0.0189208984375,
-0.0242767333984375,
0.03179931640625,
0.0357666015625,
0.0219573974609375,
-0.042266845703125,
0.047088623046875,
-0.04754638671875,
0.0477294921875,
0.0189361572265625,
-0.01160430908203125,
0.04876708984375,
-0.049346923828125,
-0.01444244384765625,
-0.017364501953125,
0.07733154296875,
0.0423583984375,
-0.013153076171875,
-0.00193023681640625,
0.00855255126953125,
-0.01068878173828125,
0.00777435302734375,
-0.044677734375,
-0.0268707275390625,
0.0546875,
-0.03216552734375,
-0.0247802734375,
0.018280029296875,
-0.07855224609375,
-0.0218048095703125,
-0.003902435302734375,
0.020782470703125,
-0.01500701904296875,
-0.019866943359375,
0.009002685546875,
-0.0183258056640625,
0.028961181640625,
0.01174163818359375,
-0.06243896484375,
0.0229034423828125,
0.040496826171875,
0.04913330078125,
0.0126800537109375,
-0.0123443603515625,
-0.012420654296875,
-0.00384521484375,
-0.0032558441162109375,
0.050689697265625,
-0.0262603759765625,
-0.024383544921875,
-0.005130767822265625,
0.042755126953125,
-0.001987457275390625,
-0.0127716064453125,
0.05572509765625,
-0.020172119140625,
0.03179931640625,
-0.04083251953125,
-0.028839111328125,
-0.01544189453125,
0.04754638671875,
-0.06256103515625,
0.08837890625,
0.01568603515625,
-0.07940673828125,
0.035003662109375,
-0.06256103515625,
-0.020782470703125,
0.01404571533203125,
-0.0171966552734375,
-0.03717041015625,
-0.028900146484375,
0.0286407470703125,
0.032989501953125,
-0.0347900390625,
-0.0011425018310546875,
-0.005619049072265625,
-0.0068817138671875,
0.00786590576171875,
0.00165557861328125,
0.09295654296875,
0.01071929931640625,
-0.0267791748046875,
0.0036106109619140625,
-0.08551025390625,
0.00832366943359375,
0.038726806640625,
-0.036163330078125,
0.0021228790283203125,
-0.0123291015625,
0.004791259765625,
0.01515960693359375,
0.028472900390625,
-0.039459228515625,
0.02056884765625,
-0.0338134765625,
0.039886474609375,
0.037750244140625,
0.007709503173828125,
0.0268707275390625,
-0.0379638671875,
0.03594970703125,
-0.0021381378173828125,
0.03857421875,
0.003116607666015625,
-0.048980712890625,
-0.043365478515625,
-0.0115203857421875,
0.0200347900390625,
0.050445556640625,
-0.040771484375,
0.067626953125,
-0.040802001953125,
-0.0595703125,
-0.054931640625,
0.01702880859375,
0.006805419921875,
0.055755615234375,
0.022918701171875,
-0.0224456787109375,
-0.0411376953125,
-0.06414794921875,
0.01239776611328125,
-0.01160430908203125,
0.0129852294921875,
0.05194091796875,
0.073974609375,
-0.00943756103515625,
0.072265625,
-0.04071044921875,
-0.00916290283203125,
-0.003833770751953125,
-0.0102081298828125,
0.04833984375,
0.040924072265625,
0.047149658203125,
-0.0714111328125,
-0.0458984375,
-0.0021114349365234375,
-0.056182861328125,
0.01544189453125,
0.0010223388671875,
-0.01406097412109375,
-0.003696441650390625,
0.015960693359375,
-0.054779052734375,
0.0280914306640625,
0.032928466796875,
-0.0382080078125,
0.036956787109375,
-0.01270294189453125,
0.025909423828125,
-0.09661865234375,
0.023590087890625,
-0.0100860595703125,
0.00270843505859375,
-0.031829833984375,
-0.0030460357666015625,
0.00980377197265625,
0.0083465576171875,
-0.04010009765625,
0.039154052734375,
-0.028717041015625,
0.01369476318359375,
0.01343536376953125,
0.00510406494140625,
0.00917816162109375,
0.0300445556640625,
-0.0177154541015625,
0.05816650390625,
0.055419921875,
-0.03558349609375,
0.045379638671875,
0.028472900390625,
-0.0257720947265625,
0.041656494140625,
-0.056060791015625,
0.00701141357421875,
-0.0213623046875,
0.021209716796875,
-0.09320068359375,
-0.043548583984375,
0.031494140625,
-0.06439208984375,
0.00438690185546875,
-0.0164794921875,
-0.048431396484375,
-0.06365966796875,
-0.0462646484375,
0.01161956787109375,
0.0257568359375,
-0.0266265869140625,
0.0350341796875,
0.033782958984375,
0.007762908935546875,
-0.036346435546875,
-0.045501708984375,
-0.0029811859130859375,
-0.00940704345703125,
-0.0604248046875,
0.026153564453125,
-0.0226898193359375,
0.0017671585083007812,
0.0243682861328125,
0.001926422119140625,
-0.0086517333984375,
0.01555633544921875,
0.020660400390625,
0.01264190673828125,
-0.006465911865234375,
-0.009429931640625,
-0.0215911865234375,
0.00937652587890625,
0.0007386207580566406,
-0.0168914794921875,
0.048675537109375,
-0.01482391357421875,
-0.01708984375,
-0.035064697265625,
0.0157470703125,
0.0311737060546875,
-0.0214080810546875,
0.064697265625,
0.054351806640625,
-0.030364990234375,
0.00911712646484375,
-0.03363037109375,
0.001453399658203125,
-0.0299835205078125,
-0.007709503173828125,
-0.0165863037109375,
-0.0596923828125,
0.06646728515625,
0.017364501953125,
0.00908660888671875,
0.07025146484375,
0.039154052734375,
-0.0291748046875,
0.060638427734375,
0.00420379638671875,
-0.01293182373046875,
0.0258026123046875,
-0.058685302734375,
-0.0099639892578125,
-0.04443359375,
-0.037353515625,
-0.049560546875,
-0.029510498046875,
-0.06256103515625,
-0.0289306640625,
0.011474609375,
0.00754547119140625,
-0.0261077880859375,
0.0195159912109375,
-0.068359375,
0.039154052734375,
0.056488037109375,
0.01049041748046875,
-0.01111602783203125,
-0.01006317138671875,
-0.005237579345703125,
0.01399993896484375,
-0.03558349609375,
-0.026824951171875,
0.1002197265625,
0.0104522705078125,
0.02667236328125,
0.00814056396484375,
0.060150146484375,
0.0180511474609375,
-0.01441192626953125,
-0.0325927734375,
0.038818359375,
0.008758544921875,
-0.06915283203125,
-0.0291748046875,
-0.0300750732421875,
-0.080810546875,
-0.005023956298828125,
-0.032440185546875,
-0.050048828125,
0.008819580078125,
-0.004123687744140625,
-0.02203369140625,
0.0288848876953125,
-0.05438232421875,
0.05859375,
-0.0108489990234375,
-0.02838134765625,
0.019256591796875,
-0.071044921875,
0.01381683349609375,
0.01751708984375,
0.03717041015625,
-0.00984954833984375,
0.00717926025390625,
0.0750732421875,
-0.046478271484375,
0.04937744140625,
-0.015716552734375,
0.013153076171875,
0.041748046875,
-0.01715087890625,
0.039398193359375,
0.0226287841796875,
0.00438690185546875,
0.01056671142578125,
0.00806427001953125,
-0.04022216796875,
-0.033660888671875,
0.04913330078125,
-0.055999755859375,
-0.037139892578125,
-0.02825927734375,
-0.01824951171875,
0.001720428466796875,
0.039794921875,
0.023895263671875,
0.01151275634765625,
0.00170135498046875,
0.026397705078125,
0.0457763671875,
-0.0139923095703125,
0.0233612060546875,
0.0164031982421875,
-0.002071380615234375,
-0.0635986328125,
0.050750732421875,
0.0118865966796875,
-0.0021209716796875,
0.0232086181640625,
0.0176849365234375,
-0.034088134765625,
-0.041961669921875,
-0.042938232421875,
0.01953125,
-0.040252685546875,
-0.0186309814453125,
-0.04833984375,
-0.007518768310546875,
-0.061065673828125,
-0.00881195068359375,
-0.01296234130859375,
-0.037017822265625,
-0.02490234375,
-0.0183563232421875,
0.051177978515625,
0.0289306640625,
-0.0184783935546875,
0.01200103759765625,
-0.047607421875,
0.038482666015625,
0.0243682861328125,
0.03173828125,
-0.017303466796875,
-0.0198516845703125,
-0.018524169921875,
0.01538848876953125,
-0.01413726806640625,
-0.06109619140625,
0.019927978515625,
-0.006656646728515625,
0.039215087890625,
0.017120361328125,
-0.0103607177734375,
0.048553466796875,
-0.01024627685546875,
0.0841064453125,
0.0191650390625,
-0.04559326171875,
0.0653076171875,
-0.03955078125,
0.023040771484375,
0.065673828125,
0.0355224609375,
-0.036163330078125,
-0.01447296142578125,
-0.0638427734375,
-0.07196044921875,
0.052764892578125,
0.0213165283203125,
0.00928497314453125,
-0.0166015625,
0.013763427734375,
0.0021495819091796875,
0.0133056640625,
-0.04486083984375,
-0.05206298828125,
-0.0236053466796875,
-0.0211944580078125,
0.00826263427734375,
0.0008158683776855469,
-0.022216796875,
-0.044525146484375,
0.044952392578125,
-0.0005941390991210938,
0.0161590576171875,
0.0272369384765625,
0.00899505615234375,
0.0029010772705078125,
0.01546478271484375,
0.0350341796875,
0.042022705078125,
-0.0338134765625,
-0.002231597900390625,
0.005741119384765625,
-0.048309326171875,
-0.01561737060546875,
0.0164794921875,
-0.024932861328125,
-0.006923675537109375,
0.025177001953125,
0.04718017578125,
-0.00037479400634765625,
-0.033721923828125,
0.037078857421875,
-0.0091094970703125,
-0.048095703125,
-0.034393310546875,
-0.0000776052474975586,
0.012451171875,
0.0176849365234375,
0.0341796875,
-0.020751953125,
0.005382537841796875,
-0.041839599609375,
0.00926971435546875,
0.0250091552734375,
-0.01309967041015625,
-0.016082763671875,
0.058807373046875,
-0.0007061958312988281,
-0.0267791748046875,
0.0307159423828125,
-0.034820556640625,
-0.03485107421875,
0.0653076171875,
0.0117340087890625,
0.047454833984375,
0.00991058349609375,
0.01885986328125,
0.051849365234375,
0.02923583984375,
0.0033969879150390625,
0.054962158203125,
-0.00766754150390625,
-0.040496826171875,
-0.00036597251892089844,
-0.0443115234375,
-0.01142120361328125,
0.01702880859375,
-0.043060302734375,
0.0070953369140625,
-0.050140380859375,
-0.019134521484375,
0.0079803466796875,
0.028778076171875,
-0.072998046875,
0.0380859375,
-0.0038318634033203125,
0.075439453125,
-0.061859130859375,
0.03265380859375,
0.06298828125,
-0.056671142578125,
-0.0648193359375,
-0.0188140869140625,
0.003143310546875,
-0.042022705078125,
0.03631591796875,
0.0003497600555419922,
0.034149169921875,
0.0013141632080078125,
-0.062042236328125,
-0.066650390625,
0.10504150390625,
-0.0051422119140625,
-0.01904296875,
-0.004734039306640625,
0.0176544189453125,
0.03277587890625,
-0.0103912353515625,
0.030181884765625,
0.04156494140625,
0.0440673828125,
0.01430511474609375,
-0.067138671875,
0.0111083984375,
-0.050689697265625,
-0.0274200439453125,
0.00652313232421875,
-0.06097412109375,
0.0654296875,
0.004657745361328125,
-0.01119232177734375,
-0.02044677734375,
0.035797119140625,
0.01537322998046875,
0.0235137939453125,
0.029571533203125,
0.06768798828125,
0.07025146484375,
-0.0186767578125,
0.079345703125,
-0.0279541015625,
0.041351318359375,
0.06414794921875,
0.0086822509765625,
0.050018310546875,
0.03173828125,
-0.0300750732421875,
0.02484130859375,
0.046783447265625,
-0.026397705078125,
0.0394287109375,
0.01494598388671875,
-0.00615692138671875,
0.003337860107421875,
-0.007110595703125,
-0.040557861328125,
0.031829833984375,
0.015777587890625,
-0.0257415771484375,
-0.005962371826171875,
-0.0170440673828125,
0.004390716552734375,
-0.00063323974609375,
-0.024169921875,
0.059967041015625,
-0.0311737060546875,
-0.0287628173828125,
0.048248291015625,
-0.01480865478515625,
0.056610107421875,
-0.031494140625,
0.007720947265625,
-0.0148468017578125,
-0.01374053955078125,
-0.04473876953125,
-0.0859375,
0.017425537109375,
0.0006723403930664062,
-0.03240966796875,
0.00244903564453125,
0.03656005859375,
-0.00942230224609375,
-0.05364990234375,
-0.0017910003662109375,
0.0298919677734375,
0.01296234130859375,
0.0162200927734375,
-0.0726318359375,
-0.0006155967712402344,
0.011505126953125,
-0.031402587890625,
0.01039886474609375,
0.036956787109375,
0.015411376953125,
0.0399169921875,
0.064208984375,
0.017333984375,
0.0243682861328125,
-0.0092010498046875,
0.06842041015625,
-0.06842041015625,
-0.033843994140625,
-0.051483154296875,
0.05035400390625,
-0.0286102294921875,
-0.0275115966796875,
0.055999755859375,
0.071533203125,
0.07269287109375,
-0.000047326087951660156,
0.0694580078125,
-0.04412841796875,
0.04022216796875,
-0.0294189453125,
0.0579833984375,
-0.063232421875,
-0.0118560791015625,
-0.01384735107421875,
-0.03955078125,
-0.021942138671875,
0.04046630859375,
-0.016204833984375,
0.00029015541076660156,
0.028594970703125,
0.06561279296875,
-0.0009579658508300781,
0.007160186767578125,
-0.01010894775390625,
0.0032558441162109375,
0.023773193359375,
0.046722412109375,
0.027557373046875,
-0.0526123046875,
0.044525146484375,
-0.049224853515625,
-0.00585174560546875,
-0.018646240234375,
-0.058258056640625,
-0.056304931640625,
-0.06298828125,
-0.02630615234375,
-0.03790283203125,
-0.01708984375,
0.06829833984375,
0.0443115234375,
-0.066650390625,
-0.00048041343688964844,
-0.00431060791015625,
0.006664276123046875,
-0.00021135807037353516,
-0.02362060546875,
0.053192138671875,
0.007633209228515625,
-0.0457763671875,
0.0095367431640625,
0.00475311279296875,
0.007083892822265625,
0.005584716796875,
-0.007404327392578125,
-0.034423828125,
-0.0031642913818359375,
0.027191162109375,
0.041473388671875,
-0.03948974609375,
-0.0178070068359375,
0.0036773681640625,
-0.005290985107421875,
0.0197601318359375,
0.0121612548828125,
-0.04052734375,
0.03790283203125,
0.058807373046875,
0.03851318359375,
0.041412353515625,
0.00763702392578125,
-0.01222991943359375,
-0.0411376953125,
0.0052032470703125,
0.0147247314453125,
0.0227203369140625,
0.01552581787109375,
-0.035614013671875,
0.0494384765625,
0.0215911865234375,
-0.03155517578125,
-0.056060791015625,
-0.020294189453125,
-0.10504150390625,
-0.001476287841796875,
0.08306884765625,
0.0034942626953125,
-0.046478271484375,
-0.003635406494140625,
-0.0164337158203125,
0.0243682861328125,
-0.032806396484375,
0.051025390625,
0.056182861328125,
-0.0003991127014160156,
0.0003857612609863281,
-0.053192138671875,
0.033966064453125,
0.002864837646484375,
-0.07720947265625,
-0.01551055908203125,
0.0242156982421875,
0.0308380126953125,
0.034454345703125,
0.059783935546875,
-0.01971435546875,
0.024383544921875,
0.0078582763671875,
0.00566864013671875,
-0.01013946533203125,
0.0028839111328125,
-0.00397491455078125,
0.01279449462890625,
-0.01507568359375,
-0.0296173095703125
]
] |
ncbi_disease | 2023-01-25T14:41:18.000Z | [
"task_categories:token-classification",
"task_ids:named-entity-recognition",
"annotations_creators:expert-generated",
"language_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:en",
"license:unknown",
"region:us"
] | null | This paper presents the disease name and concept annotations of the NCBI disease corpus, a collection of 793 PubMed
abstracts fully annotated at the mention and concept level to serve as a research resource for the biomedical natural
language processing community. Each PubMed abstract was manually annotated by two annotators with disease mentions
and their corresponding concepts in Medical Subject Headings (MeSH®) or Online Mendelian Inheritance in Man (OMIM®).
Manual curation was performed using PubTator, which allowed the use of pre-annotations as a pre-step to manual annotations.
Fourteen annotators were randomly paired and differing annotations were discussed for reaching a consensus in two
annotation phases. In this setting, a high inter-annotator agreement was observed. Finally, all results were checked
against annotations of the rest of the corpus to assure corpus-wide consistency.
For more details, see: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3951655/
The original dataset can be downloaded from: https://www.ncbi.nlm.nih.gov/CBBresearch/Dogan/DISEASE/NCBI_corpus.zip
This dataset has been converted to CoNLL format for NER using the following tool: https://github.com/spyysalo/standoff2conll
Note: there is a duplicate document (PMID 8528200) in the original data, and the duplicate is recreated in the converted data. | @article{dougan2014ncbi,
title={NCBI disease corpus: a resource for disease name recognition and concept normalization},
author={Dogan, Rezarta Islamaj and Leaman, Robert and Lu, Zhiyong},
journal={Journal of biomedical informatics},
volume={47},
pages={1--10},
year={2014},
publisher={Elsevier}
} | 20 | 1,122 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- expert-generated
language:
- en
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- token-classification
task_ids:
- named-entity-recognition
paperswithcode_id: ncbi-disease-1
pretty_name: NCBI Disease
dataset_info:
features:
- name: id
dtype: string
- name: tokens
sequence: string
- name: ner_tags
sequence:
class_label:
names:
'0': O
'1': B-Disease
'2': I-Disease
config_name: ncbi_disease
splits:
- name: train
num_bytes: 2355516
num_examples: 5433
- name: validation
num_bytes: 413900
num_examples: 924
- name: test
num_bytes: 422842
num_examples: 941
download_size: 1546492
dataset_size: 3192258
train-eval-index:
- config: ncbi_disease
task: token-classification
task_id: multi_class_classification
splits:
train_split: train
eval_split: test
col_mapping:
tokens: text
ner_tags: target
metrics:
- type: accuracy
name: Accuracy
- type: f1
name: F1 macro
args:
average: macro
- type: f1
name: F1 micro
args:
average: micro
- type: f1
name: F1 weighted
args:
average: weighted
- type: precision
name: Precision macro
args:
average: macro
- type: precision
name: Precision micro
args:
average: micro
- type: precision
name: Precision weighted
args:
average: weighted
- type: recall
name: Recall macro
args:
average: macro
- type: recall
name: Recall micro
args:
average: micro
- type: recall
name: Recall weighted
args:
average: weighted
---
# Dataset Card for NCBI Disease
## Table of Contents
- [Dataset Card for NCBI Disease](#dataset-card-for-ncbi-disease)
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
- [Who are the source language producers?](#who-are-the-source-language-producers)
- [Annotations](#annotations)
- [Annotation process](#annotation-process)
- [Who are the annotators?](#who-are-the-annotators)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [NCBI](https://www.ncbi.nlm.nih.gov/research/bionlp/Data/disease)
- **Repository:** [Github](https://github.com/spyysalo/ncbi-disease)
- **Paper:** [NCBI disease corpus: A resource for disease name recognition and concept normalization](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3951655)
- **Leaderboard:** [Named Entity Recognition on NCBI-disease](https://paperswithcode.com/sota/named-entity-recognition-ner-on-ncbi-disease)
- **Point of Contact:** [email](zhiyong.lu@nih.gov)
### Dataset Summary
This dataset contains the disease name and concept annotations of the NCBI disease corpus, a collection of 793 PubMed abstracts fully annotated at the mention and concept level to serve as a research resource for the biomedical natural language processing community.
### Supported Tasks and Leaderboards
Named Entity Recognition: [Leaderboard](https://paperswithcode.com/sota/named-entity-recognition-ner-on-ncbi-disease)
### Languages
The text in the dataset is in English. The associated BCP-47 code is `en`.
## Dataset Structure
### Data Instances
Instances of the dataset contain an array of `tokens`, `ner_tags` and an `id`. An example of an instance of the dataset:
```
{
'tokens': ['Identification', 'of', 'APC2', ',', 'a', 'homologue', 'of', 'the', 'adenomatous', 'polyposis', 'coli', 'tumour', 'suppressor', '.'],
'ner_tags': [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 0, 0],
'id': '0'
}
```
### Data Fields
- `id`: Sentence identifier.
- `tokens`: Array of tokens composing a sentence.
- `ner_tags`: Array of tags, where `0` indicates no disease mentioned, `1` signals the first token of a disease and `2` the subsequent disease tokens.
### Data Splits
The data is split into a train (5433 instances), validation (924 instances) and test set (941 instances).
## Dataset Creation
### Curation Rationale
The goal of the dataset consists on improving the state-of-the-art in disease name recognition and normalization research, by providing a high-quality gold standard thus enabling the development of machine-learning based approaches for such tasks.
### Source Data
#### Initial Data Collection and Normalization
The dataset consists on abstracts extracted from PubMed.
#### Who are the source language producers?
The source language producers are the authors of publication abstracts hosted in PubMed.
### Annotations
#### Annotation process
Each PubMed abstract was manually annotated by two annotators with disease mentions and their corresponding concepts in Medical Subject Headings (MeSH®) or Online Mendelian Inheritance in Man (OMIM®). Manual curation was performed using PubTator, which allowed the use of pre-annotations as a pre-step to manual annotations. Fourteen annotators were randomly paired and differing annotations were discussed for reaching a consensus in two annotation phases. Finally, all results were checked against annotations of the rest of the corpus to assure corpus-wide consistency.
#### Who are the annotators?
The annotator group consisted of 14 people with backgrounds in biomedical informatics research and experience in biomedical text corpus annotation.
### Personal and Sensitive Information
[N/A]
## Considerations for Using the Data
### Social Impact of Dataset
Information encoded in natural language in biomedical literature publications is only useful if efficient and reliable ways of accessing and analyzing that information are available. Natural language processing and text mining tools are therefore essential for extracting valuable information. This dataset provides an annotated corpora that can be used to develop highly effective tools to automatically detect central biomedical concepts such as diseases.
### Discussion of Biases
To avoid annotator bias, pairs of annotators were chosen randomly for each set, so that each pair of annotators overlapped for at most two sets.
### Other Known Limitations
A handful of disease concepts were discovered that were not included in MEDIC. For those, we decided to include the appropriate OMIM identifiers.
In addition, certain disease mentions were found to not be easily represented using the standard categorizations.
Also, each PMID document was pre-annotated using the Inference Method developed for disease name normalization, which properly handles abbreviation recognition, robust string matching, etc. As such, human annotators were given the pre-annotated documents as a starting point and allowed to see each pre-annotation with a computed confidence.
## Additional Information
### Dataset Curators
Rezarta Islamaj Doğan, Robert Leaman, Zhiyong Lu
### Licensing Information
```
PUBLIC DOMAIN NOTICE
This work is a "United States Government Work" under the terms of the
United States Copyright Act. It was written as part of the authors'
official duties as a United States Government employee and thus cannot
be copyrighted within the United States. The data is freely available
to the public for use. The National Library of Medicine and the
U.S. Government have not placed any restriction on its use or
reproduction.
Although all reasonable efforts have been taken to ensure the accuracy
and reliability of the data and its source code, the NLM and the
U.S. Government do not and cannot warrant the performance or results
that may be obtained by using it. The NLM and the U.S. Government
disclaim all warranties, express or implied, including warranties of
performance, merchantability or fitness for any particular purpose.
Please cite the authors in any work or product based on this material:
An improved corpus of disease mentions in PubMed citations
http://aclweb.org/anthology-new/W/W12/W12-2411.pdf
NCBI Disease Corpus: A Resource for Disease Name Recognition and
Normalization http://www.ncbi.nlm.nih.gov/pubmed/24393765
Disease Name Normalization with Pairwise Learning to Rank
http://www.ncbi.nlm.nih.gov/pubmed/23969135
```
### Citation Information
```
@article{dougan2014ncbi,
title={NCBI disease corpus: a resource for disease name recognition and concept normalization},
author={Do{\u{g}}an, Rezarta Islamaj and Leaman, Robert and Lu, Zhiyong},
journal={Journal of biomedical informatics},
volume={47},
pages={1--10},
year={2014},
publisher={Elsevier}
}
```
### Contributions
Thanks to [@edugp](https://github.com/edugp) for adding this dataset. | 9,695 | [
[
-0.01540374755859375,
-0.039581298828125,
0.023406982421875,
0.001712799072265625,
-0.0224456787109375,
0.004337310791015625,
-0.01300811767578125,
-0.046478271484375,
0.058135986328125,
0.032073974609375,
-0.024017333984375,
-0.0784912109375,
-0.050506591796875,
0.041534423828125,
0.0038623809814453125,
0.09661865234375,
0.003875732421875,
0.0170745849609375,
-0.0117340087890625,
-0.017120361328125,
-0.006641387939453125,
-0.0290069580078125,
-0.039947509765625,
-0.015838623046875,
0.04345703125,
0.0266876220703125,
0.041595458984375,
0.0703125,
0.06365966796875,
0.007198333740234375,
-0.0133209228515625,
0.0083465576171875,
-0.028350830078125,
-0.00415802001953125,
-0.01178741455078125,
-0.014801025390625,
-0.0599365234375,
-0.002490997314453125,
0.033416748046875,
0.07049560546875,
-0.002658843994140625,
0.0157928466796875,
-0.01337432861328125,
0.05230712890625,
-0.0218658447265625,
0.032470703125,
-0.0174560546875,
0.003040313720703125,
-0.043914794921875,
-0.0183258056640625,
-0.006275177001953125,
-0.031005859375,
0.002017974853515625,
-0.053192138671875,
0.009857177734375,
0.00785064697265625,
0.087646484375,
0.006626129150390625,
-0.03314208984375,
-0.0174102783203125,
-0.0167236328125,
0.038604736328125,
-0.060943603515625,
0.01052093505859375,
0.0430908203125,
0.01169586181640625,
-0.020782470703125,
-0.05963134765625,
-0.03265380859375,
-0.01340484619140625,
-0.0206451416015625,
0.0156402587890625,
-0.0282135009765625,
0.0034942626953125,
0.032379150390625,
0.0263824462890625,
-0.055999755859375,
-0.00994873046875,
-0.06488037109375,
-0.02960205078125,
0.06390380859375,
0.01519012451171875,
0.0333251953125,
-0.04400634765625,
-0.028106689453125,
0.0108489990234375,
-0.050567626953125,
-0.005115509033203125,
0.0023784637451171875,
0.03802490234375,
-0.03314208984375,
0.0350341796875,
-0.023834228515625,
0.046844482421875,
-0.005802154541015625,
-0.016845703125,
0.0711669921875,
-0.056396484375,
-0.01407623291015625,
0.018341064453125,
0.07073974609375,
0.044464111328125,
-0.0098724365234375,
-0.011383056640625,
0.02325439453125,
-0.0196380615234375,
-0.0076751708984375,
-0.069091796875,
-0.036865234375,
0.032928466796875,
-0.055267333984375,
-0.0056915283203125,
0.00396728515625,
-0.07562255859375,
-0.034088134765625,
-0.01203155517578125,
0.01861572265625,
-0.03460693359375,
-0.027496337890625,
0.005207061767578125,
-0.02020263671875,
0.0109100341796875,
-0.0014390945434570312,
-0.048126220703125,
0.03204345703125,
0.0123748779296875,
0.042572021484375,
-0.034027099609375,
0.00612640380859375,
-0.016693115234375,
0.0255889892578125,
-0.0129241943359375,
0.056610107421875,
-0.03167724609375,
-0.03314208984375,
-0.0299835205078125,
0.0215606689453125,
-0.0156707763671875,
-0.032379150390625,
0.0484619140625,
-0.01076507568359375,
0.00917816162109375,
-0.03961181640625,
-0.03662109375,
-0.0072784423828125,
0.007472991943359375,
-0.0509033203125,
0.06268310546875,
0.013641357421875,
-0.0792236328125,
0.031494140625,
-0.053863525390625,
-0.03271484375,
0.0252227783203125,
-0.024261474609375,
-0.0312347412109375,
-0.017608642578125,
0.0111236572265625,
0.035430908203125,
-0.03765869140625,
0.0218658447265625,
-0.01532745361328125,
-0.005687713623046875,
0.0007295608520507812,
0.01128387451171875,
0.07196044921875,
0.01239013671875,
-0.01739501953125,
0.00951385498046875,
-0.072509765625,
-0.004364013671875,
0.0235595703125,
-0.01065826416015625,
-0.02996826171875,
-0.00547027587890625,
0.00270843505859375,
0.007061004638671875,
0.01030731201171875,
-0.039093017578125,
0.025146484375,
-0.049285888671875,
0.0274810791015625,
0.025634765625,
0.0288543701171875,
0.01428985595703125,
-0.0277557373046875,
0.036102294921875,
0.016021728515625,
0.0190582275390625,
0.007198333740234375,
-0.064453125,
-0.0167694091796875,
-0.04248046875,
0.0556640625,
0.042999267578125,
-0.036376953125,
0.0394287109375,
-0.03594970703125,
-0.040283203125,
-0.05291748046875,
-0.015960693359375,
0.034698486328125,
0.038116455078125,
0.054779052734375,
-0.033172607421875,
-0.05291748046875,
-0.06756591796875,
0.0100860595703125,
0.0033817291259765625,
0.004398345947265625,
0.04327392578125,
0.04632568359375,
-0.037994384765625,
0.054962158203125,
-0.056610107421875,
-0.032928466796875,
-0.01397705078125,
-0.001827239990234375,
0.022613525390625,
0.048095703125,
0.031951904296875,
-0.061614990234375,
-0.0360107421875,
0.00012481212615966797,
-0.048980712890625,
-0.0210723876953125,
0.00858306884765625,
-0.005512237548828125,
0.009674072265625,
0.038604736328125,
-0.0265655517578125,
0.05670166015625,
0.02716064453125,
-0.03729248046875,
0.03692626953125,
-0.0196990966796875,
0.0087890625,
-0.0947265625,
0.0274810791015625,
-0.01074981689453125,
0.0027370452880859375,
-0.047027587890625,
-0.0258331298828125,
-0.0007939338684082031,
0.0241546630859375,
-0.006061553955078125,
0.045745849609375,
-0.036651611328125,
0.0197906494140625,
0.005535125732421875,
0.00455474853515625,
0.00775909423828125,
0.0188140869140625,
-0.01490020751953125,
0.0308990478515625,
0.04730224609375,
-0.047149658203125,
0.0081634521484375,
0.0252532958984375,
-0.012420654296875,
0.02923583984375,
-0.056854248046875,
-0.032440185546875,
-0.018890380859375,
0.01021575927734375,
-0.0670166015625,
-0.02587890625,
0.048583984375,
-0.06036376953125,
0.02764892578125,
0.005218505859375,
-0.042144775390625,
-0.0232696533203125,
-0.029998779296875,
0.01160430908203125,
0.00940704345703125,
-0.0011358261108398438,
0.0243377685546875,
0.057830810546875,
-0.0023403167724609375,
-0.032806396484375,
-0.0679931640625,
-0.003261566162109375,
-0.002620697021484375,
-0.025299072265625,
0.059051513671875,
-0.01320648193359375,
-0.01248931884765625,
0.01166534423828125,
-0.00740814208984375,
-0.0184326171875,
0.0035266876220703125,
0.026153564453125,
0.0248260498046875,
0.0010042190551757812,
0.02447509765625,
0.0110321044921875,
-0.004520416259765625,
-0.00690460205078125,
0.02618408203125,
0.0245208740234375,
0.009033203125,
-0.0175018310546875,
-0.031982421875,
0.042999267578125,
0.019195556640625,
-0.0229034423828125,
0.04364013671875,
0.044464111328125,
-0.0521240234375,
0.02606201171875,
-0.0179595947265625,
-0.015472412109375,
-0.021514892578125,
0.0269012451171875,
-0.0169525146484375,
-0.055328369140625,
0.052032470703125,
0.01364898681640625,
-0.00502777099609375,
0.06854248046875,
0.042633056640625,
0.00550079345703125,
0.04986572265625,
0.037994384765625,
0.00847625732421875,
-0.00194549560546875,
-0.0252227783203125,
0.021942138671875,
-0.0789794921875,
-0.03118896484375,
-0.0455322265625,
-0.024261474609375,
-0.0667724609375,
-0.047882080078125,
0.015167236328125,
0.004947662353515625,
-0.005298614501953125,
0.026824951171875,
-0.05926513671875,
0.01336669921875,
0.0302734375,
0.02423095703125,
0.0227508544921875,
-0.0137939453125,
-0.0264892578125,
-0.0142669677734375,
-0.047576904296875,
-0.036346435546875,
0.116943359375,
0.0227508544921875,
0.028839111328125,
0.008453369140625,
0.0697021484375,
0.0210113525390625,
0.027801513671875,
-0.03179931640625,
0.0235137939453125,
-0.0151824951171875,
-0.06634521484375,
-0.01224517822265625,
-0.0310821533203125,
-0.10455322265625,
-0.01377105712890625,
-0.028900146484375,
-0.0640869140625,
0.057281494140625,
-0.0034008026123046875,
-0.049713134765625,
0.01107025146484375,
-0.047760009765625,
0.0743408203125,
-0.01361083984375,
-0.00328826904296875,
0.0126495361328125,
-0.07684326171875,
0.0208282470703125,
0.01552581787109375,
0.019989013671875,
-0.0264892578125,
-0.014678955078125,
0.070556640625,
-0.02557373046875,
0.055816650390625,
-0.000858306884765625,
0.035400390625,
-0.0012054443359375,
-0.03155517578125,
0.00013184547424316406,
0.0207366943359375,
-0.002838134765625,
0.044464111328125,
0.023345947265625,
-0.0267333984375,
-0.0005564689636230469,
0.0372314453125,
-0.040130615234375,
-0.013336181640625,
-0.05999755859375,
-0.0193328857421875,
0.006988525390625,
0.033721923828125,
0.029541015625,
0.032196044921875,
0.0012531280517578125,
0.01444244384765625,
0.052398681640625,
-0.0200653076171875,
0.006420135498046875,
0.0180206298828125,
-0.0110626220703125,
-0.04840087890625,
0.058746337890625,
0.0160675048828125,
0.006160736083984375,
0.038177490234375,
0.00501251220703125,
-0.0119476318359375,
-0.054962158203125,
-0.024017333984375,
0.0186614990234375,
-0.02947998046875,
-0.03765869140625,
-0.06622314453125,
-0.0141754150390625,
-0.0404052734375,
0.01361083984375,
0.0057373046875,
-0.0278167724609375,
-0.036865234375,
-0.0155792236328125,
0.04705810546875,
0.030517578125,
-0.0287628173828125,
-0.003047943115234375,
-0.038482666015625,
0.03314208984375,
-0.0059356689453125,
0.02716064453125,
-0.0169219970703125,
-0.0272216796875,
-0.0177154541015625,
0.00493621826171875,
-0.0176849365234375,
-0.0880126953125,
0.03564453125,
0.023956298828125,
0.06121826171875,
0.026275634765625,
0.0128936767578125,
0.04425048828125,
-0.014923095703125,
0.05621337890625,
0.00689697265625,
-0.031005859375,
0.041778564453125,
-0.022247314453125,
0.01715087890625,
0.061004638671875,
0.05169677734375,
-0.031646728515625,
-0.007965087890625,
-0.067138671875,
-0.09246826171875,
0.053009033203125,
0.0237884521484375,
-0.02667236328125,
-0.026275634765625,
0.0247039794921875,
0.00318145751953125,
0.00946807861328125,
-0.047393798828125,
-0.0748291015625,
-0.005069732666015625,
-0.0225677490234375,
-0.0036334991455078125,
-0.0260162353515625,
-0.032806396484375,
-0.04498291015625,
0.053070068359375,
-0.00673675537109375,
0.048095703125,
0.05255126953125,
-0.0030422210693359375,
0.00989532470703125,
0.02215576171875,
0.03973388671875,
0.040130615234375,
-0.0304718017578125,
0.0019311904907226562,
0.0038623809814453125,
-0.055084228515625,
-0.02911376953125,
0.048675537109375,
-0.01910400390625,
0.0108795166015625,
0.025848388671875,
0.04730224609375,
0.0230865478515625,
-0.051025390625,
0.038848876953125,
-0.0026950836181640625,
-0.02978515625,
-0.01374053955078125,
-0.004398345947265625,
0.0232391357421875,
0.010528564453125,
0.0265655517578125,
0.00011527538299560547,
0.035736083984375,
-0.0164642333984375,
0.020721435546875,
0.01381683349609375,
-0.029815673828125,
-0.0209503173828125,
0.048675537109375,
-0.004375457763671875,
-0.0054473876953125,
0.024200439453125,
-0.045013427734375,
-0.004016876220703125,
0.04986572265625,
0.027740478515625,
0.04461669921875,
-0.007198333740234375,
0.00994110107421875,
0.056060791015625,
0.0260162353515625,
0.0063323974609375,
0.047943115234375,
0.013153076171875,
-0.042266845703125,
-0.025909423828125,
-0.054718017578125,
-0.0128021240234375,
0.007213592529296875,
-0.053192138671875,
0.0274658203125,
-0.025970458984375,
-0.0289306640625,
0.04034423828125,
0.01605224609375,
-0.039947509765625,
0.013824462890625,
0.0157470703125,
0.062255859375,
-0.055877685546875,
0.061798095703125,
0.06463623046875,
-0.0618896484375,
-0.059326171875,
0.004032135009765625,
0.0020904541015625,
-0.02484130859375,
0.0406494140625,
0.01410675048828125,
0.0445556640625,
-0.0022869110107421875,
-0.033203125,
-0.08343505859375,
0.09368896484375,
0.0154876708984375,
-0.0295562744140625,
-0.0037631988525390625,
-0.0043182373046875,
0.054595947265625,
-0.028533935546875,
0.0185699462890625,
0.041534423828125,
0.049224853515625,
-0.0009946823120117188,
-0.080322265625,
0.0159912109375,
-0.0302734375,
-0.006160736083984375,
0.015838623046875,
-0.0267181396484375,
0.052459716796875,
-0.024932861328125,
-0.01149749755859375,
-0.01025390625,
0.034881591796875,
0.03070068359375,
0.05181884765625,
-0.0018310546875,
0.061126708984375,
0.06744384765625,
-0.0227508544921875,
0.06671142578125,
-0.0229949951171875,
0.0169677734375,
0.07183837890625,
0.0002536773681640625,
0.044342041015625,
0.0300445556640625,
-0.0423583984375,
0.041961669921875,
0.051910400390625,
-0.0026721954345703125,
0.037689208984375,
0.0233306884765625,
0.01039886474609375,
0.003414154052734375,
-0.006275177001953125,
-0.04949951171875,
0.0287628173828125,
0.037872314453125,
-0.04913330078125,
-0.01128387451171875,
-0.0026187896728515625,
0.0229644775390625,
0.0035953521728515625,
-0.0207977294921875,
0.053802490234375,
-0.0041961669921875,
-0.00647735595703125,
0.048858642578125,
0.004428863525390625,
0.04632568359375,
-0.046661376953125,
-0.0004642009735107422,
-0.007114410400390625,
-0.003936767578125,
-0.04046630859375,
-0.04522705078125,
0.045684814453125,
-0.022613525390625,
-0.046295166015625,
0.017425537109375,
0.038330078125,
-0.031585693359375,
-0.043731689453125,
0.0215911865234375,
0.0234222412109375,
0.03411865234375,
0.0134124755859375,
-0.061309814453125,
0.007297515869140625,
0.0101165771484375,
-0.005939483642578125,
0.029998779296875,
0.025238037109375,
-0.02117919921875,
0.0300445556640625,
0.045562744140625,
0.031707763671875,
-0.0153656005859375,
-0.00962066650390625,
0.061614990234375,
-0.0538330078125,
-0.0113067626953125,
-0.050323486328125,
0.0340576171875,
-0.0291900634765625,
-0.034820556640625,
0.052001953125,
0.0589599609375,
0.05670166015625,
0.004375457763671875,
0.05108642578125,
-0.037261962890625,
0.06268310546875,
-0.0065765380859375,
0.08258056640625,
-0.0450439453125,
-0.0030651092529296875,
-0.029815673828125,
-0.0221710205078125,
-0.065673828125,
0.04071044921875,
-0.0245208740234375,
-0.00042438507080078125,
0.059051513671875,
0.06072998046875,
0.0158233642578125,
-0.005634307861328125,
-0.000125885009765625,
0.0382080078125,
0.01085662841796875,
0.03875732421875,
-0.020660400390625,
-0.04803466796875,
0.0237579345703125,
-0.028656005859375,
-0.022125244140625,
-0.0292816162109375,
-0.06878662109375,
-0.046234130859375,
-0.051727294921875,
-0.05450439453125,
-0.036712646484375,
0.02532958984375,
0.0821533203125,
0.048919677734375,
-0.085693359375,
-0.00243377685546875,
0.017333984375,
0.0144500732421875,
-0.041595458984375,
-0.0163116455078125,
0.05438232421875,
0.00821685791015625,
-0.027923583984375,
0.00751495361328125,
0.0192718505859375,
-0.0088958740234375,
0.0122833251953125,
0.004119873046875,
-0.049346923828125,
-0.0226287841796875,
0.033172607421875,
0.047698974609375,
-0.0411376953125,
0.01296234130859375,
-0.00952911376953125,
-0.034423828125,
0.0254058837890625,
0.004619598388671875,
-0.048492431640625,
0.04541015625,
0.036163330078125,
0.033660888671875,
0.01499176025390625,
-0.0057830810546875,
0.00447845458984375,
-0.027679443359375,
-0.0119476318359375,
0.033111572265625,
0.0225982666015625,
0.0274505615234375,
-0.033477783203125,
0.03668212890625,
0.049407958984375,
-0.040557861328125,
-0.06103515625,
-0.01812744140625,
-0.1031494140625,
-0.007793426513671875,
0.09930419921875,
0.007427215576171875,
-0.0272674560546875,
-0.0299224853515625,
-0.0121307373046875,
0.0283355712890625,
-0.041595458984375,
0.04534912109375,
0.0242919921875,
-0.0288238525390625,
0.00768280029296875,
-0.05230712890625,
0.0623779296875,
-0.01065826416015625,
-0.07769775390625,
-0.001323699951171875,
0.021148681640625,
0.023681640625,
0.01512908935546875,
0.075927734375,
-0.042999267578125,
0.020599365234375,
-0.0279998779296875,
0.043792724609375,
0.0014429092407226562,
0.00537872314453125,
-0.0230560302734375,
-0.0024852752685546875,
-0.01531219482421875,
-0.00917816162109375
]
] |
GeorgiaTech/cnotesum | 2023-09-02T13:47:25.000Z | [
"license:other",
"region:us"
] | GeorgiaTech | null | null | 0 | 1,115 | 2023-09-02T13:42:55 | ---
license: other
---
Synthetic Clinical Notes based on Synthea and Summary Generated via LLAMA 2 | 98 | [
[
0.002071380615234375,
-0.03924560546875,
0.0731201171875,
0.021820068359375,
-0.0279083251953125,
0.0016393661499023438,
0.024993896484375,
-0.05181884765625,
0.0867919921875,
0.05560302734375,
-0.050567626953125,
-0.04681396484375,
-0.0204620361328125,
0.032745361328125,
-0.02337646484375,
0.09033203125,
-0.0168304443359375,
0.0308380126953125,
0.0234375,
-0.01349639892578125,
-0.02728271484375,
-0.0091094970703125,
-0.02520751953125,
-0.0185394287109375,
0.034423828125,
0.0258941650390625,
0.003223419189453125,
0.037750244140625,
0.02618408203125,
0.01001739501953125,
-0.00957489013671875,
0.0189056396484375,
-0.03155517578125,
0.018280029296875,
0.0009784698486328125,
-0.057037353515625,
-0.07855224609375,
0.000023603439331054688,
0.037933349609375,
0.006343841552734375,
-0.0162353515625,
0.035675048828125,
-0.0303955078125,
0.0283203125,
0.0223846435546875,
0.00766754150390625,
-0.033782958984375,
0.0160064697265625,
-0.02423095703125,
-0.0176849365234375,
-0.016143798828125,
0.003635406494140625,
0.006683349609375,
-0.071533203125,
0.040435791015625,
-0.0236053466796875,
0.05364990234375,
-0.0010461807250976562,
-0.0269317626953125,
-0.032562255859375,
-0.033050537109375,
0.033172607421875,
-0.07745361328125,
-0.0245208740234375,
0.016204833984375,
0.043212890625,
-0.039794921875,
-0.07562255859375,
-0.04327392578125,
0.000530242919921875,
-0.0198211669921875,
0.023468017578125,
0.0004870891571044922,
-0.0014963150024414062,
0.0225830078125,
0.036102294921875,
-0.0214691162109375,
0.00848388671875,
-0.0517578125,
-0.025848388671875,
0.0601806640625,
0.039581298828125,
0.032470703125,
-0.029815673828125,
-0.0333251953125,
-0.001918792724609375,
-0.0740966796875,
-0.0268402099609375,
0.01517486572265625,
0.00732421875,
-0.039398193359375,
0.06866455078125,
-0.02154541015625,
-0.002773284912109375,
-0.01461029052734375,
-0.057830810546875,
0.0289764404296875,
-0.0306243896484375,
-0.0220947265625,
0.03387451171875,
0.0428466796875,
0.0697021484375,
-0.005313873291015625,
0.007297515869140625,
0.00032973289489746094,
0.022125244140625,
0.01221466064453125,
-0.047210693359375,
-0.032745361328125,
0.044158935546875,
-0.04840087890625,
-0.05438232421875,
-0.031707763671875,
-0.0670166015625,
-0.0330810546875,
-0.03143310546875,
0.0103759765625,
0.0072479248046875,
-0.00823974609375,
-0.0274200439453125,
0.0007662773132324219,
0.00017774105072021484,
0.0406494140625,
-0.07305908203125,
0.034576416015625,
0.0175018310546875,
0.0472412109375,
-0.004688262939453125,
0.00841522216796875,
0.00981903076171875,
0.026031494140625,
-0.012115478515625,
0.08453369140625,
0.01332855224609375,
-0.08367919921875,
-0.0014619827270507812,
0.00931549072265625,
0.0176544189453125,
-0.0440673828125,
0.0295257568359375,
0.0005426406860351562,
0.0158538818359375,
-0.031280517578125,
-0.002105712890625,
-0.006336212158203125,
0.0112457275390625,
-0.054718017578125,
0.06317138671875,
0.04827880859375,
-0.03680419921875,
0.0017223358154296875,
-0.028045654296875,
-0.041961669921875,
-0.012939453125,
-0.0161590576171875,
-0.03143310546875,
0.0115814208984375,
0.01143646240234375,
-0.007602691650390625,
-0.0289154052734375,
0.00734710693359375,
0.00763702392578125,
-0.00621795654296875,
0.0335693359375,
0.007091522216796875,
0.03564453125,
0.026824951171875,
-0.0168304443359375,
0.01071929931640625,
-0.08941650390625,
0.00508880615234375,
0.011138916015625,
-0.02734375,
0.01544952392578125,
-0.0198211669921875,
0.01171875,
-0.01114654541015625,
0.0210418701171875,
-0.03363037109375,
0.0184478759765625,
-0.021484375,
0.03741455078125,
0.044189453125,
0.04742431640625,
0.0014934539794921875,
-0.045745849609375,
0.049835205078125,
-0.007205963134765625,
0.007904052734375,
-0.01593017578125,
-0.051910400390625,
-0.04840087890625,
-0.034423828125,
0.00482177734375,
0.04510498046875,
-0.002170562744140625,
-0.00435638427734375,
0.0174102783203125,
-0.044525146484375,
-0.049407958984375,
0.0113677978515625,
0.043853759765625,
0.0484619140625,
0.037994384765625,
-0.0074920654296875,
-0.09075927734375,
-0.07293701171875,
0.01413726806640625,
-0.033477783203125,
-0.005428314208984375,
-0.00501251220703125,
0.036224365234375,
-0.059844970703125,
0.03619384765625,
-0.035980224609375,
-0.041961669921875,
-0.0296478271484375,
-0.0153045654296875,
0.01438140869140625,
0.01364898681640625,
0.03741455078125,
0.002651214599609375,
-0.01287078857421875,
-0.0090179443359375,
-0.055816650390625,
-0.0322265625,
-0.034210205078125,
-0.0158843994140625,
0.00771331787109375,
0.01390838623046875,
-0.07049560546875,
0.0304412841796875,
0.03216552734375,
0.0198211669921875,
0.0460205078125,
-0.02117919921875,
0.001758575439453125,
-0.1226806640625,
0.0058746337890625,
-0.01114654541015625,
-0.0203399658203125,
-0.027587890625,
-0.0074462890625,
-0.0226593017578125,
0.00893402099609375,
-0.0223236083984375,
0.0180511474609375,
-0.0103759765625,
0.00926971435546875,
-0.005908966064453125,
0.00597381591796875,
0.0135955810546875,
0.0215606689453125,
-0.00434112548828125,
0.049468994140625,
0.00008016824722290039,
-0.00249481201171875,
0.00798797607421875,
0.046234130859375,
-0.0009164810180664062,
0.03057861328125,
-0.0645751953125,
-0.0079803466796875,
0.0156402587890625,
0.035247802734375,
-0.072998046875,
-0.058197021484375,
0.020355224609375,
-0.0230560302734375,
0.0036830902099609375,
0.024261474609375,
-0.033203125,
-0.01297760009765625,
-0.048004150390625,
0.0139312744140625,
0.063720703125,
-0.01021575927734375,
0.036285400390625,
0.060943603515625,
-0.0167083740234375,
0.00902557373046875,
-0.06378173828125,
0.01074981689453125,
-0.0214385986328125,
-0.004856109619140625,
0.044647216796875,
0.00763702392578125,
-0.04766845703125,
-0.0153350830078125,
0.004398345947265625,
0.005908966064453125,
-0.011077880859375,
0.042388916015625,
0.0299224853515625,
-0.033050537109375,
-0.0072174072265625,
0.040924072265625,
0.001758575439453125,
0.031463623046875,
0.046356201171875,
0.00609588623046875,
0.0049591064453125,
-0.00678253173828125,
-0.057952880859375,
0.05126953125,
0.057373046875,
0.044830322265625,
0.00814056396484375,
-0.0011301040649414062,
-0.0243988037109375,
-0.03466796875,
-0.0369873046875,
-0.0257568359375,
-0.0252838134765625,
0.00724029541015625,
-0.0115509033203125,
-0.017791748046875,
0.0673828125,
-0.01399993896484375,
-0.0106353759765625,
0.059112548828125,
0.061920166015625,
-0.030670166015625,
0.046356201171875,
0.01432037353515625,
0.020965576171875,
-0.0140380859375,
-0.0330810546875,
-0.0011911392211914062,
-0.09375,
-0.05865478515625,
-0.016326904296875,
-0.01303863525390625,
-0.049591064453125,
-0.0176239013671875,
0.049835205078125,
-0.00897216796875,
-0.0006060600280761719,
0.031951904296875,
-0.03302001953125,
0.0374755859375,
0.021392822265625,
0.04058837890625,
0.01056671142578125,
0.0184783935546875,
-0.006641387939453125,
-0.0168609619140625,
-0.030975341796875,
-0.07086181640625,
0.103515625,
0.02728271484375,
0.01519775390625,
0.003082275390625,
0.04827880859375,
0.034271240234375,
0.05615234375,
-0.0270843505859375,
0.057830810546875,
0.0146484375,
-0.0303192138671875,
0.006008148193359375,
0.0072479248046875,
-0.048583984375,
0.0164031982421875,
-0.0095672607421875,
-0.058197021484375,
-0.0291290283203125,
-0.0023632049560546875,
-0.019500732421875,
0.0026226043701171875,
-0.055572509765625,
0.0267333984375,
0.0002651214599609375,
-0.00920867919921875,
-0.0178375244140625,
-0.06378173828125,
0.05487060546875,
-0.01519775390625,
0.0091094970703125,
-0.01470947265625,
-0.006694793701171875,
0.043792724609375,
-0.058197021484375,
0.0670166015625,
0.0243988037109375,
-0.03436279296875,
0.04522705078125,
0.03155517578125,
0.01922607421875,
0.035247802734375,
-0.00737762451171875,
0.00966644287109375,
0.01126861572265625,
-0.0245208740234375,
-0.034210205078125,
0.05859375,
-0.04840087890625,
-0.050567626953125,
-0.045440673828125,
-0.0269012451171875,
-0.004306793212890625,
-0.005260467529296875,
0.00519561767578125,
0.047576904296875,
-0.0286865234375,
-0.0372314453125,
0.00511932373046875,
-0.017822265625,
0.0024776458740234375,
0.054656982421875,
0.0071258544921875,
-0.092041015625,
0.024169921875,
-0.00618743896484375,
0.012481689453125,
0.01271820068359375,
-0.0007457733154296875,
-0.04010009765625,
-0.0390625,
-0.036834716796875,
0.0592041015625,
-0.0572509765625,
-0.005062103271484375,
-0.0268707275390625,
-0.00783538818359375,
-0.04248046875,
-0.01071929931640625,
0.00004315376281738281,
-0.05584716796875,
-0.04840087890625,
-0.035888671875,
0.037506103515625,
0.0731201171875,
-0.0064849853515625,
0.0214080810546875,
-0.050994873046875,
0.041107177734375,
-0.01091766357421875,
-0.0169830322265625,
0.002410888671875,
-0.0231475830078125,
0.010009765625,
0.0193634033203125,
-0.041046142578125,
-0.0679931640625,
0.050567626953125,
-0.01552581787109375,
0.033599853515625,
0.0066986083984375,
-0.0184783935546875,
0.06658935546875,
-0.0265960693359375,
0.07025146484375,
0.03216552734375,
-0.04248046875,
0.07275390625,
-0.03936767578125,
-0.0114593505859375,
0.0308685302734375,
-0.00727081298828125,
0.00519561767578125,
-0.041473388671875,
-0.053070068359375,
-0.051971435546875,
0.027557373046875,
0.038360595703125,
0.007007598876953125,
-0.016815185546875,
0.0279083251953125,
0.019317626953125,
0.0153350830078125,
-0.040557861328125,
-0.006664276123046875,
0.0150299072265625,
-0.02691650390625,
0.0270843505859375,
-0.051025390625,
-0.041748046875,
-0.0188751220703125,
0.037384033203125,
0.015533447265625,
0.00298309326171875,
0.0543212890625,
0.0128326416015625,
-0.01117706298828125,
-0.007068634033203125,
0.07244873046875,
0.043609619140625,
-0.014007568359375,
0.011688232421875,
0.049713134765625,
-0.042205810546875,
0.0233917236328125,
-0.01326751708984375,
-0.025848388671875,
0.013671875,
0.050750732421875,
0.0287628173828125,
0.01824951171875,
-0.068359375,
-0.00786590576171875,
0.0123138427734375,
-0.0186767578125,
-0.06866455078125,
0.0007243156433105469,
0.002437591552734375,
0.01380157470703125,
-0.0140228271484375,
0.004123687744140625,
0.0240936279296875,
-0.059967041015625,
0.006717681884765625,
-0.01309967041015625,
0.017425537109375,
-0.0655517578125,
0.06414794921875,
0.0222930908203125,
-0.01319122314453125,
0.017852783203125,
0.006481170654296875,
-0.01181793212890625,
0.057525634765625,
0.06695556640625,
0.045166015625,
-0.0164337158203125,
0.046295166015625,
0.0210418701171875,
-0.01399993896484375,
-0.0076446533203125,
0.041351318359375,
-0.01137542724609375,
-0.0103912353515625,
-0.01074981689453125,
-0.041961669921875,
-0.03765869140625,
0.022796630859375,
-0.0286407470703125,
0.0310211181640625,
-0.0440673828125,
-0.01499176025390625,
0.00848388671875,
-0.0003986358642578125,
0.005886077880859375,
0.01433563232421875,
-0.02117919921875,
0.037078857421875,
-0.053802490234375,
0.0477294921875,
0.031494140625,
-0.0545654296875,
-0.0634765625,
-0.0173492431640625,
0.015045166015625,
-0.05029296875,
0.0299224853515625,
-0.0016164779663085938,
-0.007472991943359375,
-0.028045654296875,
0.01483917236328125,
-0.042022705078125,
0.088134765625,
0.0208740234375,
-0.032623291015625,
-0.006561279296875,
0.045623779296875,
0.08465576171875,
-0.023834228515625,
0.028076171875,
0.05291748046875,
0.003902435302734375,
0.012542724609375,
-0.059661865234375,
0.0231781005859375,
-0.04248046875,
-0.0176544189453125,
-0.025665283203125,
-0.050567626953125,
0.05108642578125,
-0.04638671875,
-0.01317596435546875,
0.06280517578125,
0.0225830078125,
0.05853271484375,
0.058349609375,
-0.0110321044921875,
0.05535888671875,
0.049652099609375,
0.0150299072265625,
0.09588623046875,
-0.000701904296875,
-0.013824462890625,
0.07110595703125,
-0.0511474609375,
0.054962158203125,
0.044403076171875,
-0.036376953125,
0.06683349609375,
0.05084228515625,
-0.0016756057739257812,
0.0275421142578125,
0.030975341796875,
-0.050933837890625,
0.039031982421875,
-0.02191162109375,
-0.0419921875,
0.0132904052734375,
0.0307464599609375,
-0.05621337890625,
-0.00334930419921875,
-0.0406494140625,
0.035797119140625,
0.0049896240234375,
0.0031719207763671875,
0.060699462890625,
0.03338623046875,
-0.061737060546875,
0.0413818359375,
-0.010162353515625,
-0.025390625,
-0.04437255859375,
-0.031890869140625,
-0.0172882080078125,
0.0248870849609375,
-0.01163482666015625,
-0.03875732421875,
0.0263824462890625,
0.022186279296875,
-0.01219940185546875,
0.0013818740844726562,
0.00994873046875,
-0.030792236328125,
-0.044677734375,
-0.00788116455078125,
0.0083160400390625,
0.017059326171875,
0.035552978515625,
-0.0092620849609375,
0.004520416259765625,
0.0017986297607421875,
-0.01561737060546875,
0.03057861328125,
0.0210418701171875,
-0.016754150390625,
0.0259246826171875,
0.040863037109375,
0.043121337890625,
-0.019134521484375,
0.01348114013671875,
0.0657958984375,
-0.027374267578125,
-0.045440673828125,
-0.057098388671875,
0.023345947265625,
-0.0164794921875,
-0.050262451171875,
0.059051513671875,
0.047149658203125,
0.0217742919921875,
-0.03216552734375,
0.053497314453125,
0.01415252685546875,
0.0236358642578125,
-0.06365966796875,
0.03741455078125,
-0.0270843505859375,
0.03350830078125,
-0.0031719207763671875,
-0.04205322265625,
-0.02972412109375,
0.01161956787109375,
0.03143310546875,
-0.038116455078125,
0.06182861328125,
0.06414794921875,
0.00811004638671875,
0.0062713623046875,
-0.035430908203125,
0.024200439453125,
0.0374755859375,
0.04852294921875,
0.031982421875,
-0.046630859375,
0.00626373291015625,
-0.0169830322265625,
0.0121002197265625,
-0.0147857666015625,
-0.043670654296875,
-0.0640869140625,
-0.0224609375,
-0.032806396484375,
-0.058929443359375,
-0.01230621337890625,
0.059356689453125,
0.0230255126953125,
-0.07891845703125,
-0.01322174072265625,
-0.0251312255859375,
-0.0224151611328125,
0.01244354248046875,
-0.01001739501953125,
0.052215576171875,
0.01555633544921875,
-0.0210418701171875,
0.0404052734375,
0.01451873779296875,
0.0726318359375,
-0.01904296875,
-0.004055023193359375,
0.037109375,
0.010345458984375,
0.0438232421875,
0.0188751220703125,
-0.072265625,
0.001705169677734375,
-0.02020263671875,
-0.00901031494140625,
0.007232666015625,
0.057525634765625,
-0.03875732421875,
0.02459716796875,
0.04541015625,
-0.01629638671875,
0.0390625,
0.00926971435546875,
0.049896240234375,
-0.0292205810546875,
0.0281982421875,
0.0006327629089355469,
0.031951904296875,
0.02301025390625,
-0.0235595703125,
0.04205322265625,
0.031341552734375,
-0.004852294921875,
-0.08050537109375,
0.005130767822265625,
-0.10992431640625,
0.015625,
0.08795166015625,
-0.0017099380493164062,
-0.0333251953125,
0.0251312255859375,
-0.059539794921875,
0.024749755859375,
-0.016845703125,
0.09283447265625,
0.0012149810791015625,
-0.00659942626953125,
0.0206756591796875,
-0.038604736328125,
0.040252685546875,
0.0100860595703125,
-0.07708740234375,
-0.029327392578125,
0.041748046875,
0.0167694091796875,
0.00740814208984375,
0.048065185546875,
-0.0411376953125,
0.0231781005859375,
0.024658203125,
-0.01995849609375,
-0.0057373046875,
-0.002925872802734375,
0.0121307373046875,
-0.0035266876220703125,
-0.0150299072265625,
-0.01305389404296875
]
] |
quora | 2023-04-05T13:37:24.000Z | [
"task_categories:text-classification",
"task_ids:semantic-similarity-classification",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:100K<n<1M",
"source_datasets:original",
"language:en",
"license:unknown",
"region:us"
] | null | null | null | 9 | 1,109 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language:
- en
language_creators:
- found
license:
- unknown
multilinguality:
- monolingual
pretty_name: Quora Question Pairs
size_categories:
- 100K<n<1M
source_datasets:
- original
task_categories:
- text-classification
task_ids:
- semantic-similarity-classification
paperswithcode_id: null
dataset_info:
features:
- name: questions
sequence:
- name: id
dtype: int32
- name: text
dtype: string
- name: is_duplicate
dtype: bool
splits:
- name: train
num_bytes: 58155622
num_examples: 404290
download_size: 58176133
dataset_size: 58155622
---
# Dataset Card for "quora"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://www.kaggle.com/c/quora-question-pairs](https://www.kaggle.com/c/quora-question-pairs)
- **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of downloaded dataset files:** 58.17 MB
- **Size of the generated dataset:** 58.15 MB
- **Total amount of disk used:** 116.33 MB
### Dataset Summary
The Quora dataset is composed of question pairs, and the task is to determine if the questions are paraphrases of each other (have the same meaning).
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Dataset Structure
### Data Instances
#### default
- **Size of downloaded dataset files:** 58.17 MB
- **Size of the generated dataset:** 58.15 MB
- **Total amount of disk used:** 116.33 MB
An example of 'train' looks as follows.
```
{
"is_duplicate": true,
"questions": {
"id": [1, 2],
"text": ["Is this a sample question?", "Is this an example question?"]
}
}
```
### Data Fields
The data fields are the same among all splits.
#### default
- `questions`: a dictionary feature containing:
- `id`: a `int32` feature.
- `text`: a `string` feature.
- `is_duplicate`: a `bool` feature.
### Data Splits
| name |train |
|-------|-----:|
|default|404290|
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
Unknown license.
### Citation Information
Unknown.
### Contributions
Thanks to [@thomwolf](https://github.com/thomwolf), [@ghomasHudson](https://github.com/ghomasHudson), [@lewtun](https://github.com/lewtun) for adding this dataset. | 5,691 | [
[
-0.0465087890625,
-0.0491943359375,
0.01132965087890625,
0.0005393028259277344,
-0.017822265625,
0.00186920166015625,
-0.01690673828125,
-0.0205078125,
0.0523681640625,
0.03546142578125,
-0.061981201171875,
-0.062042236328125,
-0.036651611328125,
0.00450897216796875,
-0.027008056640625,
0.09820556640625,
-0.01039886474609375,
-0.01555633544921875,
-0.033905029296875,
-0.0243377685546875,
-0.034423828125,
-0.02593994140625,
-0.024749755859375,
-0.007381439208984375,
0.03607177734375,
0.048828125,
0.048797607421875,
0.06243896484375,
0.040679931640625,
0.0197906494140625,
-0.0028438568115234375,
-0.002407073974609375,
-0.032470703125,
-0.011932373046875,
-0.003833770751953125,
-0.0229339599609375,
-0.040618896484375,
0.00984954833984375,
0.040008544921875,
0.0382080078125,
-0.018646240234375,
0.050384521484375,
0.0005855560302734375,
0.0677490234375,
-0.0260772705078125,
0.0386962890625,
-0.024139404296875,
-0.016754150390625,
-0.0298919677734375,
0.0039520263671875,
0.0193023681640625,
-0.043731689453125,
-0.0057220458984375,
-0.065185546875,
0.013092041015625,
-0.00014317035675048828,
0.06243896484375,
0.0160064697265625,
-0.00017261505126953125,
-0.024658203125,
-0.028472900390625,
0.036163330078125,
-0.047088623046875,
-0.0032711029052734375,
0.05126953125,
0.026641845703125,
0.01409912109375,
-0.047882080078125,
-0.056671142578125,
0.0179901123046875,
-0.0093231201171875,
0.0168304443359375,
-0.00406646728515625,
-0.0308380126953125,
0.046661376953125,
0.050567626953125,
-0.0496826171875,
-0.0245819091796875,
-0.0516357421875,
-0.00910186767578125,
0.08447265625,
0.0271453857421875,
0.012939453125,
-0.032989501953125,
0.006504058837890625,
-0.034210205078125,
-0.021026611328125,
0.00982666015625,
0.04144287109375,
0.033599853515625,
-0.0643310546875,
0.0548095703125,
-0.01873779296875,
0.03045654296875,
-0.00537872314453125,
0.0124359130859375,
0.04425048828125,
-0.0550537109375,
-0.0016145706176757812,
-0.016326904296875,
0.058349609375,
0.042327880859375,
-0.0006093978881835938,
0.008209228515625,
0.01141357421875,
-0.00563812255859375,
-0.00286102294921875,
-0.0482177734375,
-0.03314208984375,
0.05657958984375,
-0.036590576171875,
-0.037994384765625,
0.00809478759765625,
-0.0792236328125,
-0.0283050537109375,
-0.027587890625,
0.024871826171875,
-0.0098114013671875,
-0.03851318359375,
0.0101776123046875,
-0.0243988037109375,
0.027587890625,
0.01496124267578125,
-0.03045654296875,
0.0261993408203125,
0.04144287109375,
0.04632568359375,
0.007511138916015625,
-0.021514892578125,
-0.01885986328125,
-0.003948211669921875,
-0.00531005859375,
0.04901123046875,
-0.0211029052734375,
-0.03521728515625,
-0.00762176513671875,
0.0255889892578125,
0.001216888427734375,
-0.024169921875,
0.0654296875,
-0.00909423828125,
0.0322265625,
-0.07208251953125,
-0.03997802734375,
-0.0062408447265625,
0.0242156982421875,
-0.07025146484375,
0.0965576171875,
0.019775390625,
-0.07293701171875,
0.01557159423828125,
-0.072509765625,
-0.0253143310546875,
0.0128631591796875,
-0.00022745132446289062,
-0.039825439453125,
-0.0298919677734375,
0.0126800537109375,
0.037109375,
-0.041656494140625,
0.0212860107421875,
-0.0245819091796875,
-0.007503509521484375,
0.0226287841796875,
0.01450347900390625,
0.09808349609375,
0.0087738037109375,
-0.0065460205078125,
0.004459381103515625,
-0.06683349609375,
-0.00977325439453125,
0.037811279296875,
-0.0150909423828125,
0.0016689300537109375,
-0.014556884765625,
0.036285400390625,
0.009063720703125,
0.01654052734375,
-0.032012939453125,
0.0222015380859375,
-0.0006279945373535156,
0.03228759765625,
0.056793212890625,
0.00909423828125,
0.0213775634765625,
-0.048858642578125,
0.03704833984375,
0.0097198486328125,
0.0321044921875,
0.00835418701171875,
-0.04364013671875,
-0.048675537109375,
-0.0035800933837890625,
0.036895751953125,
0.050628662109375,
-0.056121826171875,
0.06500244140625,
-0.033935546875,
-0.057464599609375,
-0.04107666015625,
0.0167388916015625,
0.00995635986328125,
0.046844482421875,
0.0296173095703125,
-0.0262603759765625,
-0.0467529296875,
-0.052734375,
0.0161895751953125,
-0.02227783203125,
0.01450347900390625,
0.04486083984375,
0.07269287109375,
-0.0034008026123046875,
0.06048583984375,
-0.059234619140625,
-0.01268768310546875,
-0.020416259765625,
-0.016143798828125,
0.022369384765625,
0.04437255859375,
0.043731689453125,
-0.0667724609375,
-0.0269622802734375,
-0.03045654296875,
-0.050567626953125,
-0.0024547576904296875,
0.005886077880859375,
-0.02642822265625,
-0.0035724639892578125,
0.019683837890625,
-0.048675537109375,
0.03289794921875,
0.02996826171875,
-0.037811279296875,
0.02972412109375,
0.009490966796875,
0.00533294677734375,
-0.10693359375,
0.0297088623046875,
0.0015096664428710938,
0.0113067626953125,
-0.0321044921875,
-0.0141448974609375,
-0.0089111328125,
-0.00818634033203125,
-0.010772705078125,
0.04931640625,
-0.00893402099609375,
0.01336669921875,
0.0221710205078125,
-0.0009531974792480469,
0.00916290283203125,
0.03515625,
-0.0141448974609375,
0.04083251953125,
0.0626220703125,
-0.03912353515625,
0.042144775390625,
0.04620361328125,
-0.0202178955078125,
0.05029296875,
-0.06817626953125,
0.010467529296875,
-0.0161895751953125,
0.0301513671875,
-0.0673828125,
-0.044525146484375,
0.05450439453125,
-0.046539306640625,
0.0168609619140625,
-0.016632080078125,
-0.054107666015625,
-0.050048828125,
-0.0491943359375,
0.0191192626953125,
0.0352783203125,
-0.01273345947265625,
0.0302734375,
0.05523681640625,
0.00495147705078125,
-0.02093505859375,
-0.0654296875,
-0.0034275054931640625,
-0.01947021484375,
-0.050628662109375,
0.0227203369140625,
-0.03607177734375,
-0.006862640380859375,
0.012298583984375,
0.02325439453125,
-0.00543212890625,
-0.002971649169921875,
0.01503753662109375,
0.014984130859375,
0.003215789794921875,
0.007526397705078125,
-0.007061004638671875,
-0.0035419464111328125,
0.00592803955078125,
-0.0038013458251953125,
0.0200958251953125,
-0.003810882568359375,
-0.0167083740234375,
-0.023956298828125,
0.022125244140625,
0.0217742919921875,
-0.01873779296875,
0.046295166015625,
0.059844970703125,
-0.0234222412109375,
0.0133056640625,
-0.03948974609375,
-0.008148193359375,
-0.0292816162109375,
0.00669097900390625,
-0.0023365020751953125,
-0.049224853515625,
0.07598876953125,
0.0208892822265625,
0.018035888671875,
0.0615234375,
0.0390625,
-0.01088714599609375,
0.035552978515625,
0.01500701904296875,
-0.0179901123046875,
0.036834716796875,
-0.052337646484375,
-0.0173492431640625,
-0.05682373046875,
-0.02398681640625,
-0.049163818359375,
-0.037078857421875,
-0.06915283203125,
-0.04168701171875,
0.00925445556640625,
-0.00656890869140625,
-0.01197052001953125,
0.026519775390625,
-0.061370849609375,
0.0272674560546875,
0.03924560546875,
0.01690673828125,
-0.01172637939453125,
-0.0050201416015625,
0.0170440673828125,
0.01385498046875,
-0.045074462890625,
-0.016937255859375,
0.10498046875,
0.0247039794921875,
0.023895263671875,
-0.002384185791015625,
0.057464599609375,
0.026702880859375,
-0.005558013916015625,
-0.0268707275390625,
0.0399169921875,
-0.00433349609375,
-0.05718994140625,
-0.0261993408203125,
-0.0311279296875,
-0.06402587890625,
-0.0229339599609375,
-0.019317626953125,
-0.0259857177734375,
0.04632568359375,
0.00194549560546875,
-0.011505126953125,
0.0263519287109375,
-0.05181884765625,
0.07232666015625,
-0.004489898681640625,
-0.0212860107421875,
0.006744384765625,
-0.07415771484375,
0.01175689697265625,
0.013031005859375,
0.0360107421875,
-0.0230560302734375,
0.00012671947479248047,
0.08526611328125,
-0.050048828125,
0.06622314453125,
-0.037078857421875,
0.0202789306640625,
0.047088623046875,
-0.02581787109375,
0.0261688232421875,
0.0125885009765625,
-0.013763427734375,
0.0322265625,
0.00824737548828125,
-0.04461669921875,
-0.028228759765625,
0.039337158203125,
-0.056121826171875,
0.002735137939453125,
-0.02581787109375,
-0.042022705078125,
0.003536224365234375,
0.01058197021484375,
0.01036834716796875,
0.024200439453125,
-0.01450347900390625,
0.0106658935546875,
0.047882080078125,
-0.0150299072265625,
0.00913238525390625,
0.012786865234375,
-0.01255035400390625,
-0.052734375,
0.07220458984375,
0.028411865234375,
-0.01177215576171875,
0.0087890625,
0.01763916015625,
-0.019439697265625,
-0.0216827392578125,
-0.044525146484375,
0.0151214599609375,
-0.040557861328125,
-0.023712158203125,
-0.03436279296875,
-0.0142059326171875,
-0.043792724609375,
0.0094757080078125,
-0.0098876953125,
-0.054351806640625,
-0.024322509765625,
-0.0252227783203125,
0.07891845703125,
0.037109375,
-0.039794921875,
0.00762176513671875,
-0.03546142578125,
0.0281219482421875,
0.0118560791015625,
0.032867431640625,
-0.010284423828125,
-0.026031494140625,
-0.0292205810546875,
0.01186370849609375,
-0.0103302001953125,
-0.041595458984375,
0.0013761520385742188,
-0.0013666152954101562,
0.0301513671875,
-0.01336669921875,
0.0111541748046875,
0.0390625,
0.002475738525390625,
0.0718994140625,
-0.0126800537109375,
-0.04486083984375,
0.05145263671875,
-0.038665771484375,
0.0205230712890625,
0.07037353515625,
0.02642822265625,
-0.032501220703125,
-0.00218963623046875,
-0.0631103515625,
-0.06756591796875,
0.05712890625,
0.032501220703125,
0.017578125,
0.0038356781005859375,
0.033538818359375,
-0.0015039443969726562,
0.021209716796875,
-0.040771484375,
-0.06170654296875,
-0.022369384765625,
-0.01812744140625,
0.0009379386901855469,
-0.012603759765625,
-0.026519775390625,
-0.056121826171875,
0.052154541015625,
0.0034313201904296875,
0.021240234375,
0.0189056396484375,
0.016265869140625,
-0.00882720947265625,
0.00689697265625,
0.024261474609375,
0.040557861328125,
-0.024139404296875,
-0.0272369384765625,
-0.00144195556640625,
-0.048431396484375,
-0.0211181640625,
0.037841796875,
-0.025177001953125,
-0.004245758056640625,
0.020538330078125,
0.05401611328125,
-0.0026397705078125,
-0.022125244140625,
0.03387451171875,
-0.01418304443359375,
-0.037109375,
-0.031707763671875,
-0.00435638427734375,
0.01409912109375,
0.01187896728515625,
0.0146331787109375,
-0.0110015869140625,
0.0049896240234375,
-0.0302734375,
0.01194000244140625,
0.006404876708984375,
-0.0120391845703125,
-0.026641845703125,
0.035491943359375,
0.01078033447265625,
-0.007724761962890625,
0.044647216796875,
-0.0160675048828125,
-0.0347900390625,
0.057708740234375,
-0.0166015625,
0.0589599609375,
-0.00048422813415527344,
0.0251922607421875,
0.04986572265625,
0.0251922607421875,
0.0048370361328125,
0.05755615234375,
-0.01654052734375,
-0.04791259765625,
-0.0021514892578125,
-0.0350341796875,
-0.0255889892578125,
0.007083892822265625,
-0.0694580078125,
0.0264129638671875,
-0.0379638671875,
-0.0105438232421875,
0.01110076904296875,
0.0288238525390625,
-0.0677490234375,
0.0150909423828125,
-0.01409912109375,
0.07275390625,
-0.0760498046875,
0.037689208984375,
0.048431396484375,
-0.063720703125,
-0.06829833984375,
-0.0171966552734375,
0.0115814208984375,
-0.03961181640625,
0.00554656982421875,
-0.0093536376953125,
0.050567626953125,
-0.003955841064453125,
-0.07720947265625,
-0.047637939453125,
0.0987548828125,
0.0117645263671875,
-0.01318359375,
0.01476287841796875,
0.02398681640625,
0.04150390625,
-0.012420654296875,
0.012054443359375,
0.041656494140625,
0.053924560546875,
0.0238189697265625,
-0.049041748046875,
0.016876220703125,
-0.045318603515625,
-0.0234222412109375,
0.005733489990234375,
-0.06170654296875,
0.047637939453125,
0.0014543533325195312,
-0.0012025833129882812,
-0.01230621337890625,
0.036376953125,
0.0190887451171875,
0.0292510986328125,
0.027801513671875,
0.06402587890625,
0.0697021484375,
-0.017120361328125,
0.09619140625,
-0.0189971923828125,
0.032928466796875,
0.07275390625,
-0.00803375244140625,
0.04302978515625,
0.022552490234375,
-0.0389404296875,
0.03448486328125,
0.050048828125,
-0.0291595458984375,
0.018951416015625,
0.0165863037109375,
0.01181793212890625,
-0.0037899017333984375,
-0.02484130859375,
-0.05224609375,
0.017425537109375,
0.0227203369140625,
-0.0138092041015625,
-0.00281524658203125,
-0.010345458984375,
0.00739288330078125,
-0.00994873046875,
-0.01491546630859375,
0.058013916015625,
-0.00946044921875,
-0.009368896484375,
0.0291290283203125,
-0.0233306884765625,
0.038299560546875,
-0.04241943359375,
-0.0009427070617675781,
-0.020751953125,
-0.0062103271484375,
-0.035858154296875,
-0.0858154296875,
0.043487548828125,
-0.0031833648681640625,
-0.03546142578125,
-0.01540374755859375,
0.04193115234375,
-0.024139404296875,
-0.0640869140625,
0.00884246826171875,
0.0311279296875,
0.02301025390625,
0.0093536376953125,
-0.09527587890625,
0.02862548828125,
0.0019407272338867188,
-0.0283050537109375,
0.017547607421875,
0.0345458984375,
0.0013866424560546875,
0.0295257568359375,
0.05657958984375,
-0.0003116130828857422,
-0.007503509521484375,
0.0186920166015625,
0.0791015625,
-0.047088623046875,
-0.02154541015625,
-0.03265380859375,
0.06488037109375,
-0.0244903564453125,
-0.036102294921875,
0.046661376953125,
0.0697021484375,
0.07806396484375,
0.001041412353515625,
0.06268310546875,
-0.05096435546875,
0.06317138671875,
-0.0179290771484375,
0.0587158203125,
-0.054534912109375,
0.00780487060546875,
-0.03424072265625,
-0.047210693359375,
-0.016693115234375,
0.0270843505859375,
-0.0201873779296875,
0.01442718505859375,
0.0235443115234375,
0.06988525390625,
0.005466461181640625,
0.0143890380859375,
-0.0140228271484375,
0.0202789306640625,
0.01166534423828125,
0.02734375,
0.023162841796875,
-0.07135009765625,
0.0477294921875,
-0.05224609375,
-0.0016965866088867188,
0.0094451904296875,
-0.053466796875,
-0.055694580078125,
-0.0816650390625,
-0.05291748046875,
-0.04974365234375,
-0.01242828369140625,
0.06549072265625,
0.044158935546875,
-0.07257080078125,
-0.0263519287109375,
-0.0005435943603515625,
0.0214691162109375,
0.003940582275390625,
-0.0250244140625,
0.04986572265625,
0.02972412109375,
-0.033966064453125,
-0.016021728515625,
-0.005077362060546875,
-0.0030422210693359375,
-0.00766754150390625,
-0.002323150634765625,
-0.0302734375,
-0.0108184814453125,
0.022613525390625,
0.035400390625,
-0.02386474609375,
0.0016489028930664062,
-0.006195068359375,
0.00009113550186157227,
0.006988525390625,
0.03643798828125,
-0.031341552734375,
0.0161285400390625,
0.04986572265625,
0.0289459228515625,
0.0469970703125,
0.0030040740966796875,
0.00962066650390625,
-0.040985107421875,
0.0018701553344726562,
0.00946044921875,
0.0161895751953125,
0.03326416015625,
-0.0345458984375,
0.068115234375,
0.0260162353515625,
-0.040557861328125,
-0.061370849609375,
-0.0150909423828125,
-0.0968017578125,
0.004314422607421875,
0.0821533203125,
0.00986480712890625,
-0.03143310546875,
-0.01215362548828125,
-0.0190887451171875,
0.01432037353515625,
-0.039581298828125,
0.034942626953125,
0.060211181640625,
0.0091552734375,
0.0018091201782226562,
-0.041168212890625,
0.037689208984375,
-0.0033416748046875,
-0.08447265625,
0.019866943359375,
0.034393310546875,
0.0235443115234375,
0.01316070556640625,
0.055145263671875,
-0.022186279296875,
0.01221466064453125,
-0.0029144287109375,
0.01314544677734375,
-0.016815185546875,
0.006683349609375,
-0.0242156982421875,
-0.0187530517578125,
-0.02301025390625,
-0.01409912109375
]
] |
onestop_english | 2023-01-25T14:42:09.000Z | [
"task_categories:text2text-generation",
"task_categories:text-classification",
"task_ids:multi-class-classification",
"task_ids:text-simplification",
"annotations_creators:found",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:n<1K",
"source_datasets:original",
"language:en",
"license:cc-by-sa-4.0",
"region:us"
] | null | This dataset is a compilation of the OneStopEnglish corpus of texts written at three reading levels into one file.
Text documents are classified into three reading levels - ele, int, adv (Elementary, Intermediate and Advance).
This dataset demonstrates its usefulness for through two applica-tions - automatic readability assessment and automatic text simplification.
The corpus consists of 189 texts, each in three versions/reading levels (567 in total). | @inproceedings{vajjala-lucic-2018-onestopenglish,
title = {OneStopEnglish corpus: A new corpus for automatic readability assessment and text simplification},
author = {Sowmya Vajjala and Ivana Lučić},
booktitle = {Proceedings of the Thirteenth Workshop on Innovative Use of NLP for Building Educational Applications},
year = {2018}
} | 15 | 1,106 | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- found
language:
- en
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
size_categories:
- n<1K
source_datasets:
- original
task_categories:
- text2text-generation
- text-classification
task_ids:
- multi-class-classification
- text-simplification
paperswithcode_id: onestopenglish
pretty_name: OneStopEnglish corpus
dataset_info:
features:
- name: text
dtype: string
- name: label
dtype:
class_label:
names:
'0': ele
'1': int
'2': adv
splits:
- name: train
num_bytes: 2278043
num_examples: 567
download_size: 1228804
dataset_size: 2278043
---
# Dataset Card for OneStopEnglish corpus
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://github.com/nishkalavallabhi/OneStopEnglishCorpus
- **Repository:** https://github.com/purvimisal/OneStopCorpus-Compiled/raw/main/Texts-SeparatedByReadingLevel.zip
- **Paper:** https://www.aclweb.org/anthology/W18-0535.pdf
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
OneStopEnglish is a corpus of texts written at three reading levels, and demonstrates its usefulness for through two applications - automatic readability assessment and automatic text simplification.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
[More Information Needed]
## Dataset Structure
### Data Instances
An instance example:
```
{
"text": "When you see the word Amazon, what’s the first thing you think...",
"label": 0
}
```
Note that each instance contains the full text of the document.
### Data Fields
- `text`: Full document text.
- `label`: Reading level of the document- ele/int/adv (Elementary/Intermediate/Advance).
### Data Splits
The OneStopEnglish dataset has a single _train_ split.
| Split | Number of instances |
|-------|--------------------:|
| train | 567 |
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
Creative Commons Attribution-ShareAlike 4.0 International License
### Citation Information
[More Information Needed]
### Contributions
Thanks to [@purvimisal](https://github.com/purvimisal) for adding this dataset. | 3,908 | [
[
-0.042755126953125,
-0.0380859375,
-0.00550079345703125,
0.0214385986328125,
-0.00643157958984375,
-0.0011749267578125,
-0.031280517578125,
-0.004634857177734375,
0.035308837890625,
0.0640869140625,
-0.048675537109375,
-0.07342529296875,
-0.04498291015625,
0.026763916015625,
-0.0182342529296875,
0.083740234375,
0.0036602020263671875,
-0.018218994140625,
-0.02197265625,
-0.0276031494140625,
-0.020843505859375,
-0.0312347412109375,
-0.0300750732421875,
-0.005992889404296875,
0.040435791015625,
0.07049560546875,
0.048248291015625,
0.06707763671875,
0.037750244140625,
0.0188751220703125,
-0.0002651214599609375,
-0.010772705078125,
-0.0460205078125,
-0.0149993896484375,
-0.0130767822265625,
-0.0231781005859375,
-0.031707763671875,
0.0170745849609375,
0.055572509765625,
0.05438232421875,
-0.0006542205810546875,
0.03521728515625,
0.00873565673828125,
0.052978515625,
-0.0272216796875,
0.026580810546875,
-0.0198822021484375,
0.0013828277587890625,
-0.044921875,
-0.0053863525390625,
-0.029754638671875,
-0.0350341796875,
-0.01015472412109375,
-0.0687255859375,
-0.0021762847900390625,
0.0079803466796875,
0.0689697265625,
0.025726318359375,
-0.0162811279296875,
-0.0251922607421875,
-0.01837158203125,
0.05816650390625,
-0.051544189453125,
0.01425933837890625,
0.0699462890625,
0.010650634765625,
0.0116119384765625,
-0.06842041015625,
-0.035247802734375,
0.0078582763671875,
-0.038330078125,
0.0266876220703125,
-0.0028514862060546875,
-0.018157958984375,
0.0224761962890625,
0.02978515625,
-0.0626220703125,
-0.0082244873046875,
-0.054229736328125,
-0.006832122802734375,
0.05023193359375,
0.00872802734375,
0.0128631591796875,
-0.035797119140625,
-0.0153350830078125,
-0.0037937164306640625,
-0.035858154296875,
-0.00365447998046875,
0.037109375,
0.03875732421875,
-0.035552978515625,
0.036865234375,
-0.01087188720703125,
0.033447265625,
-0.00992584228515625,
-0.0113983154296875,
0.039947509765625,
-0.04400634765625,
0.0100860595703125,
0.006740570068359375,
0.048431396484375,
0.0164947509765625,
0.036590576171875,
-0.00572967529296875,
0.0160369873046875,
-0.01485443115234375,
0.025054931640625,
-0.05474853515625,
-0.0200958251953125,
0.04913330078125,
-0.049652099609375,
-0.0236053466796875,
0.0029926300048828125,
-0.07012939453125,
-0.01326751708984375,
-0.0171051025390625,
0.0218505859375,
-0.033599853515625,
-0.028839111328125,
-0.010498046875,
-0.0150146484375,
0.01389312744140625,
-0.0207366943359375,
-0.04937744140625,
0.033447265625,
0.035369873046875,
0.049041748046875,
-0.022918701171875,
-0.053741455078125,
0.00920867919921875,
0.00496673583984375,
-0.017791748046875,
0.04779052734375,
-0.0181121826171875,
-0.0274505615234375,
0.016021728515625,
0.0180206298828125,
-0.01107025146484375,
-0.020050048828125,
0.0643310546875,
-0.007061004638671875,
0.045166015625,
-0.03131103515625,
-0.046966552734375,
-0.00464630126953125,
0.0310211181640625,
-0.062042236328125,
0.09954833984375,
0.020050048828125,
-0.09100341796875,
0.02874755859375,
-0.067626953125,
-0.039764404296875,
0.0185699462890625,
-0.00702667236328125,
-0.03143310546875,
-0.03692626953125,
0.01091766357421875,
0.03302001953125,
-0.0097198486328125,
-0.003665924072265625,
0.009246826171875,
-0.0111846923828125,
-0.0019054412841796875,
-0.006031036376953125,
0.0977783203125,
0.0187225341796875,
0.0032958984375,
0.0002803802490234375,
-0.07476806640625,
0.00052642822265625,
0.0191802978515625,
-0.021820068359375,
-0.01904296875,
-0.007904052734375,
0.03985595703125,
0.0112762451171875,
0.03094482421875,
-0.04132080078125,
0.0266571044921875,
-0.01155853271484375,
0.0214691162109375,
0.0265655517578125,
0.0167083740234375,
0.0287933349609375,
-0.036590576171875,
0.044586181640625,
-0.00830078125,
0.01104736328125,
-0.020843505859375,
-0.036346435546875,
-0.041748046875,
-0.033660888671875,
0.038970947265625,
0.0582275390625,
-0.04388427734375,
0.051513671875,
-0.038299560546875,
-0.052490234375,
-0.052978515625,
0.0048065185546875,
0.02557373046875,
0.03460693359375,
0.03564453125,
-0.00103759765625,
-0.04827880859375,
-0.0628662109375,
0.0037899017333984375,
-0.00522613525390625,
0.0192108154296875,
0.014739990234375,
0.0543212890625,
0.005462646484375,
0.073974609375,
-0.040374755859375,
-0.02838134765625,
-0.043975830078125,
0.007648468017578125,
0.0268096923828125,
0.051422119140625,
0.036376953125,
-0.0670166015625,
-0.039154052734375,
-0.01641845703125,
-0.0587158203125,
-0.0228118896484375,
-0.01092529296875,
-0.0253753662109375,
0.00716400146484375,
0.02532958984375,
-0.0181732177734375,
0.035552978515625,
0.03192138671875,
-0.038848876953125,
0.0293731689453125,
-0.000972747802734375,
0.0187835693359375,
-0.10235595703125,
0.021240234375,
-0.00959014892578125,
0.0062713623046875,
-0.03955078125,
0.001415252685546875,
0.00539398193359375,
0.010284423828125,
-0.0267791748046875,
0.0557861328125,
-0.0101776123046875,
0.0229644775390625,
0.00032830238342285156,
0.0132293701171875,
0.000141143798828125,
0.027374267578125,
0.0026264190673828125,
0.054168701171875,
0.039825439453125,
-0.039093017578125,
0.003635406494140625,
0.060089111328125,
-0.0223236083984375,
0.041473388671875,
-0.04345703125,
-0.0236968994140625,
-0.022216796875,
0.00818634033203125,
-0.09393310546875,
-0.0295257568359375,
0.0146636962890625,
-0.047515869140625,
0.020172119140625,
-0.00881195068359375,
-0.046356201171875,
-0.0237579345703125,
-0.031646728515625,
0.01361846923828125,
0.020050048828125,
-0.025848388671875,
0.01580810546875,
0.047882080078125,
-0.0282745361328125,
-0.0352783203125,
-0.0792236328125,
0.007015228271484375,
-0.0171051025390625,
-0.048187255859375,
0.039215087890625,
-0.0141754150390625,
-0.006069183349609375,
0.00894927978515625,
0.018096923828125,
-0.0273895263671875,
-0.00002586841583251953,
0.01551055908203125,
0.003940582275390625,
0.0009398460388183594,
0.01332855224609375,
0.002819061279296875,
-0.0162506103515625,
-0.00923919677734375,
-0.0057830810546875,
0.0274810791015625,
0.0213775634765625,
0.0024890899658203125,
-0.0162353515625,
0.037841796875,
0.02886962890625,
-0.0152740478515625,
0.049285888671875,
0.054107666015625,
-0.0404052734375,
-0.0123748779296875,
-0.0276031494140625,
0.00033354759216308594,
-0.0299530029296875,
0.019927978515625,
-0.0261993408203125,
-0.02874755859375,
0.061431884765625,
0.02362060546875,
0.018341064453125,
0.05621337890625,
0.0330810546875,
0.0109710693359375,
0.032012939453125,
0.038360595703125,
-0.01378631591796875,
0.031524658203125,
-0.040985107421875,
-0.005214691162109375,
-0.0399169921875,
-0.01043701171875,
-0.059539794921875,
-0.0142822265625,
-0.0772705078125,
-0.0034236907958984375,
0.002880096435546875,
-0.0013170242309570312,
-0.0211334228515625,
0.0635986328125,
-0.045867919921875,
0.03466796875,
0.05926513671875,
0.001415252685546875,
0.01515960693359375,
-0.00409698486328125,
-0.0211181640625,
-0.0213775634765625,
-0.07037353515625,
-0.048004150390625,
0.08966064453125,
0.0257110595703125,
0.0280303955078125,
0.0030956268310546875,
0.067626953125,
0.0264892578125,
0.01708984375,
-0.03729248046875,
0.038238525390625,
-0.0262603759765625,
-0.07391357421875,
-0.0318603515625,
-0.0091552734375,
-0.07525634765625,
0.0023822784423828125,
-0.0172882080078125,
-0.048492431640625,
0.012725830078125,
-0.00640869140625,
-0.005001068115234375,
0.0024261474609375,
-0.036285400390625,
0.09271240234375,
0.00024437904357910156,
-0.038055419921875,
0.00827789306640625,
-0.05743408203125,
0.0007300376892089844,
0.0012483596801757812,
0.03680419921875,
0.00824737548828125,
-0.0010776519775390625,
0.08416748046875,
-0.025054931640625,
0.0633544921875,
0.00449371337890625,
0.009918212890625,
0.03326416015625,
-0.012603759765625,
0.02294921875,
-0.00301361083984375,
-0.0221405029296875,
0.029327392578125,
0.01369476318359375,
-0.051513671875,
-0.00533294677734375,
0.04388427734375,
-0.045166015625,
0.00015461444854736328,
-0.03582763671875,
-0.0380859375,
-0.0032501220703125,
0.02777099609375,
0.05023193359375,
0.0251922607421875,
-0.0164794921875,
0.024932861328125,
0.026763916015625,
-0.0100860595703125,
0.0269317626953125,
0.0213775634765625,
-0.02288818359375,
-0.047515869140625,
0.061767578125,
0.047454833984375,
-0.0041656494140625,
0.02874755859375,
0.00921630859375,
-0.029754638671875,
-0.0304718017578125,
-0.0264434814453125,
0.00894927978515625,
-0.058685302734375,
0.00267791748046875,
-0.0372314453125,
-0.0213470458984375,
-0.04815673828125,
-0.01507568359375,
-0.016357421875,
-0.055694580078125,
-0.0086212158203125,
-0.03192138671875,
0.03271484375,
0.0513916015625,
-0.0167388916015625,
0.0301361083984375,
-0.04180908203125,
0.018157958984375,
-0.0008516311645507812,
0.02935791015625,
-0.0200958251953125,
-0.0474853515625,
-0.032989501953125,
-0.0212860107421875,
-0.01366424560546875,
-0.062225341796875,
0.0278472900390625,
0.002552032470703125,
0.06146240234375,
0.01154327392578125,
0.01432037353515625,
0.0259246826171875,
-0.0288238525390625,
0.08203125,
-0.0235443115234375,
-0.04022216796875,
0.04449462890625,
-0.03302001953125,
0.0321044921875,
0.07867431640625,
0.05792236328125,
-0.046905517578125,
-0.0186004638671875,
-0.057281494140625,
-0.07745361328125,
0.04986572265625,
0.035552978515625,
0.006053924560546875,
-0.02032470703125,
0.008331298828125,
0.0202178955078125,
0.012420654296875,
-0.060791015625,
-0.06732177734375,
-0.0203704833984375,
-0.038116455078125,
0.01062774658203125,
-0.00798797607421875,
-0.007526397705078125,
-0.0262603759765625,
0.06292724609375,
0.01210784912109375,
0.00826263427734375,
0.014373779296875,
-0.007129669189453125,
0.0102386474609375,
0.02325439453125,
0.02734375,
0.051544189453125,
-0.0175933837890625,
-0.004222869873046875,
0.005889892578125,
-0.055023193359375,
-0.0223541259765625,
0.0161590576171875,
-0.02056884765625,
0.0025463104248046875,
0.0521240234375,
0.04150390625,
0.0200653076171875,
-0.0305938720703125,
0.038970947265625,
0.0112457275390625,
-0.021942138671875,
-0.040557861328125,
-0.0177154541015625,
-0.005275726318359375,
-0.003261566162109375,
0.037841796875,
-0.031585693359375,
-0.0011920928955078125,
-0.02923583984375,
0.0386962890625,
-0.00555419921875,
-0.015655517578125,
-0.0095977783203125,
0.03485107421875,
0.014495849609375,
-0.027099609375,
0.023162841796875,
-0.03436279296875,
-0.03924560546875,
0.054168701171875,
0.037200927734375,
0.056793212890625,
-0.0083160400390625,
0.0204925537109375,
0.06292724609375,
0.05029296875,
0.01004791259765625,
0.043121337890625,
0.0037364959716796875,
-0.046905517578125,
-0.020416259765625,
-0.03564453125,
-0.0318603515625,
0.0143585205078125,
-0.0469970703125,
0.0198822021484375,
-0.022613525390625,
0.002521514892578125,
0.01328277587890625,
0.0149383544921875,
-0.054962158203125,
0.0179595947265625,
-0.002170562744140625,
0.081787109375,
-0.0665283203125,
0.053375244140625,
0.05548095703125,
-0.0716552734375,
-0.040618896484375,
0.0011386871337890625,
0.000006556510925292969,
-0.0369873046875,
0.029266357421875,
0.00662994384765625,
0.047698974609375,
0.014892578125,
-0.042755126953125,
-0.0716552734375,
0.0836181640625,
-0.0172576904296875,
-0.01366424560546875,
0.01186370849609375,
0.0260162353515625,
0.037506103515625,
-0.04107666015625,
0.020904541015625,
0.04498291015625,
0.07171630859375,
-0.01116943359375,
-0.053741455078125,
0.0015106201171875,
-0.028076171875,
-0.0242767333984375,
-0.0010309219360351562,
-0.03875732421875,
0.056915283203125,
0.005985260009765625,
-0.01434326171875,
-0.0022678375244140625,
0.0247039794921875,
0.003139495849609375,
0.0240936279296875,
0.0190277099609375,
0.04986572265625,
0.055877685546875,
-0.01360321044921875,
0.08099365234375,
-0.044586181640625,
0.033447265625,
0.09368896484375,
0.0056915283203125,
0.0687255859375,
0.02587890625,
-0.03875732421875,
0.026275634765625,
0.04412841796875,
0.00044989585876464844,
0.0288848876953125,
0.0173492431640625,
0.0169219970703125,
-0.004009246826171875,
-0.01213836669921875,
-0.0304718017578125,
0.03704833984375,
0.026275634765625,
-0.024871826171875,
-0.0218353271484375,
0.005840301513671875,
0.014190673828125,
0.0238189697265625,
-0.0306396484375,
0.052001953125,
-0.02313232421875,
-0.037445068359375,
0.034576416015625,
-0.0147705078125,
0.047882080078125,
-0.04449462890625,
-0.0026378631591796875,
-0.0196533203125,
-0.005565643310546875,
-0.039306640625,
-0.083251953125,
0.03265380859375,
-0.0038394927978515625,
-0.027862548828125,
-0.01285552978515625,
0.048553466796875,
-0.0504150390625,
-0.054412841796875,
0.01340484619140625,
0.0374755859375,
0.02587890625,
0.01023101806640625,
-0.05218505859375,
0.003734588623046875,
0.00516510009765625,
-0.0345458984375,
0.0039825439453125,
0.025604248046875,
0.003627777099609375,
0.0285186767578125,
0.0321044921875,
0.006801605224609375,
0.01366424560546875,
0.00670623779296875,
0.040496826171875,
-0.058319091796875,
-0.036041259765625,
-0.0235443115234375,
0.059051513671875,
-0.031280517578125,
-0.062469482421875,
0.0595703125,
0.062042236328125,
0.0736083984375,
0.00571441650390625,
0.079345703125,
-0.03216552734375,
0.0684814453125,
-0.0177764892578125,
0.07647705078125,
-0.037506103515625,
-0.01218414306640625,
-0.017181396484375,
-0.05767822265625,
-0.0297698974609375,
0.05023193359375,
-0.0225830078125,
-0.010772705078125,
0.061248779296875,
0.057586669921875,
-0.005523681640625,
-0.0008807182312011719,
0.021820068359375,
0.03857421875,
-0.02093505859375,
0.00296783447265625,
0.008453369140625,
-0.058013916015625,
0.0523681640625,
-0.04193115234375,
-0.01265716552734375,
0.004138946533203125,
-0.067138671875,
-0.05743408203125,
-0.07061767578125,
-0.043212890625,
-0.03863525390625,
0.0012807846069335938,
0.080810546875,
0.03460693359375,
-0.0797119140625,
-0.0219268798828125,
-0.000690460205078125,
0.01611328125,
-0.011322021484375,
-0.02386474609375,
0.0372314453125,
-0.02325439453125,
-0.05999755859375,
0.005603790283203125,
-0.00637054443359375,
-0.02398681640625,
-0.01861572265625,
-0.007904052734375,
-0.050750732421875,
0.006488800048828125,
0.0333251953125,
0.031951904296875,
-0.0297088623046875,
-0.00983428955078125,
-0.00457763671875,
-0.0197906494140625,
0.01177215576171875,
0.024566650390625,
-0.034454345703125,
0.020355224609375,
0.051849365234375,
0.0421142578125,
0.038818359375,
0.0015974044799804688,
-0.00643157958984375,
-0.0654296875,
0.0139312744140625,
0.009857177734375,
0.0287933349609375,
0.02178955078125,
-0.02020263671875,
0.0697021484375,
0.00848388671875,
-0.04766845703125,
-0.04119873046875,
-0.00550079345703125,
-0.0853271484375,
-0.0156402587890625,
0.0948486328125,
-0.02020263671875,
-0.019683837890625,
-0.02569580078125,
-0.02978515625,
0.02325439453125,
-0.0306396484375,
0.03204345703125,
0.08233642578125,
0.020660400390625,
0.0026397705078125,
-0.036865234375,
0.0281524658203125,
0.006561279296875,
-0.07550048828125,
0.0029964447021484375,
0.0182037353515625,
0.0257568359375,
0.033447265625,
0.054656982421875,
-0.01305389404296875,
0.00844573974609375,
0.0184173583984375,
0.0261993408203125,
-0.0089263916015625,
-0.0180816650390625,
-0.0142822265625,
0.0208740234375,
-0.023162841796875,
-0.0230560302734375
]
] |
launch/gov_report | 2022-11-09T01:58:24.000Z | [
"task_categories:summarization",
"annotations_creators:no-annotation",
"language_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:en",
"license:cc-by-4.0",
"region:us"
] | launch | GovReport long document summarization dataset.
There are three configs:
- plain_text: plain text document-to-summary pairs
- plain_text_with_recommendations: plain text doucment-summary pairs, with "What GAO recommends" included in the summary
- structure: data with section structure | @inproceedings{huang-etal-2021-efficient,
title = "Efficient Attentions for Long Document Summarization",
author = "Huang, Luyang and
Cao, Shuyang and
Parulian, Nikolaus and
Ji, Heng and
Wang, Lu",
booktitle = "Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
month = jun,
year = "2021",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2021.naacl-main.112",
doi = "10.18653/v1/2021.naacl-main.112",
pages = "1419--1436",
abstract = "The quadratic computational and memory complexities of large Transformers have limited their scalability for long document summarization. In this paper, we propose Hepos, a novel efficient encoder-decoder attention with head-wise positional strides to effectively pinpoint salient information from the source. We further conduct a systematic study of existing efficient self-attentions. Combined with Hepos, we are able to process ten times more tokens than existing models that use full attentions. For evaluation, we present a new dataset, GovReport, with significantly longer documents and summaries. Results show that our models produce significantly higher ROUGE scores than competitive comparisons, including new state-of-the-art results on PubMed. Human evaluation also shows that our models generate more informative summaries with fewer unfaithful errors.",
} | 3 | 1,103 | 2022-05-22T16:10:07 | ---
annotations_creators:
- no-annotation
language_creators:
- expert-generated
language:
- en
license:
- cc-by-4.0
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- summarization
task_ids: []
pretty_name: GovReport
---
# Dataset Card for GovReport
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Versions](#versions)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://gov-report-data.github.io](https://gov-report-data.github.io)
- **Repository:** [https://github.com/luyang-huang96/LongDocSum](https://github.com/luyang-huang96/LongDocSum)
- **Paper:** [https://aclanthology.org/2021.naacl-main.112/](https://aclanthology.org/2021.naacl-main.112/)
- **Leaderboard:** [Needs More Information]
- **Point of Contact:** [Needs More Information]
### Dataset Summary
Government report dataset consists of reports and associated summaries written by government research agencies including Congressional Research Service and U.S. Government Accountability Office.
Compared with other long document summarization datasets, government report dataset has longer summaries and documents and requires reading in more context to cover salient words to be summarized.
### Versions
- `1.0.1` (default): remove extra whitespace.
- `1.0.0`: the dataset used in the original paper.
To use different versions, set the `revision` argument of the `load_dataset` function.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
English
## Dataset Structure
Three configs are available:
- **plain_text** (default): the text-to-text summarization setting used as in the original paper.
- **plain_text_with_recommendations**: the text-to-text summarization setting, with "What GAO recommends" included in the summary.
- **structure**: data with the section structure.
To use different configs, set the `name` argument of the `load_dataset` function.
### Data Instances
#### plain_text & plain_text_with_recommendations
An example looks as follows.
```
{
"id": "GAO_123456",
"document": "This is a test document.",
"summary": "This is a test summary"
}
```
#### structure
An example looks as follows.
```
{
"id": "GAO_123456",
"document_sections": {
"title": ["test docment section 1 title", "test docment section 1.1 title"],
"paragraphs": ["test document\nsection 1 paragraphs", "test document\nsection 1.1 paragraphs"],
"depth": [1, 2]
},
"summary_sections": {
"title": ["test summary section 1 title", "test summary section 2 title"],
"paragraphs": ["test summary\nsection 1 paragraphs", "test summary\nsection 2 paragraphs"]
}
}
```
### Data Fields
#### plain_text & plain_text_with_recommendations
- `id`: a `string` feature.
- `document`: a `string` feature.
- `summary`: a `string` feature.
#### structure
- `id`: a `string` feature.
- `document_sections`: a dictionary feature containing lists of (each element corresponds to a section):
- `title`: a `string` feature.
- `paragraphs`: a of `string` feature, with `\n` separating different paragraphs.
- `depth`: a `int32` feature.
- `summary_sections`: a dictionary feature containing lists of (each element corresponds to a section):
- `title`: a `string` feature.
- `paragraphs`: a `string` feature, with `\n` separating different paragraphs.
### Data Splits
- train: 17519
- valid: 974
- test: 973
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
Editors of the Congressional Research Service and U.S. Government Accountability Office.
### Personal and Sensitive Information
None.
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
CC BY 4.0
### Citation Information
```
@inproceedings{huang-etal-2021-efficient,
title = "Efficient Attentions for Long Document Summarization",
author = "Huang, Luyang and
Cao, Shuyang and
Parulian, Nikolaus and
Ji, Heng and
Wang, Lu",
booktitle = "Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
month = jun,
year = "2021",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2021.naacl-main.112",
doi = "10.18653/v1/2021.naacl-main.112",
pages = "1419--1436",
abstract = "The quadratic computational and memory complexities of large Transformers have limited their scalability for long document summarization. In this paper, we propose Hepos, a novel efficient encoder-decoder attention with head-wise positional strides to effectively pinpoint salient information from the source. We further conduct a systematic study of existing efficient self-attentions. Combined with Hepos, we are able to process ten times more tokens than existing models that use full attentions. For evaluation, we present a new dataset, GovReport, with significantly longer documents and summaries. Results show that our models produce significantly higher ROUGE scores than competitive comparisons, including new state-of-the-art results on PubMed. Human evaluation also shows that our models generate more informative summaries with fewer unfaithful errors.",
}
```
| 6,694 | [
[
-0.031402587890625,
-0.046173095703125,
0.023712158203125,
0.0242919921875,
-0.0196990966796875,
0.0009293556213378906,
-0.030548095703125,
-0.0190582275390625,
0.03497314453125,
0.039337158203125,
-0.032928466796875,
-0.0653076171875,
-0.047271728515625,
0.0254058837890625,
-0.0254974365234375,
0.10089111328125,
0.01392364501953125,
-0.039703369140625,
-0.0210113525390625,
0.0001678466796875,
-0.0038623809814453125,
-0.02947998046875,
-0.0205535888671875,
-0.021728515625,
0.0404052734375,
0.03924560546875,
0.037689208984375,
0.0714111328125,
0.0662841796875,
0.0201568603515625,
-0.0138092041015625,
0.01806640625,
-0.040771484375,
-0.0204925537109375,
-0.0064849853515625,
-0.0157318115234375,
-0.06982421875,
0.00371551513671875,
0.050201416015625,
0.0428466796875,
-0.01120758056640625,
0.02447509765625,
0.01544952392578125,
0.0701904296875,
-0.03692626953125,
0.045318603515625,
-0.01097869873046875,
-0.0196075439453125,
-0.0306549072265625,
-0.0103302001953125,
-0.0157623291015625,
-0.0230560302734375,
0.01263427734375,
-0.05474853515625,
0.02044677734375,
0.00201416015625,
0.0706787109375,
0.009552001953125,
-0.0244903564453125,
-0.018768310546875,
-0.02178955078125,
0.050689697265625,
-0.07135009765625,
0.0103759765625,
0.051116943359375,
0.0126953125,
-0.0120697021484375,
-0.07635498046875,
-0.031707763671875,
-0.001399993896484375,
-0.0308380126953125,
0.036651611328125,
-0.00612640380859375,
-0.006328582763671875,
0.0300140380859375,
0.0426025390625,
-0.050384521484375,
-0.025909423828125,
-0.053253173828125,
-0.005130767822265625,
0.0660400390625,
0.02154541015625,
-0.00316619873046875,
-0.04876708984375,
-0.01457977294921875,
-0.01491546630859375,
-0.0172119140625,
0.0035266876220703125,
0.0245208740234375,
0.034515380859375,
-0.0478515625,
0.0323486328125,
-0.0249176025390625,
0.04644775390625,
0.01181793212890625,
-0.03045654296875,
0.047027587890625,
-0.052734375,
-0.0170745849609375,
-0.00408172607421875,
0.0784912109375,
0.047088623046875,
0.00749969482421875,
0.0012264251708984375,
0.00042128562927246094,
-0.023712158203125,
0.018707275390625,
-0.063232421875,
-0.0182952880859375,
0.035858154296875,
-0.053192138671875,
-0.0194549560546875,
0.028350830078125,
-0.08062744140625,
-0.01351165771484375,
-0.01485443115234375,
-0.0067596435546875,
-0.0304718017578125,
-0.005420684814453125,
0.005096435546875,
-0.02947998046875,
0.0188140869140625,
0.0055084228515625,
-0.0738525390625,
0.033203125,
0.047332763671875,
0.06414794921875,
-0.021697998046875,
-0.040863037109375,
-0.0269927978515625,
0.02227783203125,
-0.01110076904296875,
0.07257080078125,
-0.021087646484375,
-0.03863525390625,
-0.0093994140625,
0.023406982421875,
0.0087738037109375,
-0.0199127197265625,
0.056304931640625,
0.0024051666259765625,
0.0287322998046875,
-0.038330078125,
-0.0285491943359375,
-0.007266998291015625,
0.0269927978515625,
-0.050445556640625,
0.08062744140625,
0.0281524658203125,
-0.07843017578125,
0.0224456787109375,
-0.0595703125,
-0.04876708984375,
-0.01403045654296875,
-0.00196075439453125,
-0.038299560546875,
-0.02252197265625,
0.0303497314453125,
0.042938232421875,
-0.03973388671875,
0.020843505859375,
-0.0026187896728515625,
-0.0203399658203125,
-0.0076446533203125,
-0.0032749176025390625,
0.06298828125,
0.01247406005859375,
-0.01468658447265625,
0.024993896484375,
-0.07470703125,
-0.014190673828125,
0.01161956787109375,
-0.03839111328125,
-0.0168609619140625,
0.0015096664428710938,
0.007587432861328125,
-0.0066986083984375,
0.0289459228515625,
-0.0214691162109375,
0.0105743408203125,
-0.03179931640625,
0.03594970703125,
0.037689208984375,
0.007762908935546875,
0.04052734375,
-0.036529541015625,
0.0266876220703125,
-0.00612640380859375,
0.024017333984375,
-0.02508544921875,
-0.0259246826171875,
-0.039031982421875,
-0.0302276611328125,
0.02447509765625,
0.047027587890625,
-0.0211181640625,
0.0838623046875,
-0.047332763671875,
-0.043121337890625,
-0.0167236328125,
-0.007282257080078125,
0.02264404296875,
0.05157470703125,
0.039215087890625,
-0.01236724853515625,
-0.03839111328125,
-0.072265625,
0.007457733154296875,
-0.0004897117614746094,
0.00016105175018310547,
0.01459503173828125,
0.063720703125,
-0.007579803466796875,
0.0701904296875,
-0.06597900390625,
-0.036865234375,
-0.037872314453125,
0.004650115966796875,
0.034332275390625,
0.0236358642578125,
0.04461669921875,
-0.046173095703125,
-0.0333251953125,
-0.0172119140625,
-0.05841064453125,
-0.00574493408203125,
-0.010009765625,
-0.0049896240234375,
-0.0010709762573242188,
0.031341552734375,
-0.03314208984375,
0.0295867919921875,
0.025177001953125,
-0.03533935546875,
0.03240966796875,
-0.0302276611328125,
0.015777587890625,
-0.09979248046875,
0.03021240234375,
0.0010404586791992188,
0.00010651350021362305,
-0.03509521484375,
-0.0026950836181640625,
0.019989013671875,
0.00441741943359375,
-0.01428985595703125,
0.043731689453125,
-0.05426025390625,
0.00980377197265625,
-0.005039215087890625,
0.021820068359375,
0.01434326171875,
0.044036865234375,
-0.0184783935546875,
0.052093505859375,
0.036773681640625,
-0.04302978515625,
0.0259246826171875,
0.0386962890625,
-0.022552490234375,
0.04254150390625,
-0.054107666015625,
-0.00921630859375,
-0.0238037109375,
0.03753662109375,
-0.061798095703125,
-0.03729248046875,
0.0257415771484375,
-0.0338134765625,
0.027557373046875,
0.004955291748046875,
-0.030487060546875,
-0.038238525390625,
-0.057373046875,
0.0028018951416015625,
0.0211944580078125,
-0.0113677978515625,
0.038818359375,
0.0374755859375,
-0.01435089111328125,
-0.0489501953125,
-0.0750732421875,
0.01354217529296875,
-0.00862884521484375,
-0.042938232421875,
0.045989990234375,
-0.01517486572265625,
-0.01183319091796875,
0.00542449951171875,
0.00518035888671875,
0.00884246826171875,
-0.001873016357421875,
0.0174407958984375,
0.00928497314453125,
0.0057373046875,
-0.0018224716186523438,
-0.003551483154296875,
-0.01312255859375,
0.0011081695556640625,
0.012237548828125,
0.0309906005859375,
-0.007694244384765625,
0.0007152557373046875,
-0.0167999267578125,
0.05133056640625,
0.036712646484375,
-0.04010009765625,
0.039581298828125,
0.04302978515625,
-0.01194000244140625,
0.002376556396484375,
-0.0258636474609375,
0.002227783203125,
-0.0313720703125,
0.03839111328125,
-0.0131072998046875,
-0.0269927978515625,
0.0587158203125,
0.0224761962890625,
0.0215606689453125,
0.05975341796875,
0.02435302734375,
0.00481414794921875,
0.033294677734375,
0.038787841796875,
-0.03448486328125,
0.0341796875,
-0.05169677734375,
-0.004520416259765625,
-0.07470703125,
-0.0213470458984375,
-0.052490234375,
-0.0108489990234375,
-0.044036865234375,
-0.0248260498046875,
0.01220703125,
-0.007171630859375,
-0.007572174072265625,
0.0188446044921875,
-0.05487060546875,
0.031707763671875,
0.043609619140625,
0.005870819091796875,
0.00824737548828125,
-0.0030918121337890625,
0.0224761962890625,
0.0122528076171875,
-0.037139892578125,
-0.0255584716796875,
0.08740234375,
0.0229949951171875,
0.05712890625,
0.002223968505859375,
0.06683349609375,
0.0213623046875,
-0.0034084320068359375,
-0.053009033203125,
0.04742431640625,
-0.0341796875,
-0.027923583984375,
-0.041107177734375,
-0.026824951171875,
-0.07757568359375,
-0.0029544830322265625,
-0.016510009765625,
-0.039703369140625,
0.023651123046875,
-0.0081024169921875,
-0.029541015625,
0.00553131103515625,
-0.0428466796875,
0.0517578125,
-0.00815582275390625,
-0.014404296875,
-0.01065826416015625,
-0.062347412109375,
0.00904083251953125,
0.0184783935546875,
0.0202484130859375,
-0.0004687309265136719,
-0.0059967041015625,
0.07830810546875,
-0.03369140625,
0.05255126953125,
-0.0035572052001953125,
0.001262664794921875,
0.0225372314453125,
-0.04150390625,
0.047149658203125,
0.0014600753784179688,
-0.01351165771484375,
0.02239990234375,
-0.014007568359375,
-0.0252685546875,
-0.03741455078125,
0.048370361328125,
-0.046234130859375,
-0.03582763671875,
-0.050384521484375,
-0.045379638671875,
0.01300048828125,
0.039825439453125,
0.025665283203125,
0.04425048828125,
-0.01468658447265625,
0.0263214111328125,
0.035919189453125,
-0.0104217529296875,
0.03289794921875,
0.023193359375,
-0.002716064453125,
-0.06512451171875,
0.060455322265625,
0.03790283203125,
0.001392364501953125,
0.034027099609375,
0.0203399658203125,
-0.0149993896484375,
-0.042022705078125,
-0.014068603515625,
0.032318115234375,
-0.042633056640625,
-0.0102996826171875,
-0.05523681640625,
-0.0281982421875,
-0.059234619140625,
-0.0104827880859375,
-0.0007605552673339844,
-0.03009033203125,
-0.03045654296875,
-0.02264404296875,
0.03570556640625,
0.041259765625,
-0.018096923828125,
0.02069091796875,
-0.04656982421875,
0.051116943359375,
0.017791748046875,
0.0300750732421875,
-0.00421142578125,
-0.037322998046875,
-0.03240966796875,
-0.004940032958984375,
-0.0158538818359375,
-0.061614990234375,
0.02862548828125,
0.01465606689453125,
0.050537109375,
0.02215576171875,
0.0189971923828125,
0.054534912109375,
-0.02203369140625,
0.0784912109375,
-0.0009284019470214844,
-0.044708251953125,
0.0439453125,
-0.047821044921875,
0.05035400390625,
0.0599365234375,
0.01149749755859375,
-0.033905029296875,
-0.0308380126953125,
-0.04638671875,
-0.08660888671875,
0.0635986328125,
0.01270294189453125,
-0.00266265869140625,
-0.0243377685546875,
0.0201263427734375,
-0.006649017333984375,
0.00896453857421875,
-0.0299835205078125,
-0.05157470703125,
-0.0302276611328125,
-0.026611328125,
-0.009613037109375,
-0.034454345703125,
-0.0205078125,
-0.02099609375,
0.05523681640625,
-0.00807952880859375,
0.029876708984375,
0.039825439453125,
-0.0015115737915039062,
0.01215362548828125,
0.031646728515625,
0.05596923828125,
0.06085205078125,
-0.04522705078125,
0.0022430419921875,
0.00537109375,
-0.0599365234375,
-0.0203857421875,
0.026458740234375,
-0.017242431640625,
-0.0025463104248046875,
0.04937744140625,
0.047332763671875,
0.0129241943359375,
-0.0216064453125,
0.042877197265625,
-0.00614166259765625,
-0.033721923828125,
-0.0257415771484375,
-0.00904083251953125,
0.00789642333984375,
0.005214691162109375,
0.040985107421875,
-0.01413726806640625,
0.0233612060546875,
-0.053009033203125,
0.01090240478515625,
0.00860595703125,
-0.01080322265625,
-0.007843017578125,
0.036041259765625,
0.0247650146484375,
-0.0211944580078125,
0.0367431640625,
-0.013458251953125,
-0.0206756591796875,
0.053863525390625,
0.03314208984375,
0.06854248046875,
0.003726959228515625,
0.016754150390625,
0.050811767578125,
0.0311431884765625,
-0.0189056396484375,
0.03192138671875,
-0.01418304443359375,
-0.02392578125,
-0.00983428955078125,
-0.032928466796875,
-0.01019287109375,
0.0111541748046875,
-0.0550537109375,
0.0145721435546875,
-0.035064697265625,
-0.0220184326171875,
0.004978179931640625,
0.019561767578125,
-0.029052734375,
0.0125885009765625,
-0.009033203125,
0.08624267578125,
-0.043121337890625,
0.037384033203125,
0.0301361083984375,
-0.0462646484375,
-0.05010986328125,
0.006793975830078125,
-0.00661468505859375,
-0.02471923828125,
0.01806640625,
0.0099639892578125,
0.0172119140625,
-0.0212249755859375,
-0.0341796875,
-0.07061767578125,
0.10089111328125,
0.01485443115234375,
-0.039154052734375,
-0.020782470703125,
0.00489044189453125,
0.036468505859375,
-0.017974853515625,
0.0218963623046875,
0.056121826171875,
0.0692138671875,
-0.0170745849609375,
-0.06396484375,
0.01416015625,
-0.0311431884765625,
-0.0267181396484375,
0.0177459716796875,
-0.08038330078125,
0.07183837890625,
-0.016571044921875,
-0.01320648193359375,
-0.01242828369140625,
0.057891845703125,
0.007373809814453125,
0.0278472900390625,
0.01274871826171875,
0.043914794921875,
0.0657958984375,
-0.01374053955078125,
0.08709716796875,
-0.02764892578125,
0.026458740234375,
0.10302734375,
0.0005865097045898438,
0.0458984375,
0.0245208740234375,
-0.0224456787109375,
0.03509521484375,
0.03192138671875,
-0.03131103515625,
0.04949951171875,
-0.0008544921875,
0.0225830078125,
0.01052093505859375,
0.003261566162109375,
-0.044586181640625,
0.031341552734375,
0.0193328857421875,
-0.0386962890625,
-0.0210113525390625,
-0.0198211669921875,
0.01470947265625,
0.003597259521484375,
-0.0186309814453125,
0.068115234375,
0.004573822021484375,
-0.043365478515625,
0.035369873046875,
-0.003662109375,
0.057647705078125,
-0.0635986328125,
0.0014495849609375,
-0.0246429443359375,
0.0015096664428710938,
-0.04510498046875,
-0.079833984375,
0.02703857421875,
0.00003713369369506836,
-0.046112060546875,
-0.004741668701171875,
0.03582763671875,
-0.030181884765625,
-0.048797607421875,
0.0164947509765625,
0.0167999267578125,
0.0086822509765625,
0.0103912353515625,
-0.0513916015625,
-0.00946807861328125,
0.0028018951416015625,
-0.0391845703125,
0.022735595703125,
0.033294677734375,
-0.003673553466796875,
0.037994384765625,
0.046234130859375,
0.0267181396484375,
-0.0207672119140625,
0.01727294921875,
0.063232421875,
-0.07318115234375,
-0.0653076171875,
-0.0537109375,
0.046173095703125,
-0.042266845703125,
-0.037994384765625,
0.0540771484375,
0.0662841796875,
0.03662109375,
-0.00023353099822998047,
0.0714111328125,
-0.02801513671875,
0.04656982421875,
-0.02935791015625,
0.07049560546875,
-0.03448486328125,
0.0041046142578125,
-0.0241851806640625,
-0.054595947265625,
-0.0293731689453125,
0.037384033203125,
-0.0184478759765625,
-0.005146026611328125,
0.056640625,
0.057891845703125,
-0.002605438232421875,
-0.0215606689453125,
0.005138397216796875,
0.0249786376953125,
0.032928466796875,
0.0240631103515625,
0.0122528076171875,
-0.041259765625,
0.05169677734375,
-0.03033447265625,
-0.0170440673828125,
-0.0129241943359375,
-0.06781005859375,
-0.07427978515625,
-0.058319091796875,
-0.0186767578125,
-0.0213470458984375,
0.01092529296875,
0.062103271484375,
0.03955078125,
-0.051971435546875,
-0.020721435546875,
0.0157623291015625,
0.01081085205078125,
-0.0181427001953125,
-0.0222015380859375,
0.06658935546875,
-0.0008611679077148438,
-0.04107666015625,
0.0175018310546875,
0.0211029052734375,
-0.008453369140625,
-0.0017194747924804688,
-0.004596710205078125,
-0.0229034423828125,
0.0008339881896972656,
0.045806884765625,
0.026336669921875,
-0.04156494140625,
-0.00936126708984375,
-0.001338958740234375,
-0.0179595947265625,
0.014984130859375,
0.0386962890625,
-0.041717529296875,
0.0132598876953125,
0.06097412109375,
0.0157623291015625,
0.03778076171875,
0.01338958740234375,
0.0236358642578125,
-0.04229736328125,
0.0086517333984375,
-0.00983428955078125,
0.0308837890625,
0.026336669921875,
-0.041839599609375,
0.057373046875,
-0.005474090576171875,
-0.049896240234375,
-0.0501708984375,
-0.016387939453125,
-0.10699462890625,
-0.01470947265625,
0.089599609375,
-0.00783538818359375,
-0.04083251953125,
-0.0013265609741210938,
-0.0280303955078125,
0.02392578125,
-0.07037353515625,
0.05877685546875,
0.047332763671875,
-0.0019054412841796875,
-0.0006880760192871094,
-0.019561767578125,
0.0360107421875,
-0.01873779296875,
-0.089111328125,
0.032318115234375,
0.036865234375,
0.0217132568359375,
0.0264129638671875,
0.0645751953125,
-0.0150909423828125,
0.0196075439453125,
-0.00229644775390625,
0.004520416259765625,
-0.032440185546875,
-0.0224456787109375,
-0.0186767578125,
0.01319122314453125,
-0.0308990478515625,
-0.0025196075439453125
]
] |
DFKI-SLT/brat | 2023-05-10T15:38:03.000Z | [
"task_categories:token-classification",
"task_ids:parsing",
"annotations_creators:expert-generated",
"language_creators:found",
"region:us"
] | DFKI-SLT | null | null | 2 | 1,102 | 2022-05-10T06:13:33 | ---
annotations_creators:
- expert-generated
language_creators:
- found
license: []
task_categories:
- token-classification
task_ids:
- parsing
---
# Information Card for Brat
## Table of Contents
- [Description](#description)
- [Summary](#summary)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-instances)
- [Usage](#usage)
- [Additional Information](#additional-information)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
## Description
- **Homepage:** https://brat.nlplab.org
- **Paper:** https://aclanthology.org/E12-2021/
- **Leaderboard:** [Needs More Information]
- **Point of Contact:** [Needs More Information]
### Summary
Brat is an intuitive web-based tool for text annotation supported by Natural Language Processing (NLP) technology. BRAT has been developed for rich structured annota- tion for a variety of NLP tasks and aims to support manual curation efforts and increase annotator productivity using NLP techniques. brat is designed in particular for structured annotation, where the notes are not free form text but have a fixed form that can be automatically processed and interpreted by a computer.
## Dataset Structure
Dataset annotated with brat format is processed using this script. Annotations created in brat are stored on disk in a standoff format: annotations are stored separately from the annotated document text, which is never modified by the tool. For each text document in the system, there is a corresponding annotation file. The two are associatied by the file naming convention that their base name (file name without suffix) is the same: for example, the file DOC-1000.ann contains annotations for the file DOC-1000.txt. More information can be found [here](https://brat.nlplab.org/standoff.html).
### Data Instances
[Needs More Information]
### Data Fields
```
-context: html content of data file as string
-file_name: a string name of file
-spans: a sequence containing id, type, location and text of a span
-relations: a sequence containing id, type and arguments of a relation
-equivalence_relations:
-events:
-attributions:
-normalizations:
-notes:
```
### Usage
brat script can be used by calling `load_dataset()` method and passing `kwargs` (arguments to the [BuilderConfig](https://huggingface.co/docs/datasets/v2.2.1/en/package_reference/builder_classes#datasets.BuilderConfig)) which should include at least `url` of the dataset prepared using brat. We provide an example of [SciArg](https://aclanthology.org/W18-5206.pdf) dataset below,
```python
from datasets import load_dataset
kwargs = {
"description" :
"""This dataset is an extension of the Dr. Inventor corpus (Fisas et al., 2015, 2016) with an annotation layer containing
fine-grained argumentative components and relations. It is the first argument-annotated corpus of scientific
publications (in English), which allows for joint analyses of argumentation and other rhetorical dimensions of
scientific writing.""",
"citation" :
"""@inproceedings{lauscher2018b,
title = {An argument-annotated corpus of scientific publications},
booktitle = {Proceedings of the 5th Workshop on Mining Argumentation},
publisher = {Association for Computational Linguistics},
author = {Lauscher, Anne and Glava\v{s}, Goran and Ponzetto, Simone Paolo},
address = {Brussels, Belgium},
year = {2018},
pages = {40–46}
}""",
"homepage": "https://github.com/anlausch/ArguminSci",
"url": "http://data.dws.informatik.uni-mannheim.de/sci-arg/compiled_corpus.zip",
"file_name_blacklist": ['A28'],
}
dataset = load_dataset('dfki-nlp/brat', **kwargs)
```
## Additional Information
### Licensing Information
[Needs More Information]
### Citation Information
```
@inproceedings{stenetorp-etal-2012-brat,
title = "brat: a Web-based Tool for {NLP}-Assisted Text Annotation",
author = "Stenetorp, Pontus and
Pyysalo, Sampo and
Topi{\'c}, Goran and
Ohta, Tomoko and
Ananiadou, Sophia and
Tsujii, Jun{'}ichi",
booktitle = "Proceedings of the Demonstrations at the 13th Conference of the {E}uropean Chapter of the Association for Computational Linguistics",
month = apr,
year = "2012",
address = "Avignon, France",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/E12-2021",
pages = "102--107",
}
``` | 4,453 | [
[
-0.036865234375,
-0.04705810546875,
0.006641387939453125,
0.031768798828125,
-0.01067352294921875,
-0.005840301513671875,
-0.029541015625,
-0.040252685546875,
0.02459716796875,
0.009918212890625,
-0.038848876953125,
-0.058685302734375,
-0.03253173828125,
0.0216217041015625,
-0.0160369873046875,
0.09552001953125,
0.00753021240234375,
-0.007450103759765625,
-0.025970458984375,
-0.005191802978515625,
0.01522064208984375,
-0.037109375,
-0.047393798828125,
-0.0261383056640625,
0.044189453125,
-0.0010814666748046875,
0.035980224609375,
0.0650634765625,
0.0210113525390625,
0.025482177734375,
-0.0162353515625,
0.00351715087890625,
-0.01285552978515625,
0.0057373046875,
-0.0021514892578125,
-0.005558013916015625,
-0.046875,
0.015869140625,
0.05560302734375,
0.045501708984375,
0.0249786376953125,
0.01378631591796875,
-0.007598876953125,
0.0284576416015625,
-0.033447265625,
0.03460693359375,
-0.0260467529296875,
-0.005100250244140625,
-0.02813720703125,
-0.01541900634765625,
-0.040679931640625,
-0.025634765625,
0.00701904296875,
-0.05987548828125,
0.0166015625,
0.0083770751953125,
0.10198974609375,
0.0204315185546875,
0.0029735565185546875,
-0.00896453857421875,
-0.033111572265625,
0.0533447265625,
-0.06683349609375,
0.0030956268310546875,
0.037139892578125,
-0.01197052001953125,
-0.034332275390625,
-0.07122802734375,
-0.04571533203125,
-0.0116729736328125,
-0.041748046875,
0.0152130126953125,
-0.0172576904296875,
0.0025691986083984375,
0.029998779296875,
0.0190277099609375,
-0.044464111328125,
0.002201080322265625,
-0.036285400390625,
-0.02191162109375,
0.06805419921875,
-0.01430511474609375,
0.0163726806640625,
-0.043121337890625,
-0.03729248046875,
-0.029541015625,
-0.01293182373046875,
0.01279449462890625,
0.038665771484375,
0.04156494140625,
-0.035980224609375,
0.0281219482421875,
-0.006679534912109375,
0.04486083984375,
0.0109710693359375,
-0.0039520263671875,
0.041961669921875,
-0.01532745361328125,
-0.01557159423828125,
0.006134033203125,
0.0789794921875,
0.0251007080078125,
0.018768310546875,
-0.003681182861328125,
0.01983642578125,
-0.01580810546875,
0.004123687744140625,
-0.055389404296875,
-0.03155517578125,
0.0249176025390625,
-0.0283355712890625,
-0.028045654296875,
0.0127410888671875,
-0.0838623046875,
-0.0250701904296875,
-0.01007843017578125,
-0.0010290145874023438,
-0.03289794921875,
-0.0200653076171875,
-0.01146697998046875,
-0.0204010009765625,
0.0274658203125,
0.002620697021484375,
-0.06756591796875,
0.0293731689453125,
0.03802490234375,
0.050872802734375,
0.0020751953125,
-0.037628173828125,
-0.03216552734375,
0.0005021095275878906,
-0.001445770263671875,
0.0799560546875,
-0.039306640625,
-0.0188446044921875,
-0.00632476806640625,
0.01495361328125,
-0.018341064453125,
-0.02191162109375,
0.06951904296875,
-0.0212860107421875,
0.02642822265625,
-0.017730712890625,
-0.054046630859375,
-0.019775390625,
0.006282806396484375,
-0.041351318359375,
0.1126708984375,
0.01473236083984375,
-0.074951171875,
0.0308380126953125,
-0.057159423828125,
-0.0308685302734375,
0.0174560546875,
-0.015045166015625,
-0.033477783203125,
-0.0169677734375,
0.0166778564453125,
0.03668212890625,
-0.00969696044921875,
0.0213623046875,
-0.021331787109375,
-0.007511138916015625,
0.01140594482421875,
-0.0033969879150390625,
0.07952880859375,
-0.003498077392578125,
-0.0185546875,
0.023345947265625,
-0.07208251953125,
0.00457000732421875,
0.0220489501953125,
-0.03131103515625,
-0.0287017822265625,
-0.001377105712890625,
0.0308990478515625,
0.0244140625,
0.017120361328125,
-0.048309326171875,
0.0294342041015625,
-0.043914794921875,
0.014923095703125,
0.04913330078125,
0.002460479736328125,
0.0222320556640625,
-0.018585205078125,
0.0223846435546875,
-0.0158233642578125,
0.01256561279296875,
-0.006893157958984375,
-0.044586181640625,
-0.053619384765625,
-0.0296478271484375,
0.047454833984375,
0.03466796875,
-0.0254364013671875,
0.06036376953125,
-0.02117919921875,
-0.039947509765625,
-0.039154052734375,
-0.01053619384765625,
0.0290069580078125,
0.05340576171875,
0.047088623046875,
0.0036106109619140625,
-0.055908203125,
-0.068603515625,
0.0041351318359375,
-0.0296630859375,
0.01189422607421875,
0.02398681640625,
0.053497314453125,
-0.0004749298095703125,
0.0706787109375,
-0.0423583984375,
-0.01483154296875,
-0.01540374755859375,
0.0274658203125,
0.00016558170318603516,
0.045440673828125,
0.061004638671875,
-0.057098388671875,
-0.03857421875,
-0.00858306884765625,
-0.06256103515625,
-0.035980224609375,
-0.0185699462890625,
-0.02044677734375,
0.02667236328125,
0.0309600830078125,
-0.045440673828125,
0.03497314453125,
0.0250701904296875,
-0.047515869140625,
0.04937744140625,
0.004444122314453125,
-0.002315521240234375,
-0.07611083984375,
0.02294921875,
0.00940704345703125,
-0.0007581710815429688,
-0.039520263671875,
-0.0116424560546875,
-0.0184326171875,
0.0215911865234375,
-0.0272064208984375,
0.07122802734375,
-0.01904296875,
0.00441741943359375,
-0.00637054443359375,
0.026611328125,
0.01617431640625,
0.043365478515625,
-0.0054168701171875,
0.044586181640625,
0.0389404296875,
-0.025909423828125,
0.0249481201171875,
0.03875732421875,
0.00958251953125,
0.032867431640625,
-0.044921875,
-0.01194000244140625,
-0.0030040740966796875,
0.0338134765625,
-0.047393798828125,
-0.0309295654296875,
0.035736083984375,
-0.03973388671875,
0.03240966796875,
-0.0164947509765625,
-0.041015625,
-0.015716552734375,
-0.037445068359375,
-0.0030155181884765625,
0.0181884765625,
-0.030670166015625,
0.045013427734375,
0.0159454345703125,
-0.0241851806640625,
-0.057403564453125,
-0.038665771484375,
0.002384185791015625,
-0.01031494140625,
-0.04217529296875,
0.04315185546875,
-0.0066680908203125,
-0.02398681640625,
0.023468017578125,
0.007678985595703125,
0.0033740997314453125,
-0.005603790283203125,
0.0296783447265625,
0.0304718017578125,
-0.01114654541015625,
0.02618408203125,
0.018280029296875,
-0.0239715576171875,
0.0021381378173828125,
-0.010589599609375,
0.035430908203125,
-0.0178375244140625,
-0.0074310302734375,
-0.0162811279296875,
0.039886474609375,
0.0288238525390625,
-0.004184722900390625,
0.057098388671875,
0.07403564453125,
-0.03155517578125,
-0.0075531005859375,
-0.035125732421875,
-0.01351165771484375,
-0.02947998046875,
0.010589599609375,
-0.00940704345703125,
-0.03851318359375,
0.052001953125,
-0.01354217529296875,
0.015625,
0.07525634765625,
0.03216552734375,
-0.00820159912109375,
0.034332275390625,
0.0343017578125,
0.0007739067077636719,
0.0238494873046875,
-0.034423828125,
-0.0026149749755859375,
-0.07373046875,
-0.031402587890625,
-0.058746337890625,
-0.0261077880859375,
-0.046142578125,
-0.017578125,
-0.01031494140625,
0.024871826171875,
-0.0238800048828125,
0.021270751953125,
-0.0576171875,
0.0179290771484375,
0.049652099609375,
-0.0170135498046875,
0.00982666015625,
-0.0019121170043945312,
-0.0252838134765625,
-0.01309967041015625,
-0.04486083984375,
-0.0599365234375,
0.068603515625,
0.0165863037109375,
0.020355224609375,
-0.01369476318359375,
0.05364990234375,
0.01206207275390625,
0.024200439453125,
-0.048797607421875,
0.051544189453125,
-0.01491546630859375,
-0.05126953125,
-0.016082763671875,
-0.0157470703125,
-0.076171875,
0.006557464599609375,
-0.0301055908203125,
-0.07977294921875,
0.035552978515625,
-0.00968170166015625,
-0.0156402587890625,
0.026641845703125,
-0.054046630859375,
0.0655517578125,
-0.0093994140625,
-0.0311279296875,
0.0212860107421875,
-0.056488037109375,
-0.002338409423828125,
0.0105438232421875,
0.0011167526245117188,
-0.022369384765625,
0.0020046234130859375,
0.08135986328125,
-0.0302886962890625,
0.06329345703125,
-0.0237884521484375,
0.025543212890625,
0.0163421630859375,
-0.03466796875,
0.0282745361328125,
0.00489044189453125,
-0.0284881591796875,
0.0148162841796875,
-0.0022869110107421875,
-0.0307159423828125,
-0.04193115234375,
0.0633544921875,
-0.050872802734375,
-0.0262908935546875,
-0.054718017578125,
-0.041534423828125,
0.00560760498046875,
0.018341064453125,
0.02252197265625,
0.0280303955078125,
-0.0052032470703125,
0.016204833984375,
0.028045654296875,
-0.026519775390625,
0.053009033203125,
0.023284912109375,
-0.01380157470703125,
-0.026641845703125,
0.0416259765625,
0.01313018798828125,
-0.013275146484375,
0.008575439453125,
0.022979736328125,
-0.0293731689453125,
-0.040252685546875,
-0.04931640625,
0.0239410400390625,
-0.0555419921875,
-0.01983642578125,
-0.06573486328125,
-0.0347900390625,
-0.0262298583984375,
-0.0217437744140625,
-0.01435089111328125,
-0.042999267578125,
-0.031707763671875,
-0.0199432373046875,
0.069580078125,
0.03399658203125,
-0.01226806640625,
0.00432586669921875,
-0.02935791015625,
0.0029449462890625,
0.0009365081787109375,
0.02947998046875,
0.00034427642822265625,
-0.0284881591796875,
-0.0178985595703125,
-0.01824951171875,
-0.0234375,
-0.057373046875,
0.031158447265625,
0.0201263427734375,
0.045013427734375,
0.003997802734375,
0.03228759765625,
0.045196533203125,
-0.0162200927734375,
0.0750732421875,
-0.01059722900390625,
-0.04669189453125,
0.048583984375,
-0.0369873046875,
0.012969970703125,
0.050018310546875,
0.026611328125,
-0.005817413330078125,
-0.0283660888671875,
-0.07281494140625,
-0.09136962890625,
0.054412841796875,
0.025604248046875,
0.00002181529998779297,
-0.00021159648895263672,
0.03155517578125,
0.0019464492797851562,
0.0050201416015625,
-0.069091796875,
-0.04864501953125,
-0.023040771484375,
-0.0222320556640625,
0.02679443359375,
-0.007293701171875,
-0.0283966064453125,
-0.043060302734375,
0.07672119140625,
-0.0026264190673828125,
0.028594970703125,
0.0299072265625,
0.01593017578125,
0.00147247314453125,
0.037017822265625,
0.05401611328125,
0.01558685302734375,
-0.0270233154296875,
-0.00013971328735351562,
0.00878143310546875,
-0.0531005859375,
-0.0028553009033203125,
0.05859375,
-0.0261688232421875,
0.012847900390625,
0.04278564453125,
0.060089111328125,
0.0216827392578125,
-0.0235595703125,
0.029266357421875,
0.005695343017578125,
-0.02569580078125,
-0.036041259765625,
-0.005168914794921875,
0.0016880035400390625,
0.0225830078125,
0.04571533203125,
0.00617218017578125,
0.0013551712036132812,
-0.00994110107421875,
0.016387939453125,
0.00946044921875,
-0.01134490966796875,
-0.022857666015625,
0.0357666015625,
0.0041351318359375,
-0.01357269287109375,
0.02703857421875,
-0.045166015625,
-0.0265655517578125,
0.03875732421875,
0.0408935546875,
0.07086181640625,
0.007144927978515625,
0.024200439453125,
0.04449462890625,
0.0181121826171875,
0.0157012939453125,
0.020721435546875,
0.01345062255859375,
-0.034027099609375,
-0.034423828125,
-0.0718994140625,
-0.009735107421875,
0.0318603515625,
-0.047393798828125,
0.017669677734375,
-0.0406494140625,
-0.0260467529296875,
0.033416748046875,
0.0179595947265625,
-0.034759521484375,
0.00611114501953125,
0.0004978179931640625,
0.0634765625,
-0.0640869140625,
0.047576904296875,
0.06634521484375,
-0.054595947265625,
-0.0667724609375,
0.005584716796875,
0.00276947021484375,
-0.00850677490234375,
0.05743408203125,
-0.00495147705078125,
-0.00109100341796875,
-0.00258636474609375,
-0.0421142578125,
-0.0594482421875,
0.07598876953125,
0.0274658203125,
-0.008087158203125,
0.006465911865234375,
-0.0232696533203125,
0.054840087890625,
-0.032684326171875,
0.015777587890625,
0.0307769775390625,
0.0718994140625,
0.004512786865234375,
-0.055908203125,
0.0207672119140625,
-0.059173583984375,
-0.026092529296875,
0.0007185935974121094,
-0.03997802734375,
0.060394287109375,
0.003620147705078125,
-0.01392364501953125,
-0.00846099853515625,
0.045135498046875,
0.01751708984375,
0.038604736328125,
0.00797271728515625,
0.047454833984375,
0.061004638671875,
-0.037506103515625,
0.08465576171875,
-0.0125579833984375,
0.0311279296875,
0.0972900390625,
-0.008270263671875,
0.07733154296875,
0.035614013671875,
-0.01995849609375,
0.07562255859375,
0.0443115234375,
-0.034088134765625,
0.0181732177734375,
0.01165771484375,
-0.00949859619140625,
0.00824737548828125,
-0.02886962890625,
-0.0343017578125,
0.03466796875,
0.0264739990234375,
-0.039031982421875,
-0.01502227783203125,
-0.010101318359375,
0.032623291015625,
0.0183868408203125,
-0.0021305084228515625,
0.058929443359375,
-0.0092620849609375,
-0.0261077880859375,
0.05145263671875,
-0.005321502685546875,
0.046478271484375,
-0.0440673828125,
-0.0013484954833984375,
0.0052490234375,
-0.00479888916015625,
-0.046173095703125,
-0.04681396484375,
0.033721923828125,
0.011688232421875,
-0.03515625,
-0.0020046234130859375,
0.05535888671875,
-0.0189361572265625,
-0.04876708984375,
0.035675048828125,
0.031280517578125,
0.0213775634765625,
0.0318603515625,
-0.06744384765625,
0.0122222900390625,
-0.015899658203125,
-0.045257568359375,
0.02435302734375,
0.01424407958984375,
-0.00015151500701904297,
0.0295562744140625,
0.05108642578125,
0.0193328857421875,
0.00661468505859375,
0.00888824462890625,
0.0775146484375,
-0.039703369140625,
-0.0214996337890625,
-0.0545654296875,
0.06268310546875,
-0.049774169921875,
-0.037628173828125,
0.063232421875,
0.0506591796875,
0.060546875,
-0.004489898681640625,
0.06414794921875,
-0.032135009765625,
0.0304718017578125,
-0.0181121826171875,
0.060943603515625,
-0.0218658447265625,
0.0038661956787109375,
-0.032867431640625,
-0.057586669921875,
-0.042327880859375,
0.0640869140625,
-0.0343017578125,
0.01371002197265625,
0.061553955078125,
0.048187255859375,
0.00689697265625,
0.003444671630859375,
-0.009735107421875,
0.0271148681640625,
0.01275634765625,
0.00830078125,
0.0197296142578125,
-0.0469970703125,
0.022186279296875,
-0.0283203125,
-0.022003173828125,
-0.013397216796875,
-0.0811767578125,
-0.06634521484375,
-0.061004638671875,
-0.046630859375,
-0.027923583984375,
-0.00652313232421875,
0.086669921875,
0.0506591796875,
-0.07135009765625,
0.002765655517578125,
0.0026950836181640625,
-0.00145721435546875,
-0.024322509765625,
-0.023284912109375,
0.06304931640625,
-0.020721435546875,
-0.052947998046875,
0.0264739990234375,
0.02313232421875,
0.0124664306640625,
-0.0147247314453125,
-0.0026226043701171875,
-0.060577392578125,
0.0078277587890625,
0.0291900634765625,
0.04388427734375,
-0.06781005859375,
-0.01544952392578125,
-0.006595611572265625,
-0.00847625732421875,
0.00673675537109375,
0.0291595458984375,
-0.05596923828125,
0.0302734375,
0.032501220703125,
0.032379150390625,
0.035858154296875,
0.0059051513671875,
0.017242431640625,
-0.08026123046875,
0.03375244140625,
0.0160675048828125,
0.0235443115234375,
0.03515625,
-0.03143310546875,
0.04632568359375,
0.0189971923828125,
-0.039276123046875,
-0.060882568359375,
-0.0065155029296875,
-0.097412109375,
-0.01116943359375,
0.09027099609375,
-0.03265380859375,
-0.01233673095703125,
-0.0280609130859375,
-0.01751708984375,
0.0323486328125,
-0.056671142578125,
0.04864501953125,
0.062286376953125,
-0.0169219970703125,
-0.0059814453125,
-0.040618896484375,
0.064453125,
-0.0003333091735839844,
-0.07562255859375,
0.0134124755859375,
0.02435302734375,
-0.003696441650390625,
0.0443115234375,
0.037109375,
-0.01305389404296875,
0.00360107421875,
0.01374053955078125,
0.017242431640625,
-0.0228118896484375,
-0.00890350341796875,
-0.021728515625,
0.021728515625,
-0.014007568359375,
0.0028400421142578125
]
] |
BeIR/scidocs-qrels | 2022-10-23T06:07:54.000Z | [
"task_categories:text-retrieval",
"task_ids:entity-linking-retrieval",
"task_ids:fact-checking-retrieval",
"multilinguality:monolingual",
"language:en",
"license:cc-by-sa-4.0",
"region:us"
] | BeIR | null | null | 0 | 1,101 | 2022-06-05T17:27:37 | ---
annotations_creators: []
language_creators: []
language:
- en
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
paperswithcode_id: beir
pretty_name: BEIR Benchmark
size_categories:
msmarco:
- 1M<n<10M
trec-covid:
- 100k<n<1M
nfcorpus:
- 1K<n<10K
nq:
- 1M<n<10M
hotpotqa:
- 1M<n<10M
fiqa:
- 10K<n<100K
arguana:
- 1K<n<10K
touche-2020:
- 100K<n<1M
cqadupstack:
- 100K<n<1M
quora:
- 100K<n<1M
dbpedia:
- 1M<n<10M
scidocs:
- 10K<n<100K
fever:
- 1M<n<10M
climate-fever:
- 1M<n<10M
scifact:
- 1K<n<10K
source_datasets: []
task_categories:
- text-retrieval
- zero-shot-retrieval
- information-retrieval
- zero-shot-information-retrieval
task_ids:
- passage-retrieval
- entity-linking-retrieval
- fact-checking-retrieval
- tweet-retrieval
- citation-prediction-retrieval
- duplication-question-retrieval
- argument-retrieval
- news-retrieval
- biomedical-information-retrieval
- question-answering-retrieval
---
# Dataset Card for BEIR Benchmark
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://github.com/UKPLab/beir
- **Repository:** https://github.com/UKPLab/beir
- **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
- **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
- **Point of Contact:** nandan.thakur@uwaterloo.ca
### Dataset Summary
BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks:
- Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
- Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
- Bio-Medical IR: [TREC-COVID](https://ir.nist.gov/covidSubmit/index.html), [BioASQ](http://bioasq.org), [NFCorpus](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/)
- News Retrieval: [TREC-NEWS](https://trec.nist.gov/data/news2019.html), [Robust04](https://trec.nist.gov/data/robust/04.guidelines.html)
- Argument Retrieval: [Touche-2020](https://webis.de/events/touche-20/shared-task-1.html), [ArguAna](tp://argumentation.bplaced.net/arguana/data)
- Duplicate Question Retrieval: [Quora](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs), [CqaDupstack](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/)
- Citation-Prediction: [SCIDOCS](https://allenai.org/data/scidocs)
- Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
- Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
All these datasets have been preprocessed and can be used for your experiments.
```python
```
### Supported Tasks and Leaderboards
The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia.
The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/).
### Languages
All tasks are in English (`en`).
## Dataset Structure
All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format:
- `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}`
- `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}`
- `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1`
### Data Instances
A high level example of any beir dataset:
```python
corpus = {
"doc1" : {
"title": "Albert Einstein",
"text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
its influence on the philosophy of science. He is best known to the general public for his mass–energy \
equivalence formula E = mc2, which has been dubbed 'the world's most famous equation'. He received the 1921 \
Nobel Prize in Physics 'for his services to theoretical physics, and especially for his discovery of the law \
of the photoelectric effect', a pivotal step in the development of quantum theory."
},
"doc2" : {
"title": "", # Keep title an empty string if not present
"text": "Wheat beer is a top-fermented beer which is brewed with a large proportion of wheat relative to the amount of \
malted barley. The two main varieties are German Weißbier and Belgian witbier; other types include Lambic (made\
with wild yeast), Berliner Weisse (a cloudy, sour beer), and Gose (a sour, salty beer)."
},
}
queries = {
"q1" : "Who developed the mass-energy equivalence formula?",
"q2" : "Which beer is brewed with a large proportion of wheat?"
}
qrels = {
"q1" : {"doc1": 1},
"q2" : {"doc2": 1},
}
```
### Data Fields
Examples from all configurations have the following features:
### Corpus
- `corpus`: a `dict` feature representing the document title and passage text, made up of:
- `_id`: a `string` feature representing the unique document id
- `title`: a `string` feature, denoting the title of the document.
- `text`: a `string` feature, denoting the text of the document.
### Queries
- `queries`: a `dict` feature representing the query, made up of:
- `_id`: a `string` feature representing the unique query id
- `text`: a `string` feature, denoting the text of the query.
### Qrels
- `qrels`: a `dict` feature representing the query document relevance judgements, made up of:
- `_id`: a `string` feature representing the query id
- `_id`: a `string` feature, denoting the document id.
- `score`: a `int32` feature, denoting the relevance judgement between query and document.
### Data Splits
| Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
| -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:|
| MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` |
| TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` |
| NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` |
| BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
| NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` |
| HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` |
| FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` |
| Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
| TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
| ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` |
| Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` |
| CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` |
| Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` |
| DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` |
| SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` |
| FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` |
| Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` |
| SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` |
| Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
## Dataset Creation
### Curation Rationale
[Needs More Information]
### Source Data
#### Initial Data Collection and Normalization
[Needs More Information]
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
[Needs More Information]
#### Who are the annotators?
[Needs More Information]
### Personal and Sensitive Information
[Needs More Information]
## Considerations for Using the Data
### Social Impact of Dataset
[Needs More Information]
### Discussion of Biases
[Needs More Information]
### Other Known Limitations
[Needs More Information]
## Additional Information
### Dataset Curators
[Needs More Information]
### Licensing Information
[Needs More Information]
### Citation Information
Cite as:
```
@inproceedings{
thakur2021beir,
title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych},
booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
year={2021},
url={https://openreview.net/forum?id=wCu6T5xFjeJ}
}
```
### Contributions
Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset. | 13,988 | [
[
-0.0396728515625,
-0.03985595703125,
0.010955810546875,
0.003665924072265625,
0.004230499267578125,
0.00008660554885864258,
-0.0081939697265625,
-0.018890380859375,
0.0216827392578125,
0.005954742431640625,
-0.034332275390625,
-0.0545654296875,
-0.0263824462890625,
0.0153961181640625,
-0.0228118896484375,
0.0740966796875,
0.0010728836059570312,
0.004459381103515625,
-0.0185394287109375,
-0.0277862548828125,
-0.006099700927734375,
-0.03399658203125,
-0.038330078125,
-0.022064208984375,
0.034576416015625,
0.030120849609375,
0.03216552734375,
0.036956787109375,
0.06512451171875,
0.0196533203125,
-0.01287841796875,
0.01464080810546875,
-0.032073974609375,
-0.0086822509765625,
-0.0189971923828125,
-0.0254669189453125,
-0.0256195068359375,
-0.00322723388671875,
0.053375244140625,
0.03680419921875,
-0.0037364959716796875,
0.0288238525390625,
0.00594329833984375,
0.058013916015625,
-0.033721923828125,
0.00879669189453125,
-0.040679931640625,
-0.007904052734375,
-0.027618408203125,
-0.009124755859375,
-0.00627899169921875,
-0.01433563232421875,
-0.0025386810302734375,
-0.049560546875,
0.03338623046875,
0.0185089111328125,
0.09039306640625,
0.011383056640625,
-0.0258636474609375,
-0.01453399658203125,
-0.032562255859375,
0.064453125,
-0.049774169921875,
0.03662109375,
0.038726806640625,
0.0190582275390625,
-0.01071929931640625,
-0.062347412109375,
-0.04241943359375,
-0.0071258544921875,
-0.027679443359375,
0.034912109375,
-0.0120086669921875,
-0.026397705078125,
0.026947021484375,
0.0316162109375,
-0.0655517578125,
-0.01197052001953125,
-0.036468505859375,
-0.01514434814453125,
0.0584716796875,
0.0227813720703125,
0.002429962158203125,
-0.0306549072265625,
-0.02392578125,
-0.032958984375,
-0.0311737060546875,
0.020477294921875,
0.0156097412109375,
0.021820068359375,
-0.0251312255859375,
0.0303955078125,
-0.034332275390625,
0.03765869140625,
0.006557464599609375,
-0.00782012939453125,
0.049072265625,
-0.061920166015625,
-0.003810882568359375,
-0.00879669189453125,
0.0770263671875,
0.0309600830078125,
-0.0303192138671875,
-0.00431060791015625,
-0.00434112548828125,
-0.020355224609375,
0.00047898292541503906,
-0.0648193359375,
-0.0115814208984375,
0.044830322265625,
-0.033721923828125,
-0.0015382766723632812,
0.0233917236328125,
-0.0740966796875,
-0.00548553466796875,
0.0006818771362304688,
0.0300140380859375,
-0.0396728515625,
-0.0120849609375,
0.0018510818481445312,
-0.04345703125,
0.0261688232421875,
-0.0006022453308105469,
-0.04742431640625,
0.02398681640625,
0.03399658203125,
0.061004638671875,
-0.0031414031982421875,
-0.019927978515625,
-0.0253143310546875,
0.01097869873046875,
-0.0109100341796875,
0.04986572265625,
-0.024200439453125,
-0.030792236328125,
-0.01076507568359375,
0.01149749755859375,
-0.0025691986083984375,
-0.0256195068359375,
0.07049560546875,
-0.02960205078125,
0.03411865234375,
-0.059906005859375,
-0.031280517578125,
-0.008209228515625,
0.0259246826171875,
-0.052764892578125,
0.09661865234375,
0.0201416015625,
-0.08331298828125,
0.0220947265625,
-0.06890869140625,
-0.032745361328125,
0.0007491111755371094,
-0.00859832763671875,
-0.034637451171875,
-0.0269012451171875,
0.017333984375,
0.03216552734375,
-0.04730224609375,
0.0097503662109375,
-0.0121307373046875,
-0.0164642333984375,
0.01377105712890625,
0.0025177001953125,
0.07513427734375,
0.029449462890625,
-0.026275634765625,
-0.0123291015625,
-0.0657958984375,
0.00141143798828125,
0.023834228515625,
-0.0296173095703125,
-0.01287841796875,
-0.0032901763916015625,
0.014312744140625,
0.00891876220703125,
0.0222625732421875,
-0.039337158203125,
0.00031185150146484375,
-0.0230560302734375,
0.03778076171875,
0.020233154296875,
0.010955810546875,
0.0179290771484375,
-0.0533447265625,
0.0201263427734375,
0.01020050048828125,
0.0260467529296875,
0.005214691162109375,
-0.03350830078125,
-0.038177490234375,
-0.022003173828125,
0.0266571044921875,
0.048492431640625,
-0.041290283203125,
0.0465087890625,
-0.03900146484375,
-0.07025146484375,
-0.043121337890625,
0.00550079345703125,
0.033843994140625,
0.057647705078125,
0.04644775390625,
-0.00653076171875,
-0.03936767578125,
-0.0694580078125,
-0.01377105712890625,
-0.0163421630859375,
0.00858306884765625,
0.03619384765625,
0.06671142578125,
-0.0088958740234375,
0.055450439453125,
-0.04473876953125,
-0.0218353271484375,
-0.0081634521484375,
0.003681182861328125,
0.0380859375,
0.04742431640625,
0.04937744140625,
-0.08599853515625,
-0.035614013671875,
-0.002597808837890625,
-0.05889892578125,
0.000560760498046875,
0.00501251220703125,
-0.0146026611328125,
0.01436614990234375,
0.033447265625,
-0.044525146484375,
0.02471923828125,
0.009796142578125,
-0.02001953125,
0.028839111328125,
-0.01015472412109375,
0.041259765625,
-0.09332275390625,
0.044586181640625,
0.01091766357421875,
0.0110015869140625,
-0.040740966796875,
0.005474090576171875,
0.00933074951171875,
0.01546478271484375,
-0.03289794921875,
0.051849365234375,
-0.03228759765625,
0.00579071044921875,
0.024078369140625,
0.0027484893798828125,
0.0167236328125,
0.02471923828125,
-0.0149688720703125,
0.0584716796875,
0.036834716796875,
-0.049102783203125,
0.0243682861328125,
0.032379150390625,
-0.0240325927734375,
0.0277862548828125,
-0.0521240234375,
-0.00843048095703125,
-0.007266998291015625,
0.0190887451171875,
-0.07244873046875,
-0.0210723876953125,
0.017669677734375,
-0.049224853515625,
0.0169525146484375,
-0.01044464111328125,
-0.0556640625,
-0.047119140625,
-0.040557861328125,
0.015167236328125,
0.0372314453125,
-0.0263824462890625,
0.036834716796875,
0.026214599609375,
0.0092926025390625,
-0.059234619140625,
-0.054779052734375,
-0.0139923095703125,
-0.01971435546875,
-0.053192138671875,
0.050628662109375,
-0.0226287841796875,
-0.020721435546875,
0.0137176513671875,
-0.00506591796875,
-0.004611968994140625,
0.00576019287109375,
0.018402099609375,
0.021728515625,
-0.007740020751953125,
0.006542205810546875,
-0.01108551025390625,
0.0134735107421875,
-0.009002685546875,
0.005260467529296875,
0.0433349609375,
-0.0277252197265625,
-0.009765625,
-0.02703857421875,
0.023040771484375,
0.0419921875,
-0.0254974365234375,
0.0533447265625,
0.06365966796875,
-0.0266876220703125,
0.0140228271484375,
-0.04107666015625,
-0.01100921630859375,
-0.03369140625,
0.0181121826171875,
-0.0296173095703125,
-0.045867919921875,
0.055908203125,
0.0110321044921875,
0.01204681396484375,
0.07196044921875,
0.034912109375,
-0.01447296142578125,
0.05596923828125,
0.01457977294921875,
-0.00528717041015625,
0.03485107421875,
-0.050994873046875,
-0.003757476806640625,
-0.06256103515625,
-0.0380859375,
-0.06878662109375,
-0.01529693603515625,
-0.0521240234375,
-0.0290679931640625,
0.035186767578125,
0.0123138427734375,
-0.0341796875,
0.0289459228515625,
-0.051788330078125,
0.01149749755859375,
0.055419921875,
0.00737762451171875,
-0.0020427703857421875,
0.0002586841583251953,
-0.0200347900390625,
0.01273345947265625,
-0.060791015625,
-0.0208282470703125,
0.09161376953125,
0.0048980712890625,
0.037750244140625,
0.012725830078125,
0.06011962890625,
0.0219879150390625,
0.0007772445678710938,
-0.024932861328125,
0.0419921875,
-0.01227569580078125,
-0.07568359375,
-0.017974853515625,
-0.041046142578125,
-0.08673095703125,
0.009002685546875,
-0.0313720703125,
-0.052642822265625,
0.0250396728515625,
0.002979278564453125,
-0.021392822265625,
0.0184478759765625,
-0.057464599609375,
0.059783935546875,
-0.025360107421875,
-0.0540771484375,
-0.0050201416015625,
-0.06365966796875,
0.01390838623046875,
0.0019550323486328125,
0.0259857177734375,
-0.00223541259765625,
-0.004611968994140625,
0.079345703125,
-0.03216552734375,
0.031005859375,
-0.0123138427734375,
0.034210205078125,
0.0303955078125,
-0.02642822265625,
0.03863525390625,
0.007740020751953125,
-0.03717041015625,
0.0267791748046875,
0.03338623046875,
-0.044525146484375,
-0.0242767333984375,
0.054107666015625,
-0.0582275390625,
-0.0333251953125,
-0.05181884765625,
-0.035736083984375,
-0.002758026123046875,
0.0257110595703125,
0.03778076171875,
0.0333251953125,
-0.0211639404296875,
0.0284271240234375,
0.042327880859375,
-0.02520751953125,
0.027435302734375,
0.041778564453125,
-0.0029010772705078125,
-0.045745849609375,
0.058197021484375,
0.0215606689453125,
-0.0106353759765625,
0.05133056640625,
0.019866943359375,
-0.0343017578125,
-0.04473876953125,
-0.02178955078125,
0.020050048828125,
-0.041839599609375,
-0.03326416015625,
-0.056243896484375,
-0.02044677734375,
-0.055419921875,
0.000637054443359375,
-0.01119232177734375,
-0.01922607421875,
-0.0279083251953125,
-0.006427764892578125,
0.04632568359375,
0.025146484375,
-0.030181884765625,
0.0097808837890625,
-0.06134033203125,
0.02862548828125,
-0.00550079345703125,
0.01555633544921875,
-0.0157470703125,
-0.03411865234375,
-0.02911376953125,
0.01055908203125,
-0.025177001953125,
-0.04766845703125,
0.0293731689453125,
0.0147247314453125,
0.05889892578125,
0.0173797607421875,
0.0155029296875,
0.050689697265625,
-0.01049041748046875,
0.07879638671875,
0.01450347900390625,
-0.042236328125,
0.046234130859375,
-0.02911376953125,
0.0181121826171875,
0.0633544921875,
0.051116943359375,
-0.029876708984375,
-0.01105499267578125,
-0.057861328125,
-0.07659912109375,
0.049896240234375,
0.0271148681640625,
-0.017059326171875,
-0.00395965576171875,
0.01959228515625,
0.004302978515625,
0.00803375244140625,
-0.0292816162109375,
-0.05133056640625,
-0.0262603759765625,
-0.0200958251953125,
-0.00589752197265625,
0.001857757568359375,
-0.0281982421875,
-0.042327880859375,
0.0697021484375,
0.00838470458984375,
0.031890869140625,
0.04656982421875,
-0.00174713134765625,
0.003509521484375,
0.021942138671875,
0.0308837890625,
0.047607421875,
-0.048736572265625,
-0.0012464523315429688,
0.0115814208984375,
-0.042816162109375,
-0.01494598388671875,
0.037872314453125,
-0.01470184326171875,
0.003459930419921875,
0.0246124267578125,
0.0352783203125,
-0.003971099853515625,
-0.050262451171875,
0.030120849609375,
-0.010833740234375,
-0.03643798828125,
-0.0240020751953125,
0.01013946533203125,
0.0119476318359375,
0.0202789306640625,
0.045196533203125,
-0.006866455078125,
0.0179443359375,
-0.045989990234375,
0.021240234375,
0.031707763671875,
-0.0072784423828125,
-0.0174713134765625,
0.053985595703125,
-0.0011968612670898438,
-0.00844573974609375,
0.035797119140625,
-0.0293426513671875,
-0.03533935546875,
0.055633544921875,
0.0194549560546875,
0.03668212890625,
0.0023021697998046875,
0.01224517822265625,
0.058807373046875,
0.0227813720703125,
-0.01152801513671875,
0.043487548828125,
0.006626129150390625,
-0.043792724609375,
0.0084228515625,
-0.046112060546875,
-0.0211639404296875,
0.019134521484375,
-0.054107666015625,
0.01690673828125,
-0.0271759033203125,
-0.027679443359375,
0.02667236328125,
0.040863037109375,
-0.08013916015625,
0.0178680419921875,
-0.01369476318359375,
0.080078125,
-0.050750732421875,
0.049591064453125,
0.06201171875,
-0.053863525390625,
-0.0570068359375,
-0.01218414306640625,
-0.004199981689453125,
-0.043182373046875,
0.040740966796875,
-0.004718780517578125,
0.01654052734375,
-0.00658416748046875,
-0.0452880859375,
-0.076416015625,
0.10992431640625,
0.006633758544921875,
-0.038116455078125,
0.0161285400390625,
0.00782012939453125,
0.048004150390625,
-0.01071929931640625,
0.033294677734375,
0.03607177734375,
0.05145263671875,
0.0076141357421875,
-0.05712890625,
0.0116424560546875,
-0.041229248046875,
-0.02777099609375,
0.01458740234375,
-0.0821533203125,
0.060577392578125,
0.0011854171752929688,
-0.0113372802734375,
-0.0083465576171875,
0.042327880859375,
0.015838623046875,
0.056915283203125,
0.01715087890625,
0.0657958984375,
0.07000732421875,
-0.01454925537109375,
0.08319091796875,
-0.034637451171875,
0.035980224609375,
0.0670166015625,
-0.017974853515625,
0.060882568359375,
0.026824951171875,
-0.0312347412109375,
0.0302886962890625,
0.053009033203125,
-0.0281982421875,
0.0474853515625,
0.00551605224609375,
0.0013017654418945312,
0.0012712478637695312,
-0.01068878173828125,
-0.051666259765625,
0.0289459228515625,
0.0273590087890625,
-0.01611328125,
-0.00769805908203125,
-0.0179901123046875,
0.004817962646484375,
-0.00933837890625,
-0.01708984375,
0.0472412109375,
-0.0124664306640625,
-0.0419921875,
0.058563232421875,
-0.001617431640625,
0.050628662109375,
-0.05450439453125,
0.01422882080078125,
-0.03033447265625,
-0.00147247314453125,
-0.03076171875,
-0.06256103515625,
0.0203857421875,
0.0023174285888671875,
-0.0293731689453125,
0.0013151168823242188,
0.045684814453125,
-0.0103607177734375,
-0.0428466796875,
0.0166015625,
0.045440673828125,
0.0273590087890625,
0.01203155517578125,
-0.0731201171875,
0.002132415771484375,
-0.0013284683227539062,
-0.026275634765625,
0.0260467529296875,
0.028228759765625,
0.007335662841796875,
0.043182373046875,
0.05841064453125,
-0.0011510848999023438,
0.0026531219482421875,
-0.0136260986328125,
0.06756591796875,
-0.06964111328125,
-0.021820068359375,
-0.043121337890625,
0.031341552734375,
-0.0265655517578125,
-0.033599853515625,
0.061920166015625,
0.084716796875,
0.06866455078125,
0.01021575927734375,
0.06591796875,
-0.037506103515625,
0.046905517578125,
-0.0238189697265625,
0.0633544921875,
-0.06982421875,
0.005779266357421875,
-0.0092926025390625,
-0.038299560546875,
-0.0125885009765625,
0.0232086181640625,
-0.0208892822265625,
0.004703521728515625,
0.054534912109375,
0.076904296875,
0.002338409423828125,
-0.0108642578125,
0.004306793212890625,
0.020538330078125,
0.0193328857421875,
0.030792236328125,
0.035369873046875,
-0.061004638671875,
0.049957275390625,
-0.033050537109375,
0.000011265277862548828,
-0.029449462890625,
-0.049560546875,
-0.054595947265625,
-0.07293701171875,
-0.0307159423828125,
-0.042755126953125,
0.00994110107421875,
0.07489013671875,
0.051971435546875,
-0.06884765625,
-0.0074615478515625,
0.007427215576171875,
0.01343536376953125,
-0.0281219482421875,
-0.0204925537109375,
0.0555419921875,
-0.0028247833251953125,
-0.045013427734375,
0.011322021484375,
-0.0007615089416503906,
-0.0028133392333984375,
0.0179443359375,
-0.008209228515625,
-0.042327880859375,
0.0030002593994140625,
0.036102294921875,
0.035186767578125,
-0.03741455078125,
-0.004634857177734375,
0.0048370361328125,
-0.0194549560546875,
0.021728515625,
0.017974853515625,
-0.047088623046875,
0.0100555419921875,
0.057769775390625,
0.037078857421875,
0.050750732421875,
0.006015777587890625,
-0.0048065185546875,
-0.03656005859375,
-0.005313873291015625,
0.0178070068359375,
0.029205322265625,
0.02923583984375,
-0.0294036865234375,
0.058563232421875,
0.0259246826171875,
-0.0408935546875,
-0.065673828125,
-0.0250091552734375,
-0.11383056640625,
-0.0178070068359375,
0.09185791015625,
0.00017952919006347656,
-0.026092529296875,
-0.002590179443359375,
-0.00399017333984375,
0.0309295654296875,
-0.053375244140625,
0.045867919921875,
0.044677734375,
-0.01285552978515625,
0.0120086669921875,
-0.0455322265625,
0.033294677734375,
0.0188446044921875,
-0.066162109375,
-0.0160064697265625,
0.020721435546875,
0.033782958984375,
0.0225372314453125,
0.0419921875,
-0.01561737060546875,
0.00428009033203125,
0.01019287109375,
0.006622314453125,
-0.01142120361328125,
0.0036258697509765625,
-0.0055084228515625,
0.017059326171875,
-0.0173187255859375,
-0.0169525146484375
]
] |
qa4mre | 2023-04-05T13:36:59.000Z | [
"task_categories:multiple-choice",
"task_ids:multiple-choice-qa",
"annotations_creators:other",
"language_creators:found",
"multilinguality:multilingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:ar",
"language:bg",
"language:de",
"language:en",
"language:es",
"language:it",
"language:ro",
"license:unknown",
"region:us"
] | null | QA4MRE dataset was created for the CLEF 2011/2012/2013 shared tasks to promote research in
question answering and reading comprehension. The dataset contains a supporting
passage and a set of questions corresponding to the passage. Multiple options
for answers are provided for each question, of which only one is correct. The
training and test datasets are available for the main track.
Additional gold standard documents are available for two pilot studies: one on
alzheimers data, and the other on entrance exams data. | null | 2 | 1,099 | 2022-03-02T23:29:22 | ---
annotations_creators:
- other
language:
- ar
- bg
- de
- en
- es
- it
- ro
language_creators:
- found
license:
- unknown
multilinguality:
- multilingual
pretty_name: 'QA4MRE: Question Answering for Machine Reading Evaluation'
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- multiple-choice
task_ids:
- multiple-choice-qa
paperswithcode_id: null
dataset_info:
- config_name: 2011.main.DE
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 1747118
num_examples: 120
download_size: 222289
dataset_size: 1747118
- config_name: 2011.main.EN
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 1569676
num_examples: 120
download_size: 202490
dataset_size: 1569676
- config_name: 2011.main.ES
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 1694460
num_examples: 120
download_size: 217617
dataset_size: 1694460
- config_name: 2011.main.IT
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 1667188
num_examples: 120
download_size: 214764
dataset_size: 1667188
- config_name: 2011.main.RO
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 1740419
num_examples: 120
download_size: 221510
dataset_size: 1740419
- config_name: 2012.main.AR
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 2710656
num_examples: 160
download_size: 356178
dataset_size: 2710656
- config_name: 2012.main.BG
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 3454215
num_examples: 160
download_size: 445060
dataset_size: 3454215
- config_name: 2012.main.DE
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 2087466
num_examples: 160
download_size: 281600
dataset_size: 2087466
- config_name: 2012.main.EN
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 1757586
num_examples: 160
download_size: 243467
dataset_size: 1757586
- config_name: 2012.main.ES
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 2057402
num_examples: 160
download_size: 278445
dataset_size: 2057402
- config_name: 2012.main.IT
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 2071710
num_examples: 160
download_size: 280051
dataset_size: 2071710
- config_name: 2012.main.RO
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 2074930
num_examples: 160
download_size: 279541
dataset_size: 2074930
- config_name: 2012.alzheimers.EN
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 1637988
num_examples: 40
download_size: 177345
dataset_size: 1637988
- config_name: 2013.main.AR
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 4180979
num_examples: 284
download_size: 378302
dataset_size: 4180979
- config_name: 2013.main.BG
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 5403246
num_examples: 284
download_size: 463605
dataset_size: 5403246
- config_name: 2013.main.EN
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 2887866
num_examples: 284
download_size: 274969
dataset_size: 2887866
- config_name: 2013.main.ES
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 3449693
num_examples: 284
download_size: 315166
dataset_size: 3449693
- config_name: 2013.main.RO
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 3363049
num_examples: 284
download_size: 313510
dataset_size: 3363049
- config_name: 2013.alzheimers.EN
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 2614812
num_examples: 40
download_size: 274413
dataset_size: 2614812
- config_name: 2013.entrance_exam.EN
features:
- name: topic_id
dtype: string
- name: topic_name
dtype: string
- name: test_id
dtype: string
- name: document_id
dtype: string
- name: document_str
dtype: string
- name: question_id
dtype: string
- name: question_str
dtype: string
- name: answer_options
sequence:
- name: answer_id
dtype: string
- name: answer_str
dtype: string
- name: correct_answer_id
dtype: string
- name: correct_answer_str
dtype: string
splits:
- name: train
num_bytes: 180827
num_examples: 46
download_size: 54598
dataset_size: 180827
---
# Dataset Card for "qa4mre"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** http://nlp.uned.es/clef-qa/repository/qa4mre.php
- **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Paper:** [QA4MRE 2011-2013: Overview of Question Answering for Machine Reading Evaluation](https://link.springer.com/chapter/10.1007/978-3-642-40802-1_29)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of downloaded dataset files:** 5.49 MB
- **Size of the generated dataset:** 48.35 MB
- **Total amount of disk used:** 53.84 MB
### Dataset Summary
QA4MRE dataset was created for the CLEF 2011/2012/2013 shared tasks to promote research in
question answering and reading comprehension. The dataset contains a supporting
passage and a set of questions corresponding to the passage. Multiple options
for answers are provided for each question, of which only one is correct. The
training and test datasets are available for the main track.
Additional gold standard documents are available for two pilot studies: one on
alzheimers data, and the other on entrance exams data.
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Dataset Structure
### Data Instances
#### 2011.main.DE
- **Size of downloaded dataset files:** 0.22 MB
- **Size of the generated dataset:** 1.75 MB
- **Total amount of disk used:** 1.97 MB
An example of 'train' looks as follows.
```
```
#### 2011.main.EN
- **Size of downloaded dataset files:** 0.20 MB
- **Size of the generated dataset:** 1.57 MB
- **Total amount of disk used:** 1.77 MB
An example of 'train' looks as follows.
```
```
#### 2011.main.ES
- **Size of downloaded dataset files:** 0.22 MB
- **Size of the generated dataset:** 1.70 MB
- **Total amount of disk used:** 1.91 MB
An example of 'train' looks as follows.
```
```
#### 2011.main.IT
- **Size of downloaded dataset files:** 0.21 MB
- **Size of the generated dataset:** 1.67 MB
- **Total amount of disk used:** 1.88 MB
An example of 'train' looks as follows.
```
```
#### 2011.main.RO
- **Size of downloaded dataset files:** 0.22 MB
- **Size of the generated dataset:** 1.74 MB
- **Total amount of disk used:** 1.96 MB
An example of 'train' looks as follows.
```
```
### Data Fields
The data fields are the same among all splits.
#### 2011.main.DE
- `topic_id`: a `string` feature.
- `topic_name`: a `string` feature.
- `test_id`: a `string` feature.
- `document_id`: a `string` feature.
- `document_str`: a `string` feature.
- `question_id`: a `string` feature.
- `question_str`: a `string` feature.
- `answer_options`: a dictionary feature containing:
- `answer_id`: a `string` feature.
- `answer_str`: a `string` feature.
- `correct_answer_id`: a `string` feature.
- `correct_answer_str`: a `string` feature.
#### 2011.main.EN
- `topic_id`: a `string` feature.
- `topic_name`: a `string` feature.
- `test_id`: a `string` feature.
- `document_id`: a `string` feature.
- `document_str`: a `string` feature.
- `question_id`: a `string` feature.
- `question_str`: a `string` feature.
- `answer_options`: a dictionary feature containing:
- `answer_id`: a `string` feature.
- `answer_str`: a `string` feature.
- `correct_answer_id`: a `string` feature.
- `correct_answer_str`: a `string` feature.
#### 2011.main.ES
- `topic_id`: a `string` feature.
- `topic_name`: a `string` feature.
- `test_id`: a `string` feature.
- `document_id`: a `string` feature.
- `document_str`: a `string` feature.
- `question_id`: a `string` feature.
- `question_str`: a `string` feature.
- `answer_options`: a dictionary feature containing:
- `answer_id`: a `string` feature.
- `answer_str`: a `string` feature.
- `correct_answer_id`: a `string` feature.
- `correct_answer_str`: a `string` feature.
#### 2011.main.IT
- `topic_id`: a `string` feature.
- `topic_name`: a `string` feature.
- `test_id`: a `string` feature.
- `document_id`: a `string` feature.
- `document_str`: a `string` feature.
- `question_id`: a `string` feature.
- `question_str`: a `string` feature.
- `answer_options`: a dictionary feature containing:
- `answer_id`: a `string` feature.
- `answer_str`: a `string` feature.
- `correct_answer_id`: a `string` feature.
- `correct_answer_str`: a `string` feature.
#### 2011.main.RO
- `topic_id`: a `string` feature.
- `topic_name`: a `string` feature.
- `test_id`: a `string` feature.
- `document_id`: a `string` feature.
- `document_str`: a `string` feature.
- `question_id`: a `string` feature.
- `question_str`: a `string` feature.
- `answer_options`: a dictionary feature containing:
- `answer_id`: a `string` feature.
- `answer_str`: a `string` feature.
- `correct_answer_id`: a `string` feature.
- `correct_answer_str`: a `string` feature.
### Data Splits
| name |train|
|------------|----:|
|2011.main.DE| 120|
|2011.main.EN| 120|
|2011.main.ES| 120|
|2011.main.IT| 120|
|2011.main.RO| 120|
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{10.1007/978-3-642-40802-1_29,
author="Pe{\~{n}}as, Anselmo
and Hovy, Eduard
and Forner, Pamela
and Rodrigo, {\'A}lvaro
and Sutcliffe, Richard
and Morante, Roser",
editor="Forner, Pamela
and M{\"u}ller, Henning
and Paredes, Roberto
and Rosso, Paolo
and Stein, Benno",
title="QA4MRE 2011-2013: Overview of Question Answering for Machine Reading Evaluation",
booktitle="Information Access Evaluation. Multilinguality, Multimodality, and Visualization",
year="2013",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="303--320",
isbn="978-3-642-40802-1"
}
```
### Contributions
Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@albertvillanova](https://github.com/albertvillanova), [@mariamabarham](https://github.com/mariamabarham), [@thomwolf](https://github.com/thomwolf) for adding this dataset. | 22,619 | [
[
-0.056732177734375,
-0.054351806640625,
0.0268096923828125,
0.0010833740234375,
0.001575469970703125,
-0.0037860870361328125,
-0.01174163818359375,
-0.0262908935546875,
0.038543701171875,
0.0384521484375,
-0.06207275390625,
-0.059295654296875,
-0.032684326171875,
0.0247039794921875,
-0.0219879150390625,
0.083740234375,
-0.009429931640625,
-0.0216064453125,
-0.04278564453125,
-0.01824951171875,
-0.028289794921875,
-0.0287017822265625,
-0.0224761962890625,
-0.01751708984375,
0.033447265625,
0.043243408203125,
0.0389404296875,
0.0654296875,
0.052581787109375,
0.0215606689453125,
0.00222015380859375,
-0.0102996826171875,
-0.026885986328125,
-0.01751708984375,
-0.001873016357421875,
-0.0311737060546875,
-0.044769287109375,
0.0059661865234375,
0.04351806640625,
0.0302886962890625,
-0.008514404296875,
0.045562744140625,
-0.00986480712890625,
0.058837890625,
-0.0246734619140625,
0.0322265625,
-0.0179443359375,
-0.0078125,
-0.0217742919921875,
-0.006427764892578125,
0.01363372802734375,
-0.0350341796875,
0.0004901885986328125,
-0.06494140625,
0.0229034423828125,
0.001049041748046875,
0.0740966796875,
0.00920867919921875,
-0.005146026611328125,
-0.029541015625,
-0.0294189453125,
0.049560546875,
-0.056915283203125,
0.00887298583984375,
0.0576171875,
0.0218505859375,
-0.0016508102416992188,
-0.062103271484375,
-0.058441162109375,
0.02166748046875,
-0.01509857177734375,
0.0166778564453125,
0.003856658935546875,
-0.0181884765625,
0.037384033203125,
0.0435791015625,
-0.057891845703125,
-0.019683837890625,
-0.0460205078125,
-0.0168914794921875,
0.0751953125,
0.0238800048828125,
0.0160064697265625,
-0.036773681640625,
-0.00684356689453125,
-0.03558349609375,
-0.02911376953125,
0.0168304443359375,
0.03350830078125,
0.0242767333984375,
-0.043609619140625,
0.050506591796875,
-0.01947021484375,
0.042388916015625,
-0.0004127025604248047,
-0.006168365478515625,
0.056365966796875,
-0.05364990234375,
-0.003376007080078125,
-0.0202484130859375,
0.07275390625,
0.046966552734375,
-0.0147857666015625,
0.0135650634765625,
-0.0085906982421875,
-0.01093292236328125,
-0.00006967782974243164,
-0.053375244140625,
-0.033599853515625,
0.06365966796875,
-0.031341552734375,
-0.0247039794921875,
0.003925323486328125,
-0.07586669921875,
-0.01082611083984375,
-0.005290985107421875,
0.03564453125,
-0.028411865234375,
-0.034454345703125,
0.0160064697265625,
-0.0247039794921875,
0.0256500244140625,
0.003421783447265625,
-0.04559326171875,
0.0306854248046875,
0.036102294921875,
0.053558349609375,
0.005584716796875,
-0.0283355712890625,
-0.01317596435546875,
-0.00650787353515625,
0.005939483642578125,
0.053375244140625,
-0.0269317626953125,
-0.03179931640625,
-0.0173492431640625,
0.03076171875,
-0.0028972625732421875,
-0.0196685791015625,
0.05328369140625,
-0.0186767578125,
0.043121337890625,
-0.053466796875,
-0.041412353515625,
-0.0204315185546875,
0.03302001953125,
-0.0682373046875,
0.10186767578125,
0.0290069580078125,
-0.07623291015625,
0.00926971435546875,
-0.06732177734375,
-0.02392578125,
-0.0016736984252929688,
0.0014619827270507812,
-0.042633056640625,
-0.035247802734375,
0.0216064453125,
0.034027099609375,
-0.035247802734375,
0.0122833251953125,
-0.020050048828125,
-0.01275634765625,
0.0176239013671875,
0.017578125,
0.0860595703125,
0.01195526123046875,
-0.00995635986328125,
0.0066070556640625,
-0.076904296875,
0.0015659332275390625,
0.0276336669921875,
-0.018463134765625,
-0.0030670166015625,
-0.01218414306640625,
0.02032470703125,
0.01474761962890625,
0.0310516357421875,
-0.035064697265625,
0.01514434814453125,
-0.02447509765625,
0.043853759765625,
0.039154052734375,
0.017822265625,
0.0261993408203125,
-0.051177978515625,
0.0418701171875,
0.0038909912109375,
0.03369140625,
-0.01090240478515625,
-0.04742431640625,
-0.04351806640625,
-0.009429931640625,
0.032867431640625,
0.05438232421875,
-0.041107177734375,
0.06109619140625,
-0.0286712646484375,
-0.0474853515625,
-0.046875,
0.01042938232421875,
0.019927978515625,
0.046356201171875,
0.037445068359375,
-0.0196685791015625,
-0.0516357421875,
-0.0635986328125,
0.0284576416015625,
-0.017791748046875,
0.0075225830078125,
0.041717529296875,
0.0740966796875,
-0.009002685546875,
0.064697265625,
-0.04925537109375,
-0.0132904052734375,
-0.0107574462890625,
-0.0020885467529296875,
0.0216064453125,
0.046539306640625,
0.046875,
-0.060089111328125,
-0.0249786376953125,
-0.02520751953125,
-0.055938720703125,
-0.001979827880859375,
0.0008740425109863281,
-0.0186920166015625,
-0.0012121200561523438,
0.028533935546875,
-0.052947998046875,
0.01136016845703125,
0.03363037109375,
-0.0274810791015625,
0.0275115966796875,
-0.00661468505859375,
0.01300048828125,
-0.10595703125,
0.028289794921875,
-0.007724761962890625,
0.00835418701171875,
-0.0291900634765625,
-0.0029239654541015625,
0.00620269775390625,
-0.00000852346420288086,
-0.0203704833984375,
0.04345703125,
-0.034210205078125,
0.00279998779296875,
0.0254669189453125,
0.01824951171875,
0.0080108642578125,
0.032257080078125,
-0.0122833251953125,
0.050048828125,
0.0592041015625,
-0.03985595703125,
0.0289764404296875,
0.04547119140625,
-0.00926971435546875,
0.03094482421875,
-0.05548095703125,
0.015228271484375,
-0.0147552490234375,
0.01386260986328125,
-0.0755615234375,
-0.03558349609375,
0.033721923828125,
-0.058258056640625,
0.01947021484375,
-0.01025390625,
-0.047515869140625,
-0.05364990234375,
-0.046783447265625,
0.00612640380859375,
0.030792236328125,
-0.0135955810546875,
0.042205810546875,
0.04656982421875,
0.0013532638549804688,
-0.033538818359375,
-0.046844482421875,
-0.006786346435546875,
-0.0096435546875,
-0.0618896484375,
0.02777099609375,
-0.0362548828125,
-0.0026187896728515625,
0.0248260498046875,
0.01374053955078125,
-0.0023174285888671875,
0.004169464111328125,
0.015838623046875,
0.009063720703125,
-0.005321502685546875,
0.0052490234375,
-0.01023101806640625,
0.0017099380493164062,
0.0073394775390625,
-0.001468658447265625,
0.0325927734375,
-0.0170135498046875,
-0.0112762451171875,
-0.01922607421875,
0.01654052734375,
0.028289794921875,
-0.033355712890625,
0.04498291015625,
0.049560546875,
-0.0247344970703125,
0.00420379638671875,
-0.03326416015625,
-0.0165252685546875,
-0.03326416015625,
0.00824737548828125,
-0.024200439453125,
-0.05181884765625,
0.072509765625,
0.0217742919921875,
0.026123046875,
0.06201171875,
0.031494140625,
-0.016143798828125,
0.05322265625,
0.0247650146484375,
0.00018858909606933594,
0.0312347412109375,
-0.05450439453125,
-0.0216064453125,
-0.053558349609375,
-0.0261077880859375,
-0.050994873046875,
-0.032623291015625,
-0.059722900390625,
-0.0390625,
0.01351165771484375,
0.003253936767578125,
-0.0186767578125,
0.0265350341796875,
-0.05596923828125,
0.0275421142578125,
0.04278564453125,
0.0021839141845703125,
-0.004650115966796875,
-0.009521484375,
0.00307464599609375,
0.0136566162109375,
-0.046966552734375,
-0.0255889892578125,
0.111083984375,
0.0235748291015625,
0.02239990234375,
0.0022373199462890625,
0.06524658203125,
0.01343536376953125,
0.0011730194091796875,
-0.033416748046875,
0.045562744140625,
0.0086669921875,
-0.0560302734375,
-0.0266876220703125,
-0.0330810546875,
-0.07440185546875,
-0.004405975341796875,
-0.031463623046875,
-0.0312042236328125,
0.0148773193359375,
-0.0033969879150390625,
-0.01171875,
0.01727294921875,
-0.057037353515625,
0.07135009765625,
-0.01244354248046875,
-0.0190887451171875,
0.00829315185546875,
-0.07293701171875,
0.02447509765625,
0.0020732879638671875,
0.032012939453125,
-0.01256561279296875,
0.0021381378173828125,
0.086181640625,
-0.0467529296875,
0.0518798828125,
-0.02362060546875,
0.021636962890625,
0.045867919921875,
-0.0162811279296875,
0.025146484375,
0.01076507568359375,
-0.01239013671875,
0.032440185546875,
0.023773193359375,
-0.034271240234375,
-0.03143310546875,
0.0472412109375,
-0.0640869140625,
-0.0188446044921875,
-0.036346435546875,
-0.042755126953125,
-0.00891876220703125,
0.0299224853515625,
0.015472412109375,
0.0213165283203125,
-0.004894256591796875,
0.01078033447265625,
0.05706787109375,
-0.0213470458984375,
0.01277923583984375,
0.036285400390625,
-0.0146636962890625,
-0.055084228515625,
0.06317138671875,
0.015472412109375,
-0.00508880615234375,
0.0261077880859375,
0.0138702392578125,
-0.028533935546875,
-0.036773681640625,
-0.04827880859375,
0.026214599609375,
-0.04022216796875,
-0.02410888671875,
-0.054962158203125,
-0.0115203857421875,
-0.040252685546875,
0.0023059844970703125,
-0.01186370849609375,
-0.047149658203125,
-0.027435302734375,
-0.0214385986328125,
0.06634521484375,
0.037689208984375,
-0.0261077880859375,
0.01171112060546875,
-0.055145263671875,
0.020965576171875,
0.0020389556884765625,
0.034698486328125,
-0.019378662109375,
-0.028533935546875,
-0.025177001953125,
0.007843017578125,
-0.010894775390625,
-0.046600341796875,
0.0128021240234375,
0.002498626708984375,
0.04180908203125,
-0.007190704345703125,
0.004119873046875,
0.035980224609375,
-0.007450103759765625,
0.0791015625,
0.0003352165222167969,
-0.041839599609375,
0.05584716796875,
-0.033905029296875,
0.02239990234375,
0.0601806640625,
0.0310516357421875,
-0.0267791748046875,
-0.017822265625,
-0.064697265625,
-0.06890869140625,
0.06158447265625,
0.02593994140625,
-0.0010690689086914062,
-0.0102386474609375,
0.031402587890625,
0.0013475418090820312,
0.011871337890625,
-0.035736083984375,
-0.0479736328125,
-0.02435302734375,
-0.0330810546875,
-0.0037326812744140625,
-0.0031833648681640625,
-0.024810791015625,
-0.032318115234375,
0.052764892578125,
-0.002689361572265625,
0.03033447265625,
0.021453857421875,
0.0014486312866210938,
-0.00986480712890625,
0.0012998580932617188,
0.03509521484375,
0.03936767578125,
-0.038543701171875,
-0.010009765625,
-0.0005922317504882812,
-0.05462646484375,
-0.01134490966796875,
0.034149169921875,
-0.0201263427734375,
-0.00707244873046875,
0.031982421875,
0.0440673828125,
-0.0006871223449707031,
-0.03729248046875,
0.035736083984375,
-0.02239990234375,
-0.044219970703125,
-0.0308990478515625,
0.0023670196533203125,
0.0122833251953125,
0.01284027099609375,
0.00527191162109375,
-0.01105499267578125,
0.0041961669921875,
-0.026824951171875,
0.019561767578125,
0.005069732666015625,
-0.003627777099609375,
-0.029327392578125,
0.0491943359375,
0.00302886962890625,
-0.01425933837890625,
0.039581298828125,
-0.020263671875,
-0.032470703125,
0.059844970703125,
0.01299285888671875,
0.050628662109375,
0.0001251697540283203,
0.016143798828125,
0.06060791015625,
0.031585693359375,
-0.006374359130859375,
0.0611572265625,
-0.004482269287109375,
-0.047210693359375,
-0.0023860931396484375,
-0.047271728515625,
-0.021026611328125,
0.018341064453125,
-0.057037353515625,
0.020477294921875,
-0.039520263671875,
-0.01425933837890625,
0.011688232421875,
0.02734375,
-0.06585693359375,
0.017303466796875,
-0.01568603515625,
0.08203125,
-0.068603515625,
0.04302978515625,
0.06915283203125,
-0.06988525390625,
-0.0660400390625,
-0.0174713134765625,
0.005680084228515625,
-0.037078857421875,
0.0188446044921875,
-0.00444793701171875,
0.029541015625,
0.006229400634765625,
-0.0582275390625,
-0.07440185546875,
0.10394287109375,
0.0018377304077148438,
-0.0239715576171875,
0.01241302490234375,
0.01410675048828125,
0.043975830078125,
-0.01142120361328125,
0.0214385986328125,
0.044769287109375,
0.053558349609375,
0.006195068359375,
-0.054779052734375,
0.013763427734375,
-0.04730224609375,
-0.0261688232421875,
0.01461029052734375,
-0.06048583984375,
0.06463623046875,
-0.003047943115234375,
-0.00696563720703125,
-0.0175933837890625,
0.041229248046875,
0.020782470703125,
0.0209503173828125,
0.02862548828125,
0.061859130859375,
0.07525634765625,
-0.0184478759765625,
0.08441162109375,
-0.03387451171875,
0.029754638671875,
0.07177734375,
-0.00925445556640625,
0.0572509765625,
0.0204315185546875,
-0.034332275390625,
0.029266357421875,
0.053466796875,
-0.0228424072265625,
0.03143310546875,
0.00943756103515625,
0.00334930419921875,
0.0009164810180664062,
0.01052093505859375,
-0.03753662109375,
0.02252197265625,
0.031646728515625,
-0.011138916015625,
-0.004375457763671875,
-0.00386810302734375,
0.00263214111328125,
-0.007602691650390625,
-0.007686614990234375,
0.05743408203125,
-0.01552581787109375,
-0.0289764404296875,
0.05078125,
-0.0030517578125,
0.045318603515625,
-0.050048828125,
-0.00560760498046875,
-0.0224761962890625,
-0.001834869384765625,
-0.0291595458984375,
-0.09503173828125,
0.031005859375,
-0.007373809814453125,
-0.03814697265625,
-0.01013946533203125,
0.0426025390625,
-0.0264892578125,
-0.04803466796875,
0.01123046875,
0.033538818359375,
0.020355224609375,
0.0216827392578125,
-0.081298828125,
0.0192718505859375,
0.003932952880859375,
-0.03729248046875,
0.026702880859375,
0.035888671875,
0.00016760826110839844,
0.0426025390625,
0.053619384765625,
-0.002471923828125,
-0.000022649765014648438,
-0.000293731689453125,
0.06976318359375,
-0.058441162109375,
-0.0249481201171875,
-0.0299224853515625,
0.048126220703125,
-0.01105499267578125,
-0.0350341796875,
0.052032470703125,
0.064208984375,
0.0753173828125,
0.003978729248046875,
0.0711669921875,
-0.0450439453125,
0.057342529296875,
-0.0297088623046875,
0.054290771484375,
-0.05810546875,
0.01239013671875,
-0.0168304443359375,
-0.04315185546875,
-0.0200042724609375,
0.03509521484375,
-0.015625,
0.0059051513671875,
0.038238525390625,
0.07659912109375,
-0.0009613037109375,
0.014404296875,
-0.007663726806640625,
0.0183563232421875,
0.0199127197265625,
0.04119873046875,
0.0244140625,
-0.059783935546875,
0.047454833984375,
-0.0440673828125,
-0.006793975830078125,
0.004009246826171875,
-0.056243896484375,
-0.0665283203125,
-0.0794677734375,
-0.0293731689453125,
-0.0479736328125,
-0.00969696044921875,
0.0609130859375,
0.037445068359375,
-0.068115234375,
-0.01873779296875,
0.0003974437713623047,
0.009490966796875,
-0.012176513671875,
-0.024078369140625,
0.054168701171875,
0.0107269287109375,
-0.034210205078125,
0.0014486312866210938,
-0.005786895751953125,
-0.00698089599609375,
-0.01137542724609375,
-0.0077362060546875,
-0.0328369140625,
-0.00241851806640625,
0.035491943359375,
0.033966064453125,
-0.0264129638671875,
-0.00930023193359375,
0.011260986328125,
-0.0014200210571289062,
0.01468658447265625,
0.0193939208984375,
-0.04168701171875,
0.0287017822265625,
0.0526123046875,
0.0241546630859375,
0.05615234375,
0.0016183853149414062,
0.013671875,
-0.04461669921875,
-0.004459381103515625,
0.01186370849609375,
0.0171966552734375,
0.03143310546875,
-0.0308990478515625,
0.05450439453125,
0.020904541015625,
-0.04150390625,
-0.05963134765625,
-0.015838623046875,
-0.092529296875,
-0.00439453125,
0.0830078125,
0.002124786376953125,
-0.044281005859375,
-0.00812530517578125,
-0.0185089111328125,
0.0077056884765625,
-0.03692626953125,
0.03619384765625,
0.060882568359375,
-0.00612640380859375,
-0.01058197021484375,
-0.05731201171875,
0.038909912109375,
-0.004993438720703125,
-0.07537841796875,
0.005092620849609375,
0.04254150390625,
0.042694091796875,
0.0204315185546875,
0.060302734375,
-0.032745361328125,
0.0100250244140625,
0.009063720703125,
0.0262908935546875,
-0.02178955078125,
0.00001913309097290039,
-0.0193939208984375,
-0.001522064208984375,
-0.01776123046875,
-0.01099395751953125
]
] |
cs_restaurants | 2022-11-18T19:49:56.000Z | [
"task_categories:text2text-generation",
"task_categories:text-generation",
"task_categories:fill-mask",
"task_ids:dialogue-modeling",
"task_ids:language-modeling",
"task_ids:masked-language-modeling",
"annotations_creators:found",
"language_creators:expert-generated",
"language_creators:machine-generated",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:extended|other-san-francisco-restaurants",
"language:cs",
"license:cc-by-4.0",
"intent-to-text",
"arxiv:1910.05298",
"region:us"
] | null | This is a dataset for NLG in task-oriented spoken dialogue systems with Czech as the target language. It originated as
a translation of the English San Francisco Restaurants dataset by Wen et al. (2015). | @article{DBLP:journals/corr/abs-1910-05298,
author = {Ondrej Dusek and
Filip Jurcicek},
title = {Neural Generation for Czech: Data and Baselines},
journal = {CoRR},
volume = {abs/1910.05298},
year = {2019},
url = {http://arxiv.org/abs/1910.05298},
archivePrefix = {arXiv},
eprint = {1910.05298},
timestamp = {Wed, 16 Oct 2019 16:25:53 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1910-05298.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
} | 1 | 1,098 | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- expert-generated
- machine-generated
language:
- cs
license:
- cc-by-4.0
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- extended|other-san-francisco-restaurants
task_categories:
- text2text-generation
- text-generation
- fill-mask
task_ids:
- dialogue-modeling
- language-modeling
- masked-language-modeling
paperswithcode_id: czech-restaurant-information
pretty_name: Czech Restaurant
tags:
- intent-to-text
dataset_info:
features:
- name: dialogue_act
dtype: string
- name: delexicalized_dialogue_act
dtype: string
- name: text
dtype: string
- name: delexicalized_text
dtype: string
config_name: CSRestaurants
splits:
- name: train
num_bytes: 654071
num_examples: 3569
- name: validation
num_bytes: 181528
num_examples: 781
- name: test
num_bytes: 191334
num_examples: 842
download_size: 1463019
dataset_size: 1026933
---
# Dataset Card for Czech Restaurant
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Repository:** [Czech restaurants homepage](https://github.com/UFAL-DSG/cs_restaurant_dataset)
- **Paper:** [Czech restaurants on Arxiv](https://arxiv.org/abs/1910.05298)
### Dataset Summary
This is a dataset for NLG in task-oriented spoken dialogue systems with Czech as the target language. It originated as a translation of the [English San Francisco Restaurants dataset](https://www.repository.cam.ac.uk/handle/1810/251304) by Wen et al. (2015). The domain is restaurant information in Prague, with random/fictional values. It includes input dialogue acts and the corresponding outputs in Czech.
### Supported Tasks and Leaderboards
- `other-intent-to-text`: The dataset can be used to train a model for data-to-text generation: from a desired dialogue act, the model must produce textual output that conveys this intention.
### Languages
The entire dataset is in Czech, translated from the English San Francisco dataset by professional translators.
## Dataset Structure
### Data Instances
Example of a data instance:
```
{
"da": "?request(area)",
"delex_da": "?request(area)",
"text": "Jakou lokalitu hledáte ?",
"delex_text": "Jakou lokalitu hledáte ?"
}
```
### Data Fields
- `da`: input dialogue act
- `delex_da`: input dialogue act, delexicalized
- `text`: output text
- `delex_text`: output text, delexicalized
### Data Splits
The order of the instances is random; the split is roughly 3:1:1 between train, development, and test, ensuring that the different sections don't share the same DAs (so the generators need to generalize to unseen DAs), but they share as many generic different DA types as possible (e.g., confirm, inform_only_match etc.). DA types that only have a single corresponding DA (e.g., bye()) are included in the training set.
The training, development, and test set contain 3569, 781, and 842 instances, respectively.
## Dataset Creation
### Curation Rationale
While most current neural NLG systems do not explicitly contain language-specific components and are thus capable of multilingual generation in principle, there has been little work to test these capabilities experimentally. This goes hand in hand with the scarcity of non-English training datasets for NLG – the only data-to-text NLG set known to us is a small sportscasting Korean dataset (Chenet al., 2010), which only contains a limited number of named entities, reducing the need for their inflection. Since most generators are only tested on English, they do not need to handle grammar complexities not present in English. A prime example is the delexicalization technique used by most current generators. We create a novel dataset for Czech delexicalized generation; this extends the typical task of data-to-text NLG by requiring attribute value inflection. We choose Czech as an example of a morphologically complex language with a large set of NLP tools readily available.
### Source Data
#### Initial Data Collection and Normalization
The original data was collected from the [English San Francisco Restaurants dataset](https://www.repository.cam.ac.uk/handle/1810/251304) by Wen et al. (2015).
#### Who are the source language producers?
The original data was produced in interactions between Amazon Mechanical Turk workers and themed around San Francisco restaurants. This data was then translated into Czech and localized to Prague restaurants by professional translators.
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
This data does not contain personal information.
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
Ondřej Dušek, Filip Jurčíček, Josef Dvořák, Petra Grycová, Matěj Hejda, Jana Olivová, Michal Starý, Eva Štichová, Charles University. This work was funded by the Ministry of Education, Youth and Sports of the Czech Republic under the grant agreement LK11221 and core research funding, SVV project 260 333, and GAUK grant 2058214 of Charles University in Prague. It used language resources stored and distributed by the LINDAT/CLARIN project of the Ministry of Education, Youth and Sports of the Czech Republic (project LM2015071).
### Licensing Information
[Creative Commons 4.0 BY-SA](https://creativecommons.org/licenses/by-sa/4.0/)
### Citation Information
```
@article{DBLP:journals/corr/abs-1910-05298,
author = {Ondrej Dusek and
Filip Jurcicek},
title = {Neural Generation for Czech: Data and Baselines},
journal = {CoRR},
volume = {abs/1910.05298},
year = {2019},
url = {http://arxiv.org/abs/1910.05298},
archivePrefix = {arXiv},
eprint = {1910.05298},
timestamp = {Wed, 16 Oct 2019 16:25:53 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1910-05298.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
```
### Contributions
Thanks to [@TevenLeScao](https://github.com/TevenLeScao) for adding this dataset. | 7,303 | [
[
-0.018707275390625,
-0.06890869140625,
0.0162506103515625,
0.0145416259765625,
-0.033203125,
-0.0010900497436523438,
-0.0411376953125,
-0.028045654296875,
0.01434326171875,
0.038177490234375,
-0.0677490234375,
-0.08148193359375,
-0.0240325927734375,
0.032867431640625,
-0.00229644775390625,
0.08355712890625,
-0.0013036727905273438,
0.027435302734375,
-0.00740814208984375,
-0.00861358642578125,
-0.032318115234375,
-0.047637939453125,
-0.0477294921875,
-0.0196990966796875,
0.0229339599609375,
0.0295562744140625,
0.028045654296875,
0.0372314453125,
0.005157470703125,
0.02227783203125,
-0.0087890625,
0.02362060546875,
-0.035308837890625,
0.01401519775390625,
-0.0045013427734375,
-0.028350830078125,
-0.034759521484375,
-0.01059722900390625,
0.04150390625,
0.0660400390625,
-0.0010175704956054688,
0.0200653076171875,
0.014190673828125,
0.06256103515625,
-0.0052490234375,
0.037811279296875,
-0.047332763671875,
0.0046539306640625,
-0.0143890380859375,
-0.0144500732421875,
-0.036956787109375,
-0.043212890625,
-0.0105743408203125,
-0.0523681640625,
0.01337432861328125,
0.003116607666015625,
0.063720703125,
0.002712249755859375,
-0.032318115234375,
-0.0168304443359375,
-0.06396484375,
0.0562744140625,
-0.07025146484375,
0.01361083984375,
0.0292510986328125,
0.0041046142578125,
-0.0182037353515625,
-0.042144775390625,
-0.053558349609375,
-0.007030487060546875,
-0.005687713623046875,
0.017120361328125,
-0.01262664794921875,
-0.0158538818359375,
0.0341796875,
0.0178985595703125,
-0.052978515625,
-0.00449371337890625,
-0.03515625,
0.0184326171875,
0.0550537109375,
0.027557373046875,
0.0165863037109375,
-0.0272369384765625,
-0.0218963623046875,
-0.0149688720703125,
-0.057159423828125,
-0.0006008148193359375,
0.052215576171875,
0.05694580078125,
-0.0135040283203125,
0.052520751953125,
-0.020721435546875,
0.04644775390625,
0.0129852294921875,
0.01654052734375,
0.0552978515625,
-0.06201171875,
-0.004207611083984375,
0.00905609130859375,
0.07666015625,
0.0284271240234375,
0.01515960693359375,
-0.00514984130859375,
0.0013570785522460938,
-0.0110321044921875,
0.0019741058349609375,
-0.046173095703125,
-0.01806640625,
0.01273345947265625,
-0.0261688232421875,
-0.02838134765625,
0.006031036376953125,
-0.06597900390625,
0.00022983551025390625,
-0.0241241455078125,
0.01551055908203125,
-0.027923583984375,
-0.0236968994140625,
0.00482177734375,
-0.00807952880859375,
0.0253143310546875,
0.005352020263671875,
-0.07513427734375,
0.0212860107421875,
0.026580810546875,
0.0380859375,
-0.00811767578125,
-0.00609588623046875,
-0.00730133056640625,
0.00881195068359375,
-0.02838134765625,
0.046600341796875,
-0.019622802734375,
-0.0188446044921875,
0.0148162841796875,
0.0201263427734375,
-0.00586700439453125,
-0.043212890625,
0.058349609375,
-0.0186920166015625,
0.03692626953125,
-0.0295257568359375,
-0.03173828125,
-0.006439208984375,
0.016082763671875,
-0.052398681640625,
0.0992431640625,
0.0259857177734375,
-0.0574951171875,
0.06231689453125,
-0.035400390625,
-0.037689208984375,
0.020263671875,
-0.0244140625,
-0.032073974609375,
-0.005786895751953125,
0.0174407958984375,
0.0298919677734375,
-0.0242919921875,
0.025390625,
-0.016754150390625,
-0.00667572021484375,
0.01514434814453125,
-0.035430908203125,
0.08642578125,
0.00037288665771484375,
-0.0330810546875,
-0.0031185150146484375,
-0.0758056640625,
0.018524169921875,
0.01934814453125,
-0.0419921875,
-0.034759521484375,
0.00005155801773071289,
0.01354217529296875,
0.038177490234375,
0.017791748046875,
-0.04083251953125,
0.0113372802734375,
-0.051788330078125,
0.0247650146484375,
0.0462646484375,
0.006671905517578125,
0.026153564453125,
-0.00789642333984375,
0.03863525390625,
0.007663726806640625,
0.016937255859375,
0.003818511962890625,
-0.031646728515625,
-0.047027587890625,
-0.018096923828125,
0.028350830078125,
0.053009033203125,
-0.07098388671875,
0.0760498046875,
-0.03216552734375,
-0.035980224609375,
-0.036224365234375,
0.0068359375,
0.0267181396484375,
0.03173828125,
0.0243072509765625,
0.0016393661499023438,
-0.046539306640625,
-0.07379150390625,
0.00304412841796875,
-0.00580596923828125,
-0.00333404541015625,
0.045166015625,
0.03363037109375,
0.0119171142578125,
0.052001953125,
-0.040008544921875,
-0.0101470947265625,
-0.0460205078125,
-0.004344940185546875,
0.034912109375,
0.041473388671875,
0.04876708984375,
-0.06402587890625,
-0.060638427734375,
0.007778167724609375,
-0.06500244140625,
-0.004009246826171875,
-0.00921630859375,
-0.01450347900390625,
0.03509521484375,
0.01555633544921875,
-0.040283203125,
0.034454345703125,
0.044464111328125,
-0.048431396484375,
0.0528564453125,
-0.00528717041015625,
0.01861572265625,
-0.1097412109375,
0.01529693603515625,
-0.0098876953125,
-0.00005930662155151367,
-0.0509033203125,
-0.045074462890625,
-0.0189971923828125,
-0.004268646240234375,
-0.0286865234375,
0.0364990234375,
-0.02362060546875,
0.00695037841796875,
0.007144927978515625,
0.0093841552734375,
0.00923919677734375,
0.06439208984375,
-0.006580352783203125,
0.05078125,
0.04034423828125,
-0.046417236328125,
0.024505615234375,
0.042236328125,
-0.044403076171875,
0.04345703125,
-0.053680419921875,
-0.006473541259765625,
0.00040793418884277344,
0.0166015625,
-0.08544921875,
-0.0019512176513671875,
0.042144775390625,
-0.0469970703125,
0.0190887451171875,
-0.00257110595703125,
-0.06072998046875,
-0.036376953125,
-0.0195770263671875,
0.017059326171875,
0.0139617919921875,
-0.037750244140625,
0.03717041015625,
0.0156097412109375,
-0.022186279296875,
-0.040130615234375,
-0.0692138671875,
0.0022430419921875,
-0.0228729248046875,
-0.05181884765625,
0.02410888671875,
-0.020416259765625,
-0.01036834716796875,
0.00664520263671875,
-0.0008344650268554688,
-0.01145172119140625,
-0.01216888427734375,
0.00905609130859375,
0.026397705078125,
-0.01141357421875,
0.008544921875,
0.01520538330078125,
0.004634857177734375,
0.002559661865234375,
-0.01409149169921875,
0.05316162109375,
0.005802154541015625,
0.00720977783203125,
-0.035400390625,
0.040863037109375,
0.0216064453125,
-0.0034027099609375,
0.067626953125,
0.0494384765625,
-0.0217742919921875,
-0.0305023193359375,
-0.0174713134765625,
-0.01294708251953125,
-0.038116455078125,
0.040740966796875,
-0.014801025390625,
-0.05078125,
0.063720703125,
0.009735107421875,
0.011810302734375,
0.043426513671875,
0.044036865234375,
0.0064849853515625,
0.0693359375,
0.02593994140625,
0.0183563232421875,
0.041473388671875,
-0.032257080078125,
0.01346588134765625,
-0.05645751953125,
-0.040130615234375,
-0.049346923828125,
-0.00978851318359375,
-0.06500244140625,
-0.01561737060546875,
0.004913330078125,
-0.0057830810546875,
-0.00916290283203125,
0.042572021484375,
-0.037139892578125,
0.0263519287109375,
0.037506103515625,
0.01265716552734375,
0.01058197021484375,
0.007625579833984375,
-0.01554107666015625,
-0.01568603515625,
-0.06927490234375,
-0.0435791015625,
0.0758056640625,
-0.0027523040771484375,
0.045135498046875,
0.003574371337890625,
0.054931640625,
0.01397705078125,
-0.003795623779296875,
-0.042755126953125,
0.050079345703125,
-0.0275421142578125,
-0.06353759765625,
-0.036346435546875,
-0.0521240234375,
-0.08746337890625,
0.004459381103515625,
-0.02978515625,
-0.04498291015625,
0.027862548828125,
0.01497650146484375,
-0.017120361328125,
0.0221099853515625,
-0.054046630859375,
0.06494140625,
-0.016815185546875,
-0.03857421875,
0.001598358154296875,
-0.040283203125,
0.0164031982421875,
0.0012865066528320312,
0.0091552734375,
-0.0060882568359375,
0.022796630859375,
0.062469482421875,
-0.0291748046875,
0.07373046875,
-0.0191192626953125,
-0.01385498046875,
0.0297088623046875,
-0.017791748046875,
0.04388427734375,
0.0085296630859375,
-0.0121917724609375,
0.02020263671875,
-0.0159454345703125,
-0.014892578125,
-0.039764404296875,
0.061187744140625,
-0.047332763671875,
-0.0200653076171875,
-0.024078369140625,
-0.0291595458984375,
-0.00867462158203125,
0.0246734619140625,
0.0255889892578125,
0.0305938720703125,
-0.0273895263671875,
0.0247650146484375,
0.048431396484375,
-0.036102294921875,
0.0251922607421875,
0.0249786376953125,
0.0016498565673828125,
-0.057891845703125,
0.04815673828125,
0.028289794921875,
0.01479339599609375,
0.0235748291015625,
-0.0005831718444824219,
-0.0289764404296875,
-0.02008056640625,
-0.036712646484375,
0.0156097412109375,
-0.042877197265625,
-0.0245361328125,
-0.04022216796875,
-0.0148468017578125,
-0.036285400390625,
-0.00836181640625,
-0.0219573974609375,
-0.047821044921875,
-0.033935546875,
-0.0343017578125,
0.0274658203125,
0.048431396484375,
-0.0146331787109375,
0.01318359375,
-0.0271453857421875,
-0.000030517578125,
0.01309967041015625,
0.0280609130859375,
-0.0005693435668945312,
-0.0298919677734375,
-0.0433349609375,
-0.0009984970092773438,
-0.01861572265625,
-0.06280517578125,
0.043853759765625,
0.0011720657348632812,
0.049957275390625,
0.019134521484375,
0.004779815673828125,
0.0213470458984375,
-0.040435791015625,
0.0772705078125,
0.0179595947265625,
-0.049224853515625,
0.04095458984375,
-0.046356201171875,
0.02667236328125,
0.068603515625,
0.0180511474609375,
-0.03216552734375,
-0.02227783203125,
-0.05584716796875,
-0.10809326171875,
0.06866455078125,
0.0236968994140625,
0.028228759765625,
-0.0257110595703125,
0.0251617431640625,
0.0221099853515625,
0.0252227783203125,
-0.080322265625,
-0.044891357421875,
-0.01093292236328125,
-0.0198974609375,
0.0134429931640625,
-0.01200103759765625,
-0.016357421875,
-0.0254974365234375,
0.05731201171875,
0.014892578125,
0.03704833984375,
0.002532958984375,
0.0183258056640625,
-0.00833892822265625,
0.0290985107421875,
0.051605224609375,
0.047760009765625,
-0.0168914794921875,
-0.00536346435546875,
0.0241241455078125,
-0.038360595703125,
0.0039043426513671875,
0.00693511962890625,
-0.0275421142578125,
0.0184173583984375,
0.0130767822265625,
0.07940673828125,
0.0118408203125,
-0.039031982421875,
0.036956787109375,
-0.007343292236328125,
-0.047027587890625,
-0.049468994140625,
0.0026397705078125,
-0.00916290283203125,
0.0162506103515625,
0.034576416015625,
-0.01010894775390625,
0.0034046173095703125,
-0.0300140380859375,
0.022705078125,
0.017486572265625,
-0.0192718505859375,
-0.038848876953125,
0.03759765625,
0.01690673828125,
-0.0226593017578125,
0.04815673828125,
-0.022064208984375,
-0.0262908935546875,
0.042877197265625,
0.0509033203125,
0.07513427734375,
-0.01201629638671875,
0.03173828125,
0.07135009765625,
0.026031494140625,
0.00872802734375,
0.040802001953125,
-0.004367828369140625,
-0.0552978515625,
-0.036376953125,
-0.03326416015625,
0.00373077392578125,
0.024627685546875,
-0.06109619140625,
0.025115966796875,
-0.023406982421875,
-0.0274658203125,
-0.007843017578125,
0.0168914794921875,
-0.0616455078125,
0.01141357421875,
0.00876617431640625,
0.057830810546875,
-0.0849609375,
0.048828125,
0.036651611328125,
-0.037872314453125,
-0.048919677734375,
-0.0098114013671875,
-0.0180206298828125,
-0.039947509765625,
0.058837890625,
-0.0032291412353515625,
0.012451171875,
-0.010101318359375,
-0.055084228515625,
-0.061492919921875,
0.0826416015625,
0.01403045654296875,
-0.0338134765625,
-0.0037899017333984375,
0.021209716796875,
0.052978515625,
-0.036956787109375,
-0.0074310302734375,
0.0287628173828125,
0.04461669921875,
-0.00030541419982910156,
-0.046295166015625,
0.01360321044921875,
-0.0262908935546875,
-0.005535125732421875,
0.007785797119140625,
-0.050445556640625,
0.0487060546875,
-0.0037555694580078125,
-0.0181427001953125,
-0.00984954833984375,
0.039276123046875,
0.0247650146484375,
0.01715087890625,
0.029510498046875,
0.042633056640625,
0.048431396484375,
-0.01220703125,
0.0548095703125,
-0.0269317626953125,
0.014923095703125,
0.09771728515625,
-0.0137786865234375,
0.051971435546875,
0.0311737060546875,
-0.01515960693359375,
0.040924072265625,
0.03912353515625,
-0.02410888671875,
0.058502197265625,
0.0172271728515625,
-0.0183258056640625,
-0.0017385482788085938,
-0.008514404296875,
-0.0193634033203125,
0.0313720703125,
0.0241241455078125,
-0.052703857421875,
-0.004215240478515625,
0.0001518726348876953,
0.0227813720703125,
0.005580902099609375,
-0.0021877288818359375,
0.07080078125,
-0.0078887939453125,
-0.036102294921875,
0.039825439453125,
-0.016876220703125,
0.037750244140625,
-0.0546875,
-0.00868988037109375,
-0.0128173828125,
-0.004058837890625,
-0.0113983154296875,
-0.059814453125,
0.020416259765625,
0.008544921875,
-0.033721923828125,
-0.0214080810546875,
0.0250244140625,
-0.057952880859375,
-0.047454833984375,
0.0245361328125,
0.030853271484375,
0.01102447509765625,
0.0328369140625,
-0.054290771484375,
0.001987457275390625,
0.0252532958984375,
-0.03533935546875,
0.00821685791015625,
0.06439208984375,
0.01068878173828125,
0.0142974853515625,
0.036712646484375,
0.017852783203125,
0.0086212158203125,
0.0113983154296875,
0.07916259765625,
-0.04852294921875,
-0.0278167724609375,
-0.056488037109375,
0.052398681640625,
-0.022064208984375,
-0.043609619140625,
0.07080078125,
0.06500244140625,
0.08343505859375,
-0.01468658447265625,
0.07574462890625,
-0.0301971435546875,
0.03045654296875,
-0.035491943359375,
0.04620361328125,
-0.035797119140625,
0.003238677978515625,
-0.0300140380859375,
-0.0701904296875,
-0.0252532958984375,
0.04583740234375,
-0.026611328125,
0.0173797607421875,
0.044036865234375,
0.054473876953125,
0.0191802978515625,
-0.018524169921875,
0.02978515625,
0.028076171875,
0.0163116455078125,
0.03216552734375,
0.03424072265625,
-0.045928955078125,
0.052520751953125,
-0.014373779296875,
-0.013916015625,
-0.00439453125,
-0.04925537109375,
-0.07470703125,
-0.06109619140625,
-0.028228759765625,
-0.037872314453125,
-0.00539398193359375,
0.078125,
0.038848876953125,
-0.06231689453125,
-0.013336181640625,
-0.001041412353515625,
-0.0068359375,
-0.040069580078125,
-0.017730712890625,
0.043212890625,
-0.0121307373046875,
-0.059112548828125,
0.01727294921875,
0.003185272216796875,
0.00344085693359375,
-0.0086212158203125,
-0.003101348876953125,
-0.028900146484375,
0.0087127685546875,
0.0546875,
0.0200042724609375,
-0.0289154052734375,
-0.002101898193359375,
0.01540374755859375,
-0.004932403564453125,
0.0184326171875,
0.031585693359375,
-0.0330810546875,
0.031463623046875,
0.041656494140625,
0.01242828369140625,
0.036468505859375,
0.0008993148803710938,
0.03497314453125,
-0.078125,
0.01165771484375,
0.0193634033203125,
0.0096282958984375,
0.0323486328125,
-0.04345703125,
0.038055419921875,
0.01247406005859375,
-0.044830322265625,
-0.0592041015625,
0.00222015380859375,
-0.08477783203125,
-0.0103912353515625,
0.1068115234375,
-0.001987457275390625,
-0.02691650390625,
-0.0131988525390625,
-0.00907135009765625,
0.036865234375,
-0.043731689453125,
0.0670166015625,
0.0640869140625,
-0.002315521240234375,
0.004512786865234375,
-0.049530029296875,
0.052581787109375,
0.0084075927734375,
-0.07623291015625,
0.03765869140625,
0.04803466796875,
0.0178070068359375,
0.0016269683837890625,
0.048065185546875,
-0.023345947265625,
0.0028972625732421875,
-0.0003082752227783203,
0.034454345703125,
0.0011358261108398438,
-0.021026611328125,
-0.023529052734375,
-0.00656890869140625,
-0.019317626953125,
-0.00887298583984375
]
] |
CShorten/ML-ArXiv-Papers | 2022-06-27T12:15:11.000Z | [
"license:afl-3.0",
"region:us"
] | CShorten | null | null | 17 | 1,097 | 2022-06-23T14:31:39 | ---
license: afl-3.0
---
This dataset contains the subset of ArXiv papers with the "cs.LG" tag to indicate the paper is about Machine Learning.
The core dataset is filtered from the full ArXiv dataset hosted on Kaggle: https://www.kaggle.com/datasets/Cornell-University/arxiv. The original dataset contains roughly 2 million papers. This dataset contains roughly 100,000 papers following the category filtering.
The dataset is maintained by with requests to the ArXiv API.
The current iteration of the dataset only contains the title and abstract of the paper.
The ArXiv dataset contains additional features that we may look to include in future releases. We have highlighted the top two features on the roadmap for integration:
<ul>
<li> <b>authors</b> </li>
<li> <b>update_date</b> </li>
<li> Submitter </li>
<li> Comments </li>
<li> Journal-ref </li>
<li> doi </li>
<li> report-no </li>
<li> categories </li>
<li> license </li>
<li> versions </li>
<li> authors_parsed </li>
</ul> | 986 | [
[
-0.0360107421875,
-0.03131103515625,
0.0251007080078125,
-0.0174713134765625,
-0.003875732421875,
0.0189361572265625,
0.0022830963134765625,
-0.0168609619140625,
-0.01294708251953125,
0.050201416015625,
-0.021575927734375,
-0.04864501953125,
-0.042510986328125,
-0.000020205974578857422,
-0.033660888671875,
0.10546875,
0.0165252685546875,
-0.013458251953125,
-0.0294647216796875,
-0.0142822265625,
-0.0089263916015625,
-0.041839599609375,
-0.03082275390625,
-0.036376953125,
0.062286376953125,
0.022216796875,
0.040252685546875,
0.08306884765625,
0.04534912109375,
0.007045745849609375,
-0.006404876708984375,
0.0013742446899414062,
-0.0179443359375,
-0.0229949951171875,
-0.01367950439453125,
-0.0245208740234375,
-0.03973388671875,
0.019317626953125,
0.06036376953125,
0.05072021484375,
0.0079803466796875,
0.02850341796875,
0.0283966064453125,
0.08111572265625,
-0.055084228515625,
0.0050506591796875,
-0.038421630859375,
0.0104827880859375,
-0.0030803680419921875,
0.01197052001953125,
-0.03466796875,
-0.015380859375,
0.0030536651611328125,
-0.024322509765625,
0.0063323974609375,
0.0071563720703125,
0.07025146484375,
0.030792236328125,
-0.0396728515625,
-0.01222991943359375,
-0.01995849609375,
0.051849365234375,
-0.0221099853515625,
0.013427734375,
0.0355224609375,
0.01215362548828125,
-0.019317626953125,
-0.05108642578125,
-0.01486968994140625,
-0.01088714599609375,
-0.020111083984375,
0.00446319580078125,
-0.04608154296875,
-0.008697509765625,
0.01258087158203125,
0.0246429443359375,
-0.08251953125,
0.00018846988677978516,
-0.050506591796875,
0.002834320068359375,
0.05279541015625,
-0.00994873046875,
-0.0199127197265625,
0.0034313201904296875,
-0.02069091796875,
-0.015411376953125,
-0.0245208740234375,
0.01010894775390625,
0.033721923828125,
0.0259246826171875,
-0.002593994140625,
0.027618408203125,
-0.00647735595703125,
0.08258056640625,
-0.005054473876953125,
-0.0079803466796875,
0.0426025390625,
-0.00412750244140625,
-0.039093017578125,
0.0037288665771484375,
0.05108642578125,
0.00621795654296875,
-0.0108489990234375,
-0.0185699462890625,
0.00685882568359375,
-0.02850341796875,
0.0117034912109375,
-0.043609619140625,
-0.035888671875,
0.026580810546875,
-0.06768798828125,
-0.0313720703125,
0.030731201171875,
-0.04693603515625,
-0.050750732421875,
-0.041656494140625,
-0.00597381591796875,
-0.005214691162109375,
-0.02252197265625,
-0.0157470703125,
-0.00919342041015625,
0.020965576171875,
0.00489044189453125,
-0.01983642578125,
0.0252227783203125,
0.06036376953125,
0.05908203125,
-0.027130126953125,
-0.0061187744140625,
-0.040985107421875,
-0.007297515869140625,
-0.012115478515625,
0.06884765625,
-0.055450439453125,
-0.045440673828125,
-0.00714874267578125,
0.030853271484375,
-0.0036907196044921875,
-0.042572021484375,
0.0755615234375,
-0.033111572265625,
0.006214141845703125,
-0.031646728515625,
-0.02886962890625,
-0.0439453125,
0.034149169921875,
-0.04754638671875,
0.0821533203125,
0.0012073516845703125,
-0.0469970703125,
0.0269012451171875,
-0.043792724609375,
-0.02239990234375,
0.004486083984375,
-0.00316619873046875,
-0.0523681640625,
-0.025787353515625,
0.0161590576171875,
0.041595458984375,
-0.0117034912109375,
0.01091766357421875,
-0.0325927734375,
-0.0217742919921875,
0.01015472412109375,
0.01039886474609375,
0.0628662109375,
0.0572509765625,
0.00565338134765625,
-0.0008683204650878906,
-0.08721923828125,
0.0126800537109375,
-0.00562286376953125,
-0.03314208984375,
-0.01184844970703125,
0.0024662017822265625,
0.0215911865234375,
0.0007562637329101562,
0.02276611328125,
-0.01500701904296875,
0.056549072265625,
0.0210113525390625,
0.033447265625,
0.0513916015625,
0.00514984130859375,
0.03765869140625,
-0.034149169921875,
0.046539306640625,
0.01096343994140625,
0.006824493408203125,
-0.016448974609375,
-0.041656494140625,
-0.041595458984375,
-0.020111083984375,
0.0421142578125,
0.057342529296875,
-0.0167388916015625,
0.0565185546875,
-0.01114654541015625,
-0.07611083984375,
-0.0217742919921875,
0.002685546875,
0.023193359375,
0.045928955078125,
0.020965576171875,
0.0191497802734375,
-0.03277587890625,
-0.08343505859375,
-0.017242431640625,
0.00571441650390625,
0.00902557373046875,
0.04022216796875,
0.0654296875,
-0.0274658203125,
0.05938720703125,
-0.045074462890625,
-0.0214996337890625,
0.0154876708984375,
0.0256500244140625,
0.04022216796875,
0.039031982421875,
0.03973388671875,
-0.0789794921875,
-0.036102294921875,
0.0260162353515625,
-0.044647216796875,
-0.0038700103759765625,
-0.0225372314453125,
-0.014892578125,
0.0207977294921875,
0.032958984375,
0.004154205322265625,
0.043853759765625,
0.041748046875,
-0.0216217041015625,
0.02032470703125,
-0.004482269287109375,
0.029266357421875,
-0.083740234375,
0.041015625,
0.0220184326171875,
0.00010102987289428711,
-0.01934814453125,
-0.0137176513671875,
0.01250457763671875,
-0.0129241943359375,
-0.02996826171875,
0.0308990478515625,
-0.0281524658203125,
-0.0148162841796875,
-0.01401519775390625,
-0.00690460205078125,
0.00664520263671875,
0.03216552734375,
-0.0098114013671875,
0.058013916015625,
0.054412841796875,
-0.0595703125,
0.0205841064453125,
0.007495880126953125,
-0.008270263671875,
0.035888671875,
-0.04425048828125,
0.0199127197265625,
-0.0028171539306640625,
0.03961181640625,
-0.04742431640625,
-0.01534271240234375,
0.04718017578125,
-0.045684814453125,
-0.0030155181884765625,
-0.0433349609375,
-0.04803466796875,
-0.0230560302734375,
-0.01003265380859375,
0.01074981689453125,
0.039947509765625,
-0.02923583984375,
0.0367431640625,
0.02325439453125,
0.022247314453125,
-0.0626220703125,
-0.06256103515625,
0.01275634765625,
-0.01593017578125,
-0.03131103515625,
0.0105438232421875,
-0.0010471343994140625,
-0.006008148193359375,
0.035888671875,
0.0258331298828125,
-0.0153656005859375,
-0.007625579833984375,
0.0223846435546875,
0.004528045654296875,
0.0024261474609375,
0.0248870849609375,
-0.0152587890625,
0.00028634071350097656,
-0.0079498291015625,
-0.04547119140625,
0.024810791015625,
-0.02252197265625,
-0.0207061767578125,
-0.0246429443359375,
0.0239105224609375,
0.0240631103515625,
-0.0197601318359375,
0.04364013671875,
0.057769775390625,
-0.03375244140625,
-0.007476806640625,
-0.0131072998046875,
0.01297760009765625,
-0.02752685546875,
0.0190277099609375,
-0.022857666015625,
-0.0582275390625,
0.054656982421875,
0.0088653564453125,
0.01068878173828125,
0.059722900390625,
0.0202789306640625,
-0.016143798828125,
0.0650634765625,
0.033782958984375,
-0.01200103759765625,
0.0293121337890625,
-0.036224365234375,
0.016876220703125,
-0.073486328125,
-0.027435302734375,
-0.07391357421875,
-0.04315185546875,
-0.076171875,
-0.0006551742553710938,
0.02581787109375,
-0.002399444580078125,
-0.03863525390625,
0.029083251953125,
-0.08538818359375,
0.029266357421875,
0.0712890625,
0.01216888427734375,
0.01189422607421875,
0.008636474609375,
0.020111083984375,
0.019989013671875,
-0.043182373046875,
-0.038330078125,
0.091552734375,
0.00954437255859375,
0.049163818359375,
-0.010040283203125,
0.042694091796875,
0.057830810546875,
-0.01031494140625,
-0.04522705078125,
0.041229248046875,
-0.018798828125,
-0.049560546875,
0.02703857421875,
-0.0272979736328125,
-0.0921630859375,
-0.01128387451171875,
-0.0219268798828125,
-0.046539306640625,
0.03887939453125,
0.017791748046875,
-0.01497650146484375,
0.03704833984375,
-0.046356201171875,
0.05157470703125,
-0.01293182373046875,
-0.0262908935546875,
0.012969970703125,
-0.044769287109375,
0.017333984375,
0.0032672882080078125,
0.01497650146484375,
0.01611328125,
0.004360198974609375,
0.06719970703125,
-0.01064300537109375,
0.045684814453125,
-0.0049591064453125,
0.0183258056640625,
0.048187255859375,
-0.020294189453125,
0.04498291015625,
-0.0190277099609375,
-0.000270843505859375,
0.0212554931640625,
0.004360198974609375,
-0.04498291015625,
-0.01551055908203125,
0.059600830078125,
-0.065673828125,
-0.020263671875,
-0.0743408203125,
-0.0335693359375,
0.009124755859375,
0.0267486572265625,
0.006450653076171875,
0.00592041015625,
0.0191192626953125,
0.056182861328125,
0.07318115234375,
-0.01104736328125,
0.030487060546875,
-0.00511932373046875,
-0.016326904296875,
-0.042999267578125,
0.06781005859375,
0.0273590087890625,
-0.00847625732421875,
0.015594482421875,
0.01445770263671875,
-0.006465911865234375,
-0.04254150390625,
-0.005016326904296875,
0.0017547607421875,
-0.061431884765625,
-0.0179901123046875,
-0.06268310546875,
-0.026275634765625,
-0.0538330078125,
-0.025726318359375,
0.004215240478515625,
-0.0178070068359375,
-0.055755615234375,
0.006290435791015625,
0.039764404296875,
0.050323486328125,
-0.01739501953125,
0.03790283203125,
-0.06842041015625,
-0.0157470703125,
0.0078125,
0.00875091552734375,
-0.00595855712890625,
-0.03662109375,
-0.042449951171875,
-0.003143310546875,
-0.04107666015625,
-0.023681640625,
0.019561767578125,
0.00505828857421875,
0.042144775390625,
0.041717529296875,
0.00305938720703125,
0.036407470703125,
-0.01334381103515625,
0.0736083984375,
0.00278472900390625,
-0.03131103515625,
0.05279541015625,
-0.0615234375,
0.01067352294921875,
0.040679931640625,
0.03204345703125,
-0.0286865234375,
0.017852783203125,
-0.060028076171875,
-0.057037353515625,
0.0369873046875,
-0.003810882568359375,
-0.0232086181640625,
0.0272064208984375,
0.0452880859375,
0.0045623779296875,
0.016448974609375,
-0.05841064453125,
-0.03759765625,
-0.00501251220703125,
-0.0016355514526367188,
0.01468658447265625,
0.0027618408203125,
-0.02996826171875,
-0.0107421875,
0.0816650390625,
-0.009033203125,
0.0228424072265625,
0.0082855224609375,
0.0153961181640625,
0.01107025146484375,
0.012481689453125,
0.048248291015625,
0.0604248046875,
-0.0239410400390625,
0.0031909942626953125,
-0.01160430908203125,
-0.04132080078125,
-0.0212249755859375,
0.0074310302734375,
-0.015899658203125,
-0.020751953125,
0.0283966064453125,
0.0361328125,
-0.0321044921875,
-0.039581298828125,
0.005603790283203125,
0.01338958740234375,
-0.037017822265625,
-0.037200927734375,
0.0203857421875,
-0.024322509765625,
0.034027099609375,
0.05908203125,
0.03173828125,
0.03692626953125,
-0.0253753662109375,
0.0287628173828125,
0.019012451171875,
-0.0295867919921875,
-0.0018625259399414062,
0.048614501953125,
-0.0015172958374023438,
-0.019989013671875,
0.03466796875,
-0.031707763671875,
-0.036285400390625,
0.05572509765625,
0.0036716461181640625,
0.0657958984375,
0.03851318359375,
-0.002834320068359375,
0.05023193359375,
0.0203704833984375,
0.0026721954345703125,
0.007434844970703125,
0.0009503364562988281,
-0.025390625,
-0.0162200927734375,
-0.03167724609375,
-0.035369873046875,
0.039886474609375,
-0.066650390625,
0.045440673828125,
-0.0186767578125,
-0.01248931884765625,
-0.0024890899658203125,
0.023773193359375,
-0.041839599609375,
0.0269775390625,
0.01348876953125,
0.06689453125,
-0.06829833984375,
0.059478759765625,
0.07830810546875,
-0.036712646484375,
-0.018280029296875,
-0.01416778564453125,
-0.00006520748138427734,
-0.056915283203125,
0.039764404296875,
-0.006999969482421875,
0.0129852294921875,
-0.007396697998046875,
-0.0645751953125,
-0.0606689453125,
0.08203125,
-0.00836181640625,
-0.0293731689453125,
0.013641357421875,
0.005031585693359375,
0.0135498046875,
-0.0283966064453125,
-0.01317596435546875,
0.024169921875,
0.046844482421875,
0.01702880859375,
-0.03564453125,
-0.0200653076171875,
-0.035369873046875,
-0.01030731201171875,
0.0038242340087890625,
-0.059661865234375,
0.05316162109375,
0.01849365234375,
0.0176544189453125,
-0.0212554931640625,
0.048065185546875,
0.026885986328125,
0.032745361328125,
0.03570556640625,
0.07440185546875,
0.055511474609375,
-0.031524658203125,
0.05615234375,
-0.01328277587890625,
0.039093017578125,
0.08502197265625,
0.00621795654296875,
0.04168701171875,
0.0270233154296875,
-0.0208587646484375,
0.0276031494140625,
0.094482421875,
-0.047576904296875,
0.039337158203125,
0.008270263671875,
-0.00696563720703125,
-0.017303466796875,
-0.016448974609375,
-0.0391845703125,
0.01537322998046875,
0.0217742919921875,
-0.04754638671875,
-0.006511688232421875,
0.00577545166015625,
0.031005859375,
-0.01091766357421875,
-0.04107666015625,
0.0465087890625,
-0.01287841796875,
-0.0518798828125,
0.03143310546875,
-0.024200439453125,
0.0311279296875,
-0.0262298583984375,
-0.01019287109375,
-0.00420379638671875,
0.018768310546875,
-0.04425048828125,
-0.0791015625,
0.0212249755859375,
0.00133514404296875,
-0.040679931640625,
-0.019805908203125,
0.05120849609375,
-0.007793426513671875,
-0.057769775390625,
-0.007091522216796875,
0.0162506103515625,
0.026641845703125,
0.01465606689453125,
-0.06842041015625,
0.00678253173828125,
0.00960540771484375,
-0.0307159423828125,
0.032562255859375,
0.02557373046875,
-0.005077362060546875,
0.04168701171875,
0.06085205078125,
0.0002532005310058594,
-0.0008826255798339844,
-0.0281524658203125,
0.0694580078125,
-0.03619384765625,
-0.031280517578125,
-0.0465087890625,
0.05804443359375,
-0.0186767578125,
-0.0335693359375,
0.037200927734375,
0.06817626953125,
0.058868408203125,
0.01029205322265625,
0.09619140625,
-0.0303802490234375,
0.038238525390625,
-0.0150909423828125,
0.0643310546875,
-0.060394287109375,
-0.0075531005859375,
0.01165008544921875,
-0.062042236328125,
-0.038818359375,
0.04718017578125,
-0.007389068603515625,
0.01436614990234375,
0.031768798828125,
0.04058837890625,
-0.006824493408203125,
-0.01558685302734375,
0.014892578125,
-0.0006031990051269531,
0.031524658203125,
0.01465606689453125,
0.0117034912109375,
-0.04827880859375,
0.0595703125,
-0.018524169921875,
-0.02325439453125,
-0.021331787109375,
-0.09906005859375,
-0.0703125,
-0.06494140625,
-0.05712890625,
-0.04888916015625,
-0.0073089599609375,
0.04498291015625,
0.061798095703125,
-0.0721435546875,
0.0010919570922851562,
-0.006366729736328125,
0.00916290283203125,
-0.0190277099609375,
-0.0174102783203125,
0.06011962890625,
-0.00592803955078125,
-0.05694580078125,
0.004364013671875,
-0.0027942657470703125,
-0.01580810546875,
-0.009613037109375,
0.00272369384765625,
-0.0401611328125,
-0.0286712646484375,
0.01476287841796875,
0.03253173828125,
-0.0369873046875,
-0.020538330078125,
0.0158538818359375,
0.00499725341796875,
0.0167083740234375,
0.03546142578125,
-0.060546875,
0.0254058837890625,
0.0347900390625,
0.0577392578125,
0.02655029296875,
-0.0029144287109375,
-0.00878143310546875,
-0.0439453125,
0.006237030029296875,
0.0104217529296875,
0.0313720703125,
0.0029239654541015625,
-0.045989990234375,
0.061309814453125,
0.029327392578125,
-0.0859375,
-0.07696533203125,
-0.0142364501953125,
-0.0958251953125,
-0.007076263427734375,
0.09539794921875,
-0.01203155517578125,
-0.0263824462890625,
0.004547119140625,
-0.0052947998046875,
0.0203399658203125,
-0.046905517578125,
0.021484375,
0.06781005859375,
-0.034942626953125,
-0.0290374755859375,
-0.047607421875,
0.01983642578125,
-0.0230865478515625,
-0.060943603515625,
-0.00397491455078125,
0.027099609375,
-0.0004944801330566406,
0.017791748046875,
0.0013065338134765625,
0.00751495361328125,
0.01042938232421875,
-0.016693115234375,
0.026885986328125,
-0.019439697265625,
-0.0127105712890625,
-0.0218048095703125,
0.0202789306640625,
-0.0222320556640625,
-0.02447509765625
]
] |
nuprl/MultiPL-T | 2023-09-13T12:57:50.000Z | [
"license:bigcode-openrail-m",
"arxiv:2308.09895",
"region:us"
] | nuprl | null | null | 1 | 1,097 | 2023-08-17T14:17:33 | ---
license: bigcode-openrail-m
dataset_info:
features:
- name: content
dtype: string
splits:
- name: racket
num_bytes: 14482516
num_examples: 40510
- name: ocaml
num_bytes: 19240207
num_examples: 43401
- name: lua
num_bytes: 25917278
num_examples: 48194
download_size: 7491686
dataset_size: 59640001
---
# MultiPL-T fine-tuning sets
This dataset contains the MultiPL-T fine-tuning sets described in the paper "Knowledge Transfer from High-Resource to Low-Resource
Programming Languages for Code LLMs": [Arxiv](https://arxiv.org/abs/2308.09895).
## MultiPL-T tuned models
StarCoderBase-1b: https://huggingface.co/nuprl/MultiPLCoder-1b
StarCoderBase-15b: https://huggingface.co/nuprl/MultiPLCoder-15b
| 747 | [
[
-0.043853759765625,
-0.0274200439453125,
0.0158233642578125,
0.0233306884765625,
0.0004277229309082031,
0.016143798828125,
-0.026885986328125,
-0.017608642578125,
-0.00806427001953125,
0.0501708984375,
-0.06317138671875,
-0.0285186767578125,
-0.04949951171875,
-0.0007038116455078125,
-0.0305023193359375,
0.08245849609375,
0.007198333740234375,
0.01488494873046875,
0.0072479248046875,
-0.016265869140625,
-0.0086669921875,
-0.02520751953125,
-0.039459228515625,
-0.015655517578125,
0.0426025390625,
0.06414794921875,
0.054962158203125,
0.062744140625,
0.0714111328125,
0.0145721435546875,
-0.00482940673828125,
0.021484375,
-0.052581787109375,
-0.025177001953125,
-0.0200347900390625,
-0.0175933837890625,
-0.042877197265625,
-0.0094146728515625,
0.040008544921875,
0.042022705078125,
0.005924224853515625,
0.0579833984375,
0.009979248046875,
0.04803466796875,
-0.039764404296875,
0.0257110595703125,
-0.02508544921875,
-0.00188446044921875,
-0.01209259033203125,
-0.01702880859375,
-0.0135040283203125,
-0.042816162109375,
-0.031494140625,
-0.032928466796875,
0.023651123046875,
-0.005199432373046875,
0.0689697265625,
0.044342041015625,
-0.036041259765625,
-0.0242919921875,
-0.0418701171875,
0.06304931640625,
-0.0357666015625,
0.0245361328125,
0.03216552734375,
0.0223236083984375,
0.00930023193359375,
-0.048065185546875,
-0.0305328369140625,
0.005428314208984375,
-0.0005831718444824219,
-0.013153076171875,
0.0100860595703125,
0.0091094970703125,
0.047454833984375,
0.049652099609375,
-0.0295867919921875,
0.01519012451171875,
-0.06243896484375,
-0.0104827880859375,
0.041473388671875,
0.017486572265625,
-0.023223876953125,
0.002605438232421875,
-0.00612640380859375,
-0.0154266357421875,
-0.060150146484375,
-0.0018472671508789062,
-0.01531982421875,
0.024322509765625,
-0.034454345703125,
0.053863525390625,
-0.0238037109375,
0.07086181640625,
-0.0106048583984375,
-0.02337646484375,
0.0312347412109375,
-0.0654296875,
-0.020294189453125,
-0.041900634765625,
0.0233001708984375,
0.0238037109375,
0.04229736328125,
0.002902984619140625,
-0.031951904296875,
0.0124664306640625,
-0.005931854248046875,
-0.0782470703125,
-0.037994384765625,
-0.01026153564453125,
-0.05621337890625,
-0.035614013671875,
0.005451202392578125,
-0.055999755859375,
-0.01776123046875,
-0.04046630859375,
0.01195526123046875,
-0.0131988525390625,
-0.0111846923828125,
0.02191162109375,
-0.0167694091796875,
0.00927734375,
-0.0034008026123046875,
-0.0595703125,
0.0198974609375,
0.040283203125,
0.04315185546875,
0.0182342529296875,
-0.019317626953125,
-0.039642333984375,
0.00168609619140625,
-0.0088043212890625,
0.04638671875,
-0.038482666015625,
-0.019683837890625,
0.0057525634765625,
0.0089263916015625,
0.00548553466796875,
-0.0355224609375,
0.057769775390625,
-0.02825927734375,
-0.0102691650390625,
-0.034393310546875,
-0.0467529296875,
-0.0032558441162109375,
0.0065765380859375,
-0.04559326171875,
0.06988525390625,
0.0183563232421875,
-0.01129913330078125,
0.04229736328125,
-0.07952880859375,
-0.0207977294921875,
-0.0163726806640625,
-0.003570556640625,
-0.0390625,
0.018707275390625,
0.0153656005859375,
0.032928466796875,
-0.033721923828125,
-0.001567840576171875,
-0.046173095703125,
-0.018829345703125,
0.0163421630859375,
-0.005702972412109375,
0.05938720703125,
0.060089111328125,
0.0036563873291015625,
0.0289306640625,
-0.064697265625,
0.032012939453125,
0.00667572021484375,
-0.033538818359375,
0.00027942657470703125,
-0.033599853515625,
0.01161956787109375,
0.045501708984375,
0.0355224609375,
-0.0311279296875,
0.04443359375,
0.0198211669921875,
0.03375244140625,
0.028839111328125,
0.00431060791015625,
0.0197296142578125,
-0.0478515625,
0.036712646484375,
0.01090240478515625,
0.030914306640625,
0.0109710693359375,
-0.01043701171875,
-0.07171630859375,
-0.0079193115234375,
0.0193023681640625,
0.042816162109375,
-0.056427001953125,
0.036041259765625,
-0.0210723876953125,
-0.0450439453125,
-0.056854248046875,
0.0155029296875,
0.050994873046875,
0.0067291259765625,
0.033233642578125,
0.019256591796875,
-0.039764404296875,
-0.0853271484375,
-0.0131988525390625,
0.029510498046875,
-0.0034999847412109375,
0.0267791748046875,
0.03521728515625,
-0.012542724609375,
0.0198211669921875,
-0.04986572265625,
-0.01806640625,
-0.0089263916015625,
-0.00418853759765625,
0.025360107421875,
0.052825927734375,
0.0484619140625,
-0.048248291015625,
-0.02984619140625,
-0.013336181640625,
-0.045166015625,
-0.017852783203125,
0.007488250732421875,
0.00591278076171875,
-0.006927490234375,
0.041290283203125,
-0.0179901123046875,
0.0141448974609375,
0.058197021484375,
-0.048980712890625,
0.034820556640625,
-0.01209259033203125,
0.029022216796875,
-0.087890625,
0.0156402587890625,
-0.000012040138244628906,
-0.0184173583984375,
-0.020721435546875,
0.01336669921875,
0.026336669921875,
-0.00408172607421875,
-0.02862548828125,
0.0338134765625,
-0.039459228515625,
-0.0286712646484375,
-0.0167236328125,
-0.0194091796875,
-0.0012798309326171875,
0.03179931640625,
-0.0184173583984375,
0.0889892578125,
0.051483154296875,
-0.0546875,
0.0227508544921875,
0.04412841796875,
-0.0279998779296875,
0.0275726318359375,
-0.039794921875,
0.004856109619140625,
0.0187225341796875,
-0.0231170654296875,
-0.0238494873046875,
-0.00684356689453125,
0.0034503936767578125,
-0.019805908203125,
0.00460052490234375,
-0.0212554931640625,
-0.060760498046875,
-0.0286865234375,
-0.00991058349609375,
0.037445068359375,
0.02874755859375,
-0.0355224609375,
-0.0141448974609375,
0.031219482421875,
-0.0023822784423828125,
-0.040435791015625,
-0.0552978515625,
-0.00634002685546875,
-0.0117950439453125,
-0.025238037109375,
0.0148468017578125,
-0.03143310546875,
-0.00872802734375,
0.005039215087890625,
0.012786865234375,
-0.02630615234375,
-0.003063201904296875,
0.01296234130859375,
0.004421234130859375,
-0.034027099609375,
0.0216064453125,
-0.0033016204833984375,
0.0014429092407226562,
-0.00771331787109375,
-0.01277923583984375,
0.03350830078125,
-0.029876708984375,
-0.0157623291015625,
-0.01233673095703125,
0.0005412101745605469,
0.044891357421875,
-0.022247314453125,
0.0550537109375,
0.060791015625,
-0.0223846435546875,
-0.0200653076171875,
-0.037567138671875,
-0.02545166015625,
-0.03497314453125,
0.033966064453125,
-0.054962158203125,
-0.08843994140625,
0.054168701171875,
-0.0254974365234375,
-0.01055145263671875,
0.038970947265625,
0.03790283203125,
0.0165252685546875,
0.059539794921875,
0.0667724609375,
-0.021575927734375,
0.049346923828125,
-0.0288238525390625,
-0.01140594482421875,
-0.056182861328125,
-0.0027256011962890625,
-0.06396484375,
-0.0263519287109375,
-0.061920166015625,
-0.0208740234375,
0.0138702392578125,
0.033233642578125,
-0.0517578125,
0.0316162109375,
-0.041015625,
0.07470703125,
0.0411376953125,
0.00824737548828125,
0.02178955078125,
0.0007886886596679688,
0.00830841064453125,
0.006389617919921875,
-0.062469482421875,
-0.01422882080078125,
0.09368896484375,
0.0171356201171875,
0.060302734375,
0.0161285400390625,
0.039459228515625,
0.02667236328125,
0.00827789306640625,
-0.03741455078125,
0.0255584716796875,
-0.06231689453125,
-0.04644775390625,
-0.01212310791015625,
-0.04815673828125,
-0.055755615234375,
-0.0167236328125,
-0.01824951171875,
-0.0286865234375,
0.0218353271484375,
0.007648468017578125,
-0.0284576416015625,
0.0265045166015625,
-0.040740966796875,
0.07513427734375,
-0.0168609619140625,
-0.0171356201171875,
-0.04254150390625,
-0.03350830078125,
0.02716064453125,
-0.0015430450439453125,
0.00359344482421875,
-0.0164947509765625,
0.00186920166015625,
0.056976318359375,
-0.00494384765625,
0.042144775390625,
-0.0281829833984375,
0.0042266845703125,
0.00722503662109375,
0.0080718994140625,
0.028900146484375,
0.0149383544921875,
-0.0233154296875,
0.01953125,
0.0033397674560546875,
-0.0460205078125,
-0.0029506683349609375,
0.05902099609375,
-0.06280517578125,
0.00345611572265625,
-0.0077362060546875,
-0.062469482421875,
-0.0025844573974609375,
0.044036865234375,
0.017486572265625,
0.03631591796875,
-0.0005850791931152344,
0.02947998046875,
0.053192138671875,
-0.00841522216796875,
0.03326416015625,
0.035980224609375,
-0.027008056640625,
-0.0159759521484375,
0.05078125,
0.00116729736328125,
0.025146484375,
0.0157928466796875,
-0.004207611083984375,
-0.0198211669921875,
-0.0419921875,
-0.01415252685546875,
0.0152130126953125,
-0.049407958984375,
-0.0484619140625,
-0.003108978271484375,
-0.040740966796875,
-0.0255584716796875,
-0.005649566650390625,
-0.032928466796875,
-0.04278564453125,
-0.0295562744140625,
-0.00504302978515625,
0.04656982421875,
0.0699462890625,
-0.0275726318359375,
0.028564453125,
-0.08306884765625,
0.027557373046875,
-0.004180908203125,
0.06024169921875,
-0.035430908203125,
-0.04022216796875,
-0.054229736328125,
0.00879669189453125,
-0.0240631103515625,
-0.01447296142578125,
0.033599853515625,
0.034637451171875,
0.039642333984375,
0.0148773193359375,
0.0006055831909179688,
0.04901123046875,
-0.0031414031982421875,
0.043792724609375,
-0.008575439453125,
-0.0614013671875,
0.0367431640625,
-0.031524658203125,
0.044342041015625,
0.05389404296875,
0.0107879638671875,
-0.0318603515625,
-0.00537872314453125,
-0.04669189453125,
-0.0212554931640625,
0.046661376953125,
-0.007778167724609375,
-0.0182342529296875,
0.01288604736328125,
0.0355224609375,
0.013702392578125,
0.0257415771484375,
-0.05303955078125,
-0.029937744140625,
-0.003910064697265625,
-0.012176513671875,
-0.0187225341796875,
-0.0360107421875,
-0.02838134765625,
-0.01499176025390625,
0.0404052734375,
-0.015472412109375,
0.037933349609375,
-0.01230621337890625,
-0.0145721435546875,
-0.027313232421875,
0.01287078857421875,
0.07470703125,
0.07177734375,
-0.029327392578125,
0.006439208984375,
0.0016880035400390625,
-0.01371002197265625,
-0.00624847412109375,
0.0116119384765625,
0.011932373046875,
-0.037628173828125,
0.0296783447265625,
0.07440185546875,
0.0047149658203125,
-0.0182342529296875,
0.01959228515625,
0.01142120361328125,
-0.0193634033203125,
-0.0159912109375,
0.0241241455078125,
-0.0012645721435546875,
0.031005859375,
0.005359649658203125,
0.031524658203125,
0.01068115234375,
-0.00878143310546875,
0.034027099609375,
0.007617950439453125,
-0.0257415771484375,
-0.023956298828125,
0.0439453125,
0.01861572265625,
-0.01206207275390625,
0.06817626953125,
-0.0288848876953125,
-0.0232391357421875,
0.047698974609375,
0.034027099609375,
0.050811767578125,
0.00009804964065551758,
-0.0109100341796875,
0.03955078125,
0.026275634765625,
-0.00469207763671875,
0.06494140625,
0.007152557373046875,
-0.070068359375,
-0.047393798828125,
-0.04730224609375,
-0.01021575927734375,
0.031951904296875,
-0.061065673828125,
0.035003662109375,
-0.031829833984375,
-0.007843017578125,
0.0019683837890625,
0.0102081298828125,
-0.0859375,
-0.006412506103515625,
0.005527496337890625,
0.09136962890625,
-0.06390380859375,
0.1021728515625,
0.041595458984375,
-0.041748046875,
-0.0391845703125,
-0.02593994140625,
-0.001007080078125,
-0.0726318359375,
0.05145263671875,
-0.01715087890625,
0.01270294189453125,
0.012176513671875,
-0.042999267578125,
-0.08258056640625,
0.08343505859375,
0.0289459228515625,
-0.058319091796875,
0.0199127197265625,
0.0183563232421875,
0.030487060546875,
-0.0311431884765625,
-0.010101318359375,
0.0439453125,
0.0516357421875,
-0.01018524169921875,
-0.10321044921875,
-0.01174163818359375,
-0.015533447265625,
-0.01378631591796875,
0.0247650146484375,
-0.071044921875,
0.0740966796875,
-0.0241241455078125,
0.0164642333984375,
-0.0016002655029296875,
0.0238037109375,
0.0088348388671875,
0.00189971923828125,
0.0126190185546875,
0.0469970703125,
0.0389404296875,
-0.01280975341796875,
0.05999755859375,
-0.059478759765625,
0.05291748046875,
0.08404541015625,
0.005950927734375,
0.0440673828125,
0.0258636474609375,
-0.018707275390625,
0.004974365234375,
0.04791259765625,
-0.037750244140625,
0.04193115234375,
0.0238494873046875,
0.0158538818359375,
-0.0136566162109375,
-0.004688262939453125,
-0.040130615234375,
0.0205841064453125,
0.0501708984375,
-0.0296630859375,
-0.0090789794921875,
-0.00968170166015625,
-0.006679534912109375,
-0.013092041015625,
-0.046112060546875,
0.07666015625,
0.01349639892578125,
-0.037353515625,
0.06207275390625,
-0.00733184814453125,
0.05535888671875,
-0.034698486328125,
-0.00487518310546875,
-0.024566650390625,
0.03863525390625,
-0.0172271728515625,
-0.083984375,
0.047515869140625,
-0.01995849609375,
-0.03466796875,
-0.025604248046875,
0.054473876953125,
-0.04296875,
-0.05194091796875,
0.0254669189453125,
0.053558349609375,
0.006511688232421875,
0.0182037353515625,
-0.07073974609375,
0.0004892349243164062,
0.01241302490234375,
-0.01361846923828125,
0.02142333984375,
0.04254150390625,
0.002105712890625,
0.0533447265625,
0.04046630859375,
0.02838134765625,
0.01617431640625,
0.0132904052734375,
0.06341552734375,
-0.058929443359375,
-0.02301025390625,
-0.039154052734375,
0.024932861328125,
-0.0091094970703125,
-0.0518798828125,
0.043487548828125,
0.06402587890625,
0.07177734375,
-0.037200927734375,
0.056640625,
-0.0135040283203125,
0.052490234375,
-0.03643798828125,
0.0533447265625,
-0.033233642578125,
0.01407623291015625,
0.00902557373046875,
-0.0682373046875,
-0.042327880859375,
0.032623291015625,
-0.00736236572265625,
0.002948760986328125,
0.037750244140625,
0.0755615234375,
-0.0299530029296875,
-0.0238800048828125,
0.026885986328125,
0.0228424072265625,
0.019073486328125,
0.040313720703125,
0.0214385986328125,
-0.037261962890625,
0.044189453125,
-0.0298004150390625,
-0.016448974609375,
-0.021514892578125,
-0.058258056640625,
-0.05474853515625,
-0.040863037109375,
-0.0215301513671875,
-0.033416748046875,
0.0109710693359375,
0.06732177734375,
0.05987548828125,
-0.07891845703125,
-0.044281005859375,
-0.0032291412353515625,
-0.0030841827392578125,
-0.0255279541015625,
-0.01049041748046875,
0.033203125,
-0.034423828125,
-0.032470703125,
0.0282440185546875,
-0.0092315673828125,
-0.006114959716796875,
-0.00952911376953125,
-0.0235443115234375,
-0.01131439208984375,
-0.0134429931640625,
0.037261962890625,
0.012054443359375,
-0.02880859375,
-0.0301971435546875,
-0.004085540771484375,
-0.016845703125,
0.003749847412109375,
0.059326171875,
-0.0243377685546875,
-0.01091766357421875,
0.038543701171875,
0.0311431884765625,
0.03857421875,
-0.01800537109375,
0.02947998046875,
-0.0833740234375,
0.024322509765625,
-0.0017337799072265625,
0.033447265625,
0.0016546249389648438,
-0.0193939208984375,
0.0694580078125,
0.010955810546875,
-0.06884765625,
-0.0472412109375,
0.01739501953125,
-0.078125,
-0.0079498291015625,
0.09185791015625,
0.0106048583984375,
0.00746917724609375,
0.005035400390625,
-0.001941680908203125,
0.0307464599609375,
-0.034149169921875,
0.0635986328125,
0.046783447265625,
-0.01611328125,
-0.04302978515625,
-0.03460693359375,
0.071044921875,
0.0128326416015625,
-0.070068359375,
0.01548004150390625,
0.035125732421875,
0.0250701904296875,
0.01033782958984375,
0.0128021240234375,
-0.00948333740234375,
0.0155029296875,
0.0003497600555419922,
0.03070068359375,
-0.040496826171875,
-0.0214080810546875,
-0.024871826171875,
0.00617218017578125,
0.0262451171875,
-0.0184173583984375
]
] |
climate_fever | 2023-03-16T14:57:07.000Z | [
"task_categories:text-classification",
"task_categories:text-retrieval",
"task_ids:text-scoring",
"task_ids:fact-checking",
"task_ids:fact-checking-retrieval",
"task_ids:semantic-similarity-scoring",
"task_ids:multi-input-text-classification",
"annotations_creators:crowdsourced",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:extended|wikipedia",
"source_datasets:original",
"language:en",
"license:unknown",
"arxiv:2012.00614",
"region:us"
] | null | A dataset adopting the FEVER methodology that consists of 1,535 real-world claims regarding climate-change collected on the internet. Each claim is accompanied by five manually annotated evidence sentences retrieved from the English Wikipedia that support, refute or do not give enough information to validate the claim totalling in 7,675 claim-evidence pairs. The dataset features challenging claims that relate multiple facets and disputed cases of claims where both supporting and refuting evidence are present. | @misc{diggelmann2020climatefever,
title={CLIMATE-FEVER: A Dataset for Verification of Real-World Climate Claims},
author={Thomas Diggelmann and Jordan Boyd-Graber and Jannis Bulian and Massimiliano Ciaramita and Markus Leippold},
year={2020},
eprint={2012.00614},
archivePrefix={arXiv},
primaryClass={cs.CL}
} | 10 | 1,093 | 2022-03-02T23:29:22 | ---
annotations_creators:
- crowdsourced
- expert-generated
language_creators:
- found
language:
- en
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- extended|wikipedia
- original
task_categories:
- text-classification
- text-retrieval
task_ids:
- text-scoring
- fact-checking
- fact-checking-retrieval
- semantic-similarity-scoring
- multi-input-text-classification
paperswithcode_id: climate-fever
pretty_name: ClimateFever
dataset_info:
features:
- name: claim_id
dtype: string
- name: claim
dtype: string
- name: claim_label
dtype:
class_label:
names:
'0': SUPPORTS
'1': REFUTES
'2': NOT_ENOUGH_INFO
'3': DISPUTED
- name: evidences
list:
- name: evidence_id
dtype: string
- name: evidence_label
dtype:
class_label:
names:
'0': SUPPORTS
'1': REFUTES
'2': NOT_ENOUGH_INFO
- name: article
dtype: string
- name: evidence
dtype: string
- name: entropy
dtype: float32
- name: votes
list: string
splits:
- name: test
num_bytes: 2429272
num_examples: 1535
download_size: 687133
dataset_size: 2429272
---
# Dataset Card for ClimateFever
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [CLIMATE-FEVER homepage](http://climatefever.ai)
- **Repository:** [CLIMATE-FEVER repository](https://github.com/tdiggelm/climate-fever-dataset)
- **Paper:** [CLIMATE-FEVER: A Dataset for Verification of Real-World Climate Claims](https://arxiv.org/abs/2012.00614)
- **Leaderboard:** [Needs More Information]
- **Point of Contact:** [Thomas Diggelmann](mailto:thomasdi@student.ethz.ch)
### Dataset Summary
A dataset adopting the FEVER methodology that consists of 1,535 real-world claims regarding climate-change collected on the internet. Each claim is accompanied by five manually annotated evidence sentences retrieved from the English Wikipedia that support, refute or do not give enough information to validate the claim totalling in 7,675 claim-evidence pairs. The dataset features challenging claims that relate multiple facets and disputed cases of claims where both supporting and refuting evidence are present.
### Supported Tasks and Leaderboards
[Needs More Information]
### Languages
The text in the dataset is in English, as found in real-world claims about climate-change on the Internet. The associated BCP-47 code is `en`.
## Dataset Structure
### Data Instances
```
{
"claim_id": "0",
"claim": "Global warming is driving polar bears toward extinction",
"claim_label": 0, # "SUPPORTS"
"evidences": [
{
"evidence_id": "Extinction risk from global warming:170",
"evidence_label": 2, # "NOT_ENOUGH_INFO"
"article": "Extinction risk from global warming",
"evidence": "\"Recent Research Shows Human Activity Driving Earth Towards Global Extinction Event\".",
"entropy": 0.6931471805599453,
"votes": [
"SUPPORTS",
"NOT_ENOUGH_INFO",
null,
null,
null
]
},
{
"evidence_id": "Global warming:14",
"evidence_label": 0, # "SUPPORTS"
"article": "Global warming",
"evidence": "Environmental impacts include the extinction or relocation of many species as their ecosystems change, most immediately the environments of coral reefs, mountains, and the Arctic.",
"entropy": 0.0,
"votes": [
"SUPPORTS",
"SUPPORTS",
null,
null,
null
]
},
{
"evidence_id": "Global warming:178",
"evidence_label": 2, # "NOT_ENOUGH_INFO"
"article": "Global warming",
"evidence": "Rising temperatures push bees to their physiological limits, and could cause the extinction of bee populations.",
"entropy": 0.6931471805599453,
"votes": [
"SUPPORTS",
"NOT_ENOUGH_INFO",
null,
null,
null
]
},
{
"evidence_id": "Habitat destruction:61",
"evidence_label": 0, # "SUPPORTS"
"article": "Habitat destruction",
"evidence": "Rising global temperatures, caused by the greenhouse effect, contribute to habitat destruction, endangering various species, such as the polar bear.",
"entropy": 0.0,
"votes": [
"SUPPORTS",
"SUPPORTS",
null,
null,
null
]
},
{
"evidence_id": "Polar bear:1328",
"evidence_label": 2, # "NOT_ENOUGH_INFO"
"article": "Polar bear",
"evidence": "\"Bear hunting caught in global warming debate\".",
"entropy": 0.6931471805599453,
"votes": [
"SUPPORTS",
"NOT_ENOUGH_INFO",
null,
null,
null
]
}
]
}
```
### Data Fields
- `claim_id`: a `string` feature, unique claim identifier.
- `claim`: a `string` feature, claim text.
- `claim_label`: a `int` feature, overall label assigned to claim (based on evidence majority vote). The label correspond to 0: "supports", 1: "refutes", 2: "not enough info" and 3: "disputed".
- `evidences`: a list of evidences with fields:
- `evidence_id`: a `string` feature, unique evidence identifier.
- `evidence_label`: a `int` feature, micro-verdict label. The label correspond to 0: "supports", 1: "refutes" and 2: "not enough info".
- `article`: a `string` feature, title of source article (Wikipedia page).
- `evidence`: a `string` feature, evidence sentence.
- `entropy`: a `float32` feature, entropy reflecting uncertainty of `evidence_label`.
- `votes`: a `list` of `string` features, corresponding to individual votes.
### Data Splits
This benchmark dataset currently consists of a single data split `test` that consists of 1,535 claims or 7,675 claim-evidence pairs.
## Dataset Creation
### Curation Rationale
[Needs More Information]
### Source Data
#### Initial Data Collection and Normalization
[Needs More Information]
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
[Needs More Information]
#### Who are the annotators?
[Needs More Information]
### Personal and Sensitive Information
[Needs More Information]
## Considerations for Using the Data
### Social Impact of Dataset
[Needs More Information]
### Discussion of Biases
[Needs More Information]
### Other Known Limitations
[Needs More Information]
## Additional Information
### Dataset Curators
[Needs More Information]
### Licensing Information
[Needs More Information]
### Citation Information
```bibtex
@misc{diggelmann2020climatefever,
title={CLIMATE-FEVER: A Dataset for Verification of Real-World Climate Claims},
author={Thomas Diggelmann and Jordan Boyd-Graber and Jannis Bulian and Massimiliano Ciaramita and Markus Leippold},
year={2020},
eprint={2012.00614},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
```
### Contributions
Thanks to [@tdiggelm](https://github.com/tdiggelm) for adding this dataset. | 8,004 | [
[
-0.040008544921875,
-0.04376220703125,
0.0188751220703125,
0.01515960693359375,
-0.0229034423828125,
-0.0046539306640625,
-0.0174407958984375,
-0.03375244140625,
0.028472900390625,
0.0279693603515625,
-0.04193115234375,
-0.0693359375,
-0.044158935546875,
0.0227508544921875,
-0.0131378173828125,
0.08050537109375,
0.01094818115234375,
-0.0172271728515625,
-0.0182952880859375,
0.004619598388671875,
-0.009613037109375,
-0.032806396484375,
-0.01812744140625,
-0.0220947265625,
0.0286865234375,
0.0347900390625,
0.0517578125,
0.058074951171875,
0.0355224609375,
0.0147705078125,
-0.01549530029296875,
-0.003841400146484375,
-0.030364990234375,
-0.0033206939697265625,
-0.00833892822265625,
-0.01113128662109375,
-0.035186767578125,
0.01849365234375,
0.04034423828125,
0.032073974609375,
0.0008387565612792969,
0.04718017578125,
-0.005340576171875,
0.036285400390625,
-0.034393310546875,
0.034759521484375,
-0.046966552734375,
-0.0129547119140625,
-0.0139312744140625,
0.0036563873291015625,
-0.00487518310546875,
-0.0189361572265625,
0.007171630859375,
-0.043670654296875,
0.035369873046875,
0.02099609375,
0.062347412109375,
0.00911712646484375,
-0.0270538330078125,
-0.01503753662109375,
-0.0203704833984375,
0.04278564453125,
-0.06671142578125,
0.002689361572265625,
0.03424072265625,
-0.0102996826171875,
-0.0183258056640625,
-0.046173095703125,
-0.064453125,
0.005863189697265625,
-0.01255035400390625,
0.028106689453125,
-0.018890380859375,
-0.021728515625,
0.02789306640625,
0.028594970703125,
-0.049957275390625,
-0.023193359375,
-0.0269775390625,
-0.0310516357421875,
0.067626953125,
0.0226898193359375,
0.0143280029296875,
-0.037933349609375,
-0.015899658203125,
-0.031982421875,
-0.03839111328125,
0.020721435546875,
0.0192413330078125,
0.04412841796875,
-0.047393798828125,
0.031494140625,
-0.0287628173828125,
0.043670654296875,
-0.0185089111328125,
-0.021636962890625,
0.0372314453125,
-0.0419921875,
-0.00896453857421875,
0.00621795654296875,
0.0665283203125,
0.0556640625,
-0.026702880859375,
0.0038433074951171875,
0.016143798828125,
-0.01271820068359375,
-0.02386474609375,
-0.0667724609375,
-0.04046630859375,
0.034912109375,
-0.04052734375,
-0.02996826171875,
0.021728515625,
-0.0994873046875,
-0.0265350341796875,
-0.0036716461181640625,
0.0137939453125,
-0.007068634033203125,
-0.037628173828125,
0.002071380615234375,
-0.039276123046875,
0.0188446044921875,
-0.00653839111328125,
-0.025665283203125,
0.02783203125,
0.0343017578125,
0.05810546875,
0.00420379638671875,
-0.00925445556640625,
0.01262664794921875,
0.0033512115478515625,
-0.006076812744140625,
0.06353759765625,
-0.056671142578125,
-0.032684326171875,
-0.01059722900390625,
0.0238037109375,
0.0021820068359375,
-0.01329803466796875,
0.049407958984375,
-0.01328277587890625,
0.0361328125,
-0.055572509765625,
-0.019012451171875,
-0.032257080078125,
0.0183868408203125,
-0.04632568359375,
0.0806884765625,
-0.0045318603515625,
-0.0784912109375,
0.0340576171875,
-0.059478759765625,
-0.0258026123046875,
-0.0169219970703125,
0.0186920166015625,
-0.04949951171875,
-0.04278564453125,
0.01300811767578125,
0.027008056640625,
-0.056182861328125,
0.0106964111328125,
-0.033599853515625,
0.013702392578125,
0.01288604736328125,
-0.011444091796875,
0.09185791015625,
0.020721435546875,
-0.0257415771484375,
0.0085296630859375,
-0.07550048828125,
-0.00457763671875,
0.033416748046875,
-0.0189208984375,
-0.005504608154296875,
0.0013551712036132812,
0.0179443359375,
0.00372314453125,
0.0200653076171875,
-0.042236328125,
0.0303802490234375,
-0.00476837158203125,
0.04559326171875,
0.0267333984375,
0.0226593017578125,
0.01180267333984375,
-0.046630859375,
0.030548095703125,
0.005523681640625,
0.0162506103515625,
0.004077911376953125,
-0.058746337890625,
-0.034454345703125,
-0.018798828125,
0.0077362060546875,
0.06842041015625,
-0.0264739990234375,
0.05010986328125,
-0.0261383056640625,
-0.076416015625,
-0.01169586181640625,
0.005950927734375,
0.0261993408203125,
0.059906005859375,
0.040740966796875,
-0.001941680908203125,
-0.0533447265625,
-0.040863037109375,
0.008514404296875,
-0.0228729248046875,
0.01338958740234375,
0.037353515625,
0.06524658203125,
-0.01354217529296875,
0.06439208984375,
-0.055389404296875,
-0.0018310546875,
-0.003963470458984375,
-0.00519561767578125,
0.044708251953125,
0.045379638671875,
0.050537109375,
-0.05908203125,
-0.022796630859375,
-0.0229949951171875,
-0.050140380859375,
-0.00997161865234375,
0.0042724609375,
-0.0123748779296875,
0.0171051025390625,
0.0120086669921875,
-0.044036865234375,
0.0279541015625,
0.024566650390625,
-0.050933837890625,
0.0419921875,
-0.00586700439453125,
0.034210205078125,
-0.08837890625,
0.019378662109375,
0.0076446533203125,
0.01080322265625,
-0.05194091796875,
-0.0029125213623046875,
-0.00669097900390625,
0.0128021240234375,
-0.0222625732421875,
0.04638671875,
-0.03326416015625,
0.03192138671875,
0.0093994140625,
-0.00018322467803955078,
0.004245758056640625,
0.0230865478515625,
-0.003631591796875,
0.0292816162109375,
0.061126708984375,
-0.038604736328125,
0.045928955078125,
0.0291900634765625,
-0.0125274658203125,
0.026641845703125,
-0.03472900390625,
0.005176544189453125,
-0.01378631591796875,
0.033905029296875,
-0.0731201171875,
-0.036865234375,
0.0499267578125,
-0.03387451171875,
0.0106964111328125,
-0.01299285888671875,
-0.035491943359375,
-0.0545654296875,
-0.0306854248046875,
0.016326904296875,
0.0322265625,
-0.023406982421875,
0.03424072265625,
0.040191650390625,
-0.00807952880859375,
-0.038360595703125,
-0.040252685546875,
0.0081787109375,
-0.036865234375,
-0.04412841796875,
0.0282745361328125,
-0.01654052734375,
-0.028778076171875,
0.01215362548828125,
-0.0088653564453125,
0.0018453598022460938,
0.0098876953125,
0.0224151611328125,
0.01068115234375,
-0.00618743896484375,
-0.0029144287109375,
-0.0187835693359375,
0.01149749755859375,
0.01038360595703125,
-0.0180511474609375,
0.039276123046875,
-0.0212860107421875,
0.0030517578125,
-0.01151275634765625,
0.023193359375,
0.029083251953125,
0.00965118408203125,
0.05877685546875,
0.04443359375,
-0.04180908203125,
0.0289306640625,
-0.041961669921875,
-0.004779815673828125,
-0.0242156982421875,
0.00946044921875,
-0.01120758056640625,
-0.04217529296875,
0.07427978515625,
0.0187225341796875,
0.0098876953125,
0.07928466796875,
0.0308837890625,
0.00537872314453125,
0.046722412109375,
0.019683837890625,
-0.0142364501953125,
0.0184478759765625,
-0.03375244140625,
0.00010418891906738281,
-0.045013427734375,
-0.04864501953125,
-0.06036376953125,
-0.0101165771484375,
-0.04913330078125,
-0.03375244140625,
0.01088714599609375,
0.009765625,
-0.0438232421875,
0.03619384765625,
-0.05694580078125,
0.026275634765625,
0.05438232421875,
0.0268402099609375,
-0.0025539398193359375,
-0.0174713134765625,
-0.0025959014892578125,
0.0160369873046875,
-0.04901123046875,
-0.037933349609375,
0.077880859375,
0.008575439453125,
0.03265380859375,
0.0227508544921875,
0.04833984375,
0.0298614501953125,
0.01323699951171875,
-0.0219268798828125,
0.04302978515625,
0.0048065185546875,
-0.066650390625,
-0.0306549072265625,
-0.0261077880859375,
-0.078125,
0.0084686279296875,
-0.0411376953125,
-0.059295654296875,
0.030914306640625,
0.0209808349609375,
-0.011199951171875,
0.03289794921875,
-0.0540771484375,
0.06134033203125,
-0.0160369873046875,
-0.0306854248046875,
-0.012786865234375,
-0.06878662109375,
0.02252197265625,
0.01186370849609375,
0.049407958984375,
-0.033538818359375,
-0.0005984306335449219,
0.0771484375,
-0.048126220703125,
0.07550048828125,
-0.033966064453125,
0.024993896484375,
0.038848876953125,
-0.0173797607421875,
0.037750244140625,
0.02728271484375,
-0.02197265625,
0.025634765625,
0.0282440185546875,
-0.04425048828125,
-0.00214385986328125,
0.043670654296875,
-0.05670166015625,
-0.05706787109375,
-0.061248779296875,
-0.0247650146484375,
0.00392913818359375,
0.029083251953125,
0.02166748046875,
0.02447509765625,
-0.0243072509765625,
0.0112762451171875,
0.038970947265625,
-0.0287933349609375,
0.016754150390625,
0.0278472900390625,
-0.0086517333984375,
-0.07159423828125,
0.060150146484375,
0.0095367431640625,
0.0012912750244140625,
0.022796630859375,
0.0391845703125,
-0.01305389404296875,
-0.03094482421875,
-0.01348114013671875,
0.006275177001953125,
-0.0504150390625,
-0.048736572265625,
-0.053680419921875,
-0.0026531219482421875,
-0.0726318359375,
0.002246856689453125,
0.01360321044921875,
-0.0226593017578125,
-0.0293426513671875,
-0.0220947265625,
0.071044921875,
0.0335693359375,
-0.039581298828125,
0.0160675048828125,
-0.042144775390625,
0.025390625,
0.006622314453125,
0.00811767578125,
-0.01090240478515625,
-0.0216064453125,
-0.01348876953125,
0.0177001953125,
-0.022216796875,
-0.07293701171875,
0.042877197265625,
0.021728515625,
0.05560302734375,
0.02484130859375,
0.0321044921875,
0.05694580078125,
-0.0008664131164550781,
0.0911865234375,
0.01480865478515625,
-0.06170654296875,
0.050506591796875,
-0.025604248046875,
0.02203369140625,
0.03326416015625,
0.0287933349609375,
-0.03240966796875,
-0.020416259765625,
-0.07281494140625,
-0.08642578125,
0.046905517578125,
0.00641632080078125,
0.001903533935546875,
-0.0086212158203125,
0.0161285400390625,
0.0046539306640625,
0.0100860595703125,
-0.0457763671875,
-0.0526123046875,
-0.036956787109375,
-0.0087890625,
-0.0007085800170898438,
-0.01806640625,
-0.040435791015625,
-0.03973388671875,
0.06903076171875,
0.0028018951416015625,
0.028106689453125,
0.036041259765625,
0.0141754150390625,
0.007259368896484375,
0.0193328857421875,
0.050628662109375,
0.031280517578125,
-0.0307464599609375,
0.015380859375,
0.0240631103515625,
-0.04632568359375,
-0.01210784912109375,
0.027130126953125,
-0.015716552734375,
-0.013336181640625,
0.04779052734375,
0.043548583984375,
-0.0065460205078125,
-0.02447509765625,
0.0222930908203125,
-0.0020542144775390625,
-0.028564453125,
-0.037261962890625,
0.00435638427734375,
0.0018968582153320312,
0.01678466796875,
0.040374755859375,
0.0192413330078125,
0.01983642578125,
-0.040802001953125,
0.00775909423828125,
0.0256805419921875,
-0.0035724639892578125,
-0.0212860107421875,
0.054718017578125,
0.00429534912109375,
-0.004695892333984375,
0.0286865234375,
-0.0182952880859375,
-0.04217529296875,
0.07086181640625,
0.03338623046875,
0.041534423828125,
0.01172637939453125,
0.017974853515625,
0.059173583984375,
0.0328369140625,
-0.003269195556640625,
0.052001953125,
-0.00589752197265625,
-0.049346923828125,
0.0037174224853515625,
-0.039337158203125,
-0.027008056640625,
0.01270294189453125,
-0.04541015625,
0.01373291015625,
-0.03448486328125,
-0.0254364013671875,
0.007171630859375,
0.0108795166015625,
-0.07177734375,
0.011199951171875,
0.0033664703369140625,
0.087890625,
-0.08465576171875,
0.0465087890625,
0.047454833984375,
-0.043853759765625,
-0.053802490234375,
-0.005184173583984375,
0.022186279296875,
-0.04473876953125,
0.0185089111328125,
-0.005401611328125,
0.01535797119140625,
-0.0201873779296875,
-0.067138671875,
-0.07891845703125,
0.09442138671875,
0.00965118408203125,
-0.0236663818359375,
0.0260467529296875,
-0.01065826416015625,
0.03216552734375,
-0.0303192138671875,
0.01904296875,
0.047210693359375,
0.06878662109375,
0.021484375,
-0.0478515625,
0.0313720703125,
-0.033721923828125,
-0.0182037353515625,
-0.011932373046875,
-0.0672607421875,
0.040252685546875,
-0.0293731689453125,
-0.01227569580078125,
-0.0081939697265625,
0.0498046875,
0.020965576171875,
0.04840087890625,
0.04296875,
0.0498046875,
0.0755615234375,
-0.035888671875,
0.06915283203125,
-0.047454833984375,
0.037017822265625,
0.068359375,
-0.005756378173828125,
0.060546875,
0.02545166015625,
-0.039215087890625,
0.035552978515625,
0.073974609375,
-0.0268402099609375,
0.04022216796875,
0.0172576904296875,
-0.00926971435546875,
-0.01555633544921875,
-0.007354736328125,
-0.044586181640625,
0.0115814208984375,
0.0396728515625,
-0.02105712890625,
0.003154754638671875,
-0.0036468505859375,
0.035980224609375,
-0.0146942138671875,
-0.0193939208984375,
0.0555419921875,
-0.0120849609375,
-0.04205322265625,
0.035552978515625,
-0.0204315185546875,
0.04754638671875,
-0.0251007080078125,
-0.00012958049774169922,
-0.007762908935546875,
-0.01006317138671875,
-0.044189453125,
-0.083984375,
0.0247955322265625,
0.003387451171875,
-0.0298614501953125,
-0.0024433135986328125,
0.041412353515625,
-0.0208282470703125,
-0.0556640625,
0.0013723373413085938,
0.014984130859375,
0.02728271484375,
0.017181396484375,
-0.05908203125,
-0.0012121200561523438,
0.0151824951171875,
-0.03533935546875,
-0.002033233642578125,
0.03155517578125,
0.0133819580078125,
0.035064697265625,
0.061248779296875,
0.007061004638671875,
-0.007465362548828125,
-0.01532745361328125,
0.06207275390625,
-0.0697021484375,
-0.0163116455078125,
-0.052032470703125,
0.036956787109375,
-0.03167724609375,
-0.025848388671875,
0.051025390625,
0.06671142578125,
0.055267333984375,
-0.005786895751953125,
0.078369140625,
-0.056182861328125,
0.03643798828125,
-0.0283050537109375,
0.03900146484375,
-0.029815673828125,
-0.00201416015625,
-0.023895263671875,
-0.044952392578125,
-0.034515380859375,
0.034454345703125,
-0.032989501953125,
0.0001747608184814453,
0.03253173828125,
0.06591796875,
0.03387451171875,
0.00197601318359375,
-0.005657196044921875,
0.03509521484375,
0.0289306640625,
0.014984130859375,
0.0118560791015625,
-0.0273895263671875,
0.04498291015625,
-0.04425048828125,
-0.0195465087890625,
-0.0176544189453125,
-0.0823974609375,
-0.04876708984375,
-0.0638427734375,
-0.049560546875,
-0.06591796875,
-0.0006160736083984375,
0.07977294921875,
0.032806396484375,
-0.08966064453125,
-0.00876617431640625,
0.00946807861328125,
0.0174102783203125,
-0.0275726318359375,
-0.020294189453125,
0.050567626953125,
0.01611328125,
-0.029754638671875,
-0.0015802383422851562,
-0.0006442070007324219,
0.004669189453125,
0.005496978759765625,
-0.01003265380859375,
-0.01227569580078125,
0.007335662841796875,
0.03460693359375,
0.04620361328125,
-0.055999755859375,
-0.03228759765625,
-0.00782012939453125,
-0.003795623779296875,
0.006214141845703125,
0.013031005859375,
-0.038421630859375,
0.0169525146484375,
0.06439208984375,
-0.0010738372802734375,
0.039886474609375,
-0.0078582763671875,
0.0022430419921875,
-0.0228271484375,
0.003986358642578125,
-0.007556915283203125,
0.04376220703125,
0.0218963623046875,
-0.035552978515625,
0.04534912109375,
0.039215087890625,
-0.041229248046875,
-0.055389404296875,
-0.01467132568359375,
-0.102294921875,
-0.0167999267578125,
0.0975341796875,
-0.00738525390625,
-0.026641845703125,
-0.01509857177734375,
-0.0193939208984375,
0.0182037353515625,
-0.05706787109375,
0.059051513671875,
0.064453125,
-0.0172576904296875,
-0.0036106109619140625,
-0.0223846435546875,
0.03521728515625,
-0.0261077880859375,
-0.05657958984375,
0.01474761962890625,
0.03448486328125,
0.038604736328125,
0.028106689453125,
0.032196044921875,
-0.0027828216552734375,
-0.00382232666015625,
0.01544189453125,
0.028594970703125,
0.00006073713302612305,
0.004558563232421875,
0.000591278076171875,
0.007244110107421875,
-0.005489349365234375,
0.0032176971435546875
]
] |
ArmelR/the-pile-splitted | 2023-09-06T09:53:16.000Z | [
"arxiv:2101.00027",
"arxiv:2201.07311",
"region:us"
] | ArmelR | null | null | 1 | 1,092 | 2023-07-30T14:21:26 | ---
configs:
- config_name: all
data_files:
- split: train
path:
- "data/ArXiv/train/*.arrow"
- "data/BookCorpus2/train/*.arrow"
- "data/Books3/train/*.arrow"
- "data/DM Mathematics/train/*.arrow"
- "data/Enron Emails/train/*.arrow"
- "data/EuroParl/train/*.arrow"
- "data/FreeLaw/train/*.arrow"
- "data/Github/train/*.arrow"
- "data/Gutenberg (PG-19)/train/*.arrow"
- "data/HackerNews/train/*.arrow"
- "data/NIH ExPorter/train/*.arrow"
- "data/OpenSubtitles/train/*.arrow"
- "data/OpenWebText2/train/*.arrow"
- "data/PhilPapers/train/*.arrow"
- "data/Pile-CC/train/*.arrow"
- "data/PubMed Abstracts/train/*.arrow"
- "data/PubMed Central/train/*.arrow"
- "data/StackExchange/train/*.arrow"
- "data/UPSTO Backgrounds/train/*.arrow"
- "data/Ubuntu IRC/train/*.arrow"
- "data/Wikipedia (en)/train/*.arrow"
- "data/YoutubeSubtitles/train/*.arrow"
- split: test
path:
- "data/ArXiv/test/*.arrow"
- "data/BookCorpus2/test/*.arrow"
- "data/Books3/test/*.arrow"
- "data/DM Mathematics/test/*.arrow"
- "data/Enron Emails/test/*.arrow"
- "data/EuroParl/test/*.arrow"
- "data/FreeLaw/test/*.arrow"
- "data/Github/test/*.arrow"
- "data/Gutenberg (PG-19)/test/*.arrow"
- "data/HackerNews/test/*.arrow"
- "data/NIH ExPorter/test/*.arrow"
- "data/OpenSubtitles/test/*.arrow"
- "data/OpenWebText2/test/*.arrow"
- "data/PhilPapers/test/*.arrow"
- "data/Pile-CC/test/*.arrow"
- "data/PubMed Abstracts/test/*.arrow"
- "data/PubMed Central/test/*.arrow"
- "data/StackExchange/test/*.arrow"
- "data/UPSTO Backgrounds/test/*.arrow"
- "data/Ubuntu IRC/test/*.arrow"
- "data/Wikipedia (en)/test/*.arrow"
- "data/YoutubeSubtitles/test/*.arrow"
default: true
- config_name: ArXiv
data_files:
- split: train
path: "data/ArXiv/train/*.arrow"
- split: test
path: "data/ArXiv/test/*.arrow"
- config_name: BookCorpus2
data_files:
- split: train
path: "data/BookCorpus2/train/*.arrow"
- split: test
path: "data/BookCorpus2/test/*.arrow"
- config_name: Books3
data_files:
- split: train
path: "data/Books3/train/*.arrow"
- split: test
path: "data/Books3/test/*.arrow"
- config_name: DM Mathematics
data_files:
- split: train
path: "data/DM Mathematics/train/*.arrow"
- split: test
path: "data/DM Mathematics/test/*.arrow"
- config_name: Enron Emails
data_files:
- split: train
path: "data/Enron Emails/train/*.arrow"
- split: test
path: "data/Enron Emails/test/*.arrow"
- config_name: EuroParl
data_files:
- split: train
path: "data/EuroParl/train/*.arrow"
- split: test
path: "data/EuroParl/test/*.arrow"
- config_name: FreeLaw
data_files:
- split: train
path: "data/FreeLaw/train/*.arrow"
- split: test
path: "data/FreeLaw/test/*.arrow"
- config_name: Github
data_files:
- split: train
path: "data/Github/train/*.arrow"
- split: test
path: "data/Github/test/*.arrow"
- config_name: Gutenberg (PG-19)
data_files:
- split: train
path: "data/Gutenberg (PG-19)/train/*.arrow"
- split: test
path: "data/Gutenberg (PG-19)/test/*.arrow"
- config_name: HackerNews
data_files:
- split: train
path: "data/HackerNews/train/*.arrow"
- split: test
path: "data/HackerNews/test/*.arrow"
- config_name: NIH ExPorter
data_files:
- split: train
path: "data/NIH ExPorter/train/*.arrow"
- split: test
path: "data/NIH ExPorter/test/*.arrow"
- config_name: OpenSubtitles
data_files:
- split: train
path: "data/OpenSubtitles/train/*.arrow"
- split: test
path: "data/OpenSubtitles/test/*.arrow"
- config_name: OpenWebText2
data_files:
- split: train
path: "data/OpenWebText2/train/*.arrow"
- split: test
path: "data/OpenWebText2/test/*.arrow"
- config_name: PhilPapers
data_files:
- split: train
path: "data/PhilPapers/train/*.arrow"
- split: test
path: "data/PhilPapers/test/*.arrow"
- config_name: Pile-CC
data_files:
- split: train
path: "data/Pile-CC/train/*.arrow"
- split: test
path: "data/Pile-CC/test/*.arrow"
- config_name: PubMed Abstracts
data_files:
- split: train
path: "data/PubMed Abstracts/train/*.arrow"
- split: test
path: "data/PubMed Abstracts/test/*.arrow"
- config_name: PubMed Central
data_files:
- split: train
path: "data/PubMed Central/train/*.arrow"
- split: test
path: "data/PubMed Central/test/*.arrow"
- config_name: StackExchange
data_files:
- split: train
path: "data/StackExchange/train/*.arrow"
- split: test
path: "data/StackExchange/test/*.arrow"
- config_name: UPSTO Backgrounds
data_files:
- split: train
path: "data/UPSTO Backgrounds/train/*.arrow"
- split: test
path: "data/UPSTO Backgrounds/test/*.arrow"
- config_name: Ubuntu IRC
data_files:
- split: train
path: "data/Ubuntu IRC/train/*.arrow"
- split: test
path: "data/Ubuntu IRC/test/*.arrow"
- config_name: Wikipedia (en)
data_files:
- split: train
path: "data/Wikipedia (en)/train/*.arrow"
- split: test
path: "data/Wikipedia (en)/test/*.arrow"
- config_name: YoutubeSubtitles
data_files:
- split: train
path: "data/YoutubeSubtitles/train/*.arrow"
- split: test
path: "data/YoutubeSubtitles/test/*.arrow"
---
# Dataset description
[The pile](https://arxiv.org/abs/2101.00027) is an 800GB dataset of english text
designed by EleutherAI to train large-scale language models. The original version of
the dataset can be found [here](https://huggingface.co/datasets/EleutherAI/pile).
The dataset is divided into 22 smaller high-quality datasets. For more information
each of them, please refer to [the datasheet for the pile](https://arxiv.org/abs/2201.07311).
However, the current version of the dataset, available on the Hub, is not splitted accordingly.
We had to solve this problem in order to improve the user experience when it comes to deal with
the pile via the hub.
Here is an instance of the pile
```
{
'meta': {'pile_set_name': 'Pile-CC'},
'text': 'It is done, and submitted. You can play “Survival of the Tastiest” on Android, and on the web. Playing on...'
}
```
We used the `meta` column to properly divide the dataset in subsets. Each instance `example` belongs to the subset
`domain` and `domain = example['meta']['pile_set_name']`. By doing this, we were able to create a [new version of the pile](https://huggingface.co/datasets/ArmelR/sharded-pile)
that is properly divided, each instance having a new column `domain`.
We further splitted each subset in train/test (97%/3%) to build the current dataset which the following structure
```
data
ArXiv
train
test
BookCorpus2
train
test
Books3
train
test
```
# Usage
```python
from datasets import load_dataset
dataset = load_dataset(
"ArmelR/the-pile-splitted",
subset_of_interest,
num_proc=8
)
```
Using `subset_of_interest = "default"` will load the whole dataset.
| 7,026 | [
[
-0.0576171875,
-0.042999267578125,
-0.01898193359375,
0.0197601318359375,
-0.02734375,
-0.007503509521484375,
-0.00872802734375,
-0.02685546875,
0.04815673828125,
0.05682373046875,
-0.0225067138671875,
-0.031646728515625,
-0.0305633544921875,
0.0092315673828125,
-0.028167724609375,
0.10455322265625,
0.00007021427154541016,
-0.027801513671875,
-0.032073974609375,
-0.0528564453125,
-0.0202789306640625,
-0.0178070068359375,
-0.04632568359375,
-0.0228271484375,
0.0386962890625,
0.0426025390625,
0.056060791015625,
0.08001708984375,
0.050567626953125,
0.015625,
-0.018585205078125,
-0.0017194747924804688,
-0.03857421875,
-0.00666046142578125,
-0.0018873214721679688,
-0.01312255859375,
-0.0252227783203125,
-0.00623321533203125,
0.043548583984375,
0.05657958984375,
-0.0309600830078125,
0.01390838623046875,
0.004894256591796875,
0.058074951171875,
-0.031707763671875,
0.0069122314453125,
-0.0218048095703125,
0.00530242919921875,
-0.02349853515625,
-0.00933074951171875,
-0.0251007080078125,
0.0036373138427734375,
0.00991058349609375,
-0.049774169921875,
0.028778076171875,
0.02587890625,
0.06982421875,
0.032440185546875,
-0.037017822265625,
-0.0217132568359375,
-0.02978515625,
0.058990478515625,
-0.04522705078125,
0.0080108642578125,
0.045684814453125,
0.0244140625,
-0.007442474365234375,
-0.022186279296875,
-0.0303802490234375,
0.006561279296875,
-0.021636962890625,
0.0017805099487304688,
0.02264404296875,
-0.01837158203125,
0.0175933837890625,
0.04901123046875,
-0.071533203125,
0.01708984375,
-0.041015625,
-0.00644683837890625,
0.06939697265625,
0.0176544189453125,
0.0205078125,
-0.04193115234375,
-0.0163726806640625,
-0.038543701171875,
-0.0484619140625,
0.01428985595703125,
0.0214996337890625,
0.038787841796875,
-0.0258331298828125,
0.05078125,
-0.01971435546875,
0.053436279296875,
0.01302337646484375,
-0.0200042724609375,
0.052154541015625,
-0.00849151611328125,
-0.01424407958984375,
0.0210113525390625,
0.06793212890625,
0.031402587890625,
-0.0134429931640625,
0.0187225341796875,
-0.00803375244140625,
-0.0156402587890625,
0.024200439453125,
-0.0662841796875,
-0.037628173828125,
0.0643310546875,
-0.028350830078125,
-0.0391845703125,
0.0012922286987304688,
-0.056610107421875,
-0.05181884765625,
0.00666046142578125,
0.0079193115234375,
-0.032440185546875,
-0.0231781005859375,
0.01511383056640625,
0.0032215118408203125,
0.0182037353515625,
0.017181396484375,
-0.0634765625,
0.021026611328125,
0.04345703125,
0.050933837890625,
-0.00809478759765625,
-0.031402587890625,
-0.04510498046875,
0.00301361083984375,
-0.00821685791015625,
0.08575439453125,
-0.0197296142578125,
-0.0258331298828125,
0.0012645721435546875,
0.026092529296875,
-0.007678985595703125,
-0.054290771484375,
0.059967041015625,
-0.021240234375,
0.0513916015625,
-0.02569580078125,
-0.04278564453125,
-0.0274200439453125,
0.03399658203125,
-0.08355712890625,
0.09368896484375,
0.0191802978515625,
-0.09356689453125,
0.028106689453125,
-0.04193115234375,
-0.059600830078125,
0.016632080078125,
-0.005859375,
-0.0537109375,
-0.01494598388671875,
0.0286712646484375,
0.033355712890625,
-0.01219940185546875,
-0.004150390625,
-0.027069091796875,
-0.0250701904296875,
-0.019683837890625,
0.0167083740234375,
0.07147216796875,
-0.0019588470458984375,
-0.00897979736328125,
-0.013519287109375,
-0.0526123046875,
-0.00896453857421875,
0.005474090576171875,
-0.044647216796875,
-0.0242767333984375,
0.01079559326171875,
0.021270751953125,
0.007190704345703125,
0.0033359527587890625,
-0.0299224853515625,
0.0246429443359375,
-0.0163116455078125,
0.00676727294921875,
0.04669189453125,
-0.00960540771484375,
0.04339599609375,
-0.0567626953125,
0.035064697265625,
0.0059814453125,
-0.0012483596801757812,
-0.00970458984375,
-0.021728515625,
-0.051025390625,
-0.0229949951171875,
0.042327880859375,
0.04876708984375,
-0.04937744140625,
0.061920166015625,
-0.03253173828125,
-0.039825439453125,
-0.036529541015625,
-0.0179901123046875,
-0.0025310516357421875,
0.021820068359375,
0.024658203125,
-0.01377105712890625,
-0.04095458984375,
-0.053436279296875,
0.0234527587890625,
-0.00782012939453125,
-0.0093841552734375,
0.04278564453125,
0.055084228515625,
-0.00949859619140625,
0.06756591796875,
-0.031829833984375,
-0.036712646484375,
-0.022125244140625,
0.003200531005859375,
0.03857421875,
0.043792724609375,
0.03912353515625,
-0.06256103515625,
-0.05438232421875,
0.0146636962890625,
-0.0673828125,
-0.00896453857421875,
-0.01526641845703125,
-0.016998291015625,
0.00786590576171875,
0.005695343017578125,
-0.057159423828125,
0.022064208984375,
0.054840087890625,
-0.028656005859375,
0.058990478515625,
-0.006259918212890625,
0.0178680419921875,
-0.095703125,
0.01007080078125,
-0.0145416259765625,
-0.01103973388671875,
-0.0144195556640625,
0.0084991455078125,
-0.012969970703125,
0.007183074951171875,
-0.04791259765625,
0.04766845703125,
-0.03485107421875,
-0.0107421875,
-0.0167999267578125,
0.01053619384765625,
0.01018524169921875,
0.03802490234375,
-0.0176544189453125,
0.0355224609375,
0.06622314453125,
-0.05120849609375,
0.0294952392578125,
0.05389404296875,
-0.0260009765625,
0.04248046875,
-0.051055908203125,
-0.006946563720703125,
-0.0194854736328125,
0.046234130859375,
-0.03936767578125,
-0.03875732421875,
0.024078369140625,
-0.01470947265625,
0.01035308837890625,
-0.02423095703125,
-0.03204345703125,
-0.039642333984375,
-0.036376953125,
0.027801513671875,
0.04400634765625,
-0.0418701171875,
0.044921875,
0.04541015625,
-0.00832366943359375,
-0.059051513671875,
-0.0340576171875,
-0.010772705078125,
-0.035919189453125,
-0.047149658203125,
0.023956298828125,
-0.01264190673828125,
-0.01287078857421875,
0.01525115966796875,
-0.00870513916015625,
-0.01171875,
-0.0183258056640625,
0.0162506103515625,
-0.00897979736328125,
0.0036296844482421875,
0.00029158592224121094,
0.006145477294921875,
-0.01378631591796875,
-0.010284423828125,
-0.004180908203125,
0.05157470703125,
0.01001739501953125,
-0.004543304443359375,
-0.000021278858184814453,
0.0171356201171875,
0.04254150390625,
-0.01401519775390625,
0.0758056640625,
0.042510986328125,
-0.0275421142578125,
-0.02984619140625,
-0.019287109375,
0.005664825439453125,
-0.03643798828125,
0.0270538330078125,
-0.0201263427734375,
-0.06573486328125,
0.045013427734375,
0.0129547119140625,
0.033905029296875,
0.045074462890625,
0.0242767333984375,
-0.03765869140625,
0.04730224609375,
0.0328369140625,
-0.011260986328125,
0.01934814453125,
-0.040924072265625,
-0.0175018310546875,
-0.07867431640625,
-0.0024433135986328125,
-0.040374755859375,
-0.0360107421875,
-0.03741455078125,
-0.0386962890625,
0.0146636962890625,
0.0131988525390625,
-0.0210723876953125,
0.03863525390625,
-0.050048828125,
0.05242919921875,
0.021026611328125,
0.017303466796875,
0.0122222900390625,
0.023162841796875,
0.00609588623046875,
0.0253143310546875,
-0.05706787109375,
-0.03460693359375,
0.0780029296875,
0.00722503662109375,
0.033905029296875,
0.0015420913696289062,
0.05328369140625,
0.0304107666015625,
0.0218505859375,
-0.046600341796875,
0.0374755859375,
-0.0335693359375,
-0.057830810546875,
-0.037841796875,
-0.055023193359375,
-0.0963134765625,
0.034271240234375,
-0.0144195556640625,
-0.032440185546875,
-0.01329803466796875,
0.0017232894897460938,
-0.023712158203125,
0.041015625,
-0.023345947265625,
0.06463623046875,
-0.006259918212890625,
-0.018157958984375,
-0.00786590576171875,
-0.041900634765625,
0.0199127197265625,
-0.0183868408203125,
0.034698486328125,
-0.010955810546875,
0.0175018310546875,
0.08416748046875,
-0.0673828125,
0.047332763671875,
-0.00983428955078125,
-0.00469207763671875,
0.041748046875,
0.0139007568359375,
0.0482177734375,
-0.0023345947265625,
-0.026031494140625,
0.005001068115234375,
-0.01174163818359375,
-0.05767822265625,
-0.0247039794921875,
0.0443115234375,
-0.06317138671875,
-0.01629638671875,
-0.032440185546875,
-0.04840087890625,
0.010772705078125,
0.0229034423828125,
0.034942626953125,
0.05230712890625,
-0.021697998046875,
0.034576416015625,
0.0526123046875,
-0.0386962890625,
0.033416748046875,
0.022918701171875,
-0.0243072509765625,
-0.036346435546875,
0.056182861328125,
0.00604248046875,
-0.01415252685546875,
0.03692626953125,
0.0253448486328125,
-0.0250396728515625,
-0.045013427734375,
-0.043182373046875,
0.0269622802734375,
-0.033294677734375,
-0.004669189453125,
-0.06341552734375,
-0.009613037109375,
-0.01629638671875,
-0.0233612060546875,
-0.0182952880859375,
-0.0341796875,
-0.0011339187622070312,
-0.016571044921875,
0.0482177734375,
0.04400634765625,
-0.010711669921875,
0.04290771484375,
-0.07574462890625,
0.0084381103515625,
0.00882720947265625,
0.0223388671875,
-0.01399993896484375,
-0.05078125,
-0.043426513671875,
0.01554107666015625,
-0.0014467239379882812,
-0.0225677490234375,
0.037322998046875,
0.0021114349365234375,
0.0219879150390625,
0.022613525390625,
0.021697998046875,
0.03448486328125,
-0.043426513671875,
0.05120849609375,
-0.00604248046875,
-0.0273590087890625,
0.02392578125,
-0.056915283203125,
0.020782470703125,
0.055084228515625,
0.031951904296875,
-0.04132080078125,
-0.005649566650390625,
-0.0576171875,
-0.07257080078125,
0.0614013671875,
0.025390625,
-0.01169586181640625,
0.012054443359375,
0.0016040802001953125,
0.0298614501953125,
0.01097869873046875,
-0.045074462890625,
-0.0184173583984375,
0.0008296966552734375,
-0.0185394287109375,
-0.011749267578125,
0.0029697418212890625,
-0.0164794921875,
-0.01611328125,
0.056976318359375,
0.00955963134765625,
0.006206512451171875,
-0.01474761962890625,
-0.01529693603515625,
-0.0159759521484375,
-0.0019245147705078125,
0.01383209228515625,
0.026611328125,
-0.0292816162109375,
0.00252532958984375,
0.004367828369140625,
-0.054595947265625,
0.005962371826171875,
0.01108551025390625,
-0.0149688720703125,
-0.00182342529296875,
0.03826904296875,
0.055419921875,
-0.002391815185546875,
-0.05169677734375,
0.0276947021484375,
0.007144927978515625,
-0.025970458984375,
-0.0194854736328125,
-0.0009398460388183594,
-0.004192352294921875,
-0.0032215118408203125,
0.018310546875,
0.01108551025390625,
-0.0039825439453125,
-0.0119781494140625,
0.050384521484375,
-0.0010280609130859375,
-0.0063018798828125,
-0.01502227783203125,
0.02996826171875,
0.0305023193359375,
-0.0233001708984375,
0.08050537109375,
-0.031280517578125,
-0.041473388671875,
0.059295654296875,
0.010650634765625,
0.04693603515625,
0.0015716552734375,
0.03900146484375,
0.050567626953125,
0.0203399658203125,
-0.0265045166015625,
0.0034809112548828125,
0.00930023193359375,
-0.06964111328125,
-0.040283203125,
-0.053558349609375,
-0.0321044921875,
0.0052337646484375,
-0.051666259765625,
0.0190887451171875,
-0.0185089111328125,
0.01025390625,
-0.03387451171875,
0.0172882080078125,
-0.043548583984375,
0.017181396484375,
-0.0093994140625,
0.058074951171875,
-0.077392578125,
0.03692626953125,
0.07012939453125,
-0.0211181640625,
-0.061370849609375,
-0.01029205322265625,
-0.0236358642578125,
-0.04669189453125,
0.00331878662109375,
0.0267791748046875,
0.051055908203125,
-0.003299713134765625,
-0.040191650390625,
-0.065185546875,
0.0750732421875,
-0.024169921875,
-0.0276336669921875,
0.020294189453125,
0.025421142578125,
0.03375244140625,
-0.006931304931640625,
0.0274200439453125,
0.024932861328125,
0.040191650390625,
0.01297760009765625,
-0.0665283203125,
0.0036487579345703125,
-0.042510986328125,
-0.03759765625,
0.036895751953125,
-0.0662841796875,
0.07037353515625,
-0.005352020263671875,
-0.00795745849609375,
-0.01461029052734375,
0.03387451171875,
0.050079345703125,
0.01477813720703125,
0.0621337890625,
0.0858154296875,
0.06988525390625,
-0.007488250732421875,
0.08929443359375,
-0.00632476806640625,
0.05474853515625,
0.0780029296875,
-0.034271240234375,
0.056884765625,
0.012481689453125,
-0.0232391357421875,
0.0439453125,
0.06634521484375,
-0.0144195556640625,
0.043365478515625,
0.0200958251953125,
-0.00389862060546875,
-0.00884246826171875,
-0.0075836181640625,
-0.0296478271484375,
0.0247955322265625,
0.01042938232421875,
-0.0001646280288696289,
-0.025146484375,
0.002658843994140625,
0.00786590576171875,
-0.0311279296875,
-0.0030345916748046875,
0.0355224609375,
-0.0165252685546875,
-0.032806396484375,
0.050323486328125,
-0.0217132568359375,
0.05413818359375,
-0.0234832763671875,
0.00530242919921875,
-0.0275726318359375,
0.00586700439453125,
-0.03460693359375,
-0.0596923828125,
0.0276947021484375,
-0.00824737548828125,
-0.0141448974609375,
-0.0176544189453125,
0.026031494140625,
-0.024658203125,
-0.0537109375,
-0.006744384765625,
0.040618896484375,
0.03985595703125,
-0.0012235641479492188,
-0.059906005859375,
0.0209503173828125,
0.01251983642578125,
-0.04364013671875,
0.03826904296875,
0.043792724609375,
0.001125335693359375,
0.0484619140625,
0.0469970703125,
-0.010833740234375,
-0.0132904052734375,
-0.009674072265625,
0.061920166015625,
-0.047698974609375,
-0.047332763671875,
-0.0294189453125,
0.05816650390625,
-0.015411376953125,
-0.032318115234375,
0.050994873046875,
0.06610107421875,
0.0625,
0.000021576881408691406,
0.06060791015625,
-0.056060791015625,
0.044097900390625,
-0.0098724365234375,
0.0611572265625,
-0.0478515625,
0.013275146484375,
-0.0169525146484375,
-0.061065673828125,
-0.015289306640625,
0.05975341796875,
0.009002685546875,
0.0003032684326171875,
0.06787109375,
0.05291748046875,
-0.0037975311279296875,
0.0086517333984375,
-0.002178192138671875,
0.02349853515625,
0.01605224609375,
0.04156494140625,
0.045501708984375,
-0.053802490234375,
0.03961181640625,
-0.045501708984375,
-0.02386474609375,
-0.007495880126953125,
-0.06500244140625,
-0.077392578125,
-0.0272369384765625,
-0.032958984375,
-0.0301361083984375,
-0.01715087890625,
0.04925537109375,
0.056365966796875,
-0.06439208984375,
-0.0291748046875,
-0.00604248046875,
0.0034275054931640625,
-0.0307159423828125,
-0.0227813720703125,
0.056732177734375,
0.0215911865234375,
-0.049713134765625,
0.0233917236328125,
-0.011749267578125,
-0.00579071044921875,
0.00594329833984375,
-0.00916290283203125,
-0.01143646240234375,
-0.0238494873046875,
0.045989990234375,
0.0211181640625,
-0.00733184814453125,
-0.0191802978515625,
-0.004444122314453125,
0.00409698486328125,
0.0178985595703125,
0.02557373046875,
-0.055511474609375,
-0.0033130645751953125,
0.053436279296875,
0.046051025390625,
0.046783447265625,
0.009246826171875,
0.024169921875,
-0.050994873046875,
0.0198822021484375,
0.0140533447265625,
0.03594970703125,
0.03173828125,
-0.03387451171875,
0.07037353515625,
0.00855255126953125,
-0.050018310546875,
-0.0650634765625,
-0.00772857666015625,
-0.09429931640625,
-0.01348114013671875,
0.08782958984375,
0.01209259033203125,
-0.0259552001953125,
-0.0091705322265625,
-0.0188446044921875,
0.00408935546875,
-0.037445068359375,
0.061614990234375,
0.058837890625,
-0.01153564453125,
-0.0061187744140625,
-0.0237579345703125,
0.023468017578125,
0.03106689453125,
-0.0732421875,
0.01244354248046875,
0.03582763671875,
0.0141754150390625,
0.0080413818359375,
0.046875,
0.003063201904296875,
-0.00803375244140625,
0.01125335693359375,
0.0206146240234375,
0.00005221366882324219,
-0.0227813720703125,
-0.0082550048828125,
0.0233001708984375,
-0.0430908203125,
-0.01349639892578125
]
] |
SALT-NLP/ImplicitHate | 2023-02-16T23:00:38.000Z | [
"region:us"
] | SALT-NLP | null | null | 2 | 1,078 | 2023-02-16T22:45:19 | # Implicit Hate Speech
_Latent Hatred: A Benchmark for Understanding Implicit Hate Speech_
[[Read the Paper]](https://aclanthology.org/2021.emnlp-main.29/) | [[Take a Survey to Access the Data]](https://forms.gle/QxCpEbVp91Z35hWFA) | [[Download the Data]](https://www.dropbox.com/s/24meryhqi1oo0xk/implicit-hate-corpus.zip?dl=0)
<img src="frontpage.png" alt="frontpage" width="650"/>
## *Why Implicit Hate?*
It is important to consider the subtle tricks that many extremists use to mask their threats and abuse. These more implicit forms of hate speech may easily go undetected by keyword detection systems, and even the most advanced architectures can fail if they have not been trained on implicit hate speech ([Caselli et al. 2020](https://aclanthology.org/2020.lrec-1.760/)).
## *Where can I download the data?*
If you have not already, please first complete a short [survey](https://forms.gle/QxCpEbVp91Z35hWFA). Then follow [this link to download](https://www.dropbox.com/s/p1ctnsg3xlnupwr/implicit-hate-corpus.zip?dl=0) (2 MB, expands to 6 MB).
## *What's 'in the box?'*
This dataset contains **22,056** tweets from the most prominent extremist groups in the United States; **6,346** of these tweets contain *implicit hate speech.* We decompose the implicit hate class using the following taxonomy (distribution shown on the left).
* (24.2%) **Grievance:** frustration over a minority group's perceived privilege.
* (20.0%) **Incitement:** implicitly promoting known hate groups and ideologies (e.g. by flaunting in-group power).
* (13.6%) **Inferiority:** implying some group or person is of lesser value than another.
* (12.6%) **Irony:** using sarcasm, humor, and satire to demean someone.
* (17.9%) **Stereotypes:** associating a group with negative attribute using euphemisms, circumlocution, or metaphorical language.
* (10.5%) **Threats:** making an indirect commitment to attack someone's body, well-being, reputation, liberty, etc.
* (1.2%) **Other**
Each of the 6,346 implicit hate tweets also has free-text annotations for *target demographic group* and an *implied statement* to describe the underlying message (see banner image above).
## *What can I do with this data?*
State-of-the-art neural models may be able to learn from our data how to (1) classify this more difficult class of hate speech and (3) explain implicit hate by generating descriptions of both the *target* and the *implied message.* As our [paper baselines](#) show, neural models still have a ways to go, especially with classifying *implicit hate categories*, but overall, the results are promising, especially with *implied statement generation,* an admittedly challenging task.
We hope you can extend our baselines and further our efforts to understand and address some of these most pernicious forms of language that plague the web, especially among extremist groups.
## *How do I cite this work?*
**Citation:**
> ElSherief, M., Ziems, C., Muchlinski, D., Anupindi, V., Seybolt, J., De Choudhury, M., & Yang, D. (2021). Latent Hatred: A Benchmark for Understanding Implicit Hate Speech. In _Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing (EMNLP)_.
**BibTeX:**
```tex
@inproceedings{elsherief-etal-2021-latent,
title = "Latent Hatred: A Benchmark for Understanding Implicit Hate Speech",
author = "ElSherief, Mai and
Ziems, Caleb and
Muchlinski, David and
Anupindi, Vaishnavi and
Seybolt, Jordyn and
De Choudhury, Munmun and
Yang, Diyi",
booktitle = "Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing",
month = nov,
year = "2021",
address = "Online and Punta Cana, Dominican Republic",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2021.emnlp-main.29",
pages = "345--363"
}
```
| 3,895 | [
[
-0.03607177734375,
-0.08209228515625,
0.0201568603515625,
0.00472259521484375,
-0.00414276123046875,
0.00732421875,
-0.0121307373046875,
-0.0419921875,
0.003932952880859375,
0.0063934326171875,
-0.041259765625,
-0.049346923828125,
-0.06646728515625,
-0.007724761962890625,
-0.047210693359375,
0.08526611328125,
0.0228118896484375,
0.0024166107177734375,
0.0219268798828125,
-0.014434814453125,
0.01904296875,
-0.05975341796875,
-0.062286376953125,
0.0107879638671875,
0.05780029296875,
0.007556915283203125,
0.035247802734375,
0.038116455078125,
0.01282501220703125,
0.019287109375,
-0.00948333740234375,
-0.0249786376953125,
-0.0372314453125,
0.027130126953125,
-0.0017461776733398438,
-0.01377105712890625,
-0.0225830078125,
0.0250091552734375,
0.034210205078125,
0.041259765625,
0.00841522216796875,
0.006256103515625,
0.00597381591796875,
0.0175628662109375,
-0.044586181640625,
-0.01064300537109375,
-0.0667724609375,
0.0062255859375,
-0.033294677734375,
0.0198974609375,
-0.0181732177734375,
-0.0408935546875,
0.0062255859375,
-0.02972412109375,
0.0264739990234375,
0.006374359130859375,
0.04669189453125,
0.01727294921875,
-0.031036376953125,
-0.027008056640625,
-0.0345458984375,
0.06243896484375,
-0.049530029296875,
0.0275421142578125,
0.029052734375,
-0.005359649658203125,
0.007511138916015625,
-0.03948974609375,
-0.05419921875,
-0.0205535888671875,
0.001186370849609375,
0.01580810546875,
-0.045928955078125,
-0.001102447509765625,
0.040802001953125,
0.0195465087890625,
-0.041748046875,
0.01519012451171875,
-0.0236358642578125,
-0.01161956787109375,
0.05010986328125,
-0.00543975830078125,
0.0345458984375,
-0.0165557861328125,
-0.01160430908203125,
-0.0005512237548828125,
-0.033416748046875,
-0.024505615234375,
0.047882080078125,
0.0251922607421875,
-0.01532745361328125,
0.041290283203125,
0.00681304931640625,
0.023895263671875,
-0.003948211669921875,
0.01136016845703125,
0.023345947265625,
-0.0158538818359375,
-0.0113983154296875,
-0.00579071044921875,
0.055389404296875,
0.019989013671875,
0.0242462158203125,
-0.0112457275390625,
0.01029205322265625,
0.0382080078125,
0.0207672119140625,
-0.0584716796875,
-0.01317596435546875,
0.005950927734375,
-0.0175018310546875,
-0.01384735107421875,
-0.042144775390625,
-0.0882568359375,
-0.04058837890625,
-0.003604888916015625,
0.00775909423828125,
-0.0379638671875,
-0.0181121826171875,
-0.035064697265625,
-0.0285797119140625,
0.005558013916015625,
0.0155029296875,
-0.042236328125,
0.0285797119140625,
0.03741455078125,
0.06256103515625,
-0.0240020751953125,
0.0031795501708984375,
-0.0233154296875,
-0.00225067138671875,
-0.00894927978515625,
0.04876708984375,
-0.04888916015625,
-0.002239227294921875,
0.016143798828125,
-0.0285491943359375,
-0.00264739990234375,
-0.022186279296875,
0.057525634765625,
-0.0263671875,
0.0206146240234375,
-0.00806427001953125,
-0.046112060546875,
-0.0168304443359375,
0.00733184814453125,
-0.032684326171875,
0.0772705078125,
-0.0116729736328125,
-0.052490234375,
0.010498046875,
-0.0482177734375,
-0.01447296142578125,
-0.0030155181884765625,
-0.01436614990234375,
-0.01727294921875,
0.004360198974609375,
-0.007785797119140625,
0.0253448486328125,
-0.0216064453125,
0.00812530517578125,
-0.04815673828125,
0.007366180419921875,
0.0095367431640625,
-0.0289154052734375,
0.0767822265625,
0.0212554931640625,
-0.0675048828125,
-0.003753662109375,
-0.0615234375,
-0.014495849609375,
0.0196533203125,
0.00597381591796875,
-0.043304443359375,
0.00902557373046875,
0.02032470703125,
0.031158447265625,
0.0019311904907226562,
-0.06207275390625,
-0.0119171142578125,
-0.0374755859375,
0.00853729248046875,
0.08758544921875,
-0.0105438232421875,
0.01763916015625,
-0.0098724365234375,
0.0276947021484375,
-0.00843048095703125,
0.0163116455078125,
0.049774169921875,
-0.034027099609375,
-0.0697021484375,
-0.00794219970703125,
-0.0206146240234375,
0.025146484375,
-0.035736083984375,
0.0167694091796875,
-0.0009436607360839844,
-0.0477294921875,
-0.0177001953125,
-0.00897979736328125,
0.054901123046875,
0.037689208984375,
0.050537109375,
0.020111083984375,
-0.070556640625,
-0.0789794921875,
-0.041839599609375,
-0.0256195068359375,
0.019012451171875,
0.02789306640625,
0.051361083984375,
0.00762939453125,
0.04498291015625,
-0.043304443359375,
-0.0095672607421875,
-0.005924224853515625,
0.0401611328125,
-0.0194244384765625,
0.021331787109375,
0.04583740234375,
-0.080322265625,
-0.05633544921875,
-0.03857421875,
-0.045501708984375,
-0.03472900390625,
0.036468505859375,
-0.00689697265625,
0.0283203125,
0.03289794921875,
0.001102447509765625,
0.0382080078125,
0.044097900390625,
-0.0526123046875,
0.02557373046875,
0.04779052734375,
0.004833221435546875,
-0.0760498046875,
0.0005130767822265625,
0.0158233642578125,
0.01113128662109375,
-0.05792236328125,
-0.0125274658203125,
-0.041351318359375,
0.0299224853515625,
-0.046905517578125,
0.037628173828125,
-0.0160980224609375,
0.0199432373046875,
-0.01401519775390625,
0.002384185791015625,
-0.044586181640625,
0.045989990234375,
-0.006069183349609375,
0.034454345703125,
0.018280029296875,
-0.038055419921875,
0.017730712890625,
0.01323699951171875,
-0.00844573974609375,
0.044708251953125,
-0.037628173828125,
0.019500732421875,
-0.0125274658203125,
0.00897979736328125,
-0.0625,
-0.00023758411407470703,
0.047119140625,
-0.044342041015625,
-0.0017185211181640625,
-0.0281829833984375,
-0.03753662109375,
-0.006107330322265625,
-0.0296783447265625,
0.039886474609375,
0.041290283203125,
-0.0194091796875,
0.040802001953125,
0.053955078125,
-0.0107879638671875,
-0.057586669921875,
-0.040618896484375,
0.0013551712036132812,
-0.027923583984375,
-0.017547607421875,
0.03460693359375,
-0.0269317626953125,
-0.048248291015625,
-0.0005278587341308594,
0.005584716796875,
-0.016510009765625,
0.0019159317016601562,
0.045166015625,
0.0016632080078125,
0.0036602020263671875,
0.01462554931640625,
-0.005016326904296875,
0.0207061767578125,
0.01800537109375,
-0.0206451416015625,
0.04754638671875,
-0.01367950439453125,
0.0001239776611328125,
0.00209808349609375,
0.04669189453125,
0.022705078125,
0.028350830078125,
0.05816650390625,
0.0648193359375,
-0.04351806640625,
-0.0262451171875,
-0.04559326171875,
-0.00392913818359375,
-0.026519775390625,
0.030029296875,
-0.00644683837890625,
-0.07879638671875,
0.0258331298828125,
0.02911376953125,
0.0093841552734375,
0.0662841796875,
0.050750732421875,
-0.0007281303405761719,
0.0792236328125,
0.041229248046875,
0.004482269287109375,
0.034515380859375,
-0.003803253173828125,
0.006275177001953125,
-0.046875,
-0.0199737548828125,
-0.071533203125,
-0.007686614990234375,
-0.042755126953125,
-0.0287322998046875,
0.0193328857421875,
-0.01367950439453125,
-0.03363037109375,
0.01371002197265625,
-0.035797119140625,
0.00601959228515625,
0.0276641845703125,
-0.01509857177734375,
0.004314422607421875,
0.019622802734375,
-0.01409149169921875,
-0.038787841796875,
-0.0273284912109375,
-0.028472900390625,
0.08343505859375,
0.0231475830078125,
0.029449462890625,
0.031280517578125,
0.0270233154296875,
0.049163818359375,
0.036865234375,
-0.044525146484375,
0.058074951171875,
-0.0291595458984375,
-0.0693359375,
-0.007686614990234375,
-0.03643798828125,
-0.059051513671875,
0.00629425048828125,
-0.01235198974609375,
-0.0733642578125,
0.004734039306640625,
0.01543426513671875,
-0.01221466064453125,
0.033416748046875,
-0.03179931640625,
0.041656494140625,
-0.017364501953125,
-0.0386962890625,
-0.0189208984375,
-0.0289459228515625,
0.0241241455078125,
-0.01480865478515625,
0.0201416015625,
-0.028472900390625,
-0.0199127197265625,
0.100341796875,
-0.0242156982421875,
0.0810546875,
-0.0243377685546875,
-0.01161956787109375,
0.001979827880859375,
-0.01561737060546875,
0.01299285888671875,
-0.0261688232421875,
-0.01593017578125,
0.022186279296875,
-0.0308380126953125,
-0.01216888427734375,
-0.042694091796875,
0.048919677734375,
-0.06072998046875,
-0.0266876220703125,
-0.04443359375,
-0.022186279296875,
-0.007160186767578125,
0.012054443359375,
0.03131103515625,
0.0237579345703125,
-0.035980224609375,
0.00890350341796875,
0.05084228515625,
-0.0252685546875,
0.0267181396484375,
0.05096435546875,
-0.006900787353515625,
-0.0302581787109375,
0.057830810546875,
0.0350341796875,
0.0002455711364746094,
0.0195770263671875,
0.0086822509765625,
-0.036895751953125,
-0.046875,
-0.006183624267578125,
0.0093231201171875,
-0.04779052734375,
-0.002170562744140625,
-0.09423828125,
-0.0173492431640625,
-0.056396484375,
-0.003734588623046875,
-0.01412200927734375,
-0.0311431884765625,
-0.011932373046875,
-0.004642486572265625,
0.03961181640625,
0.0748291015625,
-0.0308380126953125,
0.031005859375,
-0.004459381103515625,
0.0286407470703125,
0.0189666748046875,
0.0152740478515625,
0.004932403564453125,
-0.06158447265625,
-0.0015811920166015625,
0.00691986083984375,
-0.00936126708984375,
-0.0921630859375,
0.041046142578125,
0.003459930419921875,
0.038421630859375,
0.01323699951171875,
0.0243682861328125,
0.035858154296875,
-0.0304412841796875,
0.07025146484375,
0.00849151611328125,
-0.062225341796875,
0.048065185546875,
-0.022247314453125,
-0.020782470703125,
0.03753662109375,
0.0760498046875,
-0.042755126953125,
-0.05322265625,
-0.077392578125,
-0.07684326171875,
0.0511474609375,
0.0292510986328125,
-0.0016222000122070312,
-0.0215606689453125,
0.004047393798828125,
0.0006890296936035156,
0.01299285888671875,
-0.0791015625,
-0.07916259765625,
-0.0146484375,
-0.0240020751953125,
-0.0020999908447265625,
-0.036163330078125,
-0.0205841064453125,
-0.0290679931640625,
0.0731201171875,
0.00970458984375,
0.03814697265625,
-0.005687713623046875,
-0.0199127197265625,
0.0156402587890625,
0.0253448486328125,
0.042816162109375,
0.0254364013671875,
-0.02716064453125,
0.025665283203125,
0.01067352294921875,
-0.054046630859375,
0.014495849609375,
0.0260772705078125,
-0.0212860107421875,
0.00754547119140625,
0.0009284019470214844,
0.04541015625,
-0.004795074462890625,
-0.0246124267578125,
0.045257568359375,
-0.005992889404296875,
-0.017120361328125,
-0.058319091796875,
-0.006744384765625,
-0.0151824951171875,
0.006229400634765625,
0.050811767578125,
-0.00467681884765625,
0.0132293701171875,
-0.02984619140625,
0.0266876220703125,
0.0279083251953125,
-0.041748046875,
-0.038177490234375,
0.03826904296875,
0.003818511962890625,
-0.005603790283203125,
0.0275421142578125,
-0.026763916015625,
-0.058929443359375,
0.028594970703125,
0.044677734375,
0.0843505859375,
-0.01062774658203125,
0.01983642578125,
0.053619384765625,
0.0294647216796875,
0.050323486328125,
0.01253509521484375,
0.003940582275390625,
-0.06341552734375,
-0.01148223876953125,
-0.0625,
-0.00720977783203125,
0.042999267578125,
-0.0199127197265625,
-0.011322021484375,
-0.05670166015625,
-0.0003235340118408203,
0.0285797119140625,
0.0079498291015625,
-0.04693603515625,
0.02099609375,
0.048553466796875,
0.052947998046875,
-0.070556640625,
0.034332275390625,
0.042083740234375,
-0.042999267578125,
-0.04833984375,
0.0034427642822265625,
0.04010009765625,
-0.06256103515625,
0.06097412109375,
0.0010728836059570312,
-0.0188140869140625,
0.00824737548828125,
-0.07989501953125,
-0.057769775390625,
0.0241241455078125,
0.01087188720703125,
-0.0171356201171875,
0.01125335693359375,
0.00926971435546875,
0.04779052734375,
-0.03240966796875,
0.036834716796875,
0.0330810546875,
0.037200927734375,
-0.00484466552734375,
-0.025146484375,
0.02752685546875,
-0.037811279296875,
-0.01438140869140625,
0.0019273757934570312,
-0.035797119140625,
0.071044921875,
0.014801025390625,
-0.028717041015625,
-0.02685546875,
0.049530029296875,
-0.01082611083984375,
0.017364501953125,
0.0528564453125,
0.052337646484375,
0.044647216796875,
-0.007724761962890625,
0.054168701171875,
0.0011425018310546875,
0.00698089599609375,
0.09423828125,
0.0166473388671875,
0.05859375,
0.0114593505859375,
-0.0169219970703125,
0.04766845703125,
0.0221099853515625,
-0.0023193359375,
0.01425933837890625,
0.026611328125,
-0.04168701171875,
0.0007538795471191406,
-0.0439453125,
-0.03485107421875,
0.031005859375,
0.046417236328125,
-0.04156494140625,
-0.0255889892578125,
0.004993438720703125,
0.037139892578125,
0.0093841552734375,
-0.017181396484375,
0.060882568359375,
0.0018253326416015625,
-0.0296783447265625,
0.03717041015625,
0.00102996826171875,
0.07568359375,
-0.042205810546875,
-0.004528045654296875,
-0.0041656494140625,
-0.009002685546875,
-0.0250091552734375,
-0.041168212890625,
0.032623291015625,
0.04107666015625,
-0.02215576171875,
-0.0204010009765625,
0.042999267578125,
-0.031951904296875,
-0.01092529296875,
0.045135498046875,
0.034149169921875,
0.032012939453125,
-0.0171966552734375,
-0.08074951171875,
0.013427734375,
0.0113525390625,
-0.01141357421875,
0.0232086181640625,
0.0078277587890625,
0.01062774658203125,
0.027679443359375,
0.05303955078125,
0.0196380615234375,
0.035186767578125,
0.013336181640625,
0.05633544921875,
-0.06072998046875,
-0.00952911376953125,
-0.07147216796875,
0.0250701904296875,
-0.03179931640625,
-0.035858154296875,
0.07537841796875,
0.0477294921875,
0.0697021484375,
0.02337646484375,
0.077880859375,
-0.041717529296875,
0.072021484375,
-0.00945281982421875,
0.04534912109375,
-0.050811767578125,
-0.0032291412353515625,
-0.042266845703125,
-0.05523681640625,
-0.022705078125,
0.039794921875,
-0.04766845703125,
0.0063934326171875,
0.04559326171875,
0.06646728515625,
0.01056671142578125,
0.005031585693359375,
0.0210418701171875,
0.06378173828125,
0.024932861328125,
0.035736083984375,
0.0733642578125,
-0.039886474609375,
0.058258056640625,
-0.0289154052734375,
-0.0215911865234375,
-0.01064300537109375,
-0.0528564453125,
-0.04620361328125,
-0.057464599609375,
-0.046539306640625,
-0.05401611328125,
0.021209716796875,
0.0679931640625,
0.0250701904296875,
-0.056365966796875,
-0.006305694580078125,
-0.0027923583984375,
0.020050048828125,
0.0018262863159179688,
-0.0201873779296875,
0.0205535888671875,
-0.01007080078125,
-0.08087158203125,
0.00983428955078125,
0.00788116455078125,
0.00902557373046875,
0.0090179443359375,
0.00792694091796875,
-0.046875,
0.003665924072265625,
0.05499267578125,
0.0313720703125,
-0.06195068359375,
-0.0196685791015625,
-0.0136260986328125,
-0.0222320556640625,
-0.0189056396484375,
0.046051025390625,
-0.04266357421875,
0.0013179779052734375,
0.0219879150390625,
0.038330078125,
0.0162506103515625,
-0.01100921630859375,
0.020751953125,
-0.0517578125,
-0.00435638427734375,
0.0462646484375,
0.0184326171875,
0.01338958740234375,
-0.0132293701171875,
0.044647216796875,
0.04730224609375,
-0.0224609375,
-0.0579833984375,
0.01971435546875,
-0.0751953125,
-0.0164947509765625,
0.1007080078125,
0.00391387939453125,
-0.0134735107421875,
-0.048828125,
0.003787994384765625,
0.038421630859375,
-0.05328369140625,
0.039093017578125,
0.037933349609375,
0.00453948974609375,
-0.00859832763671875,
-0.023406982421875,
0.07275390625,
0.039337158203125,
-0.05694580078125,
0.005931854248046875,
0.06549072265625,
0.0117950439453125,
0.018707275390625,
0.0506591796875,
-0.00482177734375,
0.0015735626220703125,
0.0086822509765625,
0.0081787109375,
0.0162811279296875,
-0.018157958984375,
-0.0240325927734375,
0.038421630859375,
-0.032928466796875,
0.0012063980102539062
]
] |
google/xtreme_s | 2022-07-28T12:47:02.000Z | [
"task_categories:automatic-speech-recognition",
"annotations_creators:expert-generated",
"annotations_creators:crowdsourced",
"annotations_creators:machine-generated",
"language_creators:crowdsourced",
"language_creators:expert-generated",
"multilinguality:multilingual",
"size_categories:10K<n<100K",
"source_datasets:extended|multilingual_librispeech",
"source_datasets:extended|covost2",
"language:afr",
"language:amh",
"language:ara",
"language:asm",
"language:ast",
"language:azj",
"language:bel",
"language:ben",
"language:bos",
"language:cat",
"language:ceb",
"language:cmn",
"language:ces",
"language:cym",
"language:dan",
"language:deu",
"language:ell",
"language:eng",
"language:spa",
"language:est",
"language:fas",
"language:ful",
"language:fin",
"language:tgl",
"language:fra",
"language:gle",
"language:glg",
"language:guj",
"language:hau",
"language:heb",
"language:hin",
"language:hrv",
"language:hun",
"language:hye",
"language:ind",
"language:ibo",
"language:isl",
"language:ita",
"language:jpn",
"language:jav",
"language:kat",
"language:kam",
"language:kea",
"language:kaz",
"language:khm",
"language:kan",
"language:kor",
"language:ckb",
"language:kir",
"language:ltz",
"language:lug",
"language:lin",
"language:lao",
"language:lit",
"language:luo",
"language:lav",
"language:mri",
"language:mkd",
"language:mal",
"language:mon",
"language:mar",
"language:msa",
"language:mlt",
"language:mya",
"language:nob",
"language:npi",
"language:nld",
"language:nso",
"language:nya",
"language:oci",
"language:orm",
"language:ory",
"language:pan",
"language:pol",
"language:pus",
"language:por",
"language:ron",
"language:rus",
"language:bul",
"language:snd",
"language:slk",
"language:slv",
"language:sna",
"language:som",
"language:srp",
"language:swe",
"language:swh",
"language:tam",
"language:tel",
"language:tgk",
"language:tha",
"language:tur",
"language:ukr",
"language:umb",
"language:urd",
"language:uzb",
"language:vie",
"language:wol",
"language:xho",
"language:yor",
"language:yue",
"language:zul",
"license:cc-by-4.0",
"arxiv:2203.10752",
"arxiv:2205.12446",
"arxiv:2007.10310",
"region:us"
] | google | XTREME-S covers four task families: speech recognition, classification, speech-to-text translation and retrieval. Covering 102
languages from 10+ language families, 3 different domains and 4
task families, XTREME-S aims to simplify multilingual speech
representation evaluation, as well as catalyze research in “universal” speech representation learning. | @article{conneau2022xtreme,
title={XTREME-S: Evaluating Cross-lingual Speech Representations},
author={Conneau, Alexis and Bapna, Ankur and Zhang, Yu and Ma, Min and von Platen, Patrick and Lozhkov, Anton and Cherry, Colin and Jia, Ye and Rivera, Clara and Kale, Mihir and others},
journal={arXiv preprint arXiv:2203.10752},
year={2022}
} | 35 | 1,076 | 2022-03-04T14:10:40 | ---
annotations_creators:
- expert-generated
- crowdsourced
- machine-generated
language_creators:
- crowdsourced
- expert-generated
language:
- afr
- amh
- ara
- asm
- ast
- azj
- bel
- ben
- bos
- cat
- ceb
- cmn
- ces
- cym
- dan
- deu
- ell
- eng
- spa
- est
- fas
- ful
- fin
- tgl
- fra
- gle
- glg
- guj
- hau
- heb
- hin
- hrv
- hun
- hye
- ind
- ibo
- isl
- ita
- jpn
- jav
- kat
- kam
- kea
- kaz
- khm
- kan
- kor
- ckb
- kir
- ltz
- lug
- lin
- lao
- lit
- luo
- lav
- mri
- mkd
- mal
- mon
- mar
- msa
- mlt
- mya
- nob
- npi
- nld
- nso
- nya
- oci
- orm
- ory
- pan
- pol
- pus
- por
- ron
- rus
- bul
- snd
- slk
- slv
- sna
- som
- srp
- swe
- swh
- tam
- tel
- tgk
- tha
- tur
- ukr
- umb
- urd
- uzb
- vie
- wol
- xho
- yor
- yue
- zul
license:
- cc-by-4.0
multilinguality:
- multilingual
paperswithcode_id: librispeech-1
pretty_name: 'The Cross-lingual TRansfer Evaluation of Multilingual Encoders for Speech
(XTREME-S) benchmark is a benchmark designed to evaluate speech representations
across languages, tasks, domains and data regimes. It covers 102 languages from 10+ language families, 3 different domains and 4 task families: speech recognition, translation, classification and retrieval.'
size_categories:
- 10K<n<100K
source_datasets:
- extended|multilingual_librispeech
- extended|covost2
task_categories:
- automatic-speech-recognition
- speech-processing
task_ids:
- speech-recognition
---
# XTREME-S
## Dataset Description
- **Fine-Tuning script:** [research-projects/xtreme-s](https://github.com/huggingface/transformers/tree/master/examples/research_projects/xtreme-s)
- **Paper:** [XTREME-S: Evaluating Cross-lingual Speech Representations](https://arxiv.org/abs/2203.10752)
- **Leaderboard:** [TODO(PVP)]()
- **FLEURS amount of disk used:** 350 GB
- **Multilingual Librispeech amount of disk used:** 2700 GB
- **Voxpopuli amount of disk used:** 400 GB
- **Covost2 amount of disk used:** 70 GB
- **Minds14 amount of disk used:** 5 GB
- **Total amount of disk used:** ca. 3500 GB
The Cross-lingual TRansfer Evaluation of Multilingual Encoders for Speech (XTREME-S) benchmark is a benchmark designed to evaluate speech representations across languages, tasks, domains and data regimes. It covers 102 languages from 10+ language families, 3 different domains and 4 task families: speech recognition, translation, classification and retrieval.
***TLDR; XTREME-S is the first speech benchmark that is both diverse, fully accessible, and reproducible. All datasets can be downloaded with a single line of code.
An easy-to-use and flexible fine-tuning script is provided and actively maintained.***
XTREME-S covers speech recognition with Fleurs, Multilingual LibriSpeech (MLS) and VoxPopuli, speech translation with CoVoST-2, speech classification with LangID (Fleurs) and intent classification (MInds-14) and finally speech(-text) retrieval with Fleurs. Each of the tasks covers a subset of the 102 languages included in XTREME-S, from various regions:
- **Western Europe**: *Asturian, Bosnian, Catalan, Croatian, Danish, Dutch, English, Finnish, French, Galician, German, Greek, Hungarian, Icelandic, Irish, Italian, Kabuverdianu, Luxembourgish, Maltese, Norwegian, Occitan, Portuguese, Spanish, Swedish, Welsh*
- **Eastern Europe**: *Armenian, Belarusian, Bulgarian, Czech, Estonian, Georgian, Latvian, Lithuanian, Macedonian, Polish, Romanian, Russian, Serbian, Slovak, Slovenian, Ukrainian*
- **Central-Asia/Middle-East/North-Africa**: *Arabic, Azerbaijani, Hebrew, Kazakh, Kyrgyz, Mongolian, Pashto, Persian, Sorani-Kurdish, Tajik, Turkish, Uzbek*
- **Sub-Saharan Africa**: *Afrikaans, Amharic, Fula, Ganda, Hausa, Igbo, Kamba, Lingala, Luo, Northern-Sotho, Nyanja, Oromo, Shona, Somali, Swahili, Umbundu, Wolof, Xhosa, Yoruba, Zulu*
- **South-Asia**: *Assamese, Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Nepali, Oriya, Punjabi, Sindhi, Tamil, Telugu, Urdu*
- **South-East Asia**: *Burmese, Cebuano, Filipino, Indonesian, Javanese, Khmer, Lao, Malay, Maori, Thai, Vietnamese*
- **CJK languages**: *Cantonese and Mandarin Chinese, Japanese, Korean*
## Design principles
### Diversity
XTREME-S aims for task, domain and language
diversity. Tasks should be diverse and cover several domains to
provide a reliable evaluation of model generalization and
robustness to noisy naturally-occurring speech in different
environments. Languages should be diverse to ensure that
models can adapt to a wide range of linguistic and phonological
phenomena.
### Accessibility
The sub-dataset for each task can be downloaded
with a **single line of code** as shown in [Supported Tasks](#supported-tasks).
Each task is available under a permissive license that allows the use and redistribution
of the data for research purposes. Tasks have been selected based on their usage by
pre-existing multilingual pre-trained models, for simplicity.
### Reproducibility
We produce fully **open-sourced, maintained and easy-to-use** fine-tuning scripts
for each task as shown under [Fine-tuning Example](#fine-tuning-and-evaluation-example).
XTREME-S encourages submissions that leverage publicly available speech and text datasets. Users should detail which data they use.
In general, we encourage settings that can be reproduced by the community, but also encourage the exploration of new frontiers for speech representation learning.
## Fine-tuning and Evaluation Example
We provide a fine-tuning script under [**research-projects/xtreme-s**](https://github.com/huggingface/transformers/tree/master/examples/research_projects/xtreme-s).
The fine-tuning script is written in PyTorch and allows one to fine-tune and evaluate any [Hugging Face model](https://huggingface.co/models) on XTREME-S.
The example script is actively maintained by [@anton-l](https://github.com/anton-l) and [@patrickvonplaten](https://github.com/patrickvonplaten). Feel free
to reach out via issues or pull requests on GitHub if you have any questions.
## Leaderboards
The leaderboard for the XTREME-S benchmark can be found at [this address (TODO(PVP))]().
## Supported Tasks
Note that the suppoprted tasks are focused particularly on linguistic aspect of speech,
while nonlinguistic/paralinguistic aspects of speech relevant to e.g. speech synthesis or voice conversion are **not** evaluated.
<p align="center">
<img src="https://github.com/patrickvonplaten/scientific_images/raw/master/xtreme_s.png" alt="Datasets used in XTREME"/>
</p>
### 1. Speech Recognition (ASR)
We include three speech recognition datasets: FLEURS-ASR, MLS and VoxPopuli (optionally BABEL). Multilingual fine-tuning is used for these three datasets.
#### FLEURS-ASR
*FLEURS-ASR* is the speech version of the FLORES machine translation benchmark, covering 2000 n-way parallel sentences in n=102 languages.
```py
from datasets import load_dataset
fleurs_asr = load_dataset("google/xtreme_s", "fleurs.af_za") # for Afrikaans
# to download all data for multi-lingual fine-tuning uncomment following line
# fleurs_asr = load_dataset("google/xtreme_s", "fleurs.all")
# see structure
print(fleurs_asr)
# load audio sample on the fly
audio_input = fleurs_asr["train"][0]["audio"] # first decoded audio sample
transcription = fleurs_asr["train"][0]["transcription"] # first transcription
# use `audio_input` and `transcription` to fine-tune your model for ASR
# for analyses see language groups
all_language_groups = fleurs_asr["train"].features["lang_group_id"].names
lang_group_id = fleurs_asr["train"][0]["lang_group_id"]
all_language_groups[lang_group_id]
```
#### Multilingual LibriSpeech (MLS)
*MLS* is a large multilingual corpus derived from read audiobooks from LibriVox and consists of 8 languages. For this challenge the training data is limited to 10-hours splits.
```py
from datasets import load_dataset
mls = load_dataset("google/xtreme_s", "mls.pl") # for Polish
# to download all data for multi-lingual fine-tuning uncomment following line
# mls = load_dataset("google/xtreme_s", "mls.all")
# see structure
print(mls)
# load audio sample on the fly
audio_input = mls["train"][0]["audio"] # first decoded audio sample
transcription = mls["train"][0]["transcription"] # first transcription
# use `audio_input` and `transcription` to fine-tune your model for ASR
```
#### VoxPopuli
*VoxPopuli* is a large-scale multilingual speech corpus for representation learning and semi-supervised learning, from which we use the speech recognition dataset. The raw data is collected from 2009-2020 European Parliament event recordings. We acknowledge the European Parliament for creating and sharing these materials.
**VoxPopuli has to download the whole dataset 100GB since languages
are entangled into each other - maybe not worth testing here due to the size**
```py
from datasets import load_dataset
voxpopuli = load_dataset("google/xtreme_s", "voxpopuli.ro") # for Romanian
# to download all data for multi-lingual fine-tuning uncomment following line
# voxpopuli = load_dataset("google/xtreme_s", "voxpopuli.all")
# see structure
print(voxpopuli)
# load audio sample on the fly
audio_input = voxpopuli["train"][0]["audio"] # first decoded audio sample
transcription = voxpopuli["train"][0]["transcription"] # first transcription
# use `audio_input` and `transcription` to fine-tune your model for ASR
```
#### (Optionally) BABEL
*BABEL* from IARPA is a conversational speech recognition dataset in low-resource languages. First, download LDC2016S06, LDC2016S12, LDC2017S08, LDC2017S05 and LDC2016S13. BABEL is the only dataset in our benchmark who is less easily accessible, so you will need to sign in to get access to it on LDC. Although not officially part of the XTREME-S ASR datasets, BABEL is often used for evaluating speech representations on a difficult domain (phone conversations).
```py
from datasets import load_dataset
babel = load_dataset("google/xtreme_s", "babel.as")
```
**The above command is expected to fail with a nice error message,
explaining how to download BABEL**
The following should work:
```py
from datasets import load_dataset
babel = load_dataset("google/xtreme_s", "babel.as", data_dir="/path/to/IARPA_BABEL_OP1_102_LDC2016S06.zip")
# see structure
print(babel)
# load audio sample on the fly
audio_input = babel["train"][0]["audio"] # first decoded audio sample
transcription = babel["train"][0]["transcription"] # first transcription
# use `audio_input` and `transcription` to fine-tune your model for ASR
```
### 2. Speech Translation (ST)
We include the CoVoST-2 dataset for automatic speech translation.
#### CoVoST-2
The *CoVoST-2* benchmark has become a commonly used dataset for evaluating automatic speech translation. It covers language pairs from English into 15 languages, as well as 21 languages into English. We use only the "X->En" direction to evaluate cross-lingual representations. The amount of supervision varies greatly in this setting, from one hour for Japanese->English to 180 hours for French->English. This makes pretraining particularly useful to enable such few-shot learning. We enforce multiligual fine-tuning for simplicity. Results are splitted in high/med/low-resource language pairs as explained in the [paper (TODO(PVP))].
```py
from datasets import load_dataset
covost_2 = load_dataset("google/xtreme_s", "covost2.id.en") # for Indonesian to English
# to download all data for multi-lingual fine-tuning uncomment following line
# covost_2 = load_dataset("google/xtreme_s", "covost2.all")
# see structure
print(covost_2)
# load audio sample on the fly
audio_input = covost_2["train"][0]["audio"] # first decoded audio sample
transcription = covost_2["train"][0]["transcription"] # first transcription
translation = covost_2["train"][0]["translation"] # first translation
# use audio_input and translation to fine-tune your model for AST
```
### 3. Speech Classification
We include two multilingual speech classification datasets: FLEURS-LangID and Minds-14.
#### Language Identification - FLEURS-LangID
LangID can often be a domain classification, but in the case of FLEURS-LangID, recordings are done in a similar setting across languages and the utterances correspond to n-way parallel sentences, in the exact same domain, making this task particularly relevant for evaluating LangID. The setting is simple, FLEURS-LangID is splitted in train/valid/test for each language. We simply create a single train/valid/test for LangID by merging all.
```py
from datasets import load_dataset
fleurs_langID = load_dataset("google/xtreme_s", "fleurs.all") # to download all data
# see structure
print(fleurs_langID)
# load audio sample on the fly
audio_input = fleurs_langID["train"][0]["audio"] # first decoded audio sample
language_class = fleurs_langID["train"][0]["lang_id"] # first id class
language = fleurs_langID["train"].features["lang_id"].names[language_class]
# use audio_input and language_class to fine-tune your model for audio classification
```
#### Intent classification - Minds-14
Minds-14 is an intent classification made from e-banking speech datasets in 14 languages, with 14 intent labels. We impose a single multilingual fine-tuning to increase the size of the train and test sets and reduce the variance associated with the small size of the dataset per language.
```py
from datasets import load_dataset
minds_14 = load_dataset("google/xtreme_s", "minds14.fr-FR") # for French
# to download all data for multi-lingual fine-tuning uncomment following line
# minds_14 = load_dataset("google/xtreme_s", "minds14.all")
# see structure
print(minds_14)
# load audio sample on the fly
audio_input = minds_14["train"][0]["audio"] # first decoded audio sample
intent_class = minds_14["train"][0]["intent_class"] # first transcription
intent = minds_14["train"].features["intent_class"].names[intent_class]
# use audio_input and language_class to fine-tune your model for audio classification
```
### 4. (Optionally) Speech Retrieval
We optionally include one speech retrieval dataset: FLEURS-Retrieval as explained in the [FLEURS paper](https://arxiv.org/abs/2205.12446).
#### FLEURS-Retrieval
FLEURS-Retrieval provides n-way parallel speech and text data. Similar to how XTREME for text leverages Tatoeba to evaluate bitext mining a.k.a sentence translation retrieval, we use FLEURS-Retrieval to evaluate the quality of fixed-size representations of speech utterances. Our goal is to incentivize the creation of fixed-size speech encoder for speech retrieval. The system has to retrieve the English "key" utterance corresponding to the speech translation of "queries" in 15 languages. Results have to be reported on the test sets of FLEURS-Retrieval whose utterances are used as queries (and keys for English). We augment the English keys with a large number of utterances to make the task more difficult.
```py
from datasets import load_dataset
fleurs_retrieval = load_dataset("google/xtreme_s", "fleurs.af_za") # for Afrikaans
# to download all data for multi-lingual fine-tuning uncomment following line
# fleurs_retrieval = load_dataset("google/xtreme_s", "fleurs.all")
# see structure
print(fleurs_retrieval)
# load audio sample on the fly
audio_input = fleurs_retrieval["train"][0]["audio"] # decoded audio sample
text_sample_pos = fleurs_retrieval["train"][0]["transcription"] # positive text sample
text_sample_neg = fleurs_retrieval["train"][1:20]["transcription"] # negative text samples
# use `audio_input`, `text_sample_pos`, and `text_sample_neg` to fine-tune your model for retrieval
```
Users can leverage the training (and dev) sets of FLEURS-Retrieval with a ranking loss to build better cross-lingual fixed-size representations of speech.
## Dataset Structure
The XTREME-S benchmark is composed of the following datasets:
- [FLEURS](https://huggingface.co/datasets/google/fleurs#dataset-structure)
- [Multilingual Librispeech (MLS)](https://huggingface.co/datasets/facebook/multilingual_librispeech#dataset-structure)
Note that for MLS, XTREME-S uses `path` instead of `file` and `transcription` instead of `text`.
- [Voxpopuli](https://huggingface.co/datasets/facebook/voxpopuli#dataset-structure)
- [Minds14](https://huggingface.co/datasets/polyai/minds14#dataset-structure)
- [Covost2](https://huggingface.co/datasets/covost2#dataset-structure)
Note that for Covost2, XTREME-S uses `path` instead of `file` and `transcription` instead of `sentence`.
- [BABEL](https://huggingface.co/datasets/ldc/iarpa_babel#dataset-structure)
Please click on the link of the dataset cards to get more information about its dataset structure.
## Dataset Creation
The XTREME-S benchmark is composed of the following datasets:
- [FLEURS](https://huggingface.co/datasets/google/fleurs#dataset-creation)
- [Multilingual Librispeech (MLS)](https://huggingface.co/datasets/facebook/multilingual_librispeech#dataset-creation)
- [Voxpopuli](https://huggingface.co/datasets/facebook/voxpopuli#dataset-creation)
- [Minds14](https://huggingface.co/datasets/polyai/minds14#dataset-creation)
- [Covost2](https://huggingface.co/datasets/covost2#dataset-creation)
- [BABEL](https://huggingface.co/datasets/ldc/iarpa_babel#dataset-creation)
Please visit the corresponding dataset cards to get more information about the source data.
## Considerations for Using the Data
### Social Impact of Dataset
This dataset is meant to encourage the development of speech technology in a lot more languages of the world. One of the goal is to give equal access to technologies like speech recognition or speech translation to everyone, meaning better dubbing or better access to content from the internet (like podcasts, streaming or videos).
### Discussion of Biases
Most datasets have a fair distribution of gender utterances (e.g. the newly introduced FLEURS dataset). While many languages are covered from various regions of the world, the benchmark misses many languages that are all equally important. We believe technology built through XTREME-S should generalize to all languages.
### Other Known Limitations
The benchmark has a particular focus on read-speech because common evaluation benchmarks like CoVoST-2 or LibriSpeech evaluate on this type of speech. There is sometimes a known mismatch between performance obtained in a read-speech setting and a more noisy setting (in production for instance). Given the big progress that remains to be made on many languages, we believe better performance on XTREME-S should still correlate well with actual progress made for speech understanding.
## Additional Information
All datasets are licensed under the [Creative Commons license (CC-BY)](https://creativecommons.org/licenses/).
### Citation Information
#### XTREME-S
```
@article{conneau2022xtreme,
title={XTREME-S: Evaluating Cross-lingual Speech Representations},
author={Conneau, Alexis and Bapna, Ankur and Zhang, Yu and Ma, Min and von Platen, Patrick and Lozhkov, Anton and Cherry, Colin and Jia, Ye and Rivera, Clara and Kale, Mihir and others},
journal={arXiv preprint arXiv:2203.10752},
year={2022}
}
```
#### MLS
```
@article{Pratap2020MLSAL,
title={MLS: A Large-Scale Multilingual Dataset for Speech Research},
author={Vineel Pratap and Qiantong Xu and Anuroop Sriram and Gabriel Synnaeve and Ronan Collobert},
journal={ArXiv},
year={2020},
volume={abs/2012.03411}
}
```
#### VoxPopuli
```
@article{wang2021voxpopuli,
title={Voxpopuli: A large-scale multilingual speech corpus for representation learning, semi-supervised learning and interpretation},
author={Wang, Changhan and Riviere, Morgane and Lee, Ann and Wu, Anne and Talnikar, Chaitanya and Haziza, Daniel and Williamson, Mary and Pino, Juan and Dupoux, Emmanuel},
journal={arXiv preprint arXiv:2101.00390},
year={2021}
}
```
#### CoVoST 2
```
@article{DBLP:journals/corr/abs-2007-10310,
author = {Changhan Wang and
Anne Wu and
Juan Miguel Pino},
title = {CoVoST 2: {A} Massively Multilingual Speech-to-Text Translation Corpus},
journal = {CoRR},
volume = {abs/2007.10310},
year = {2020},
url = {https://arxiv.org/abs/2007.10310},
eprinttype = {arXiv},
eprint = {2007.10310},
timestamp = {Thu, 12 Aug 2021 15:37:06 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-2007-10310.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
```
#### Minds14
```
@article{gerz2021multilingual,
title={Multilingual and cross-lingual intent detection from spoken data},
author={Gerz, Daniela and Su, Pei-Hao and Kusztos, Razvan and Mondal, Avishek and Lis, Micha{\l} and Singhal, Eshan and Mrk{\v{s}}i{\'c}, Nikola and Wen, Tsung-Hsien and Vuli{\'c}, Ivan},
journal={arXiv preprint arXiv:2104.08524},
year={2021}
}
```
### Contributions
Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@anton-l](https://github.com/anton-l), [@aconneau](https://github.com/aconneau) for adding this dataset
| 21,005 | [
[
-0.0263824462890625,
-0.024017333984375,
-0.0012722015380859375,
0.021331787109375,
-0.01361846923828125,
0.00537872314453125,
-0.046600341796875,
-0.0279693603515625,
0.01904296875,
0.0285797119140625,
-0.04486083984375,
-0.0584716796875,
-0.044281005859375,
0.017608642578125,
-0.03033447265625,
0.058380126953125,
-0.0012836456298828125,
0.01308441162109375,
0.005168914794921875,
-0.026641845703125,
-0.0030727386474609375,
-0.044647216796875,
-0.050872802734375,
-0.014007568359375,
0.0230865478515625,
0.0301055908203125,
0.0277252197265625,
0.0560302734375,
0.005565643310546875,
0.0299835205078125,
-0.016357421875,
0.006603240966796875,
-0.02947998046875,
-0.00762939453125,
-0.010467529296875,
-0.0316162109375,
-0.0163116455078125,
-0.005451202392578125,
0.07000732421875,
0.042266845703125,
-0.01441192626953125,
0.0281982421875,
0.00799560546875,
0.031890869140625,
-0.0212249755859375,
0.0217132568359375,
-0.04144287109375,
-0.0116119384765625,
-0.0295257568359375,
0.003185272216796875,
-0.01419830322265625,
-0.0135345458984375,
0.01189422607421875,
-0.0242462158203125,
0.003192901611328125,
-0.0030307769775390625,
0.07452392578125,
0.0137939453125,
-0.01180267333984375,
-0.0178070068359375,
-0.037139892578125,
0.06640625,
-0.04498291015625,
0.06060791015625,
0.033599853515625,
0.01383209228515625,
0.00992584228515625,
-0.046234130859375,
-0.041900634765625,
-0.0165863037109375,
0.0030117034912109375,
0.0033512115478515625,
-0.042694091796875,
-0.01904296875,
0.0271453857421875,
0.0281524658203125,
-0.05877685546875,
0.0150299072265625,
-0.024810791015625,
-0.0212860107421875,
0.059173583984375,
-0.004718780517578125,
0.0237884521484375,
-0.0223388671875,
-0.021331787109375,
-0.047760009765625,
-0.03173828125,
0.0308837890625,
0.02423095703125,
0.053741455078125,
-0.042449951171875,
0.02716064453125,
-0.004405975341796875,
0.04632568359375,
-0.0106658935546875,
-0.0212860107421875,
0.06939697265625,
-0.0391845703125,
-0.015594482421875,
0.01042938232421875,
0.0867919921875,
0.00276947021484375,
0.0068817138671875,
-0.00337982177734375,
-0.0141448974609375,
0.0105133056640625,
-0.0214691162109375,
-0.038421630859375,
-0.00586700439453125,
0.018951416015625,
-0.016937255859375,
0.0007038116455078125,
-0.00560760498046875,
-0.050628662109375,
0.0007157325744628906,
-0.0280609130859375,
0.032501220703125,
-0.042236328125,
-0.0203857421875,
0.0157012939453125,
-0.007213592529296875,
0.00447845458984375,
-0.01212310791015625,
-0.053466796875,
0.024749755859375,
0.018951416015625,
0.06353759765625,
-0.00960540771484375,
-0.031524658203125,
-0.0418701171875,
-0.0092926025390625,
0.003326416015625,
0.043212890625,
-0.0301971435546875,
-0.041900634765625,
-0.00589752197265625,
0.024993896484375,
-0.02587890625,
-0.04803466796875,
0.0721435546875,
0.00562286376953125,
0.02392578125,
-0.023956298828125,
-0.035675048828125,
-0.0174713134765625,
-0.0006628036499023438,
-0.03857421875,
0.0863037109375,
0.01271820068359375,
-0.043426513671875,
0.01629638671875,
-0.03973388671875,
-0.041168212890625,
-0.00858306884765625,
-0.0219879150390625,
-0.041351318359375,
-0.007427215576171875,
0.023529052734375,
0.0323486328125,
-0.017669677734375,
0.00391387939453125,
0.01155853271484375,
-0.0157623291015625,
0.006317138671875,
-0.016754150390625,
0.083984375,
0.009490966796875,
-0.048370361328125,
0.020111083984375,
-0.07598876953125,
0.01111602783203125,
0.0112152099609375,
-0.03021240234375,
-0.00501251220703125,
-0.004566192626953125,
0.028167724609375,
0.03521728515625,
0.006671905517578125,
-0.055145263671875,
-0.0009431838989257812,
-0.045928955078125,
0.048004150390625,
0.032684326171875,
-0.0223541259765625,
0.0197906494140625,
-0.0300140380859375,
0.0408935546875,
0.00734710693359375,
-0.01323699951171875,
-0.00734710693359375,
-0.0302734375,
-0.061004638671875,
-0.0278472900390625,
0.037689208984375,
0.06353759765625,
-0.052459716796875,
0.037750244140625,
-0.04095458984375,
-0.056427001953125,
-0.06219482421875,
0.011383056640625,
0.051422119140625,
0.0264434814453125,
0.038330078125,
-0.007419586181640625,
-0.06512451171875,
-0.066650390625,
-0.01227569580078125,
-0.0040435791015625,
-0.00510406494140625,
0.029754638671875,
0.0289459228515625,
-0.0298004150390625,
0.038330078125,
-0.01093292236328125,
-0.039825439453125,
-0.0211334228515625,
-0.003200531005859375,
0.0202178955078125,
0.039520263671875,
0.039154052734375,
-0.049530029296875,
-0.052337646484375,
0.01125335693359375,
-0.0263671875,
-0.0088348388671875,
0.0036525726318359375,
0.0166778564453125,
0.034027099609375,
0.03826904296875,
-0.031280517578125,
0.0021190643310546875,
0.0562744140625,
-0.01326751708984375,
0.039398193359375,
-0.003147125244140625,
0.01322174072265625,
-0.07794189453125,
0.00418853759765625,
0.01220703125,
-0.0219879150390625,
-0.042266845703125,
-0.0182647705078125,
-0.0005588531494140625,
-0.0177001953125,
-0.04925537109375,
0.048248291015625,
-0.03363037109375,
0.0107574462890625,
0.00539398193359375,
0.028472900390625,
-0.01983642578125,
0.04766845703125,
0.0159454345703125,
0.07122802734375,
0.072021484375,
-0.0438232421875,
0.005558013916015625,
0.0416259765625,
-0.038421630859375,
0.007671356201171875,
-0.047607421875,
0.0016450881958007812,
0.002872467041015625,
-0.0033969879150390625,
-0.060516357421875,
0.0016126632690429688,
0.0221099853515625,
-0.051513671875,
0.031646728515625,
-0.00867462158203125,
-0.0416259765625,
-0.025787353515625,
-0.0099639892578125,
0.0168304443359375,
0.045379638671875,
-0.0301055908203125,
0.0390625,
0.049835205078125,
-0.0240631103515625,
-0.043060302734375,
-0.052947998046875,
0.004093170166015625,
-0.01535797119140625,
-0.0587158203125,
0.035614013671875,
0.0092010498046875,
-0.00487518310546875,
-0.0141448974609375,
-0.00928497314453125,
0.017425537109375,
-0.02899169921875,
0.01425933837890625,
-0.005496978759765625,
-0.00945281982421875,
-0.00452423095703125,
-0.00780487060546875,
-0.0155792236328125,
-0.00949859619140625,
-0.023468017578125,
0.052581787109375,
-0.0203094482421875,
-0.008697509765625,
-0.040313720703125,
0.0267333984375,
0.0372314453125,
-0.030914306640625,
0.0277862548828125,
0.05950927734375,
-0.022247314453125,
-0.0020008087158203125,
-0.037353515625,
-0.0022373199462890625,
-0.03448486328125,
0.03936767578125,
-0.037445068359375,
-0.07562255859375,
0.05078125,
0.013671875,
0.00360870361328125,
0.028289794921875,
0.048583984375,
0.00707244873046875,
0.0814208984375,
0.032989501953125,
-0.0248565673828125,
0.040802001953125,
-0.04412841796875,
0.00005418062210083008,
-0.041351318359375,
-0.01427459716796875,
-0.0638427734375,
-0.0164337158203125,
-0.07037353515625,
-0.04302978515625,
0.0222320556640625,
-0.0159759521484375,
-0.0014810562133789062,
0.058197021484375,
-0.0343017578125,
0.0130767822265625,
0.054107666015625,
0.0001436471939086914,
0.00044798851013183594,
0.0282135009765625,
-0.0130157470703125,
-0.0131378173828125,
-0.060760498046875,
-0.040435791015625,
0.06689453125,
0.0266876220703125,
0.037384033203125,
-0.00321197509765625,
0.0562744140625,
0.001842498779296875,
-0.0289154052734375,
-0.0462646484375,
0.042572021484375,
-0.0478515625,
-0.0289154052734375,
-0.0268707275390625,
-0.04693603515625,
-0.0828857421875,
0.0200347900390625,
-0.0099334716796875,
-0.06658935546875,
0.035064697265625,
0.004878997802734375,
-0.034393310546875,
0.0220947265625,
-0.050384521484375,
0.06573486328125,
-0.01267242431640625,
-0.0185546875,
-0.01525115966796875,
-0.053985595703125,
0.0015840530395507812,
0.0018291473388671875,
0.0188140869140625,
-0.0126495361328125,
0.005764007568359375,
0.0758056640625,
-0.01476287841796875,
0.060211181640625,
-0.016082763671875,
-0.00518035888671875,
0.0157318115234375,
-0.018585205078125,
0.025909423828125,
-0.0107269287109375,
-0.0199127197265625,
0.04840087890625,
0.0275421142578125,
-0.023529052734375,
-0.02557373046875,
0.051513671875,
-0.07684326171875,
-0.029937744140625,
-0.030303955078125,
-0.04132080078125,
-0.0157012939453125,
0.0167999267578125,
0.0430908203125,
0.032470703125,
-0.00788116455078125,
0.017120361328125,
0.0457763671875,
-0.030181884765625,
0.015838623046875,
0.044219970703125,
-0.0171051025390625,
-0.0445556640625,
0.09088134765625,
0.033660888671875,
0.0100250244140625,
0.0297393798828125,
0.01263427734375,
-0.040557861328125,
-0.0311279296875,
-0.037994384765625,
0.025177001953125,
-0.042236328125,
-0.0036754608154296875,
-0.06573486328125,
-0.0155487060546875,
-0.056488037109375,
0.0161285400390625,
-0.0301513671875,
-0.040130615234375,
-0.022064208984375,
0.0033969879150390625,
0.0249176025390625,
0.0109405517578125,
-0.023895263671875,
0.035675048828125,
-0.0634765625,
0.0296478271484375,
0.00010794401168823242,
0.0098876953125,
-0.02679443359375,
-0.06072998046875,
-0.024383544921875,
0.0238800048828125,
-0.0123138427734375,
-0.039825439453125,
0.039642333984375,
0.03411865234375,
0.04730224609375,
0.0258026123046875,
-0.008270263671875,
0.0462646484375,
-0.037689208984375,
0.055023193359375,
0.006786346435546875,
-0.0853271484375,
0.0482177734375,
-0.021820068359375,
0.027069091796875,
0.046722412109375,
0.0435791015625,
-0.053466796875,
-0.018341064453125,
-0.04901123046875,
-0.06512451171875,
0.0693359375,
0.03021240234375,
0.01328277587890625,
0.0023193359375,
0.00725555419921875,
0.0088653564453125,
0.0117340087890625,
-0.048919677734375,
-0.04296875,
-0.00904083251953125,
-0.00563812255859375,
-0.0301513671875,
-0.00875091552734375,
-0.0008711814880371094,
-0.041839599609375,
0.0772705078125,
0.00970458984375,
0.019775390625,
0.01474761962890625,
-0.01316070556640625,
-0.0051727294921875,
0.0244903564453125,
0.05560302734375,
0.02752685546875,
-0.01236724853515625,
0.0005512237548828125,
0.0201873779296875,
-0.03741455078125,
0.0216217041015625,
0.0347900390625,
-0.01013946533203125,
0.020294189453125,
0.0166168212890625,
0.09185791015625,
0.01947021484375,
-0.06011962890625,
0.026641845703125,
-0.0095977783203125,
-0.0262298583984375,
-0.0279541015625,
0.0109405517578125,
0.004901885986328125,
0.0167236328125,
0.01253509521484375,
0.0104217529296875,
-0.0019140243530273438,
-0.037628173828125,
0.031768798828125,
0.0164794921875,
-0.0413818359375,
-0.030731201171875,
0.04742431640625,
0.00745391845703125,
-0.030517578125,
0.039642333984375,
-0.0162200927734375,
-0.042266845703125,
0.029937744140625,
0.0323486328125,
0.0648193359375,
-0.041107177734375,
0.00785064697265625,
0.047210693359375,
0.029022216796875,
-0.006893157958984375,
0.050872802734375,
-0.00787353515625,
-0.05950927734375,
-0.0285491943359375,
-0.055084228515625,
-0.01465606689453125,
0.01837158203125,
-0.05145263671875,
0.046234130859375,
-0.0071258544921875,
-0.0198211669921875,
0.010894775390625,
0.01169586181640625,
-0.04632568359375,
0.00982666015625,
0.01885986328125,
0.0863037109375,
-0.0750732421875,
0.0772705078125,
0.051849365234375,
-0.037994384765625,
-0.06390380859375,
-0.0198211669921875,
-0.0025348663330078125,
-0.06549072265625,
0.03082275390625,
0.01184844970703125,
-0.01385498046875,
0.01129913330078125,
-0.0237884521484375,
-0.07183837890625,
0.05816650390625,
0.037628173828125,
-0.0677490234375,
0.00986480712890625,
0.0298309326171875,
0.037994384765625,
-0.021392822265625,
-0.0020771026611328125,
0.060028076171875,
0.04046630859375,
-0.006069183349609375,
-0.08941650390625,
-0.0061492919921875,
-0.0419921875,
-0.01251220703125,
0.005268096923828125,
-0.047607421875,
0.0570068359375,
-0.008209228515625,
-0.030242919921875,
-0.0017862319946289062,
0.04412841796875,
0.0265655517578125,
0.006809234619140625,
0.052734375,
0.052398681640625,
0.0540771484375,
-0.01690673828125,
0.06280517578125,
-0.033172607421875,
0.01206207275390625,
0.09075927734375,
-0.00958251953125,
0.0675048828125,
0.02496337890625,
-0.027679443359375,
0.02459716796875,
0.043670654296875,
-0.015594482421875,
0.030059814453125,
0.0072479248046875,
-0.01169586181640625,
-0.0167694091796875,
-0.0111236572265625,
-0.033538818359375,
0.06390380859375,
0.0291900634765625,
-0.0253448486328125,
-0.0059661865234375,
0.0276031494140625,
0.006450653076171875,
-0.00013959407806396484,
-0.00890350341796875,
0.0469970703125,
0.015960693359375,
-0.026611328125,
0.0816650390625,
-0.00252532958984375,
0.055755615234375,
-0.060516357421875,
0.0193328857421875,
0.00647735595703125,
0.01514434814453125,
-0.019134521484375,
-0.050079345703125,
0.0140380859375,
-0.0047454833984375,
-0.0254669189453125,
-0.020233154296875,
0.02886962890625,
-0.061126708984375,
-0.050811767578125,
0.040924072265625,
0.035675048828125,
0.0271759033203125,
-0.0132293701171875,
-0.07928466796875,
0.0294036865234375,
0.0299835205078125,
-0.01253509521484375,
0.01375579833984375,
0.019775390625,
-0.01053619384765625,
0.058349609375,
0.0380859375,
0.0224456787109375,
0.0092926025390625,
0.01739501953125,
0.0623779296875,
-0.04278564453125,
-0.044891357421875,
-0.0516357421875,
0.049285888671875,
0.0053863525390625,
-0.0253448486328125,
0.074951171875,
0.057159423828125,
0.08917236328125,
-0.0010662078857421875,
0.072021484375,
-0.004791259765625,
0.0616455078125,
-0.0223236083984375,
0.052520751953125,
-0.051300048828125,
0.00676727294921875,
-0.028106689453125,
-0.05877685546875,
-0.0196990966796875,
0.048095703125,
-0.0193328857421875,
0.00041031837463378906,
0.02850341796875,
0.07452392578125,
-0.011444091796875,
-0.0011301040649414062,
0.0285186767578125,
0.0240631103515625,
0.006931304931640625,
0.0321044921875,
0.04046630859375,
-0.060699462890625,
0.05657958984375,
-0.041778564453125,
-0.0189361572265625,
0.005558013916015625,
-0.03790283203125,
-0.053466796875,
-0.0726318359375,
-0.042236328125,
-0.0281219482421875,
-0.00640106201171875,
0.08892822265625,
0.05694580078125,
-0.084716796875,
-0.0484619140625,
0.0264434814453125,
-0.00769805908203125,
-0.03033447265625,
-0.011566162109375,
0.045440673828125,
-0.01523590087890625,
-0.07342529296875,
0.050537109375,
0.01010894775390625,
0.0091552734375,
-0.006793975830078125,
-0.007595062255859375,
-0.0264129638671875,
-0.01201629638671875,
0.048980712890625,
0.03179931640625,
-0.04998779296875,
0.0052947998046875,
0.01531219482421875,
0.004669189453125,
0.023681640625,
0.043487548828125,
-0.050048828125,
0.0297698974609375,
0.043975830078125,
0.02899169921875,
0.044830322265625,
-0.0236663818359375,
0.0304412841796875,
-0.061248779296875,
0.0238494873046875,
0.01364898681640625,
0.040618896484375,
0.03265380859375,
-0.00739288330078125,
0.02838134765625,
0.00795745849609375,
-0.0390625,
-0.0770263671875,
-0.003971099853515625,
-0.08251953125,
-0.004154205322265625,
0.0865478515625,
-0.00716400146484375,
-0.0186614990234375,
-0.0083160400390625,
-0.02423095703125,
0.02825927734375,
-0.0384521484375,
0.03973388671875,
0.0416259765625,
-0.010009765625,
-0.0262451171875,
-0.03302001953125,
0.04754638671875,
0.0367431640625,
-0.036285400390625,
0.0157012939453125,
0.00815582275390625,
0.026885986328125,
0.025177001953125,
0.042144775390625,
-0.01210784912109375,
0.00847625732421875,
-0.006317138671875,
0.0266876220703125,
0.0039215087890625,
-0.003528594970703125,
-0.040771484375,
-0.0065460205078125,
-0.0219879150390625,
-0.0218353271484375
]
] |
hippocrates/re_train | 2023-10-09T16:55:29.000Z | [
"region:us"
] | hippocrates | null | null | 0 | 1,076 | 2023-10-04T22:30:18 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: valid
path: data/valid-*
dataset_info:
features:
- name: id
dtype: string
- name: conversations
list:
- name: from
dtype: string
- name: value
dtype: string
- name: text
dtype: string
splits:
- name: train
num_bytes: 19219537
num_examples: 3572
- name: valid
num_bytes: 1626844
num_examples: 305
download_size: 1753501
dataset_size: 20846381
---
# Dataset Card for "re_train"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 679 | [
[
-0.033447265625,
-0.0055999755859375,
0.00927734375,
0.0086517333984375,
-0.0128021240234375,
-0.0014400482177734375,
0.019927978515625,
-0.003643035888671875,
0.06463623046875,
0.0360107421875,
-0.071044921875,
-0.035064697265625,
-0.035491943359375,
-0.01062774658203125,
-0.03302001953125,
0.0941162109375,
-0.0179443359375,
0.00940704345703125,
-0.031951904296875,
-0.0098876953125,
-0.0411376953125,
-0.04449462890625,
-0.05963134765625,
-0.060333251953125,
0.07464599609375,
0.04718017578125,
0.00853729248046875,
0.032318115234375,
0.060577392578125,
0.01259613037109375,
0.02227783203125,
-0.0274200439453125,
-0.043212890625,
-0.00006639957427978516,
-0.0203399658203125,
-0.04205322265625,
-0.07012939453125,
0.01062774658203125,
0.04730224609375,
0.0325927734375,
-0.0160675048828125,
0.053985595703125,
-0.02001953125,
0.05511474609375,
-0.0261383056640625,
0.0208740234375,
-0.0157012939453125,
0.004344940185546875,
-0.02618408203125,
-0.01337432861328125,
0.0072479248046875,
-0.027374267578125,
-0.005985260009765625,
-0.07855224609375,
0.0287628173828125,
0.00897216796875,
0.06573486328125,
0.0287322998046875,
0.001514434814453125,
0.01459503173828125,
-0.0203399658203125,
0.0196990966796875,
-0.005710601806640625,
0.034942626953125,
0.04669189453125,
0.040924072265625,
0.0008635520935058594,
-0.06488037109375,
-0.014984130859375,
0.003314971923828125,
-0.0007872581481933594,
0.01386260986328125,
0.0226593017578125,
-0.0078887939453125,
0.042205810546875,
0.048126220703125,
-0.0254364013671875,
-0.0169677734375,
-0.0338134765625,
-0.0200347900390625,
0.058380126953125,
0.020263671875,
0.0159759521484375,
0.00997161865234375,
-0.01349639892578125,
-0.0278167724609375,
-0.03485107421875,
-0.01470184326171875,
0.0236358642578125,
0.01495361328125,
-0.07177734375,
0.040435791015625,
-0.01216888427734375,
0.03125,
0.005649566650390625,
0.040496826171875,
0.06353759765625,
-0.0181427001953125,
-0.0206298828125,
0.00041937828063964844,
0.0242156982421875,
0.03173828125,
0.0262451171875,
-0.00916290283203125,
-0.021148681640625,
-0.0008234977722167969,
0.0242462158203125,
-0.06939697265625,
-0.0615234375,
0.01197052001953125,
-0.044769287109375,
-0.0218353271484375,
0.01381683349609375,
-0.06561279296875,
-0.02886962890625,
-0.03570556640625,
0.01329803466796875,
0.004810333251953125,
-0.059356689453125,
-0.00995635986328125,
-0.057159423828125,
0.04052734375,
0.01214599609375,
-0.0679931640625,
0.007244110107421875,
0.0498046875,
0.03509521484375,
0.024627685546875,
-0.0364990234375,
-0.048736572265625,
0.0121612548828125,
0.0041046142578125,
0.071044921875,
-0.042205810546875,
-0.02239990234375,
0.01041412353515625,
0.0440673828125,
0.0016489028930664062,
-0.0125274658203125,
0.053558349609375,
-0.028472900390625,
-0.00933837890625,
-0.0557861328125,
-0.033233642578125,
0.00482940673828125,
0.040008544921875,
-0.06707763671875,
0.06756591796875,
0.029296875,
-0.052978515625,
0.04833984375,
-0.06549072265625,
-0.0302886962890625,
0.014862060546875,
0.00368499755859375,
-0.04296875,
0.0171356201171875,
-0.0003056526184082031,
0.0288848876953125,
-0.0161285400390625,
0.02947998046875,
-0.054351806640625,
-0.0171661376953125,
0.00293731689453125,
0.00946807861328125,
0.048858642578125,
0.0111846923828125,
0.0305328369140625,
0.005367279052734375,
-0.0758056640625,
0.00495147705078125,
0.016815185546875,
-0.028167724609375,
-0.016815185546875,
-0.03350830078125,
0.0306396484375,
-0.014434814453125,
0.022003173828125,
-0.035247802734375,
0.043548583984375,
0.0023059844970703125,
-0.0004341602325439453,
0.041412353515625,
0.00641632080078125,
0.025970458984375,
-0.039398193359375,
0.0439453125,
-0.0178375244140625,
0.021331787109375,
0.0020427703857421875,
-0.0227508544921875,
-0.0518798828125,
0.00485992431640625,
0.057891845703125,
0.046295166015625,
-0.044342041015625,
0.03741455078125,
0.0016994476318359375,
-0.045166015625,
-0.03497314453125,
-0.004535675048828125,
0.018402099609375,
0.01123809814453125,
0.0272979736328125,
-0.047454833984375,
-0.0712890625,
-0.05035400390625,
0.007564544677734375,
-0.005374908447265625,
0.005039215087890625,
0.006622314453125,
0.06707763671875,
-0.035430908203125,
0.04718017578125,
-0.045135498046875,
-0.01528167724609375,
0.00362396240234375,
-0.013153076171875,
0.0017995834350585938,
0.0594482421875,
0.052001953125,
-0.03485107421875,
-0.01983642578125,
-0.037811279296875,
-0.04400634765625,
-0.0145263671875,
0.0005221366882324219,
-0.042388916015625,
-0.027069091796875,
0.0243682861328125,
-0.01522064208984375,
0.039886474609375,
0.04583740234375,
-0.0215301513671875,
0.00782012939453125,
0.003414154052734375,
0.0221405029296875,
-0.09283447265625,
0.0301055908203125,
-0.00782012939453125,
-0.01427459716796875,
-0.023590087890625,
-0.0004849433898925781,
0.00036144256591796875,
-0.025360107421875,
0.00579071044921875,
0.035797119140625,
-0.0345458984375,
-0.0155029296875,
-0.01947021484375,
0.004364013671875,
-0.00890350341796875,
0.022247314453125,
0.0250091552734375,
0.0238800048828125,
0.0703125,
-0.0225067138671875,
0.0684814453125,
0.04364013671875,
0.0023097991943359375,
0.0684814453125,
-0.054962158203125,
0.01444244384765625,
-0.004085540771484375,
0.03302001953125,
-0.05682373046875,
-0.052001953125,
0.0455322265625,
-0.034881591796875,
0.04583740234375,
-0.0504150390625,
-0.027130126953125,
-0.03704833984375,
-0.019317626953125,
0.045196533203125,
0.027130126953125,
-0.05206298828125,
0.015777587890625,
0.05072021484375,
0.02294921875,
-0.0161590576171875,
-0.07177734375,
0.00394439697265625,
-0.019317626953125,
-0.01044464111328125,
0.0237884521484375,
-0.006351470947265625,
0.020538330078125,
-0.008819580078125,
0.0291900634765625,
-0.01479339599609375,
-0.0016384124755859375,
0.037567138671875,
-0.0029201507568359375,
-0.00579071044921875,
0.034027099609375,
-0.002780914306640625,
-0.061431884765625,
0.02154541015625,
0.00025916099548339844,
0.0283660888671875,
0.016510009765625,
-0.0186004638671875,
-0.044708251953125,
0.023529052734375,
0.01070404052734375,
-0.01837158203125,
0.037261962890625,
0.08685302734375,
-0.04144287109375,
-0.0051116943359375,
-0.0284881591796875,
-0.0284881591796875,
-0.0298614501953125,
0.00811004638671875,
-0.016876220703125,
-0.037384033203125,
0.0258331298828125,
-0.019378662109375,
0.0129852294921875,
0.040008544921875,
0.045684814453125,
0.00005143880844116211,
0.0272979736328125,
0.04705810546875,
-0.024932861328125,
0.04852294921875,
-0.029144287109375,
-0.025848388671875,
-0.067626953125,
-0.0304412841796875,
-0.03729248046875,
-0.050537109375,
-0.042510986328125,
-0.01354217529296875,
-0.01934814453125,
-0.0084075927734375,
-0.0265045166015625,
0.047760009765625,
-0.051422119140625,
0.0157928466796875,
0.046356201171875,
0.005428314208984375,
-0.01137542724609375,
0.0027675628662109375,
0.038330078125,
0.01043701171875,
-0.056549072265625,
-0.006855010986328125,
0.099853515625,
0.04156494140625,
0.08441162109375,
-0.0012149810791015625,
0.08203125,
0.01654052734375,
0.04931640625,
-0.025787353515625,
0.0246734619140625,
0.01270294189453125,
-0.049652099609375,
-0.00836181640625,
-0.01361083984375,
-0.06903076171875,
-0.03424072265625,
-0.0391845703125,
0.00902557373046875,
0.03240966796875,
0.039520263671875,
-0.00457763671875,
0.0222930908203125,
-0.06036376953125,
0.0640869140625,
-0.0144195556640625,
-0.0067596435546875,
-0.0166168212890625,
-0.042877197265625,
0.007110595703125,
0.0065765380859375,
-0.01323699951171875,
-0.006866455078125,
-0.00446319580078125,
0.08251953125,
-0.0263519287109375,
0.08612060546875,
-0.04547119140625,
0.0024166107177734375,
0.013641357421875,
-0.02960205078125,
0.014007568359375,
0.0265655517578125,
0.007724761962890625,
0.0050048828125,
-0.0015935897827148438,
-0.0293731689453125,
-0.019775390625,
0.05279541015625,
-0.058258056640625,
0.005504608154296875,
-0.031524658203125,
-0.030364990234375,
-0.0081787109375,
0.017059326171875,
0.01404571533203125,
0.04229736328125,
-0.02947998046875,
0.0007042884826660156,
0.0467529296875,
0.00872039794921875,
0.00914764404296875,
0.012969970703125,
-0.0239410400390625,
-0.043365478515625,
0.07098388671875,
0.00420379638671875,
-0.017181396484375,
0.03399658203125,
0.00881195068359375,
-0.01727294921875,
-0.0274810791015625,
-0.037200927734375,
0.0250091552734375,
-0.0209808349609375,
-0.037322998046875,
-0.0187530517578125,
-0.01123046875,
-0.04241943359375,
-0.013092041015625,
-0.02862548828125,
-0.038177490234375,
-0.044769287109375,
-0.04107666015625,
0.07354736328125,
0.03997802734375,
-0.05206298828125,
0.050567626953125,
-0.055816650390625,
0.032257080078125,
0.01171112060546875,
0.0709228515625,
-0.0192718505859375,
-0.053619384765625,
-0.04193115234375,
-0.0006594657897949219,
-0.001434326171875,
-0.03875732421875,
-0.007259368896484375,
0.0056304931640625,
0.0567626953125,
0.006061553955078125,
-0.010467529296875,
0.04852294921875,
-0.0172119140625,
0.0302581787109375,
0.0267181396484375,
-0.0231475830078125,
0.05035400390625,
-0.0105743408203125,
0.004791259765625,
0.071044921875,
0.0306549072265625,
-0.0352783203125,
0.0179290771484375,
-0.0692138671875,
-0.04608154296875,
0.037750244140625,
-0.01024627685546875,
0.010284423828125,
0.01183319091796875,
0.058258056640625,
-0.01045989990234375,
0.0241546630859375,
-0.055572509765625,
-0.044189453125,
-0.024200439453125,
-0.012298583984375,
0.01132965087890625,
-0.0299072265625,
-0.0277862548828125,
-0.0308990478515625,
0.052642822265625,
0.00824737548828125,
0.039093017578125,
0.00775146484375,
0.0162200927734375,
-0.016021728515625,
-0.01453399658203125,
0.0148773193359375,
0.030975341796875,
-0.038543701171875,
-0.01519012451171875,
0.00363922119140625,
-0.0270843505859375,
-0.006732940673828125,
0.0271148681640625,
0.01197052001953125,
-0.013580322265625,
0.052398681640625,
0.053955078125,
-0.00835418701171875,
-0.0026760101318359375,
0.0082550048828125,
-0.0162811279296875,
-0.03179931640625,
-0.0450439453125,
0.0223846435546875,
0.00853729248046875,
0.0185089111328125,
-0.021820068359375,
-0.01171112060546875,
-0.00037384033203125,
-0.03271484375,
0.041046142578125,
0.00044345855712890625,
-0.0477294921875,
-0.031097412109375,
0.0391845703125,
0.054931640625,
-0.043426513671875,
0.072509765625,
-0.0021209716796875,
-0.03253173828125,
0.035797119140625,
0.022216796875,
0.058258056640625,
-0.02960205078125,
0.01403045654296875,
0.0550537109375,
0.022705078125,
-0.004421234130859375,
0.04638671875,
-0.0178985595703125,
-0.05023193359375,
-0.012115478515625,
-0.01520538330078125,
-0.02008056640625,
-0.012237548828125,
-0.078857421875,
0.021636962890625,
-0.04486083984375,
-0.028167724609375,
-0.0199432373046875,
0.0106201171875,
-0.05303955078125,
0.0252227783203125,
0.00948333740234375,
0.0994873046875,
-0.0777587890625,
0.067626953125,
0.065185546875,
-0.038055419921875,
-0.043212890625,
-0.0124664306640625,
-0.009124755859375,
-0.0665283203125,
0.013824462890625,
0.0035343170166015625,
0.0235748291015625,
-0.00934600830078125,
-0.0599365234375,
-0.040802001953125,
0.0906982421875,
0.01325225830078125,
-0.05889892578125,
0.0211029052734375,
-0.01239776611328125,
0.034912109375,
-0.028228759765625,
0.0091552734375,
0.047119140625,
0.053192138671875,
0.0031871795654296875,
-0.036834716796875,
-0.00627899169921875,
-0.0259552001953125,
-0.0203399658203125,
0.0276031494140625,
-0.05877685546875,
0.01544952392578125,
-0.0107879638671875,
0.0061798095703125,
-0.0012674331665039062,
0.056396484375,
0.01062774658203125,
0.031951904296875,
0.0418701171875,
0.068359375,
0.057891845703125,
-0.024627685546875,
0.071533203125,
-0.0027942657470703125,
0.04229736328125,
0.08880615234375,
-0.006198883056640625,
0.022857666015625,
0.038848876953125,
-0.006786346435546875,
0.020263671875,
0.057159423828125,
-0.041778564453125,
0.039520263671875,
0.037322998046875,
0.0021572113037109375,
-0.037689208984375,
0.0009064674377441406,
-0.066650390625,
-0.004608154296875,
0.0184173583984375,
-0.035736083984375,
-0.0009512901306152344,
-0.0031566619873046875,
0.009002685546875,
-0.0190582275390625,
-0.027740478515625,
0.043182373046875,
0.00751495361328125,
-0.0217742919921875,
0.00638580322265625,
-0.01061248779296875,
0.02301025390625,
-0.05950927734375,
-0.03216552734375,
-0.01690673828125,
0.01380157470703125,
-0.038818359375,
-0.08001708984375,
0.048065185546875,
-0.0182952880859375,
-0.0238037109375,
-0.0114288330078125,
0.046142578125,
-0.03546142578125,
-0.050567626953125,
0.02008056640625,
0.00994110107421875,
0.015533447265625,
0.0203704833984375,
-0.09661865234375,
0.0178375244140625,
0.01007080078125,
-0.01149749755859375,
0.0226287841796875,
0.023040771484375,
0.01526641845703125,
0.05169677734375,
0.04583740234375,
-0.00396728515625,
-0.0308380126953125,
0.033294677734375,
0.06451416015625,
-0.046722412109375,
-0.0228424072265625,
-0.0290374755859375,
0.040069580078125,
-0.0196075439453125,
-0.05023193359375,
0.035858154296875,
0.061767578125,
0.06793212890625,
-0.01045989990234375,
0.052825927734375,
-0.0261077880859375,
0.050445556640625,
-0.0221710205078125,
0.038726806640625,
-0.04443359375,
-0.01415252685546875,
-0.0082550048828125,
-0.04217529296875,
-0.040496826171875,
0.058135986328125,
0.0018949508666992188,
0.009918212890625,
0.0285491943359375,
0.061767578125,
-0.020355224609375,
0.0068206787109375,
-0.0079803466796875,
0.0024566650390625,
0.0239105224609375,
0.0343017578125,
0.040069580078125,
-0.0445556640625,
0.0166473388671875,
-0.00783538818359375,
-0.035736083984375,
0.0013456344604492188,
-0.06524658203125,
-0.07275390625,
-0.048858642578125,
-0.05303955078125,
-0.037261962890625,
-0.007221221923828125,
0.0565185546875,
0.06494140625,
-0.058013916015625,
-0.020263671875,
0.0038738250732421875,
0.0206756591796875,
-0.0011816024780273438,
-0.00528717041015625,
0.047149658203125,
0.00414276123046875,
-0.0380859375,
-0.01415252685546875,
-0.02215576171875,
0.00689697265625,
-0.0096435546875,
0.0035247802734375,
-0.0140533447265625,
-0.032867431640625,
0.0157623291015625,
0.039306640625,
0.01442718505859375,
-0.031402587890625,
-0.050079345703125,
0.013580322265625,
-0.0015401840209960938,
0.08837890625,
-0.0435791015625,
0.004604339599609375,
0.038818359375,
0.03961181640625,
0.045623779296875,
0.0006113052368164062,
0.043975830078125,
-0.047210693359375,
0.006526947021484375,
-0.0211944580078125,
0.041961669921875,
0.0190277099609375,
-0.0205230712890625,
0.07550048828125,
0.0482177734375,
-0.04815673828125,
-0.046905517578125,
0.01328277587890625,
-0.08526611328125,
0.032196044921875,
0.061004638671875,
0.004039764404296875,
-0.03216552734375,
-0.01485443115234375,
-0.0267181396484375,
0.0276031494140625,
-0.051971435546875,
0.028167724609375,
0.024505615234375,
0.009521484375,
-0.01502227783203125,
-0.021240234375,
0.042816162109375,
-0.0153350830078125,
-0.0767822265625,
0.0235595703125,
0.03460693359375,
0.03173828125,
0.0033435821533203125,
0.05584716796875,
0.0012683868408203125,
0.011962890625,
0.0241546630859375,
0.036163330078125,
-0.0291900634765625,
-0.038055419921875,
-0.01552581787109375,
-0.01020050048828125,
-0.018707275390625,
-0.048828125
]
] |
yuchenlin/just-eval-instruct | 2023-10-20T19:01:44.000Z | [
"region:us"
] | yuchenlin | null | null | 2 | 1,071 | 2023-09-11T21:42:48 | ---
configs:
- config_name: default
data_files:
- split: test
path: "test_all_with_tags.jsonl"
# - split: test_regular_only
# path: "test_regular.jsonl"
# - split: test_safety_only
# path: "test_red.jsonl"
- config_name: responses
data_files:
- split: gpt_4_0613
path: "responses/gpt-4-0613.json"
- split: gpt_4_0314
path: "responses/gpt-4-0314.json"
- split: gpt_3.5_turbo_0301
path: "responses/gpt-3.5-turbo-0301.json"
- split: Mistral_7B_Instruct_v0.1
path: "responses/Mistral-7B-Instruct-v0.1.json"
- split: Llama_2_13b_chat_hf
path: "responses/Llama-2-13b-chat-hf.json"
- split: Llama_2_70B_chat_GPTQ
path: "responses/Llama-2-70B-chat-GPTQ.json"
- split: Llama_2_7b_chat_hf
path: "responses/Llama-2-7b-chat-hf.json"
- split: vicuna_13b_v1.5
path: "responses/vicuna-13b-v1.5.json"
- split: vicuna_7b_v1.5
path: "responses/vicuna-7b-v1.5.json"
- config_name: judgements_main
data_files:
- split: Mistral_7B_Instruct_v0.1
path: "judgements/main/Mistral-7B-Instruct-v0.1.json"
- split: gpt_4_0613
path: "judgements/main/gpt-4-0613.json"
- split: gpt_4_0314
path: "judgements/main/gpt-4-0314.json"
- split: Llama_2_70B_chat_GPTQ
path: "judgements/main/Llama-2-70B-chat-GPTQ.json"
- split: Llama_2_13b_chat_hf
path: "judgements/main/Llama-2-13b-chat-hf.json"
- split: vicuna_7b_v1.5
path: "judgements/main/vicuna-7b-v1.5.json"
- split: vicuna_13b_v1.5
path: "judgements/main/vicuna-13b-v1.5.json"
- split: gpt_3.5_turbo_0301
path: "judgements/main/gpt-3.5-turbo-0301.json"
- split: Llama_2_7b_chat_hf
path: "judgements/main/Llama-2-7b-chat-hf.json"
- config_name: judgements_safety
data_files:
- split: Mistral_7B_Instruct_v0.1
path: "judgements/safety/Mistral-7B-Instruct-v0.1.json"
- split: gpt_4_0613
path: "judgements/safety/gpt-4-0613.json"
- split: gpt_4_0314
path: "judgements/safety/gpt-4-0314.json"
- split: Llama_2_70B_chat_GPTQ
path: "judgements/safety/Llama-2-70B-chat-GPTQ.json"
- split: Llama_2_13b_chat_hf
path: "judgements/safety/Llama-2-13b-chat-hf.json"
- split: vicuna_7b_v1.5
path: "judgements/safety/vicuna-7b-v1.5.json"
- split: vicuna_13b_v1.5
path: "judgements/safety/vicuna-13b-v1.5.json"
- split: gpt_3.5_turbo_0301
path: "judgements/safety/gpt-3.5-turbo-0301.json"
- split: Llama_2_7b_chat_hf
path: "judgements/safety/Llama-2-7b-chat-hf.json"
---
## Just Eval Instruct!! | 2,490 | [
[
-0.0082244873046875,
-0.0537109375,
0.044647216796875,
0.03240966796875,
-0.031036376953125,
0.023651123046875,
0.01499176025390625,
0.0210723876953125,
-0.0016813278198242188,
0.09661865234375,
-0.0192108154296875,
-0.04217529296875,
-0.0220489501953125,
-0.0109710693359375,
-0.05670166015625,
0.09619140625,
0.00783538818359375,
0.0204925537109375,
0.01268768310546875,
0.02716064453125,
-0.0274505615234375,
0.0033626556396484375,
-0.04583740234375,
0.007495880126953125,
0.04443359375,
0.054473876953125,
0.026153564453125,
0.00112152099609375,
0.038848876953125,
0.01776123046875,
0.0167236328125,
0.00963592529296875,
-0.034332275390625,
-0.0022563934326171875,
0.00177764892578125,
-0.04840087890625,
-0.0285797119140625,
-0.001049041748046875,
0.054351806640625,
0.032501220703125,
-0.031829833984375,
0.0108184814453125,
-0.01180267333984375,
0.05352783203125,
-0.07147216796875,
-0.018707275390625,
-0.0277862548828125,
-0.0168609619140625,
-0.000652313232421875,
0.007205963134765625,
-0.025909423828125,
-0.044891357421875,
-0.016021728515625,
-0.049713134765625,
-0.01087188720703125,
0.0068206787109375,
0.06427001953125,
0.018585205078125,
-0.0533447265625,
0.02313232421875,
-0.0457763671875,
0.05047607421875,
-0.0228118896484375,
0.043731689453125,
0.03424072265625,
0.01245880126953125,
-0.01354217529296875,
-0.05743408203125,
-0.015869140625,
0.0002753734588623047,
0.0162506103515625,
0.006855010986328125,
-0.0250396728515625,
0.01409912109375,
0.052825927734375,
-0.0074005126953125,
0.004032135009765625,
-0.02093505859375,
-0.056915283203125,
0.0068359375,
0.05322265625,
-0.006488800048828125,
0.04278564453125,
0.0222930908203125,
-0.055084228515625,
0.01078033447265625,
-0.067138671875,
-0.029327392578125,
-0.02008056640625,
0.014007568359375,
-0.03509521484375,
0.03961181640625,
0.0076751708984375,
-0.00586700439453125,
0.037139892578125,
0.036376953125,
-0.00853729248046875,
-0.0140228271484375,
-0.059967041015625,
0.0242462158203125,
0.046661376953125,
0.00981903076171875,
0.01169586181640625,
0.006282806396484375,
-0.03564453125,
-0.0005273818969726562,
0.059173583984375,
-0.038360595703125,
-0.03436279296875,
-0.012786865234375,
-0.011444091796875,
-0.043731689453125,
0.0304412841796875,
-0.1004638671875,
-0.0175018310546875,
-0.00006556510925292969,
0.059967041015625,
-0.0194091796875,
-0.0054779052734375,
-0.0189361572265625,
-0.022247314453125,
-0.0007166862487792969,
0.008148193359375,
-0.051483154296875,
0.02642822265625,
0.045867919921875,
0.008758544921875,
0.06622314453125,
-0.0218048095703125,
-0.042236328125,
0.0007276535034179688,
-0.0743408203125,
0.036529541015625,
-0.035430908203125,
-0.050872802734375,
0.006103515625,
-0.01520538330078125,
0.01526641845703125,
-0.0184478759765625,
0.0347900390625,
-0.039794921875,
0.0051116943359375,
-0.03887939453125,
-0.01419830322265625,
-0.007076263427734375,
-0.0159912109375,
-0.01509857177734375,
0.058380126953125,
0.054351806640625,
-0.002170562744140625,
0.0182647705078125,
-0.0809326171875,
-0.035064697265625,
0.02899169921875,
0.01003265380859375,
0.0038852691650390625,
0.044097900390625,
0.01369476318359375,
0.01317596435546875,
0.0025768280029296875,
-0.0001252889633178711,
-0.0205230712890625,
-0.0176849365234375,
0.015411376953125,
-0.042388916015625,
0.041107177734375,
0.01922607421875,
-0.023468017578125,
0.0138397216796875,
-0.03948974609375,
0.0318603515625,
-0.0295562744140625,
-0.00907135009765625,
-0.010101318359375,
-0.03485107421875,
0.01285552978515625,
-0.035675048828125,
0.007289886474609375,
-0.0367431640625,
0.0394287109375,
-0.0209808349609375,
-0.0180816650390625,
0.057037353515625,
0.01422882080078125,
0.0352783203125,
0.00838470458984375,
0.038177490234375,
-0.053192138671875,
0.009429931640625,
0.031280517578125,
0.038330078125,
-0.08160400390625,
-0.024871826171875,
-0.0009946823120117188,
0.0303955078125,
-0.06317138671875,
0.044891357421875,
0.0170745849609375,
-0.04388427734375,
-0.044219970703125,
-0.01110076904296875,
0.058563232421875,
0.0217132568359375,
0.0278472900390625,
0.005035400390625,
-0.06982421875,
-0.0360107421875,
0.01898193359375,
-0.02337646484375,
-0.0164031982421875,
-0.018218994140625,
0.035003662109375,
-0.0447998046875,
0.001010894775390625,
-0.0201263427734375,
-0.010162353515625,
-0.050811767578125,
0.004299163818359375,
0.001739501953125,
0.028656005859375,
0.022064208984375,
-0.046112060546875,
-0.03997802734375,
-0.005550384521484375,
-0.056884765625,
-0.04132080078125,
-0.0051116943359375,
-0.0400390625,
0.007152557373046875,
0.05035400390625,
-0.01351165771484375,
0.06414794921875,
0.007045745849609375,
-0.048065185546875,
0.0156402587890625,
-0.031219482421875,
0.01125335693359375,
-0.03277587890625,
-0.0313720703125,
-0.038238525390625,
-0.0027980804443359375,
-0.0295867919921875,
0.038665771484375,
0.030792236328125,
-0.01508331298828125,
-0.049957275390625,
0.0295867919921875,
-0.030303955078125,
0.0152587890625,
-0.045928955078125,
-0.036712646484375,
0.025848388671875,
-0.00629425048828125,
-0.029083251953125,
0.06732177734375,
0.05621337890625,
-0.0552978515625,
0.032562255859375,
0.044525146484375,
0.0307159423828125,
0.0572509765625,
-0.046539306640625,
-0.0027332305908203125,
0.002288818359375,
0.01200103759765625,
-0.06353759765625,
-0.037506103515625,
0.0173492431640625,
-0.00920867919921875,
0.047149658203125,
0.008331298828125,
-0.01241302490234375,
-0.03057861328125,
-0.03643798828125,
0.027740478515625,
0.06573486328125,
-0.04443359375,
0.01806640625,
0.0340576171875,
0.0260162353515625,
-0.0399169921875,
-0.040985107421875,
0.01425933837890625,
-0.0116424560546875,
-0.00826263427734375,
-0.0059967041015625,
-0.0006165504455566406,
-0.020416259765625,
-0.004604339599609375,
-0.019500732421875,
-0.037261962890625,
0.006450653076171875,
0.026458740234375,
0.045928955078125,
-0.02142333984375,
0.00748443603515625,
0.00537109375,
-0.01071929931640625,
-0.000057578086853027344,
-0.0005450248718261719,
0.059783935546875,
-0.033294677734375,
-0.0272216796875,
-0.041259765625,
0.032684326171875,
0.0283966064453125,
-0.01226043701171875,
0.007740020751953125,
0.039093017578125,
-0.023956298828125,
-0.023651123046875,
-0.043304443359375,
-0.035430908203125,
-0.03875732421875,
0.023529052734375,
-0.003910064697265625,
-0.0377197265625,
-0.0016603469848632812,
-0.01140594482421875,
0.003513336181640625,
0.0268707275390625,
0.00865936279296875,
-0.043426513671875,
0.050811767578125,
0.0655517578125,
-0.006847381591796875,
0,
-0.0361328125,
0.041473388671875,
-0.061126708984375,
-0.020599365234375,
-0.01666259765625,
0.0019378662109375,
-0.03021240234375,
-0.007259368896484375,
0.0110626220703125,
0.037567138671875,
-0.0162200927734375,
0.05499267578125,
-0.035858154296875,
0.07965087890625,
-0.0100555419921875,
0.0217437744140625,
-0.038665771484375,
-0.020538330078125,
0.007587432861328125,
0.004364013671875,
-0.037811279296875,
-0.05291748046875,
0.08587646484375,
0.01953125,
0.06378173828125,
-0.01568603515625,
0.101806640625,
0.0146636962890625,
0.045257568359375,
-0.022918701171875,
0.057830810546875,
-0.0228118896484375,
-0.028350830078125,
-0.05035400390625,
0.0197906494140625,
-0.07904052734375,
0.0162200927734375,
0.0166473388671875,
-0.0300140380859375,
0.0139007568359375,
-0.0003483295440673828,
-0.061004638671875,
0.03863525390625,
-0.03021240234375,
0.0635986328125,
-0.03271484375,
-0.01099395751953125,
-0.01056671142578125,
-0.005016326904296875,
0.00772857666015625,
-0.01459503173828125,
0.026214599609375,
-0.01358795166015625,
-0.05548095703125,
0.040618896484375,
-0.0254974365234375,
0.04595947265625,
0.009613037109375,
0.0199737548828125,
0.0177154541015625,
0.01788330078125,
-0.004322052001953125,
-0.001628875732421875,
0.01446533203125,
-0.018218994140625,
0.01959228515625,
-0.020965576171875,
-0.032928466796875,
0.031951904296875,
-0.02899169921875,
-0.0144805908203125,
-0.0400390625,
0.0224456787109375,
0.027496337890625,
-0.0020847320556640625,
0.033203125,
0.0382080078125,
-0.0244598388671875,
0.003993988037109375,
0.0631103515625,
0.006809234619140625,
0.0543212890625,
0.027740478515625,
-0.03314208984375,
-0.004322052001953125,
0.058074951171875,
0.010162353515625,
0.017822265625,
0.0247650146484375,
0.0198211669921875,
-0.026763916015625,
-0.01312255859375,
-0.0176239013671875,
0.01483917236328125,
-0.0303955078125,
-0.005977630615234375,
-0.031341552734375,
-0.0185089111328125,
-0.0361328125,
-0.0391845703125,
-0.0556640625,
0.00876617431640625,
-0.031005859375,
-0.041168212890625,
0.017913818359375,
0.072021484375,
-0.059814453125,
0.043792724609375,
-0.07928466796875,
0.0254974365234375,
0.0038280487060546875,
0.0166015625,
-0.0197906494140625,
-0.0380859375,
-0.01276397705078125,
0.001922607421875,
-0.04779052734375,
-0.048583984375,
0.060546875,
0.006435394287109375,
0.02960205078125,
0.052734375,
0.03887939453125,
0.04150390625,
-0.052581787109375,
0.0482177734375,
0.03277587890625,
-0.067138671875,
0.043487548828125,
-0.011138916015625,
0.0009002685546875,
0.08074951171875,
0.04669189453125,
-0.05902099609375,
-0.03436279296875,
-0.0968017578125,
-0.06585693359375,
0.027435302734375,
-0.00556182861328125,
0.042694091796875,
-0.0106201171875,
-0.0310211181640625,
0.0014972686767578125,
0.0374755859375,
-0.029083251953125,
-0.00397491455078125,
0.0213623046875,
0.02532958984375,
0.0269012451171875,
-0.049530029296875,
-0.036590576171875,
-0.038543701171875,
0.0243377685546875,
0.045867919921875,
0.036376953125,
0.00749969482421875,
0.0229339599609375,
-0.0221099853515625,
0.0228729248046875,
0.0380859375,
0.09295654296875,
-0.01947021484375,
0.0208587646484375,
0.0287628173828125,
0.0023670196533203125,
-0.001922607421875,
-0.0189971923828125,
0.003070831298828125,
-0.0004544258117675781,
0.03192138671875,
0.030914306640625,
0.03704833984375,
-0.02899169921875,
0.01419830322265625,
0.013458251953125,
-0.0007953643798828125,
-0.06658935546875,
0.039703369140625,
-0.04095458984375,
0.00830078125,
0.02862548828125,
-0.0034637451171875,
0.0015077590942382812,
-0.0377197265625,
0.052825927734375,
0.0218353271484375,
-0.064453125,
-0.0360107421875,
0.0506591796875,
0.055694580078125,
-0.072509765625,
0.049468994140625,
-0.0013523101806640625,
-0.08453369140625,
0.081298828125,
0.035797119140625,
0.07861328125,
-0.04290771484375,
0.02978515625,
0.014923095703125,
0.017120361328125,
0.0006108283996582031,
0.07855224609375,
0.0034618377685546875,
-0.042999267578125,
0.006107330322265625,
-0.013641357421875,
-0.0257110595703125,
0.0295867919921875,
-0.029998779296875,
-0.0030689239501953125,
-0.08721923828125,
0.04443359375,
0.022430419921875,
-0.01959228515625,
-0.05426025390625,
0.033294677734375,
0.0091094970703125,
0.06390380859375,
-0.06060791015625,
0.039886474609375,
0.015869140625,
-0.045928955078125,
-0.0869140625,
0.0128173828125,
0.0191802978515625,
-0.0677490234375,
0.056304931640625,
0.033538818359375,
0.0169219970703125,
0.019073486328125,
-0.09747314453125,
-0.039459228515625,
0.035491943359375,
-0.01611328125,
-0.0243682861328125,
0.048583984375,
-0.041015625,
0.0325927734375,
-0.040740966796875,
0.0247802734375,
0.052215576171875,
0.0616455078125,
-0.0201568603515625,
-0.07012939453125,
-0.019134521484375,
-0.0091094970703125,
-0.0406494140625,
0.056793212890625,
-0.031341552734375,
0.040740966796875,
-0.0560302734375,
-0.0247650146484375,
0.02862548828125,
0.00531005859375,
-0.019989013671875,
0.03826904296875,
0.032257080078125,
0.01525115966796875,
0.052337646484375,
0.0020503997802734375,
0.09661865234375,
0.00629425048828125,
0.004802703857421875,
0.052215576171875,
-0.0157623291015625,
0.062255859375,
0.026397705078125,
-0.046417236328125,
0.03216552734375,
0.035888671875,
-0.022216796875,
0.03472900390625,
0.006862640380859375,
-0.047149658203125,
-0.0248260498046875,
-0.04193115234375,
-0.036376953125,
0.032073974609375,
0.006534576416015625,
0.0028839111328125,
-0.0304412841796875,
0.0012559890747070312,
0.0276947021484375,
0.0399169921875,
-0.018310546875,
0.0452880859375,
0.0007672309875488281,
-0.0174560546875,
0.04217529296875,
0.0020656585693359375,
0.040130615234375,
-0.04931640625,
-0.03271484375,
-0.01190185546875,
-0.0032939910888671875,
-0.03497314453125,
-0.043243408203125,
0.0129241943359375,
0.0026454925537109375,
0.0022716522216796875,
-0.03179931640625,
0.049407958984375,
-0.037567138671875,
-0.075439453125,
0.0214691162109375,
0.003391265869140625,
0.032623291015625,
-0.026519775390625,
-0.0080718994140625,
-0.0193328857421875,
0.02508544921875,
0.005847930908203125,
-0.00008738040924072266,
0.0182037353515625,
0.006988525390625,
0.053375244140625,
0.0584716796875,
0.01099395751953125,
-0.0118255615234375,
0.004390716552734375,
0.058135986328125,
-0.03216552734375,
0.004528045654296875,
-0.08404541015625,
0.057647705078125,
-0.00524139404296875,
-0.02044677734375,
0.042083740234375,
0.035980224609375,
0.0528564453125,
-0.0171661376953125,
0.045684814453125,
-0.0165863037109375,
0.035430908203125,
-0.00740814208984375,
0.048065185546875,
-0.039154052734375,
0.007717132568359375,
0.0001951456069946289,
-0.04132080078125,
-0.00450897216796875,
0.03533935546875,
-0.005146026611328125,
-0.034820556640625,
0.061676025390625,
0.053009033203125,
0.0012826919555664062,
-0.01058197021484375,
0.050811767578125,
-0.01398468017578125,
0.003932952880859375,
0.024200439453125,
0.0631103515625,
-0.0234527587890625,
0.01531219482421875,
-0.0282745361328125,
-0.0208282470703125,
-0.035614013671875,
-0.05230712890625,
-0.049224853515625,
0.008636474609375,
-0.01678466796875,
-0.04571533203125,
0.0011167526245117188,
0.0802001953125,
0.036956787109375,
-0.045623779296875,
-0.0214691162109375,
0.006072998046875,
0.045928955078125,
0.007080078125,
-0.00812530517578125,
0.031341552734375,
-0.04071044921875,
-0.032135009765625,
0.05859375,
0.0098114013671875,
0.014007568359375,
-0.004161834716796875,
0.0143585205078125,
-0.01131439208984375,
0.0199432373046875,
0.01546478271484375,
0.042388916015625,
-0.0439453125,
-0.044891357421875,
0.00054168701171875,
-0.0289154052734375,
-0.0013589859008789062,
0.0360107421875,
-0.0227508544921875,
0.0242919921875,
0.0246124267578125,
0.03961181640625,
-0.004878997802734375,
0.0009732246398925781,
0.05303955078125,
-0.07354736328125,
0.007598876953125,
0.04339599609375,
-0.0006394386291503906,
-0.01473236083984375,
-0.0391845703125,
0.0762939453125,
-0.0040283203125,
-0.046783447265625,
-0.06964111328125,
0.0171966552734375,
-0.0740966796875,
-0.0247039794921875,
0.044830322265625,
0.0229339599609375,
-0.029541015625,
-0.007770538330078125,
-0.05035400390625,
0.005794525146484375,
-0.04638671875,
0.04736328125,
0.01020050048828125,
-0.01531219482421875,
-0.01471710205078125,
-0.031951904296875,
0.018951416015625,
0.026458740234375,
-0.07196044921875,
-0.02703857421875,
0.01617431640625,
0.0118255615234375,
-0.000640869140625,
0.04071044921875,
0.036712646484375,
0.045623779296875,
0.026611328125,
0.038482666015625,
-0.0142822265625,
-0.043304443359375,
-0.00896453857421875,
-0.0106353759765625,
-0.024200439453125,
-0.07305908203125
]
] |
learn3r/summ_screen_fd_bp | 2023-09-26T10:28:23.000Z | [
"region:us"
] | learn3r | null | null | 0 | 1,069 | 2023-08-30T08:33:07 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
- split: test
path: data/test-*
dataset_info:
features:
- name: input
dtype: string
- name: output
dtype: string
splits:
- name: train
num_bytes: 119519799
num_examples: 3673
- name: validation
num_bytes: 10838812
num_examples: 338
- name: test
num_bytes: 11004410
num_examples: 337
download_size: 6435842
dataset_size: 141363021
---
# Dataset Card for "summ_screen_fd_bp"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 701 | [
[
-0.053863525390625,
-0.01299285888671875,
0.01080322265625,
0.0214385986328125,
-0.0307159423828125,
-0.0008640289306640625,
0.038787841796875,
0.00746917724609375,
0.058746337890625,
0.040557861328125,
-0.061920166015625,
-0.041046142578125,
-0.051666259765625,
-0.0229949951171875,
-0.01374053955078125,
0.09442138671875,
-0.003143310546875,
0.01409149169921875,
-0.022064208984375,
-0.005893707275390625,
-0.0251007080078125,
-0.035400390625,
-0.03369140625,
-0.043426513671875,
0.050323486328125,
0.05120849609375,
0.0233154296875,
0.0160369873046875,
0.062225341796875,
0.0077972412109375,
0.01219940185546875,
-0.0035991668701171875,
-0.0297088623046875,
-0.00789642333984375,
-0.01172637939453125,
-0.0296173095703125,
-0.0699462890625,
0.006908416748046875,
0.055389404296875,
0.0458984375,
0.005153656005859375,
0.060394287109375,
-0.01000213623046875,
0.06903076171875,
-0.031341552734375,
0.057464599609375,
0.0065765380859375,
-0.002300262451171875,
-0.028839111328125,
-0.0197906494140625,
0.01287078857421875,
-0.0230255126953125,
-0.007404327392578125,
-0.04339599609375,
0.0185546875,
0.000316619873046875,
0.054443359375,
0.033477783203125,
-0.0245361328125,
0.021820068359375,
-0.0309600830078125,
-0.003398895263671875,
-0.0233154296875,
0.009765625,
0.035247802734375,
0.019378662109375,
-0.00385284423828125,
-0.032012939453125,
-0.0191650390625,
0.0190582275390625,
-0.001148223876953125,
0.0224456787109375,
0.010498046875,
0.0221405029296875,
0.041290283203125,
0.0533447265625,
-0.0440673828125,
-0.024688720703125,
-0.0408935546875,
-0.020294189453125,
0.04949951171875,
0.0200347900390625,
0.016387939453125,
0.0031604766845703125,
-0.00811767578125,
-0.006206512451171875,
-0.029815673828125,
-0.0078125,
0.0115509033203125,
0.003936767578125,
-0.09136962890625,
0.050811767578125,
-0.00865936279296875,
0.051910400390625,
0.00946044921875,
0.0352783203125,
0.03790283203125,
-0.019287109375,
-0.0190887451171875,
-0.0037937164306640625,
0.01395416259765625,
0.051788330078125,
0.0191192626953125,
0.034912109375,
-0.007541656494140625,
0.0063323974609375,
-0.0031528472900390625,
-0.0941162109375,
-0.055755615234375,
0.026824951171875,
-0.057525634765625,
-0.01154327392578125,
0.02593994140625,
-0.068603515625,
-0.044891357421875,
-0.016632080078125,
0.0309906005859375,
-0.0025539398193359375,
-0.053070068359375,
-0.03204345703125,
-0.060821533203125,
0.01861572265625,
0.00551605224609375,
-0.0706787109375,
0.019744873046875,
0.03961181640625,
0.0625,
0.0083160400390625,
-0.00862884521484375,
-0.046844482421875,
0.006336212158203125,
-0.0239105224609375,
0.0692138671875,
-0.0200653076171875,
-0.041046142578125,
-0.0007357597351074219,
0.01123046875,
-0.0092010498046875,
-0.030792236328125,
0.040863037109375,
-0.00958251953125,
-0.0023365020751953125,
-0.038421630859375,
-0.043426513671875,
-0.0066680908203125,
0.00786590576171875,
-0.0706787109375,
0.061004638671875,
0.038330078125,
-0.060577392578125,
0.0374755859375,
-0.0897216796875,
-0.021820068359375,
0.03948974609375,
-0.01169586181640625,
-0.0272064208984375,
0.028350830078125,
-0.0131378173828125,
0.0465087890625,
0.00614166259765625,
0.01285552978515625,
-0.04705810546875,
-0.0241546630859375,
0.01800537109375,
0.00849151611328125,
0.05035400390625,
0.026824951171875,
0.0225677490234375,
0.0272216796875,
-0.0693359375,
-0.0283050537109375,
0.0016765594482421875,
-0.002948760986328125,
-0.0195770263671875,
-0.0174713134765625,
0.02166748046875,
0.001495361328125,
0.017181396484375,
-0.025421142578125,
0.005706787109375,
0.0005741119384765625,
-0.005985260009765625,
0.046783447265625,
0.0272216796875,
0.0107574462890625,
-0.048095703125,
0.03509521484375,
-0.004009246826171875,
0.006317138671875,
-0.02020263671875,
-0.03912353515625,
-0.034698486328125,
-0.026092529296875,
0.01708984375,
0.04974365234375,
-0.040924072265625,
0.0396728515625,
0.01055908203125,
-0.053314208984375,
-0.0046844482421875,
0.004207611083984375,
0.0192108154296875,
0.033294677734375,
0.01061248779296875,
-0.055572509765625,
-0.041595458984375,
-0.0428466796875,
0.03314208984375,
-0.00670623779296875,
-0.0176849365234375,
0.0276947021484375,
0.05157470703125,
-0.0160369873046875,
0.05194091796875,
-0.06353759765625,
-0.038360595703125,
-0.00849151611328125,
-0.0116729736328125,
0.04315185546875,
0.051422119140625,
0.06597900390625,
-0.044342041015625,
-0.01541900634765625,
-0.05157470703125,
-0.029052734375,
-0.03570556640625,
0.0111846923828125,
-0.03167724609375,
0.0079498291015625,
0.00453948974609375,
-0.0323486328125,
0.0474853515625,
0.06597900390625,
-0.07452392578125,
0.0255126953125,
-0.01404571533203125,
0.02825927734375,
-0.08917236328125,
0.03363037109375,
0.0170135498046875,
-0.0172119140625,
-0.029815673828125,
-0.0007996559143066406,
0.0053863525390625,
-0.02447509765625,
-0.001987457275390625,
0.04913330078125,
-0.024932861328125,
-0.022796630859375,
-0.0190277099609375,
-0.001983642578125,
-0.013092041015625,
0.029083251953125,
0.0155181884765625,
0.0291748046875,
0.06536865234375,
-0.0489501953125,
0.06805419921875,
0.033660888671875,
-0.00046443939208984375,
0.07525634765625,
-0.048797607421875,
-0.017303466796875,
-0.018157958984375,
0.029541015625,
-0.09051513671875,
-0.049652099609375,
0.042236328125,
-0.034912109375,
0.0386962890625,
-0.028564453125,
-0.0277557373046875,
-0.042724609375,
-0.04119873046875,
0.045074462890625,
0.038665771484375,
-0.03582763671875,
0.0298614501953125,
0.0640869140625,
-0.0159454345703125,
0.000934600830078125,
-0.06298828125,
-0.0225982666015625,
-0.0168609619140625,
-0.0294342041015625,
0.04315185546875,
-0.022186279296875,
-0.005283355712890625,
-0.02593994140625,
0.004695892333984375,
-0.013824462890625,
-0.017120361328125,
0.045257568359375,
0.03643798828125,
-0.007381439208984375,
0.0186309814453125,
0.0010662078857421875,
-0.056976318359375,
0.021820068359375,
0.011260986328125,
0.043853759765625,
0.00958251953125,
-0.00354766845703125,
-0.0235443115234375,
0.0305633544921875,
0.0219268798828125,
-0.00949859619140625,
0.03668212890625,
0.06707763671875,
-0.065185546875,
0.005275726318359375,
-0.035552978515625,
-0.0224456787109375,
-0.0288543701171875,
0.00940704345703125,
-0.01178741455078125,
-0.032623291015625,
0.0638427734375,
-0.00228118896484375,
0.005092620849609375,
0.052276611328125,
0.06353759765625,
-0.00005328655242919922,
0.046966552734375,
0.051483154296875,
-0.01190948486328125,
0.046295166015625,
-0.0192413330078125,
-0.038177490234375,
-0.052093505859375,
-0.0181427001953125,
-0.0198974609375,
-0.0369873046875,
-0.03631591796875,
-0.0236053466796875,
0.01045989990234375,
-0.007564544677734375,
-0.026824951171875,
0.01110076904296875,
-0.040924072265625,
0.010223388671875,
0.049774169921875,
0.0192108154296875,
-0.003704071044921875,
-0.0144195556640625,
0.007045745849609375,
0.006317138671875,
-0.03692626953125,
-0.006649017333984375,
0.08880615234375,
0.02191162109375,
0.061737060546875,
0.0143280029296875,
0.054107666015625,
0.035308837890625,
0.038299560546875,
-0.0186309814453125,
0.0277557373046875,
-0.00829315185546875,
-0.057952880859375,
0.0009465217590332031,
-0.01277923583984375,
-0.045867919921875,
-0.016021728515625,
-0.031219482421875,
-0.033660888671875,
0.024627685546875,
0.041900634765625,
-0.019622802734375,
0.01354217529296875,
-0.07000732421875,
0.08172607421875,
0.0017261505126953125,
-0.010223388671875,
-0.0300445556640625,
-0.050811767578125,
0.0283050537109375,
0.003948211669921875,
0.00592803955078125,
-0.0284576416015625,
-0.0122528076171875,
0.0755615234375,
-0.053924560546875,
0.073486328125,
-0.052825927734375,
0.002994537353515625,
0.02032470703125,
-0.024658203125,
-0.01206207275390625,
0.032745361328125,
0.0145263671875,
0.0130767822265625,
0.02252197265625,
-0.03741455078125,
0.00279998779296875,
0.051177978515625,
-0.03875732421875,
0.0283355712890625,
-0.0418701171875,
-0.037078857421875,
-0.002655029296875,
0.01389312744140625,
0.0143280029296875,
0.0537109375,
-0.02252197265625,
-0.0206298828125,
0.049163818359375,
-0.0005965232849121094,
0.0355224609375,
0.0243988037109375,
-0.0309600830078125,
-0.0372314453125,
0.06927490234375,
0.01555633544921875,
-0.006717681884765625,
0.0333251953125,
0.01267242431640625,
-0.0199737548828125,
-0.0152130126953125,
-0.04754638671875,
0.015716552734375,
-0.0201568603515625,
-0.03448486328125,
-0.0078582763671875,
-0.0217742919921875,
-0.03399658203125,
-0.0004119873046875,
-0.00909423828125,
-0.043060302734375,
-0.03704833984375,
-0.047698974609375,
0.0704345703125,
0.0063934326171875,
-0.056610107421875,
0.036163330078125,
-0.06298828125,
0.063232421875,
-0.0026035308837890625,
0.08111572265625,
-0.0360107421875,
-0.0287322998046875,
-0.01413726806640625,
-0.01020050048828125,
-0.00833892822265625,
-0.0648193359375,
0.01255035400390625,
0.0169219970703125,
0.0496826171875,
0.0266265869140625,
0.0020732879638671875,
0.03167724609375,
0.00457763671875,
0.045257568359375,
0.0120391845703125,
-0.044586181640625,
0.047271728515625,
-0.024627685546875,
0.033843994140625,
0.04119873046875,
0.034149169921875,
-0.035247802734375,
0.00865936279296875,
-0.059234619140625,
-0.0509033203125,
0.04119873046875,
-0.0125732421875,
0.00786590576171875,
0.021148681640625,
0.0250244140625,
0.00716400146484375,
0.0291290283203125,
-0.037841796875,
-0.059814453125,
-0.00992584228515625,
-0.030517578125,
-0.0030803680419921875,
-0.04376220703125,
-0.0166168212890625,
-0.035003662109375,
0.050445556640625,
-0.006671905517578125,
0.040069580078125,
0.018310546875,
0.01275634765625,
-0.012969970703125,
-0.020751953125,
0.038299560546875,
0.04595947265625,
-0.0511474609375,
-0.00445556640625,
-0.01305389404296875,
-0.039947509765625,
-0.0283203125,
0.06414794921875,
-0.003238677978515625,
-0.00637054443359375,
0.023681640625,
0.042999267578125,
-0.02691650390625,
-0.035614013671875,
0.0278472900390625,
-0.006107330322265625,
-0.0294952392578125,
-0.0390625,
0.01108551025390625,
0.00563812255859375,
0.009063720703125,
0.0238800048828125,
-0.00635528564453125,
0.0165557861328125,
-0.026580810546875,
0.04864501953125,
0.00487518310546875,
-0.048797607421875,
-0.01134490966796875,
0.0567626953125,
0.04833984375,
-0.02587890625,
0.048370361328125,
-0.0092620849609375,
-0.022003173828125,
0.05133056640625,
0.00897216796875,
0.047943115234375,
-0.037994384765625,
0.0281219482421875,
0.0382080078125,
0.004749298095703125,
0.0240478515625,
0.0694580078125,
-0.0229949951171875,
-0.056549072265625,
-0.028900146484375,
-0.0227203369140625,
-0.041046142578125,
-0.00652313232421875,
-0.04132080078125,
0.0220794677734375,
-0.06317138671875,
-0.0197296142578125,
-0.0006060600280761719,
0.01416778564453125,
-0.036346435546875,
0.016357421875,
0.033447265625,
0.0848388671875,
-0.06927490234375,
0.044921875,
0.04803466796875,
-0.04473876953125,
-0.029510498046875,
-0.037322998046875,
0.01812744140625,
-0.053192138671875,
-0.01171112060546875,
0.0256805419921875,
0.0287017822265625,
0.00139617919921875,
-0.043426513671875,
-0.041900634765625,
0.0784912109375,
0.01338958740234375,
-0.03887939453125,
0.0455322265625,
-0.02447509765625,
0.0287322998046875,
-0.0279388427734375,
0.038116455078125,
0.039093017578125,
0.047210693359375,
0.0186614990234375,
-0.04754638671875,
0.01373291015625,
-0.05010986328125,
-0.027618408203125,
0.029541015625,
-0.049896240234375,
0.0158538818359375,
-0.026214599609375,
-0.0006461143493652344,
-0.0092010498046875,
0.04449462890625,
0.0223541259765625,
0.054931640625,
0.0224456787109375,
0.03594970703125,
0.0482177734375,
-0.031585693359375,
0.061248779296875,
-0.0287017822265625,
0.019866943359375,
0.065185546875,
-0.01306915283203125,
0.0199737548828125,
0.0289764404296875,
-0.00482940673828125,
0.019317626953125,
0.06390380859375,
-0.049346923828125,
0.0328369140625,
0.039306640625,
-0.01971435546875,
0.00388336181640625,
-0.0006012916564941406,
-0.044647216796875,
-0.0014123916625976562,
0.045684814453125,
-0.04022216796875,
-0.0062255859375,
-0.007335662841796875,
-0.00302886962890625,
-0.0102691650390625,
-0.051605224609375,
0.049072265625,
0.00507354736328125,
-0.0284423828125,
-0.002849578857421875,
0.00656890869140625,
0.04351806640625,
-0.05413818359375,
-0.0284576416015625,
-0.026885986328125,
0.019195556640625,
-0.046142578125,
-0.06610107421875,
0.0574951171875,
-0.0140380859375,
-0.016387939453125,
-0.00916290283203125,
0.058868408203125,
-0.034637451171875,
-0.048675537109375,
0.007236480712890625,
0.019561767578125,
0.0248565673828125,
-0.006984710693359375,
-0.062103271484375,
0.0022830963134765625,
-0.0137939453125,
0.0020847320556640625,
0.018035888671875,
-0.00891876220703125,
0.00855255126953125,
0.05517578125,
0.04022216796875,
0.0027904510498046875,
-0.01947021484375,
0.0301361083984375,
0.04925537109375,
-0.05816650390625,
-0.0413818359375,
-0.04998779296875,
0.0494384765625,
-0.03131103515625,
-0.045196533203125,
0.0172882080078125,
0.0716552734375,
0.053741455078125,
-0.0260467529296875,
0.0439453125,
-0.0289459228515625,
0.043426513671875,
-0.0198822021484375,
0.05792236328125,
-0.01194000244140625,
-0.020965576171875,
-0.02911376953125,
-0.068603515625,
-0.048126220703125,
0.05523681640625,
0.0228424072265625,
-0.0013484954833984375,
0.036163330078125,
0.0687255859375,
-0.0012235641479492188,
0.006473541259765625,
-0.002864837646484375,
0.006313323974609375,
0.0120086669921875,
0.037872314453125,
0.0167388916015625,
-0.023284912109375,
0.0196533203125,
-0.01389312744140625,
-0.07513427734375,
-0.00821685791015625,
-0.072021484375,
-0.061798095703125,
-0.052154541015625,
-0.055572509765625,
-0.032470703125,
-0.0154571533203125,
0.061981201171875,
0.06085205078125,
-0.06353759765625,
-0.0277557373046875,
0.0032863616943359375,
0.0254669189453125,
-0.0212554931640625,
-0.01349639892578125,
0.037750244140625,
0.0294036865234375,
-0.042755126953125,
-0.0276336669921875,
0.0063018798828125,
0.0238800048828125,
-0.01154327392578125,
0.00323486328125,
-0.002574920654296875,
-0.0049591064453125,
0.0218658447265625,
0.03424072265625,
0.017120361328125,
-0.015289306640625,
-0.0489501953125,
0.006755828857421875,
-0.00783538818359375,
0.061981201171875,
-0.04052734375,
0.0014057159423828125,
0.06463623046875,
0.0173492431640625,
0.054779052734375,
0.008758544921875,
0.05731201171875,
-0.04302978515625,
0.007572174072265625,
-0.0186614990234375,
0.042266845703125,
0.00994873046875,
-0.01331329345703125,
0.067138671875,
0.041259765625,
-0.0306396484375,
-0.033203125,
0.0118408203125,
-0.1142578125,
0.0190887451171875,
0.06378173828125,
0.016632080078125,
-0.0162353515625,
-0.00514984130859375,
-0.0440673828125,
0.0166168212890625,
-0.058319091796875,
0.033966064453125,
0.04498291015625,
-0.013671875,
-0.0292205810546875,
-0.004222869873046875,
0.039459228515625,
-0.0244293212890625,
-0.07373046875,
0.00399017333984375,
0.061981201171875,
0.0211181640625,
0.0008721351623535156,
0.08642578125,
-0.0209808349609375,
0.0182952880859375,
0.0242767333984375,
0.0206298828125,
-0.021881103515625,
-0.015716552734375,
-0.0226593017578125,
0.0009813308715820312,
-0.0186614990234375,
-0.052581787109375
]
] |
para_crawl | 2023-04-05T13:36:34.000Z | [
"task_categories:translation",
"annotations_creators:no-annotation",
"language_creators:found",
"multilinguality:translation",
"size_categories:10M<n<100M",
"source_datasets:original",
"language:bg",
"language:cs",
"language:da",
"language:de",
"language:el",
"language:en",
"language:es",
"language:et",
"language:fi",
"language:fr",
"language:ga",
"language:hr",
"language:hu",
"language:it",
"language:lt",
"language:lv",
"language:mt",
"language:nl",
"language:pl",
"language:pt",
"language:ro",
"language:sk",
"language:sl",
"language:sv",
"license:cc0-1.0",
"region:us"
] | null | null | @misc {paracrawl,
title = {ParaCrawl},
year = {2018},
url = {http://paracrawl.eu/download.html.}
} | 8 | 1,066 | 2022-03-02T23:29:22 | ---
annotations_creators:
- no-annotation
language_creators:
- found
language:
- bg
- cs
- da
- de
- el
- en
- es
- et
- fi
- fr
- ga
- hr
- hu
- it
- lt
- lv
- mt
- nl
- pl
- pt
- ro
- sk
- sl
- sv
license:
- cc0-1.0
multilinguality:
- translation
pretty_name: ParaCrawl
size_categories:
- 10M<n<100M
source_datasets:
- original
task_categories:
- translation
task_ids: []
paperswithcode_id: paracrawl
dataset_info:
- config_name: enbg
features:
- name: translation
dtype:
translation:
languages:
- en
- bg
splits:
- name: train
num_bytes: 356532771
num_examples: 1039885
download_size: 103743335
dataset_size: 356532771
- config_name: encs
features:
- name: translation
dtype:
translation:
languages:
- en
- cs
splits:
- name: train
num_bytes: 638068353
num_examples: 2981949
download_size: 196410022
dataset_size: 638068353
- config_name: enda
features:
- name: translation
dtype:
translation:
languages:
- en
- da
splits:
- name: train
num_bytes: 598624306
num_examples: 2414895
download_size: 182804827
dataset_size: 598624306
- config_name: ende
features:
- name: translation
dtype:
translation:
languages:
- en
- de
splits:
- name: train
num_bytes: 3997191986
num_examples: 16264448
download_size: 1307754745
dataset_size: 3997191986
- config_name: enel
features:
- name: translation
dtype:
translation:
languages:
- en
- el
splits:
- name: train
num_bytes: 688069020
num_examples: 1985233
download_size: 193553374
dataset_size: 688069020
- config_name: enes
features:
- name: translation
dtype:
translation:
languages:
- en
- es
splits:
- name: train
num_bytes: 6209466040
num_examples: 21987267
download_size: 1953839527
dataset_size: 6209466040
- config_name: enet
features:
- name: translation
dtype:
translation:
languages:
- en
- et
splits:
- name: train
num_bytes: 201408919
num_examples: 853422
download_size: 70158650
dataset_size: 201408919
- config_name: enfi
features:
- name: translation
dtype:
translation:
languages:
- en
- fi
splits:
- name: train
num_bytes: 524624150
num_examples: 2156069
download_size: 159209242
dataset_size: 524624150
- config_name: enfr
features:
- name: translation
dtype:
translation:
languages:
- en
- fr
splits:
- name: train
num_bytes: 9015440258
num_examples: 31374161
download_size: 2827554088
dataset_size: 9015440258
- config_name: enga
features:
- name: translation
dtype:
translation:
languages:
- en
- ga
splits:
- name: train
num_bytes: 104523278
num_examples: 357399
download_size: 29394367
dataset_size: 104523278
- config_name: enhr
features:
- name: translation
dtype:
translation:
languages:
- en
- hr
splits:
- name: train
num_bytes: 247646552
num_examples: 1002053
download_size: 84904103
dataset_size: 247646552
- config_name: enhu
features:
- name: translation
dtype:
translation:
languages:
- en
- hu
splits:
- name: train
num_bytes: 403168065
num_examples: 1901342
download_size: 119784765
dataset_size: 403168065
- config_name: enit
features:
- name: translation
dtype:
translation:
languages:
- en
- it
splits:
- name: train
num_bytes: 3340542050
num_examples: 12162239
download_size: 1066720197
dataset_size: 3340542050
- config_name: enlt
features:
- name: translation
dtype:
translation:
languages:
- en
- lt
splits:
- name: train
num_bytes: 197053694
num_examples: 844643
download_size: 66358392
dataset_size: 197053694
- config_name: enlv
features:
- name: translation
dtype:
translation:
languages:
- en
- lv
splits:
- name: train
num_bytes: 142409870
num_examples: 553060
download_size: 47368967
dataset_size: 142409870
- config_name: enmt
features:
- name: translation
dtype:
translation:
languages:
- en
- mt
splits:
- name: train
num_bytes: 52786023
num_examples: 195502
download_size: 19028352
dataset_size: 52786023
- config_name: ennl
features:
- name: translation
dtype:
translation:
languages:
- en
- nl
splits:
- name: train
num_bytes: 1384042007
num_examples: 5659268
download_size: 420090979
dataset_size: 1384042007
- config_name: enpl
features:
- name: translation
dtype:
translation:
languages:
- en
- pl
splits:
- name: train
num_bytes: 854786500
num_examples: 3503276
download_size: 270427885
dataset_size: 854786500
- config_name: enpt
features:
- name: translation
dtype:
translation:
languages:
- en
- pt
splits:
- name: train
num_bytes: 2031891156
num_examples: 8141940
download_size: 638184462
dataset_size: 2031891156
- config_name: enro
features:
- name: translation
dtype:
translation:
languages:
- en
- ro
splits:
- name: train
num_bytes: 518359240
num_examples: 1952043
download_size: 160684751
dataset_size: 518359240
- config_name: ensk
features:
- name: translation
dtype:
translation:
languages:
- en
- sk
splits:
- name: train
num_bytes: 337704729
num_examples: 1591831
download_size: 101307152
dataset_size: 337704729
- config_name: ensl
features:
- name: translation
dtype:
translation:
languages:
- en
- sl
splits:
- name: train
num_bytes: 182399034
num_examples: 660161
download_size: 65037465
dataset_size: 182399034
- config_name: ensv
features:
- name: translation
dtype:
translation:
languages:
- en
- sv
splits:
- name: train
num_bytes: 875576366
num_examples: 3476729
download_size: 275528370
dataset_size: 875576366
---
# Dataset Card for "para_crawl"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://paracrawl.eu/releases.html](https://paracrawl.eu/releases.html)
- **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of downloaded dataset files:** 10.36 GB
- **Size of the generated dataset:** 32.90 GB
- **Total amount of disk used:** 43.26 GB
### Dataset Summary
Web-Scale Parallel Corpora for Official European Languages.
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Dataset Structure
### Data Instances
#### enbg
- **Size of downloaded dataset files:** 103.75 MB
- **Size of the generated dataset:** 356.54 MB
- **Total amount of disk used:** 460.27 MB
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"translation": "{\"bg\": \". “A felirat faragott karnis a bejárat fölött, templom épült 14 Július 1643, A földesúr és felesége Jeremiás Murguleţ, C..."
}
```
#### encs
- **Size of downloaded dataset files:** 196.41 MB
- **Size of the generated dataset:** 638.07 MB
- **Total amount of disk used:** 834.48 MB
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"translation": "{\"cs\": \". “A felirat faragott karnis a bejárat fölött, templom épült 14 Július 1643, A földesúr és felesége Jeremiás Murguleţ, C..."
}
```
#### enda
- **Size of downloaded dataset files:** 182.81 MB
- **Size of the generated dataset:** 598.62 MB
- **Total amount of disk used:** 781.43 MB
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"translation": "{\"da\": \". “A felirat faragott karnis a bejárat fölött, templom épült 14 Július 1643, A földesúr és felesége Jeremiás Murguleţ, C..."
}
```
#### ende
- **Size of downloaded dataset files:** 1.31 GB
- **Size of the generated dataset:** 4.00 GB
- **Total amount of disk used:** 5.30 GB
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"translation": "{\"de\": \". “A felirat faragott karnis a bejárat fölött, templom épült 14 Július 1643, A földesúr és felesége Jeremiás Murguleţ, C..."
}
```
#### enel
- **Size of downloaded dataset files:** 193.56 MB
- **Size of the generated dataset:** 688.07 MB
- **Total amount of disk used:** 881.62 MB
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"translation": "{\"el\": \". “A felirat faragott karnis a bejárat fölött, templom épült 14 Július 1643, A földesúr és felesége Jeremiás Murguleţ, C..."
}
```
### Data Fields
The data fields are the same among all splits.
#### enbg
- `translation`: a multilingual `string` variable, with possible languages including `en`, `bg`.
#### encs
- `translation`: a multilingual `string` variable, with possible languages including `en`, `cs`.
#### enda
- `translation`: a multilingual `string` variable, with possible languages including `en`, `da`.
#### ende
- `translation`: a multilingual `string` variable, with possible languages including `en`, `de`.
#### enel
- `translation`: a multilingual `string` variable, with possible languages including `en`, `el`.
### Data Splits
| name | train |
|------|---------:|
| enbg | 1039885 |
| encs | 2981949 |
| enda | 2414895 |
| ende | 16264448 |
| enel | 1985233 |
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[Creative Commons CC0 license ("no rights reserved")](https://creativecommons.org/share-your-work/public-domain/cc0/).
### Citation Information
```
@inproceedings{banon-etal-2020-paracrawl,
title = "{P}ara{C}rawl: Web-Scale Acquisition of Parallel Corpora",
author = "Ba{\~n}{\'o}n, Marta and
Chen, Pinzhen and
Haddow, Barry and
Heafield, Kenneth and
Hoang, Hieu and
Espl{\`a}-Gomis, Miquel and
Forcada, Mikel L. and
Kamran, Amir and
Kirefu, Faheem and
Koehn, Philipp and
Ortiz Rojas, Sergio and
Pla Sempere, Leopoldo and
Ram{\'\i}rez-S{\'a}nchez, Gema and
Sarr{\'\i}as, Elsa and
Strelec, Marek and
Thompson, Brian and
Waites, William and
Wiggins, Dion and
Zaragoza, Jaume",
booktitle = "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics",
month = jul,
year = "2020",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2020.acl-main.417",
doi = "10.18653/v1/2020.acl-main.417",
pages = "4555--4567",
abstract = "We report on methods to create the largest publicly available parallel corpora by crawling the web, using open source software. We empirically compare alternative methods and publish benchmark data sets for sentence alignment and sentence pair filtering. We also describe the parallel corpora released and evaluate their quality and their usefulness to create machine translation systems.",
}
```
### Contributions
Thanks to [@thomwolf](https://github.com/thomwolf), [@lewtun](https://github.com/lewtun), [@patrickvonplaten](https://github.com/patrickvonplaten), [@mariamabarham](https://github.com/mariamabarham) for adding this dataset. | 15,043 | [
[
-0.04705810546875,
-0.036346435546875,
0.011566162109375,
0.016632080078125,
-0.017242431640625,
-0.005939483642578125,
-0.04150390625,
-0.028564453125,
0.05242919921875,
0.0273284912109375,
-0.056610107421875,
-0.06561279296875,
-0.037750244140625,
0.0232086181640625,
-0.0252838134765625,
0.08441162109375,
-0.01178741455078125,
-0.00943756103515625,
-0.016845703125,
-0.021148681640625,
-0.01451873779296875,
-0.0299835205078125,
-0.0281219482421875,
-0.005718231201171875,
0.042205810546875,
0.0411376953125,
0.051055908203125,
0.0882568359375,
0.05010986328125,
0.0186920166015625,
0.004871368408203125,
-0.00594329833984375,
-0.03662109375,
-0.01403045654296875,
0.00746917724609375,
-0.022247314453125,
-0.041717529296875,
0.0034046173095703125,
0.05322265625,
0.0460205078125,
-0.011566162109375,
0.0352783203125,
-0.0006375312805175781,
0.06671142578125,
-0.01947021484375,
0.0362548828125,
-0.015777587890625,
-0.0118255615234375,
-0.043731689453125,
0.006195068359375,
-0.00199127197265625,
-0.0245208740234375,
-0.00611114501953125,
-0.0689697265625,
0.0201873779296875,
0.00902557373046875,
0.07147216796875,
0.0169830322265625,
-0.002307891845703125,
-0.02178955078125,
-0.027008056640625,
0.0506591796875,
-0.04986572265625,
0.0196533203125,
0.046905517578125,
0.0233612060546875,
-0.00746917724609375,
-0.05322265625,
-0.0435791015625,
0.01033782958984375,
-0.01318359375,
0.0191497802734375,
0.007572174072265625,
-0.019195556640625,
0.03875732421875,
0.044830322265625,
-0.062469482421875,
-0.00039577484130859375,
-0.04473876953125,
-0.004119873046875,
0.08056640625,
0.0243682861328125,
0.0244903564453125,
-0.0237579345703125,
-0.00902557373046875,
-0.043701171875,
-0.039764404296875,
0.0006656646728515625,
0.05596923828125,
0.047454833984375,
-0.061767578125,
0.0443115234375,
-0.0171966552734375,
0.046356201171875,
-0.01235198974609375,
0.0036792755126953125,
0.058074951171875,
-0.03802490234375,
-0.0132598876953125,
-0.00742340087890625,
0.07647705078125,
0.039764404296875,
0.00311279296875,
-0.00301361083984375,
0.004100799560546875,
0.00003153085708618164,
-0.00940704345703125,
-0.05078125,
-0.031463623046875,
0.044342041015625,
-0.048095703125,
-0.0187225341796875,
0.00606536865234375,
-0.1007080078125,
-0.0162506103515625,
-0.0258941650390625,
0.0046539306640625,
-0.0257415771484375,
-0.038177490234375,
0.0209808349609375,
-0.0163116455078125,
0.028717041015625,
0.007419586181640625,
-0.03839111328125,
0.0249176025390625,
0.02978515625,
0.05352783203125,
-0.00977325439453125,
-0.0404052734375,
-0.01171112060546875,
-0.00815582275390625,
-0.0007166862487792969,
0.040313720703125,
-0.032501220703125,
-0.0302276611328125,
-0.0037555694580078125,
0.036041259765625,
-0.0146331787109375,
-0.0229644775390625,
0.061279296875,
-0.0083770751953125,
0.032073974609375,
-0.053558349609375,
-0.032073974609375,
-0.0106658935546875,
0.0220489501953125,
-0.06549072265625,
0.09930419921875,
0.0213775634765625,
-0.07208251953125,
0.0185699462890625,
-0.0638427734375,
-0.03173828125,
0.008819580078125,
0.0026607513427734375,
-0.03704833984375,
-0.0302276611328125,
0.020050048828125,
0.0308380126953125,
-0.04486083984375,
0.01837158203125,
-0.028411865234375,
-0.0083160400390625,
-0.00113677978515625,
0.003383636474609375,
0.09613037109375,
0.01291656494140625,
-0.011627197265625,
-0.0018682479858398438,
-0.0780029296875,
-0.00669097900390625,
0.037506103515625,
-0.0308380126953125,
-0.0014171600341796875,
-0.0107269287109375,
0.038909912109375,
0.01788330078125,
0.0286865234375,
-0.041900634765625,
0.02880859375,
-0.01251220703125,
0.0172882080078125,
0.0411376953125,
-0.00992584228515625,
0.022430419921875,
-0.030487060546875,
0.03582763671875,
-0.0007624626159667969,
0.030487060546875,
0.0009450912475585938,
-0.031707763671875,
-0.054901123046875,
-0.01232147216796875,
0.043365478515625,
0.038909912109375,
-0.0506591796875,
0.0601806640625,
-0.049713134765625,
-0.054443359375,
-0.038970947265625,
0.0026874542236328125,
0.022125244140625,
0.0249481201171875,
0.03753662109375,
-0.0272979736328125,
-0.055511474609375,
-0.064697265625,
0.0111083984375,
-0.0044097900390625,
0.005786895751953125,
0.035430908203125,
0.060882568359375,
-0.007144927978515625,
0.050811767578125,
-0.043975830078125,
-0.0224456787109375,
-0.0133514404296875,
-0.01239013671875,
0.022247314453125,
0.045745849609375,
0.057952880859375,
-0.058135986328125,
-0.041961669921875,
-0.0169677734375,
-0.0701904296875,
-0.0018396377563476562,
-0.0032062530517578125,
-0.0205535888671875,
-0.005069732666015625,
0.0195770263671875,
-0.052093505859375,
0.0280609130859375,
0.0386962890625,
-0.0303802490234375,
0.039398193359375,
-0.0051422119140625,
0.005069732666015625,
-0.090087890625,
0.028472900390625,
0.007266998291015625,
0.0016527175903320312,
-0.034149169921875,
0.001605987548828125,
-0.0084381103515625,
-0.0024356842041015625,
-0.0265045166015625,
0.034881591796875,
-0.037139892578125,
-0.000012516975402832031,
0.0170745849609375,
0.0102691650390625,
-0.00913238525390625,
0.046722412109375,
-0.008087158203125,
0.050750732421875,
0.06524658203125,
-0.03802490234375,
0.0302734375,
0.046722412109375,
-0.0174407958984375,
0.02947998046875,
-0.04107666015625,
0.00789642333984375,
-0.01459503173828125,
0.024749755859375,
-0.044708251953125,
-0.0401611328125,
0.039764404296875,
-0.043060302734375,
0.0298309326171875,
-0.0181732177734375,
-0.05523681640625,
-0.0452880859375,
-0.039337158203125,
0.0116119384765625,
0.026702880859375,
-0.0294342041015625,
0.0341796875,
0.045501708984375,
0.005374908447265625,
-0.0268402099609375,
-0.052337646484375,
0.00775909423828125,
-0.01898193359375,
-0.050689697265625,
0.021240234375,
-0.0242919921875,
-0.004756927490234375,
0.0084686279296875,
0.0148468017578125,
0.004718780517578125,
-0.01824951171875,
0.00879669189453125,
0.0100555419921875,
-0.00368499755859375,
-0.009613037109375,
-0.00843048095703125,
0.0024089813232421875,
0.0038299560546875,
-0.01123046875,
0.0430908203125,
-0.01568603515625,
-0.006534576416015625,
-0.0157318115234375,
0.0169219970703125,
0.03955078125,
-0.01267242431640625,
0.054595947265625,
0.054534912109375,
-0.01861572265625,
0.0094451904296875,
-0.020538330078125,
-0.001766204833984375,
-0.03173828125,
0.0067901611328125,
-0.0109405517578125,
-0.035888671875,
0.07110595703125,
0.016693115234375,
0.0099945068359375,
0.062103271484375,
0.036285400390625,
-0.00141143798828125,
0.04290771484375,
0.022064208984375,
-0.0112152099609375,
0.032806396484375,
-0.05975341796875,
-0.024627685546875,
-0.062469482421875,
-0.0311126708984375,
-0.049560546875,
-0.036285400390625,
-0.07427978515625,
-0.032867431640625,
0.00142669677734375,
-0.006649017333984375,
-0.0237274169921875,
0.047149658203125,
-0.046295166015625,
0.02984619140625,
0.041473388671875,
0.017486572265625,
-0.0135955810546875,
0.000308990478515625,
-0.002101898193359375,
0.002468109130859375,
-0.0428466796875,
-0.0177459716796875,
0.10565185546875,
0.022674560546875,
0.0291900634765625,
-0.00033473968505859375,
0.055328369140625,
0.01751708984375,
-0.0122833251953125,
-0.03326416015625,
0.04583740234375,
-0.01451873779296875,
-0.047393798828125,
-0.0279083251953125,
-0.0308837890625,
-0.0760498046875,
-0.007297515869140625,
-0.0092620849609375,
-0.040802001953125,
0.044464111328125,
-0.002399444580078125,
0.006549835205078125,
0.028167724609375,
-0.05169677734375,
0.0667724609375,
-0.016204833984375,
-0.0287628173828125,
0.01076507568359375,
-0.086181640625,
0.0098419189453125,
0.00044155120849609375,
0.0280914306640625,
-0.018402099609375,
0.0103302001953125,
0.092041015625,
-0.05059814453125,
0.058868408203125,
-0.03179931640625,
0.0211029052734375,
0.03240966796875,
-0.0098876953125,
0.038970947265625,
-0.0110626220703125,
-0.01375579833984375,
0.046844482421875,
-0.006359100341796875,
-0.0372314453125,
-0.024200439453125,
0.04473876953125,
-0.055389404296875,
-0.00373077392578125,
-0.034759521484375,
-0.048797607421875,
0.0011453628540039062,
0.033355712890625,
0.0232696533203125,
0.0203094482421875,
0.0007047653198242188,
0.0247039794921875,
0.040069580078125,
-0.03125,
0.0266876220703125,
0.0241241455078125,
-0.0123138427734375,
-0.044921875,
0.07781982421875,
0.01534271240234375,
-0.00742340087890625,
0.0142974853515625,
0.01131439208984375,
-0.0244140625,
-0.03533935546875,
-0.04937744140625,
0.0253448486328125,
-0.039276123046875,
-0.0231170654296875,
-0.044952392578125,
-0.00826263427734375,
-0.032867431640625,
0.004199981689453125,
-0.0223236083984375,
-0.04278564453125,
-0.021484375,
-0.016204833984375,
0.052276611328125,
0.03704833984375,
-0.037445068359375,
0.025604248046875,
-0.0391845703125,
0.009490966796875,
-0.018157958984375,
0.03778076171875,
-0.01078033447265625,
-0.0287017822265625,
-0.03497314453125,
0.011077880859375,
-0.006702423095703125,
-0.04351806640625,
0.034088134765625,
-0.00402069091796875,
0.029632568359375,
-0.0023937225341796875,
0.0084381103515625,
0.039581298828125,
-0.017486572265625,
0.07757568359375,
0.0073699951171875,
-0.035797119140625,
0.03509521484375,
-0.053070068359375,
0.017974853515625,
0.062469482421875,
0.040069580078125,
-0.032257080078125,
-0.00872039794921875,
-0.057281494140625,
-0.07647705078125,
0.0706787109375,
0.03387451171875,
-0.009979248046875,
0.00412750244140625,
0.015899658203125,
0.0031108856201171875,
0.0166778564453125,
-0.0439453125,
-0.05682373046875,
-0.019989013671875,
-0.024993896484375,
-0.0066680908203125,
-0.00556182861328125,
-0.01239013671875,
-0.04071044921875,
0.06378173828125,
0.005176544189453125,
0.033111572265625,
0.01024627685546875,
-0.004947662353515625,
-0.002315521240234375,
-0.00302886962890625,
0.027069091796875,
0.035919189453125,
-0.034393310546875,
-0.0186920166015625,
0.001163482666015625,
-0.057952880859375,
-0.00984954833984375,
0.02923583984375,
-0.0168914794921875,
-0.0051116943359375,
0.023468017578125,
0.055999755859375,
-0.0014066696166992188,
-0.0254058837890625,
0.034454345703125,
-0.00836944580078125,
-0.035980224609375,
-0.0277099609375,
-0.0164337158203125,
0.004730224609375,
-0.0008711814880371094,
0.00643157958984375,
-0.006237030029296875,
0.007843017578125,
-0.015899658203125,
0.0185089111328125,
-0.00316619873046875,
-0.00527191162109375,
-0.0298309326171875,
0.043670654296875,
0.0067596435546875,
-0.010772705078125,
0.06231689453125,
-0.017669677734375,
-0.03680419921875,
0.057830810546875,
0.013458251953125,
0.0584716796875,
-0.00547027587890625,
0.00897216796875,
0.052947998046875,
0.0330810546875,
-0.005840301513671875,
0.039093017578125,
-0.0022678375244140625,
-0.0462646484375,
-0.0137786865234375,
-0.054718017578125,
-0.00975799560546875,
0.024993896484375,
-0.0672607421875,
0.0347900390625,
-0.0214691162109375,
-0.0013713836669921875,
0.004974365234375,
0.0177459716796875,
-0.075927734375,
0.0202484130859375,
-0.005176544189453125,
0.0838623046875,
-0.07916259765625,
0.049560546875,
0.04791259765625,
-0.06689453125,
-0.06591796875,
0.00017440319061279297,
0.004444122314453125,
-0.046539306640625,
0.02392578125,
0.0037860870361328125,
0.03289794921875,
0.0017175674438476562,
-0.05340576171875,
-0.0653076171875,
0.082763671875,
0.025848388671875,
-0.042572021484375,
0.002094268798828125,
0.0239410400390625,
0.047515869140625,
-0.005901336669921875,
0.017547607421875,
0.0545654296875,
0.059661865234375,
0.005245208740234375,
-0.06048583984375,
0.0112152099609375,
-0.038909912109375,
-0.01523590087890625,
0.0181121826171875,
-0.0699462890625,
0.05084228515625,
0.01042938232421875,
-0.00972747802734375,
-0.0208892822265625,
0.031494140625,
0.00545501708984375,
0.01358795166015625,
0.0277099609375,
0.06451416015625,
0.057525634765625,
-0.0202789306640625,
0.09100341796875,
-0.0243988037109375,
0.035980224609375,
0.07757568359375,
-0.0036468505859375,
0.046051025390625,
0.0217437744140625,
-0.043487548828125,
0.032867431640625,
0.062225341796875,
-0.0291900634765625,
0.03369140625,
0.00920867919921875,
0.004421234130859375,
-0.0019054412841796875,
-0.003692626953125,
-0.043243408203125,
0.0267333984375,
0.0265350341796875,
-0.0254058837890625,
-0.0216522216796875,
0.0013675689697265625,
0.01467132568359375,
-0.01369476318359375,
-0.00750732421875,
0.045928955078125,
-0.0076446533203125,
-0.0216217041015625,
0.045135498046875,
-0.010223388671875,
0.040557861328125,
-0.044158935546875,
0.0083465576171875,
-0.0202789306640625,
0.0010061264038085938,
-0.0316162109375,
-0.07818603515625,
0.03350830078125,
-0.006374359130859375,
-0.0275115966796875,
-0.0181732177734375,
0.03546142578125,
-0.0345458984375,
-0.049896240234375,
0.02978515625,
0.02325439453125,
0.042510986328125,
0.0192718505859375,
-0.08441162109375,
0.0311126708984375,
0.0133514404296875,
-0.038543701171875,
0.030914306640625,
0.0205841064453125,
0.00174713134765625,
0.0307769775390625,
0.052215576171875,
0.0105743408203125,
0.007030487060546875,
0.0049896240234375,
0.0736083984375,
-0.04168701171875,
-0.0254974365234375,
-0.0399169921875,
0.05120849609375,
-0.019012451171875,
-0.02508544921875,
0.06353759765625,
0.086669921875,
0.08758544921875,
-0.00846099853515625,
0.0699462890625,
-0.05169677734375,
0.04620361328125,
-0.0248870849609375,
0.049896240234375,
-0.053375244140625,
0.0024471282958984375,
-0.0218505859375,
-0.0582275390625,
-0.029876708984375,
0.0276031494140625,
-0.0208892822265625,
0.00475311279296875,
0.038543701171875,
0.06585693359375,
-0.01116943359375,
0.00872039794921875,
-0.002269744873046875,
0.0191497802734375,
0.01605224609375,
0.036285400390625,
0.01751708984375,
-0.062469482421875,
0.046051025390625,
-0.040191650390625,
-0.004913330078125,
0.007080078125,
-0.0576171875,
-0.06048583984375,
-0.06787109375,
-0.037017822265625,
-0.0484619140625,
-0.0024547576904296875,
0.07403564453125,
0.03515625,
-0.0660400390625,
-0.037628173828125,
-0.016082763671875,
-0.007251739501953125,
-0.0079345703125,
-0.0221710205078125,
0.059295654296875,
0.00821685791015625,
-0.055908203125,
0.0164031982421875,
-0.004871368408203125,
-0.001094818115234375,
-0.00223541259765625,
-0.01364898681640625,
-0.03369140625,
-0.026763916015625,
0.024993896484375,
0.03839111328125,
-0.0203399658203125,
0.0079345703125,
-0.007015228271484375,
0.0096588134765625,
0.0177764892578125,
0.032562255859375,
-0.03436279296875,
0.029693603515625,
0.04278564453125,
0.0274200439453125,
0.061309814453125,
-0.007259368896484375,
0.022430419921875,
-0.053375244140625,
0.01483917236328125,
0.00464630126953125,
0.03033447265625,
0.03387451171875,
-0.0372314453125,
0.06414794921875,
0.03240966796875,
-0.039306640625,
-0.06756591796875,
-0.0144195556640625,
-0.08660888671875,
-0.0015783309936523438,
0.09112548828125,
-0.006320953369140625,
-0.038787841796875,
-0.00487518310546875,
-0.0031566619873046875,
0.0225067138671875,
-0.036651611328125,
0.02728271484375,
0.056396484375,
0.008636474609375,
0.006870269775390625,
-0.044097900390625,
0.038177490234375,
-0.00597381591796875,
-0.07159423828125,
0.0272369384765625,
0.035736083984375,
0.029693603515625,
0.0148468017578125,
0.039947509765625,
-0.0256500244140625,
-0.0032901763916015625,
0.0138092041015625,
0.030029296875,
-0.0194091796875,
-0.0196533203125,
-0.0226593017578125,
-0.01448822021484375,
-0.03375244140625,
-0.023773193359375
]
] |
craigslist_bargains | 2022-11-18T19:47:08.000Z | [
"task_categories:text-generation",
"task_categories:fill-mask",
"task_ids:dialogue-modeling",
"annotations_creators:machine-generated",
"language_creators:crowdsourced",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:en",
"license:unknown",
"arxiv:1808.09637",
"region:us"
] | null | We study negotiation dialogues where two agents, a buyer and a seller,
negotiate over the price of an time for sale. We collected a dataset of more
than 6K negotiation dialogues over multiple categories of products scraped from Craigslist.
Our goal is to develop an agent that negotiates with humans through such conversations.
The challenge is to handle both the negotiation strategy and the rich language for bargaining. | @misc{he2018decoupling,
title={Decoupling Strategy and Generation in Negotiation Dialogues},
author={He He and Derek Chen and Anusha Balakrishnan and Percy Liang},
year={2018},
eprint={1808.09637},
archivePrefix={arXiv},
primaryClass={cs.CL}
} | 9 | 1,065 | 2022-03-02T23:29:22 | ---
annotations_creators:
- machine-generated
language_creators:
- crowdsourced
language:
- en
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- text-generation
- fill-mask
task_ids:
- dialogue-modeling
paperswithcode_id: craigslistbargains
pretty_name: CraigslistBargains
dataset_info:
features:
- name: agent_info
sequence:
- name: Bottomline
dtype: string
- name: Role
dtype: string
- name: Target
dtype: float32
- name: agent_turn
sequence: int32
- name: dialogue_acts
sequence:
- name: intent
dtype: string
- name: price
dtype: float32
- name: utterance
sequence: string
- name: items
sequence:
- name: Category
dtype: string
- name: Images
dtype: string
- name: Price
dtype: float32
- name: Description
dtype: string
- name: Title
dtype: string
splits:
- name: train
num_bytes: 8538836
num_examples: 5247
- name: test
num_bytes: 1353933
num_examples: 838
- name: validation
num_bytes: 966032
num_examples: 597
download_size: 25373618
dataset_size: 10858801
---
# Dataset Card for CraigslistBargains
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [Decoupling Strategy and Generation in Negotiation Dialogues](https://worksheets.codalab.org/worksheets/0x453913e76b65495d8b9730d41c7e0a0c/)
- **Repository:** [Github: Stanford NLP Cocoa](https://github.com/stanfordnlp/cocoa/tree/master)
- **Paper:** [Decoupling Strategy and Generation in Negotiation Dialogues](https://arxiv.org/abs/1808.09637)
- **Leaderboard:** []()
- **Point of Contact:** [He He](hehe@cs.nyu.edu)
### Dataset Summary
We study negotiation dialogues where two agents, a buyer and a seller, negotiate over the price of an time for sale. We collected a dataset of more than 6K negotiation dialogues over multiple categories of products scraped from Craigslist. Our goal is to develop an agent that negotiates with humans through such conversations. The challenge is to handle both the negotiation strategy and the rich language for bargaining. To this end, we develop a modular framework which separates strategy learning from language generation. Specifically, we learn strategies in a coarse dialogue act space and instantiate that into utterances conditioned on dialogue history.
### Supported Tasks and Leaderboards
### Languages
This dataset is English
## Dataset Structure
### Data Instances
```
{
'agent_info': {
'Bottomline':
[
'None',
'None'
],
'Role':
[
'buyer',
'seller'
],
'Target':
[
7.0,
10.0
]
},
'agent_turn':
[
0,
1,
...
],
'dialogue_acts': {
'intent':
[
'init-price',
'unknown',
...
],
'price':
[
5.0,
-1.0,
...
]
},
'items': {
'Category':
[
'phone',
'phone'
],
'Description':
[
'Charge two devices simultaneously on the go...,
...
],
'Images':
[
'phone/6149527852_0.jpg',
'phone/6149527852_0.jpg'
],
'Price':
[
10.0,
10.0
],
'Title':
[
'Verizon Car Charger with Dual Output Micro USB and ...',
...
]
},
'utterance':
[
'Hi, not sure if the charger would work for my car...'
'It will work...',
...
]
}
```
### Data Fields
- `agent_info`: Information about each of the agents taking part in the dialogue
- `Bottomline`: TBD
- `Role`: Whether the agent is buyer or seller
- `Target`: Target price that the buyer/seller wants to hit in the negotiation
- `agent_turn`: Agent taking the current turn in the dialogue (`int` index corresponding to `Role` above)
- `dialogue_acts`: Rules-based information about the strategy of each agent for each turn
- `intent`: The intent of the agent at the particular turn (offer, accept, etc.)
- `price`: The current item price associated with the intent and turn in the bargaining process. Default value for missing: (`-1`)
- `items`: Information about the item the agents are bargaining for. **Note that there is an elembet for each of the fields below for each agent**
- `Category`: Category of the item
- `Description`: Description(s) of the item
- `Images`: (comma delimited) strings of image names of the item
- `Price`: Price(s) of the item. Default value for missing: (`-1`)
- `Title`: Title(s) of the item
- `utterance`: Utterance for each turn in the dialogue, corresponding to the agent in `agent_turns`. The utterance may be an empty string (`''`) for some turns if multiple dialogue acts take place after an utterance (e.g. there are often multiple dialogue acts associated with the closing of the bargaining process after all utterances have completed to describe the conclusion of the bargaining).
### Data Splits
This dataset contains three splits, `train`, `validation` and `test`. Note that `test` is not provided with `dialogue_acts` information as described above. To ensure schema consistency across dataset splits, the `dialogue_acts` field in the `test` split is populated with the default values: `{"price": -1.0, "intent": ""}`
The counts of examples in each split are as follows:
| | Train | Valid | Test |
| Input Examples | 5247 | 597 | 838 |
| Average Dialogue Length | 9.14 | 9.17 | 9.24 |
Note that
## Dataset Creation
From the [source paper](https://arxiv.org/pdf/1808.09637.pdf) for this dataset:
> To generate the negotiation scenarios, we
> scraped postings on sfbay.craigslist.org
> from the 6 most popular categories (housing, furniture, cars, bikes, phones, and electronics). Each
> posting produces three scenarios with the buyer’s
> target prices at 0.5x, 0.7x and 0.9x of the listing
> price. Statistics of the scenarios are shown in Table 2.
> We collected 6682 human-human dialogues on
> AMT using the interface shown in Appendix A
> Figure 2. The dataset statistics in Table 3 show
> that CRAIGSLISTBARGAIN has longer dialogues
> and more diverse utterances compared to prior
> datasets. Furthermore, workers were encouraged
> to embellish the item and negotiate side offers
> such as free delivery or pick-up. This highly relatable scenario leads to richer dialogues such as
> the one shown in Table 1. We also observed various persuasion techniques listed in Table 4 such as
> embellishment,
### Curation Rationale
See **Dataset Creation**
### Source Data
See **Dataset Creation**
#### Initial Data Collection and Normalization
See **Dataset Creation**
#### Who are the source language producers?
See **Dataset Creation**
### Annotations
If the dataset contains annotations which are not part of the initial data collection, describe them in the following paragraphs.
#### Annotation process
Annotations for the `dialogue_acts` in `train` and `test` were generated via a rules-based system which can be found in [this script](https://github.com/stanfordnlp/cocoa/blob/master/craigslistbargain/parse_dialogue.py)
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
[More Information Needed]
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
[More Information Needed]
### Dataset Curators
He He and Derek Chen and Anusha Balakrishnan and Percy Liang
Computer Science Department, Stanford University
`{hehe,derekchen14,anusha,pliang}@cs.stanford.edu`
The work through which this data was produced was supported by
DARPA Communicating with Computers (CwC)
program under ARO prime contract no. W911NF15-1-0462
### Licensing Information
[More Information Needed]
### Citation Information
```
@misc{he2018decoupling,
title={Decoupling Strategy and Generation in Negotiation Dialogues},
author={He He and Derek Chen and Anusha Balakrishnan and Percy Liang},
year={2018},
eprint={1808.09637},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
```
### Contributions
Thanks to [@ZacharySBrown](https://github.com/ZacharySBrown) for adding this dataset. | 9,524 | [
[
-0.035888671875,
-0.051727294921875,
0.01160430908203125,
0.006107330322265625,
-0.0235137939453125,
0.0017557144165039062,
-0.0260772705078125,
-0.0216827392578125,
0.0252838134765625,
0.04302978515625,
-0.05523681640625,
-0.0604248046875,
-0.0214080810546875,
-0.001972198486328125,
0.0036334991455078125,
0.08160400390625,
0.0251922607421875,
-0.0179443359375,
-0.00482940673828125,
-0.0211029052734375,
-0.028106689453125,
-0.03662109375,
-0.066650390625,
-0.01300811767578125,
0.01045989990234375,
0.0265655517578125,
0.0645751953125,
0.038177490234375,
0.01064300537109375,
0.0325927734375,
-0.01190948486328125,
0.00733184814453125,
-0.031951904296875,
0.0182647705078125,
-0.017333984375,
-0.0218963623046875,
-0.04681396484375,
0.006336212158203125,
0.0216827392578125,
0.035064697265625,
-0.036163330078125,
0.0208282470703125,
-0.00540924072265625,
0.0428466796875,
-0.03204345703125,
0.05401611328125,
-0.05767822265625,
-0.005817413330078125,
-0.002826690673828125,
-0.0116424560546875,
-0.031768798828125,
-0.00919342041015625,
0.00881195068359375,
-0.061187744140625,
0.0188446044921875,
-0.0032749176025390625,
0.09332275390625,
0.0010576248168945312,
-0.0361328125,
-0.034515380859375,
-0.02972412109375,
0.053863525390625,
-0.0694580078125,
0.00385284423828125,
0.045867919921875,
0.01345062255859375,
-0.0225677490234375,
-0.061370849609375,
-0.038055419921875,
-0.00408935546875,
-0.0321044921875,
0.0313720703125,
-0.0305938720703125,
0.0109405517578125,
0.037445068359375,
0.02490234375,
-0.0321044921875,
-0.017608642578125,
-0.04351806640625,
-0.01273345947265625,
0.0728759765625,
0.031005859375,
0.01114654541015625,
-0.052978515625,
-0.0202789306640625,
-0.021026611328125,
-0.018310546875,
0.02667236328125,
0.033905029296875,
0.040924072265625,
-0.02691650390625,
0.04095458984375,
-0.02777099609375,
0.04736328125,
0.00902557373046875,
-0.015350341796875,
0.0286102294921875,
-0.061065673828125,
-0.0130157470703125,
0.0025081634521484375,
0.08349609375,
0.054107666015625,
-0.00995635986328125,
0.0150909423828125,
-0.006580352783203125,
-0.0108642578125,
0.0191192626953125,
-0.044891357421875,
-0.02056884765625,
0.01934814453125,
-0.051422119140625,
-0.030364990234375,
-0.0074310302734375,
-0.0672607421875,
-0.004665374755859375,
-0.004756927490234375,
0.015350341796875,
-0.01323699951171875,
-0.0180816650390625,
0.0137176513671875,
-0.0212554931640625,
0.035186767578125,
0.00909423828125,
-0.0533447265625,
0.05029296875,
0.0300140380859375,
0.06646728515625,
0.0213165283203125,
-0.0082855224609375,
-0.0272064208984375,
0.00653076171875,
-0.0182037353515625,
0.049774169921875,
-0.0214080810546875,
-0.0266265869140625,
0.0006008148193359375,
0.0146484375,
-0.00830078125,
-0.032073974609375,
0.04949951171875,
-0.03192138671875,
0.036468505859375,
-0.02374267578125,
-0.0174407958984375,
-0.025848388671875,
0.04205322265625,
-0.069091796875,
0.07470703125,
0.007598876953125,
-0.0460205078125,
0.0186767578125,
-0.059112548828125,
-0.0423583984375,
0.00988006591796875,
-0.0077972412109375,
-0.03717041015625,
-0.0204315185546875,
0.012359619140625,
0.0389404296875,
-0.04412841796875,
0.023773193359375,
-0.0031833648681640625,
-0.0170135498046875,
0.034820556640625,
-0.0287628173828125,
0.07757568359375,
0.025115966796875,
-0.03363037109375,
-0.005504608154296875,
-0.04638671875,
-0.016632080078125,
0.0279541015625,
-0.036773681640625,
-0.00029659271240234375,
0.00943756103515625,
-0.00787353515625,
0.0305938720703125,
0.0162506103515625,
-0.0255584716796875,
0.0190887451171875,
-0.0452880859375,
0.0419921875,
0.0457763671875,
0.01561737060546875,
0.02752685546875,
-0.045684814453125,
0.04681396484375,
0.01142120361328125,
0.019805908203125,
-0.001964569091796875,
-0.042236328125,
-0.0673828125,
-0.0029697418212890625,
0.01378631591796875,
0.03961181640625,
-0.06500244140625,
0.046234130859375,
-0.01076507568359375,
-0.031707763671875,
-0.0447998046875,
-0.00225830078125,
0.035308837890625,
0.018218994140625,
0.0190887451171875,
-0.031524658203125,
-0.042022705078125,
-0.06591796875,
0.0010614395141601562,
-0.0251312255859375,
0.014495849609375,
0.035491943359375,
0.01605224609375,
-0.0023593902587890625,
0.06329345703125,
-0.0499267578125,
-0.0291290283203125,
-0.050537109375,
0.0139007568359375,
0.0273590087890625,
0.032501220703125,
0.03314208984375,
-0.053375244140625,
-0.03765869140625,
-0.00421142578125,
-0.039764404296875,
0.0124053955078125,
-0.036468505859375,
-0.018463134765625,
0.0341796875,
0.032958984375,
-0.05328369140625,
0.048004150390625,
0.0280303955078125,
-0.019805908203125,
0.03948974609375,
-0.0191802978515625,
0.01116180419921875,
-0.11126708984375,
-0.00537109375,
0.02227783203125,
-0.0098419189453125,
-0.049072265625,
-0.031158447265625,
-0.0372314453125,
-0.00037479400634765625,
-0.028656005859375,
0.025146484375,
-0.032684326171875,
-0.002948760986328125,
0.00713348388671875,
0.0225830078125,
0.01195526123046875,
0.0733642578125,
0.0125579833984375,
0.051727294921875,
0.030029296875,
-0.0518798828125,
0.0278778076171875,
0.0457763671875,
-0.032135009765625,
0.0328369140625,
-0.055908203125,
0.0006742477416992188,
-0.0006399154663085938,
0.035797119140625,
-0.07867431640625,
-0.00751495361328125,
0.06201171875,
-0.035125732421875,
0.002246856689453125,
-0.0313720703125,
-0.0299072265625,
-0.01445770263671875,
-0.03216552734375,
0.0213470458984375,
0.025482177734375,
-0.0167236328125,
0.05108642578125,
0.031951904296875,
-0.0237274169921875,
-0.052490234375,
-0.03253173828125,
0.01401519775390625,
-0.0162200927734375,
-0.04815673828125,
0.0220184326171875,
-0.01099395751953125,
-0.017578125,
-0.00533294677734375,
0.0137481689453125,
0.0027980804443359375,
0.00666046142578125,
0.0109405517578125,
0.021881103515625,
0.00408172607421875,
0.006801605224609375,
0.007526397705078125,
-0.02166748046875,
0.0149383544921875,
0.0009641647338867188,
0.061553955078125,
-0.012115478515625,
-0.000873565673828125,
-0.038482666015625,
0.0220947265625,
0.0220794677734375,
-0.01399993896484375,
0.0633544921875,
0.030426025390625,
-0.01232147216796875,
-0.0022830963134765625,
-0.03369140625,
-0.0041046142578125,
-0.037994384765625,
0.0269317626953125,
-0.03057861328125,
-0.0272064208984375,
0.058258056640625,
0.005458831787109375,
0.01189422607421875,
0.0419921875,
0.052093505859375,
0.0036563873291015625,
0.08160400390625,
0.01468658447265625,
0.0012578964233398438,
0.041351318359375,
-0.04803466796875,
0.017364501953125,
-0.05853271484375,
-0.03717041015625,
-0.037506103515625,
-0.02850341796875,
-0.0589599609375,
-0.034759521484375,
0.0031909942626953125,
-0.00628662109375,
-0.0158538818359375,
0.043914794921875,
-0.0379638671875,
0.0325927734375,
0.051055908203125,
0.0102691650390625,
0.0177001953125,
-0.00710296630859375,
-0.00470733642578125,
-0.0021114349365234375,
-0.06488037109375,
-0.03924560546875,
0.069580078125,
0.01302337646484375,
0.04095458984375,
0.01416778564453125,
0.0447998046875,
0.0245361328125,
-0.00690460205078125,
-0.068359375,
0.06622314453125,
0.00760650634765625,
-0.047882080078125,
-0.0238494873046875,
-0.048065185546875,
-0.0994873046875,
0.030029296875,
-0.0162506103515625,
-0.055206298828125,
0.036468505859375,
-0.01000213623046875,
-0.0131988525390625,
0.00872802734375,
-0.03387451171875,
0.08013916015625,
-0.0284881591796875,
-0.0237884521484375,
-0.0200347900390625,
-0.07232666015625,
0.011077880859375,
0.0240020751953125,
0.0287322998046875,
-0.01525115966796875,
0.01409912109375,
0.0831298828125,
-0.032196044921875,
0.0784912109375,
-0.004940032958984375,
0.006702423095703125,
0.0204620361328125,
0.004825592041015625,
0.042236328125,
0.0012378692626953125,
-0.003314971923828125,
-0.0010967254638671875,
0.006885528564453125,
-0.031707763671875,
-0.04541015625,
0.0226593017578125,
-0.050750732421875,
-0.033477783203125,
-0.040130615234375,
-0.04443359375,
0.0032291412353515625,
0.0155181884765625,
0.0246734619140625,
0.0399169921875,
-0.0214080810546875,
0.015655517578125,
0.020782470703125,
-0.02996826171875,
0.01409149169921875,
0.03192138671875,
0.007476806640625,
-0.052001953125,
0.07080078125,
-0.0021419525146484375,
0.0307769775390625,
0.007808685302734375,
0.01059722900390625,
-0.028564453125,
-0.0230865478515625,
-0.004558563232421875,
0.031829833984375,
-0.07049560546875,
-0.0226593017578125,
-0.03936767578125,
-0.01497650146484375,
-0.039764404296875,
-0.01010894775390625,
-0.017181396484375,
-0.039764404296875,
-0.0249176025390625,
-0.030029296875,
0.021728515625,
0.0491943359375,
-0.0173492431640625,
0.0277252197265625,
-0.043182373046875,
0.01641845703125,
0.0175323486328125,
0.0101165771484375,
0.005695343017578125,
-0.0263519287109375,
-0.035430908203125,
0.0333251953125,
-0.033966064453125,
-0.04913330078125,
0.041717529296875,
0.005096435546875,
0.05316162109375,
0.0335693359375,
0.04144287109375,
0.047454833984375,
0.0068206787109375,
0.08978271484375,
0.01824951171875,
-0.0667724609375,
0.04473876953125,
-0.0233306884765625,
0.00394439697265625,
0.056060791015625,
0.02447509765625,
-0.05255126953125,
-0.0230865478515625,
-0.0775146484375,
-0.08673095703125,
0.0943603515625,
0.0279541015625,
0.0090484619140625,
-0.0183868408203125,
0.00943756103515625,
-0.0155181884765625,
0.034942626953125,
-0.06744384765625,
-0.036163330078125,
-0.0207977294921875,
-0.01328277587890625,
-0.007080078125,
-0.0172576904296875,
-0.0379638671875,
-0.030426025390625,
0.061492919921875,
-0.00867462158203125,
0.0209197998046875,
-0.005611419677734375,
-0.0141754150390625,
0.0083465576171875,
0.022796630859375,
0.042266845703125,
0.03289794921875,
-0.02471923828125,
-0.009674072265625,
0.00482940673828125,
-0.0175933837890625,
0.00846099853515625,
0.006626129150390625,
0.005283355712890625,
-0.00411224365234375,
0.028289794921875,
0.07269287109375,
0.017822265625,
-0.053802490234375,
0.046295166015625,
-0.0283660888671875,
-0.048370361328125,
-0.0273590087890625,
-0.00330352783203125,
-0.004611968994140625,
0.03948974609375,
0.006053924560546875,
-0.00970458984375,
0.02020263671875,
-0.05499267578125,
0.0027408599853515625,
0.0288848876953125,
-0.01824951171875,
-0.01378631591796875,
0.0273590087890625,
0.0202789306640625,
-0.03466796875,
0.06060791015625,
-0.0288848876953125,
-0.0479736328125,
0.042694091796875,
0.0199127197265625,
0.0665283203125,
0.01546478271484375,
0.049072265625,
0.034271240234375,
0.0316162109375,
-0.004543304443359375,
0.01070404052734375,
-0.03192138671875,
-0.0657958984375,
-0.01806640625,
-0.0249176025390625,
-0.0250396728515625,
0.006046295166015625,
-0.07476806640625,
0.01090240478515625,
-0.02276611328125,
-0.020843505859375,
-0.010162353515625,
0.0296173095703125,
-0.054718017578125,
-0.002536773681640625,
-0.00978851318359375,
0.054962158203125,
-0.052734375,
0.043701171875,
0.043670654296875,
-0.06439208984375,
-0.063232421875,
-0.0059661865234375,
-0.002468109130859375,
-0.039093017578125,
0.036468505859375,
0.00214385986328125,
0.0095367431640625,
-0.01561737060546875,
-0.050140380859375,
-0.042999267578125,
0.09588623046875,
0.027313232421875,
-0.0206756591796875,
-0.0018482208251953125,
0.01529693603515625,
0.0361328125,
-0.032440185546875,
0.0273895263671875,
0.06341552734375,
0.03619384765625,
0.0268707275390625,
-0.056732177734375,
0.021728515625,
-0.038543701171875,
-0.00836944580078125,
0.0054779052734375,
-0.0604248046875,
0.055999755859375,
0.00555419921875,
-0.0256805419921875,
0.01123809814453125,
0.020538330078125,
0.0148162841796875,
0.0279693603515625,
0.04241943359375,
0.045928955078125,
0.05267333984375,
-0.01264190673828125,
0.07208251953125,
-0.01739501953125,
0.039306640625,
0.07672119140625,
-0.01332855224609375,
0.052825927734375,
-0.0000966787338256836,
-0.0130767822265625,
0.05096435546875,
0.043365478515625,
-0.00013840198516845703,
0.036376953125,
0.0107421875,
-0.004955291748046875,
-0.02496337890625,
-0.002777099609375,
-0.01507568359375,
0.03472900390625,
0.039825439453125,
-0.022705078125,
-0.01209259033203125,
-0.009979248046875,
0.01412200927734375,
-0.0170440673828125,
0.006687164306640625,
0.10186767578125,
-0.005619049072265625,
-0.041229248046875,
0.052398681640625,
-0.0081024169921875,
0.035430908203125,
-0.0552978515625,
-0.00662994384765625,
-0.0193939208984375,
0.006671905517578125,
-0.01192474365234375,
-0.057342529296875,
0.005794525146484375,
-0.032684326171875,
-0.0126495361328125,
-0.01100921630859375,
0.043121337890625,
-0.0474853515625,
-0.0269622802734375,
0.0244903564453125,
0.0167388916015625,
0.021270751953125,
0.016571044921875,
-0.083984375,
0.0163421630859375,
0.016693115234375,
-0.0248260498046875,
0.0278167724609375,
0.0333251953125,
0.01177215576171875,
0.045074462890625,
0.051177978515625,
0.002735137939453125,
-0.020111083984375,
0.0018815994262695312,
0.080810546875,
-0.06488037109375,
-0.034942626953125,
-0.0367431640625,
0.05828857421875,
-0.038299560546875,
-0.0192413330078125,
0.053253173828125,
0.041900634765625,
0.068115234375,
0.024017333984375,
0.054473876953125,
-0.00836944580078125,
0.0218353271484375,
-0.038665771484375,
0.04278564453125,
-0.036529541015625,
0.03466796875,
-0.029937744140625,
-0.0648193359375,
-0.00177001953125,
0.06903076171875,
-0.022735595703125,
0.002033233642578125,
0.042816162109375,
0.07354736328125,
0.01441192626953125,
0.0016450881958007812,
0.004085540771484375,
0.0245513916015625,
0.03936767578125,
0.0307464599609375,
0.052337646484375,
-0.050201416015625,
0.06561279296875,
-0.031890869140625,
-0.00713348388671875,
-0.01849365234375,
-0.049957275390625,
-0.066650390625,
-0.063720703125,
-0.03924560546875,
-0.050689697265625,
-0.0031833648681640625,
0.08367919921875,
0.04254150390625,
-0.03741455078125,
-0.061370849609375,
0.01483154296875,
0.01433563232421875,
-0.042816162109375,
-0.0220947265625,
0.0184783935546875,
-0.0244140625,
-0.040924072265625,
0.0207977294921875,
0.007495880126953125,
-0.00537872314453125,
-0.004119873046875,
-0.0260162353515625,
-0.04107666015625,
0.0188751220703125,
0.045257568359375,
0.0231781005859375,
-0.044921875,
0.004489898681640625,
-0.022216796875,
0.004718780517578125,
0.01378631591796875,
0.057830810546875,
-0.051849365234375,
0.042205810546875,
0.0237884521484375,
0.01043701171875,
0.05926513671875,
0.0175323486328125,
0.04998779296875,
-0.05902099609375,
0.0223388671875,
0.01226806640625,
0.022369384765625,
0.016143798828125,
-0.0261688232421875,
0.0367431640625,
0.0095977783203125,
-0.0386962890625,
-0.054718017578125,
0.00615692138671875,
-0.0931396484375,
-0.0238189697265625,
0.0828857421875,
0.0000623464584350586,
-0.013336181640625,
-0.029144287109375,
-0.0379638671875,
0.01186370849609375,
-0.065185546875,
0.047027587890625,
0.057647705078125,
0.00818634033203125,
-0.024169921875,
-0.021484375,
0.041046142578125,
0.00502777099609375,
-0.053466796875,
0.012359619140625,
0.043914794921875,
-0.004306793212890625,
0.015777587890625,
0.0693359375,
0.00963592529296875,
0.0158538818359375,
-0.00525665283203125,
-0.0028934478759765625,
0.006511688232421875,
-0.0054168701171875,
-0.01340484619140625,
0.004734039306640625,
-0.00006073713302612305,
-0.0230865478515625
]
] |
ccdv/govreport-summarization | 2022-10-24T20:32:47.000Z | [
"task_categories:summarization",
"task_categories:text-generation",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"language:en",
"conditional-text-generation",
"arxiv:2104.02112",
"region:us"
] | ccdv | GovReport dataset for summarization.
From paper: Efficient Attentions for Long Document Summarization" by L. Huang et al.
See: https://arxiv.org/pdf/2104.02112.pdf
See: https://github.com/luyang-huang96/LongDocSum | @misc{huang2021efficient,
title={Efficient Attentions for Long Document Summarization},
author={Luyang Huang and Shuyang Cao and Nikolaus Parulian and Heng Ji and Lu Wang},
year={2021},
eprint={2104.02112},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
} | 15 | 1,065 | 2022-03-02T23:29:22 | ---
language:
- en
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
task_categories:
- summarization
- text-generation
task_ids: []
tags:
- conditional-text-generation
---
# GovReport dataset for summarization
Dataset for summarization of long documents.\
Adapted from this [repo](https://github.com/luyang-huang96/LongDocSum) and this [paper](https://arxiv.org/pdf/2104.02112.pdf)\
This dataset is compatible with the [`run_summarization.py`](https://github.com/huggingface/transformers/tree/master/examples/pytorch/summarization) script from Transformers if you add this line to the `summarization_name_mapping` variable:
```python
"ccdv/govreport-summarization": ("report", "summary")
```
### Data Fields
- `id`: paper id
- `report`: a string containing the body of the report
- `summary`: a string containing the summary of the report
### Data Splits
This dataset has 3 splits: _train_, _validation_, and _test_. \
Token counts with a RoBERTa tokenizer.
| Dataset Split | Number of Instances | Avg. tokens |
| ------------- | --------------------|:----------------------|
| Train | 17,517 | < 9,000 / < 500 |
| Validation | 973 | < 9,000 / < 500 |
| Test | 973 | < 9,000 / < 500 |
# Cite original article
```
@misc{huang2021efficient,
title={Efficient Attentions for Long Document Summarization},
author={Luyang Huang and Shuyang Cao and Nikolaus Parulian and Heng Ji and Lu Wang},
year={2021},
eprint={2104.02112},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
```
| 1,626 | [
[
-0.01995849609375,
-0.02459716796875,
0.017608642578125,
0.0259857177734375,
-0.01467132568359375,
-0.00811767578125,
-0.03857421875,
0.0007033348083496094,
0.0186920166015625,
0.033782958984375,
-0.0253753662109375,
-0.04705810546875,
-0.045501708984375,
0.016082763671875,
-0.034332275390625,
0.11376953125,
0.002838134765625,
-0.032958984375,
-0.0155487060546875,
-0.0166473388671875,
0.0029697418212890625,
-0.01491546630859375,
-0.025054931640625,
-0.019317626953125,
0.0570068359375,
0.03729248046875,
0.031951904296875,
0.043731689453125,
0.065673828125,
0.021270751953125,
-0.0026760101318359375,
0.00820159912109375,
-0.027679443359375,
-0.008575439453125,
-0.0034027099609375,
-0.0178375244140625,
-0.0576171875,
0.01239013671875,
0.06402587890625,
0.02972412109375,
-0.01654052734375,
0.032196044921875,
0.00876617431640625,
0.0516357421875,
-0.041259765625,
0.032135009765625,
-0.0120391845703125,
-0.01485443115234375,
-0.0114898681640625,
-0.0175018310546875,
-0.0093841552734375,
-0.026214599609375,
0.0185394287109375,
-0.0411376953125,
0.042816162109375,
-0.010467529296875,
0.09478759765625,
0.0159454345703125,
-0.038116455078125,
0.0004711151123046875,
-0.0148468017578125,
0.06005859375,
-0.06878662109375,
-0.0125885009765625,
0.0282440185546875,
0.02349853515625,
-0.007175445556640625,
-0.076171875,
-0.0253448486328125,
0.0054168701171875,
-0.04046630859375,
0.034515380859375,
-0.006900787353515625,
0.01403045654296875,
0.041839599609375,
0.049163818359375,
-0.058990478515625,
-0.01152801513671875,
-0.05206298828125,
-0.020538330078125,
0.03863525390625,
0.0258026123046875,
-0.01200103759765625,
-0.034149169921875,
-0.0173492431640625,
-0.015167236328125,
-0.00963592529296875,
0.01155853271484375,
0.0308685302734375,
0.0247650146484375,
-0.046905517578125,
0.03656005859375,
-0.0322265625,
0.05712890625,
0.00021207332611083984,
-0.01995849609375,
0.0498046875,
-0.031280517578125,
-0.0237274169921875,
0.0010585784912109375,
0.0731201171875,
0.046844482421875,
0.02606201171875,
0.0074615478515625,
-0.00023090839385986328,
-0.0232391357421875,
0.01215362548828125,
-0.0802001953125,
-0.02349853515625,
0.036468505859375,
-0.033294677734375,
-0.0311279296875,
0.043060302734375,
-0.073486328125,
-0.01702880859375,
-0.02581787109375,
0.0020618438720703125,
-0.00614166259765625,
-0.019378662109375,
-0.0142364501953125,
-0.02435302734375,
0.033782958984375,
0.0164337158203125,
-0.0789794921875,
0.0227508544921875,
0.051239013671875,
0.0684814453125,
-0.0150604248046875,
-0.04541015625,
-0.039703369140625,
0.0030994415283203125,
0.0032024383544921875,
0.06158447265625,
-0.005634307861328125,
-0.002521514892578125,
-0.006908416748046875,
0.03192138671875,
-0.01473236083984375,
-0.028350830078125,
0.035888671875,
-0.0084686279296875,
0.03173828125,
0.00428009033203125,
-0.009124755859375,
-0.0257568359375,
0.0263214111328125,
-0.04888916015625,
0.07611083984375,
0.046356201171875,
-0.0760498046875,
0.02520751953125,
-0.051483154296875,
-0.04730224609375,
-0.0170440673828125,
-0.0028820037841796875,
-0.064453125,
-0.01270294189453125,
0.032745361328125,
0.0380859375,
-0.0169677734375,
0.018890380859375,
-0.0052490234375,
-0.020416259765625,
-0.0079193115234375,
-0.00907135009765625,
0.0626220703125,
0.014373779296875,
-0.00940704345703125,
0.0367431640625,
-0.060943603515625,
-0.0026683807373046875,
0.00012433528900146484,
-0.040863037109375,
0.0016956329345703125,
-0.0184478759765625,
0.024688720703125,
-0.01316070556640625,
0.0257720947265625,
-0.025604248046875,
0.02301025390625,
-0.03826904296875,
0.025970458984375,
0.050323486328125,
-0.0011396408081054688,
0.019073486328125,
-0.021392822265625,
0.038604736328125,
0.0024700164794921875,
-0.00022840499877929688,
-0.029754638671875,
-0.0184326171875,
-0.056427001953125,
-0.031524658203125,
0.0303802490234375,
0.04254150390625,
-0.0193023681640625,
0.072998046875,
-0.0482177734375,
-0.0389404296875,
-0.006557464599609375,
-0.0175323486328125,
-0.0012111663818359375,
0.0523681640625,
0.0248870849609375,
0.005443572998046875,
-0.048614501953125,
-0.068115234375,
-0.016021728515625,
0.004886627197265625,
-0.01385498046875,
0.009490966796875,
0.06512451171875,
0.0006275177001953125,
0.0802001953125,
-0.05572509765625,
-0.038787841796875,
-0.0303802490234375,
0.01190185546875,
0.0699462890625,
0.024566650390625,
0.047149658203125,
-0.04412841796875,
-0.0450439453125,
-0.005733489990234375,
-0.04595947265625,
0.00635528564453125,
-0.0205841064453125,
0.0020046234130859375,
0.01114654541015625,
0.0140838623046875,
-0.044708251953125,
0.045501708984375,
0.031463623046875,
-0.040802001953125,
0.041595458984375,
-0.027374267578125,
0.0227508544921875,
-0.10711669921875,
0.0391845703125,
-0.0059967041015625,
-0.024871826171875,
-0.0238494873046875,
-0.0011692047119140625,
0.0209808349609375,
0.00705718994140625,
-0.0247955322265625,
0.0262298583984375,
-0.039947509765625,
-0.0002467632293701172,
-0.0203094482421875,
0.001556396484375,
-0.00946807861328125,
0.040985107421875,
-0.012451171875,
0.049102783203125,
0.055419921875,
-0.045562744140625,
0.07659912109375,
0.0240936279296875,
-0.03759765625,
0.0318603515625,
-0.0550537109375,
-0.01654052734375,
-0.01139068603515625,
0.04486083984375,
-0.053314208984375,
-0.040557861328125,
0.034942626953125,
-0.038787841796875,
0.011993408203125,
-0.0175933837890625,
-0.034576416015625,
-0.0310211181640625,
-0.033416748046875,
0.02056884765625,
0.0202789306640625,
-0.027984619140625,
0.039764404296875,
0.0098114013671875,
-0.012359619140625,
-0.049346923828125,
-0.0682373046875,
0.0087127685546875,
-0.033935546875,
-0.042724609375,
0.01461029052734375,
0.006092071533203125,
0.00501251220703125,
-0.00395965576171875,
-0.01129150390625,
0.002803802490234375,
-0.00373077392578125,
0.00908660888671875,
0.007045745849609375,
-0.00594329833984375,
-0.0075836181640625,
-0.014312744140625,
-0.033203125,
0.0006117820739746094,
0.0014486312866210938,
0.036865234375,
-0.01314544677734375,
0.0069580078125,
-0.0204620361328125,
0.0192413330078125,
0.043182373046875,
-0.027984619140625,
0.03997802734375,
0.04266357421875,
-0.018524169921875,
0.004669189453125,
-0.0095367431640625,
0.0031375885009765625,
-0.0284423828125,
0.037841796875,
-0.01467132568359375,
-0.03399658203125,
0.057037353515625,
0.01285552978515625,
0.010040283203125,
0.07147216796875,
0.034027099609375,
0.01250457763671875,
0.031280517578125,
0.035858154296875,
-0.0294189453125,
0.03436279296875,
-0.044586181640625,
-0.0022449493408203125,
-0.0699462890625,
-0.007587432861328125,
-0.03875732421875,
-0.01328277587890625,
-0.04791259765625,
-0.003997802734375,
0.0244293212890625,
-0.0260009765625,
-0.018798828125,
0.032958984375,
-0.057830810546875,
0.041900634765625,
0.045654296875,
0.003704071044921875,
0.008392333984375,
0.0181732177734375,
0.0272979736328125,
0.0276031494140625,
-0.0296478271484375,
-0.00970458984375,
0.09259033203125,
0.0095977783203125,
0.062225341796875,
0.0035552978515625,
0.054443359375,
0.01378631591796875,
-0.0035552978515625,
-0.06298828125,
0.0308990478515625,
-0.004787445068359375,
-0.040924072265625,
-0.0361328125,
-0.043487548828125,
-0.09039306640625,
0.00982666015625,
0.0157318115234375,
-0.0572509765625,
0.00922393798828125,
-0.0194091796875,
-0.03533935546875,
0.0123138427734375,
-0.03924560546875,
0.07037353515625,
0.0029850006103515625,
0.005069732666015625,
-0.0203094482421875,
-0.06036376953125,
0.019134521484375,
0.0075531005859375,
-0.0092620849609375,
-0.0000054836273193359375,
0.0038852691650390625,
0.07696533203125,
-0.031463623046875,
0.042236328125,
-0.00788116455078125,
0.0006866455078125,
0.0220184326171875,
-0.044586181640625,
0.049285888671875,
0.016357421875,
0.00567626953125,
0.005863189697265625,
-0.004024505615234375,
-0.027496337890625,
-0.03717041015625,
0.05401611328125,
-0.047515869140625,
-0.0243988037109375,
-0.0858154296875,
-0.0518798828125,
0.032989501953125,
0.037261962890625,
0.0239410400390625,
0.0447998046875,
0.0010662078857421875,
0.03338623046875,
0.0227813720703125,
-0.0044708251953125,
0.047698974609375,
0.0296173095703125,
-0.00437164306640625,
-0.0594482421875,
0.061126708984375,
0.01531219482421875,
-0.00473785400390625,
0.0240936279296875,
0.022918701171875,
-0.01554107666015625,
-0.0238494873046875,
-0.01020050048828125,
0.0211181640625,
-0.047027587890625,
-0.0247955322265625,
-0.03765869140625,
-0.036102294921875,
-0.056549072265625,
0.01490020751953125,
-0.00661468505859375,
-0.0360107421875,
-0.0308990478515625,
-0.01428985595703125,
0.047607421875,
0.02435302734375,
-0.01381683349609375,
0.026702880859375,
-0.0491943359375,
0.0615234375,
0.009857177734375,
0.042724609375,
-0.0127105712890625,
-0.05096435546875,
-0.041839599609375,
-0.003787994384765625,
-0.0313720703125,
-0.041595458984375,
0.0225677490234375,
0.0199737548828125,
0.0447998046875,
0.032928466796875,
0.0141143798828125,
0.0479736328125,
-0.005001068115234375,
0.0614013671875,
0.00439453125,
-0.040618896484375,
0.045684814453125,
-0.05242919921875,
0.035919189453125,
0.036041259765625,
-0.0021457672119140625,
-0.04339599609375,
-0.0252838134765625,
-0.057830810546875,
-0.0845947265625,
0.0946044921875,
0.0238037109375,
-0.0151519775390625,
0.0185546875,
0.0006728172302246094,
-0.0008745193481445312,
0.00952911376953125,
-0.039398193359375,
-0.04388427734375,
-0.03216552734375,
-0.02734375,
-0.01666259765625,
-0.013702392578125,
-0.031036376953125,
-0.0301055908203125,
0.058563232421875,
-0.01297760009765625,
0.0205841064453125,
0.024932861328125,
-0.0088653564453125,
0.01006317138671875,
0.01308441162109375,
0.059356689453125,
0.069580078125,
-0.04296875,
0.0046234130859375,
-0.0026721954345703125,
-0.056121826171875,
-0.0140838623046875,
0.0298004150390625,
0.0028438568115234375,
-0.00601959228515625,
0.038360595703125,
0.05047607421875,
-0.0162353515625,
-0.00800323486328125,
0.040008544921875,
0.005115509033203125,
-0.0255889892578125,
-0.0406494140625,
-0.005939483642578125,
-0.006664276123046875,
0.006008148193359375,
0.04058837890625,
0.00457000732421875,
0.00902557373046875,
-0.0225677490234375,
0.0182342529296875,
-0.00022459030151367188,
-0.00460052490234375,
0.0001323223114013672,
0.028411865234375,
0.014312744140625,
-0.0024566650390625,
0.07086181640625,
0.0017671585083007812,
-0.0274505615234375,
0.0794677734375,
0.01312255859375,
0.080322265625,
0.008392333984375,
0.0016088485717773438,
0.053863525390625,
0.0271148681640625,
-0.010345458984375,
0.018341064453125,
-0.012237548828125,
-0.0252532958984375,
-0.0214691162109375,
-0.029296875,
-0.0172271728515625,
0.02392578125,
-0.055206298828125,
0.03228759765625,
-0.0157623291015625,
-0.005413055419921875,
0.0003726482391357422,
0.00782012939453125,
-0.0310821533203125,
0.0149383544921875,
-0.01012420654296875,
0.06268310546875,
-0.0455322265625,
0.0433349609375,
0.036285400390625,
-0.039398193359375,
-0.04339599609375,
0.003284454345703125,
-0.0248870849609375,
-0.028472900390625,
0.0191497802734375,
0.0362548828125,
0.0274810791015625,
-0.005825042724609375,
-0.03680419921875,
-0.06719970703125,
0.08990478515625,
0.01146697998046875,
-0.0218353271484375,
0.0022144317626953125,
0.01543426513671875,
0.0281219482421875,
0.0004062652587890625,
0.044189453125,
0.0526123046875,
0.0699462890625,
-0.01349639892578125,
-0.06854248046875,
0.01003265380859375,
-0.022979736328125,
-0.033111572265625,
0.016876220703125,
-0.07806396484375,
0.064697265625,
-0.0262298583984375,
-0.012176513671875,
0.0167999267578125,
0.066650390625,
0.00984954833984375,
0.035400390625,
0.0231170654296875,
0.04583740234375,
0.042449951171875,
-0.0457763671875,
0.06396484375,
-0.01222991943359375,
0.06964111328125,
0.077392578125,
0.020538330078125,
0.0150146484375,
0.04034423828125,
-0.0250701904296875,
0.038360595703125,
0.043731689453125,
-0.06280517578125,
0.044708251953125,
0.020782470703125,
0.01528167724609375,
0.0008516311645507812,
0.0211181640625,
-0.04638671875,
0.033172607421875,
0.00688934326171875,
-0.034454345703125,
-0.045379638671875,
-0.017669677734375,
0.006839752197265625,
-0.020538330078125,
-0.0092620849609375,
0.049530029296875,
-0.006061553955078125,
-0.04974365234375,
0.048797607421875,
-0.00681304931640625,
0.04638671875,
-0.06024169921875,
-0.01103973388671875,
-0.01497650146484375,
0.0243988037109375,
-0.05255126953125,
-0.0733642578125,
0.009002685546875,
0.000782012939453125,
-0.0304718017578125,
0.0028228759765625,
0.0237579345703125,
-0.025970458984375,
-0.0465087890625,
-0.01338958740234375,
-0.0018548965454101562,
0.0251312255859375,
-0.01201629638671875,
-0.0364990234375,
-0.0272216796875,
0.0021381378173828125,
-0.057708740234375,
0.01904296875,
0.02923583984375,
0.0050506591796875,
0.036346435546875,
0.0469970703125,
0.0085296630859375,
-0.0106353759765625,
0.01194000244140625,
0.062164306640625,
-0.071533203125,
-0.0614013671875,
-0.0557861328125,
0.05999755859375,
-0.032073974609375,
-0.049072265625,
0.05859375,
0.0887451171875,
0.02923583984375,
-0.01367950439453125,
0.07061767578125,
-0.0330810546875,
0.03741455078125,
-0.0242156982421875,
0.07757568359375,
-0.027008056640625,
-0.0150299072265625,
-0.015411376953125,
-0.06866455078125,
-0.033935546875,
0.042755126953125,
-0.0101165771484375,
0.01094818115234375,
0.06292724609375,
0.056488037109375,
-0.016571044921875,
-0.0224609375,
-0.008636474609375,
0.0140380859375,
0.043792724609375,
0.0367431640625,
0.0328369140625,
-0.048065185546875,
0.05096435546875,
-0.0205230712890625,
-0.0265045166015625,
-0.01824951171875,
-0.06915283203125,
-0.07086181640625,
-0.0294647216796875,
-0.0238037109375,
-0.03411865234375,
-0.0196533203125,
0.0482177734375,
0.035400390625,
-0.06939697265625,
-0.01427459716796875,
-0.01708984375,
0.0204620361328125,
-0.0262451171875,
-0.02691650390625,
0.07574462890625,
-0.020782470703125,
-0.064453125,
0.01399993896484375,
-0.014404296875,
-0.003505706787109375,
0.001407623291015625,
-0.0021038055419921875,
-0.0050506591796875,
-0.0256195068359375,
0.0142364501953125,
0.022705078125,
-0.0460205078125,
-0.0115203857421875,
-0.028289794921875,
-0.01062774658203125,
0.0185699462890625,
0.044342041015625,
-0.053070068359375,
0.01438140869140625,
0.0606689453125,
0.0093536376953125,
0.04022216796875,
0.00970458984375,
0.0220184326171875,
-0.04986572265625,
0.0233917236328125,
-0.0127410888671875,
0.0292205810546875,
0.0194244384765625,
-0.027862548828125,
0.05560302734375,
0.0181121826171875,
-0.052215576171875,
-0.057373046875,
-0.01409149169921875,
-0.1053466796875,
0.00957489013671875,
0.09539794921875,
-0.0117950439453125,
-0.0220794677734375,
0.0146942138671875,
-0.0308074951171875,
0.03619384765625,
-0.0615234375,
0.04901123046875,
0.0478515625,
0.0029125213623046875,
-0.0036182403564453125,
-0.0100860595703125,
0.0335693359375,
-0.00991058349609375,
-0.06475830078125,
0.032135009765625,
0.0195465087890625,
0.02557373046875,
0.0186004638671875,
0.01824951171875,
0.0000014901161193847656,
0.034576416015625,
-0.0008220672607421875,
0.002017974853515625,
-0.037109375,
-0.024993896484375,
-0.0267486572265625,
-0.002170562744140625,
-0.04425048828125,
-0.032867431640625
]
] |
neural_code_search | 2023-06-01T14:59:50.000Z | [
"task_categories:question-answering",
"task_ids:extractive-qa",
"annotations_creators:expert-generated",
"language_creators:crowdsourced",
"multilinguality:monolingual",
"size_categories:1M<n<10M",
"size_categories:n<1K",
"source_datasets:original",
"language:en",
"license:cc-by-nc-4.0",
"arxiv:1908.09804",
"region:us"
] | null | Neural-Code-Search-Evaluation-Dataset presents an evaluation dataset consisting of natural language query and code snippet pairs and a search corpus consisting of code snippets collected from the most popular Android repositories on GitHub. | @InProceedings{huggingface:dataset,
title = {Neural Code Search Evaluation Dataset},
authors = {Hongyu Li, Seohyun Kim and Satish Chandra},
journal = {arXiv e-prints},
year = 2018,
eid = {arXiv:1908.09804 [cs.SE]},
pages = {arXiv:1908.09804 [cs.SE]},
archivePrefix = {arXiv},
eprint = {1908.09804},
} | 7 | 1,062 | 2022-03-02T23:29:22 | ---
pretty_name: Neural Code Search
annotations_creators:
- expert-generated
language_creators:
- crowdsourced
language:
- en
license:
- cc-by-nc-4.0
multilinguality:
- monolingual
size_categories:
- 1M<n<10M
- n<1K
source_datasets:
- original
task_categories:
- question-answering
task_ids:
- extractive-qa
paperswithcode_id: neural-code-search-evaluation-dataset
dataset_info:
- config_name: evaluation_dataset
features:
- name: stackoverflow_id
dtype: int32
- name: question
dtype: string
- name: question_url
dtype: string
- name: question_author
dtype: string
- name: question_author_url
dtype: string
- name: answer
dtype: string
- name: answer_url
dtype: string
- name: answer_author
dtype: string
- name: answer_author_url
dtype: string
- name: examples
sequence: int32
- name: examples_url
sequence: string
splits:
- name: train
num_bytes: 296848
num_examples: 287
download_size: 383625
dataset_size: 296848
- config_name: search_corpus
features:
- name: id
dtype: int32
- name: filepath
dtype: string
- name: method_name
dtype: string
- name: start_line
dtype: int32
- name: end_line
dtype: int32
- name: url
dtype: string
splits:
- name: train
num_bytes: 1452630278
num_examples: 4716814
download_size: 121112543
dataset_size: 1452630278
config_names:
- evaluation_dataset
- search_corpus
---
# Dataset Card for Neural Code Search
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:**
[facebookresearch
/
Neural-Code-Search-Evaluation-Dataset](https://github.com/facebookresearch/Neural-Code-Search-Evaluation-Dataset/tree/master/data)
- **Repository:**
[Github](https://github.com/facebookresearch/Neural-Code-Search-Evaluation-Dataset.git)
- **Paper:**
[arXiv](https://arxiv.org/pdf/1908.09804.pdf)
### Dataset Summary
Neural-Code-Search-Evaluation-Dataset presents an evaluation dataset consisting of natural language query and code snippet pairs, with the hope that future work in this area can use this dataset as a common benchmark. We also provide the results of two code search models (NCS, UNIF) from recent work.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
EN - English
## Dataset Structure
### Data Instances
#### Search Corpus
The search corpus is indexed using all method bodies parsed from the 24,549 GitHub repositories. In total, there are 4,716,814 methods in this corpus. The code search model will find relevant code snippets (i.e. method bodies) from this corpus given a natural language query. In this data release, we will provide the following information for each method in the corpus:
#### Evaluation Dataset
The evaluation dataset is composed of 287 Stack Overflow question and answer pairs
### Data Fields
#### Search Corpus
- id: Each method in the corpus has a unique numeric identifier. This ID number will also be referenced in our evaluation dataset.
- filepath: The file path is in the format of :owner/:repo/relative-file-path-to-the-repo
method_name
- start_line: Starting line number of the method in the file.
- end_line: Ending line number of the method in the file.
- url: GitHub link to the method body with commit ID and line numbers encoded.
#### Evaluation Dataset
- stackoverflow_id: Stack Overflow post ID.
- question: Title fo the Stack Overflow post.
- question_url: URL of the Stack Overflow post.
- answer: Code snippet answer to the question.
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
The most popular Android repositories on GitHub (ranked by the number of stars) is used to create the search corpus. For each repository that we indexed, we provide the link, specific to the commit that was used.5 In total, there are 24,549 repositories.
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
Dataset provided for research purposes only. Please check dataset license for additional information.
## Additional Information
### Dataset Curators
Hongyu Li, Seohyun Kim and Satish Chandra
### Licensing Information
CC-BY-NC 4.0 (Attr Non-Commercial Inter.)
### Citation Information
arXiv:1908.09804 [cs.SE]
### Contributions
Thanks to [@vinaykudari](https://github.com/vinaykudari) for adding this dataset. | 5,824 | [
[
-0.0283203125,
-0.032928466796875,
0.0135498046875,
0.01201629638671875,
-0.00974273681640625,
0.00885009765625,
-0.034759521484375,
-0.01204681396484375,
0.034027099609375,
0.0308837890625,
-0.038330078125,
-0.0672607421875,
-0.027618408203125,
0.0173797607421875,
-0.0272064208984375,
0.07855224609375,
0.003353118896484375,
0.00577545166015625,
-0.0113983154296875,
-0.0085601806640625,
-0.021148681640625,
-0.034027099609375,
-0.0228271484375,
-0.005077362060546875,
0.0289154052734375,
0.037933349609375,
0.03741455078125,
0.058868408203125,
0.048736572265625,
0.021514892578125,
-0.006725311279296875,
0.00257110595703125,
-0.0307769775390625,
-0.00933074951171875,
-0.0096588134765625,
-0.025054931640625,
-0.0225067138671875,
0.006977081298828125,
0.03802490234375,
0.03271484375,
-0.00839996337890625,
0.04443359375,
-0.0019931793212890625,
0.0787353515625,
-0.045074462890625,
0.027801513671875,
-0.037353515625,
-0.00579833984375,
-0.0157012939453125,
-0.0083465576171875,
-0.01174163818359375,
-0.0565185546875,
-0.00225067138671875,
-0.036865234375,
0.00827789306640625,
-0.015655517578125,
0.0631103515625,
0.0104217529296875,
-0.01806640625,
-0.039215087890625,
-0.022125244140625,
0.0526123046875,
-0.056182861328125,
0.016021728515625,
0.046661376953125,
0.02056884765625,
-0.0028972625732421875,
-0.060272216796875,
-0.0303497314453125,
-0.01398468017578125,
-0.007099151611328125,
-0.000865936279296875,
-0.005329132080078125,
-0.0125274658203125,
0.024200439453125,
0.04150390625,
-0.0472412109375,
-0.022430419921875,
-0.055511474609375,
-0.0250701904296875,
0.07183837890625,
-0.00027942657470703125,
0.0276947021484375,
-0.05029296875,
-0.01148223876953125,
-0.00977325439453125,
-0.032196044921875,
0.0133209228515625,
0.049285888671875,
0.022674560546875,
-0.0253143310546875,
0.05419921875,
-0.0279998779296875,
0.048065185546875,
-0.0179595947265625,
0.008575439453125,
0.05029296875,
-0.06427001953125,
-0.0014467239379882812,
0.0002865791320800781,
0.066162109375,
0.0391845703125,
0.019805908203125,
-0.0102691650390625,
-0.01239776611328125,
0.0124053955078125,
0.031585693359375,
-0.06298828125,
-0.0173187255859375,
0.0268096923828125,
-0.05908203125,
-0.03057861328125,
0.0156097412109375,
-0.0672607421875,
-0.022674560546875,
-0.02374267578125,
0.0087738037109375,
-0.0280914306640625,
-0.021270751953125,
0.00689697265625,
-0.0171966552734375,
0.0192718505859375,
-0.012939453125,
-0.0445556640625,
0.0264739990234375,
0.03790283203125,
0.0665283203125,
-0.00215911865234375,
-0.01177215576171875,
-0.00952911376953125,
-0.028411865234375,
-0.022369384765625,
0.035003662109375,
-0.0304412841796875,
-0.028778076171875,
0.0059356689453125,
0.014312744140625,
-0.0083465576171875,
-0.041778564453125,
0.06085205078125,
-0.0367431640625,
0.01230621337890625,
-0.02581787109375,
-0.036376953125,
-0.020660400390625,
0.01439666748046875,
-0.06488037109375,
0.096923828125,
0.0170745849609375,
-0.050323486328125,
0.0147857666015625,
-0.0738525390625,
-0.0308685302734375,
-0.0014066696166992188,
-0.018646240234375,
-0.025054931640625,
-0.0045623779296875,
0.01474761962890625,
0.037139892578125,
-0.0271453857421875,
0.0261688232421875,
-0.01140594482421875,
-0.037261962890625,
0.01068878173828125,
0.0009737014770507812,
0.08563232421875,
0.030792236328125,
-0.0291748046875,
0.0010786056518554688,
-0.07208251953125,
0.0101470947265625,
0.0252685546875,
-0.019012451171875,
-0.0233306884765625,
-0.00534820556640625,
0.005420684814453125,
0.0184326171875,
0.03533935546875,
-0.038177490234375,
0.0194244384765625,
-0.0252532958984375,
0.04278564453125,
0.04278564453125,
0.002101898193359375,
0.045257568359375,
-0.0240936279296875,
0.044647216796875,
-0.01439666748046875,
0.0253143310546875,
-0.01352691650390625,
-0.047637939453125,
-0.0309906005859375,
0.0008745193481445312,
0.0361328125,
0.036376953125,
-0.05609130859375,
0.050506591796875,
-0.03564453125,
-0.05670166015625,
-0.050506591796875,
0.0170745849609375,
0.050994873046875,
0.034210205078125,
0.020965576171875,
-0.01904296875,
-0.0555419921875,
-0.0718994140625,
-0.0048980712890625,
-0.0019931793212890625,
0.0014886856079101562,
0.046142578125,
0.059234619140625,
-0.021331787109375,
0.06292724609375,
-0.046905517578125,
-0.01328277587890625,
-0.009063720703125,
-0.007511138916015625,
0.035491943359375,
0.035125732421875,
0.04486083984375,
-0.07720947265625,
-0.02374267578125,
-0.011077880859375,
-0.058624267578125,
-0.0019969940185546875,
-0.0024280548095703125,
-0.01511383056640625,
0.0203399658203125,
0.032135009765625,
-0.0245819091796875,
0.04241943359375,
0.047637939453125,
-0.028167724609375,
0.03753662109375,
0.00439453125,
0.0204315185546875,
-0.093017578125,
0.0278778076171875,
0.01544952392578125,
0.022613525390625,
-0.0263519287109375,
0.00675201416015625,
0.018218994140625,
0.002010345458984375,
-0.0310516357421875,
0.040313720703125,
-0.0305328369140625,
-0.006824493408203125,
0.0125885009765625,
0.01690673828125,
-0.0034885406494140625,
0.045928955078125,
-0.0202789306640625,
0.06903076171875,
0.0379638671875,
-0.046478271484375,
0.0268096923828125,
0.0281829833984375,
-0.04107666015625,
0.001129150390625,
-0.060546875,
0.0164642333984375,
0.00711822509765625,
0.01441192626953125,
-0.07257080078125,
-0.021697998046875,
0.0193023681640625,
-0.0634765625,
-0.005748748779296875,
-0.0253143310546875,
-0.05596923828125,
-0.032318115234375,
-0.054840087890625,
0.02130126953125,
0.023651123046875,
-0.028778076171875,
0.017425537109375,
0.042083740234375,
0.0026264190673828125,
-0.0457763671875,
-0.06243896484375,
0.003345489501953125,
-0.0021457672119140625,
-0.05780029296875,
0.038360595703125,
-0.01308441162109375,
-0.0007176399230957031,
0.00783538818359375,
-0.003704071044921875,
-0.008697509765625,
-0.0035190582275390625,
0.0194854736328125,
0.0288238525390625,
-0.0036792755126953125,
0.0018339157104492188,
-0.0167388916015625,
0.00006657838821411133,
0.007076263427734375,
-0.008087158203125,
0.04766845703125,
-0.016632080078125,
-0.01253509521484375,
-0.0172271728515625,
0.004665374755859375,
0.022979736328125,
-0.01922607421875,
0.032623291015625,
0.05035400390625,
-0.034637451171875,
0.0015468597412109375,
-0.03582763671875,
-0.0143280029296875,
-0.031494140625,
0.026763916015625,
-0.0036640167236328125,
-0.05316162109375,
0.06939697265625,
0.0223388671875,
0.0006122589111328125,
0.040374755859375,
0.040130615234375,
0.02685546875,
0.055572509765625,
0.02203369140625,
-0.019134521484375,
0.041900634765625,
-0.053924560546875,
0.017852783203125,
-0.06610107421875,
-0.0292510986328125,
-0.054473876953125,
-0.032318115234375,
-0.07781982421875,
-0.0284576416015625,
-0.006381988525390625,
0.00818634033203125,
-0.01033782958984375,
0.0606689453125,
-0.06927490234375,
0.036468505859375,
0.05859375,
0.019866943359375,
0.0013799667358398438,
-0.00412750244140625,
-0.007228851318359375,
-0.005809783935546875,
-0.040313720703125,
-0.0396728515625,
0.10723876953125,
0.0213623046875,
0.037841796875,
-0.00045609474182128906,
0.0631103515625,
0.0158843994140625,
0.0013151168823242188,
-0.050994873046875,
0.045440673828125,
-0.01395416259765625,
-0.0626220703125,
-0.02166748046875,
-0.048126220703125,
-0.071533203125,
-0.018402099609375,
0.0033512115478515625,
-0.048187255859375,
0.0278472900390625,
-0.01026153564453125,
-0.0271453857421875,
0.006771087646484375,
-0.07171630859375,
0.07232666015625,
-0.01328277587890625,
-0.0207366943359375,
0.004238128662109375,
-0.058990478515625,
0.0208282470703125,
0.007205963134765625,
0.0227813720703125,
0.006855010986328125,
-0.00029206275939941406,
0.07403564453125,
-0.013153076171875,
0.05389404296875,
-0.01427459716796875,
0.01312255859375,
0.031646728515625,
-0.0167388916015625,
0.026092529296875,
0.0168609619140625,
-0.018310546875,
0.029052734375,
-0.004474639892578125,
-0.025360107421875,
-0.035400390625,
0.058197021484375,
-0.043670654296875,
0.0002491474151611328,
-0.02166748046875,
-0.0250701904296875,
0.01483154296875,
0.0283050537109375,
0.0275115966796875,
0.030609130859375,
0.00806427001953125,
0.038177490234375,
0.037200927734375,
-0.0350341796875,
0.036285400390625,
0.0100555419921875,
-0.022918701171875,
-0.04962158203125,
0.07080078125,
0.021331787109375,
-0.00977325439453125,
0.01122283935546875,
0.0010156631469726562,
-0.033172607421875,
-0.031890869140625,
-0.0285491943359375,
0.006481170654296875,
-0.046600341796875,
-0.0303955078125,
-0.034149169921875,
-0.0268707275390625,
-0.0440673828125,
-0.0040130615234375,
-0.031585693359375,
-0.02581787109375,
-0.0162200927734375,
-0.0181427001953125,
0.042724609375,
0.04095458984375,
-0.0028743743896484375,
0.0016031265258789062,
-0.0504150390625,
0.03436279296875,
-0.00070953369140625,
0.058746337890625,
-0.00965118408203125,
-0.0276947021484375,
-0.03887939453125,
0.01171875,
-0.0163726806640625,
-0.06231689453125,
0.035858154296875,
-0.0016832351684570312,
0.048583984375,
-0.0011234283447265625,
0.01288604736328125,
0.03790283203125,
-0.016204833984375,
0.07373046875,
-0.003330230712890625,
-0.05126953125,
0.056243896484375,
-0.029083251953125,
0.0206756591796875,
0.06689453125,
0.0245208740234375,
-0.031158447265625,
-0.00151824951171875,
-0.05572509765625,
-0.0888671875,
0.05609130859375,
0.034759521484375,
0.01934814453125,
-0.005519866943359375,
0.0284576416015625,
-0.0164642333984375,
0.02117919921875,
-0.057037353515625,
-0.05047607421875,
-0.00838470458984375,
-0.01406097412109375,
0.0198974609375,
-0.00861358642578125,
-0.0098876953125,
-0.033111572265625,
0.042572021484375,
0.0018548965454101562,
0.037139892578125,
0.022064208984375,
-0.010589599609375,
0.01024627685546875,
0.00795745849609375,
0.043792724609375,
0.048858642578125,
-0.031646728515625,
-0.01282501220703125,
-0.01265716552734375,
-0.058868408203125,
-0.0140228271484375,
0.02630615234375,
-0.01122283935546875,
0.0111846923828125,
0.014892578125,
0.04443359375,
0.0187835693359375,
-0.0478515625,
0.042938232421875,
-0.01526641845703125,
-0.0280303955078125,
-0.03948974609375,
-0.0022735595703125,
0.00524139404296875,
0.0124053955078125,
0.04205322265625,
0.00951385498046875,
0.034881591796875,
-0.0294342041015625,
0.035186767578125,
0.0033626556396484375,
-0.021209716796875,
-0.014495849609375,
0.030487060546875,
0.007114410400390625,
-0.0321044921875,
0.04010009765625,
-0.036102294921875,
-0.034454345703125,
0.06787109375,
0.007053375244140625,
0.0740966796875,
0.006378173828125,
0.0227203369140625,
0.048919677734375,
0.027252197265625,
-0.0092620849609375,
0.041717529296875,
-0.00315093994140625,
-0.04534912109375,
-0.03985595703125,
-0.036956787109375,
-0.0115509033203125,
0.0147705078125,
-0.06402587890625,
0.032745361328125,
-0.0305633544921875,
-0.016754150390625,
0.002490997314453125,
0.02642822265625,
-0.052001953125,
0.006160736083984375,
0.0002510547637939453,
0.083984375,
-0.04376220703125,
0.050537109375,
0.06854248046875,
-0.0672607421875,
-0.06396484375,
-0.01233673095703125,
0.0011386871337890625,
-0.0509033203125,
0.04412841796875,
0.015533447265625,
0.01812744140625,
-0.012451171875,
-0.06231689453125,
-0.06256103515625,
0.0906982421875,
0.026275634765625,
-0.0283355712890625,
0.0006895065307617188,
-0.0069122314453125,
0.042083740234375,
-0.03155517578125,
0.0244293212890625,
0.04229736328125,
0.037109375,
-0.00904083251953125,
-0.0657958984375,
0.005863189697265625,
-0.058197021484375,
0.0117645263671875,
0.0007824897766113281,
-0.0347900390625,
0.0469970703125,
-0.009796142578125,
-0.0079193115234375,
-0.007965087890625,
0.0164031982421875,
0.037689208984375,
0.041259765625,
0.0156402587890625,
0.0408935546875,
0.037567138671875,
-0.00948333740234375,
0.08978271484375,
-0.04656982421875,
0.039794921875,
0.07763671875,
0.0108795166015625,
0.055419921875,
0.0310516357421875,
-0.021209716796875,
0.032806396484375,
0.054168701171875,
-0.016876220703125,
0.0362548828125,
0.030609130859375,
0.0159912109375,
0.02020263671875,
-0.00691986083984375,
-0.038299560546875,
0.031829833984375,
0.01352691650390625,
-0.05230712890625,
-0.003662109375,
-0.0225830078125,
0.01016998291015625,
0.0179595947265625,
-0.0162506103515625,
0.0526123046875,
-0.010223388671875,
-0.032928466796875,
0.046295166015625,
-0.01148223876953125,
0.06402587890625,
-0.03692626953125,
-0.01335906982421875,
-0.02252197265625,
-0.0005297660827636719,
-0.041778564453125,
-0.06268310546875,
0.02630615234375,
-0.0000858306884765625,
-0.0254058837890625,
-0.0155792236328125,
0.0498046875,
-0.01207733154296875,
-0.043304443359375,
0.03741455078125,
0.017181396484375,
0.01212310791015625,
-0.00785064697265625,
-0.0679931640625,
0.01088714599609375,
0.022705078125,
-0.036102294921875,
0.01568603515625,
0.03656005859375,
0.003597259521484375,
0.03692626953125,
0.054107666015625,
0.01070404052734375,
0.016204833984375,
0.01045989990234375,
0.07818603515625,
-0.0631103515625,
-0.0197906494140625,
-0.048858642578125,
0.05291748046875,
-0.02899169921875,
-0.048492431640625,
0.061798095703125,
0.06854248046875,
0.08489990234375,
-0.0030345916748046875,
0.0614013671875,
-0.0307159423828125,
0.0430908203125,
-0.0292205810546875,
0.05975341796875,
-0.03668212890625,
0.0267333984375,
-0.033050537109375,
-0.06787109375,
-0.024932861328125,
0.05755615234375,
-0.0274658203125,
0.0214691162109375,
0.039581298828125,
0.08026123046875,
0.0105438232421875,
0.005977630615234375,
0.00406646728515625,
0.00496673583984375,
0.003459930419921875,
0.015716552734375,
0.0294342041015625,
-0.06951904296875,
0.053466796875,
-0.047637939453125,
-0.005443572998046875,
-0.0207366943359375,
-0.057220458984375,
-0.043426513671875,
-0.061767578125,
-0.0258331298828125,
-0.044158935546875,
-0.002605438232421875,
0.0712890625,
0.0489501953125,
-0.06671142578125,
-0.0276947021484375,
-0.0124359130859375,
0.01554107666015625,
-0.005435943603515625,
-0.0234527587890625,
0.034454345703125,
-0.0224456787109375,
-0.047821044921875,
0.0092315673828125,
0.0010166168212890625,
-0.0277862548828125,
-0.0157012939453125,
-0.01824951171875,
-0.03570556640625,
-0.02911376953125,
0.034759521484375,
0.0218963623046875,
-0.034576416015625,
0.00626373291015625,
0.033447265625,
-0.020355224609375,
0.004627227783203125,
0.04937744140625,
-0.0408935546875,
0.0355224609375,
0.047271728515625,
0.04840087890625,
0.0240631103515625,
-0.006992340087890625,
0.02459716796875,
-0.061309814453125,
0.0022449493408203125,
0.0239410400390625,
0.0242767333984375,
0.018280029296875,
-0.043975830078125,
0.077392578125,
0.00855255126953125,
-0.052978515625,
-0.063720703125,
-0.0175933837890625,
-0.078857421875,
-0.00933074951171875,
0.11102294921875,
0.001636505126953125,
-0.0203704833984375,
-0.004085540771484375,
-0.017913818359375,
0.023345947265625,
-0.0631103515625,
0.051849365234375,
0.051849365234375,
0.005115509033203125,
-0.005580902099609375,
-0.06756591796875,
0.038299560546875,
-0.0007071495056152344,
-0.056640625,
-0.00553131103515625,
0.03076171875,
0.013092041015625,
0.0364990234375,
0.0439453125,
-0.03900146484375,
0.0199737548828125,
-0.01092529296875,
0.030853271484375,
-0.0032520294189453125,
-0.006500244140625,
-0.029876708984375,
-0.0033111572265625,
-0.021087646484375,
-0.0296630859375
]
] |
BeIR/fiqa-qrels | 2022-10-23T06:06:29.000Z | [
"task_categories:text-retrieval",
"task_ids:entity-linking-retrieval",
"task_ids:fact-checking-retrieval",
"multilinguality:monolingual",
"language:en",
"license:cc-by-sa-4.0",
"region:us"
] | BeIR | null | null | 0 | 1,059 | 2022-06-05T17:26:38 | ---
annotations_creators: []
language_creators: []
language:
- en
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
paperswithcode_id: beir
pretty_name: BEIR Benchmark
size_categories:
msmarco:
- 1M<n<10M
trec-covid:
- 100k<n<1M
nfcorpus:
- 1K<n<10K
nq:
- 1M<n<10M
hotpotqa:
- 1M<n<10M
fiqa:
- 10K<n<100K
arguana:
- 1K<n<10K
touche-2020:
- 100K<n<1M
cqadupstack:
- 100K<n<1M
quora:
- 100K<n<1M
dbpedia:
- 1M<n<10M
scidocs:
- 10K<n<100K
fever:
- 1M<n<10M
climate-fever:
- 1M<n<10M
scifact:
- 1K<n<10K
source_datasets: []
task_categories:
- text-retrieval
- zero-shot-retrieval
- information-retrieval
- zero-shot-information-retrieval
task_ids:
- passage-retrieval
- entity-linking-retrieval
- fact-checking-retrieval
- tweet-retrieval
- citation-prediction-retrieval
- duplication-question-retrieval
- argument-retrieval
- news-retrieval
- biomedical-information-retrieval
- question-answering-retrieval
---
# Dataset Card for BEIR Benchmark
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://github.com/UKPLab/beir
- **Repository:** https://github.com/UKPLab/beir
- **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
- **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
- **Point of Contact:** nandan.thakur@uwaterloo.ca
### Dataset Summary
BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks:
- Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
- Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
- Bio-Medical IR: [TREC-COVID](https://ir.nist.gov/covidSubmit/index.html), [BioASQ](http://bioasq.org), [NFCorpus](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/)
- News Retrieval: [TREC-NEWS](https://trec.nist.gov/data/news2019.html), [Robust04](https://trec.nist.gov/data/robust/04.guidelines.html)
- Argument Retrieval: [Touche-2020](https://webis.de/events/touche-20/shared-task-1.html), [ArguAna](tp://argumentation.bplaced.net/arguana/data)
- Duplicate Question Retrieval: [Quora](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs), [CqaDupstack](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/)
- Citation-Prediction: [SCIDOCS](https://allenai.org/data/scidocs)
- Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
- Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
All these datasets have been preprocessed and can be used for your experiments.
```python
```
### Supported Tasks and Leaderboards
The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia.
The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/).
### Languages
All tasks are in English (`en`).
## Dataset Structure
All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format:
- `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}`
- `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}`
- `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1`
### Data Instances
A high level example of any beir dataset:
```python
corpus = {
"doc1" : {
"title": "Albert Einstein",
"text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
its influence on the philosophy of science. He is best known to the general public for his mass–energy \
equivalence formula E = mc2, which has been dubbed 'the world's most famous equation'. He received the 1921 \
Nobel Prize in Physics 'for his services to theoretical physics, and especially for his discovery of the law \
of the photoelectric effect', a pivotal step in the development of quantum theory."
},
"doc2" : {
"title": "", # Keep title an empty string if not present
"text": "Wheat beer is a top-fermented beer which is brewed with a large proportion of wheat relative to the amount of \
malted barley. The two main varieties are German Weißbier and Belgian witbier; other types include Lambic (made\
with wild yeast), Berliner Weisse (a cloudy, sour beer), and Gose (a sour, salty beer)."
},
}
queries = {
"q1" : "Who developed the mass-energy equivalence formula?",
"q2" : "Which beer is brewed with a large proportion of wheat?"
}
qrels = {
"q1" : {"doc1": 1},
"q2" : {"doc2": 1},
}
```
### Data Fields
Examples from all configurations have the following features:
### Corpus
- `corpus`: a `dict` feature representing the document title and passage text, made up of:
- `_id`: a `string` feature representing the unique document id
- `title`: a `string` feature, denoting the title of the document.
- `text`: a `string` feature, denoting the text of the document.
### Queries
- `queries`: a `dict` feature representing the query, made up of:
- `_id`: a `string` feature representing the unique query id
- `text`: a `string` feature, denoting the text of the query.
### Qrels
- `qrels`: a `dict` feature representing the query document relevance judgements, made up of:
- `_id`: a `string` feature representing the query id
- `_id`: a `string` feature, denoting the document id.
- `score`: a `int32` feature, denoting the relevance judgement between query and document.
### Data Splits
| Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
| -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:|
| MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` |
| TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` |
| NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` |
| BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
| NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` |
| HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` |
| FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` |
| Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
| TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
| ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` |
| Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` |
| CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` |
| Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` |
| DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` |
| SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` |
| FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` |
| Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` |
| SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` |
| Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
## Dataset Creation
### Curation Rationale
[Needs More Information]
### Source Data
#### Initial Data Collection and Normalization
[Needs More Information]
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
[Needs More Information]
#### Who are the annotators?
[Needs More Information]
### Personal and Sensitive Information
[Needs More Information]
## Considerations for Using the Data
### Social Impact of Dataset
[Needs More Information]
### Discussion of Biases
[Needs More Information]
### Other Known Limitations
[Needs More Information]
## Additional Information
### Dataset Curators
[Needs More Information]
### Licensing Information
[Needs More Information]
### Citation Information
Cite as:
```
@inproceedings{
thakur2021beir,
title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych},
booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
year={2021},
url={https://openreview.net/forum?id=wCu6T5xFjeJ}
}
```
### Contributions
Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset. | 13,988 | [
[
-0.0396728515625,
-0.03985595703125,
0.010955810546875,
0.003665924072265625,
0.004230499267578125,
0.00008660554885864258,
-0.0081939697265625,
-0.018890380859375,
0.0216827392578125,
0.005954742431640625,
-0.034332275390625,
-0.0545654296875,
-0.0263824462890625,
0.0153961181640625,
-0.0228118896484375,
0.0740966796875,
0.0010728836059570312,
0.004459381103515625,
-0.0185394287109375,
-0.0277862548828125,
-0.006099700927734375,
-0.03399658203125,
-0.038330078125,
-0.022064208984375,
0.034576416015625,
0.030120849609375,
0.03216552734375,
0.036956787109375,
0.06512451171875,
0.0196533203125,
-0.01287841796875,
0.01464080810546875,
-0.032073974609375,
-0.0086822509765625,
-0.0189971923828125,
-0.0254669189453125,
-0.0256195068359375,
-0.00322723388671875,
0.053375244140625,
0.03680419921875,
-0.0037364959716796875,
0.0288238525390625,
0.00594329833984375,
0.058013916015625,
-0.033721923828125,
0.00879669189453125,
-0.040679931640625,
-0.007904052734375,
-0.027618408203125,
-0.009124755859375,
-0.00627899169921875,
-0.01433563232421875,
-0.0025386810302734375,
-0.049560546875,
0.03338623046875,
0.0185089111328125,
0.09039306640625,
0.011383056640625,
-0.0258636474609375,
-0.01453399658203125,
-0.032562255859375,
0.064453125,
-0.049774169921875,
0.03662109375,
0.038726806640625,
0.0190582275390625,
-0.01071929931640625,
-0.062347412109375,
-0.04241943359375,
-0.0071258544921875,
-0.027679443359375,
0.034912109375,
-0.0120086669921875,
-0.026397705078125,
0.026947021484375,
0.0316162109375,
-0.0655517578125,
-0.01197052001953125,
-0.036468505859375,
-0.01514434814453125,
0.0584716796875,
0.0227813720703125,
0.002429962158203125,
-0.0306549072265625,
-0.02392578125,
-0.032958984375,
-0.0311737060546875,
0.020477294921875,
0.0156097412109375,
0.021820068359375,
-0.0251312255859375,
0.0303955078125,
-0.034332275390625,
0.03765869140625,
0.006557464599609375,
-0.00782012939453125,
0.049072265625,
-0.061920166015625,
-0.003810882568359375,
-0.00879669189453125,
0.0770263671875,
0.0309600830078125,
-0.0303192138671875,
-0.00431060791015625,
-0.00434112548828125,
-0.020355224609375,
0.00047898292541503906,
-0.0648193359375,
-0.0115814208984375,
0.044830322265625,
-0.033721923828125,
-0.0015382766723632812,
0.0233917236328125,
-0.0740966796875,
-0.00548553466796875,
0.0006818771362304688,
0.0300140380859375,
-0.0396728515625,
-0.0120849609375,
0.0018510818481445312,
-0.04345703125,
0.0261688232421875,
-0.0006022453308105469,
-0.04742431640625,
0.02398681640625,
0.03399658203125,
0.061004638671875,
-0.0031414031982421875,
-0.019927978515625,
-0.0253143310546875,
0.01097869873046875,
-0.0109100341796875,
0.04986572265625,
-0.024200439453125,
-0.030792236328125,
-0.01076507568359375,
0.01149749755859375,
-0.0025691986083984375,
-0.0256195068359375,
0.07049560546875,
-0.02960205078125,
0.03411865234375,
-0.059906005859375,
-0.031280517578125,
-0.008209228515625,
0.0259246826171875,
-0.052764892578125,
0.09661865234375,
0.0201416015625,
-0.08331298828125,
0.0220947265625,
-0.06890869140625,
-0.032745361328125,
0.0007491111755371094,
-0.00859832763671875,
-0.034637451171875,
-0.0269012451171875,
0.017333984375,
0.03216552734375,
-0.04730224609375,
0.0097503662109375,
-0.0121307373046875,
-0.0164642333984375,
0.01377105712890625,
0.0025177001953125,
0.07513427734375,
0.029449462890625,
-0.026275634765625,
-0.0123291015625,
-0.0657958984375,
0.00141143798828125,
0.023834228515625,
-0.0296173095703125,
-0.01287841796875,
-0.0032901763916015625,
0.014312744140625,
0.00891876220703125,
0.0222625732421875,
-0.039337158203125,
0.00031185150146484375,
-0.0230560302734375,
0.03778076171875,
0.020233154296875,
0.010955810546875,
0.0179290771484375,
-0.0533447265625,
0.0201263427734375,
0.01020050048828125,
0.0260467529296875,
0.005214691162109375,
-0.03350830078125,
-0.038177490234375,
-0.022003173828125,
0.0266571044921875,
0.048492431640625,
-0.041290283203125,
0.0465087890625,
-0.03900146484375,
-0.07025146484375,
-0.043121337890625,
0.00550079345703125,
0.033843994140625,
0.057647705078125,
0.04644775390625,
-0.00653076171875,
-0.03936767578125,
-0.0694580078125,
-0.01377105712890625,
-0.0163421630859375,
0.00858306884765625,
0.03619384765625,
0.06671142578125,
-0.0088958740234375,
0.055450439453125,
-0.04473876953125,
-0.0218353271484375,
-0.0081634521484375,
0.003681182861328125,
0.0380859375,
0.04742431640625,
0.04937744140625,
-0.08599853515625,
-0.035614013671875,
-0.002597808837890625,
-0.05889892578125,
0.000560760498046875,
0.00501251220703125,
-0.0146026611328125,
0.01436614990234375,
0.033447265625,
-0.044525146484375,
0.02471923828125,
0.009796142578125,
-0.02001953125,
0.028839111328125,
-0.01015472412109375,
0.041259765625,
-0.09332275390625,
0.044586181640625,
0.01091766357421875,
0.0110015869140625,
-0.040740966796875,
0.005474090576171875,
0.00933074951171875,
0.01546478271484375,
-0.03289794921875,
0.051849365234375,
-0.03228759765625,
0.00579071044921875,
0.024078369140625,
0.0027484893798828125,
0.0167236328125,
0.02471923828125,
-0.0149688720703125,
0.0584716796875,
0.036834716796875,
-0.049102783203125,
0.0243682861328125,
0.032379150390625,
-0.0240325927734375,
0.0277862548828125,
-0.0521240234375,
-0.00843048095703125,
-0.007266998291015625,
0.0190887451171875,
-0.07244873046875,
-0.0210723876953125,
0.017669677734375,
-0.049224853515625,
0.0169525146484375,
-0.01044464111328125,
-0.0556640625,
-0.047119140625,
-0.040557861328125,
0.015167236328125,
0.0372314453125,
-0.0263824462890625,
0.036834716796875,
0.026214599609375,
0.0092926025390625,
-0.059234619140625,
-0.054779052734375,
-0.0139923095703125,
-0.01971435546875,
-0.053192138671875,
0.050628662109375,
-0.0226287841796875,
-0.020721435546875,
0.0137176513671875,
-0.00506591796875,
-0.004611968994140625,
0.00576019287109375,
0.018402099609375,
0.021728515625,
-0.007740020751953125,
0.006542205810546875,
-0.01108551025390625,
0.0134735107421875,
-0.009002685546875,
0.005260467529296875,
0.0433349609375,
-0.0277252197265625,
-0.009765625,
-0.02703857421875,
0.023040771484375,
0.0419921875,
-0.0254974365234375,
0.0533447265625,
0.06365966796875,
-0.0266876220703125,
0.0140228271484375,
-0.04107666015625,
-0.01100921630859375,
-0.03369140625,
0.0181121826171875,
-0.0296173095703125,
-0.045867919921875,
0.055908203125,
0.0110321044921875,
0.01204681396484375,
0.07196044921875,
0.034912109375,
-0.01447296142578125,
0.05596923828125,
0.01457977294921875,
-0.00528717041015625,
0.03485107421875,
-0.050994873046875,
-0.003757476806640625,
-0.06256103515625,
-0.0380859375,
-0.06878662109375,
-0.01529693603515625,
-0.0521240234375,
-0.0290679931640625,
0.035186767578125,
0.0123138427734375,
-0.0341796875,
0.0289459228515625,
-0.051788330078125,
0.01149749755859375,
0.055419921875,
0.00737762451171875,
-0.0020427703857421875,
0.0002586841583251953,
-0.0200347900390625,
0.01273345947265625,
-0.060791015625,
-0.0208282470703125,
0.09161376953125,
0.0048980712890625,
0.037750244140625,
0.012725830078125,
0.06011962890625,
0.0219879150390625,
0.0007772445678710938,
-0.024932861328125,
0.0419921875,
-0.01227569580078125,
-0.07568359375,
-0.017974853515625,
-0.041046142578125,
-0.08673095703125,
0.009002685546875,
-0.0313720703125,
-0.052642822265625,
0.0250396728515625,
0.002979278564453125,
-0.021392822265625,
0.0184478759765625,
-0.057464599609375,
0.059783935546875,
-0.025360107421875,
-0.0540771484375,
-0.0050201416015625,
-0.06365966796875,
0.01390838623046875,
0.0019550323486328125,
0.0259857177734375,
-0.00223541259765625,
-0.004611968994140625,
0.079345703125,
-0.03216552734375,
0.031005859375,
-0.0123138427734375,
0.034210205078125,
0.0303955078125,
-0.02642822265625,
0.03863525390625,
0.007740020751953125,
-0.03717041015625,
0.0267791748046875,
0.03338623046875,
-0.044525146484375,
-0.0242767333984375,
0.054107666015625,
-0.0582275390625,
-0.0333251953125,
-0.05181884765625,
-0.035736083984375,
-0.002758026123046875,
0.0257110595703125,
0.03778076171875,
0.0333251953125,
-0.0211639404296875,
0.0284271240234375,
0.042327880859375,
-0.02520751953125,
0.027435302734375,
0.041778564453125,
-0.0029010772705078125,
-0.045745849609375,
0.058197021484375,
0.0215606689453125,
-0.0106353759765625,
0.05133056640625,
0.019866943359375,
-0.0343017578125,
-0.04473876953125,
-0.02178955078125,
0.020050048828125,
-0.041839599609375,
-0.03326416015625,
-0.056243896484375,
-0.02044677734375,
-0.055419921875,
0.000637054443359375,
-0.01119232177734375,
-0.01922607421875,
-0.0279083251953125,
-0.006427764892578125,
0.04632568359375,
0.025146484375,
-0.030181884765625,
0.0097808837890625,
-0.06134033203125,
0.02862548828125,
-0.00550079345703125,
0.01555633544921875,
-0.0157470703125,
-0.03411865234375,
-0.02911376953125,
0.01055908203125,
-0.025177001953125,
-0.04766845703125,
0.0293731689453125,
0.0147247314453125,
0.05889892578125,
0.0173797607421875,
0.0155029296875,
0.050689697265625,
-0.01049041748046875,
0.07879638671875,
0.01450347900390625,
-0.042236328125,
0.046234130859375,
-0.02911376953125,
0.0181121826171875,
0.0633544921875,
0.051116943359375,
-0.029876708984375,
-0.01105499267578125,
-0.057861328125,
-0.07659912109375,
0.049896240234375,
0.0271148681640625,
-0.017059326171875,
-0.00395965576171875,
0.01959228515625,
0.004302978515625,
0.00803375244140625,
-0.0292816162109375,
-0.05133056640625,
-0.0262603759765625,
-0.0200958251953125,
-0.00589752197265625,
0.001857757568359375,
-0.0281982421875,
-0.042327880859375,
0.0697021484375,
0.00838470458984375,
0.031890869140625,
0.04656982421875,
-0.00174713134765625,
0.003509521484375,
0.021942138671875,
0.0308837890625,
0.047607421875,
-0.048736572265625,
-0.0012464523315429688,
0.0115814208984375,
-0.042816162109375,
-0.01494598388671875,
0.037872314453125,
-0.01470184326171875,
0.003459930419921875,
0.0246124267578125,
0.0352783203125,
-0.003971099853515625,
-0.050262451171875,
0.030120849609375,
-0.010833740234375,
-0.03643798828125,
-0.0240020751953125,
0.01013946533203125,
0.0119476318359375,
0.0202789306640625,
0.045196533203125,
-0.006866455078125,
0.0179443359375,
-0.045989990234375,
0.021240234375,
0.031707763671875,
-0.0072784423828125,
-0.0174713134765625,
0.053985595703125,
-0.0011968612670898438,
-0.00844573974609375,
0.035797119140625,
-0.0293426513671875,
-0.03533935546875,
0.055633544921875,
0.0194549560546875,
0.03668212890625,
0.0023021697998046875,
0.01224517822265625,
0.058807373046875,
0.0227813720703125,
-0.01152801513671875,
0.043487548828125,
0.006626129150390625,
-0.043792724609375,
0.0084228515625,
-0.046112060546875,
-0.0211639404296875,
0.019134521484375,
-0.054107666015625,
0.01690673828125,
-0.0271759033203125,
-0.027679443359375,
0.02667236328125,
0.040863037109375,
-0.08013916015625,
0.0178680419921875,
-0.01369476318359375,
0.080078125,
-0.050750732421875,
0.049591064453125,
0.06201171875,
-0.053863525390625,
-0.0570068359375,
-0.01218414306640625,
-0.004199981689453125,
-0.043182373046875,
0.040740966796875,
-0.004718780517578125,
0.01654052734375,
-0.00658416748046875,
-0.0452880859375,
-0.076416015625,
0.10992431640625,
0.006633758544921875,
-0.038116455078125,
0.0161285400390625,
0.00782012939453125,
0.048004150390625,
-0.01071929931640625,
0.033294677734375,
0.03607177734375,
0.05145263671875,
0.0076141357421875,
-0.05712890625,
0.0116424560546875,
-0.041229248046875,
-0.02777099609375,
0.01458740234375,
-0.0821533203125,
0.060577392578125,
0.0011854171752929688,
-0.0113372802734375,
-0.0083465576171875,
0.042327880859375,
0.015838623046875,
0.056915283203125,
0.01715087890625,
0.0657958984375,
0.07000732421875,
-0.01454925537109375,
0.08319091796875,
-0.034637451171875,
0.035980224609375,
0.0670166015625,
-0.017974853515625,
0.060882568359375,
0.026824951171875,
-0.0312347412109375,
0.0302886962890625,
0.053009033203125,
-0.0281982421875,
0.0474853515625,
0.00551605224609375,
0.0013017654418945312,
0.0012712478637695312,
-0.01068878173828125,
-0.051666259765625,
0.0289459228515625,
0.0273590087890625,
-0.01611328125,
-0.00769805908203125,
-0.0179901123046875,
0.004817962646484375,
-0.00933837890625,
-0.01708984375,
0.0472412109375,
-0.0124664306640625,
-0.0419921875,
0.058563232421875,
-0.001617431640625,
0.050628662109375,
-0.05450439453125,
0.01422882080078125,
-0.03033447265625,
-0.00147247314453125,
-0.03076171875,
-0.06256103515625,
0.0203857421875,
0.0023174285888671875,
-0.0293731689453125,
0.0013151168823242188,
0.045684814453125,
-0.0103607177734375,
-0.0428466796875,
0.0166015625,
0.045440673828125,
0.0273590087890625,
0.01203155517578125,
-0.0731201171875,
0.002132415771484375,
-0.0013284683227539062,
-0.026275634765625,
0.0260467529296875,
0.028228759765625,
0.007335662841796875,
0.043182373046875,
0.05841064453125,
-0.0011510848999023438,
0.0026531219482421875,
-0.0136260986328125,
0.06756591796875,
-0.06964111328125,
-0.021820068359375,
-0.043121337890625,
0.031341552734375,
-0.0265655517578125,
-0.033599853515625,
0.061920166015625,
0.084716796875,
0.06866455078125,
0.01021575927734375,
0.06591796875,
-0.037506103515625,
0.046905517578125,
-0.0238189697265625,
0.0633544921875,
-0.06982421875,
0.005779266357421875,
-0.0092926025390625,
-0.038299560546875,
-0.0125885009765625,
0.0232086181640625,
-0.0208892822265625,
0.004703521728515625,
0.054534912109375,
0.076904296875,
0.002338409423828125,
-0.0108642578125,
0.004306793212890625,
0.020538330078125,
0.0193328857421875,
0.030792236328125,
0.035369873046875,
-0.061004638671875,
0.049957275390625,
-0.033050537109375,
0.000011265277862548828,
-0.029449462890625,
-0.049560546875,
-0.054595947265625,
-0.07293701171875,
-0.0307159423828125,
-0.042755126953125,
0.00994110107421875,
0.07489013671875,
0.051971435546875,
-0.06884765625,
-0.0074615478515625,
0.007427215576171875,
0.01343536376953125,
-0.0281219482421875,
-0.0204925537109375,
0.0555419921875,
-0.0028247833251953125,
-0.045013427734375,
0.011322021484375,
-0.0007615089416503906,
-0.0028133392333984375,
0.0179443359375,
-0.008209228515625,
-0.042327880859375,
0.0030002593994140625,
0.036102294921875,
0.035186767578125,
-0.03741455078125,
-0.004634857177734375,
0.0048370361328125,
-0.0194549560546875,
0.021728515625,
0.017974853515625,
-0.047088623046875,
0.0100555419921875,
0.057769775390625,
0.037078857421875,
0.050750732421875,
0.006015777587890625,
-0.0048065185546875,
-0.03656005859375,
-0.005313873291015625,
0.0178070068359375,
0.029205322265625,
0.02923583984375,
-0.0294036865234375,
0.058563232421875,
0.0259246826171875,
-0.0408935546875,
-0.065673828125,
-0.0250091552734375,
-0.11383056640625,
-0.0178070068359375,
0.09185791015625,
0.00017952919006347656,
-0.026092529296875,
-0.002590179443359375,
-0.00399017333984375,
0.0309295654296875,
-0.053375244140625,
0.045867919921875,
0.044677734375,
-0.01285552978515625,
0.0120086669921875,
-0.0455322265625,
0.033294677734375,
0.0188446044921875,
-0.066162109375,
-0.0160064697265625,
0.020721435546875,
0.033782958984375,
0.0225372314453125,
0.0419921875,
-0.01561737060546875,
0.00428009033203125,
0.01019287109375,
0.006622314453125,
-0.01142120361328125,
0.0036258697509765625,
-0.0055084228515625,
0.017059326171875,
-0.0173187255859375,
-0.0169525146484375
]
] |
indonlp/NusaX-senti | 2023-01-24T17:02:06.000Z | [
"task_categories:text-classification",
"task_ids:sentiment-classification",
"annotations_creators:expert-generated",
"language_creators:expert-generated",
"multilinguality:multilingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:ace",
"language:ban",
"language:bjn",
"language:bug",
"language:en",
"language:id",
"language:jv",
"language:mad",
"language:min",
"language:nij",
"language:su",
"language:bbc",
"license:cc-by-sa-4.0",
"arxiv:2205.15960",
"region:us"
] | indonlp | NusaX is a high-quality multilingual parallel corpus that covers 12 languages, Indonesian, English, and 10 Indonesian local languages, namely Acehnese, Balinese, Banjarese, Buginese, Madurese, Minangkabau, Javanese, Ngaju, Sundanese, and Toba Batak.
NusaX-Senti is a 3-labels (positive, neutral, negative) sentiment analysis dataset for 10 Indonesian local languages + Indonesian and English. | @misc{winata2022nusax,
title={NusaX: Multilingual Parallel Sentiment Dataset for 10 Indonesian Local Languages},
author={Winata, Genta Indra and Aji, Alham Fikri and Cahyawijaya,
Samuel and Mahendra, Rahmad and Koto, Fajri and Romadhony,
Ade and Kurniawan, Kemal and Moeljadi, David and Prasojo,
Radityo Eko and Fung, Pascale and Baldwin, Timothy and Lau,
Jey Han and Sennrich, Rico and Ruder, Sebastian},
year={2022},
eprint={2205.15960},
archivePrefix={arXiv},
primaryClass={cs.CL}
} | 3 | 1,059 | 2023-01-24T09:28:21 | ---
pretty_name: NusaX-senti
annotations_creators:
- expert-generated
language_creators:
- expert-generated
license:
- cc-by-sa-4.0
multilinguality:
- multilingual
language:
- ace
- ban
- bjn
- bug
- en
- id
- jv
- mad
- min
- nij
- su
- bbc
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- text-classification
task_ids:
- sentiment-classification
dataset_info:
features:
- name: id
dtype: string
- name: text
dtype: string
- name: lang
dtype: string
- name: label
dtype:
class_label:
names:
0: negative
1: neutral
2: positive
---
# Dataset Card for NusaX-Senti
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Repository:** [GitHub](https://github.com/IndoNLP/nusax/tree/main/datasets/sentiment)
- **Paper:** [EACL 2022](https://arxiv.org/abs/2205.15960)
- **Point of Contact:** [GitHub](https://github.com/IndoNLP/nusax/tree/main/datasets/sentiment)
### Dataset Summary
NusaX is a high-quality multilingual parallel corpus that covers 12 languages, Indonesian, English, and 10 Indonesian local languages, namely Acehnese, Balinese, Banjarese, Buginese, Madurese, Minangkabau, Javanese, Ngaju, Sundanese, and Toba Batak.
NusaX-Senti is a 3-labels (positive, neutral, negative) sentiment analysis dataset for 10 Indonesian local languages + Indonesian and English.
### Supported Tasks and Leaderboards
- Sentiment analysis for Indonesian languages
### Languages
- ace: acehnese,
- ban: balinese,
- bjn: banjarese,
- bug: buginese,
- eng: english,
- ind: indonesian,
- jav: javanese,
- mad: madurese,
- min: minangkabau,
- nij: ngaju,
- sun: sundanese,
- bbc: toba_batak,
## Dataset Creation
### Curation Rationale
There is a shortage of NLP research and resources for the Indonesian languages, despite the country having over 700 languages. With this in mind, we have created this dataset to support future research for the underrepresented languages in Indonesia.
### Source Data
#### Initial Data Collection and Normalization
NusaX-senti is a dataset for sentiment analysis in Indonesian that has been expertly translated by native speakers.
#### Who are the source language producers?
The data was produced by humans (native speakers).
### Annotations
#### Annotation process
NusaX-senti is derived from SmSA, which is the biggest publicly available dataset for Indonesian sentiment analysis. It comprises of comments and reviews from multiple online platforms. To ensure the quality of our dataset, we have filtered it by removing any abusive language and personally identifying information by manually reviewing all sentences. To ensure balance in the label distribution, we randomly picked 1,000 samples through stratified sampling and then translated them to the corresponding languages.
#### Who are the annotators?
Native speakers of both Indonesian and the corresponding languages.
Annotators were compensated based on the number of translated samples.
### Personal and Sensitive Information
Personal information is removed.
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
NusaX is created from review text. These data sources may contain some bias.
### Other Known Limitations
No other known limitations
## Additional Information
### Licensing Information
CC-BY-SA 4.0.
Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
Please contact authors for any information on the dataset.
### Citation Information
```
@misc{winata2022nusax,
title={NusaX: Multilingual Parallel Sentiment Dataset for 10 Indonesian Local Languages},
author={Winata, Genta Indra and Aji, Alham Fikri and Cahyawijaya,
Samuel and Mahendra, Rahmad and Koto, Fajri and Romadhony,
Ade and Kurniawan, Kemal and Moeljadi, David and Prasojo,
Radityo Eko and Fung, Pascale and Baldwin, Timothy and Lau,
Jey Han and Sennrich, Rico and Ruder, Sebastian},
year={2022},
eprint={2205.15960},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
```
### Contributions
Thanks to [@afaji](https://github.com/afaji) for adding this dataset.
| 5,607 | [
[
-0.042236328125,
-0.017059326171875,
0.0016164779663085938,
0.051361083984375,
-0.033660888671875,
0.001285552978515625,
-0.026947021484375,
-0.0182037353515625,
0.054290771484375,
0.03900146484375,
-0.04412841796875,
-0.06536865234375,
-0.050262451171875,
0.048431396484375,
0.01418304443359375,
0.09100341796875,
-0.01336669921875,
-0.0227508544921875,
-0.0250396728515625,
-0.041900634765625,
-0.00693511962890625,
-0.029876708984375,
-0.031219482421875,
-0.0029430389404296875,
0.0272064208984375,
0.036865234375,
0.042755126953125,
0.0240631103515625,
0.0273590087890625,
0.0197296142578125,
-0.0207977294921875,
-0.00652313232421875,
-0.0018186569213867188,
-0.001865386962890625,
0.005573272705078125,
-0.042755126953125,
-0.0587158203125,
0.0029125213623046875,
0.0477294921875,
0.0535888671875,
-0.0024166107177734375,
0.032562255859375,
0.0205078125,
0.06732177734375,
-0.044921875,
0.031402587890625,
-0.006992340087890625,
0.00009232759475708008,
-0.03179931640625,
0.01502227783203125,
0.00238037109375,
-0.071044921875,
-0.006565093994140625,
-0.04901123046875,
-0.025970458984375,
-0.0248565673828125,
0.0631103515625,
0.01062774658203125,
-0.031707763671875,
-0.0028629302978515625,
-0.00534820556640625,
0.06866455078125,
-0.0726318359375,
0.008514404296875,
0.044219970703125,
0.00811767578125,
0.011077880859375,
-0.0208740234375,
-0.038055419921875,
0.0223541259765625,
-0.0093994140625,
0.0318603515625,
-0.02667236328125,
-0.025238037109375,
0.03558349609375,
0.0311279296875,
-0.0440673828125,
-0.0198211669921875,
-0.0211944580078125,
0.00922393798828125,
0.061859130859375,
0.00817108154296875,
0.011932373046875,
-0.048614501953125,
-0.01373291015625,
-0.01274871826171875,
-0.038543701171875,
0.0200042724609375,
0.039886474609375,
0.03717041015625,
-0.06292724609375,
0.047119140625,
-0.0281829833984375,
0.0292510986328125,
-0.01274871826171875,
-0.00962066650390625,
0.0784912109375,
-0.045318603515625,
-0.01129913330078125,
-0.00487518310546875,
0.07574462890625,
0.0582275390625,
0.0258026123046875,
0.0283203125,
-0.0106658935546875,
0.019378662109375,
-0.016632080078125,
-0.0494384765625,
0.0084686279296875,
0.020843505859375,
-0.050323486328125,
-0.035369873046875,
0.0086517333984375,
-0.08245849609375,
-0.014129638671875,
-0.0258331298828125,
-0.008941650390625,
-0.0004982948303222656,
-0.07415771484375,
0.003143310546875,
-0.00974273681640625,
0.0240631103515625,
0.0013446807861328125,
-0.023681640625,
0.03326416015625,
0.031402587890625,
0.061767578125,
0.0026760101318359375,
-0.007354736328125,
-0.001987457275390625,
-0.00812530517578125,
-0.0162506103515625,
0.044097900390625,
-0.04644775390625,
-0.04541015625,
0.009521484375,
0.012725830078125,
-0.01323699951171875,
-0.032623291015625,
0.06097412109375,
0.00653839111328125,
0.02484130859375,
-0.046173095703125,
-0.0170440673828125,
-0.0188751220703125,
0.0292510986328125,
-0.047821044921875,
0.1005859375,
0.01049041748046875,
-0.07989501953125,
0.02752685546875,
-0.05975341796875,
-0.036895751953125,
-0.01309967041015625,
-0.00846099853515625,
-0.049041748046875,
-0.00037097930908203125,
0.033233642578125,
0.049835205078125,
-0.025146484375,
0.01441192626953125,
-0.036895751953125,
-0.006740570068359375,
0.016510009765625,
-0.00118255615234375,
0.083984375,
0.029022216796875,
-0.02496337890625,
0.00469207763671875,
-0.064208984375,
-0.01197052001953125,
0.010955810546875,
-0.003627777099609375,
-0.0513916015625,
-0.031158447265625,
0.012420654296875,
0.029815673828125,
0.0272674560546875,
-0.06353759765625,
0.0172882080078125,
-0.047088623046875,
0.0003650188446044922,
0.0404052734375,
0.01039886474609375,
0.0263214111328125,
-0.0168304443359375,
0.055999755859375,
0.0200347900390625,
0.0293426513671875,
0.0024471282958984375,
-0.050018310546875,
-0.043792724609375,
-0.01535797119140625,
-0.0021839141845703125,
0.0496826171875,
-0.0494384765625,
0.0418701171875,
-0.033782958984375,
-0.04901123046875,
-0.038543701171875,
0.00852203369140625,
0.0308837890625,
0.01010894775390625,
0.016937255859375,
-0.02685546875,
-0.04931640625,
-0.05987548828125,
-0.009246826171875,
-0.01058197021484375,
0.01036834716796875,
0.049041748046875,
0.041748046875,
-0.0272979736328125,
0.06170654296875,
-0.054718017578125,
-0.0293121337890625,
-0.0183868408203125,
0.0025959014892578125,
0.04931640625,
0.0253448486328125,
0.055206298828125,
-0.052398681640625,
-0.048187255859375,
-0.0014772415161132812,
-0.06732177734375,
-0.011077880859375,
0.0062713623046875,
0.005237579345703125,
0.033935546875,
0.0173187255859375,
-0.0435791015625,
0.04083251953125,
0.045501708984375,
-0.035858154296875,
0.029144287109375,
0.0027713775634765625,
0.0249481201171875,
-0.11376953125,
0.0146484375,
0.021148681640625,
0.01702880859375,
-0.0210418701171875,
-0.0236968994140625,
-0.00995635986328125,
-0.01898193359375,
-0.031890869140625,
0.04510498046875,
-0.0250244140625,
-0.0007967948913574219,
-0.0025157928466796875,
-0.00791168212890625,
-0.0033626556396484375,
0.0404052734375,
0.0013427734375,
0.0489501953125,
0.06451416015625,
-0.0306854248046875,
0.010040283203125,
0.03594970703125,
-0.023681640625,
0.06231689453125,
-0.0621337890625,
-0.01010894775390625,
-0.01050567626953125,
0.02276611328125,
-0.057525634765625,
-0.0135345458984375,
0.03851318359375,
-0.039459228515625,
0.0034694671630859375,
-0.004222869873046875,
-0.032379150390625,
-0.038726806640625,
-0.048797607421875,
0.0283203125,
0.0267486572265625,
-0.017608642578125,
0.042938232421875,
0.035369873046875,
-0.0260009765625,
-0.05108642578125,
-0.05963134765625,
-0.00246429443359375,
-0.03143310546875,
-0.03497314453125,
-0.00496673583984375,
-0.0067901611328125,
-0.025177001953125,
0.0093994140625,
0.0066680908203125,
-0.001125335693359375,
-0.006885528564453125,
0.05010986328125,
0.0055389404296875,
-0.01288604736328125,
-0.015655517578125,
0.020782470703125,
-0.0227508544921875,
0.01239776611328125,
0.00164031982421875,
0.0199432373046875,
-0.02679443359375,
0.0026073455810546875,
-0.039642333984375,
0.03900146484375,
0.04901123046875,
-0.02484130859375,
0.052154541015625,
0.0494384765625,
-0.0234527587890625,
0.02178955078125,
-0.037750244140625,
-0.00821685791015625,
-0.0261993408203125,
0.002643585205078125,
-0.04254150390625,
-0.054656982421875,
0.05908203125,
-0.00026869773864746094,
0.0022258758544921875,
0.048004150390625,
0.024444580078125,
0.01369476318359375,
0.0657958984375,
0.044921875,
-0.029144287109375,
0.00930023193359375,
-0.0350341796875,
-0.00008237361907958984,
-0.062255859375,
-0.0213165283203125,
-0.051788330078125,
-0.00896453857421875,
-0.06927490234375,
-0.01322174072265625,
0.01073455810546875,
-0.0288238525390625,
-0.0205841064453125,
0.036529541015625,
-0.037841796875,
0.0179290771484375,
0.0379638671875,
0.0020275115966796875,
-0.0016012191772460938,
0.00890350341796875,
-0.00897216796875,
-0.020294189453125,
-0.04498291015625,
-0.031768798828125,
0.089599609375,
0.0333251953125,
0.033050537109375,
0.0014352798461914062,
0.064697265625,
0.00492095947265625,
0.0126953125,
-0.01435089111328125,
0.05108642578125,
-0.0248565673828125,
-0.0267181396484375,
-0.000017702579498291016,
-0.02850341796875,
-0.07708740234375,
-0.016082763671875,
-0.0059356689453125,
-0.033935546875,
0.0577392578125,
-0.01654052734375,
-0.032928466796875,
0.0167083740234375,
-0.02618408203125,
0.0577392578125,
0.01546478271484375,
-0.00806427001953125,
-0.0189056396484375,
-0.06304931640625,
0.01029205322265625,
0.01401519775390625,
0.028289794921875,
-0.0276336669921875,
-0.0173187255859375,
0.074951171875,
-0.0230255126953125,
0.08740234375,
-0.0277252197265625,
0.0037899017333984375,
0.0249176025390625,
-0.0213623046875,
0.01751708984375,
0.00916290283203125,
-0.0273284912109375,
0.057281494140625,
0.0078277587890625,
-0.02740478515625,
-0.03125,
0.0709228515625,
-0.07476806640625,
-0.0068817138671875,
-0.055389404296875,
-0.019073486328125,
0.00588226318359375,
0.01264190673828125,
0.007587432861328125,
0.0222930908203125,
0.00791168212890625,
0.01922607421875,
0.0256500244140625,
-0.02886962890625,
0.0276947021484375,
0.0222625732421875,
-0.0088958740234375,
-0.072265625,
0.07269287109375,
0.0255889892578125,
-0.00965118408203125,
0.004917144775390625,
0.01422882080078125,
-0.0264739990234375,
0.01059722900390625,
-0.0196990966796875,
0.044921875,
-0.036895751953125,
-0.028167724609375,
-0.046875,
0.0069732666015625,
-0.04168701171875,
-0.01253509521484375,
-0.0306854248046875,
-0.03802490234375,
-0.0207672119140625,
-0.0206146240234375,
0.044586181640625,
0.0408935546875,
-0.0276947021484375,
0.0158538818359375,
-0.037322998046875,
0.005462646484375,
-0.0015935897827148438,
0.042236328125,
-0.015899658203125,
-0.01788330078125,
-0.0086212158203125,
0.0024776458740234375,
0.00745391845703125,
-0.056976318359375,
0.043060302734375,
0.0069732666015625,
0.01526641845703125,
0.0197601318359375,
0.013336181640625,
0.036895751953125,
0.006359100341796875,
0.0660400390625,
0.00897979736328125,
-0.046722412109375,
0.0645751953125,
-0.035369873046875,
0.03680419921875,
0.058837890625,
0.0506591796875,
-0.037933349609375,
-0.0270843505859375,
-0.07073974609375,
-0.07562255859375,
0.043670654296875,
0.017364501953125,
0.014190673828125,
-0.01523590087890625,
0.0377197265625,
0.005855560302734375,
0.0273284912109375,
-0.0660400390625,
-0.05029296875,
-0.02642822265625,
-0.027099609375,
-0.0042266845703125,
-0.032379150390625,
-0.00661468505859375,
-0.029144287109375,
0.06683349609375,
-0.0019168853759765625,
0.0198974609375,
0.00986480712890625,
0.021697998046875,
-0.01160430908203125,
0.016845703125,
0.02789306640625,
0.0233917236328125,
-0.021148681640625,
-0.006793975830078125,
0.017425537109375,
-0.037384033203125,
-0.0004382133483886719,
0.016021728515625,
-0.034576416015625,
0.00424957275390625,
0.0118865966796875,
0.0672607421875,
0.0198974609375,
-0.0206451416015625,
0.048614501953125,
-0.0149688720703125,
-0.0181732177734375,
-0.049041748046875,
-0.01430511474609375,
-0.01264190673828125,
0.00887298583984375,
0.01526641845703125,
0.01788330078125,
0.0007295608520507812,
-0.004608154296875,
0.017486572265625,
0.011627197265625,
-0.03131103515625,
-0.036407470703125,
0.037261962890625,
0.0172271728515625,
0.00278472900390625,
0.03558349609375,
-0.0091552734375,
-0.0210723876953125,
0.047088623046875,
0.017486572265625,
0.08062744140625,
-0.0279998779296875,
0.03973388671875,
0.07073974609375,
0.02960205078125,
-0.0013456344604492188,
0.051788330078125,
-0.01165008544921875,
-0.044525146484375,
-0.033966064453125,
-0.04962158203125,
-0.0168304443359375,
0.0017070770263671875,
-0.07354736328125,
0.023834228515625,
-0.037933349609375,
-0.018768310546875,
-0.017730712890625,
0.0188446044921875,
-0.04217529296875,
0.0239410400390625,
-0.005252838134765625,
0.06536865234375,
-0.1019287109375,
0.04150390625,
0.0733642578125,
-0.05804443359375,
-0.05609130859375,
-0.007160186767578125,
0.01396942138671875,
-0.0279388427734375,
0.0281829833984375,
0.031646728515625,
0.0152435302734375,
-0.0097198486328125,
-0.0297088623046875,
-0.0645751953125,
0.0643310546875,
0.0029296875,
-0.016143798828125,
0.04144287109375,
0.0250091552734375,
0.036956787109375,
-0.02398681640625,
0.037933349609375,
0.0340576171875,
0.04840087890625,
-0.005985260009765625,
-0.05517578125,
0.0172271728515625,
-0.0550537109375,
-0.00284576416015625,
0.00540924072265625,
-0.054107666015625,
0.0438232421875,
-0.00006681680679321289,
-0.0028057098388671875,
-0.01015472412109375,
0.0670166015625,
0.02093505859375,
0.034759521484375,
0.042449951171875,
0.0640869140625,
0.03253173828125,
-0.014190673828125,
0.08685302734375,
-0.01555633544921875,
0.00806427001953125,
0.056549072265625,
-0.016082763671875,
0.06646728515625,
0.022491455078125,
-0.030609130859375,
0.05078125,
0.037200927734375,
0.0115966796875,
0.020294189453125,
-0.01861572265625,
-0.0277099609375,
-0.00360107421875,
-0.03717041015625,
-0.043060302734375,
0.0305328369140625,
0.0188446044921875,
-0.01363372802734375,
-0.005035400390625,
0.0210418701171875,
0.03802490234375,
0.0175933837890625,
-0.017730712890625,
0.060272216796875,
0.01776123046875,
-0.036865234375,
0.038726806640625,
-0.019439697265625,
0.06396484375,
-0.039825439453125,
0.009918212890625,
-0.0379638671875,
0.01029205322265625,
-0.0372314453125,
-0.08416748046875,
0.048248291015625,
0.0072784423828125,
-0.01424407958984375,
-0.021575927734375,
0.047882080078125,
-0.029296875,
-0.058807373046875,
0.02178955078125,
0.0176544189453125,
0.0214385986328125,
-0.00392913818359375,
-0.076171875,
0.0307159423828125,
0.0184173583984375,
-0.03814697265625,
0.016143798828125,
0.0219268798828125,
-0.011871337890625,
0.0401611328125,
0.04254150390625,
0.021514892578125,
-0.02374267578125,
0.0252838134765625,
0.065673828125,
-0.048431396484375,
-0.048095703125,
-0.044586181640625,
0.05322265625,
-0.033416748046875,
-0.049102783203125,
0.080810546875,
0.05584716796875,
0.058990478515625,
-0.007537841796875,
0.0643310546875,
-0.0082550048828125,
0.056243896484375,
0.00394439697265625,
0.040496826171875,
-0.049224853515625,
-0.006671905517578125,
-0.0562744140625,
-0.0760498046875,
-0.04949951171875,
0.05206298828125,
-0.031402587890625,
-0.00264739990234375,
0.02154541015625,
0.068115234375,
0.0097198486328125,
0.0104827880859375,
-0.006866455078125,
0.0311126708984375,
-0.003246307373046875,
0.03515625,
0.0203399658203125,
-0.0517578125,
0.0195770263671875,
-0.051666259765625,
-0.032470703125,
0.0129852294921875,
-0.066650390625,
-0.06866455078125,
-0.054290771484375,
-0.060150146484375,
-0.03082275390625,
-0.01043701171875,
0.07293701171875,
0.0182342529296875,
-0.0679931640625,
-0.04180908203125,
0.00780487060546875,
0.0048675537109375,
-0.0213775634765625,
-0.0179901123046875,
0.041595458984375,
0.01160430908203125,
-0.049835205078125,
0.0017480850219726562,
0.0292510986328125,
-0.0057830810546875,
-0.003429412841796875,
-0.01125335693359375,
-0.0218658447265625,
0.0014314651489257812,
0.046173095703125,
0.0374755859375,
-0.039154052734375,
0.01049041748046875,
0.007694244384765625,
-0.004726409912109375,
0.00527191162109375,
0.0199127197265625,
-0.046142578125,
0.0223236083984375,
0.03753662109375,
0.0283203125,
0.0285797119140625,
-0.00962066650390625,
0.012908935546875,
-0.06280517578125,
0.03570556640625,
0.00006288290023803711,
0.0218658447265625,
0.041961669921875,
-0.0211944580078125,
0.049407958984375,
0.03375244140625,
-0.0258636474609375,
-0.0654296875,
-0.008941650390625,
-0.0894775390625,
0.004177093505859375,
0.1011962890625,
-0.0041961669921875,
-0.0282440185546875,
-0.0002237558364868164,
-0.0157012939453125,
0.016082763671875,
-0.041961669921875,
0.0262603759765625,
0.0318603515625,
0.008514404296875,
-0.0221405029296875,
-0.0209503173828125,
0.03912353515625,
0.035552978515625,
-0.06793212890625,
0.005706787109375,
0.0253753662109375,
0.006137847900390625,
0.0149078369140625,
0.059295654296875,
-0.023040771484375,
0.0163421630859375,
-0.01033782958984375,
0.0247039794921875,
0.01331329345703125,
0.00019979476928710938,
-0.024200439453125,
0.0011310577392578125,
-0.0234832763671875,
-0.0186309814453125
]
] |
HuggingFaceH4/testing_alpaca_small | 2023-04-12T21:55:05.000Z | [
"region:us"
] | HuggingFaceH4 | null | null | 0 | 1,056 | 2023-04-12T21:55:01 | ---
dataset_info:
features:
- name: prompt
dtype: string
- name: completion
dtype: string
splits:
- name: train
num_bytes: 33856
num_examples: 100
- name: test
num_bytes: 32475
num_examples: 100
download_size: 52543
dataset_size: 66331
---
# Dataset Card for "testing_alpaca_small"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 454 | [
[
-0.05889892578125,
-0.037384033203125,
0.011993408203125,
0.0145721435546875,
-0.0275115966796875,
-0.0280914306640625,
0.0165557861328125,
-0.01313018798828125,
0.0726318359375,
0.0203857421875,
-0.058013916015625,
-0.0426025390625,
-0.040771484375,
-0.0099945068359375,
-0.0238494873046875,
0.0960693359375,
-0.0014247894287109375,
-0.00580596923828125,
-0.007030487060546875,
-0.0335693359375,
-0.035888671875,
-0.0166778564453125,
-0.061676025390625,
-0.030670166015625,
0.07220458984375,
0.06329345703125,
0.048828125,
0.04632568359375,
0.050048828125,
0.006927490234375,
0.0074310302734375,
-0.0120086669921875,
-0.0153350830078125,
-0.033111572265625,
0.0016717910766601562,
-0.045135498046875,
-0.06561279296875,
0.0178375244140625,
0.037445068359375,
0.047088623046875,
-0.016265869140625,
0.07464599609375,
-0.0096435546875,
0.037139892578125,
-0.034454345703125,
0.0399169921875,
-0.011810302734375,
-0.002719879150390625,
-0.047576904296875,
-0.0003151893615722656,
0.013214111328125,
-0.043914794921875,
-0.01554107666015625,
-0.07269287109375,
0.0178070068359375,
0.0170745849609375,
0.051361083984375,
0.024871826171875,
-0.007843017578125,
-0.038055419921875,
-0.0252838134765625,
0.0074920654296875,
-0.0104827880859375,
0.006359100341796875,
0.061248779296875,
0.025238037109375,
-0.007720947265625,
-0.03582763671875,
-0.042877197265625,
0.0002110004425048828,
-0.006610870361328125,
-0.002452850341796875,
-0.007476806640625,
-0.016754150390625,
0.037109375,
0.039764404296875,
-0.032989501953125,
-0.002765655517578125,
-0.048248291015625,
-0.0228424072265625,
0.03662109375,
0.004505157470703125,
0.0166015625,
0.005146026611328125,
0.01509857177734375,
-0.0299224853515625,
-0.04559326171875,
0.01100921630859375,
0.03509521484375,
0.038818359375,
-0.07952880859375,
0.061553955078125,
-0.00423431396484375,
0.0304412841796875,
0.0008172988891601562,
0.027740478515625,
0.05340576171875,
-0.0171051025390625,
-0.026702880859375,
0.0031414031982421875,
0.02880859375,
0.0125732421875,
-0.01067352294921875,
0.0278778076171875,
0.0012769699096679688,
0.0206298828125,
-0.00933074951171875,
-0.07928466796875,
-0.048858642578125,
0.015472412109375,
-0.06268310546875,
-0.02117919921875,
0.01132965087890625,
-0.080810546875,
-0.03460693359375,
-0.006378173828125,
0.0178070068359375,
0.004474639892578125,
-0.01971435546875,
-0.013580322265625,
-0.02850341796875,
0.039825439453125,
-0.00586700439453125,
-0.058349609375,
0.039306640625,
0.0423583984375,
0.04034423828125,
0.018707275390625,
-0.022735595703125,
-0.06414794921875,
0.003215789794921875,
-0.0190277099609375,
0.0662841796875,
-0.0284576416015625,
-0.03167724609375,
-0.0019464492797851562,
0.043212890625,
0.0081787109375,
-0.022125244140625,
0.060394287109375,
-0.0150909423828125,
-0.01251983642578125,
-0.04986572265625,
-0.0245208740234375,
-0.0012960433959960938,
0.0174102783203125,
-0.081298828125,
0.06744384765625,
0.0231781005859375,
-0.04046630859375,
0.0311126708984375,
-0.08367919921875,
-0.0177154541015625,
0.0226593017578125,
-0.0092010498046875,
-0.041046142578125,
0.005039215087890625,
-0.007411956787109375,
0.021240234375,
-0.0232391357421875,
-0.009979248046875,
-0.059783935546875,
-0.0296478271484375,
0.006938934326171875,
0.016693115234375,
0.054229736328125,
0.00940704345703125,
0.0124053955078125,
0.002231597900390625,
-0.07318115234375,
-0.006591796875,
0.0311126708984375,
-0.005191802978515625,
-0.025146484375,
-0.029327392578125,
0.008270263671875,
-0.019134521484375,
0.0130615234375,
-0.0309906005859375,
0.0364990234375,
0.0125579833984375,
-0.003589630126953125,
0.04254150390625,
0.010162353515625,
0.0310516357421875,
-0.033477783203125,
0.034698486328125,
-0.016021728515625,
0.039459228515625,
0.022064208984375,
-0.055419921875,
-0.0633544921875,
-0.00882720947265625,
0.04949951171875,
0.0467529296875,
-0.03240966796875,
0.046478271484375,
0.017547607421875,
-0.057769775390625,
-0.033782958984375,
0.01387786865234375,
0.00853729248046875,
0.00991058349609375,
0.0181884765625,
-0.049224853515625,
-0.039215087890625,
-0.0621337890625,
0.041351318359375,
-0.01299285888671875,
-0.00820159912109375,
0.0179290771484375,
0.07318115234375,
-0.04681396484375,
0.0401611328125,
-0.059783935546875,
-0.04559326171875,
0.01036834716796875,
-0.00794219970703125,
0.0213623046875,
0.048797607421875,
0.07476806640625,
-0.035430908203125,
-0.0108795166015625,
-0.038726806640625,
-0.0133514404296875,
-0.004730224609375,
0.03265380859375,
-0.0303955078125,
-0.021270751953125,
-0.0009145736694335938,
-0.0418701171875,
0.05828857421875,
0.07244873046875,
-0.04852294921875,
0.001323699951171875,
-0.00176239013671875,
0.0156707763671875,
-0.0635986328125,
0.0199127197265625,
-0.014129638671875,
0.0012598037719726562,
-0.01322174072265625,
0.01061248779296875,
0.0098724365234375,
-0.01450347900390625,
-0.0067901611328125,
0.0406494140625,
-0.0176544189453125,
-0.015625,
-0.0161895751953125,
-0.01180267333984375,
-0.00862884521484375,
0.019683837890625,
-0.012908935546875,
0.05767822265625,
0.05010986328125,
-0.033599853515625,
0.05029296875,
0.0467529296875,
0.00650787353515625,
0.03887939453125,
-0.05828857421875,
0.017486572265625,
0.0039520263671875,
0.034515380859375,
-0.044097900390625,
-0.052886962890625,
0.056488037109375,
-0.0093994140625,
0.009246826171875,
-0.0295257568359375,
-0.04559326171875,
-0.050750732421875,
-0.0343017578125,
0.061492919921875,
0.0443115234375,
-0.055999755859375,
0.0271453857421875,
0.048797607421875,
-0.001377105712890625,
0.002460479736328125,
-0.062255859375,
-0.0145416259765625,
-0.0200042724609375,
-0.0019426345825195312,
0.01074981689453125,
-0.03497314453125,
-0.005641937255859375,
-0.014404296875,
0.045135498046875,
-0.0198211669921875,
-0.0134735107421875,
0.03607177734375,
0.0128631591796875,
-0.0140838623046875,
0.041900634765625,
0.0031642913818359375,
-0.036376953125,
0.000012218952178955078,
0.018707275390625,
0.034393310546875,
-0.02099609375,
-0.01806640625,
-0.025177001953125,
0.040771484375,
-0.004474639892578125,
-0.009857177734375,
0.042755126953125,
0.06182861328125,
-0.052459716796875,
-0.0189056396484375,
-0.0250091552734375,
-0.017242431640625,
-0.0305938720703125,
-0.01056671142578125,
-0.021697998046875,
-0.034881591796875,
0.054351806640625,
0.00044274330139160156,
-0.021636962890625,
0.06744384765625,
0.05413818359375,
0.0011243820190429688,
0.034881591796875,
0.0687255859375,
-0.0162200927734375,
0.023712158203125,
-0.0279541015625,
-0.0192108154296875,
-0.047454833984375,
-0.01043701171875,
-0.058624267578125,
-0.0225067138671875,
-0.052978515625,
-0.036102294921875,
-0.0143585205078125,
-0.009124755859375,
-0.0179290771484375,
0.035552978515625,
-0.04791259765625,
0.032958984375,
0.052886962890625,
0.01462554931640625,
-0.00016748905181884766,
-0.0243988037109375,
0.022613525390625,
0.0243072509765625,
-0.044189453125,
-0.0230712890625,
0.08612060546875,
0.038543701171875,
0.06243896484375,
0.01265716552734375,
0.048248291015625,
0.0250701904296875,
0.046173095703125,
-0.045135498046875,
0.0203857421875,
-0.0028247833251953125,
-0.037750244140625,
-0.01056671142578125,
-0.006870269775390625,
-0.07232666015625,
-0.0361328125,
-0.0248565673828125,
-0.01229095458984375,
0.04290771484375,
0.030670166015625,
-0.0301513671875,
0.01200103759765625,
-0.057403564453125,
0.07232666015625,
0.00711822509765625,
0.0164642333984375,
0.0016307830810546875,
-0.032684326171875,
0.0169525146484375,
-0.0015773773193359375,
0.02069091796875,
-0.02197265625,
-0.0218505859375,
0.079345703125,
-0.041473388671875,
0.0833740234375,
-0.033294677734375,
-0.010406494140625,
0.0296478271484375,
-0.01190185546875,
0.029693603515625,
0.035308837890625,
0.0009474754333496094,
0.00833892822265625,
0.0156097412109375,
-0.04571533203125,
-0.004791259765625,
0.04827880859375,
-0.056182861328125,
0.0225982666015625,
-0.0303955078125,
-0.03643798828125,
-0.01016998291015625,
0.0211944580078125,
0.0156402587890625,
0.0269622802734375,
-0.030487060546875,
-0.006591796875,
0.051361083984375,
0.01097869873046875,
0.01824951171875,
0.01236724853515625,
-0.00994873046875,
-0.021270751953125,
0.055328369140625,
0.007625579833984375,
-0.031829833984375,
-0.004024505615234375,
0.03350830078125,
-0.0024814605712890625,
-0.04071044921875,
-0.044586181640625,
0.0255279541015625,
-0.03741455078125,
-0.038726806640625,
-0.0112762451171875,
-0.0024280548095703125,
-0.0269927978515625,
-0.00675201416015625,
-0.030853271484375,
-0.04071044921875,
-0.050994873046875,
-0.03704833984375,
0.0628662109375,
0.04180908203125,
-0.041229248046875,
0.048980712890625,
-0.054962158203125,
0.0438232421875,
0.0291290283203125,
0.053497314453125,
-0.0211334228515625,
-0.0262603759765625,
-0.01337432861328125,
0.0007863044738769531,
-0.0014390945434570312,
-0.051361083984375,
-0.004619598388671875,
0.0212554931640625,
0.031463623046875,
0.0210418701171875,
-0.0109710693359375,
0.04541015625,
-0.0102386474609375,
0.041473388671875,
0.0147857666015625,
-0.04278564453125,
0.06256103515625,
-0.0193939208984375,
0.0099945068359375,
0.076904296875,
0.02703857421875,
-0.006793975830078125,
0.0080413818359375,
-0.06488037109375,
-0.034423828125,
0.016937255859375,
0.0097198486328125,
0.00933074951171875,
0.00965118408203125,
0.04864501953125,
0.0265960693359375,
0.01345062255859375,
-0.054290771484375,
-0.056610107421875,
0.0013170242309570312,
-0.02520751953125,
-0.00516510009765625,
-0.032684326171875,
-0.049957275390625,
-0.041534423828125,
0.0496826171875,
-0.0252685546875,
0.02825927734375,
-0.0007572174072265625,
0.0265655517578125,
-0.0159912109375,
-0.007541656494140625,
0.03570556640625,
0.03350830078125,
-0.033447265625,
-0.00850677490234375,
0.017333984375,
-0.04315185546875,
-0.0021038055419921875,
0.0484619140625,
-0.0195770263671875,
-0.0160064697265625,
0.03387451171875,
0.043182373046875,
-0.031494140625,
-0.01233673095703125,
0.037322998046875,
-0.0345458984375,
-0.01523590087890625,
-0.0296783447265625,
0.0132293701171875,
0.002773284912109375,
0.00809478759765625,
0.00505828857421875,
-0.0030689239501953125,
0.0211029052734375,
-0.050445556640625,
0.0256805419921875,
0.003139495849609375,
-0.0394287109375,
-0.02410888671875,
0.0231781005859375,
0.03240966796875,
-0.0294342041015625,
0.042144775390625,
-0.031341552734375,
-0.0035419464111328125,
0.06854248046875,
0.02215576171875,
0.0276641845703125,
-0.0219573974609375,
0.027587890625,
0.0307464599609375,
0.031951904296875,
0.01151275634765625,
0.049163818359375,
-0.010589599609375,
-0.044189453125,
0.004261016845703125,
-0.025787353515625,
-0.037750244140625,
-0.007373809814453125,
-0.0675048828125,
0.0232696533203125,
-0.043487548828125,
-0.0245819091796875,
-0.0042877197265625,
0.029937744140625,
-0.073974609375,
0.0243072509765625,
0.0117340087890625,
0.0985107421875,
-0.07354736328125,
0.07232666015625,
0.03875732421875,
-0.035125732421875,
-0.061492919921875,
-0.0192718505859375,
-0.0017194747924804688,
-0.06951904296875,
-0.00749969482421875,
0.0116729736328125,
0.025115966796875,
-0.04193115234375,
-0.05206298828125,
-0.05572509765625,
0.093994140625,
0.014495849609375,
-0.045806884765625,
0.0299224853515625,
-0.01267242431640625,
0.024871826171875,
-0.036346435546875,
0.01140594482421875,
0.0555419921875,
0.053009033203125,
0.00736236572265625,
-0.048736572265625,
0.01568603515625,
-0.027923583984375,
-0.017547607421875,
0.020599365234375,
-0.07342529296875,
0.031463623046875,
-0.01010894775390625,
0.01131439208984375,
0.023345947265625,
0.057891845703125,
0.024139404296875,
0.040863037109375,
0.048187255859375,
0.043365478515625,
0.07830810546875,
-0.026336669921875,
0.07440185546875,
0.0196075439453125,
0.030242919921875,
0.09149169921875,
-0.01189422607421875,
0.03631591796875,
0.04962158203125,
-0.003299713134765625,
0.0223846435546875,
0.06304931640625,
-0.038787841796875,
0.033294677734375,
0.0254364013671875,
0.006900787353515625,
0.003154754638671875,
-0.018310546875,
-0.06475830078125,
0.0225372314453125,
0.031768798828125,
-0.032318115234375,
0.0118255615234375,
0.00750732421875,
0.00183868408203125,
-0.0283660888671875,
-0.04913330078125,
0.035980224609375,
0.00852203369140625,
-0.01175689697265625,
-0.007080078125,
-0.0066375732421875,
0.037139892578125,
-0.064697265625,
-0.0152740478515625,
-0.00925445556640625,
0.015472412109375,
-0.0233154296875,
-0.058837890625,
0.05340576171875,
-0.0280609130859375,
-0.01506805419921875,
0.0278472900390625,
0.05218505859375,
-0.017120361328125,
-0.06243896484375,
0.035980224609375,
0.0230255126953125,
0.0028896331787109375,
0.016998291015625,
-0.077880859375,
0.029144287109375,
-0.02496337890625,
-0.01727294921875,
0.01678466796875,
0.006870269775390625,
0.0030117034912109375,
0.046478271484375,
0.042694091796875,
0.01367950439453125,
-0.0214080810546875,
0.027618408203125,
0.067626953125,
-0.03936767578125,
-0.037811279296875,
-0.0333251953125,
0.00914764404296875,
-0.01244354248046875,
-0.05133056640625,
0.036102294921875,
0.060943603515625,
0.056671142578125,
-0.010345458984375,
0.038330078125,
-0.030792236328125,
0.038726806640625,
-0.0201263427734375,
0.047637939453125,
-0.0218505859375,
-0.026458740234375,
-0.0015478134155273438,
-0.049102783203125,
-0.046356201171875,
0.049530029296875,
0.0186920166015625,
-0.00821685791015625,
0.04071044921875,
0.0655517578125,
-0.022247314453125,
0.0199127197265625,
-0.0149688720703125,
0.0130157470703125,
0.015045166015625,
0.033111572265625,
0.02423095703125,
-0.05352783203125,
0.0284271240234375,
-0.04058837890625,
-0.055450439453125,
0.011688232421875,
-0.07666015625,
-0.0693359375,
-0.03271484375,
-0.042755126953125,
-0.0298309326171875,
-0.0134735107421875,
0.0657958984375,
0.063232421875,
-0.07818603515625,
-0.0156707763671875,
0.0159759521484375,
0.01107025146484375,
-0.01345062255859375,
-0.005970001220703125,
0.055023193359375,
0.043487548828125,
-0.035186767578125,
-0.0137939453125,
-0.011322021484375,
0.034698486328125,
-0.004238128662109375,
0.002117156982421875,
0.0011186599731445312,
0.00630950927734375,
0.0218505859375,
0.0447998046875,
-0.0009889602661132812,
-0.039642333984375,
-0.05279541015625,
-0.00261688232421875,
-0.006305694580078125,
0.0616455078125,
-0.0254364013671875,
-0.0177764892578125,
0.026123046875,
0.02423095703125,
0.037322998046875,
-0.019866943359375,
0.0224609375,
-0.0328369140625,
0.039764404296875,
-0.0024280548095703125,
0.052520751953125,
0.004180908203125,
-0.035003662109375,
0.07305908203125,
0.01178741455078125,
-0.03875732421875,
-0.04254150390625,
0.0010461807250976562,
-0.11041259765625,
0.0298309326171875,
0.0633544921875,
0.0110626220703125,
-0.046844482421875,
0.00511932373046875,
-0.0310821533203125,
0.0146636962890625,
-0.04803466796875,
0.039825439453125,
0.0292816162109375,
0.003665924072265625,
-0.007015228271484375,
-0.0255889892578125,
0.04852294921875,
-0.02001953125,
-0.09716796875,
-0.00814056396484375,
0.0142059326171875,
0.013092041015625,
0.02105712890625,
0.07208251953125,
-0.0026569366455078125,
0.0291748046875,
0.016082763671875,
0.01480865478515625,
-0.0098419189453125,
-0.0246734619140625,
-0.021240234375,
0.0017099380493164062,
-0.006526947021484375,
-0.047149658203125
]
] |
pg19 | 2023-07-28T09:21:25.000Z | [
"task_categories:text-generation",
"task_ids:language-modeling",
"annotations_creators:expert-generated",
"language_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:en",
"license:apache-2.0",
"arxiv:1911.05507",
"region:us"
] | null | This repository contains the PG-19 language modeling benchmark.
It includes a set of books extracted from the Project Gutenberg books library, that were published before 1919.
It also contains metadata of book titles and publication dates.
PG-19 is over double the size of the Billion Word benchmark and contains documents that are 20X longer, on average, than the WikiText long-range language modelling benchmark.
Books are partitioned into a train, validation, and test set. Book metadata is stored in metadata.csv which contains (book_id, short_book_title, publication_date).
Unlike prior benchmarks, we do not constrain the vocabulary size --- i.e. mapping rare words to an UNK token --- but instead release the data as an open-vocabulary benchmark. The only processing of the text that has been applied is the removal of boilerplate license text, and the mapping of offensive discriminatory words as specified by Ofcom to placeholder tokens. Users are free to model the data at the character-level, subword-level, or via any mechanism that can model an arbitrary string of text.
To compare models we propose to continue measuring the word-level perplexity, by calculating the total likelihood of the dataset (via any chosen subword vocabulary or character-based scheme) divided by the number of tokens --- specified below in the dataset statistics table.
One could use this dataset for benchmarking long-range language models, or use it to pre-train for other natural language processing tasks which require long-range reasoning, such as LAMBADA or NarrativeQA. We would not recommend using this dataset to train a general-purpose language model, e.g. for applications to a production-system dialogue agent, due to the dated linguistic style of old texts and the inherent biases present in historical writing. | @article{raecompressive2019,
author = {Rae, Jack W and Potapenko, Anna and Jayakumar, Siddhant M and
Hillier, Chloe and Lillicrap, Timothy P},
title = {Compressive Transformers for Long-Range Sequence Modelling},
journal = {arXiv preprint},
url = {https://arxiv.org/abs/1911.05507},
year = {2019},
} | 25 | 1,051 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- expert-generated
language:
- en
license:
- apache-2.0
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- text-generation
task_ids:
- language-modeling
paperswithcode_id: pg-19
pretty_name: PG-19
dataset_info:
features:
- name: short_book_title
dtype: string
- name: publication_date
dtype: int32
- name: url
dtype: string
- name: text
dtype: string
splits:
- name: train
num_bytes: 11453688452
num_examples: 28602
- name: validation
num_bytes: 17402295
num_examples: 50
- name: test
num_bytes: 40482852
num_examples: 100
download_size: 11740397875
dataset_size: 11511573599
---
# Dataset Card for "pg19"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://github.com/deepmind/pg19](https://github.com/deepmind/pg19)
- **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Paper:** [Compressive Transformers for Long-Range Sequence Modelling](https://arxiv.org/abs/1911.05507)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of downloaded dataset files:** 11.74 GB
- **Size of the generated dataset:** 11.51 GB
- **Total amount of disk used:** 23.25 GB
### Dataset Summary
This repository contains the PG-19 language modeling benchmark.
It includes a set of books extracted from the Project Gutenberg books library, that were published before 1919.
It also contains metadata of book titles and publication dates.
PG-19 is over double the size of the Billion Word benchmark and contains documents that are 20X longer, on average, than the WikiText long-range language modelling benchmark.
Books are partitioned into a train, validation, and test set. Book metadata is stored in metadata.csv which contains (book_id, short_book_title, publication_date).
Unlike prior benchmarks, we do not constrain the vocabulary size --- i.e. mapping rare words to an UNK token --- but instead release the data as an open-vocabulary benchmark. The only processing of the text that has been applied is the removal of boilerplate license text, and the mapping of offensive discriminatory words as specified by Ofcom to placeholder tokens. Users are free to model the data at the character-level, subword-level, or via any mechanism that can model an arbitrary string of text.
To compare models we propose to continue measuring the word-level perplexity, by calculating the total likelihood of the dataset (via any chosen subword vocabulary or character-based scheme) divided by the number of tokens --- specified below in the dataset statistics table.
One could use this dataset for benchmarking long-range language models, or use it to pre-train for other natural language processing tasks which require long-range reasoning, such as LAMBADA or NarrativeQA. We would not recommend using this dataset to train a general-purpose language model, e.g. for applications to a production-system dialogue agent, due to the dated linguistic style of old texts and the inherent biases present in historical writing.
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Dataset Structure
### Data Instances
#### default
- **Size of downloaded dataset files:** 11.74 GB
- **Size of the generated dataset:** 11.51 GB
- **Total amount of disk used:** 23.25 GB
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"publication_date": 1907,
"short_book_title": "La Fiammetta by Giovanni Boccaccio",
"text": "\"\\n\\n\\n\\nProduced by Ted Garvin, Dave Morgan and PG Distributed Proofreaders\\n\\n\\n\\n\\nLA FIAMMETTA\\n\\nBY\\n\\nGIOVANNI BOCCACCIO\\n...",
"url": "http://www.gutenberg.org/ebooks/10006"
}
```
### Data Fields
The data fields are the same among all splits.
#### default
- `short_book_title`: a `string` feature.
- `publication_date`: a `int32` feature.
- `url`: a `string` feature.
- `text`: a `string` feature.
### Data Splits
| name |train|validation|test|
|-------|----:|---------:|---:|
|default|28602| 50| 100|
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
The dataset is licensed under [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html).
### Citation Information
```
@article{raecompressive2019,
author = {Rae, Jack W and Potapenko, Anna and Jayakumar, Siddhant M and
Hillier, Chloe and Lillicrap, Timothy P},
title = {Compressive Transformers for Long-Range Sequence Modelling},
journal = {arXiv preprint},
url = {https://arxiv.org/abs/1911.05507},
year = {2019},
}
```
### Contributions
Thanks to [@thomwolf](https://github.com/thomwolf), [@lewtun](https://github.com/lewtun), [@lucidrains](https://github.com/lucidrains), [@lhoestq](https://github.com/lhoestq) for adding this dataset. | 8,105 | [
[
-0.04742431640625,
-0.045562744140625,
0.00923919677734375,
0.0162506103515625,
-0.0188140869140625,
-0.007843017578125,
-0.033721923828125,
-0.03070068359375,
0.0205230712890625,
0.03912353515625,
-0.061492919921875,
-0.060333251953125,
-0.04400634765625,
0.01702880859375,
-0.0272064208984375,
0.08392333984375,
-0.004512786865234375,
-0.0260467529296875,
-0.01824951171875,
-0.0104827880859375,
-0.0112457275390625,
-0.03558349609375,
-0.0232696533203125,
-0.0231781005859375,
0.0200347900390625,
0.02569580078125,
0.05560302734375,
0.0643310546875,
0.042755126953125,
0.021942138671875,
-0.00627899169921875,
-0.0011968612670898438,
-0.04388427734375,
-0.0103912353515625,
0.0001418590545654297,
-0.0157623291015625,
-0.044097900390625,
0.00394439697265625,
0.0577392578125,
0.047149658203125,
-0.0096435546875,
0.027313232421875,
0.01554107666015625,
0.06634521484375,
-0.0277252197265625,
0.0379638671875,
-0.0141448974609375,
-0.0023975372314453125,
-0.031280517578125,
0.0022563934326171875,
-0.0032634735107421875,
-0.0343017578125,
-0.007404327392578125,
-0.0560302734375,
0.022216796875,
-0.00247955322265625,
0.06597900390625,
0.019287109375,
-0.0021877288818359375,
-0.0128326416015625,
-0.033966064453125,
0.049774169921875,
-0.0645751953125,
0.0233001708984375,
0.046722412109375,
0.00916290283203125,
-0.0131378173828125,
-0.05224609375,
-0.057830810546875,
0.0082855224609375,
-0.0111236572265625,
0.0205230712890625,
-0.010711669921875,
-0.01111602783203125,
0.04962158203125,
0.062744140625,
-0.056640625,
-0.00045037269592285156,
-0.033050537109375,
-0.01233673095703125,
0.0841064453125,
0.0146484375,
0.0088043212890625,
-0.03607177734375,
-0.00917816162109375,
-0.033355712890625,
-0.031341552734375,
0.0092315673828125,
0.0545654296875,
0.03558349609375,
-0.05474853515625,
0.04534912109375,
-0.020599365234375,
0.04327392578125,
-0.0026073455810546875,
-0.0051116943359375,
0.05303955078125,
-0.044891357421875,
-0.0172882080078125,
-0.0134124755859375,
0.08502197265625,
0.038848876953125,
0.00844573974609375,
0.0008516311645507812,
-0.0011692047119140625,
-0.004608154296875,
0.0015869140625,
-0.06256103515625,
-0.028411865234375,
0.03814697265625,
-0.042633056640625,
-0.02374267578125,
0.00548553466796875,
-0.096435546875,
-0.030609130859375,
-0.029937744140625,
0.0137786865234375,
-0.03192138671875,
-0.0242767333984375,
0.019927978515625,
-0.0136871337890625,
0.028350830078125,
0.00725555419921875,
-0.0526123046875,
0.030242919921875,
0.0450439453125,
0.05169677734375,
-0.0012111663818359375,
-0.0301055908203125,
-0.009033203125,
-0.011871337890625,
-0.002017974853515625,
0.041778564453125,
-0.0155792236328125,
-0.036163330078125,
0.001708984375,
0.0301055908203125,
0.00553131103515625,
-0.0293121337890625,
0.0758056640625,
-0.0015869140625,
0.0262908935546875,
-0.0340576171875,
-0.041839599609375,
0.0012922286987304688,
0.015045166015625,
-0.05877685546875,
0.10394287109375,
0.027679443359375,
-0.069091796875,
0.01311492919921875,
-0.050811767578125,
-0.0269927978515625,
0.008697509765625,
0.0011758804321289062,
-0.04620361328125,
-0.00931549072265625,
0.0221099853515625,
0.0399169921875,
-0.0433349609375,
0.02679443359375,
-0.024383544921875,
-0.0211334228515625,
0.006694793701171875,
-0.016448974609375,
0.0880126953125,
0.00875091552734375,
-0.017974853515625,
-0.00632476806640625,
-0.07391357421875,
-0.014984130859375,
0.03387451171875,
-0.0166168212890625,
-0.003326416015625,
-0.0172271728515625,
0.0207672119140625,
0.00817108154296875,
0.0170745849609375,
-0.037628173828125,
0.042144775390625,
-0.01947021484375,
0.02691650390625,
0.045928955078125,
-0.0153045654296875,
0.02532958984375,
-0.03448486328125,
0.038909912109375,
-0.0009775161743164062,
0.0272674560546875,
-0.0054168701171875,
-0.042510986328125,
-0.04693603515625,
-0.022674560546875,
0.033935546875,
0.0423583984375,
-0.0546875,
0.07562255859375,
-0.045379638671875,
-0.05596923828125,
-0.043914794921875,
0.005390167236328125,
0.02294921875,
0.0394287109375,
0.034454345703125,
-0.037506103515625,
-0.042205810546875,
-0.052734375,
0.013275146484375,
-0.0132598876953125,
-0.0017871856689453125,
0.035125732421875,
0.051788330078125,
-0.01666259765625,
0.05670166015625,
-0.05328369140625,
-0.0235748291015625,
-0.017669677734375,
-0.0034351348876953125,
0.030364990234375,
0.046417236328125,
0.036041259765625,
-0.0550537109375,
-0.0196990966796875,
-0.029998779296875,
-0.06060791015625,
-0.0149993896484375,
-0.00409698486328125,
-0.01470184326171875,
0.01123046875,
0.03192138671875,
-0.05560302734375,
0.035797119140625,
0.04376220703125,
-0.037872314453125,
0.047637939453125,
-0.0036106109619140625,
0.003887176513671875,
-0.10406494140625,
0.025543212890625,
0.01087188720703125,
0.0036830902099609375,
-0.0333251953125,
-0.001995086669921875,
-0.004611968994140625,
-0.0100860595703125,
-0.0160980224609375,
0.049652099609375,
-0.021759033203125,
0.01233673095703125,
0.01554107666015625,
0.004154205322265625,
0.00511932373046875,
0.039520263671875,
-0.0091705322265625,
0.048797607421875,
0.0526123046875,
-0.03631591796875,
0.03192138671875,
0.049468994140625,
-0.033538818359375,
0.036163330078125,
-0.05145263671875,
0.002315521240234375,
-0.019317626953125,
0.033111572265625,
-0.060333251953125,
-0.0301971435546875,
0.04779052734375,
-0.042510986328125,
0.03582763671875,
-0.0188751220703125,
-0.051727294921875,
-0.0501708984375,
-0.036163330078125,
0.0217132568359375,
0.0382080078125,
-0.022247314453125,
0.035614013671875,
0.034576416015625,
-0.01195526123046875,
-0.037200927734375,
-0.068115234375,
0.0038890838623046875,
-0.01690673828125,
-0.04608154296875,
0.044158935546875,
-0.0229644775390625,
0.000354766845703125,
-0.000002682209014892578,
0.016510009765625,
0.0141448974609375,
-0.00782012939453125,
0.0263519287109375,
0.00980377197265625,
0.00313568115234375,
0.006595611572265625,
-0.00464630126953125,
-0.00934600830078125,
0.00603485107421875,
-0.0182952880859375,
0.0401611328125,
-0.00006842613220214844,
-0.00762939453125,
-0.0233306884765625,
0.0206146240234375,
0.0289459228515625,
-0.017974853515625,
0.044921875,
0.0631103515625,
-0.0239410400390625,
-0.00252532958984375,
-0.03106689453125,
-0.0099945068359375,
-0.034210205078125,
0.019317626953125,
-0.01190948486328125,
-0.056182861328125,
0.06597900390625,
0.01334381103515625,
0.0029163360595703125,
0.05682373046875,
0.040557861328125,
0.01262664794921875,
0.036651611328125,
0.0306549072265625,
-0.0225677490234375,
0.03204345703125,
-0.0472412109375,
0.0018625259399414062,
-0.063720703125,
-0.01959228515625,
-0.05242919921875,
-0.025115966796875,
-0.0738525390625,
-0.035736083984375,
-0.006305694580078125,
0.00937652587890625,
-0.0224761962890625,
0.03704833984375,
-0.05657958984375,
0.020751953125,
0.04376220703125,
0.00771331787109375,
0.0069122314453125,
0.0018634796142578125,
-0.000053763389587402344,
0.0048370361328125,
-0.042327880859375,
-0.02642822265625,
0.095458984375,
0.033416748046875,
0.0423583984375,
0.005817413330078125,
0.0631103515625,
0.017181396484375,
-0.002864837646484375,
-0.04705810546875,
0.045257568359375,
-0.0129241943359375,
-0.04150390625,
-0.0252532958984375,
-0.04168701171875,
-0.076171875,
-0.0174713134765625,
-0.0185699462890625,
-0.05133056640625,
0.04022216796875,
-0.00481414794921875,
-0.0226287841796875,
0.01983642578125,
-0.047027587890625,
0.0782470703125,
-0.00507354736328125,
-0.0269622802734375,
0.014404296875,
-0.06939697265625,
0.0119781494140625,
0.001708984375,
0.0215606689453125,
-0.01273345947265625,
0.0056304931640625,
0.0706787109375,
-0.04364013671875,
0.06494140625,
-0.018829345703125,
-0.0026874542236328125,
0.032867431640625,
-0.01611328125,
0.033538818359375,
0.007503509521484375,
-0.019500732421875,
0.03973388671875,
0.00641632080078125,
-0.03570556640625,
-0.02734375,
0.04803466796875,
-0.063232421875,
-0.0117340087890625,
-0.041229248046875,
-0.0462646484375,
0.0006256103515625,
0.022369384765625,
0.0271759033203125,
0.03717041015625,
-0.009918212890625,
0.0188140869140625,
0.0465087890625,
-0.0277252197265625,
0.026519775390625,
0.0152587890625,
-0.0213775634765625,
-0.0478515625,
0.06640625,
0.016845703125,
-0.0018558502197265625,
0.01873779296875,
0.01203155517578125,
-0.0249176025390625,
-0.0386962890625,
-0.034820556640625,
0.0177154541015625,
-0.0450439453125,
-0.0214691162109375,
-0.040313720703125,
-0.0180511474609375,
-0.049530029296875,
0.00655364990234375,
-0.01517486572265625,
-0.033294677734375,
-0.0250091552734375,
-0.01134490966796875,
0.0491943359375,
0.032135009765625,
-0.0247344970703125,
0.0142822265625,
-0.052459716796875,
0.0204925537109375,
-0.0041656494140625,
0.037750244140625,
-0.004924774169921875,
-0.041839599609375,
-0.024505615234375,
0.006137847900390625,
-0.0243377685546875,
-0.041015625,
0.032989501953125,
0.00884246826171875,
0.0221405029296875,
0.00211334228515625,
0.0218353271484375,
0.037628173828125,
-0.01554107666015625,
0.074462890625,
-0.0059356689453125,
-0.05194091796875,
0.031707763671875,
-0.046600341796875,
0.0433349609375,
0.0616455078125,
0.0419921875,
-0.034027099609375,
-0.011383056640625,
-0.062164306640625,
-0.07574462890625,
0.050933837890625,
0.027099609375,
0.0102386474609375,
0.00252532958984375,
0.0277252197265625,
0.00592803955078125,
0.016998291015625,
-0.04852294921875,
-0.043487548828125,
-0.02099609375,
-0.0321044921875,
-0.0174560546875,
-0.01309967041015625,
-0.0134124755859375,
-0.041015625,
0.058807373046875,
-0.01285552978515625,
0.040679931640625,
0.01959228515625,
0.0039825439453125,
-0.0034656524658203125,
0.010467529296875,
0.02655029296875,
0.03289794921875,
-0.0306854248046875,
-0.01629638671875,
-0.01126861572265625,
-0.06072998046875,
-0.01461029052734375,
0.0640869140625,
-0.017181396484375,
-0.01012420654296875,
0.0252227783203125,
0.06109619140625,
0.00518798828125,
-0.03094482421875,
0.034454345703125,
-0.01134490966796875,
-0.0308685302734375,
-0.03070068359375,
-0.0176849365234375,
0.00823211669921875,
0.0161285400390625,
0.0249786376953125,
-0.012237548828125,
0.00861358642578125,
-0.02960205078125,
0.0189361572265625,
0.00634002685546875,
-0.0149993896484375,
-0.02825927734375,
0.034149169921875,
0.0108489990234375,
-0.00954437255859375,
0.0628662109375,
-0.0243072509765625,
-0.032196044921875,
0.04150390625,
0.010711669921875,
0.06365966796875,
0.002178192138671875,
0.014923095703125,
0.046051025390625,
0.025390625,
-0.005657196044921875,
0.0335693359375,
-0.00928497314453125,
-0.04827880859375,
-0.027587890625,
-0.060272216796875,
-0.01277923583984375,
0.0211639404296875,
-0.053558349609375,
0.032379150390625,
-0.0263671875,
-0.0157012939453125,
0.0054779052734375,
0.0296478271484375,
-0.0626220703125,
0.015594482421875,
0.0083770751953125,
0.07806396484375,
-0.0673828125,
0.050750732421875,
0.031524658203125,
-0.055450439453125,
-0.0614013671875,
-0.0002543926239013672,
0.0113983154296875,
-0.037872314453125,
0.01025390625,
0.0108642578125,
0.04217529296875,
0.0020542144775390625,
-0.055206298828125,
-0.05755615234375,
0.093017578125,
0.02227783203125,
-0.04376220703125,
0.0009164810180664062,
0.027069091796875,
0.047698974609375,
-0.0073394775390625,
0.0196075439453125,
0.04046630859375,
0.045684814453125,
0.00554656982421875,
-0.0645751953125,
0.01971435546875,
-0.036956787109375,
-0.01666259765625,
0.02569580078125,
-0.056793212890625,
0.04901123046875,
0.009674072265625,
-0.005008697509765625,
0.009002685546875,
0.040679931640625,
0.015960693359375,
0.020843505859375,
0.01470184326171875,
0.07916259765625,
0.06549072265625,
-0.0301055908203125,
0.10357666015625,
-0.0279083251953125,
0.045196533203125,
0.0771484375,
-0.00312042236328125,
0.04473876953125,
0.0205841064453125,
-0.0419921875,
0.02508544921875,
0.05169677734375,
-0.0284881591796875,
0.022186279296875,
0.023223876953125,
-0.0020732879638671875,
0.0008220672607421875,
-0.01873779296875,
-0.048858642578125,
0.0213775634765625,
0.0208282470703125,
-0.030517578125,
-0.003673553466796875,
-0.00931549072265625,
0.01343536376953125,
-0.0098114013671875,
-0.0128326416015625,
0.04827880859375,
0.01136016845703125,
-0.02630615234375,
0.0478515625,
-0.0152740478515625,
0.05377197265625,
-0.0472412109375,
0.0092010498046875,
-0.021484375,
0.017669677734375,
-0.03167724609375,
-0.07513427734375,
0.030364990234375,
-0.011383056640625,
-0.0259857177734375,
-0.022186279296875,
0.046112060546875,
-0.036590576171875,
-0.05810546875,
0.017303466796875,
0.0238494873046875,
0.0186004638671875,
0.0039520263671875,
-0.08099365234375,
0.0304107666015625,
-0.0012960433959960938,
-0.036651611328125,
0.031463623046875,
0.036407470703125,
0.0035915374755859375,
0.03594970703125,
0.05010986328125,
0.0036525726318359375,
-0.0144500732421875,
0.0166015625,
0.0716552734375,
-0.052215576171875,
-0.022613525390625,
-0.0467529296875,
0.0599365234375,
-0.018157958984375,
-0.042510986328125,
0.056793212890625,
0.0606689453125,
0.08270263671875,
-0.0008096694946289062,
0.06292724609375,
-0.036651611328125,
0.041015625,
-0.0212249755859375,
0.06097412109375,
-0.045867919921875,
0.000011622905731201172,
-0.043304443359375,
-0.07275390625,
-0.031524658203125,
0.029510498046875,
-0.0200042724609375,
0.01432037353515625,
0.03472900390625,
0.072998046875,
0.002063751220703125,
0.01163482666015625,
-0.0011997222900390625,
0.020294189453125,
0.018157958984375,
0.034881591796875,
0.019561767578125,
-0.06988525390625,
0.03338623046875,
-0.041473388671875,
-0.01215362548828125,
0.0025806427001953125,
-0.0723876953125,
-0.054351806640625,
-0.068603515625,
-0.04351806640625,
-0.050933837890625,
0.0038013458251953125,
0.07379150390625,
0.03466796875,
-0.05914306640625,
-0.025238037109375,
-0.00933074951171875,
-0.0053558349609375,
-0.0115509033203125,
-0.022308349609375,
0.044219970703125,
0.0176849365234375,
-0.05291748046875,
0.00527191162109375,
-0.002960205078125,
0.00386810302734375,
-0.01409149169921875,
-0.0112762451171875,
-0.027191162109375,
-0.015411376953125,
0.035919189453125,
0.03619384765625,
-0.0277252197265625,
0.0032367706298828125,
-0.0050201416015625,
0.0025005340576171875,
0.01013946533203125,
0.035430908203125,
-0.0472412109375,
0.0265960693359375,
0.050933837890625,
0.0357666015625,
0.046417236328125,
-0.00238037109375,
0.026824951171875,
-0.041229248046875,
0.01329803466796875,
0.0156402587890625,
0.0274810791015625,
0.042938232421875,
-0.028533935546875,
0.06280517578125,
0.0280914306640625,
-0.05108642578125,
-0.06195068359375,
-0.006183624267578125,
-0.090576171875,
-0.0017175674438476562,
0.0947265625,
-0.006916046142578125,
-0.029693603515625,
0.0008563995361328125,
-0.00959014892578125,
0.02197265625,
-0.042510986328125,
0.043670654296875,
0.06024169921875,
0.018768310546875,
-0.011383056640625,
-0.036102294921875,
0.0487060546875,
0.00595855712890625,
-0.069580078125,
0.0225677490234375,
0.041015625,
0.006923675537109375,
0.0164337158203125,
0.045440673828125,
-0.0247344970703125,
-0.0029087066650390625,
-0.00310516357421875,
0.025726318359375,
-0.016937255859375,
-0.0027370452880859375,
-0.039764404296875,
-0.00748443603515625,
-0.0224456787109375,
0.007717132568359375
]
] |
big_patent | 2023-06-01T14:59:54.000Z | [
"task_categories:summarization",
"annotations_creators:no-annotation",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:100K<n<1M",
"size_categories:10K<n<100K",
"size_categories:1M<n<10M",
"source_datasets:original",
"language:en",
"license:cc-by-4.0",
"patent-summarization",
"arxiv:1906.03741",
"region:us"
] | null | BIGPATENT, consisting of 1.3 million records of U.S. patent documents
along with human written abstractive summaries.
Each US patent application is filed under a Cooperative Patent Classification
(CPC) code. There are nine such classification categories:
A (Human Necessities), B (Performing Operations; Transporting),
C (Chemistry; Metallurgy), D (Textiles; Paper), E (Fixed Constructions),
F (Mechanical Engineering; Lightning; Heating; Weapons; Blasting),
G (Physics), H (Electricity), and
Y (General tagging of new or cross-sectional technology)
There are two features:
- description: detailed description of patent.
- abstract: Patent abastract. | @misc{sharma2019bigpatent,
title={BIGPATENT: A Large-Scale Dataset for Abstractive and Coherent Summarization},
author={Eva Sharma and Chen Li and Lu Wang},
year={2019},
eprint={1906.03741},
archivePrefix={arXiv},
primaryClass={cs.CL}
} | 26 | 1,050 | 2022-03-02T23:29:22 | ---
annotations_creators:
- no-annotation
language_creators:
- found
language:
- en
license:
- cc-by-4.0
multilinguality:
- monolingual
size_categories:
- 100K<n<1M
- 10K<n<100K
- 1M<n<10M
source_datasets:
- original
task_categories:
- summarization
task_ids: []
paperswithcode_id: bigpatent
pretty_name: Big Patent
tags:
- patent-summarization
dataset_info:
- config_name: all
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 38367048389
num_examples: 1207222
- name: validation
num_bytes: 2115827002
num_examples: 67068
- name: test
num_bytes: 2129505280
num_examples: 67072
download_size: 10142923776
dataset_size: 42612380671
- config_name: a
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 5683460620
num_examples: 174134
- name: validation
num_bytes: 313324505
num_examples: 9674
- name: test
num_bytes: 316633277
num_examples: 9675
download_size: 10142923776
dataset_size: 6313418402
- config_name: b
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 4236070976
num_examples: 161520
- name: validation
num_bytes: 234425138
num_examples: 8973
- name: test
num_bytes: 231538734
num_examples: 8974
download_size: 10142923776
dataset_size: 4702034848
- config_name: c
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 4506249306
num_examples: 101042
- name: validation
num_bytes: 244684775
num_examples: 5613
- name: test
num_bytes: 252566793
num_examples: 5614
download_size: 10142923776
dataset_size: 5003500874
- config_name: d
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 264717412
num_examples: 10164
- name: validation
num_bytes: 14560482
num_examples: 565
- name: test
num_bytes: 14403430
num_examples: 565
download_size: 10142923776
dataset_size: 293681324
- config_name: e
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 881101433
num_examples: 34443
- name: validation
num_bytes: 48646158
num_examples: 1914
- name: test
num_bytes: 48586429
num_examples: 1914
download_size: 10142923776
dataset_size: 978334020
- config_name: f
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 2146383473
num_examples: 85568
- name: validation
num_bytes: 119632631
num_examples: 4754
- name: test
num_bytes: 119596303
num_examples: 4754
download_size: 10142923776
dataset_size: 2385612407
- config_name: g
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 8877854206
num_examples: 258935
- name: validation
num_bytes: 492581177
num_examples: 14385
- name: test
num_bytes: 496324853
num_examples: 14386
download_size: 10142923776
dataset_size: 9866760236
- config_name: h
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 8075621958
num_examples: 257019
- name: validation
num_bytes: 447602356
num_examples: 14279
- name: test
num_bytes: 445460513
num_examples: 14279
download_size: 10142923776
dataset_size: 8968684827
- config_name: y
features:
- name: description
dtype: string
- name: abstract
dtype: string
splits:
- name: train
num_bytes: 3695589005
num_examples: 124397
- name: validation
num_bytes: 200369780
num_examples: 6911
- name: test
num_bytes: 204394948
num_examples: 6911
download_size: 10142923776
dataset_size: 4100353733
config_names:
- a
- all
- b
- c
- d
- e
- f
- g
- h
- y
---
# Dataset Card for Big Patent
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [Big Patent](https://evasharma.github.io/bigpatent/)
- **Repository:**
- **Paper:** [BIGPATENT: A Large-Scale Dataset for Abstractive and Coherent Summarization](https://arxiv.org/abs/1906.03741)
- **Leaderboard:**
- **Point of Contact:** [Lu Wang](mailto:wangluxy@umich.edu)
### Dataset Summary
BIGPATENT, consisting of 1.3 million records of U.S. patent documents along with human written abstractive summaries.
Each US patent application is filed under a Cooperative Patent Classification (CPC) code.
There are nine such classification categories:
- a: Human Necessities
- b: Performing Operations; Transporting
- c: Chemistry; Metallurgy
- d: Textiles; Paper
- e: Fixed Constructions
- f: Mechanical Engineering; Lightning; Heating; Weapons; Blasting
- g: Physics
- h: Electricity
- y: General tagging of new or cross-sectional technology
Current defaults are 2.1.2 version (fix update to cased raw strings) and 'all' CPC codes:
```python
from datasets import load_dataset
ds = load_dataset("big_patent") # default is 'all' CPC codes
ds = load_dataset("big_patent", "all") # the same as above
ds = load_dataset("big_patent", "a") # only 'a' CPC codes
ds = load_dataset("big_patent", codes=["a", "b"])
```
To use 1.0.0 version (lower cased tokenized words), pass both parameters `codes` and `version`:
```python
ds = load_dataset("big_patent", codes="all", version="1.0.0")
ds = load_dataset("big_patent", codes="a", version="1.0.0")
ds = load_dataset("big_patent", codes=["a", "b"], version="1.0.0")
```
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
English
## Dataset Structure
### Data Instances
Each instance contains a pair of `description` and `abstract`. `description` is extracted from the Description section of the Patent while `abstract` is extracted from the Abstract section.
```
{
'description': 'FIELD OF THE INVENTION \n [0001] This invention relates to novel calcium phosphate-coated implantable medical devices and processes of making same. The unique calcium-phosphate coated implantable medical devices minimize...',
'abstract': 'This invention relates to novel calcium phosphate-coated implantable medical devices...'
}
```
### Data Fields
- `description`: detailed description of patent.
- `abstract`: Patent abastract.
### Data Splits
| | train | validation | test |
|:----|------------------:|-------------:|-------:|
| all | 1207222 | 67068 | 67072 |
| a | 174134 | 9674 | 9675 |
| b | 161520 | 8973 | 8974 |
| c | 101042 | 5613 | 5614 |
| d | 10164 | 565 | 565 |
| e | 34443 | 1914 | 1914 |
| f | 85568 | 4754 | 4754 |
| g | 258935 | 14385 | 14386 |
| h | 257019 | 14279 | 14279 |
| y | 124397 | 6911 | 6911 |
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
```bibtex
@article{DBLP:journals/corr/abs-1906-03741,
author = {Eva Sharma and
Chen Li and
Lu Wang},
title = {{BIGPATENT:} {A} Large-Scale Dataset for Abstractive and Coherent
Summarization},
journal = {CoRR},
volume = {abs/1906.03741},
year = {2019},
url = {http://arxiv.org/abs/1906.03741},
eprinttype = {arXiv},
eprint = {1906.03741},
timestamp = {Wed, 26 Jun 2019 07:14:58 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1906-03741.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
```
### Contributions
Thanks to [@mattbui](https://github.com/mattbui) for adding this dataset. | 9,707 | [
[
-0.0235137939453125,
-0.0300445556640625,
0.00931549072265625,
0.054718017578125,
-0.01432037353515625,
0.002719879150390625,
-0.0124664306640625,
-0.0299224853515625,
0.041046142578125,
0.024139404296875,
-0.00981903076171875,
-0.058929443359375,
-0.04229736328125,
0.004638671875,
0.007740020751953125,
0.054351806640625,
0.0035610198974609375,
0.0007052421569824219,
0.0013303756713867188,
0.00579071044921875,
-0.00800323486328125,
-0.044677734375,
-0.0165863037109375,
-0.0250701904296875,
0.021759033203125,
0.03564453125,
0.0428466796875,
0.06732177734375,
0.033782958984375,
0.022552490234375,
-0.0137481689453125,
-0.006717681884765625,
-0.006305694580078125,
-0.02728271484375,
-0.0100250244140625,
-0.0158538818359375,
-0.0594482421875,
0.00594329833984375,
0.038330078125,
0.0614013671875,
-0.0005617141723632812,
0.01995849609375,
0.01093292236328125,
0.03985595703125,
-0.055938720703125,
0.042236328125,
-0.0171051025390625,
0.01418304443359375,
-0.0182952880859375,
-0.020111083984375,
-0.024566650390625,
-0.0251617431640625,
0.006931304931640625,
-0.05841064453125,
0.0207366943359375,
0.016937255859375,
0.08807373046875,
-0.005146026611328125,
-0.01294708251953125,
-0.001598358154296875,
-0.0236663818359375,
0.060272216796875,
-0.056549072265625,
-0.0082550048828125,
0.0399169921875,
-0.0031604766845703125,
-0.01093292236328125,
-0.087646484375,
-0.0511474609375,
-0.00516510009765625,
-0.005611419677734375,
0.007251739501953125,
-0.004291534423828125,
-0.003192901611328125,
0.022186279296875,
0.04302978515625,
-0.045989990234375,
0.01187896728515625,
-0.046295166015625,
-0.037384033203125,
0.062744140625,
0.0036945343017578125,
0.01473236083984375,
-0.031005859375,
-0.044891357421875,
-0.013153076171875,
-0.04742431640625,
0.0106201171875,
0.004547119140625,
0.021026611328125,
-0.037872314453125,
0.050079345703125,
-0.0322265625,
0.032928466796875,
0.005695343017578125,
-0.012664794921875,
0.06964111328125,
-0.0555419921875,
-0.0147552490234375,
0.0260467529296875,
0.075439453125,
0.04766845703125,
-0.00638580322265625,
0.01076507568359375,
0.008880615234375,
-0.033599853515625,
-0.022125244140625,
-0.08447265625,
-0.032135009765625,
0.04132080078125,
-0.051513671875,
-0.0021877288818359375,
0.0251617431640625,
-0.07342529296875,
-0.0294189453125,
-0.01493072509765625,
0.02667236328125,
-0.0032482147216796875,
-0.0250396728515625,
0.0260772705078125,
-0.0338134765625,
0.0292205810546875,
-0.01432037353515625,
-0.07623291015625,
0.0161895751953125,
0.06640625,
0.08001708984375,
0.00506591796875,
-0.024566650390625,
-0.01055145263671875,
0.020599365234375,
-0.02484130859375,
0.054168701171875,
-0.0167694091796875,
-0.03350830078125,
-0.007732391357421875,
0.0253448486328125,
-0.006572723388671875,
-0.0318603515625,
0.0545654296875,
-0.0287322998046875,
0.010162353515625,
-0.0390625,
-0.00926971435546875,
-0.0004782676696777344,
0.00801849365234375,
-0.045074462890625,
0.04620361328125,
-0.0026950836181640625,
-0.0765380859375,
0.050079345703125,
-0.05316162109375,
-0.041015625,
0.0185546875,
-0.005870819091796875,
-0.051300048828125,
-0.034027099609375,
0.014862060546875,
0.037200927734375,
-0.031341552734375,
0.01568603515625,
-0.0276947021484375,
-0.004596710205078125,
0.0024585723876953125,
0.004180908203125,
0.085693359375,
0.0252532958984375,
-0.022735595703125,
0.0030956268310546875,
-0.07293701171875,
0.0012426376342773438,
0.0238037109375,
-0.021209716796875,
-0.01861572265625,
-0.0249786376953125,
0.0006284713745117188,
0.01959228515625,
0.048614501953125,
-0.0665283203125,
0.0135345458984375,
-0.0335693359375,
0.047332763671875,
0.05755615234375,
0.0264892578125,
0.0164642333984375,
-0.03448486328125,
0.022003173828125,
-0.0032196044921875,
0.02996826171875,
0.005298614501953125,
-0.04608154296875,
-0.04193115234375,
-0.04638671875,
0.040771484375,
0.040008544921875,
-0.0316162109375,
0.07666015625,
-0.040283203125,
-0.041534423828125,
-0.01190948486328125,
-0.01517486572265625,
0.033111572265625,
0.03594970703125,
0.0224761962890625,
-0.037078857421875,
-0.047515869140625,
-0.0687255859375,
0.0194549560546875,
0.00867462158203125,
0.006267547607421875,
0.0279998779296875,
0.06103515625,
-0.000008821487426757812,
0.06634521484375,
-0.06982421875,
-0.0306243896484375,
-0.012115478515625,
0.0056304931640625,
0.056365966796875,
0.050140380859375,
0.039581298828125,
-0.0643310546875,
-0.05084228515625,
0.004512786865234375,
-0.0443115234375,
-0.00635528564453125,
0.004657745361328125,
-0.00795745849609375,
0.01122283935546875,
0.0228271484375,
-0.05316162109375,
0.033111572265625,
0.01085662841796875,
-0.0281829833984375,
0.053985595703125,
-0.0428466796875,
0.02740478515625,
-0.08062744140625,
0.04986572265625,
-0.00856781005859375,
0.03033447265625,
-0.024810791015625,
-0.023162841796875,
0.00899505615234375,
-0.00311279296875,
-0.0310821533203125,
0.03680419921875,
-0.03851318359375,
-0.00763702392578125,
-0.00022780895233154297,
-0.008270263671875,
0.0206298828125,
0.036895751953125,
-0.0129547119140625,
0.053253173828125,
0.048553466796875,
-0.0526123046875,
0.037628173828125,
0.03826904296875,
-0.04351806640625,
0.0238037109375,
-0.06903076171875,
-0.020172119140625,
0.0006818771362304688,
0.04052734375,
-0.067626953125,
-0.024139404296875,
0.0253753662109375,
-0.0318603515625,
0.014434814453125,
-0.01271820068359375,
-0.054351806640625,
-0.052337646484375,
-0.0643310546875,
0.00911712646484375,
0.0133819580078125,
-0.0423583984375,
0.0120391845703125,
0.04571533203125,
-0.035614013671875,
-0.06451416015625,
-0.068115234375,
0.007778167724609375,
-0.003986358642578125,
-0.04571533203125,
0.06781005859375,
-0.0162200927734375,
0.0025119781494140625,
0.004741668701171875,
0.006450653076171875,
-0.021148681640625,
-0.0208740234375,
0.02154541015625,
0.02587890625,
-0.0037746429443359375,
-0.003787994384765625,
0.0009250640869140625,
-0.03338623046875,
-0.0024204254150390625,
-0.010833740234375,
0.048980712890625,
0.0159759521484375,
-0.007740020751953125,
-0.03912353515625,
0.019927978515625,
0.037933349609375,
-0.0176544189453125,
0.04913330078125,
0.0302886962890625,
-0.027587890625,
-0.0028018951416015625,
-0.012847900390625,
0.00890350341796875,
-0.035125732421875,
0.027740478515625,
-0.0273590087890625,
-0.03375244140625,
0.052093505859375,
0.0133819580078125,
0.00467681884765625,
0.063232421875,
0.043182373046875,
0.0322265625,
0.0576171875,
0.02508544921875,
-0.0201416015625,
0.0193634033203125,
-0.05035400390625,
0.0273284912109375,
-0.06585693359375,
-0.0364990234375,
-0.061065673828125,
-0.0196533203125,
-0.03582763671875,
-0.0108795166015625,
0.007080078125,
-0.01171112060546875,
-0.045562744140625,
0.0244903564453125,
-0.06317138671875,
0.027313232421875,
0.056121826171875,
0.004459381103515625,
0.020263671875,
-0.00548553466796875,
-0.0243072509765625,
-0.0011262893676757812,
-0.047607421875,
-0.02764892578125,
0.10321044921875,
0.01983642578125,
0.034027099609375,
-0.00719451904296875,
0.0340576171875,
0.024749755859375,
0.0012655258178710938,
-0.042633056640625,
0.040771484375,
-0.01279449462890625,
-0.0599365234375,
-0.0006885528564453125,
-0.01422882080078125,
-0.08624267578125,
0.0136566162109375,
-0.0134735107421875,
-0.055877685546875,
0.0643310546875,
0.01519012451171875,
-0.036224365234375,
0.0111846923828125,
-0.058563232421875,
0.05859375,
-0.01390838623046875,
-0.042816162109375,
-0.0182952880859375,
-0.0677490234375,
0.0184783935546875,
-0.0032482147216796875,
0.01395416259765625,
0.007793426513671875,
-0.00818634033203125,
0.0745849609375,
-0.0648193359375,
0.0545654296875,
-0.0213470458984375,
0.01050567626953125,
0.01355743408203125,
-0.0450439453125,
0.0243988037109375,
0.0035610198974609375,
-0.0203704833984375,
0.0192718505859375,
-0.001071929931640625,
-0.029388427734375,
-0.010498046875,
0.06439208984375,
-0.04205322265625,
-0.02740478515625,
-0.0618896484375,
-0.016998291015625,
0.0178680419921875,
0.037109375,
0.03704833984375,
0.038848876953125,
0.01224517822265625,
0.0291595458984375,
0.025482177734375,
-0.0341796875,
0.0372314453125,
0.03228759765625,
0.01180267333984375,
-0.0614013671875,
0.07879638671875,
0.033966064453125,
0.0054779052734375,
0.03216552734375,
0.01934814453125,
-0.033660888671875,
-0.04400634765625,
-0.006572723388671875,
0.02691650390625,
-0.036407470703125,
-0.0189971923828125,
-0.04937744140625,
-0.0261688232421875,
-0.04901123046875,
-0.002979278564453125,
-0.0186309814453125,
-0.047821044921875,
-0.017578125,
-0.0045166015625,
0.0221405029296875,
0.0226593017578125,
-0.047821044921875,
0.0070343017578125,
-0.03546142578125,
0.030548095703125,
0.0213775634765625,
0.042144775390625,
0.00907135009765625,
-0.0228424072265625,
-0.0189208984375,
0.0179443359375,
-0.050750732421875,
-0.0286865234375,
0.040924072265625,
0.01904296875,
0.05145263671875,
0.0307464599609375,
0.025787353515625,
0.048095703125,
-0.02386474609375,
0.07293701171875,
0.01248931884765625,
-0.047607421875,
0.0386962890625,
-0.01436614990234375,
0.0067596435546875,
0.0246429443359375,
0.04071044921875,
-0.012664794921875,
0.00553131103515625,
-0.06103515625,
-0.09796142578125,
0.060028076171875,
0.004154205322265625,
-0.01221466064453125,
0.01035308837890625,
0.0076141357421875,
-0.0116424560546875,
0.0118865966796875,
-0.063232421875,
-0.033905029296875,
-0.01403045654296875,
0.0035991668701171875,
0.0143890380859375,
-0.01287841796875,
-0.0260772705078125,
-0.02886962890625,
0.0631103515625,
0.0153961181640625,
0.03436279296875,
0.0355224609375,
0.007137298583984375,
0.006954193115234375,
0.017822265625,
0.045684814453125,
0.065673828125,
-0.0289764404296875,
0.006359100341796875,
-0.0217437744140625,
-0.06494140625,
-0.017547607421875,
0.041656494140625,
-0.003173828125,
-0.0157623291015625,
0.01922607421875,
0.022979736328125,
0.006542205810546875,
-0.03125,
0.05133056640625,
0.0026073455810546875,
-0.044952392578125,
-0.0260772705078125,
-0.0110626220703125,
-0.0028095245361328125,
0.0182342529296875,
0.055755615234375,
-0.00689697265625,
0.017242431640625,
-0.0289764404296875,
0.023345947265625,
0.013641357421875,
-0.003215789794921875,
-0.01174163818359375,
0.048492431640625,
0.0087890625,
-0.0096282958984375,
0.011932373046875,
-0.0200042724609375,
-0.038360595703125,
0.06878662109375,
0.043792724609375,
0.0478515625,
-0.00716400146484375,
0.0031299591064453125,
0.0445556640625,
0.0183563232421875,
-0.00612640380859375,
0.01282501220703125,
-0.006977081298828125,
-0.036346435546875,
-0.0226593017578125,
-0.027587890625,
-0.02508544921875,
0.0160064697265625,
-0.0244903564453125,
0.0240020751953125,
-0.04803466796875,
-0.0218963623046875,
0.0272979736328125,
0.0260009765625,
-0.01399993896484375,
0.002471923828125,
-0.01038360595703125,
0.055816650390625,
-0.06353759765625,
0.029052734375,
0.03350830078125,
-0.045135498046875,
-0.042633056640625,
-0.0192108154296875,
-0.00689697265625,
-0.048553466796875,
0.05389404296875,
0.0004611015319824219,
0.02471923828125,
-0.0150146484375,
-0.0506591796875,
-0.06085205078125,
0.096435546875,
0.007595062255859375,
-0.01262664794921875,
0.032440185546875,
0.00919342041015625,
0.0357666015625,
-0.01372528076171875,
0.0024814605712890625,
0.0301971435546875,
0.0440673828125,
0.0243072509765625,
-0.08184814453125,
0.016845703125,
-0.041961669921875,
-0.01434326171875,
-0.00807952880859375,
-0.06158447265625,
0.06768798828125,
-0.0167236328125,
-0.002773284912109375,
0.01085662841796875,
0.036285400390625,
0.036041259765625,
0.043609619140625,
0.00441741943359375,
0.05291748046875,
0.0440673828125,
-0.0169677734375,
0.0675048828125,
-0.03466796875,
0.039764404296875,
0.07501220703125,
-0.0185546875,
0.055267333984375,
0.0110015869140625,
-0.02911376953125,
0.037078857421875,
0.03936767578125,
-0.0274505615234375,
0.05181884765625,
0.012664794921875,
-0.01529693603515625,
0.0182342529296875,
-0.0158233642578125,
-0.0650634765625,
0.01250457763671875,
0.034393310546875,
-0.046142578125,
0.010040283203125,
-0.01019287109375,
0.027587890625,
-0.0139007568359375,
-0.017974853515625,
0.035247802734375,
-0.0020236968994140625,
-0.0382080078125,
0.055633544921875,
0.00603485107421875,
0.050689697265625,
-0.04180908203125,
-0.006885528564453125,
0.0020904541015625,
0.0284881591796875,
-0.041015625,
-0.06439208984375,
0.004024505615234375,
-0.014984130859375,
-0.0206146240234375,
-0.0022430419921875,
0.03076171875,
-0.0014820098876953125,
-0.022796630859375,
0.002040863037109375,
-0.0167999267578125,
0.0023174285888671875,
0.0204010009765625,
-0.043701171875,
-0.0054473876953125,
0.00426483154296875,
-0.0211944580078125,
0.0158538818359375,
0.0330810546875,
0.0077972412109375,
0.050018310546875,
0.056365966796875,
0.023712158203125,
0.00769805908203125,
-0.0136566162109375,
0.07659912109375,
-0.05810546875,
-0.050872802734375,
-0.04833984375,
0.044708251953125,
-0.044891357421875,
-0.044464111328125,
0.044830322265625,
0.0811767578125,
0.0210113525390625,
-0.0105133056640625,
0.06597900390625,
-0.047607421875,
0.042388916015625,
-0.0156097412109375,
0.06488037109375,
-0.0160369873046875,
0.00713348388671875,
-0.033294677734375,
-0.055908203125,
-0.057708740234375,
0.053985595703125,
-0.024688720703125,
0.00551605224609375,
0.05096435546875,
0.07318115234375,
-0.0024433135986328125,
0.004253387451171875,
-0.021087646484375,
0.0513916015625,
0.042388916015625,
0.0270843505859375,
0.00860595703125,
-0.039520263671875,
0.041107177734375,
-0.04205322265625,
-0.048675537109375,
-0.0283660888671875,
-0.07135009765625,
-0.0283966064453125,
-0.04473876953125,
-0.037109375,
-0.03826904296875,
-0.0122833251953125,
0.0634765625,
0.057464599609375,
-0.059844970703125,
-0.0142822265625,
-0.0038280487060546875,
0.0140228271484375,
-0.00882720947265625,
-0.0194244384765625,
0.07568359375,
-0.0004177093505859375,
-0.041412353515625,
-0.00815582275390625,
0.0238037109375,
-0.00719451904296875,
0.006130218505859375,
-0.0086517333984375,
-0.03369140625,
-0.0267181396484375,
0.050445556640625,
0.0640869140625,
-0.0201873779296875,
-0.0183868408203125,
-0.0088043212890625,
-0.006473541259765625,
0.01354217529296875,
0.0253448486328125,
-0.026611328125,
0.03350830078125,
0.05615234375,
0.0229339599609375,
0.0401611328125,
0.0022487640380859375,
0.0221710205078125,
-0.034942626953125,
0.031341552734375,
0.0027027130126953125,
0.036041259765625,
0.004734039306640625,
-0.0207977294921875,
0.03582763671875,
0.0347900390625,
-0.06005859375,
-0.045379638671875,
-0.0162200927734375,
-0.12091064453125,
-0.01007080078125,
0.08978271484375,
-0.015350341796875,
-0.0233001708984375,
-0.0291900634765625,
-0.025726318359375,
0.011383056640625,
-0.0406494140625,
0.0517578125,
0.042388916015625,
-0.002716064453125,
0.014434814453125,
-0.022491455078125,
0.01806640625,
-0.00972747802734375,
-0.054840087890625,
0.0091400146484375,
0.0267181396484375,
0.01213836669921875,
0.0401611328125,
0.055755615234375,
-0.047119140625,
0.0211029052734375,
0.00600433349609375,
0.025390625,
-0.00824737548828125,
0.007843017578125,
-0.00728607177734375,
0.0279998779296875,
-0.0015783309936523438,
-0.050628662109375
]
] |
ura-hcmut/MATH | 2023-09-29T17:19:11.000Z | [
"task_categories:text2text-generation",
"language:vi",
"license:cc-by-nc-sa-4.0",
"region:us"
] | ura-hcmut | null | null | 0 | 1,048 | 2023-09-19T01:55:00 | ---
license: cc-by-nc-sa-4.0
task_categories:
- text2text-generation
language:
- vi
configs:
- config_name: gcp
data_files:
- split: train
path: "MATH_gcp_training.csv"
- split: test
path: "MATH_gcp.csv"
- config_name: azr
data_files:
- split: train
path: "MATH_azr_training.csv"
- split: test
path: "MATH_azr.csv"
---
# MATH dataset
Original version: https://huggingface.co/datasets/lighteval/MATH
Translation source code: https://github.com/martinakaduc/ura-llama/tree/main/dataset_scripts/custom_datasets
| 539 | [
[
0.00988006591796875,
-0.0296173095703125,
0.01078033447265625,
0.030303955078125,
-0.0259857177734375,
0.01132965087890625,
-0.00833892822265625,
-0.0015401840209960938,
0.05096435546875,
0.042938232421875,
-0.06390380859375,
-0.054107666015625,
-0.027801513671875,
-0.002925872802734375,
-0.044464111328125,
0.097412109375,
-0.031158447265625,
0.0211029052734375,
-0.0176849365234375,
-0.04132080078125,
0.0023479461669921875,
-0.00469970703125,
-0.01806640625,
-0.0294647216796875,
0.043792724609375,
0.0521240234375,
0.0546875,
0.0230560302734375,
0.07916259765625,
0.01329803466796875,
0.01885986328125,
-0.02667236328125,
-0.051239013671875,
-0.00864410400390625,
0.0037250518798828125,
-0.02252197265625,
-0.040435791015625,
-0.002079010009765625,
0.055267333984375,
0.056732177734375,
-0.041412353515625,
0.058837890625,
-0.020538330078125,
0.058746337890625,
-0.0248870849609375,
0.035919189453125,
-0.0313720703125,
0.005985260009765625,
-0.0234527587890625,
-0.004238128662109375,
0.0026416778564453125,
-0.0440673828125,
-0.007366180419921875,
-0.0560302734375,
-0.003002166748046875,
-0.00997161865234375,
0.060089111328125,
0.045867919921875,
-0.045196533203125,
0.0000407099723815918,
-0.0167236328125,
0.06231689453125,
-0.0296478271484375,
0.0285797119140625,
0.039703369140625,
0.0672607421875,
-0.00937652587890625,
-0.079345703125,
-0.012481689453125,
0.0197296142578125,
0.00568389892578125,
-0.006702423095703125,
-0.01204681396484375,
-0.0423583984375,
0.01806640625,
0.05413818359375,
-0.0252838134765625,
-0.0283203125,
-0.043853759765625,
-0.006519317626953125,
0.041351318359375,
0.02728271484375,
0.0187835693359375,
-0.01325225830078125,
0.00516510009765625,
-0.00882720947265625,
-0.05682373046875,
-0.0170745849609375,
0.00348663330078125,
0.00913238525390625,
-0.057159423828125,
0.053619384765625,
-0.01477813720703125,
0.025909423828125,
-0.033935546875,
0.00528717041015625,
0.053558349609375,
-0.0176544189453125,
-0.0297393798828125,
-0.015838623046875,
0.032958984375,
0.035675048828125,
0.037567138671875,
-0.007389068603515625,
-0.0155792236328125,
0.013946533203125,
-0.00634002685546875,
-0.0780029296875,
-0.030914306640625,
-0.0171661376953125,
-0.0293121337890625,
-0.056854248046875,
-0.004913330078125,
-0.051727294921875,
-0.0022678375244140625,
-0.0271759033203125,
-0.0128936767578125,
0.002349853515625,
-0.00870513916015625,
0.01560211181640625,
0.03692626953125,
0.0211029052734375,
0.024322509765625,
-0.057769775390625,
0.052032470703125,
0.033050537109375,
0.045623779296875,
0.0123748779296875,
-0.00891876220703125,
-0.047576904296875,
-0.0188140869140625,
-0.025238037109375,
0.034027099609375,
-0.0196685791015625,
-0.00988006591796875,
0.0055084228515625,
0.01325225830078125,
0.01470947265625,
-0.018310546875,
0.0528564453125,
-0.055267333984375,
0.0236663818359375,
-0.0217437744140625,
-0.032196044921875,
-0.003467559814453125,
-0.010650634765625,
-0.054840087890625,
0.07757568359375,
0.057830810546875,
-0.047882080078125,
0.0178680419921875,
-0.06573486328125,
-0.021484375,
0.0128631591796875,
-0.018402099609375,
-0.03997802734375,
0.007389068603515625,
0.017303466796875,
-0.01000213623046875,
-0.02978515625,
0.0305023193359375,
-0.0305328369140625,
-0.0023193359375,
0.0155181884765625,
-0.00733184814453125,
0.083740234375,
0.0377197265625,
0.0130767822265625,
0.013153076171875,
-0.0703125,
-0.006420135498046875,
0.044830322265625,
-0.0018053054809570312,
-0.01097869873046875,
-0.00812530517578125,
0.031524658203125,
-0.0086517333984375,
0.0411376953125,
-0.041351318359375,
0.0312347412109375,
-0.0081634521484375,
0.003314971923828125,
0.045166015625,
-0.0142364501953125,
0.021453857421875,
-0.0204010009765625,
0.05096435546875,
-0.01515960693359375,
0.01302337646484375,
-0.00445556640625,
-0.047821044921875,
-0.04425048828125,
-0.0012464523315429688,
0.0389404296875,
0.034027099609375,
-0.053985595703125,
0.02386474609375,
-0.0252532958984375,
-0.037200927734375,
-0.042205810546875,
0.0301666259765625,
0.0146331787109375,
0.043670654296875,
0.032867431640625,
-0.00726318359375,
-0.04998779296875,
-0.049713134765625,
0.0143890380859375,
0.00787353515625,
-0.01529693603515625,
0.0232696533203125,
0.05841064453125,
-0.03643798828125,
0.064208984375,
-0.056793212890625,
-0.0235137939453125,
-0.0033893585205078125,
-0.0186309814453125,
0.049102783203125,
0.043670654296875,
0.07623291015625,
-0.041351318359375,
-0.041412353515625,
-0.017578125,
-0.06195068359375,
-0.0550537109375,
0.0137176513671875,
-0.04071044921875,
-0.00395965576171875,
-0.006378173828125,
-0.01364898681640625,
0.07623291015625,
0.06689453125,
-0.052154541015625,
0.0194091796875,
0.021759033203125,
0.0228729248046875,
-0.1031494140625,
0.02288818359375,
-0.005062103271484375,
-0.0284881591796875,
0.0027446746826171875,
0.03875732421875,
0.016876220703125,
0.00197601318359375,
-0.03900146484375,
0.040374755859375,
-0.00992584228515625,
-0.0231170654296875,
0.01457977294921875,
-0.0055389404296875,
-0.01535797119140625,
0.016265869140625,
-0.019012451171875,
0.06976318359375,
0.046417236328125,
-0.0094757080078125,
0.06988525390625,
0.06591796875,
-0.031036376953125,
0.04534912109375,
-0.061279296875,
-0.00644683837890625,
0.0209503173828125,
0.027679443359375,
-0.05010986328125,
-0.03778076171875,
0.0350341796875,
-0.016845703125,
-0.02490234375,
-0.027435302734375,
-0.056640625,
-0.01546478271484375,
-0.03094482421875,
0.055267333984375,
0.05865478515625,
-0.060302734375,
-0.0030307769775390625,
0.021636962890625,
-0.00687408447265625,
-0.0100860595703125,
-0.07269287109375,
0.033905029296875,
-0.007770538330078125,
-0.048736572265625,
0.0190277099609375,
-0.0279693603515625,
-0.03594970703125,
-0.002475738525390625,
0.00843048095703125,
-0.01263427734375,
-0.0205841064453125,
0.0012960433959960938,
0.0406494140625,
-0.04144287109375,
0.01377105712890625,
0.004730224609375,
-0.021484375,
0.00029158592224121094,
0.00537109375,
0.027587890625,
-0.0201873779296875,
-0.027557373046875,
-0.02459716796875,
-0.00618743896484375,
0.01346588134765625,
0.01355743408203125,
0.038177490234375,
0.038818359375,
-0.041900634765625,
0.00716400146484375,
-0.0248260498046875,
-0.007480621337890625,
-0.032684326171875,
-0.018768310546875,
-0.026580810546875,
-0.0439453125,
0.053985595703125,
0.01062774658203125,
0.0036945343017578125,
0.047119140625,
0.0236663818359375,
0.0112457275390625,
0.04486083984375,
0.04913330078125,
-0.0323486328125,
0.04473876953125,
-0.036102294921875,
-0.033203125,
-0.05419921875,
-0.0137481689453125,
-0.0149688720703125,
-0.0295867919921875,
-0.0300140380859375,
-0.0232696533203125,
-0.004802703857421875,
-0.00772857666015625,
-0.01325225830078125,
0.047332763671875,
-0.0235137939453125,
0.044036865234375,
0.00508880615234375,
-0.005706787109375,
0.03826904296875,
0.04498291015625,
0.0194549560546875,
-0.057403564453125,
-0.014739990234375,
-0.0243988037109375,
0.0919189453125,
0.03106689453125,
0.08758544921875,
0.029632568359375,
0.0450439453125,
0.00440216064453125,
0.032073974609375,
-0.0312042236328125,
0.023406982421875,
-0.0032672882080078125,
-0.019317626953125,
-0.00731658935546875,
-0.06976318359375,
-0.0758056640625,
0.0002830028533935547,
0.0012464523315429688,
-0.03564453125,
-0.0123748779296875,
-0.016326904296875,
0.0097198486328125,
0.0205841064453125,
-0.029632568359375,
0.0780029296875,
-0.0200347900390625,
-0.0113067626953125,
-0.00850677490234375,
-0.0247039794921875,
0.0283660888671875,
-0.0037746429443359375,
-0.00004839897155761719,
-0.015594482421875,
-0.026214599609375,
0.05889892578125,
-0.056671142578125,
0.060546875,
0.00278472900390625,
-0.032928466796875,
0.00757598876953125,
0.01161956787109375,
0.0176544189453125,
0.040435791015625,
-0.0163726806640625,
0.022491455078125,
-0.00019681453704833984,
-0.050689697265625,
-0.023406982421875,
0.0517578125,
-0.047607421875,
0.01666259765625,
-0.03173828125,
-0.04510498046875,
0.01108551025390625,
0.0295867919921875,
0.004978179931640625,
0.037750244140625,
-0.03924560546875,
0.02593994140625,
0.0280914306640625,
0.01412200927734375,
0.0066986083984375,
0.05487060546875,
-0.07696533203125,
-0.055023193359375,
0.062408447265625,
-0.0038700103759765625,
-0.01398468017578125,
0.0118865966796875,
0.0290679931640625,
-0.00775146484375,
-0.02593994140625,
-0.07305908203125,
0.0274810791015625,
-0.03753662109375,
-0.04644775390625,
-0.0034580230712890625,
-0.0112457275390625,
-0.040374755859375,
-0.027130126953125,
-0.0211029052734375,
-0.05413818359375,
-0.04296875,
-0.0222930908203125,
0.0902099609375,
0.0654296875,
0.01091766357421875,
0.032318115234375,
-0.04119873046875,
0.032745361328125,
0.0104827880859375,
0.053985595703125,
-0.057769775390625,
-0.05889892578125,
-0.014373779296875,
0.01010894775390625,
-0.004772186279296875,
-0.0411376953125,
0.046905517578125,
0.004871368408203125,
0.0113525390625,
0.004306793212890625,
-0.007671356201171875,
0.036407470703125,
-0.0184326171875,
0.03338623046875,
0.0305633544921875,
-0.052215576171875,
0.04583740234375,
-0.03143310546875,
0.03070068359375,
0.0631103515625,
0.00804901123046875,
-0.0391845703125,
0.011810302734375,
-0.060791015625,
-0.047698974609375,
0.038970947265625,
0.043975830078125,
-0.0005626678466796875,
0.042572021484375,
0.03118896484375,
0.01433563232421875,
0.034454345703125,
-0.050323486328125,
-0.0300445556640625,
-0.0187530517578125,
-0.06292724609375,
0.002460479736328125,
-0.003971099853515625,
-0.0246124267578125,
-0.037567138671875,
0.0203857421875,
-0.01377105712890625,
-0.0073699951171875,
-0.018951416015625,
-0.0200653076171875,
-0.05023193359375,
-0.020416259765625,
0.037994384765625,
0.05535888671875,
-0.034088134765625,
0.0011749267578125,
0.024749755859375,
-0.03790283203125,
-0.006999969482421875,
0.022216796875,
-0.0212249755859375,
-0.004756927490234375,
0.0273284912109375,
0.031890869140625,
0.03179931640625,
-0.02667236328125,
0.0435791015625,
-0.016204833984375,
0.01070404052734375,
-0.052215576171875,
-0.00870513916015625,
-0.003360748291015625,
-0.0081787109375,
0.0151214599609375,
0.004302978515625,
0.016082763671875,
-0.01204681396484375,
0.04693603515625,
-0.0126190185546875,
-0.026885986328125,
-0.05072021484375,
0.046173095703125,
0.023773193359375,
-0.034210205078125,
0.053497314453125,
-0.0189361572265625,
-0.01898193359375,
0.046356201171875,
0.03680419921875,
0.06134033203125,
-0.0104217529296875,
0.0213623046875,
0.032623291015625,
0.0149383544921875,
0.0283966064453125,
0.047882080078125,
-0.00988006591796875,
-0.02496337890625,
-0.03338623046875,
-0.045318603515625,
-0.03082275390625,
-0.005786895751953125,
-0.039215087890625,
0.03375244140625,
-0.03955078125,
0.025360107421875,
-0.03338623046875,
0.01123046875,
-0.059478759765625,
-0.002330780029296875,
-0.00616455078125,
0.0966796875,
-0.05517578125,
0.07415771484375,
0.05084228515625,
-0.051666259765625,
-0.028533935546875,
-0.0303192138671875,
0.004047393798828125,
-0.0777587890625,
0.038055419921875,
-0.0187225341796875,
-0.01065826416015625,
-0.007190704345703125,
-0.08258056640625,
-0.07525634765625,
0.0802001953125,
0.041748046875,
-0.032562255859375,
0.0282135009765625,
0.0079498291015625,
0.043975830078125,
-0.050933837890625,
0.008392333984375,
0.034942626953125,
0.03741455078125,
0.017578125,
-0.053619384765625,
-0.010986328125,
-0.0477294921875,
-0.0115966796875,
0.005069732666015625,
-0.0478515625,
0.033447265625,
-0.0089874267578125,
0.003124237060546875,
0.01446533203125,
0.061737060546875,
0.0017824172973632812,
0.02520751953125,
0.0166168212890625,
0.0634765625,
0.030792236328125,
-0.00838470458984375,
0.060943603515625,
0.0008382797241210938,
0.0472412109375,
0.082275390625,
-0.0223541259765625,
0.04144287109375,
0.0304718017578125,
-0.03533935546875,
0.05841064453125,
0.044586181640625,
-0.03265380859375,
0.038360595703125,
0.01251983642578125,
-0.00811004638671875,
0.0091400146484375,
-0.0167236328125,
-0.0477294921875,
-0.0006589889526367188,
0.0267486572265625,
-0.00988006591796875,
-0.0144195556640625,
-0.039520263671875,
0.010711669921875,
0.00972747802734375,
0.0029964447021484375,
0.035369873046875,
0.0144195556640625,
-0.00020194053649902344,
0.02703857421875,
-0.0168609619140625,
0.036529541015625,
-0.045623779296875,
-0.01244354248046875,
-0.03338623046875,
-0.00015270709991455078,
-0.037445068359375,
-0.072265625,
0.0297698974609375,
0.0007061958312988281,
0.01641845703125,
-0.01412200927734375,
0.0293731689453125,
-0.043670654296875,
-0.081298828125,
0.022003173828125,
0.031280517578125,
0.029083251953125,
0.036865234375,
-0.082275390625,
0.0258636474609375,
0.00977325439453125,
-0.03173828125,
0.0028820037841796875,
0.019989013671875,
0.002838134765625,
0.05377197265625,
0.06048583984375,
0.01480865478515625,
0.0036773681640625,
0.038787841796875,
0.07611083984375,
-0.058807373046875,
-0.03363037109375,
-0.0276947021484375,
0.017669677734375,
-0.0201416015625,
-0.04876708984375,
0.051177978515625,
0.060699462890625,
0.055877685546875,
-0.00839996337890625,
0.029327392578125,
-0.01294708251953125,
0.0238494873046875,
-0.0185546875,
0.03875732421875,
-0.032958984375,
-0.0012483596801757812,
-0.03155517578125,
-0.0745849609375,
-0.0477294921875,
0.06494140625,
0.0039005279541015625,
0.006389617919921875,
0.052001953125,
0.053070068359375,
-0.036407470703125,
-0.00789642333984375,
0.01580810546875,
-0.00156402587890625,
0.017974853515625,
0.036529541015625,
0.03155517578125,
-0.06317138671875,
0.04425048828125,
-0.024993896484375,
-0.02618408203125,
-0.0288848876953125,
-0.062469482421875,
-0.051849365234375,
-0.02569580078125,
-0.045166015625,
-0.0256195068359375,
-0.035247802734375,
0.0703125,
0.0438232421875,
-0.08294677734375,
-0.032806396484375,
-0.0162200927734375,
0.02471923828125,
0.00585174560546875,
-0.01386260986328125,
0.039398193359375,
-0.00479888916015625,
-0.041534423828125,
0.0200347900390625,
-0.00946807861328125,
0.0168304443359375,
-0.0214691162109375,
-0.0143585205078125,
0.006847381591796875,
-0.00893402099609375,
0.0207061767578125,
0.0202178955078125,
-0.02392578125,
-0.006626129150390625,
-0.019195556640625,
-0.0296173095703125,
0.008941650390625,
0.06072998046875,
-0.031890869140625,
0.002391815185546875,
0.049835205078125,
0.03857421875,
0.038421630859375,
-0.020721435546875,
0.0220184326171875,
-0.040802001953125,
0.0260467529296875,
-0.00962066650390625,
0.058685302734375,
0.032501220703125,
-0.01143646240234375,
0.09619140625,
0.042144775390625,
-0.03448486328125,
-0.051971435546875,
0.020965576171875,
-0.081298828125,
0.028778076171875,
0.05584716796875,
0.011260986328125,
-0.04638671875,
0.0218505859375,
-0.0382080078125,
0.0081939697265625,
-0.06414794921875,
0.040863037109375,
0.019744873046875,
0.0188140869140625,
-0.00643157958984375,
-0.032928466796875,
0.026397705078125,
0.029144287109375,
-0.0706787109375,
-0.005298614501953125,
0.03570556640625,
0.0227203369140625,
0.005481719970703125,
0.041473388671875,
-0.0244293212890625,
0.0275726318359375,
0.01242828369140625,
0.031829833984375,
-0.0016374588012695312,
-0.01386260986328125,
-0.036346435546875,
-0.0298919677734375,
-0.0147857666015625,
-0.012664794921875
]
] |
neulab/tldr | 2022-12-22T19:47:11.000Z | [
"task_categories:text2text-generation",
"language_creators:crowdsourced",
"language_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:unknown",
"source_datasets:original",
"language:code",
"license:mit",
"code-generation",
"doc retrieval",
"retrieval augmented generation",
"arxiv:2207.05987",
"region:us"
] | neulab | This is the re-split of CoNaLa dataset. For each code snippet in the dev and test set, at least one function is held out from the training set. This split aims at testing a code generation model's capacity in generating unseen functions.
We further make sure that examples from the same StackOverflow post (same question_id before -) are in the same split. | @article{zhou2022doccoder,
title={DocCoder: Generating Code by Retrieving and Reading Docs},
author={Zhou, Shuyan and Alon, Uri and Xu, Frank F and JIang, Zhengbao and Neubig, Graham},
journal={arXiv preprint arXiv:2207.05987},
year={2022}
} | 4 | 1,047 | 2022-12-22T17:58:43 | ---
annotations_creators: []
language_creators:
- crowdsourced
- expert-generated
language:
- code
license:
- mit
multilinguality:
- monolingual
size_categories:
- unknown
source_datasets:
- original
task_categories:
- text2text-generation
task_ids: []
pretty_name: DocPrompting-CoNaLa
tags:
- code-generation
- doc retrieval
- retrieval augmented generation
---
## Dataset Description
- **Repository:** https://github.com/shuyanzhou/docprompting
- **Paper:** [DocPrompting: Generating Code by Retrieving the Docs](https://arxiv.org/pdf/2207.05987.pdf)
### Dataset Summary
This is the natural language to bash generation dataset we harvested from the English subset of [`tldr`](https://github.com/tldr-pages/tldr)
We split the dataset by bash commands. Every command in the dev and test set is held out from the training set.
### Supported Tasks and Leaderboards
This dataset is used to evaluate code generations.
### Languages
English - Bash
## Dataset Structure
```python
dataset = load_dataset("neulab/tldr")
DatasetDict({
train: Dataset({
features: ['question_id', 'nl', 'cmd', 'oracle_man', 'cmd_name', 'tldr_cmd_name', 'manual_exist', 'matching_info'],
num_rows: 6414
})
test: Dataset({
features: ['question_id', 'nl', 'cmd', 'oracle_man', 'cmd_name', 'tldr_cmd_name', 'manual_exist', 'matching_info'],
num_rows: 928
})
validation: Dataset({
features: ['question_id', 'nl', 'cmd', 'oracle_man', 'cmd_name', 'tldr_cmd_name', 'manual_exist', 'matching_info'],
num_rows: 1845
})
})
code_docs = load_dataset("neulab/docprompting-conala", "docs")
DatasetDict({
train: Dataset({
features: ['doc_id', 'doc_content'],
num_rows: 439064
})
})
```
### Data Fields
train/dev/test:
- nl: The natural language intent
- cmd: The reference code snippet
- question_id: the unique id of a question
- oracle_man: The `doc_id` of the functions used in the reference code snippet. The corresponding contents are in `doc` split
- cmd_name: the bash command of this code snippet
- tldr_cmd_name: the bash command used in tldr github repo. The `cmd_name` and `tldr_cmd_name` can be different due to naming difference
- manual_exist: whether the manual exists in https://manned.org
- matching_info: each code snippets have multiple tokens, this is the detailed reference doc matching on each token.
docs:
- doc_id: the id of a doc
- doc_content: the content of the doc
## Dataset Creation
The dataset was curated from [`tldr`](https://github.com/tldr-pages/tldr).
The project aims to provide frequent usage of bash commands with natural language intents.
For more details, please check the repo.
### Citation Information
```
@article{zhou2022doccoder,
title={DocCoder: Generating Code by Retrieving and Reading Docs},
author={Zhou, Shuyan and Alon, Uri and Xu, Frank F and Jiang, Zhengbao and Neubig, Graham},
journal={arXiv preprint arXiv:2207.05987},
year={2022}
}
``` | 2,971 | [
[
-0.03076171875,
-0.053985595703125,
0.0221710205078125,
-0.009979248046875,
-0.01531982421875,
-0.0032520294189453125,
-0.0264129638671875,
-0.0021762847900390625,
0.0197296142578125,
0.038543701171875,
-0.043853759765625,
-0.06927490234375,
-0.030120849609375,
0.022064208984375,
-0.0261383056640625,
0.08868408203125,
-0.004810333251953125,
-0.004802703857421875,
-0.0200958251953125,
-0.0240936279296875,
-0.0071563720703125,
-0.022674560546875,
-0.041229248046875,
0.00200653076171875,
0.024383544921875,
0.044403076171875,
0.0279083251953125,
0.0601806640625,
0.050048828125,
0.0204010009765625,
0.00262451171875,
0.0186614990234375,
-0.01187896728515625,
0.01125335693359375,
-0.0008606910705566406,
-0.027618408203125,
-0.0235595703125,
0.00008887052536010742,
0.053314208984375,
0.0450439453125,
-0.00580596923828125,
0.016387939453125,
-0.00913238525390625,
0.030364990234375,
-0.018768310546875,
0.02252197265625,
-0.043060302734375,
-0.016326904296875,
-0.0296783447265625,
-0.0108184814453125,
-0.0157623291015625,
-0.044342041015625,
0.00958251953125,
-0.054412841796875,
0.044281005859375,
0.004901885986328125,
0.10546875,
0.0150604248046875,
-0.0176849365234375,
-0.035919189453125,
-0.021026611328125,
0.052398681640625,
-0.08056640625,
0.018463134765625,
0.021148681640625,
0.0036525726318359375,
-0.016082763671875,
-0.06982421875,
-0.05609130859375,
-0.019500732421875,
-0.034637451171875,
-0.00885772705078125,
-0.0033359527587890625,
0.003658294677734375,
0.039093017578125,
0.025054931640625,
-0.048675537109375,
-0.006916046142578125,
-0.046417236328125,
-0.0247802734375,
0.039459228515625,
0.017608642578125,
0.0124053955078125,
-0.04803466796875,
-0.012542724609375,
-0.02813720703125,
-0.00982666015625,
0.0103912353515625,
0.0206298828125,
0.0172882080078125,
-0.021575927734375,
0.043426513671875,
-0.01153564453125,
0.044830322265625,
0.0260162353515625,
-0.02484130859375,
0.059906005859375,
-0.06689453125,
-0.0148468017578125,
-0.0108184814453125,
0.08819580078125,
0.033233642578125,
0.0186920166015625,
-0.006549835205078125,
0.004608154296875,
0.0012216567993164062,
0.02227783203125,
-0.06646728515625,
-0.012725830078125,
0.03790283203125,
-0.0148773193359375,
-0.036712646484375,
0.02783203125,
-0.062744140625,
-0.019439697265625,
-0.004177093505859375,
-0.007232666015625,
-0.04962158203125,
-0.0265655517578125,
-0.01007843017578125,
-0.037109375,
0.040374755859375,
-0.000865936279296875,
-0.052947998046875,
0.00958251953125,
0.044525146484375,
0.04052734375,
-0.007701873779296875,
-0.048553466796875,
-0.04931640625,
-0.002696990966796875,
-0.0225372314453125,
0.038909912109375,
-0.0408935546875,
-0.01433563232421875,
-0.006603240966796875,
0.03125,
-0.0198516845703125,
-0.05218505859375,
0.04833984375,
-0.0183868408203125,
0.035247802734375,
-0.00897216796875,
-0.0400390625,
-0.0039825439453125,
0.0301971435546875,
-0.04248046875,
0.09228515625,
0.043212890625,
-0.07342529296875,
0.0399169921875,
-0.0616455078125,
-0.039520263671875,
0.004932403564453125,
-0.00983428955078125,
-0.0418701171875,
-0.016448974609375,
0.0145263671875,
0.0308074951171875,
-0.0179443359375,
0.03204345703125,
-0.0177154541015625,
-0.004352569580078125,
0.01422119140625,
0.0084075927734375,
0.060150146484375,
0.01380157470703125,
-0.0237579345703125,
0.00598907470703125,
-0.0709228515625,
0.0172119140625,
0.01548004150390625,
-0.0295257568359375,
-0.021148681640625,
-0.016998291015625,
-0.00272369384765625,
0.0094451904296875,
0.0159149169921875,
-0.0411376953125,
0.02069091796875,
-0.033843994140625,
0.03717041015625,
0.03228759765625,
0.02813720703125,
0.045074462890625,
-0.0218353271484375,
0.03887939453125,
0.01708984375,
0.00830841064453125,
-0.01082611083984375,
-0.0172119140625,
-0.0694580078125,
-0.006237030029296875,
0.033050537109375,
0.05462646484375,
-0.059967041015625,
0.062286376953125,
-0.038360595703125,
-0.051116943359375,
-0.058013916015625,
0.01103973388671875,
0.0287933349609375,
0.055084228515625,
0.0244598388671875,
-0.019927978515625,
-0.051116943359375,
-0.05810546875,
-0.00206756591796875,
-0.0166168212890625,
-0.00209808349609375,
0.038177490234375,
0.044403076171875,
-0.031890869140625,
0.0704345703125,
-0.041717529296875,
-0.02252197265625,
-0.0285797119140625,
0.0009312629699707031,
0.0321044921875,
0.035552978515625,
0.036224365234375,
-0.03802490234375,
-0.0341796875,
-0.0029850006103515625,
-0.06317138671875,
-0.019500732421875,
-0.033447265625,
-0.0210418701171875,
0.032318115234375,
0.040557861328125,
-0.05560302734375,
0.01200103759765625,
0.01511383056640625,
-0.03533935546875,
0.04388427734375,
-0.01256561279296875,
0.0136871337890625,
-0.09942626953125,
0.0252532958984375,
0.0041656494140625,
0.01137542724609375,
-0.036529541015625,
0.01355743408203125,
0.005954742431640625,
-0.0015316009521484375,
-0.027984619140625,
0.0330810546875,
-0.039886474609375,
0.004474639892578125,
0.0189971923828125,
0.022857666015625,
0.0216217041015625,
0.0316162109375,
-0.01073455810546875,
0.052947998046875,
0.045623779296875,
-0.0504150390625,
0.0309600830078125,
0.032623291015625,
-0.0221405029296875,
0.03387451171875,
-0.051605224609375,
0.0047454833984375,
0.012725830078125,
0.0169830322265625,
-0.051361083984375,
-0.0242156982421875,
0.033111572265625,
-0.0426025390625,
0.0169219970703125,
-0.0241851806640625,
-0.043731689453125,
-0.0286102294921875,
-0.027618408203125,
-0.0071563720703125,
0.0242919921875,
-0.0135650634765625,
0.037994384765625,
0.0089569091796875,
-0.0021457672119140625,
-0.04620361328125,
-0.042236328125,
-0.004100799560546875,
-0.026031494140625,
-0.060394287109375,
0.02056884765625,
-0.0045166015625,
-0.016998291015625,
0.01065826416015625,
-0.00988006591796875,
0.0005755424499511719,
-0.0039215087890625,
0.0130157470703125,
0.0272064208984375,
-0.00994110107421875,
0.00646209716796875,
-0.003047943115234375,
-0.023712158203125,
0.01447296142578125,
-0.0162811279296875,
0.054046630859375,
-0.00272369384765625,
-0.0184478759765625,
-0.01097869873046875,
0.017608642578125,
0.042572021484375,
-0.03485107421875,
0.049774169921875,
0.06817626953125,
-0.002895355224609375,
-0.00954437255859375,
-0.029693603515625,
-0.00687408447265625,
-0.034912109375,
0.02880859375,
-0.02520751953125,
-0.03192138671875,
0.044097900390625,
0.005214691162109375,
0.016998291015625,
0.05169677734375,
0.0187835693359375,
-0.011505126953125,
0.0251312255859375,
0.009246826171875,
0.0015974044799804688,
0.04071044921875,
-0.0543212890625,
0.0022830963134765625,
-0.06304931640625,
-0.0240936279296875,
-0.04888916015625,
-0.0031280517578125,
-0.062286376953125,
-0.042572021484375,
0.01451873779296875,
-0.00042510032653808594,
-0.021636962890625,
0.042388916015625,
-0.060638427734375,
0.0207061767578125,
0.063720703125,
-0.01119232177734375,
-0.003986358642578125,
0.0016260147094726562,
-0.03399658203125,
0.005413055419921875,
-0.03570556640625,
-0.0330810546875,
0.09423828125,
0.00365447998046875,
0.04010009765625,
-0.01012420654296875,
0.07415771484375,
0.00540924072265625,
-0.0194244384765625,
-0.043975830078125,
0.0526123046875,
-0.0080718994140625,
-0.0343017578125,
-0.0225067138671875,
-0.040740966796875,
-0.08447265625,
-0.0159149169921875,
-0.005126953125,
-0.035888671875,
0.00406646728515625,
-0.0233154296875,
0.00511932373046875,
0.0178985595703125,
-0.06732177734375,
0.073486328125,
-0.01386260986328125,
-0.0027008056640625,
0.004451751708984375,
-0.06512451171875,
0.003047943115234375,
0.0000616312026977539,
0.005390167236328125,
0.01390838623046875,
0.00229644775390625,
0.06756591796875,
-0.041107177734375,
0.037384033203125,
-0.023956298828125,
0.004398345947265625,
0.0145416259765625,
-0.005889892578125,
0.0458984375,
0.0146331787109375,
-0.0233154296875,
0.015045166015625,
0.00027632713317871094,
-0.0184173583984375,
-0.032470703125,
0.052398681640625,
-0.052642822265625,
-0.03668212890625,
-0.03485107421875,
-0.037384033203125,
0.0141143798828125,
0.038055419921875,
0.04541015625,
0.0428466796875,
-0.005458831787109375,
0.01372528076171875,
0.046844482421875,
-0.0271148681640625,
0.03521728515625,
0.033294677734375,
0.0037384033203125,
-0.05059814453125,
0.061737060546875,
0.01099395751953125,
0.02349853515625,
0.024627685546875,
-0.00566864013671875,
-0.0191802978515625,
-0.05029296875,
-0.037078857421875,
0.0284423828125,
-0.05035400390625,
-0.00860595703125,
-0.057464599609375,
-0.032562255859375,
-0.03546142578125,
-0.0023651123046875,
-0.00597381591796875,
-0.015411376953125,
-0.030487060546875,
-0.0167083740234375,
0.045928955078125,
0.04132080078125,
0.00719451904296875,
-0.0006809234619140625,
-0.052520751953125,
0.032867431640625,
0.002628326416015625,
0.0325927734375,
-0.03253173828125,
-0.036041259765625,
-0.02130126953125,
0.0019464492797851562,
-0.0203857421875,
-0.05609130859375,
0.028350830078125,
0.01457977294921875,
0.05914306640625,
0.02288818359375,
0.03570556640625,
0.0460205078125,
-0.0184478759765625,
0.06817626953125,
-0.01041412353515625,
-0.048370361328125,
0.06475830078125,
-0.0227203369140625,
0.0255889892578125,
0.0555419921875,
0.00205230712890625,
-0.047637939453125,
-0.053497314453125,
-0.08233642578125,
-0.0831298828125,
0.072509765625,
0.017974853515625,
-0.0037326812744140625,
-0.00559234619140625,
0.0154266357421875,
0.00972747802734375,
0.0046234130859375,
-0.034912109375,
-0.0479736328125,
-0.0162506103515625,
-0.0213623046875,
0.004962921142578125,
0.0030651092529296875,
-0.026214599609375,
-0.0262298583984375,
0.05035400390625,
-0.00994110107421875,
0.033843994140625,
0.0166473388671875,
-0.0186614990234375,
0.007633209228515625,
0.03582763671875,
0.03668212890625,
0.033660888671875,
-0.032379150390625,
-0.00780487060546875,
0.01300811767578125,
-0.048553466796875,
-0.00566864013671875,
0.0279083251953125,
-0.01323699951171875,
0.0219879150390625,
0.03509521484375,
0.063720703125,
-0.00818634033203125,
-0.0328369140625,
0.0303192138671875,
-0.005115509033203125,
-0.04241943359375,
-0.037750244140625,
0.028778076171875,
0.004215240478515625,
0.01226806640625,
0.036102294921875,
0.015869140625,
-0.01137542724609375,
-0.0163116455078125,
0.0230560302734375,
0.0171051025390625,
-0.0119781494140625,
0.0016374588012695312,
0.033782958984375,
0.007762908935546875,
-0.0304107666015625,
0.0714111328125,
-0.04730224609375,
-0.03173828125,
0.06732177734375,
0.02410888671875,
0.061614990234375,
0.0413818359375,
0.0185394287109375,
0.05029296875,
0.0176544189453125,
0.0234832763671875,
0.017181396484375,
-0.0008802413940429688,
-0.053497314453125,
-0.0020885467529296875,
-0.042510986328125,
-0.020721435546875,
0.01230621337890625,
-0.05670166015625,
0.0304718017578125,
-0.0299072265625,
-0.01123809814453125,
0.0128173828125,
0.0318603515625,
-0.05633544921875,
0.00614166259765625,
-0.003536224365234375,
0.0714111328125,
-0.0467529296875,
0.06793212890625,
0.068603515625,
-0.04833984375,
-0.082275390625,
0.018585205078125,
-0.009552001953125,
-0.03594970703125,
0.031646728515625,
0.01131439208984375,
0.029052734375,
-0.0007424354553222656,
-0.03607177734375,
-0.0582275390625,
0.10760498046875,
0.0222015380859375,
-0.0196990966796875,
-0.01290130615234375,
0.008697509765625,
0.0360107421875,
-0.0261993408203125,
0.031280517578125,
0.06146240234375,
0.047637939453125,
-0.0014486312866210938,
-0.072509765625,
0.01514434814453125,
-0.051605224609375,
-0.014892578125,
0.0235595703125,
-0.043060302734375,
0.05291748046875,
-0.03350830078125,
-0.0195465087890625,
-0.01091766357421875,
0.0222015380859375,
0.05010986328125,
0.03546142578125,
0.0302886962890625,
0.05633544921875,
0.06787109375,
-0.031951904296875,
0.07501220703125,
-0.0259857177734375,
0.032318115234375,
0.06707763671875,
-0.00588226318359375,
0.037628173828125,
0.042816162109375,
-0.0188446044921875,
0.0657958984375,
0.041259765625,
-0.039764404296875,
0.04058837890625,
0.01137542724609375,
0.0177459716796875,
0.0080108642578125,
-0.0054473876953125,
-0.049346923828125,
0.028717041015625,
0.025665283203125,
-0.04180908203125,
-0.005428314208984375,
-0.01300811767578125,
0.024505615234375,
-0.00946044921875,
0.0147552490234375,
0.072265625,
-0.022857666015625,
-0.059906005859375,
0.0654296875,
-0.0088348388671875,
0.06280517578125,
-0.0595703125,
0.00543212890625,
-0.028472900390625,
0.01477813720703125,
-0.025787353515625,
-0.066162109375,
0.0184326171875,
-0.0004203319549560547,
-0.02728271484375,
-0.011993408203125,
0.037200927734375,
-0.0216522216796875,
-0.037994384765625,
0.0199432373046875,
0.031890869140625,
0.0226287841796875,
0.023223876953125,
-0.060455322265625,
-0.013824462890625,
0.0268402099609375,
-0.021820068359375,
0.0195465087890625,
0.0567626953125,
0.0135040283203125,
0.051605224609375,
0.05914306640625,
0.00969696044921875,
0.0022716522216796875,
0.007633209228515625,
0.07269287109375,
-0.063720703125,
-0.0272216796875,
-0.0517578125,
0.044403076171875,
-0.033111572265625,
-0.054473876953125,
0.0560302734375,
0.054473876953125,
0.07330322265625,
-0.0038661956787109375,
0.07110595703125,
-0.054534912109375,
0.043670654296875,
-0.0255889892578125,
0.053741455078125,
-0.03131103515625,
0.0307159423828125,
-0.02410888671875,
-0.0494384765625,
0.0025920867919921875,
0.036376953125,
-0.018585205078125,
0.00420379638671875,
0.0765380859375,
0.0809326171875,
0.004421234130859375,
-0.0230560302734375,
-0.014617919921875,
0.0121612548828125,
0.0221710205078125,
0.0379638671875,
0.0208892822265625,
-0.05230712890625,
0.068115234375,
-0.028839111328125,
0.00952911376953125,
-0.0080413818359375,
-0.05010986328125,
-0.05859375,
-0.046875,
-0.0310821533203125,
-0.061676025390625,
-0.02227783203125,
0.068359375,
0.04290771484375,
-0.0732421875,
-0.0035762786865234375,
-0.015869140625,
0.023345947265625,
-0.021453857421875,
-0.02777099609375,
0.040191650390625,
-0.03570556640625,
-0.04888916015625,
0.007740020751953125,
-0.018310546875,
-0.005481719970703125,
0.0015411376953125,
-0.027374267578125,
-0.019134521484375,
-0.0159149169921875,
0.005828857421875,
0.01326751708984375,
-0.052459716796875,
-0.00360107421875,
0.02349853515625,
-0.039459228515625,
0.015777587890625,
0.03240966796875,
-0.05474853515625,
0.02081298828125,
0.03887939453125,
0.02178955078125,
0.03607177734375,
-0.00244903564453125,
0.037750244140625,
-0.066162109375,
0.003520965576171875,
0.00490570068359375,
0.0229644775390625,
0.02508544921875,
-0.025238037109375,
0.06072998046875,
0.0265350341796875,
-0.037384033203125,
-0.06378173828125,
-0.007843017578125,
-0.0926513671875,
-0.0004150867462158203,
0.1126708984375,
-0.0146331787109375,
-0.0080413818359375,
-0.01451873779296875,
-0.0167694091796875,
0.037200927734375,
-0.055755615234375,
0.0285797119140625,
0.039764404296875,
0.0167694091796875,
-0.0234222412109375,
-0.033447265625,
0.042633056640625,
0.0053253173828125,
-0.07049560546875,
0.001346588134765625,
0.0181732177734375,
0.043914794921875,
0.0218658447265625,
0.038238525390625,
-0.00286865234375,
0.01230621337890625,
0.009765625,
0.0142364501953125,
-0.0188751220703125,
0.0113677978515625,
-0.0081939697265625,
0.01029205322265625,
-0.00878143310546875,
-0.029266357421875
]
] |
jeanlee/kmhas_korean_hate_speech | 2022-11-28T16:26:56.000Z | [
"task_categories:text-classification",
"task_ids:multi-label-classification",
"task_ids:hate-speech-detection",
"annotations_creators:crowdsourced",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:100K<n<1M",
"source_datasets:original",
"language:ko",
"license:cc-by-sa-4.0",
"K-MHaS",
"Korean NLP",
"Hate Speech Detection",
"Dataset",
"Coling2022",
"arxiv:2208.10684",
"region:us"
] | jeanlee | The K-MHaS (Korean Multi-label Hate Speech) dataset contains 109k utterances from Korean online news comments labeled with 8 fine-grained hate speech classes or Not Hate Speech class.
The fine-grained hate speech classes are politics, origin, physical, age, gender, religion, race, and profanity and these categories are selected in order to reflect the social and historical context. | @inproceedings{lee-etal-2022-k,
title = "K-{MH}a{S}: A Multi-label Hate Speech Detection Dataset in {K}orean Online News Comment",
author = "Lee, Jean and
Lim, Taejun and
Lee, Heejun and
Jo, Bogeun and
Kim, Yangsok and
Yoon, Heegeun and
Han, Soyeon Caren",
booktitle = "Proceedings of the 29th International Conference on Computational Linguistics",
month = oct,
year = "2022",
address = "Gyeongju, Republic of Korea",
publisher = "International Committee on Computational Linguistics",
url = "https://aclanthology.org/2022.coling-1.311",
pages = "3530--3538",
abstract = "Online hate speech detection has become an important issue due to the growth of online content, but resources in languages other than English are extremely limited. We introduce K-MHaS, a new multi-label dataset for hate speech detection that effectively handles Korean language patterns. The dataset consists of 109k utterances from news comments and provides a multi-label classification using 1 to 4 labels, and handles subjectivity and intersectionality. We evaluate strong baselines on K-MHaS. KR-BERT with a sub-character tokenizer outperforms others, recognizing decomposed characters in each hate speech class.",
} | 11 | 1,046 | 2022-11-21T05:03:58 | ---
annotations_creators:
- crowdsourced
language:
- ko
language_creators:
- found
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
pretty_name: 'K-MHaS'
size_categories:
- 100K<n<1M
source_datasets:
- original
tags:
- K-MHaS
- Korean NLP
- Hate Speech Detection
- Dataset
- Coling2022
task_categories:
- text-classification
task_ids:
- multi-label-classification
- hate-speech-detection
paperswithcode_id: korean-multi-label-hate-speech-dataset
dataset_info:
features:
- name: text
dtype: string
- name: label
sequence:
class_label:
names:
0: origin
1: physical
2: politics
3: profanity
4: age
5: gender
6: race
7: religion
8: not_hate_speech
splits:
- name: train
num_bytes: 6845463
num_examples: 78977
- name: validation
num_bytes: 748899
num_examples: 8776
- name: test
num_bytes: 1902352
num_examples: 21939
download_size: 9496714
dataset_size: 109692
---
# Dataset Card for K-MHaS
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Sample Code
<a href="https://colab.research.google.com/drive/171KhS1_LVBtpAFd_kaT8lcrZmhcz5ehY?usp=sharing"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="base"/></a>
## Dataset Description
- **Homepage:** [K-MHaS](https://github.com/adlnlp/K-MHaS)
- **Repository:** [Korean Multi-label Hate Speech Dataset](https://github.com/adlnlp/K-MHaS)
- **Paper:** [K-MHaS: A Multi-label Hate Speech Detection Dataset in Korean Online News Comment](https://arxiv.org/abs/2208.10684)
- **Point of Contact:** [Caren Han](caren.han@sydney.edu.au)
- **Sample code:** [Colab](https://colab.research.google.com/drive/171KhS1_LVBtpAFd_kaT8lcrZmhcz5ehY?usp=sharing)
### Dataset Summary
The Korean Multi-label Hate Speech Dataset, **K-MHaS**, consists of 109,692 utterances from Korean online news comments, labelled with 8 fine-grained hate speech classes (labels: `Politics`, `Origin`, `Physical`, `Age`, `Gender`, `Religion`, `Race`, `Profanity`) or `Not Hate Speech` class. Each utterance provides from a single to four labels that can handles Korean language patterns effectively. For more details, please refer to our paper about [**K-MHaS**](https://aclanthology.org/2022.coling-1.311), published at COLING 2022.
### Supported Tasks and Leaderboards
Hate Speech Detection
* `binary classification` (labels: `Hate Speech`, `Not Hate Speech`)
* `multi-label classification`: (labels: `Politics`, `Origin`, `Physical`, `Age`, `Gender`, `Religion`, `Race`, `Profanity`, `Not Hate Speech`)
For the multi-label classification, a `Hate Speech` class from the binary classification, is broken down into eight classes, associated with the hate speech category. In order to reflect the social and historical context, we select the eight hate speech classes. For example, the `Politics` class is chosen, due to a significant influence on the style of Korean hate speech.
### Languages
Korean
## Dataset Structure
### Data Instances
The dataset is provided with train/validation/test set in the txt format. Each instance is a news comment with a corresponding one or more hate speech classes (labels: `Politics`, `Origin`, `Physical`, `Age`, `Gender`, `Religion`, `Race`, `Profanity`) or `Not Hate Speech` class. The label numbers matching in both English and Korean is in the data fields section.
```python
{'text':'수꼴틀딱시키들이 다 디져야 나라가 똑바로 될것같다..답이 없는 종자들ㅠ'
'label': [2, 3, 4]
}
```
### Data Fields
* `text`: utterance from Korean online news comment.
* `label`: the label numbers matching with 8 fine-grained hate speech classes and `not hate speech` class are follows.
* `0`: `Origin`(`출신차별`) hate speech based on place of origin or identity;
* `1`: `Physical`(`외모차별`) hate speech based on physical appearance (e.g. body, face) or disability;
* `2`: `Politics`(`정치성향차별`) hate speech based on political stance;
* `3`: `Profanity`(`혐오욕설`) hate speech in the form of swearing, cursing, cussing, obscene words, or expletives; or an unspecified hate speech category;
* `4`: `Age`(`연령차별`) hate speech based on age;
* `5`: `Gender`(`성차별`) hate speech based on gender or sexual orientation (e.g. woman, homosexual);
* `6`: `Race`(`인종차별`) hate speech based on ethnicity;
* `7`: `Religion`(`종교차별`) hate speech based on religion;
* `8`: `Not Hate Speech`(`해당사항없음`).
### Data Splits
In our repository, we provide splitted datasets that have 78,977(train) / 8,776 (validation) / 21,939 (test) samples, preserving the class proportion.
## Dataset Creation
### Curation Rationale
We propose K-MHaS, a large size Korean multi-label hate speech detection dataset that represents Korean language patterns effectively. Most datasets in hate speech research are annotated using a single label classification of particular aspects, even though the subjectivity of hate speech cannot be explained with a mutually exclusive annotation scheme. We propose a multi-label hate speech annotation scheme that allows overlapping labels associated with the subjectivity and the intersectionality of hate speech.
### Source Data
#### Initial Data Collection and Normalization
Our dataset is based on the Korean online news comments available on Kaggle and Github. The unlabeled raw data was collected between January 2018 and June 2020. Please see the details in our paper [K-MHaS](https://aclanthology.org/2022.coling-1.311) published at COLING2020.
#### Who are the source language producers?
The language producers are users who left the comments on the Korean online news platform between 2018 and 2020.
### Annotations
#### Annotation process
We begin with the common categories of hate speech found in literature and match the keywords for each category. After the preliminary round, we investigate the results to merge or remove labels in order to provide the most representative subtype labels of hate speech contextual to the cultural background. Our annotation instructions explain a twolayered annotation to (a) distinguish hate and not hate speech, and (b) the categories of hate speech. Annotators are requested to consider given keywords or alternatives of each category within social, cultural, and historical circumstances. For more details, please refer to the paper [K-MHaS](https://aclanthology.org/2022.coling-1.311).
#### Who are the annotators?
Five native speakers were recruited for manual annotation in both the preliminary and main rounds.
### Personal and Sensitive Information
This datasets contains examples of hateful language, however, has no personal information.
## Considerations for Using the Data
### Social Impact of Dataset
We propose K-MHaS, a new large-sized dataset for Korean hate speech detection with a multi-label annotation scheme. We provided extensive baseline experiment results, presenting the usability of a dataset to detect Korean language patterns in hate speech.
### Discussion of Biases
All annotators were recruited from a crowdsourcing platform. They were informed about hate speech before handling the data. Our instructions allowed them to feel free to leave if they were uncomfortable with the content. With respect to the potential risks, we note that the subjectivity of human annotation would impact on the quality of the dataset.
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
This dataset is curated by Taejun Lim, Heejun Lee and Bogeun Jo.
### Licensing Information
Creative Commons Attribution-ShareAlike 4.0 International (cc-by-sa-4.0).
### Citation Information
```
@inproceedings{lee-etal-2022-k,
title = "K-{MH}a{S}: A Multi-label Hate Speech Detection Dataset in {K}orean Online News Comment",
author = "Lee, Jean and
Lim, Taejun and
Lee, Heejun and
Jo, Bogeun and
Kim, Yangsok and
Yoon, Heegeun and
Han, Soyeon Caren",
booktitle = "Proceedings of the 29th International Conference on Computational Linguistics",
month = oct,
year = "2022",
address = "Gyeongju, Republic of Korea",
publisher = "International Committee on Computational Linguistics",
url = "https://aclanthology.org/2022.coling-1.311",
pages = "3530--3538",
abstract = "Online hate speech detection has become an important issue due to the growth of online content, but resources in languages other than English are extremely limited. We introduce K-MHaS, a new multi-label dataset for hate speech detection that effectively handles Korean language patterns. The dataset consists of 109k utterances from news comments and provides a multi-label classification using 1 to 4 labels, and handles subjectivity and intersectionality. We evaluate strong baselines on K-MHaS. KR-BERT with a sub-character tokenizer outperforms others, recognizing decomposed characters in each hate speech class.",
}
```
### Contributions
The contributors of the work are:
- [Jean Lee](https://jeanlee-ai.github.io/) (The University of Sydney)
- [Taejun Lim](https://github.com/taezun) (The University of Sydney)
- [Heejun Lee](https://bigwaveai.com/) (BigWave AI)
- [Bogeun Jo](https://bigwaveai.com/) (BigWave AI)
- Yangsok Kim (Keimyung University)
- Heegeun Yoon (National Information Society Agency)
- [Soyeon Caren Han](https://drcarenhan.github.io/) (The University of Western Australia and The University of Sydney)
| 10,427 | [
[
-0.0421142578125,
-0.0521240234375,
0.0048370361328125,
0.0084075927734375,
-0.018280029296875,
0.0234527587890625,
-0.02728271484375,
-0.033233642578125,
0.038055419921875,
0.026092529296875,
-0.03448486328125,
-0.06024169921875,
-0.053253173828125,
0.0021762847900390625,
-0.0005917549133300781,
0.08074951171875,
0.0252227783203125,
0.005641937255859375,
0.01715087890625,
-0.0226593017578125,
-0.004352569580078125,
-0.053924560546875,
-0.03173828125,
-0.0177459716796875,
0.060943603515625,
0.035430908203125,
0.0472412109375,
0.052581787109375,
0.0037860870361328125,
0.0167388916015625,
-0.0101318359375,
0.0036334991455078125,
-0.030853271484375,
0.0159912109375,
0.0186920166015625,
-0.007099151611328125,
-0.03582763671875,
0.02197265625,
0.0355224609375,
0.0226593017578125,
0.01039886474609375,
0.0204925537109375,
-0.002593994140625,
0.0274810791015625,
-0.042083740234375,
0.00836944580078125,
-0.037933349609375,
-0.0086822509765625,
-0.040863037109375,
0.01326751708984375,
-0.019134521484375,
-0.033111572265625,
-0.01092529296875,
-0.03582763671875,
-0.00753021240234375,
0.0023059844970703125,
0.054718017578125,
0.0023670196533203125,
-0.0272979736328125,
-0.040924072265625,
-0.0185394287109375,
0.05426025390625,
-0.05938720703125,
0.039886474609375,
0.03936767578125,
0.00969696044921875,
-0.002349853515625,
-0.0208282470703125,
-0.06439208984375,
-0.019927978515625,
-0.01361083984375,
0.0235748291015625,
-0.00890350341796875,
-0.0033740997314453125,
0.0234832763671875,
0.0160980224609375,
-0.031829833984375,
0.0237274169921875,
-0.0369873046875,
-0.036895751953125,
0.0679931640625,
0.006122589111328125,
0.0256195068359375,
-0.053955078125,
-0.021728515625,
-0.0176544189453125,
-0.0185089111328125,
-0.0078277587890625,
0.060028076171875,
0.0487060546875,
-0.03509521484375,
0.038909912109375,
-0.022552490234375,
0.029144287109375,
-0.0079345703125,
-0.05633544921875,
0.072509765625,
-0.02606201171875,
-0.007564544677734375,
0.0174560546875,
0.064208984375,
0.046905517578125,
0.028594970703125,
-0.007720947265625,
0.0221405029296875,
0.03228759765625,
0.00040030479431152344,
-0.0654296875,
-0.0299224853515625,
0.022430419921875,
-0.0408935546875,
-0.040924072265625,
-0.033172607421875,
-0.10491943359375,
-0.054107666015625,
-0.0308685302734375,
0.00968170166015625,
-0.0099334716796875,
-0.041259765625,
-0.03436279296875,
-0.0245361328125,
0.0016355514526367188,
-0.00988006591796875,
-0.02886962890625,
-0.00734710693359375,
0.01355743408203125,
0.047943115234375,
-0.0184783935546875,
-0.01520538330078125,
-0.01024627685546875,
0.0003108978271484375,
-0.005096435546875,
0.029876708984375,
-0.045379638671875,
-0.01494598388671875,
-0.00286865234375,
0.0048828125,
-0.00013005733489990234,
-0.03619384765625,
0.07574462890625,
-0.032562255859375,
0.01032257080078125,
-0.0025730133056640625,
-0.039947509765625,
-0.0277557373046875,
0.00878143310546875,
-0.029632568359375,
0.07611083984375,
0.0012149810791015625,
-0.04498291015625,
0.036407470703125,
-0.0484619140625,
-0.026031494140625,
0.0018949508666992188,
-0.01253509521484375,
-0.050872802734375,
-0.037872314453125,
0.0009388923645019531,
0.03729248046875,
-0.0030193328857421875,
0.0174560546875,
-0.041015625,
0.01491546630859375,
0.00959014892578125,
-0.00876617431640625,
0.0814208984375,
0.0382080078125,
-0.0338134765625,
0.015167236328125,
-0.07916259765625,
0.0080108642578125,
0.0241851806640625,
-0.019989013671875,
-0.033782958984375,
-0.0216064453125,
0.0269775390625,
0.044342041015625,
-0.0061187744140625,
-0.062347412109375,
-0.0102691650390625,
-0.01410675048828125,
0.004924774169921875,
0.07086181640625,
-0.0107421875,
0.01311492919921875,
-0.026336669921875,
0.03607177734375,
0.0104217529296875,
0.005100250244140625,
0.006458282470703125,
-0.050079345703125,
-0.032012939453125,
-0.036773681640625,
0.007083892822265625,
0.049041748046875,
-0.0399169921875,
0.0277557373046875,
-0.0081939697265625,
-0.07061767578125,
-0.04931640625,
-0.01129913330078125,
0.046112060546875,
0.037353515625,
0.032501220703125,
0.00417327880859375,
-0.085205078125,
-0.065185546875,
-0.018768310546875,
-0.00994873046875,
0.0154266357421875,
0.042755126953125,
0.042724609375,
-0.00469970703125,
0.044403076171875,
-0.045074462890625,
-0.01555633544921875,
-0.0037403106689453125,
0.006374359130859375,
0.0003879070281982422,
0.0125732421875,
0.03961181640625,
-0.07513427734375,
-0.060089111328125,
-0.01800537109375,
-0.03887939453125,
-0.037078857421875,
0.0177154541015625,
-0.007114410400390625,
0.0228424072265625,
0.035491943359375,
-0.0029544830322265625,
0.0369873046875,
0.04705810546875,
-0.0390625,
0.0660400390625,
0.045867919921875,
0.03424072265625,
-0.07904052734375,
-0.0134124755859375,
-0.00344085693359375,
0.0168914794921875,
-0.077880859375,
-0.0204620361328125,
-0.018646240234375,
0.00311279296875,
-0.034637451171875,
0.034698486328125,
-0.0022563934326171875,
0.0256805419921875,
-0.0233612060546875,
0.024322509765625,
-0.0306396484375,
0.056243896484375,
-0.0070037841796875,
0.0418701171875,
0.0307464599609375,
-0.07080078125,
0.0294647216796875,
0.0189971923828125,
-0.024383544921875,
0.054931640625,
-0.018798828125,
0.0128936767578125,
-0.021575927734375,
0.005115509033203125,
-0.08233642578125,
-0.028076171875,
0.0701904296875,
-0.049560546875,
-0.005523681640625,
-0.0203094482421875,
-0.0357666015625,
-0.0307159423828125,
-0.037017822265625,
0.019500732421875,
0.0171356201171875,
-0.021697998046875,
0.0293426513671875,
0.07000732421875,
-0.01410675048828125,
-0.04541015625,
-0.041015625,
-0.00945281982421875,
-0.0426025390625,
-0.0390625,
0.0308685302734375,
-0.0157623291015625,
-0.0107421875,
-0.004009246826171875,
0.015716552734375,
0.007778167724609375,
-0.0080413818359375,
0.041107177734375,
0.0085601806640625,
0.0006465911865234375,
0.0024471282958984375,
-0.017059326171875,
0.007472991943359375,
-0.000843048095703125,
0.005687713623046875,
0.0611572265625,
0.0176849365234375,
0.0104827880859375,
-0.0224609375,
0.0172576904296875,
0.048309326171875,
0.0115814208984375,
0.04327392578125,
0.06805419921875,
-0.029510498046875,
0.01548004150390625,
-0.03875732421875,
0.005031585693359375,
-0.02569580078125,
0.038665771484375,
-0.027618408203125,
-0.06500244140625,
0.041900634765625,
0.0212249755859375,
-0.0085906982421875,
0.04608154296875,
0.06646728515625,
0.01404571533203125,
0.058563232421875,
0.0003769397735595703,
-0.028167724609375,
0.03668212890625,
0.00821685791015625,
0.0214691162109375,
-0.051666259765625,
-0.0391845703125,
-0.055450439453125,
-0.0265350341796875,
-0.06005859375,
-0.0316162109375,
0.026885986328125,
-0.00948333740234375,
-0.031707763671875,
0.020355224609375,
-0.03424072265625,
0.0225372314453125,
0.033538818359375,
-0.01457977294921875,
-0.0019369125366210938,
0.0172882080078125,
-0.00562286376953125,
-0.032684326171875,
-0.0289154052734375,
-0.0251007080078125,
0.07891845703125,
0.031829833984375,
0.0266876220703125,
0.0116729736328125,
0.03424072265625,
0.0233306884765625,
0.0233306884765625,
-0.054168701171875,
0.040557861328125,
-0.0222015380859375,
-0.054046630859375,
-0.033203125,
-0.0341796875,
-0.065185546875,
0.0325927734375,
-0.003208160400390625,
-0.0623779296875,
0.01201629638671875,
0.002017974853515625,
-0.01288604736328125,
0.035919189453125,
-0.041656494140625,
0.053680419921875,
0.0027217864990234375,
0.00003916025161743164,
-0.00708770751953125,
-0.041595458984375,
0.0269622802734375,
0.00215911865234375,
0.04058837890625,
-0.0333251953125,
0.00795745849609375,
0.10345458984375,
-0.011627197265625,
0.0711669921875,
-0.03192138671875,
-0.01451873779296875,
0.021484375,
-0.027618408203125,
0.0258331298828125,
-0.040313720703125,
-0.006069183349609375,
0.025360107421875,
-0.0302886962890625,
-0.000919342041015625,
-0.0255279541015625,
0.037811279296875,
-0.043182373046875,
-0.00411224365234375,
-0.0225830078125,
-0.036163330078125,
-0.00479888916015625,
0.021697998046875,
0.02288818359375,
0.0116424560546875,
0.00978851318359375,
0.00823211669921875,
0.023345947265625,
-0.02911376953125,
0.0037479400634765625,
0.0325927734375,
-0.031951904296875,
-0.06915283203125,
0.07696533203125,
0.046112060546875,
0.017730712890625,
-0.01319122314453125,
0.0263824462890625,
-0.040618896484375,
-0.0110015869140625,
-0.035980224609375,
0.01001739501953125,
-0.05426025390625,
-0.014862060546875,
-0.06878662109375,
-0.0194091796875,
-0.056915283203125,
0.007190704345703125,
-0.004302978515625,
-0.02777099609375,
0.0025806427001953125,
-0.006046295166015625,
0.038665771484375,
0.039093017578125,
-0.0301513671875,
0.0296478271484375,
-0.0068206787109375,
0.054107666015625,
0.004486083984375,
0.02490234375,
0.01873779296875,
-0.064453125,
-0.0092315673828125,
0.01311492919921875,
-0.02716064453125,
-0.08489990234375,
0.02069091796875,
-0.00691986083984375,
0.03826904296875,
0.00836944580078125,
0.0157928466796875,
0.052490234375,
-0.0226593017578125,
0.0650634765625,
0.00994110107421875,
-0.038909912109375,
0.041534423828125,
-0.020599365234375,
0.0016727447509765625,
0.0244293212890625,
0.056915283203125,
-0.06622314453125,
-0.050933837890625,
-0.0625,
-0.0645751953125,
0.068359375,
0.0189666748046875,
-0.0026760101318359375,
-0.00528717041015625,
-0.0120391845703125,
-0.00859832763671875,
0.01336669921875,
-0.0709228515625,
-0.0994873046875,
-0.02069091796875,
-0.00792694091796875,
0.0034313201904296875,
-0.0361328125,
-0.00499725341796875,
-0.0290679931640625,
0.0826416015625,
0.0237579345703125,
0.01468658447265625,
-0.006679534912109375,
0.00261688232421875,
0.01253509521484375,
0.03680419921875,
0.051116943359375,
0.0222015380859375,
-0.010284423828125,
0.01406097412109375,
0.003253936767578125,
-0.06439208984375,
0.022430419921875,
0.0010747909545898438,
-0.03192138671875,
0.01299285888671875,
-0.0088043212890625,
0.061431884765625,
0.0005717277526855469,
-0.026824951171875,
0.0217437744140625,
0.0267181396484375,
-0.0310821533203125,
-0.0197296142578125,
-0.01232147216796875,
-0.007221221923828125,
0.00458526611328125,
0.0134429931640625,
-0.01404571533203125,
0.01092529296875,
-0.0227813720703125,
0.03509521484375,
0.0097198486328125,
-0.0185699462890625,
-0.0021114349365234375,
0.0382080078125,
-0.006870269775390625,
-0.0201416015625,
0.01629638671875,
-0.05029296875,
-0.0684814453125,
0.0389404296875,
0.04620361328125,
0.052764892578125,
-0.0380859375,
0.0423583984375,
0.061431884765625,
0.0240478515625,
0.043212890625,
0.0281524658203125,
0.0166015625,
-0.059906005859375,
-0.0204315185546875,
-0.0543212890625,
-0.0014705657958984375,
0.0562744140625,
-0.027923583984375,
0.007465362548828125,
-0.025421142578125,
-0.0035037994384765625,
0.0309295654296875,
0.004726409912109375,
-0.0207672119140625,
0.01641845703125,
0.039459228515625,
0.038482666015625,
-0.07305908203125,
0.034637451171875,
0.03277587890625,
-0.0299835205078125,
-0.052642822265625,
-0.0160064697265625,
0.03143310546875,
-0.059326171875,
0.0439453125,
0.00930023193359375,
-0.01104736328125,
-0.017730712890625,
-0.045562744140625,
-0.05828857421875,
0.0499267578125,
0.00046372413635253906,
-0.0202789306640625,
0.043365478515625,
0.0236358642578125,
0.03533935546875,
-0.0234527587890625,
-0.00782012939453125,
0.04705810546875,
0.04864501953125,
-0.0010509490966796875,
-0.05706787109375,
0.0160369873046875,
-0.016815185546875,
-0.03167724609375,
0.0082550048828125,
-0.057342529296875,
0.06103515625,
0.01080322265625,
-0.0201263427734375,
-0.0212860107421875,
0.04010009765625,
0.033905029296875,
0.0560302734375,
0.0538330078125,
0.0489501953125,
0.0787353515625,
0.00899505615234375,
0.04876708984375,
-0.0019855499267578125,
0.00676727294921875,
0.09539794921875,
0.01209259033203125,
0.03399658203125,
0.0004138946533203125,
-0.034576416015625,
0.0265655517578125,
0.0224456787109375,
-0.01280975341796875,
0.03912353515625,
0.039398193359375,
-0.020782470703125,
0.004352569580078125,
-0.04779052734375,
-0.032379150390625,
0.04669189453125,
0.0316162109375,
-0.0289154052734375,
-0.0033893585205078125,
0.01605224609375,
0.051483154296875,
0.00539398193359375,
-0.0411376953125,
0.044158935546875,
-0.00864410400390625,
-0.0269775390625,
0.048065185546875,
0.017608642578125,
0.07879638671875,
-0.033721923828125,
0.01047515869140625,
0.01332855224609375,
-0.01187896728515625,
-0.0345458984375,
-0.058837890625,
0.023681640625,
0.00969696044921875,
-0.032196044921875,
0.0019989013671875,
0.056182861328125,
-0.052154541015625,
-0.0174102783203125,
0.0213775634765625,
0.006046295166015625,
0.038482666015625,
-0.01251983642578125,
-0.05828857421875,
0.02685546875,
0.022064208984375,
-0.00391387939453125,
0.02471923828125,
0.012847900390625,
-0.006793975830078125,
0.0294647216796875,
0.04730224609375,
0.015228271484375,
0.03582763671875,
0.032073974609375,
0.052703857421875,
-0.040985107421875,
-0.032318115234375,
-0.06622314453125,
0.0270233154296875,
-0.0253448486328125,
-0.037353515625,
0.0771484375,
0.058746337890625,
0.0845947265625,
-0.0006737709045410156,
0.077880859375,
-0.03826904296875,
0.06927490234375,
-0.018402099609375,
0.053863525390625,
-0.03289794921875,
-0.0297698974609375,
-0.055389404296875,
-0.034881591796875,
-0.029632568359375,
0.0423583984375,
-0.031768798828125,
0.00485992431640625,
0.0220489501953125,
0.08062744140625,
0.01039886474609375,
0.01384735107421875,
0.0246734619140625,
0.041778564453125,
0.022491455078125,
0.00984954833984375,
0.038787841796875,
-0.0474853515625,
0.051788330078125,
-0.044891357421875,
-0.01035308837890625,
-0.002716064453125,
-0.047515869140625,
-0.04705810546875,
-0.0596923828125,
-0.0439453125,
-0.0440673828125,
-0.01197052001953125,
0.0635986328125,
0.045562744140625,
-0.06842041015625,
-0.01983642578125,
0.050689697265625,
0.026824951171875,
-0.0079803466796875,
-0.0218505859375,
0.0379638671875,
-0.005260467529296875,
-0.0513916015625,
0.0154571533203125,
0.00385284423828125,
0.0028476715087890625,
0.01284027099609375,
-0.024993896484375,
-0.040863037109375,
-0.01678466796875,
0.06585693359375,
0.0198974609375,
-0.065673828125,
-0.0127410888671875,
-0.021148681640625,
-0.00046515464782714844,
0.0018863677978515625,
0.036773681640625,
-0.030517578125,
0.0205841064453125,
0.0208282470703125,
0.04400634765625,
0.0120391845703125,
-0.0028362274169921875,
-0.0217742919921875,
-0.06610107421875,
0.011749267578125,
0.01535797119140625,
0.0005197525024414062,
0.01092529296875,
-0.01354217529296875,
0.0347900390625,
0.039459228515625,
-0.043609619140625,
-0.07586669921875,
0.0228271484375,
-0.06878662109375,
-0.004749298095703125,
0.10369873046875,
0.01544189453125,
-0.00539398193359375,
-0.0455322265625,
-0.028594970703125,
0.03778076171875,
-0.045684814453125,
0.036407470703125,
0.07537841796875,
-0.0103759765625,
0.00011545419692993164,
-0.050048828125,
0.06414794921875,
0.007080078125,
-0.049652099609375,
0.032379150390625,
0.044647216796875,
0.00661468505859375,
0.035308837890625,
0.06719970703125,
-0.013031005859375,
0.00598907470703125,
0.00860595703125,
0.0122833251953125,
0.006622314453125,
-0.0267333984375,
-0.008056640625,
0.0225830078125,
-0.035186767578125,
-0.0316162109375
]
] |
shahules786/orca-best | 2023-08-25T14:48:40.000Z | [
"region:us"
] | shahules786 | null | null | 40 | 1,044 | 2023-08-12T05:48:30 | ---
dataset_info:
features:
- name: cluster
struct:
- name: samples
list:
- name: input
dtype: string
- name: output
dtype: string
- name: source
dtype: string
- name: instruction
dtype: string
- name: num_samples
dtype: int64
splits:
- name: train
num_bytes: 900092818
num_examples: 328906
download_size: 462629849
dataset_size: 900092818
---
## Best of Orca
This is a filtered version of Orca GPT4 1M instructions. From repeated experiments and analysis, I came to the conclusion that original dataset
contains a lot of low-quality instructions which contributes to only poor generalization.
The solution I came up with is to filter the dataset and remove the unwanted samples. I applied two levels of filters
1. Removed instructions with less than 100 tokens in response.
2. Data deduplication grouped by instruction type using GTE embedding and cosine similarity (threshold>0.95)
After these two steps, the number of samples was reduced to 1/3rd of the original count.
For selecting a sample from each cluster, I tried different methods including random selection from a cluster.
We used this dataset to train multiple Open-Assistant models to confirm my hypothesis that data quality matter more than quantity.
This dataset was used in some of our models best models including https://huggingface.co/OpenAssistant/llama2-70b-oasst-sft-v10
⭐️ All models perform much better than models trained on full ORCA samples.
## Credits
* This wouldn't be possible without the amazing work of Eric in recreating the ORCA dataset. Check it out:
https://huggingface.co/datasets/ehartford/dolphin
* This dataset was created in association with the Open-Assistant team @jordanclive and @andreaskoepf
## Citations
```
@misc{Orca-best,
title = {Orca-best: A filtered version of orca gpt4 dataset.},
author = {Shahul Es},
year = {2023},
publisher = {HuggingFace},
journal = {HuggingFace repository},
howpublished = {\url{https://huggingface.co/datasets/shahules786/orca-best/},
}
``` | 2,072 | [
[
-0.04058837890625,
-0.047637939453125,
0.0223541259765625,
-0.00881195068359375,
-0.035614013671875,
-0.0232086181640625,
0.0205078125,
-0.0433349609375,
0.01250457763671875,
0.043548583984375,
-0.0289306640625,
-0.05926513671875,
-0.04718017578125,
0.01062774658203125,
-0.03546142578125,
0.0889892578125,
-0.00445556640625,
0.0117034912109375,
0.0016727447509765625,
-0.04876708984375,
-0.022064208984375,
-0.0134429931640625,
-0.094482421875,
-0.027191162109375,
0.0206146240234375,
0.0218963623046875,
0.047393798828125,
0.069580078125,
0.0242156982421875,
0.01506805419921875,
-0.0288543701171875,
0.0292205810546875,
-0.056121826171875,
-0.0300140380859375,
-0.01004791259765625,
-0.0247650146484375,
-0.059600830078125,
0.0164337158203125,
0.01493072509765625,
0.038482666015625,
-0.02471923828125,
0.0130462646484375,
0.0165557861328125,
0.048614501953125,
-0.0272979736328125,
0.0213775634765625,
-0.0060882568359375,
0.00318145751953125,
-0.01505279541015625,
-0.0021762847900390625,
-0.002864837646484375,
-0.048797607421875,
0.0014677047729492188,
-0.06878662109375,
0.027801513671875,
-0.0095367431640625,
0.06982421875,
0.0208740234375,
-0.02789306640625,
-0.0231475830078125,
-0.039306640625,
0.06927490234375,
-0.05499267578125,
0.00568389892578125,
0.04150390625,
0.005619049072265625,
-0.0340576171875,
-0.035125732421875,
-0.029541015625,
-0.00508880615234375,
0.0128021240234375,
0.0216827392578125,
-0.00762176513671875,
0.0009617805480957031,
0.019378662109375,
0.04315185546875,
-0.059539794921875,
0.01947021484375,
-0.045623779296875,
-0.0122222900390625,
0.0457763671875,
-0.007793426513671875,
0.0096435546875,
0.00969696044921875,
-0.022186279296875,
-0.0447998046875,
-0.057281494140625,
0.01140594482421875,
0.043853759765625,
0.0089263916015625,
-0.0186004638671875,
0.040557861328125,
-0.018798828125,
0.0380859375,
0.00010341405868530273,
-0.0238800048828125,
0.02490234375,
-0.0279083251953125,
-0.0198822021484375,
-0.00862884521484375,
0.042236328125,
0.01232147216796875,
0.0101470947265625,
0.0123443603515625,
-0.01898193359375,
-0.006317138671875,
0.016632080078125,
-0.038604736328125,
-0.026519775390625,
0.01629638671875,
-0.064208984375,
-0.0243988037109375,
0.0236663818359375,
-0.0430908203125,
-0.01374053955078125,
-0.02423095703125,
0.01395416259765625,
-0.019622802734375,
-0.01323699951171875,
0.031768798828125,
-0.0006299018859863281,
0.016357421875,
0.021026611328125,
-0.0517578125,
0.041046142578125,
0.03900146484375,
0.048004150390625,
-0.00800323486328125,
-0.012451171875,
-0.037628173828125,
-0.0006885528564453125,
-0.02545166015625,
0.060821533203125,
-0.0282135009765625,
-0.048431396484375,
-0.034454345703125,
-0.0028362274169921875,
0.0127105712890625,
-0.048614501953125,
0.050201416015625,
-0.0384521484375,
0.035400390625,
-0.03851318359375,
-0.025360107421875,
-0.03125,
-0.0128173828125,
-0.06341552734375,
0.089599609375,
0.019378662109375,
-0.0308380126953125,
0.04681396484375,
-0.076904296875,
-0.0130767822265625,
-0.0224456787109375,
-0.00978851318359375,
-0.039947509765625,
0.0092010498046875,
0.04742431640625,
0.0078887939453125,
-0.0168609619140625,
-0.007843017578125,
-0.04595947265625,
-0.017486572265625,
-0.0260162353515625,
-0.0013494491577148438,
0.06866455078125,
0.02490234375,
-0.0221405029296875,
0.0018453598022460938,
-0.0633544921875,
-0.0156402587890625,
0.019805908203125,
-0.0307769775390625,
-0.03302001953125,
-0.0214385986328125,
-0.025543212890625,
0.007328033447265625,
-0.0021800994873046875,
-0.0653076171875,
0.03167724609375,
-0.01532745361328125,
0.040740966796875,
0.05462646484375,
0.0176849365234375,
0.02789306640625,
-0.034088134765625,
0.044158935546875,
-0.00888824462890625,
0.0462646484375,
0.0192108154296875,
-0.062164306640625,
-0.0374755859375,
-0.031768798828125,
0.0106201171875,
0.01250457763671875,
-0.055755615234375,
0.0310821533203125,
-0.00007218122482299805,
-0.0302734375,
-0.057403564453125,
0.004833221435546875,
0.039215087890625,
0.044403076171875,
0.046417236328125,
-0.076171875,
-0.0155181884765625,
-0.057373046875,
0.015106201171875,
-0.0003654956817626953,
-0.0010118484497070312,
0.0308380126953125,
0.033599853515625,
0.0161895751953125,
0.06927490234375,
-0.03179931640625,
-0.0279693603515625,
0.0023193359375,
0.01068115234375,
0.0259246826171875,
0.047271728515625,
0.061126708984375,
-0.054779052734375,
-0.00672149658203125,
-0.023895263671875,
-0.0594482421875,
-0.0005249977111816406,
0.0137939453125,
-0.0287017822265625,
0.0158843994140625,
0.0281219482421875,
-0.036865234375,
0.063232421875,
0.026763916015625,
-0.0044403076171875,
0.0229644775390625,
-0.031768798828125,
0.0193939208984375,
-0.05523681640625,
0.02069091796875,
-0.01105499267578125,
-0.01092529296875,
-0.007053375244140625,
0.01087188720703125,
-0.020263671875,
-0.005084991455078125,
-0.0211334228515625,
0.033447265625,
-0.041351318359375,
-0.0160369873046875,
-0.0218505859375,
-0.006870269775390625,
0.00379180908203125,
0.03570556640625,
0.001110076904296875,
0.043670654296875,
0.044219970703125,
-0.042816162109375,
0.019805908203125,
0.05010986328125,
-0.02471923828125,
0.04052734375,
-0.0748291015625,
0.041778564453125,
-0.021331787109375,
0.041015625,
-0.083984375,
-0.01424407958984375,
0.0251007080078125,
-0.017608642578125,
0.025177001953125,
-0.01406097412109375,
-0.041748046875,
-0.0304107666015625,
-0.041168212890625,
0.022552490234375,
0.027069091796875,
-0.06524658203125,
0.02117919921875,
0.0302581787109375,
-0.0045166015625,
-0.040252685546875,
-0.05023193359375,
-0.022918701171875,
-0.01415252685546875,
-0.033538818359375,
0.0218505859375,
-0.00629425048828125,
0.0206451416015625,
0.0093994140625,
-0.035369873046875,
-0.00817108154296875,
-0.009429931640625,
0.01222991943359375,
0.0215911865234375,
-0.01702880859375,
-0.0100250244140625,
0.0249481201171875,
-0.013092041015625,
-0.002033233642578125,
-0.0264739990234375,
0.03363037109375,
0.0026493072509765625,
-0.047149658203125,
-0.029541015625,
0.01551055908203125,
0.0301361083984375,
-0.008758544921875,
0.053131103515625,
0.053497314453125,
-0.01383209228515625,
0.0017480850219726562,
-0.0238800048828125,
-0.0279693603515625,
-0.033843994140625,
0.005863189697265625,
-0.0325927734375,
-0.05303955078125,
0.041717529296875,
0.042236328125,
0.0269927978515625,
0.03546142578125,
-0.004779815673828125,
0.0045318603515625,
0.0732421875,
0.03564453125,
-0.040924072265625,
0.03497314453125,
-0.0518798828125,
-0.0003440380096435547,
-0.06207275390625,
-0.0280303955078125,
-0.042205810546875,
-0.0205841064453125,
-0.04022216796875,
-0.0004987716674804688,
0.048980712890625,
0.0084075927734375,
-0.020538330078125,
0.04095458984375,
-0.06524658203125,
0.03253173828125,
0.0587158203125,
0.053070068359375,
0.019500732421875,
0.0124053955078125,
0.0025634765625,
0.03656005859375,
-0.062164306640625,
-0.05352783203125,
0.1025390625,
0.021728515625,
0.05560302734375,
0.01068115234375,
0.07208251953125,
0.0226287841796875,
0.01470947265625,
-0.0175323486328125,
0.04345703125,
-0.0277252197265625,
-0.0333251953125,
-0.0380859375,
-0.0462646484375,
-0.09857177734375,
-0.00572967529296875,
0.010589599609375,
-0.043853759765625,
0.027252197265625,
0.0107421875,
-0.03790283203125,
0.0241851806640625,
-0.03857421875,
0.060028076171875,
0.01132965087890625,
-0.0079193115234375,
-0.01399993896484375,
-0.05084228515625,
0.0203399658203125,
-0.0016021728515625,
0.00040984153747558594,
0.003955841064453125,
-0.02398681640625,
0.05401611328125,
-0.0589599609375,
0.047882080078125,
-0.0266876220703125,
-0.0185394287109375,
0.0440673828125,
-0.018341064453125,
0.0307464599609375,
-0.005481719970703125,
-0.01500701904296875,
0.02154541015625,
0.0003268718719482422,
-0.059234619140625,
-0.012725830078125,
0.05487060546875,
-0.0765380859375,
0.0004229545593261719,
-0.0174560546875,
-0.0005755424499511719,
0.00960540771484375,
0.0007114410400390625,
0.039764404296875,
0.055572509765625,
-0.0032596588134765625,
-0.00508880615234375,
0.04644775390625,
-0.03607177734375,
0.0166473388671875,
0.03594970703125,
0.009979248046875,
-0.036346435546875,
0.0633544921875,
0.02142333984375,
0.00884246826171875,
0.01512908935546875,
0.006317138671875,
-0.03369140625,
-0.056427001953125,
-0.03790283203125,
0.033447265625,
-0.041015625,
-0.00318145751953125,
-0.04010009765625,
0.00858306884765625,
-0.047607421875,
0.0174407958984375,
-0.0265960693359375,
-0.03253173828125,
-0.0491943359375,
-0.01117706298828125,
0.023162841796875,
0.07080078125,
-0.0219268798828125,
0.02117919921875,
-0.05010986328125,
0.036285400390625,
0.016387939453125,
0.01593017578125,
0.00525665283203125,
-0.049896240234375,
0.0062103271484375,
0.00908660888671875,
-0.0357666015625,
-0.0423583984375,
0.0225067138671875,
0.016448974609375,
0.062347412109375,
0.0173187255859375,
0.0035648345947265625,
0.051361083984375,
0.0168609619140625,
0.07196044921875,
-0.0082244873046875,
-0.044677734375,
0.043182373046875,
-0.031463623046875,
0.031463623046875,
0.051483154296875,
0.039215087890625,
0.00811767578125,
-0.0303497314453125,
-0.071533203125,
-0.0821533203125,
0.07635498046875,
0.0199432373046875,
-0.016082763671875,
0.00537109375,
0.044281005859375,
0.035369873046875,
0.025604248046875,
-0.033233642578125,
-0.0201263427734375,
-0.01363372802734375,
0.00316619873046875,
-0.0023899078369140625,
-0.006130218505859375,
0.011993408203125,
-0.0005369186401367188,
0.0771484375,
0.0018091201782226562,
0.035797119140625,
0.0173187255859375,
0.01488494873046875,
-0.01045989990234375,
-0.00829315185546875,
0.04632568359375,
0.043243408203125,
-0.0211334228515625,
-0.02264404296875,
0.00926971435546875,
-0.050079345703125,
-0.0174102783203125,
-0.0019969940185546875,
0.0009512901306152344,
-0.006649017333984375,
0.0307769775390625,
0.0404052734375,
-0.0180206298828125,
-0.0168609619140625,
0.0205535888671875,
-0.0018033981323242188,
-0.0009613037109375,
0.0024166107177734375,
0.027252197265625,
-0.0279083251953125,
-0.003376007080078125,
0.01202392578125,
0.0140380859375,
0.033294677734375,
-0.041717529296875,
0.007213592529296875,
-0.0003974437713623047,
0.002044677734375,
-0.022552490234375,
0.051849365234375,
0.00548553466796875,
0.0124053955078125,
0.05450439453125,
-0.0300140380859375,
-0.0106658935546875,
0.0640869140625,
-0.007755279541015625,
0.046844482421875,
-0.026153564453125,
0.00921630859375,
0.044830322265625,
0.0110321044921875,
-0.03546142578125,
0.0523681640625,
-0.0084228515625,
-0.0343017578125,
-0.0279693603515625,
-0.028778076171875,
-0.034759521484375,
0.045989990234375,
-0.08319091796875,
0.006938934326171875,
-0.032318115234375,
-0.01209259033203125,
-0.00019168853759765625,
-0.0016107559204101562,
-0.053558349609375,
0.018310546875,
-0.01470947265625,
0.07830810546875,
-0.0784912109375,
0.051849365234375,
0.051849365234375,
-0.053497314453125,
-0.0809326171875,
-0.03643798828125,
0.0105438232421875,
-0.0628662109375,
0.016021728515625,
-0.0060882568359375,
0.00580596923828125,
-0.00969696044921875,
-0.0633544921875,
-0.057952880859375,
0.07562255859375,
0.0341796875,
-0.01512908935546875,
0.00897216796875,
-0.0053253173828125,
0.045684814453125,
-0.030517578125,
0.0428466796875,
0.0592041015625,
0.03460693359375,
0.0114593505859375,
-0.08331298828125,
-0.00511932373046875,
-0.015777587890625,
0.0032863616943359375,
-0.00128936767578125,
-0.06103515625,
0.0673828125,
-0.01404571533203125,
0.0064697265625,
0.045166015625,
0.03485107421875,
0.017333984375,
0.034088134765625,
0.035064697265625,
0.060546875,
0.057464599609375,
0.005855560302734375,
0.08978271484375,
0.016021728515625,
0.02490234375,
0.09027099609375,
-0.01032257080078125,
0.034698486328125,
0.0096893310546875,
-0.0130615234375,
0.0222625732421875,
0.07196044921875,
-0.0081787109375,
0.06707763671875,
0.004734039306640625,
0.006866455078125,
0.0147705078125,
-0.0064544677734375,
-0.034576416015625,
0.026092529296875,
0.00001704692840576172,
-0.03887939453125,
-0.037689208984375,
0.0173797607421875,
-0.0004832744598388672,
-0.018890380859375,
-0.0197906494140625,
0.07794189453125,
0.00011271238327026367,
-0.042999267578125,
0.06866455078125,
-0.013671875,
0.027679443359375,
-0.036590576171875,
-0.0193328857421875,
-0.050018310546875,
-0.00034499168395996094,
-0.0301055908203125,
-0.06036376953125,
0.0084075927734375,
-0.000007331371307373047,
-0.01050567626953125,
-0.029693603515625,
0.029510498046875,
-0.0241241455078125,
0.0147552490234375,
0.014495849609375,
0.0259246826171875,
0.07666015625,
-0.00341796875,
-0.058258056640625,
0.0063018798828125,
0.0213623046875,
-0.033416748046875,
0.025421142578125,
0.028076171875,
-0.0081787109375,
0.045654296875,
0.04815673828125,
0.018341064453125,
-0.0081939697265625,
0.006134033203125,
0.0828857421875,
-0.01296234130859375,
-0.0272979736328125,
-0.032318115234375,
0.01517486572265625,
-0.0125732421875,
-0.055328369140625,
0.044830322265625,
0.06134033203125,
0.08599853515625,
-0.00955963134765625,
0.047607421875,
-0.00640869140625,
0.04779052734375,
-0.0357666015625,
0.035614013671875,
-0.041412353515625,
0.02642822265625,
-0.020263671875,
-0.081787109375,
0.01297760009765625,
0.0621337890625,
-0.027099609375,
0.032684326171875,
0.04058837890625,
0.0792236328125,
-0.032684326171875,
0.032196044921875,
0.00533294677734375,
0.0084228515625,
0.03460693359375,
0.04461669921875,
0.033233642578125,
-0.03863525390625,
0.045379638671875,
-0.0236968994140625,
-0.0347900390625,
-0.012359619140625,
-0.057464599609375,
-0.0518798828125,
-0.0174407958984375,
-0.039581298828125,
-0.023223876953125,
0.010528564453125,
0.0618896484375,
0.07550048828125,
-0.07293701171875,
-0.0096893310546875,
-0.0210113525390625,
-0.01070404052734375,
-0.0341796875,
-0.0118865966796875,
0.050201416015625,
0.00450897216796875,
-0.047576904296875,
0.040435791015625,
0.0009503364562988281,
0.021026611328125,
0.0010614395141601562,
-0.0029468536376953125,
0.0106353759765625,
-0.00930023193359375,
0.028411865234375,
0.0472412109375,
-0.0223541259765625,
-0.0288848876953125,
-0.017822265625,
-0.017608642578125,
0.0040740966796875,
0.021697998046875,
-0.045806884765625,
0.0291290283203125,
0.019317626953125,
0.0152587890625,
0.061737060546875,
0.007511138916015625,
0.01904296875,
-0.034912109375,
-0.0056610107421875,
0.014739990234375,
0.0286407470703125,
0.0142822265625,
-0.0219879150390625,
0.083740234375,
0.01169586181640625,
-0.04608154296875,
-0.043060302734375,
-0.008453369140625,
-0.095947265625,
-0.00521087646484375,
0.08355712890625,
-0.035064697265625,
-0.02288818359375,
-0.01119232177734375,
-0.036895751953125,
0.015777587890625,
-0.07373046875,
0.0706787109375,
0.034912109375,
-0.03253173828125,
0.01434326171875,
-0.030975341796875,
0.0226287841796875,
0.0124053955078125,
-0.06829833984375,
-0.03228759765625,
0.0340576171875,
0.0247650146484375,
0.004802703857421875,
0.036865234375,
-0.0288848876953125,
0.025421142578125,
-0.0086212158203125,
-0.00223541259765625,
-0.039764404296875,
-0.0167999267578125,
-0.031524658203125,
0.017669677734375,
-0.00821685791015625,
-0.05462646484375
]
] |
armanc/pubmed-rct20k | 2022-11-11T08:23:24.000Z | [
"region:us"
] | armanc | null | null | 0 | 1,034 | 2022-11-11T04:20:56 | The small 20K version of the Pubmed-RCT dataset by Dernoncourt et al (2017).
```
@article{dernoncourt2017pubmed,
title={Pubmed 200k rct: a dataset for sequential sentence classification in medical abstracts},
author={Dernoncourt, Franck and Lee, Ji Young},
journal={arXiv preprint arXiv:1710.06071},
year={2017}
}
```
Note: This is the cleaned up version by Jin and Szolovits (2018).
```
@article{jin2018hierarchical,
title={Hierarchical neural networks for sequential sentence classification in medical scientific abstracts},
author={Jin, Di and Szolovits, Peter},
journal={arXiv preprint arXiv:1808.06161},
year={2018}
}
``` | 646 | [
[
0.003749847412109375,
-0.007495880126953125,
0.0477294921875,
0.0162353515625,
-0.0121307373046875,
-0.01142120361328125,
-0.0244293212890625,
-0.030242919921875,
0.0078125,
0.0279083251953125,
-0.026336669921875,
-0.031341552734375,
-0.045928955078125,
0.036285400390625,
-0.00927734375,
0.10601806640625,
0.005924224853515625,
0.0257568359375,
-0.01480865478515625,
-0.0224761962890625,
-0.01166534423828125,
-0.01552581787109375,
-0.053131103515625,
-0.0116424560546875,
0.07244873046875,
0.03057861328125,
0.0238800048828125,
0.06109619140625,
0.053955078125,
0.0224151611328125,
-0.005527496337890625,
-0.00885009765625,
-0.003726959228515625,
0.00011259317398071289,
-0.00812530517578125,
-0.0187225341796875,
-0.042572021484375,
-0.00876617431640625,
0.0380859375,
0.058135986328125,
0.005725860595703125,
0.0086822509765625,
-0.0022563934326171875,
0.051361083984375,
-0.0222320556640625,
0.020477294921875,
-0.0205078125,
0.0026798248291015625,
-0.01450347900390625,
-0.007076263427734375,
-0.061492919921875,
-0.0012636184692382812,
0.0214080810546875,
-0.0205078125,
0.00876617431640625,
0.017791748046875,
0.061126708984375,
0.0266265869140625,
-0.03668212890625,
0.0017442703247070312,
-0.0325927734375,
0.04339599609375,
-0.06927490234375,
-0.0002906322479248047,
0.01324462890625,
0.00824737548828125,
-0.014251708984375,
-0.08660888671875,
-0.0247344970703125,
-0.01145172119140625,
-0.032928466796875,
0.0015010833740234375,
-0.001186370849609375,
0.0160369873046875,
0.01512908935546875,
0.021453857421875,
-0.06689453125,
0.00897216796875,
-0.047119140625,
-0.005725860595703125,
0.061492919921875,
0.033447265625,
0.0001590251922607422,
-0.0565185546875,
-0.02606201171875,
-0.01435089111328125,
-0.0478515625,
-0.018707275390625,
-0.01316070556640625,
0.0340576171875,
-0.028106689453125,
0.0357666015625,
-0.0237884521484375,
0.051025390625,
-0.018463134765625,
-0.0071868896484375,
0.050628662109375,
-0.06195068359375,
-0.006504058837890625,
0.00948333740234375,
0.106689453125,
0.0227813720703125,
0.0136566162109375,
0.0028362274169921875,
0.01483917236328125,
-0.03155517578125,
0.0276031494140625,
-0.0621337890625,
-0.05706787109375,
0.0204010009765625,
-0.05328369140625,
-0.0220489501953125,
0.008636474609375,
-0.044952392578125,
-0.02984619140625,
-0.00968170166015625,
-0.00391387939453125,
-0.0162353515625,
0.006397247314453125,
-0.00475311279296875,
0.0157470703125,
-0.01036834716796875,
0.0218048095703125,
-0.047760009765625,
0.042633056640625,
0.03668212890625,
0.0723876953125,
-0.0288238525390625,
-0.01505279541015625,
-0.01415252685546875,
-0.0237884521484375,
-0.00940704345703125,
0.0609130859375,
-0.0113372802734375,
0.01251983642578125,
-0.026702880859375,
0.0160675048828125,
-0.0121307373046875,
-0.02783203125,
0.033599853515625,
-0.03131103515625,
0.0302886962890625,
-0.00794219970703125,
-0.0216217041015625,
-0.0024509429931640625,
0.0016193389892578125,
-0.047698974609375,
0.04974365234375,
0.010162353515625,
-0.08319091796875,
0.034912109375,
-0.0322265625,
-0.019073486328125,
0.01335906982421875,
-0.0276947021484375,
-0.055633544921875,
-0.00954437255859375,
0.0076751708984375,
0.03460693359375,
0.006641387939453125,
0.0196075439453125,
-0.021148681640625,
-0.01129913330078125,
-0.0033321380615234375,
-0.01275634765625,
0.061248779296875,
0.043914794921875,
0.005565643310546875,
0.007518768310546875,
-0.0712890625,
-0.002899169921875,
-0.00005233287811279297,
-0.0126953125,
-0.03900146484375,
-0.005039215087890625,
0.0167236328125,
0.034088134765625,
0.0089111328125,
-0.058197021484375,
0.0283660888671875,
-0.03668212890625,
0.044189453125,
0.02850341796875,
0.039947509765625,
0.0233306884765625,
-0.046478271484375,
0.0244293212890625,
0.0181884765625,
0.00047516822814941406,
-0.00997161865234375,
-0.06280517578125,
-0.0169525146484375,
-0.043121337890625,
0.06439208984375,
0.043212890625,
-0.032135009765625,
0.029296875,
-0.042327880859375,
-0.0245819091796875,
-0.0408935546875,
-0.020263671875,
0.0145111083984375,
0.0274658203125,
0.0304107666015625,
0.0005025863647460938,
-0.0850830078125,
-0.08270263671875,
-0.007415771484375,
-0.0193634033203125,
-0.003963470458984375,
0.0233001708984375,
0.0694580078125,
-0.01413726806640625,
0.0654296875,
-0.045806884765625,
-0.01070404052734375,
0.0075531005859375,
0.0303955078125,
0.02099609375,
0.0343017578125,
0.0158233642578125,
-0.05224609375,
-0.05340576171875,
0.0021343231201171875,
-0.044525146484375,
-0.0185546875,
-0.023223876953125,
0.013397216796875,
0.00107574462890625,
0.039276123046875,
-0.046844482421875,
0.0284881591796875,
0.01395416259765625,
-0.021087646484375,
0.03924560546875,
-0.016387939453125,
0.0158538818359375,
-0.10101318359375,
0.0028247833251953125,
-0.000522613525390625,
-0.0222320556640625,
-0.029937744140625,
-0.028961181640625,
0.0158233642578125,
0.02960205078125,
-0.023040771484375,
0.02703857421875,
-0.025848388671875,
0.00937652587890625,
-0.006450653076171875,
-0.005260467529296875,
-0.01316070556640625,
0.0258941650390625,
0.0089874267578125,
0.035125732421875,
-0.0035457611083984375,
-0.01216888427734375,
0.007740020751953125,
0.0460205078125,
-0.046142578125,
0.00039267539978027344,
-0.061248779296875,
-0.01439666748046875,
0.0025997161865234375,
0.048126220703125,
-0.08416748046875,
-0.022979736328125,
0.0255889892578125,
-0.046417236328125,
0.0103302001953125,
-0.006683349609375,
-0.04931640625,
-0.0213775634765625,
-0.037689208984375,
0.04083251953125,
0.034942626953125,
-0.01166534423828125,
-0.01454925537109375,
0.0090484619140625,
-0.051361083984375,
-0.044830322265625,
-0.057647705078125,
0.00641632080078125,
0.0005173683166503906,
-0.028533935546875,
0.032318115234375,
0.0038433074951171875,
-0.01515960693359375,
0.0216064453125,
0.0044708251953125,
0.0128936767578125,
-0.024658203125,
0.0264892578125,
0.0158233642578125,
-0.01548004150390625,
0.01556396484375,
-0.0028362274169921875,
-0.009185791015625,
0.0012063980102539062,
0.01165008544921875,
0.0175018310546875,
-0.0008330345153808594,
0.012359619140625,
-0.0197906494140625,
0.017364501953125,
0.0362548828125,
0.0194091796875,
0.051971435546875,
0.0173797607421875,
-0.029388427734375,
-0.00998687744140625,
0.0079193115234375,
-0.0168304443359375,
-0.0278167724609375,
0.032135009765625,
-0.007617950439453125,
-0.0623779296875,
0.038726806640625,
0.0033168792724609375,
-0.0006132125854492188,
0.06524658203125,
0.046661376953125,
-0.0095062255859375,
0.07568359375,
0.0119781494140625,
0.0090789794921875,
0.0237579345703125,
-0.01629638671875,
0.01033782958984375,
-0.0692138671875,
-0.023162841796875,
-0.050506591796875,
-0.0244903564453125,
-0.06396484375,
-0.006107330322265625,
0.0202789306640625,
-0.02191162109375,
-0.045928955078125,
0.0289459228515625,
-0.055694580078125,
0.0033054351806640625,
0.01715087890625,
0.0202789306640625,
0.03729248046875,
0.005126953125,
-0.01486968994140625,
-0.0306243896484375,
-0.059539794921875,
-0.0279388427734375,
0.07562255859375,
0.0274658203125,
0.044189453125,
-0.00872802734375,
0.05621337890625,
0.02142333984375,
0.034210205078125,
-0.050048828125,
0.038177490234375,
-0.0270538330078125,
-0.04974365234375,
-0.002964019775390625,
-0.052825927734375,
-0.0792236328125,
0.00911712646484375,
-0.00875091552734375,
-0.04803466796875,
0.0245819091796875,
-0.020721435546875,
-0.05731201171875,
0.00762176513671875,
-0.04559326171875,
0.061767578125,
0.01503753662109375,
-0.0017833709716796875,
0.01837158203125,
-0.0694580078125,
0.035003662109375,
-0.01093292236328125,
0.017242431640625,
0.010833740234375,
-0.029815673828125,
0.0838623046875,
-0.06304931640625,
0.04437255859375,
-0.009796142578125,
0.0204010009765625,
0.000060617923736572266,
-0.033111572265625,
0.036712646484375,
0.02496337890625,
0.023284912109375,
0.006641387939453125,
0.0172271728515625,
-0.0228729248046875,
-0.01849365234375,
0.050537109375,
-0.055084228515625,
0.00334930419921875,
-0.08349609375,
-0.036407470703125,
-0.008544921875,
0.02801513671875,
0.043853759765625,
0.0225067138671875,
0.0099945068359375,
0.046112060546875,
0.03302001953125,
-0.011871337890625,
0.01849365234375,
0.040008544921875,
0.0076751708984375,
-0.053741455078125,
0.021484375,
0.028961181640625,
-0.00917816162109375,
0.039215087890625,
0.005023956298828125,
-0.001190185546875,
-0.08892822265625,
-0.003681182861328125,
0.0379638671875,
-0.0177154541015625,
-0.036590576171875,
-0.08038330078125,
-0.03564453125,
-0.0264434814453125,
0.004001617431640625,
-0.0237579345703125,
-0.04034423828125,
0.0011453628540039062,
-0.01039886474609375,
0.05523681640625,
0.07000732421875,
-0.0164031982421875,
0.034423828125,
-0.05548095703125,
0.020233154296875,
-0.0017938613891601562,
0.032684326171875,
-0.01404571533203125,
-0.049591064453125,
-0.029510498046875,
-0.000640869140625,
0.0012636184692382812,
-0.037689208984375,
0.036529541015625,
0.01032257080078125,
0.029266357421875,
0.00957489013671875,
0.0267333984375,
0.0318603515625,
-0.0621337890625,
0.07366943359375,
0.0052032470703125,
-0.004390716552734375,
0.03411865234375,
-0.0380859375,
0.035125732421875,
0.08416748046875,
0.040985107421875,
-0.0308074951171875,
-0.01537322998046875,
-0.06451416015625,
-0.09027099609375,
0.07025146484375,
0.01038360595703125,
-0.0238800048828125,
-0.0127716064453125,
0.030487060546875,
0.0257415771484375,
0.005817413330078125,
-0.042633056640625,
-0.0245513916015625,
0.0152740478515625,
-0.057647705078125,
-0.0187225341796875,
-0.0197906494140625,
-0.01131439208984375,
-0.0443115234375,
0.046844482421875,
0.0026531219482421875,
0.046600341796875,
0.0233917236328125,
0.004924774169921875,
-0.0006084442138671875,
0.0168914794921875,
0.053802490234375,
0.033172607421875,
-0.055633544921875,
0.0096435546875,
-0.00577545166015625,
-0.07489013671875,
0.00606536865234375,
0.00582122802734375,
-0.00829315185546875,
0.006298065185546875,
0.058685302734375,
0.037109375,
0.02655029296875,
-0.041900634765625,
0.04052734375,
-0.0176849365234375,
-0.049102783203125,
-0.0306243896484375,
-0.0158233642578125,
0.001125335693359375,
0.00823974609375,
0.033233642578125,
0.04693603515625,
0.0187225341796875,
-0.01305389404296875,
0.050140380859375,
-0.0212860107421875,
-0.02496337890625,
-0.0175323486328125,
0.03729248046875,
-0.0187835693359375,
-0.01006317138671875,
0.04913330078125,
-0.0122833251953125,
-0.00431060791015625,
0.02056884765625,
0.0106964111328125,
0.05950927734375,
0.00632476806640625,
0.00823974609375,
0.044189453125,
0.0162200927734375,
-0.023590087890625,
0.0231170654296875,
0.0161285400390625,
-0.048004150390625,
-0.0482177734375,
-0.03277587890625,
-0.025634765625,
0.044464111328125,
-0.0545654296875,
-0.0041656494140625,
-0.035736083984375,
-0.0025119781494140625,
0.044952392578125,
0.0335693359375,
-0.0162200927734375,
0.013641357421875,
-0.0103302001953125,
0.0787353515625,
-0.0609130859375,
0.061859130859375,
0.0679931640625,
-0.0283660888671875,
-0.045806884765625,
-0.015289306640625,
0.0043487548828125,
-0.02056884765625,
0.0472412109375,
-0.015106201171875,
0.0340576171875,
-0.01885986328125,
-0.05865478515625,
-0.042816162109375,
0.07965087890625,
-0.00843048095703125,
-0.04754638671875,
-0.0043487548828125,
-0.01204681396484375,
0.06207275390625,
-0.047515869140625,
0.00859832763671875,
0.0280914306640625,
0.022430419921875,
0.01073455810546875,
-0.06451416015625,
0.0035457611083984375,
-0.057891845703125,
-0.0017709732055664062,
-0.0037517547607421875,
-0.0401611328125,
0.0794677734375,
-0.01373291015625,
0.0075531005859375,
0.0215911865234375,
0.033966064453125,
0.03729248046875,
0.0310211181640625,
0.0270233154296875,
0.054351806640625,
0.033111572265625,
-0.021881103515625,
0.0689697265625,
0.003810882568359375,
0.03326416015625,
0.10186767578125,
-0.0109710693359375,
0.0771484375,
0.027862548828125,
-0.04718017578125,
0.062042236328125,
0.07794189453125,
0.0019435882568359375,
0.0758056640625,
0.00624847412109375,
0.0031032562255859375,
0.0090484619140625,
0.0283355712890625,
-0.03955078125,
0.02618408203125,
0.0216217041015625,
-0.051910400390625,
-0.00731658935546875,
0.0168914794921875,
0.0244903564453125,
-0.00690460205078125,
-0.0160675048828125,
0.07342529296875,
0.0275115966796875,
-0.0281524658203125,
0.0487060546875,
-0.0084228515625,
0.047821044921875,
-0.041961669921875,
0.005523681640625,
-0.00839996337890625,
0.032379150390625,
-0.033172607421875,
-0.047760009765625,
0.0262298583984375,
0.0001819133758544922,
-0.031158447265625,
-0.0100860595703125,
0.04931640625,
-0.0284576416015625,
-0.0153961181640625,
-0.003208160400390625,
0.0204315185546875,
0.02117919921875,
0.0138702392578125,
-0.06085205078125,
-0.00726318359375,
-0.0152435302734375,
-0.04595947265625,
0.037384033203125,
0.036346435546875,
0.002002716064453125,
0.031097412109375,
0.015106201171875,
0.0296478271484375,
-0.002994537353515625,
-0.00925445556640625,
0.048797607421875,
-0.05615234375,
-0.04644775390625,
-0.046539306640625,
0.037445068359375,
-0.0298309326171875,
-0.041015625,
0.06610107421875,
0.04840087890625,
0.053466796875,
-0.01861572265625,
0.05718994140625,
-0.0222015380859375,
0.0535888671875,
-0.01021575927734375,
0.0574951171875,
-0.034576416015625,
0.0113677978515625,
-0.00957489013671875,
-0.02801513671875,
-0.037811279296875,
0.0499267578125,
-0.03802490234375,
0.02520751953125,
0.0919189453125,
0.041290283203125,
0.0175323486328125,
0.0099639892578125,
-0.005359649658203125,
0.046905517578125,
-0.01152801513671875,
0.0343017578125,
0.03863525390625,
-0.06158447265625,
0.0196380615234375,
-0.028472900390625,
-0.0167999267578125,
-0.03460693359375,
-0.05426025390625,
-0.0399169921875,
-0.054718017578125,
-0.046478271484375,
-0.04071044921875,
0.004489898681640625,
0.08599853515625,
0.058868408203125,
-0.1051025390625,
0.01267242431640625,
-0.005611419677734375,
-0.01026153564453125,
-0.03472900390625,
-0.0130767822265625,
0.04864501953125,
-0.012725830078125,
-0.018798828125,
0.016143798828125,
0.01020050048828125,
-0.0268096923828125,
0.01367950439453125,
-0.01033782958984375,
-0.050750732421875,
-0.01100921630859375,
0.033599853515625,
0.021881103515625,
-0.0164337158203125,
-0.027435302734375,
-0.007801055908203125,
-0.0460205078125,
0.01519012451171875,
0.0521240234375,
-0.053314208984375,
0.0223236083984375,
0.07525634765625,
0.0254669189453125,
0.0335693359375,
0.0014667510986328125,
0.0173492431640625,
-0.06573486328125,
0.0025844573974609375,
0.0284881591796875,
0.0218048095703125,
0.01258087158203125,
-0.0149688720703125,
0.039794921875,
0.0291748046875,
-0.065185546875,
-0.074462890625,
-0.0194854736328125,
-0.1070556640625,
-0.0233612060546875,
0.08111572265625,
-0.0008997917175292969,
-0.0208282470703125,
-0.031951904296875,
-0.01134490966796875,
0.01383209228515625,
-0.035308837890625,
0.031494140625,
0.03466796875,
-0.0120086669921875,
-0.0421142578125,
-0.06365966796875,
0.0626220703125,
-0.00257110595703125,
-0.04974365234375,
-0.004604339599609375,
0.01078033447265625,
0.02374267578125,
0.0198211669921875,
0.062225341796875,
-0.03424072265625,
0.01171112060546875,
0.01483917236328125,
-0.0006413459777832031,
-0.010284423828125,
-0.029571533203125,
-0.03887939453125,
0.0202484130859375,
-0.0016841888427734375,
-0.016082763671875
]
] |
allenai/qasper | 2022-10-07T22:04:11.000Z | [
"task_categories:question-answering",
"task_ids:closed-domain-qa",
"annotations_creators:expert-generated",
"language_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:extended|s2orc",
"language:en",
"license:cc-by-4.0",
"arxiv:2105.03011",
"region:us"
] | allenai | A dataset containing 1585 papers with 5049 information-seeking questions asked by regular readers of NLP papers, and answered by a separate set of NLP practitioners. | @inproceedings{Dasigi2021ADO,
title={A Dataset of Information-Seeking Questions and Answers Anchored in Research Papers},
author={Pradeep Dasigi and Kyle Lo and Iz Beltagy and Arman Cohan and Noah A. Smith and Matt Gardner},
year={2021}
} | 36 | 1,033 | 2022-03-02T23:29:22 | ---
pretty_name: QASPER
annotations_creators:
- expert-generated
language_creators:
- expert-generated
language:
- en
language_bcp47:
- en-US
license:
- cc-by-4.0
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- extended|s2orc
task_categories:
- question-answering
task_ids:
- closed-domain-qa
paperswithcode_id: qasper
---
# Dataset Card for Qasper
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
- [Who are the source language producers?](#who-are-the-source-language-producers)
- [Annotations](#annotations)
- [Annotation process](#annotation-process)
- [Who are the annotators?](#who-are-the-annotators)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://allenai.org/data/qasper](https://allenai.org/data/qasper)
- **Demo:** [https://qasper-demo.apps.allenai.org/](https://qasper-demo.apps.allenai.org/)
- **Paper:** [https://arxiv.org/abs/2105.03011](https://arxiv.org/abs/2105.03011)
- **Blogpost:** [https://medium.com/ai2-blog/question-answering-on-scientific-research-papers-f6d6da9fd55c](https://medium.com/ai2-blog/question-answering-on-scientific-research-papers-f6d6da9fd55c)
- **Leaderboards:** [https://paperswithcode.com/dataset/qasper](https://paperswithcode.com/dataset/qasper)
### Dataset Summary
QASPER is a dataset for question answering on scientific research papers. It consists of 5,049 questions over 1,585 Natural Language Processing papers. Each question is written by an NLP practitioner who read only the title and abstract of the corresponding paper, and the question seeks information present in the full text. The questions are then answered by a separate set of NLP practitioners who also provide supporting evidence to answers.
### Supported Tasks and Leaderboards
- `question-answering`: The dataset can be used to train a model for Question Answering. Success on this task is typically measured by achieving a *high* [F1 score](https://huggingface.co/metrics/f1). The [official baseline model](https://github.com/allenai/qasper-led-baseline) currently achieves 33.63 Token F1 score & uses [Longformer](https://huggingface.co/transformers/model_doc/longformer.html). This task has an active leaderboard which can be found [here](https://paperswithcode.com/sota/question-answering-on-qasper)
- `evidence-selection`: The dataset can be used to train a model for Evidence Selection. Success on this task is typically measured by achieving a *high* [F1 score](https://huggingface.co/metrics/f1). The [official baseline model](https://github.com/allenai/qasper-led-baseline) currently achieves 39.37 F1 score & uses [Longformer](https://huggingface.co/transformers/model_doc/longformer.html). This task has an active leaderboard which can be found [here](https://paperswithcode.com/sota/evidence-selection-on-qasper)
### Languages
English, as it is used in research papers.
## Dataset Structure
### Data Instances
A typical instance in the dataset:
```
{
'id': "Paper ID (string)",
'title': "Paper Title",
'abstract': "paper abstract ...",
'full_text': {
'paragraphs':[["section1_paragraph1_text","section1_paragraph2_text",...],["section2_paragraph1_text","section2_paragraph2_text",...]],
'section_name':["section1_title","section2_title"],...},
'qas': {
'answers':[{
'annotation_id': ["q1_answer1_annotation_id","q1_answer2_annotation_id"]
'answer': [{
'unanswerable':False,
'extractive_spans':["q1_answer1_extractive_span1","q1_answer1_extractive_span2"],
'yes_no':False,
'free_form_answer':"q1_answer1",
'evidence':["q1_answer1_evidence1","q1_answer1_evidence2",..],
'highlighted_evidence':["q1_answer1_highlighted_evidence1","q1_answer1_highlighted_evidence2",..]
},
{
'unanswerable':False,
'extractive_spans':["q1_answer2_extractive_span1","q1_answer2_extractive_span2"],
'yes_no':False,
'free_form_answer':"q1_answer2",
'evidence':["q1_answer2_evidence1","q1_answer2_evidence2",..],
'highlighted_evidence':["q1_answer2_highlighted_evidence1","q1_answer2_highlighted_evidence2",..]
}],
'worker_id':["q1_answer1_worker_id","q1_answer2_worker_id"]
},{...["question2's answers"]..},{...["question3's answers"]..}],
'question':["question1","question2","question3"...],
'question_id':["question1_id","question2_id","question3_id"...],
'question_writer':["question1_writer_id","question2_writer_id","question3_writer_id"...],
'nlp_background':["question1_writer_nlp_background","question2_writer_nlp_background",...],
'topic_background':["question1_writer_topic_background","question2_writer_topic_background",...],
'paper_read': ["question1_writer_paper_read_status","question2_writer_paper_read_status",...],
'search_query':["question1_search_query","question2_search_query","question3_search_query"...],
}
}
```
### Data Fields
The following is an excerpt from the dataset README:
Within "qas", some fields should be obvious. Here is some explanation about the others:
#### Fields specific to questions:
- "nlp_background" shows the experience the question writer had. The values can be "zero" (no experience), "two" (0 - 2 years of experience), "five" (2 - 5 years of experience), and "infinity" (> 5 years of experience). The field may be empty as well, indicating the writer has chosen not to share this information.
- "topic_background" shows how familiar the question writer was with the topic of the paper. The values are "unfamiliar", "familiar", "research" (meaning that the topic is the research area of the writer), or null.
- "paper_read", when specified shows whether the questionwriter has read the paper.
- "search_query", if not empty, is the query the question writer used to find the abstract of the paper from a large pool of abstracts we made available to them.
#### Fields specific to answers
Unanswerable answers have "unanswerable" set to true. The remaining answers have exactly one of the following fields being non-empty.
- "extractive_spans" are spans in the paper which serve as the answer.
- "free_form_answer" is a written out answer.
- "yes_no" is true iff the answer is Yes, and false iff the answer is No.
"evidence" is the set of paragraphs, figures or tables used to arrive at the answer. Tables or figures start with the string "FLOAT SELECTED"
"highlighted_evidence" is the set of sentences the answer providers selected as evidence if they chose textual evidence. The text in the "evidence" field is a mapping from these sentences to the paragraph level. That is, if you see textual evidence in the "evidence" field, it is guaranteed to be entire paragraphs, while that is not the case with "highlighted_evidence".
### Data Splits
| | Train | Valid |
| ----- | ------ | ----- |
| Number of papers | 888 | 281 |
| Number of questions | 2593 | 1005 |
| Number of answers | 2675 | 1764 |
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
NLP papers: The full text of the papers is extracted from [S2ORC](https://huggingface.co/datasets/s2orc) (Lo et al., 2020)
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
[More Information Needed]
#### Annotation process
[More Information Needed]
#### Who are the annotators?
"The annotators are NLP practitioners, not
expert researchers, and it is likely that an expert
would score higher"
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
Crowdsourced NLP practitioners
### Licensing Information
[CC BY 4.0](https://creativecommons.org/licenses/by/4.0)
### Citation Information
```
@inproceedings{Dasigi2021ADO,
title={A Dataset of Information-Seeking Questions and Answers Anchored in Research Papers},
author={Pradeep Dasigi and Kyle Lo and Iz Beltagy and Arman Cohan and Noah A. Smith and Matt Gardner},
year={2021}
}
```
### Contributions
Thanks to [@cceyda](https://github.com/cceyda) for adding this dataset.
| 9,639 | [
[
-0.03399658203125,
-0.049774169921875,
0.03338623046875,
0.012451171875,
-0.0018453598022460938,
-0.00879669189453125,
0.0012311935424804688,
-0.0298919677734375,
0.034210205078125,
0.032684326171875,
-0.04376220703125,
-0.052215576171875,
-0.044647216796875,
0.019989013671875,
-0.028106689453125,
0.09820556640625,
-0.003040313720703125,
-0.0175933837890625,
-0.0286102294921875,
-0.015655517578125,
-0.0124053955078125,
-0.024993896484375,
-0.0491943359375,
-0.00540924072265625,
0.034637451171875,
0.033416748046875,
0.04119873046875,
0.04034423828125,
0.03802490234375,
0.0191802978515625,
-0.0200653076171875,
0.0096282958984375,
-0.0187835693359375,
0.002094268798828125,
-0.0016222000122070312,
-0.045166015625,
-0.04412841796875,
0.005474090576171875,
0.0428466796875,
0.0312347412109375,
-0.0013055801391601562,
0.04180908203125,
0.00499725341796875,
0.041046142578125,
-0.029327392578125,
0.019134521484375,
-0.0233612060546875,
-0.0014257431030273438,
-0.01194000244140625,
-0.0166778564453125,
-0.0016803741455078125,
-0.044036865234375,
0.004665374755859375,
-0.055267333984375,
0.0184326171875,
0.0010509490966796875,
0.08514404296875,
0.00997161865234375,
-0.025482177734375,
-0.0311431884765625,
-0.0261993408203125,
0.055816650390625,
-0.06207275390625,
-0.004398345947265625,
0.05908203125,
0.022216796875,
0.0032634735107421875,
-0.06597900390625,
-0.06036376953125,
0.014739990234375,
-0.034637451171875,
0.0242919921875,
-0.0018167495727539062,
-0.01309967041015625,
0.028411865234375,
0.034393310546875,
-0.055267333984375,
-0.0161285400390625,
-0.04150390625,
-0.00785064697265625,
0.07073974609375,
0.02362060546875,
0.01526641845703125,
-0.0321044921875,
-0.01788330078125,
-0.029144287109375,
-0.01409149169921875,
0.036407470703125,
0.01129150390625,
0.018890380859375,
-0.0177154541015625,
0.04248046875,
-0.0290985107421875,
0.03399658203125,
0.01348114013671875,
-0.02667236328125,
0.037811279296875,
-0.047210693359375,
-0.00890350341796875,
-0.0205230712890625,
0.0782470703125,
0.03057861328125,
-0.0157623291015625,
0.004436492919921875,
-0.00396728515625,
-0.0142974853515625,
-0.0018033981323242188,
-0.05023193359375,
-0.022216796875,
0.05609130859375,
-0.04144287109375,
-0.017974853515625,
0.006984710693359375,
-0.0721435546875,
-0.013336181640625,
0.001659393310546875,
0.036956787109375,
-0.0247039794921875,
-0.0259552001953125,
0.01153564453125,
-0.0305633544921875,
0.032073974609375,
0.0105438232421875,
-0.0538330078125,
0.03741455078125,
0.032562255859375,
0.0509033203125,
-0.004154205322265625,
-0.0257415771484375,
-0.0205535888671875,
-0.0070343017578125,
-0.0059356689453125,
0.0614013671875,
-0.0198516845703125,
-0.016876220703125,
-0.01153564453125,
0.0272979736328125,
-0.0233917236328125,
-0.0261993408203125,
0.0687255859375,
-0.035491943359375,
0.051483154296875,
-0.0406494140625,
-0.04559326171875,
-0.0175628662109375,
0.0290374755859375,
-0.0574951171875,
0.10107421875,
0.0159759521484375,
-0.07843017578125,
0.029388427734375,
-0.057464599609375,
-0.010162353515625,
-0.0012159347534179688,
-0.01163482666015625,
-0.044189453125,
-0.023651123046875,
0.035797119140625,
0.03472900390625,
-0.0280609130859375,
0.0105438232421875,
0.0032558441162109375,
-0.0176544189453125,
0.02008056640625,
0.0037174224853515625,
0.0906982421875,
0.009033203125,
-0.01436614990234375,
0.01094818115234375,
-0.07305908203125,
0.0100250244140625,
0.0260162353515625,
-0.028594970703125,
-0.011932373046875,
-0.003078460693359375,
0.0157012939453125,
0.0294952392578125,
0.01442718505859375,
-0.043304443359375,
0.006481170654296875,
-0.0245208740234375,
0.0279083251953125,
0.031219482421875,
0.0244140625,
0.015655517578125,
-0.050262451171875,
0.052154541015625,
-0.002559661865234375,
0.01494598388671875,
-0.00159454345703125,
-0.043060302734375,
-0.052276611328125,
-0.009002685546875,
0.033782958984375,
0.055267333984375,
-0.04180908203125,
0.0638427734375,
-0.03021240234375,
-0.050872802734375,
-0.06390380859375,
0.001068115234375,
0.024658203125,
0.057373046875,
0.04473876953125,
-0.0042266845703125,
-0.03875732421875,
-0.06622314453125,
0.00736236572265625,
-0.0133514404296875,
-0.0089263916015625,
0.01361846923828125,
0.06341552734375,
0.00946044921875,
0.07196044921875,
-0.05133056640625,
-0.0255279541015625,
-0.0250091552734375,
0.00580596923828125,
0.03857421875,
0.04022216796875,
0.041900634765625,
-0.06634521484375,
-0.03936767578125,
-0.028350830078125,
-0.057342529296875,
0.0005016326904296875,
-0.01105499267578125,
-0.0153350830078125,
0.0017652511596679688,
0.03472900390625,
-0.0570068359375,
0.0231475830078125,
0.028106689453125,
-0.046966552734375,
0.04058837890625,
0.001483917236328125,
0.016937255859375,
-0.0936279296875,
0.032562255859375,
-0.003833770751953125,
0.00385284423828125,
-0.037322998046875,
0.005214691162109375,
0.005306243896484375,
0.00514984130859375,
-0.0208892822265625,
0.035980224609375,
-0.034881591796875,
0.01221466064453125,
0.004108428955078125,
0.01305389404296875,
0.0269622802734375,
0.0443115234375,
-0.0018749237060546875,
0.06756591796875,
0.03369140625,
-0.035125732421875,
0.01464080810546875,
0.05419921875,
-0.0261993408203125,
0.030792236328125,
-0.0673828125,
0.0028743743896484375,
-0.0223846435546875,
0.0177764892578125,
-0.08514404296875,
-0.018218994140625,
0.0169677734375,
-0.0521240234375,
0.00588226318359375,
-0.0026950836181640625,
-0.04541015625,
-0.0318603515625,
-0.037841796875,
0.0128021240234375,
0.02978515625,
-0.015045166015625,
0.04217529296875,
0.023834228515625,
-0.0208282470703125,
-0.039703369140625,
-0.04541015625,
-0.00746917724609375,
-0.015777587890625,
-0.05010986328125,
0.03265380859375,
-0.006092071533203125,
-0.004093170166015625,
0.0162200927734375,
0.006900787353515625,
-0.00881195068359375,
0.0038814544677734375,
0.0166168212890625,
0.0017728805541992188,
-0.014007568359375,
0.01490020751953125,
0.00424957275390625,
0.0010385513305664062,
0.016082763671875,
0.019134521484375,
0.046356201171875,
-0.009124755859375,
-0.01131439208984375,
-0.032806396484375,
0.036285400390625,
0.027862548828125,
-0.042816162109375,
0.0640869140625,
0.04083251953125,
-0.023712158203125,
0.018096923828125,
-0.033416748046875,
-0.00501251220703125,
-0.029754638671875,
0.0199127197265625,
-0.02862548828125,
-0.054656982421875,
0.05877685546875,
0.0225677490234375,
0.019927978515625,
0.07257080078125,
0.024139404296875,
-0.020111083984375,
0.06982421875,
0.027801513671875,
-0.001194000244140625,
0.018341064453125,
-0.04296875,
-0.0037860870361328125,
-0.05975341796875,
-0.03173828125,
-0.05413818359375,
-0.0261688232421875,
-0.0382080078125,
-0.0251617431640625,
0.02862548828125,
0.0091705322265625,
-0.0185699462890625,
0.0115814208984375,
-0.049896240234375,
0.025115966796875,
0.05181884765625,
0.01248931884765625,
0.00799560546875,
-0.0173187255859375,
0.0161285400390625,
-0.0012607574462890625,
-0.047821044921875,
-0.041351318359375,
0.093994140625,
0.0322265625,
0.015472412109375,
-0.0008349418640136719,
0.060394287109375,
0.009674072265625,
0.0008573532104492188,
-0.042694091796875,
0.05078125,
0.009185791015625,
-0.060882568359375,
-0.03558349609375,
-0.0162200927734375,
-0.08551025390625,
0.0184326171875,
-0.0477294921875,
-0.03814697265625,
0.027069091796875,
-0.00722503662109375,
-0.046173095703125,
0.01061248779296875,
-0.037841796875,
0.0673828125,
-0.01416778564453125,
-0.0185394287109375,
0.0139617919921875,
-0.066162109375,
0.0123443603515625,
0.007068634033203125,
0.0115966796875,
-0.0023059844970703125,
-0.002849578857421875,
0.0924072265625,
-0.031219482421875,
0.05023193359375,
-0.02099609375,
0.0202484130859375,
0.038818359375,
-0.027679443359375,
0.02838134765625,
0.00707244873046875,
-0.01438140869140625,
-0.0028934478759765625,
0.03472900390625,
-0.04510498046875,
-0.0445556640625,
0.019012451171875,
-0.0594482421875,
-0.0267791748046875,
-0.046630859375,
-0.035491943359375,
-0.00772857666015625,
0.020050048828125,
0.0198211669921875,
0.007053375244140625,
-0.0049896240234375,
0.019287109375,
0.054412841796875,
-0.0267791748046875,
0.0184783935546875,
0.026763916015625,
-0.01377105712890625,
-0.042205810546875,
0.03973388671875,
0.01068115234375,
-0.004169464111328125,
0.032562255859375,
0.00873565673828125,
-0.0285797119140625,
-0.051239013671875,
-0.0207977294921875,
0.020599365234375,
-0.0411376953125,
-0.026641845703125,
-0.0687255859375,
-0.0249176025390625,
-0.044830322265625,
0.0113525390625,
0.0008950233459472656,
-0.04327392578125,
-0.02655029296875,
-0.0276336669921875,
0.046295166015625,
0.017578125,
0.0026493072509765625,
0.027984619140625,
-0.055084228515625,
0.03515625,
0.03387451171875,
0.018035888671875,
-0.0131072998046875,
-0.03668212890625,
-0.0177459716796875,
0.005580902099609375,
-0.0228271484375,
-0.072021484375,
0.0311279296875,
0.0162353515625,
0.039703369140625,
0.0155181884765625,
0.007312774658203125,
0.05181884765625,
0.00255584716796875,
0.077880859375,
-0.00444793701171875,
-0.03997802734375,
0.06304931640625,
-0.0289764404296875,
0.0184783935546875,
0.07275390625,
0.045745849609375,
-0.0360107421875,
-0.02374267578125,
-0.055999755859375,
-0.086181640625,
0.047698974609375,
0.0155181884765625,
-0.004016876220703125,
-0.0118560791015625,
0.0303497314453125,
0.007160186767578125,
0.00797271728515625,
-0.06451416015625,
-0.0259246826171875,
-0.013824462890625,
-0.024627685546875,
0.0038547515869140625,
-0.0186004638671875,
-0.0311737060546875,
-0.0382080078125,
0.0467529296875,
-0.0033111572265625,
0.0276336669921875,
0.037322998046875,
0.00241851806640625,
0.003635406494140625,
0.02801513671875,
0.0285797119140625,
0.050201416015625,
-0.041656494140625,
-0.00720977783203125,
0.007274627685546875,
-0.04248046875,
-0.0084381103515625,
0.0275421142578125,
-0.0294189453125,
-0.00618743896484375,
0.037750244140625,
0.049896240234375,
-0.0182342529296875,
-0.0479736328125,
0.045196533203125,
-0.01806640625,
-0.042816162109375,
-0.041229248046875,
0.0009636878967285156,
0.00478363037109375,
0.0214385986328125,
0.04388427734375,
-0.0223846435546875,
0.01413726806640625,
-0.034271240234375,
0.0055389404296875,
0.01544189453125,
-0.002475738525390625,
-0.01030731201171875,
0.0528564453125,
-0.006488800048828125,
-0.01239776611328125,
0.04119873046875,
-0.021026611328125,
-0.0302581787109375,
0.05828857421875,
0.02691650390625,
0.046051025390625,
0.00714111328125,
0.0213775634765625,
0.043609619140625,
0.021759033203125,
-0.00699615478515625,
0.0594482421875,
0.005794525146484375,
-0.041595458984375,
-0.0198516845703125,
-0.054840087890625,
-0.0162353515625,
0.027435302734375,
-0.0694580078125,
0.0012178421020507812,
-0.02532958984375,
-0.017364501953125,
0.0102386474609375,
0.0284881591796875,
-0.05364990234375,
0.035797119140625,
-0.0243988037109375,
0.08245849609375,
-0.0843505859375,
0.039215087890625,
0.06671142578125,
-0.061309814453125,
-0.063232421875,
-0.00988006591796875,
-0.0178375244140625,
-0.038604736328125,
0.03216552734375,
-0.004703521728515625,
0.034210205078125,
-0.0126800537109375,
-0.0509033203125,
-0.07257080078125,
0.1060791015625,
-0.0089874267578125,
-0.01305389404296875,
-0.00989532470703125,
0.01271820068359375,
0.06402587890625,
-0.01422119140625,
0.030670166015625,
0.044647216796875,
0.037506103515625,
-0.0080108642578125,
-0.059234619140625,
0.0153961181640625,
-0.051971435546875,
-0.0233612060546875,
0.011077880859375,
-0.053802490234375,
0.06488037109375,
0.00829315185546875,
-0.0105438232421875,
-0.004405975341796875,
0.05535888671875,
0.0321044921875,
0.037628173828125,
0.027923583984375,
0.05767822265625,
0.06072998046875,
-0.01068115234375,
0.06988525390625,
-0.0223388671875,
0.0169677734375,
0.07366943359375,
0.0014314651489257812,
0.0733642578125,
0.039459228515625,
-0.03204345703125,
0.035675048828125,
0.04681396484375,
-0.017913818359375,
0.039520263671875,
0.0007963180541992188,
0.007503509521484375,
0.003162384033203125,
0.00434112548828125,
-0.038238525390625,
0.04119873046875,
0.023193359375,
-0.02801513671875,
0.004787445068359375,
-0.01381683349609375,
0.01461029052734375,
0.0116424560546875,
-0.0142974853515625,
0.06134033203125,
-0.01483154296875,
-0.052215576171875,
0.0447998046875,
-0.00548553466796875,
0.05242919921875,
-0.046630859375,
-0.0028228759765625,
-0.0252227783203125,
-0.01149749755859375,
-0.037750244140625,
-0.08502197265625,
0.0316162109375,
-0.01220703125,
-0.0343017578125,
-0.00860595703125,
0.03875732421875,
-0.031524658203125,
-0.04638671875,
-0.00020182132720947266,
0.050750732421875,
0.01335906982421875,
0.00530242919921875,
-0.063232421875,
-0.015655517578125,
-0.0008859634399414062,
-0.033233642578125,
0.028839111328125,
0.0293731689453125,
0.0038166046142578125,
0.0394287109375,
0.040496826171875,
0.0167999267578125,
0.0034542083740234375,
-0.015716552734375,
0.07159423828125,
-0.05926513671875,
-0.03485107421875,
-0.032379150390625,
0.050537109375,
-0.032806396484375,
-0.0479736328125,
0.05511474609375,
0.06158447265625,
0.0567626953125,
0.0037708282470703125,
0.057830810546875,
-0.0305633544921875,
0.07659912109375,
-0.035308837890625,
0.06097412109375,
-0.05059814453125,
0.0012998580932617188,
-0.0152435302734375,
-0.046875,
-0.0169525146484375,
0.045196533203125,
-0.0263824462890625,
-0.002170562744140625,
0.04449462890625,
0.05718994140625,
0.0022373199462890625,
0.0040130615234375,
-0.0205230712890625,
0.01200103759765625,
0.01690673828125,
0.04656982421875,
0.03143310546875,
-0.06610107421875,
0.049774169921875,
-0.03375244140625,
-0.0168914794921875,
0.0038604736328125,
-0.042572021484375,
-0.05487060546875,
-0.06451416015625,
-0.03076171875,
-0.033416748046875,
-0.0029315948486328125,
0.06134033203125,
0.0296630859375,
-0.068359375,
-0.01247406005859375,
0.0133209228515625,
-0.00444793701171875,
-0.03167724609375,
-0.0224151611328125,
0.06646728515625,
0.0010824203491210938,
-0.033111572265625,
0.003849029541015625,
-0.01059722900390625,
-0.0036640167236328125,
0.01485443115234375,
0.005649566650390625,
-0.043731689453125,
-0.0014314651489257812,
0.0428466796875,
0.036529541015625,
-0.0297088623046875,
-0.00498199462890625,
0.01210784912109375,
-0.0103759765625,
0.01824951171875,
0.0100555419921875,
-0.0440673828125,
0.016387939453125,
0.057159423828125,
0.03350830078125,
0.055419921875,
0.0186767578125,
0.005756378173828125,
-0.04620361328125,
0.0000787973403930664,
0.034454345703125,
0.01168060302734375,
0.007244110107421875,
-0.0208587646484375,
0.045501708984375,
-0.0009093284606933594,
-0.05535888671875,
-0.062255859375,
-0.0150909423828125,
-0.09149169921875,
-0.0107574462890625,
0.081298828125,
-0.005367279052734375,
-0.0185394287109375,
-0.0174407958984375,
-0.0265960693359375,
0.01244354248046875,
-0.0294189453125,
0.06494140625,
0.0452880859375,
-0.023834228515625,
-0.03131103515625,
-0.045196533203125,
0.04888916015625,
0.021087646484375,
-0.0789794921875,
-0.0169677734375,
0.0239105224609375,
0.0272216796875,
0.0249786376953125,
0.0716552734375,
-0.0237579345703125,
0.0193939208984375,
0.0018033981323242188,
0.0133514404296875,
-0.004791259765625,
0.005764007568359375,
-0.0162811279296875,
0.0264892578125,
0.005645751953125,
-0.0167999267578125
]
] |
open-llm-leaderboard/details_meta-llama__Llama-2-70b-hf | 2023-09-18T06:46:57.000Z | [
"region:us"
] | open-llm-leaderboard | null | null | 0 | 1,033 | 2023-08-21T11:06:07 | ---
pretty_name: Evaluation run of meta-llama/Llama-2-70b-hf
dataset_summary: "Dataset automatically created during the evaluation run of model\
\ [meta-llama/Llama-2-70b-hf](https://huggingface.co/meta-llama/Llama-2-70b-hf)\
\ on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).\n\
\nThe dataset is composed of 124 configuration, each one coresponding to one of\
\ the evaluated task.\n\nThe dataset has been created from 10 run(s). Each run can\
\ be found as a specific split in each configuration, the split being named using\
\ the timestamp of the run.The \"train\" split is always pointing to the latest\
\ results.\n\nAn additional configuration \"results\" store all the aggregated results\
\ of the run (and is used to compute and display the agregated metrics on the [Open\
\ LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)).\n\
\nTo load the details from a run, you can for instance do the following:\n```python\n\
from datasets import load_dataset\ndata = load_dataset(\"open-llm-leaderboard/details_meta-llama__Llama-2-70b-hf\"\
,\n\t\"harness_winogrande_5\",\n\tsplit=\"train\")\n```\n\n## Latest results\n\n\
These are the [latest results from run 2023-09-18T06:46:44.905361](https://huggingface.co/datasets/open-llm-leaderboard/details_meta-llama__Llama-2-70b-hf/blob/main/results_2023-09-18T06-46-44.905361.json)(note\
\ that their might be results for other tasks in the repos if successive evals didn't\
\ cover the same tasks. You find each in the results and the \"latest\" split for\
\ each eval):\n\n```python\n{\n \"all\": {\n \"em\": 0.0017827181208053692,\n\
\ \"em_stderr\": 0.00043200973460388544,\n \"f1\": 0.06615562080536916,\n\
\ \"f1_stderr\": 0.0013739852117668813,\n \"acc\": 0.5885312292623206,\n\
\ \"acc_stderr\": 0.011707750309504293\n },\n \"harness|drop|3\": {\n\
\ \"em\": 0.0017827181208053692,\n \"em_stderr\": 0.00043200973460388544,\n\
\ \"f1\": 0.06615562080536916,\n \"f1_stderr\": 0.0013739852117668813\n\
\ },\n \"harness|gsm8k|5\": {\n \"acc\": 0.33965125094768767,\n \
\ \"acc_stderr\": 0.01304504506766526\n },\n \"harness|winogrande|5\"\
: {\n \"acc\": 0.8374112075769534,\n \"acc_stderr\": 0.010370455551343326\n\
\ }\n}\n```"
repo_url: https://huggingface.co/meta-llama/Llama-2-70b-hf
leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
point_of_contact: clementine@hf.co
configs:
- config_name: harness_arc_challenge_25
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|arc:challenge|25_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|arc:challenge|25_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|arc:challenge|25_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|arc:challenge|25_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|arc:challenge|25_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_drop_3
data_files:
- split: 2023_09_08T23_38_08.931556
path:
- '**/details_harness|drop|3_2023-09-08T23-38-08.931556.parquet'
- split: 2023_09_18T06_46_44.905361
path:
- '**/details_harness|drop|3_2023-09-18T06-46-44.905361.parquet'
- split: latest
path:
- '**/details_harness|drop|3_2023-09-18T06-46-44.905361.parquet'
- config_name: harness_gsm8k_5
data_files:
- split: 2023_09_08T23_38_08.931556
path:
- '**/details_harness|gsm8k|5_2023-09-08T23-38-08.931556.parquet'
- split: 2023_09_18T06_46_44.905361
path:
- '**/details_harness|gsm8k|5_2023-09-18T06-46-44.905361.parquet'
- split: latest
path:
- '**/details_harness|gsm8k|5_2023-09-18T06-46-44.905361.parquet'
- config_name: harness_hellaswag_10
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hellaswag|10_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hellaswag|10_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hellaswag|10_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hellaswag|10_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hellaswag|10_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_0
data_files:
- split: 2023_08_21T11_06_07.240233
path:
- '**/details_harness|hendrycksTest-abstract_algebra|0_2023-08-21T11:06:07.240233.parquet'
- split: 2023_08_21T11_28_25.684618
path:
- '**/details_harness|hendrycksTest-abstract_algebra|0_2023-08-21T11:28:25.684618.parquet'
- split: 2023_08_21T20_33_55.417483
path:
- '**/details_harness|hendrycksTest-abstract_algebra|0_2023-08-21T20:33:55.417483.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|0_2023-08-21T20:33:55.417483.parquet'
- config_name: harness_hendrycksTest_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T09:05:23.035851.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T10:47:05.866748.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T13:42:09.433095.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T13:47:53.141854.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_abstract_algebra_0
data_files:
- split: 2023_08_21T11_06_07.240233
path:
- '**/details_harness|hendrycksTest-abstract_algebra|0_2023-08-21T11:06:07.240233.parquet'
- split: 2023_08_21T11_28_25.684618
path:
- '**/details_harness|hendrycksTest-abstract_algebra|0_2023-08-21T11:28:25.684618.parquet'
- split: 2023_08_21T20_33_55.417483
path:
- '**/details_harness|hendrycksTest-abstract_algebra|0_2023-08-21T20:33:55.417483.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|0_2023-08-21T20:33:55.417483.parquet'
- config_name: harness_hendrycksTest_abstract_algebra_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_anatomy_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_astronomy_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_business_ethics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_clinical_knowledge_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_college_biology_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_college_chemistry_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_college_computer_science_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_college_mathematics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_college_medicine_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_college_physics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_computer_security_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_conceptual_physics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_econometrics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_electrical_engineering_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_elementary_mathematics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_formal_logic_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_global_facts_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_biology_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_chemistry_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_computer_science_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_european_history_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_geography_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_government_and_politics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_macroeconomics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_mathematics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_microeconomics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_physics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_psychology_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_statistics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_us_history_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_high_school_world_history_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_human_aging_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_human_sexuality_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_international_law_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_jurisprudence_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_logical_fallacies_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_machine_learning_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_management_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-management|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-management|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-management|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-management|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-management|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_marketing_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_medical_genetics_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_miscellaneous_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_moral_disputes_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_moral_scenarios_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_nutrition_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_philosophy_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_prehistory_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_professional_accounting_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_professional_law_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_professional_medicine_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_professional_psychology_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_public_relations_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_security_studies_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_sociology_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_us_foreign_policy_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_virology_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-virology|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_hendrycksTest_world_religions_5
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_truthfulqa_mc_0
data_files:
- split: 2023_08_22T09_05_23.035851
path:
- '**/details_harness|truthfulqa:mc|0_2023-08-22T09:05:23.035851.parquet'
- split: 2023_08_22T10_47_05.866748
path:
- '**/details_harness|truthfulqa:mc|0_2023-08-22T10:47:05.866748.parquet'
- split: 2023_08_22T13_42_09.433095
path:
- '**/details_harness|truthfulqa:mc|0_2023-08-22T13:42:09.433095.parquet'
- split: 2023_08_22T13_47_53.141854
path:
- '**/details_harness|truthfulqa:mc|0_2023-08-22T13:47:53.141854.parquet'
- split: latest
path:
- '**/details_harness|truthfulqa:mc|0_2023-08-22T13:47:53.141854.parquet'
- config_name: harness_winogrande_5
data_files:
- split: 2023_09_08T23_38_08.931556
path:
- '**/details_harness|winogrande|5_2023-09-08T23-38-08.931556.parquet'
- split: 2023_09_18T06_46_44.905361
path:
- '**/details_harness|winogrande|5_2023-09-18T06-46-44.905361.parquet'
- split: latest
path:
- '**/details_harness|winogrande|5_2023-09-18T06-46-44.905361.parquet'
- config_name: original_mmlu_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:abstract_algebra|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:anatomy|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:astronomy|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:business_ethics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:clinical_knowledge|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_biology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_chemistry|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_computer_science|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_medicine|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_physics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:computer_security|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:conceptual_physics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:econometrics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:electrical_engineering|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:elementary_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:formal_logic|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:global_facts|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_biology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_chemistry|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_computer_science|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_european_history|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_geography|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_government_and_politics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_macroeconomics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_microeconomics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_physics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_psychology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_statistics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_us_history|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_world_history|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:human_aging|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:human_sexuality|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:international_law|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:jurisprudence|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:logical_fallacies|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:machine_learning|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:management|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:marketing|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:medical_genetics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:miscellaneous|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:moral_disputes|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:moral_scenarios|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:nutrition|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:philosophy|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:prehistory|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:professional_accounting|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:professional_law|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:professional_medicine|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:professional_psychology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:public_relations|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:security_studies|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:sociology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:us_foreign_policy|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:virology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:world_religions|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:abstract_algebra|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:anatomy|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:astronomy|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:business_ethics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:clinical_knowledge|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_biology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_chemistry|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_computer_science|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_medicine|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:college_physics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:computer_security|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:conceptual_physics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:econometrics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:electrical_engineering|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:elementary_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:formal_logic|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:global_facts|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_biology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_chemistry|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_computer_science|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_european_history|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_geography|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_government_and_politics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_macroeconomics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_microeconomics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_physics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_psychology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_statistics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_us_history|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:high_school_world_history|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:human_aging|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:human_sexuality|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:international_law|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:jurisprudence|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:logical_fallacies|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:machine_learning|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:management|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:marketing|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:medical_genetics|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:miscellaneous|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:moral_disputes|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:moral_scenarios|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:nutrition|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:philosophy|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:prehistory|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:professional_accounting|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:professional_law|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:professional_medicine|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:professional_psychology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:public_relations|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:security_studies|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:sociology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:us_foreign_policy|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:virology|5_2023-08-28T20:36:26.123850.parquet'
- '**/details_original|mmlu:world_religions|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_abstract_algebra_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:abstract_algebra|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:abstract_algebra|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_anatomy_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:anatomy|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:anatomy|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_astronomy_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:astronomy|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:astronomy|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_business_ethics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:business_ethics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:business_ethics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_clinical_knowledge_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:clinical_knowledge|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:clinical_knowledge|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_college_biology_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:college_biology|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:college_biology|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_college_chemistry_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:college_chemistry|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:college_chemistry|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_college_computer_science_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:college_computer_science|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:college_computer_science|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_college_mathematics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:college_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:college_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_college_medicine_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:college_medicine|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:college_medicine|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_college_physics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:college_physics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:college_physics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_computer_security_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:computer_security|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:computer_security|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_conceptual_physics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:conceptual_physics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:conceptual_physics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_econometrics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:econometrics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:econometrics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_electrical_engineering_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:electrical_engineering|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:electrical_engineering|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_elementary_mathematics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:elementary_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:elementary_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_formal_logic_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:formal_logic|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:formal_logic|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_global_facts_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:global_facts|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:global_facts|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_biology_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_biology|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_biology|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_chemistry_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_chemistry|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_chemistry|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_computer_science_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_computer_science|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_computer_science|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_european_history_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_european_history|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_european_history|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_geography_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_geography|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_geography|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_government_and_politics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_government_and_politics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_government_and_politics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_macroeconomics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_macroeconomics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_macroeconomics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_mathematics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_mathematics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_microeconomics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_microeconomics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_microeconomics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_physics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_physics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_physics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_psychology_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_psychology|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_psychology|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_statistics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_statistics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_statistics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_us_history_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_us_history|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_us_history|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_high_school_world_history_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:high_school_world_history|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:high_school_world_history|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_human_aging_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:human_aging|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:human_aging|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_human_sexuality_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:human_sexuality|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:human_sexuality|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_international_law_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:international_law|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:international_law|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_jurisprudence_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:jurisprudence|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:jurisprudence|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_logical_fallacies_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:logical_fallacies|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:logical_fallacies|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_machine_learning_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:machine_learning|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:machine_learning|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_management_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:management|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:management|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_marketing_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:marketing|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:marketing|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_medical_genetics_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:medical_genetics|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:medical_genetics|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_miscellaneous_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:miscellaneous|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:miscellaneous|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_moral_disputes_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:moral_disputes|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:moral_disputes|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_moral_scenarios_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:moral_scenarios|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:moral_scenarios|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_nutrition_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:nutrition|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:nutrition|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_philosophy_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:philosophy|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:philosophy|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_prehistory_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:prehistory|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:prehistory|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_professional_accounting_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:professional_accounting|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:professional_accounting|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_professional_law_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:professional_law|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:professional_law|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_professional_medicine_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:professional_medicine|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:professional_medicine|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_professional_psychology_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:professional_psychology|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:professional_psychology|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_public_relations_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:public_relations|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:public_relations|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_security_studies_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:security_studies|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:security_studies|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_sociology_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:sociology|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:sociology|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_us_foreign_policy_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:us_foreign_policy|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:us_foreign_policy|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_virology_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:virology|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:virology|5_2023-08-28T20:36:26.123850.parquet'
- config_name: original_mmlu_world_religions_5
data_files:
- split: 2023_08_28T20_36_26.123850
path:
- '**/details_original|mmlu:world_religions|5_2023-08-28T20:36:26.123850.parquet'
- split: latest
path:
- '**/details_original|mmlu:world_religions|5_2023-08-28T20:36:26.123850.parquet'
- config_name: results
data_files:
- split: 2023_08_21T11_06_07.240233
path:
- results_2023-08-21T11:06:07.240233.parquet
- split: 2023_08_21T11_28_25.684618
path:
- results_2023-08-21T11:28:25.684618.parquet
- split: 2023_08_21T20_33_55.417483
path:
- results_2023-08-21T20:33:55.417483.parquet
- split: 2023_08_22T09_05_23.035851
path:
- results_2023-08-22T09:05:23.035851.parquet
- split: 2023_08_22T10_47_05.866748
path:
- results_2023-08-22T10:47:05.866748.parquet
- split: 2023_08_22T13_42_09.433095
path:
- results_2023-08-22T13:42:09.433095.parquet
- split: 2023_08_22T13_47_53.141854
path:
- results_2023-08-22T13:47:53.141854.parquet
- split: 2023_08_28T20_36_26.123850
path:
- results_2023-08-28T20:36:26.123850.parquet
- split: 2023_09_08T23_38_08.931556
path:
- results_2023-09-08T23-38-08.931556.parquet
- split: 2023_09_18T06_46_44.905361
path:
- results_2023-09-18T06-46-44.905361.parquet
- split: latest
path:
- results_2023-09-18T06-46-44.905361.parquet
---
# Dataset Card for Evaluation run of meta-llama/Llama-2-70b-hf
## Dataset Description
- **Homepage:**
- **Repository:** https://huggingface.co/meta-llama/Llama-2-70b-hf
- **Paper:**
- **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
- **Point of Contact:** clementine@hf.co
### Dataset Summary
Dataset automatically created during the evaluation run of model [meta-llama/Llama-2-70b-hf](https://huggingface.co/meta-llama/Llama-2-70b-hf) on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).
The dataset is composed of 124 configuration, each one coresponding to one of the evaluated task.
The dataset has been created from 10 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the latest results.
An additional configuration "results" store all the aggregated results of the run (and is used to compute and display the agregated metrics on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)).
To load the details from a run, you can for instance do the following:
```python
from datasets import load_dataset
data = load_dataset("open-llm-leaderboard/details_meta-llama__Llama-2-70b-hf",
"harness_winogrande_5",
split="train")
```
## Latest results
These are the [latest results from run 2023-09-18T06:46:44.905361](https://huggingface.co/datasets/open-llm-leaderboard/details_meta-llama__Llama-2-70b-hf/blob/main/results_2023-09-18T06-46-44.905361.json)(note that their might be results for other tasks in the repos if successive evals didn't cover the same tasks. You find each in the results and the "latest" split for each eval):
```python
{
"all": {
"em": 0.0017827181208053692,
"em_stderr": 0.00043200973460388544,
"f1": 0.06615562080536916,
"f1_stderr": 0.0013739852117668813,
"acc": 0.5885312292623206,
"acc_stderr": 0.011707750309504293
},
"harness|drop|3": {
"em": 0.0017827181208053692,
"em_stderr": 0.00043200973460388544,
"f1": 0.06615562080536916,
"f1_stderr": 0.0013739852117668813
},
"harness|gsm8k|5": {
"acc": 0.33965125094768767,
"acc_stderr": 0.01304504506766526
},
"harness|winogrande|5": {
"acc": 0.8374112075769534,
"acc_stderr": 0.010370455551343326
}
}
```
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
[More Information Needed]
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Contributions
[More Information Needed] | 111,559 | [
[
-0.0300445556640625,
-0.046783447265625,
0.0194549560546875,
0.021636962890625,
-0.02178955078125,
0.0178985595703125,
-0.0214385986328125,
-0.019775390625,
0.038055419921875,
0.0384521484375,
-0.05462646484375,
-0.069580078125,
-0.053802490234375,
0.022857666015625,
-0.01532745361328125,
0.0875244140625,
-0.01739501953125,
-0.0296783447265625,
0.0006499290466308594,
-0.0220794677734375,
-0.027130126953125,
-0.033477783203125,
-0.02606201171875,
-0.03240966796875,
0.0290679931640625,
0.046539306640625,
0.0281524658203125,
0.055938720703125,
0.05145263671875,
0.0257110595703125,
-0.0127105712890625,
0.0169677734375,
-0.0287933349609375,
-0.00917816162109375,
0.0173492431640625,
-0.0404052734375,
-0.06097412109375,
0.007236480712890625,
0.042633056640625,
0.0276947021484375,
-0.0184783935546875,
0.057220458984375,
0.006137847900390625,
0.038665771484375,
-0.0372314453125,
0.029083251953125,
-0.028228759765625,
-0.0036945343017578125,
-0.029510498046875,
-0.01226043701171875,
0.0013551712036132812,
-0.016876220703125,
-0.0126495361328125,
-0.04248046875,
0.004802703857421875,
0.006496429443359375,
0.080078125,
0.0202789306640625,
-0.014984130859375,
-0.014984130859375,
-0.016845703125,
0.06292724609375,
-0.06329345703125,
-0.006900787353515625,
0.057647705078125,
0.007343292236328125,
-0.021514892578125,
-0.04376220703125,
-0.034820556640625,
-0.004077911376953125,
-0.018310546875,
0.005321502685546875,
-0.0036487579345703125,
-0.01512908935546875,
0.0272674560546875,
0.042572021484375,
-0.04254150390625,
0.0011272430419921875,
-0.03759765625,
-0.01084136962890625,
0.07232666015625,
0.0289154052734375,
0.001979827880859375,
-0.042388916015625,
-0.0255279541015625,
-0.025543212890625,
-0.036407470703125,
0.01641845703125,
0.033294677734375,
0.0279693603515625,
-0.04791259765625,
0.0587158203125,
-0.038604736328125,
0.037109375,
-0.0034503936767578125,
-0.03131103515625,
0.06768798828125,
-0.0435791015625,
-0.01398468017578125,
-0.004547119140625,
0.07647705078125,
0.035400390625,
0.0011358261108398438,
0.0167388916015625,
-0.0207366943359375,
-0.00656890869140625,
0.0018548965454101562,
-0.05352783203125,
-0.0031719207763671875,
0.0270538330078125,
-0.04364013671875,
-0.038055419921875,
0.0103607177734375,
-0.0689697265625,
-0.01224517822265625,
-0.017333984375,
0.01293182373046875,
-0.0021495819091796875,
-0.02642822265625,
-0.006435394287109375,
-0.0086822509765625,
0.0227508544921875,
0.006458282470703125,
-0.044677734375,
0.0202789306640625,
0.04791259765625,
0.07037353515625,
-0.00213623046875,
-0.0283050537109375,
-0.023040771484375,
-0.00815582275390625,
-0.012603759765625,
0.038360595703125,
-0.0248565673828125,
-0.032196044921875,
-0.01348114013671875,
0.0276947021484375,
-0.0124664306640625,
-0.045074462890625,
0.05120849609375,
-0.02044677734375,
0.00798797607421875,
-0.0294952392578125,
-0.0171356201171875,
-0.0147247314453125,
0.031494140625,
-0.049285888671875,
0.10693359375,
0.02508544921875,
-0.060577392578125,
0.00998687744140625,
-0.05804443359375,
-0.0184326171875,
-0.0036487579345703125,
0.007293701171875,
-0.044830322265625,
-0.01468658447265625,
0.01141357421875,
0.03814697265625,
-0.0325927734375,
0.0115203857421875,
-0.0194091796875,
-0.030792236328125,
0.00821685791015625,
-0.0007634162902832031,
0.0718994140625,
0.0123291015625,
-0.038055419921875,
0.004730224609375,
-0.07464599609375,
0.0032024383544921875,
0.0309295654296875,
-0.047515869140625,
-0.0132904052734375,
-0.01207733154296875,
0.00385284423828125,
0.00847625732421875,
0.042449951171875,
-0.037933349609375,
0.0284881591796875,
-0.0080108642578125,
0.0265045166015625,
0.07159423828125,
-0.004261016845703125,
0.014923095703125,
-0.030364990234375,
0.036712646484375,
-0.002216339111328125,
0.0235443115234375,
0.005889892578125,
-0.04473876953125,
-0.055938720703125,
-0.0158538818359375,
0.01055145263671875,
0.0526123046875,
-0.0299072265625,
0.057281494140625,
-0.030029296875,
-0.04815673828125,
-0.051727294921875,
0.0163726806640625,
0.03314208984375,
0.04302978515625,
0.031494140625,
-0.0233917236328125,
-0.055877685546875,
-0.0738525390625,
0.00870513916015625,
-0.0200042724609375,
0.004638671875,
0.0396728515625,
0.07684326171875,
-0.03857421875,
0.04888916015625,
-0.0521240234375,
-0.024688720703125,
-0.0170135498046875,
0.0014972686767578125,
0.05523681640625,
0.032623291015625,
0.03582763671875,
-0.04278564453125,
-0.0214691162109375,
-0.0019588470458984375,
-0.0621337890625,
-0.0234527587890625,
-0.0024967193603515625,
-0.0219879150390625,
0.0213470458984375,
-0.007526397705078125,
-0.040191650390625,
0.038482666015625,
0.041961669921875,
-0.03790283203125,
0.04815673828125,
0.0021419525146484375,
0.026397705078125,
-0.080322265625,
0.015472412109375,
-0.00328826904296875,
0.0020122528076171875,
-0.0261688232421875,
-0.008056640625,
-0.0016794204711914062,
0.02960205078125,
-0.0250396728515625,
0.039794921875,
-0.02618408203125,
-0.0204620361328125,
-0.006626129150390625,
0.003971099853515625,
-0.005367279052734375,
0.0408935546875,
-0.021942138671875,
0.059051513671875,
0.030792236328125,
-0.0268707275390625,
0.029083251953125,
0.0379638671875,
-0.03546142578125,
0.01873779296875,
-0.04425048828125,
0.006072998046875,
0.01183319091796875,
0.0254669189453125,
-0.06298828125,
-0.0309295654296875,
0.03753662109375,
-0.031890869140625,
0.007488250732421875,
-0.017578125,
-0.04254150390625,
-0.039459228515625,
-0.03900146484375,
0.0196533203125,
0.03741455078125,
-0.0364990234375,
0.020721435546875,
0.031280517578125,
0.005069732666015625,
-0.060577392578125,
-0.052154541015625,
0.000652313232421875,
-0.028350830078125,
-0.044830322265625,
0.0287017822265625,
-0.01013946533203125,
-0.0192108154296875,
0.00018548965454101562,
-0.0038738250732421875,
-0.00153350830078125,
0.0174102783203125,
0.0280609130859375,
0.03643798828125,
-0.008270263671875,
-0.02197265625,
-0.01165008544921875,
-0.0141448974609375,
0.00948333740234375,
0.014739990234375,
0.0474853515625,
-0.022369384765625,
-0.020721435546875,
-0.019805908203125,
0.008209228515625,
0.033843994140625,
-0.01442718505859375,
0.0596923828125,
0.05145263671875,
-0.01666259765625,
0.007282257080078125,
-0.033599853515625,
0.003406524658203125,
-0.035491943359375,
0.02069091796875,
-0.022491455078125,
-0.054931640625,
0.05926513671875,
0.0113067626953125,
0.01265716552734375,
0.05474853515625,
0.04302978515625,
0.002227783203125,
0.050994873046875,
0.0249786376953125,
-0.0157928466796875,
0.036651611328125,
-0.05633544921875,
-0.00875091552734375,
-0.087158203125,
-0.036224365234375,
-0.03265380859375,
-0.034271240234375,
-0.058135986328125,
-0.030059814453125,
0.0179901123046875,
0.01200103759765625,
-0.035369873046875,
0.0399169921875,
-0.0478515625,
0.02069091796875,
0.04498291015625,
0.0167083740234375,
0.00847625732421875,
-0.0050506591796875,
-0.002742767333984375,
0.0217742919921875,
-0.02801513671875,
-0.041015625,
0.10430908203125,
0.018524169921875,
0.04443359375,
-0.00217437744140625,
0.070068359375,
0.02410888671875,
0.0257568359375,
-0.037353515625,
0.045257568359375,
0.0004162788391113281,
-0.037139892578125,
-0.01276397705078125,
-0.033416748046875,
-0.06781005859375,
0.018951416015625,
-0.004852294921875,
-0.0638427734375,
0.006214141845703125,
-0.0012331008911132812,
-0.0029582977294921875,
0.0228271484375,
-0.035919189453125,
0.050048828125,
-0.020050048828125,
-0.024505615234375,
-0.00264739990234375,
-0.06463623046875,
0.03887939453125,
-0.0037689208984375,
0.0278472900390625,
-0.028076171875,
-0.00769805908203125,
0.08526611328125,
-0.04571533203125,
0.061798095703125,
-0.0097198486328125,
0.002605438232421875,
0.03363037109375,
-0.025970458984375,
0.048980712890625,
-0.0026531219482421875,
-0.0209503173828125,
0.039886474609375,
-0.0164031982421875,
-0.0216217041015625,
-0.01441192626953125,
0.0557861328125,
-0.06707763671875,
-0.039520263671875,
-0.0306549072265625,
-0.036865234375,
0.0217437744140625,
0.01097869873046875,
0.0235443115234375,
0.00655364990234375,
0.0085906982421875,
0.0158538818359375,
0.015167236328125,
-0.016021728515625,
0.0423583984375,
0.02978515625,
-0.0036945343017578125,
-0.05413818359375,
0.04595947265625,
0.01548004150390625,
0.004268646240234375,
0.01313018798828125,
0.007965087890625,
-0.034515380859375,
-0.0235443115234375,
-0.03662109375,
0.0260772705078125,
-0.0419921875,
-0.03240966796875,
-0.034759521484375,
-0.01299285888671875,
-0.0216522216796875,
-0.0007867813110351562,
-0.0246429443359375,
-0.03277587890625,
-0.0396728515625,
-0.0228424072265625,
0.051177978515625,
0.04718017578125,
-0.0297088623046875,
0.030548095703125,
-0.053619384765625,
0.0179290771484375,
-0.006900787353515625,
0.02398681640625,
-0.0025482177734375,
-0.0428466796875,
-0.02642822265625,
0.01236724853515625,
-0.034698486328125,
-0.0682373046875,
0.041351318359375,
0.0033245086669921875,
0.049407958984375,
0.0115203857421875,
0.0073089599609375,
0.0625,
-0.0191497802734375,
0.07611083984375,
0.0027828216552734375,
-0.059112548828125,
0.0574951171875,
-0.017333984375,
0.0004010200500488281,
0.0325927734375,
0.012054443359375,
-0.03289794921875,
-0.01280975341796875,
-0.06158447265625,
-0.08270263671875,
0.06964111328125,
0.03289794921875,
-0.0173797607421875,
0.0075836181640625,
0.0277862548828125,
-0.0057220458984375,
0.0160064697265625,
-0.052978515625,
-0.051239013671875,
-0.01187896728515625,
-0.0176849365234375,
-0.00788116455078125,
-0.01181793212890625,
-0.036468505859375,
-0.030609130859375,
0.05548095703125,
-0.004669189453125,
0.033416748046875,
0.01027679443359375,
-0.00555419921875,
-0.00995635986328125,
0.0160980224609375,
0.04205322265625,
0.050506591796875,
-0.023590087890625,
-0.00041747093200683594,
0.03399658203125,
-0.046783447265625,
0.0154266357421875,
0.01318359375,
0.001922607421875,
-0.0115203857421875,
0.05072021484375,
0.0618896484375,
0.0036754608154296875,
-0.033477783203125,
0.039337158203125,
0.0106201171875,
-0.021270751953125,
-0.0304412841796875,
0.00887298583984375,
-0.001026153564453125,
0.0328369140625,
0.03558349609375,
-0.01285552978515625,
0.0010013580322265625,
-0.0216522216796875,
0.015472412109375,
0.02001953125,
0.0031566619873046875,
-0.02935791015625,
0.04248046875,
-0.0005369186401367188,
-0.026763916015625,
0.052154541015625,
-0.007572174072265625,
-0.0489501953125,
0.0838623046875,
0.0293426513671875,
0.05889892578125,
-0.007144927978515625,
0.0093231201171875,
0.0435791015625,
0.0308990478515625,
-0.00984954833984375,
0.04150390625,
-0.0002027750015258789,
-0.03704833984375,
-0.0234222412109375,
-0.062225341796875,
-0.016754150390625,
0.02105712890625,
-0.06903076171875,
0.023162841796875,
-0.0093841552734375,
-0.0238800048828125,
-0.0202484130859375,
0.02996826171875,
-0.062469482421875,
0.0086212158203125,
-0.0006880760192871094,
0.059417724609375,
-0.076416015625,
0.042694091796875,
0.055938720703125,
-0.03338623046875,
-0.061859130859375,
-0.0208282470703125,
0.007198333740234375,
-0.07281494140625,
0.04364013671875,
0.0181121826171875,
0.0247039794921875,
-0.0205535888671875,
-0.053009033203125,
-0.0882568359375,
0.11865234375,
0.01139068603515625,
-0.0439453125,
0.017547607421875,
0.017608642578125,
0.0289459228515625,
-0.02410888671875,
0.037750244140625,
0.05743408203125,
0.057952880859375,
-0.0036449432373046875,
-0.07196044921875,
0.0277252197265625,
-0.032196044921875,
-0.01013946533203125,
0.0156707763671875,
-0.07421875,
0.07275390625,
-0.0212249755859375,
0.000659942626953125,
-0.0034942626953125,
0.030517578125,
0.049407958984375,
0.0299072265625,
0.0377197265625,
0.05548095703125,
0.05523681640625,
-0.0228729248046875,
0.0750732421875,
-0.021331787109375,
0.057861328125,
0.06781005859375,
-0.0018014907836914062,
0.05926513671875,
0.02740478515625,
-0.03472900390625,
0.047515869140625,
0.06744384765625,
-0.026611328125,
0.037109375,
0.01456451416015625,
-0.0026454925537109375,
-0.0031414031982421875,
-0.0024967193603515625,
-0.04144287109375,
0.0347900390625,
0.0138397216796875,
-0.03961181640625,
-0.00766754150390625,
-0.02484130859375,
0.01108551025390625,
-0.03277587890625,
-0.01104736328125,
0.04443359375,
0.0007672309875488281,
-0.0311279296875,
0.057464599609375,
-0.00704193115234375,
0.05645751953125,
-0.039154052734375,
-0.01044464111328125,
-0.019256591796875,
0.0068359375,
-0.04278564453125,
-0.07159423828125,
0.0191497802734375,
0.016632080078125,
-0.0200042724609375,
-0.00890350341796875,
0.04376220703125,
-0.0113067626953125,
-0.041015625,
0.032379150390625,
0.0294952392578125,
0.0236663818359375,
0.01386260986328125,
-0.061767578125,
0.02008056640625,
0.0171051025390625,
-0.059356689453125,
0.027008056640625,
0.0191802978515625,
0.0007071495056152344,
0.045654296875,
0.059600830078125,
-0.0016012191772460938,
0.006256103515625,
-0.009033203125,
0.08306884765625,
-0.060272216796875,
-0.0216522216796875,
-0.06353759765625,
0.061309814453125,
-0.0140838623046875,
-0.04791259765625,
0.050262451171875,
0.059661865234375,
0.05572509765625,
0.008758544921875,
0.054901123046875,
-0.03314208984375,
0.0268096923828125,
-0.021087646484375,
0.05657958984375,
-0.057586669921875,
0.0274505615234375,
-0.016448974609375,
-0.060760498046875,
0.0004584789276123047,
0.0516357421875,
-0.01116943359375,
-0.005695343017578125,
0.03582763671875,
0.06805419921875,
0.009490966796875,
0.0015478134155273438,
-0.01029205322265625,
0.0251007080078125,
0.0255279541015625,
0.046539306640625,
0.05450439453125,
-0.049224853515625,
0.038360595703125,
-0.045257568359375,
-0.032073974609375,
-0.0167083740234375,
-0.057769775390625,
-0.0535888671875,
-0.03753662109375,
-0.0187530517578125,
-0.032958984375,
-0.0038661956787109375,
0.07171630859375,
0.03662109375,
-0.056182861328125,
-0.031585693359375,
0.00917816162109375,
0.0209808349609375,
-0.01276397705078125,
-0.021881103515625,
0.043060302734375,
-0.0013189315795898438,
-0.0518798828125,
0.023101806640625,
-0.00951385498046875,
-0.006618499755859375,
0.0013475418090820312,
-0.0179290771484375,
-0.0235443115234375,
-0.0210723876953125,
0.040557861328125,
0.01158905029296875,
-0.0567626953125,
-0.0265655517578125,
-0.00252532958984375,
-0.0039520263671875,
0.0183563232421875,
0.014923095703125,
-0.046295166015625,
-0.00823974609375,
0.0396728515625,
0.021820068359375,
0.049285888671875,
0.00473785400390625,
0.0101470947265625,
-0.0494384765625,
-0.0015745162963867188,
-0.00623321533203125,
0.036376953125,
0.01428985595703125,
-0.034912109375,
0.08074951171875,
0.02764892578125,
-0.0523681640625,
-0.07171630859375,
-0.0189666748046875,
-0.08624267578125,
0.001750946044921875,
0.1051025390625,
-0.015838623046875,
-0.028717041015625,
0.00965118408203125,
-0.014007568359375,
0.025177001953125,
-0.047515869140625,
0.048004150390625,
0.051910400390625,
-0.022125244140625,
0.003414154052734375,
-0.042022705078125,
0.0203399658203125,
0.004199981689453125,
-0.0751953125,
-0.005550384521484375,
0.019439697265625,
0.033294677734375,
0.0200958251953125,
0.04541015625,
0.0062713623046875,
-0.00937652587890625,
-0.0036869049072265625,
0.01428985595703125,
-0.016265869140625,
-0.00823974609375,
-0.010589599609375,
0.004055023193359375,
-0.03094482421875,
-0.037506103515625
]
] |
osunlp/AttrScore | 2023-06-29T01:56:48.000Z | [
"task_categories:text-classification",
"size_categories:100K<n<1M",
"language:en",
"license:apache-2.0",
"arxiv:2305.06311",
"region:us"
] | osunlp | We construct this dataset, which contains both training and test data for the evaluation of attribution.
The training data are repurposed from related tasks, such as question answering, fact-checking,
natural language inference, and summarization. The test data contains a set simulated from QA datasets
and a set manually curated from a generative search engine, New Bing. | @article{yue2023automatic,
title={Automatic Evaluation of Attribution by Large Language Models},
author={Yue, Xiang and Wang, Boshi and Zhang, Kai and Chen, Ziru and Su, Yu and Sun, Huan},
journal={arXiv preprint arXiv:2305.06311},
year={2023}
} | 9 | 1,030 | 2023-05-16T19:09:52 | ---
license: apache-2.0
task_categories:
- text-classification
language:
- en
pretty_name: AttrScore
size_categories:
- 100K<n<1M
---
# Dataset Card for AttrScore
- Repository: https://github.com/OSU-NLP-Group/AttrScore
- Paper: [Automatic Evaluation of Attribution by Large Language Models] (https://arxiv.org/pdf/2305.06311.pdf)
- Point of Contact: [Xiang Yue](mailto:yue.149@osu.edu)
### Citation Information
```bib
@article{yue2023automatic,
title={Automatic Evaluation of Attribution by Large Language Models},
author={Yue, Xiang and Wang, Boshi and Zhang, Kai and Chen, Ziru and Su, Yu and Sun, Huan},
journal={arXiv preprint arXiv:2305.06311},
year={2023}
}
```
### What's New?
In the current version 0.2, we fixed some wrong annotated labels in the AttrEval-GenSearch dataset. (Commit: [4da294f](https://huggingface.co/datasets/osunlp/AttrScore/commit/4da294f5e488086492e117b405fc8ea95717ec3b))
### Dataset Summary
A recent focus of large language model (LLM) development, as exemplified by generative search engines, is to incorporate external references to generate and support its claims. However, evaluating the attribution, i.e., verifying whether the generated statement is indeed fully supported by the cited reference, remains an open problem.
We construct this dataset, which contains both training and test data for the evaluation of attribution. The training data are repurposed from related tasks, such as question answering, fact-checking, natural language inference, and summarization. The test data, cotains a set simulated from QA datasets and a set manually curated from a generative search engine, New Bing.
## Dataset Structure
### Data Instances
{
"query": "",
"answer": "Bastedo cared for all the animals that inhabit the earth.",
"reference": "Alexandra Lendon Bastedo (9 March 1946 - 12 January 2014) was a British actress, best known for her role as secret agent Sharron Macready in the 1968 British espionage/science fiction adventure series \"The Champions\". She has been cited as a sex symbol of the 1960s and 1970s. Bastedo was a vegetarian and animal welfare advocate.",
"label": "Extrapolatory",
"dataset": "anli"
}
{
"query": The persian gulf war began when iraq invaded what country?
"answer": The Persian Gulf War began when Iraq invaded Kuwait.
"reference": First Iraq War or Iraq War, before the term \"Iraq War\" became identified instead with the 2003 Iraq War. The Iraqi Army's occupation of Kuwait that began 2 August 1990 was met with international condemnation and brought immediate economic sanctions against Iraq by members of the UN Security Council. Together with the UK's prime minister Margaret Thatcher - who had resisted the invasion by Argentina of the Falkland Islands a decade earlier - George H. W. Bush deployed US forces into Saudi Arabia, and urged other countries to send their own forces to the scene. An array of nations joined the coalition, forming the",
"label": "Attributable",
"dataset": "NaturalQuestions"
}
### Data Fields
- "query": query (may be empty)
- "answer": answer to the query
- "reference": a document or a paragraph
- "label": whether the reference can support the answer to the query ("attributable", "extrapolatory", "contradictory")
- "dataset": the original dataset of the data instance
| 3,308 | [
[
-0.0191192626953125,
-0.041717529296875,
0.036895751953125,
-0.01010894775390625,
0.0013103485107421875,
-0.00910186767578125,
0.01013946533203125,
-0.0252838134765625,
0.01331329345703125,
0.04852294921875,
-0.037841796875,
-0.03143310546875,
-0.041778564453125,
0.015655517578125,
-0.021820068359375,
0.0869140625,
-0.03179931640625,
-0.0097808837890625,
-0.0260162353515625,
-0.032928466796875,
0.01219940185546875,
-0.043304443359375,
-0.044647216796875,
-0.0172576904296875,
0.043365478515625,
0.0261688232421875,
0.050445556640625,
0.04620361328125,
0.046905517578125,
0.0219573974609375,
-0.0116729736328125,
0.0191192626953125,
-0.039581298828125,
0.01375579833984375,
-0.0323486328125,
-0.0248260498046875,
-0.0335693359375,
0.0252227783203125,
0.068359375,
0.033660888671875,
-0.01373291015625,
0.0175018310546875,
0.001556396484375,
0.055084228515625,
-0.045989990234375,
0.003932952880859375,
-0.054229736328125,
-0.012603759765625,
-0.0161285400390625,
-0.01194000244140625,
-0.0184173583984375,
-0.043121337890625,
-0.00910186767578125,
-0.0452880859375,
0.032073974609375,
0.005825042724609375,
0.10498046875,
0.0090789794921875,
-0.0487060546875,
-0.03338623046875,
-0.0276031494140625,
0.07281494140625,
-0.05303955078125,
0.025146484375,
0.048614501953125,
0.0059661865234375,
-0.0169677734375,
-0.0596923828125,
-0.039031982421875,
-0.0217437744140625,
-0.005512237548828125,
0.0244293212890625,
-0.0282440185546875,
-0.0175018310546875,
0.0257110595703125,
0.0419921875,
-0.033111572265625,
-0.003002166748046875,
-0.04583740234375,
-0.023345947265625,
0.055938720703125,
0.002902984619140625,
0.0020351409912109375,
-0.038116455078125,
-0.040802001953125,
-0.007465362548828125,
-0.061492919921875,
0.0204315185546875,
0.03985595703125,
0.021728515625,
-0.0283203125,
0.060150146484375,
-0.01238250732421875,
0.032928466796875,
0.0008573532104492188,
0.00670623779296875,
0.01113128662109375,
-0.041259765625,
-0.0095062255859375,
0.01493072509765625,
0.07891845703125,
0.0235748291015625,
0.00646209716796875,
-0.011505126953125,
0.00957489013671875,
-0.009918212890625,
0.01312255859375,
-0.0628662109375,
-0.01165771484375,
0.018310546875,
-0.03192138671875,
-0.0478515625,
0.01554107666015625,
-0.039459228515625,
-0.0160675048828125,
0.009735107421875,
0.0206756591796875,
-0.0107574462890625,
0.0007042884826660156,
-0.015594482421875,
-0.009033203125,
0.00606536865234375,
0.004787445068359375,
-0.0391845703125,
0.017364501953125,
0.022857666015625,
0.056610107421875,
-0.0013713836669921875,
-0.01267242431640625,
-0.047698974609375,
0.01904296875,
-0.0219573974609375,
0.058868408203125,
-0.037445068359375,
-0.0311126708984375,
-0.01065826416015625,
0.030181884765625,
0.00040340423583984375,
-0.037353515625,
0.06146240234375,
-0.05987548828125,
0.02728271484375,
-0.0504150390625,
-0.0367431640625,
-0.01409912109375,
0.0183868408203125,
-0.06304931640625,
0.08154296875,
0.00740814208984375,
-0.06494140625,
0.0167388916015625,
-0.05096435546875,
-0.0148773193359375,
-0.01239013671875,
-0.00917816162109375,
-0.04400634765625,
-0.01448822021484375,
0.003108978271484375,
0.0200653076171875,
-0.0450439453125,
0.0230712890625,
-0.0355224609375,
-0.0013952255249023438,
0.04193115234375,
-0.0218353271484375,
0.09820556640625,
0.007701873779296875,
-0.0118255615234375,
-0.01531219482421875,
-0.05560302734375,
0.0052642822265625,
0.00992584228515625,
-0.031890869140625,
-0.02557373046875,
0.00554656982421875,
-0.0157928466796875,
0.005901336669921875,
0.00890350341796875,
-0.049835205078125,
0.0158538818359375,
-0.00727081298828125,
0.0125885009765625,
0.04718017578125,
0.0087890625,
0.0099945068359375,
-0.034759521484375,
0.04852294921875,
-0.015625,
-0.0020160675048828125,
0.019195556640625,
-0.0369873046875,
-0.052947998046875,
-0.00955963134765625,
0.0284423828125,
0.045867919921875,
-0.050201416015625,
0.041015625,
-0.0252227783203125,
-0.0394287109375,
-0.02520751953125,
0.003917694091796875,
0.041839599609375,
0.041534423828125,
0.0286407470703125,
-0.031036376953125,
-0.06439208984375,
-0.06048583984375,
-0.0189208984375,
-0.045623779296875,
0.0213165283203125,
0.045928955078125,
0.0552978515625,
-0.0176849365234375,
0.07904052734375,
-0.0391845703125,
-0.0276336669921875,
-0.00861358642578125,
0.0218963623046875,
0.0006899833679199219,
0.04071044921875,
0.0294342041015625,
-0.05029296875,
-0.041656494140625,
-0.0008525848388671875,
-0.06585693359375,
-0.017974853515625,
0.01215362548828125,
-0.025054931640625,
0.006504058837890625,
0.03350830078125,
-0.0125579833984375,
0.0204315185546875,
0.04205322265625,
-0.0298309326171875,
0.06549072265625,
-0.0005283355712890625,
0.036590576171875,
-0.09405517578125,
0.02630615234375,
-0.010650634765625,
-0.0002810955047607422,
-0.031494140625,
-0.006992340087890625,
-0.0019779205322265625,
0.00220489501953125,
-0.026397705078125,
0.049102783203125,
-0.0245513916015625,
0.00571441650390625,
0.002086639404296875,
0.01377105712890625,
0.0262298583984375,
0.004245758056640625,
-0.0024433135986328125,
0.0545654296875,
0.03582763671875,
-0.039886474609375,
0.0693359375,
0.0423583984375,
-0.03289794921875,
0.03961181640625,
-0.043365478515625,
0.0029144287109375,
0.0007038116455078125,
0.032623291015625,
-0.060211181640625,
-0.013031005859375,
0.01174163818359375,
-0.030914306640625,
0.0011739730834960938,
-0.0259552001953125,
-0.043243408203125,
-0.0239105224609375,
-0.0251007080078125,
0.043365478515625,
0.00403594970703125,
-0.02386474609375,
0.0305938720703125,
0.026458740234375,
-0.0119171142578125,
-0.05181884765625,
-0.041961669921875,
-0.00019061565399169922,
-0.0264129638671875,
-0.04827880859375,
0.039093017578125,
0.0015010833740234375,
-0.037445068359375,
0.01229095458984375,
-0.004314422607421875,
-0.0183258056640625,
-0.007358551025390625,
0.01409912109375,
0.0269012451171875,
-0.024200439453125,
0.004657745361328125,
-0.0118560791015625,
-0.0023288726806640625,
0.0038166046142578125,
0.019989013671875,
0.01385498046875,
-0.0111083984375,
-0.0240478515625,
-0.029510498046875,
0.029998779296875,
0.0270233154296875,
-0.0201416015625,
0.06640625,
0.04913330078125,
-0.00789642333984375,
0.01422119140625,
-0.048980712890625,
-0.00980377197265625,
-0.032562255859375,
0.033538818359375,
-0.0175933837890625,
-0.036407470703125,
0.061981201171875,
0.02374267578125,
-0.00921630859375,
0.06671142578125,
0.0222930908203125,
-0.01009368896484375,
0.0552978515625,
0.03887939453125,
-0.00732421875,
0.034149169921875,
-0.033782958984375,
-0.00374603271484375,
-0.08416748046875,
-0.0256195068359375,
-0.055877685546875,
-0.00799560546875,
-0.0582275390625,
-0.020416259765625,
0.0235137939453125,
0.00479888916015625,
-0.031341552734375,
0.0279388427734375,
-0.01336669921875,
0.0225372314453125,
0.035369873046875,
0.01019287109375,
0.0280303955078125,
0.00931549072265625,
-0.00809478759765625,
-0.01163482666015625,
-0.048553466796875,
-0.03619384765625,
0.08355712890625,
0.0138702392578125,
0.06427001953125,
0.031768798828125,
0.038909912109375,
0.031036376953125,
0.0223236083984375,
-0.049652099609375,
0.033172607421875,
-0.019317626953125,
-0.06781005859375,
-0.016693115234375,
-0.04522705078125,
-0.09185791015625,
0.010406494140625,
-0.005802154541015625,
-0.0599365234375,
0.03564453125,
-0.00733184814453125,
-0.04644775390625,
0.019622802734375,
-0.034454345703125,
0.0677490234375,
-0.025054931640625,
-0.045989990234375,
-0.00013709068298339844,
-0.03448486328125,
0.032562255859375,
0.0030384063720703125,
0.019287109375,
-0.0091552734375,
-0.004306793212890625,
0.10113525390625,
-0.0477294921875,
0.05224609375,
0.00046372413635253906,
-0.0127410888671875,
0.03118896484375,
-0.0007448196411132812,
0.06451416015625,
-0.00048613548278808594,
-0.0247955322265625,
-0.01381683349609375,
0.022247314453125,
-0.0270538330078125,
-0.0287017822265625,
0.064453125,
-0.060791015625,
-0.032257080078125,
-0.053619384765625,
-0.041961669921875,
-0.005825042724609375,
0.006023406982421875,
0.029998779296875,
0.051422119140625,
-0.0262451171875,
0.03594970703125,
0.05194091796875,
-0.0160369873046875,
0.00286102294921875,
0.059722900390625,
-0.00714111328125,
-0.0355224609375,
0.05389404296875,
0.01264190673828125,
0.0225372314453125,
0.0061187744140625,
0.0162506103515625,
-0.02911376953125,
-0.0111083984375,
-0.0201568603515625,
0.041961669921875,
-0.05633544921875,
-0.0279998779296875,
-0.03790283203125,
-0.0175628662109375,
-0.031097412109375,
-0.014984130859375,
-0.0304718017578125,
-0.0167388916015625,
-0.023773193359375,
-0.0016222000122070312,
0.041656494140625,
0.047607421875,
-0.004894256591796875,
0.021240234375,
-0.051483154296875,
0.018768310546875,
0.015899658203125,
0.0158843994140625,
-0.01357269287109375,
-0.0723876953125,
-0.03607177734375,
0.0106964111328125,
-0.04193115234375,
-0.08251953125,
0.0296173095703125,
0.0153350830078125,
0.053192138671875,
0.027313232421875,
0.0215606689453125,
0.060150146484375,
-0.01375579833984375,
0.0677490234375,
-0.00274658203125,
-0.047149658203125,
0.049102783203125,
-0.0183258056640625,
0.0111236572265625,
0.04571533203125,
0.04150390625,
-0.034820556640625,
-0.021270751953125,
-0.08013916015625,
-0.0712890625,
0.0718994140625,
0.02838134765625,
-0.01519775390625,
0.023101806640625,
0.0102081298828125,
-0.00264739990234375,
0.01116943359375,
-0.064453125,
-0.044189453125,
0.00433349609375,
-0.0005679130554199219,
-0.0017375946044921875,
-0.021942138671875,
-0.03802490234375,
-0.021484375,
0.0914306640625,
0.0012874603271484375,
0.02532958984375,
0.01528167724609375,
-0.01323699951171875,
-0.012908935546875,
0.02203369140625,
0.029541015625,
0.045013427734375,
-0.0312042236328125,
0.0155181884765625,
0.00751495361328125,
-0.03570556640625,
0.0034542083740234375,
0.0450439453125,
-0.00807952880859375,
0.00844573974609375,
0.038421630859375,
0.056884765625,
0.0140380859375,
-0.043914794921875,
0.041839599609375,
0.018890380859375,
-0.00884246826171875,
-0.0233612060546875,
-0.006122589111328125,
-0.0217437744140625,
0.0166473388671875,
0.041778564453125,
-0.00531005859375,
0.006252288818359375,
-0.058685302734375,
0.0256195068359375,
0.05078125,
-0.037353515625,
-0.0183258056640625,
0.03631591796875,
-0.002834320068359375,
0.0115814208984375,
0.03338623046875,
-0.01305389404296875,
-0.0543212890625,
0.05499267578125,
0.0306243896484375,
0.05078125,
-0.0204620361328125,
0.0289764404296875,
0.040374755859375,
0.0158233642578125,
0.0071563720703125,
0.020416259765625,
-0.0166168212890625,
-0.0687255859375,
-0.01032257080078125,
-0.04388427734375,
-0.0094757080078125,
0.0302886962890625,
-0.0623779296875,
-0.0015134811401367188,
-0.006679534912109375,
-0.026336669921875,
0.0012807846069335938,
0.03399658203125,
-0.044036865234375,
0.022796630859375,
-0.004207611083984375,
0.03759765625,
-0.07958984375,
0.05950927734375,
0.051239013671875,
-0.05291748046875,
-0.054229736328125,
-0.00853729248046875,
0.00963592529296875,
-0.055511474609375,
0.0606689453125,
-0.0240936279296875,
-0.002655029296875,
-0.00119781494140625,
-0.046600341796875,
-0.09002685546875,
0.08648681640625,
0.016876220703125,
-0.000873565673828125,
0.0006351470947265625,
0.004215240478515625,
0.018768310546875,
-0.0193634033203125,
0.0244903564453125,
0.035614013671875,
0.039337158203125,
0.01291656494140625,
-0.07635498046875,
0.0185546875,
-0.018524169921875,
-0.01207733154296875,
-0.01070404052734375,
-0.060394287109375,
0.04522705078125,
-0.0183868408203125,
-0.01125335693359375,
0.0230865478515625,
0.04620361328125,
0.03594970703125,
0.0079498291015625,
0.0256195068359375,
0.03863525390625,
0.06353759765625,
-0.0195159912109375,
0.0755615234375,
0.007472991943359375,
0.042327880859375,
0.0775146484375,
0.00016558170318603516,
0.061920166015625,
0.037628173828125,
-0.054718017578125,
0.05914306640625,
0.0443115234375,
-0.0165557861328125,
0.044921875,
-0.0007495880126953125,
-0.00971221923828125,
-0.005161285400390625,
-0.0215301513671875,
-0.050567626953125,
0.0283660888671875,
0.0108489990234375,
-0.0693359375,
-0.033172607421875,
-0.0150299072265625,
0.0159454345703125,
-0.007076263427734375,
-0.0182037353515625,
0.04791259765625,
0.001674652099609375,
-0.03369140625,
0.06488037109375,
-0.0007405281066894531,
0.03594970703125,
-0.062469482421875,
0.01375579833984375,
-0.0169525146484375,
0.01027679443359375,
-0.031036376953125,
-0.051910400390625,
0.017333984375,
0.0175628662109375,
-0.0294342041015625,
-0.01355743408203125,
0.02398681640625,
-0.030548095703125,
-0.0594482421875,
-0.0026950836181640625,
0.0220794677734375,
0.0338134765625,
0.0009603500366210938,
-0.0635986328125,
0.01494598388671875,
0.02105712890625,
-0.023284912109375,
0.01189422607421875,
0.034759521484375,
0.000583648681640625,
0.04486083984375,
0.043670654296875,
0.0216522216796875,
0.0005183219909667969,
-0.003780364990234375,
0.061248779296875,
-0.046173095703125,
-0.0195465087890625,
-0.047149658203125,
0.037109375,
-0.01354217529296875,
-0.0166015625,
0.073974609375,
0.0732421875,
0.042816162109375,
0.0168609619140625,
0.06988525390625,
-0.0347900390625,
0.042755126953125,
-0.03271484375,
0.057464599609375,
-0.060150146484375,
0.01422119140625,
-0.02288818359375,
-0.055206298828125,
-0.005466461181640625,
0.041656494140625,
-0.03961181640625,
0.01525115966796875,
0.055908203125,
0.07672119140625,
-0.004974365234375,
-0.01483917236328125,
0.005558013916015625,
0.0318603515625,
0.0231475830078125,
0.01219940185546875,
0.04119873046875,
-0.06671142578125,
0.052947998046875,
-0.01340484619140625,
-0.017059326171875,
-0.034942626953125,
-0.0631103515625,
-0.037353515625,
-0.06585693359375,
-0.03289794921875,
-0.061767578125,
0.01824951171875,
0.057098388671875,
0.029266357421875,
-0.08056640625,
-0.0232086181640625,
0.0154266357421875,
0.006561279296875,
-0.0236663818359375,
-0.0224456787109375,
0.0521240234375,
-0.00682830810546875,
-0.04656982421875,
0.02032470703125,
-0.0269775390625,
0.01154327392578125,
-0.0143890380859375,
-0.00768280029296875,
-0.034759521484375,
0.0017213821411132812,
0.03759765625,
0.04461669921875,
-0.06732177734375,
-0.0094451904296875,
-0.01255035400390625,
-0.0207672119140625,
-0.0028228759765625,
0.04071044921875,
-0.063720703125,
0.038055419921875,
0.0308990478515625,
0.0173797607421875,
0.0367431640625,
0.0301055908203125,
0.045379638671875,
-0.043365478515625,
-0.00594329833984375,
0.004878997802734375,
0.019775390625,
0.035186767578125,
-0.0205535888671875,
0.03240966796875,
0.034912109375,
-0.043304443359375,
-0.07696533203125,
0.00601959228515625,
-0.08251953125,
0.0012054443359375,
0.1087646484375,
-0.00917816162109375,
-0.007572174072265625,
-0.0145416259765625,
-0.01337432861328125,
0.0267181396484375,
-0.041229248046875,
0.05560302734375,
0.065673828125,
-0.0035037994384765625,
0.001445770263671875,
-0.042938232421875,
0.055511474609375,
0.02117919921875,
-0.045745849609375,
0.01093292236328125,
0.031280517578125,
0.01081085205078125,
0.0158843994140625,
0.034698486328125,
-0.0018901824951171875,
0.011505126953125,
-0.00473785400390625,
0.002651214599609375,
-0.007476806640625,
0.0062255859375,
0.002716064453125,
-0.001995086669921875,
-0.00389862060546875,
-0.014190673828125
]
] |
papluca/language-identification | 2022-07-15T10:11:23.000Z | [
"task_categories:text-classification",
"task_ids:multi-class-classification",
"multilinguality:multilingual",
"size_categories:unknown",
"source_datasets:extended|amazon_reviews_multi",
"source_datasets:extended|xnli",
"source_datasets:extended|stsb_multi_mt",
"language:ar",
"language:bg",
"language:de",
"language:el",
"language:en",
"language:es",
"language:fr",
"language:hi",
"language:it",
"language:ja",
"language:nl",
"language:pl",
"language:pt",
"language:ru",
"language:sw",
"language:th",
"language:tr",
"language:ur",
"language:vi",
"language:zh",
"region:us"
] | papluca | null | null | 16 | 1,028 | 2022-03-02T23:29:22 | ---
annotations_creators: []
language_creators: []
language:
- ar
- bg
- de
- el
- en
- es
- fr
- hi
- it
- ja
- nl
- pl
- pt
- ru
- sw
- th
- tr
- ur
- vi
- zh
license: []
multilinguality:
- multilingual
pretty_name: Language Identification dataset
size_categories:
- unknown
source_datasets:
- extended|amazon_reviews_multi
- extended|xnli
- extended|stsb_multi_mt
task_categories:
- text-classification
task_ids:
- multi-class-classification
---
# Dataset Card for Language Identification dataset
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:**
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
The Language Identification dataset is a collection of 90k samples consisting of text passages and corresponding language label.
This dataset was created by collecting data from 3 sources: [Multilingual Amazon Reviews Corpus](https://huggingface.co/datasets/amazon_reviews_multi), [XNLI](https://huggingface.co/datasets/xnli), and [STSb Multi MT](https://huggingface.co/datasets/stsb_multi_mt).
### Supported Tasks and Leaderboards
The dataset can be used to train a model for language identification, which is a **multi-class text classification** task.
The model [papluca/xlm-roberta-base-language-detection](https://huggingface.co/papluca/xlm-roberta-base-language-detection), which is a fine-tuned version of [xlm-roberta-base](https://huggingface.co/xlm-roberta-base), was trained on this dataset and currently achieves 99.6% accuracy on the test set.
### Languages
The Language Identification dataset contains text in 20 languages, which are:
`arabic (ar), bulgarian (bg), german (de), modern greek (el), english (en), spanish (es), french (fr), hindi (hi), italian (it), japanese (ja), dutch (nl), polish (pl), portuguese (pt), russian (ru), swahili (sw), thai (th), turkish (tr), urdu (ur), vietnamese (vi), and chinese (zh)`
## Dataset Structure
### Data Instances
For each instance, there is a string for the text and a string for the label (the language tag). Here is an example:
`{'labels': 'fr', 'text': 'Conforme à la description, produit pratique.'}`
### Data Fields
- **labels:** a string indicating the language label.
- **text:** a string consisting of one or more sentences in one of the 20 languages listed above.
### Data Splits
The Language Identification dataset has 3 splits: *train*, *valid*, and *test*.
The train set contains 70k samples, while the validation and test sets 10k each.
All splits are perfectly balanced: the train set contains 3500 samples per language, while the validation and test sets 500.
## Dataset Creation
### Curation Rationale
This dataset was built during *The Hugging Face Course Community Event*, which took place in November 2021, with the goal of collecting a dataset with enough samples for each language to train a robust language detection model.
### Source Data
The Language Identification dataset was created by collecting data from 3 sources: [Multilingual Amazon Reviews Corpus](https://huggingface.co/datasets/amazon_reviews_multi), [XNLI](https://huggingface.co/datasets/xnli), and [STSb Multi MT](https://huggingface.co/datasets/stsb_multi_mt).
### Personal and Sensitive Information
The dataset does not contain any personal information about the authors or the crowdworkers.
## Considerations for Using the Data
### Social Impact of Dataset
This dataset was developed as a benchmark for evaluating (balanced) multi-class text classification models.
### Discussion of Biases
The possible biases correspond to those of the 3 datasets on which this dataset is based.
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Contributions
Thanks to [@LucaPapariello](https://github.com/LucaPapariello) for adding this dataset.
| 4,987 | [
[
-0.026824951171875,
-0.042877197265625,
0.000024497509002685547,
0.0276947021484375,
-0.01030731201171875,
0.0276336669921875,
-0.047271728515625,
-0.04669189453125,
0.0126495361328125,
0.03057861328125,
-0.035736083984375,
-0.068359375,
-0.04437255859375,
0.0176544189453125,
-0.0229339599609375,
0.09844970703125,
-0.015838623046875,
-0.00020456314086914062,
0.0062713623046875,
-0.03363037109375,
-0.0105133056640625,
-0.047760009765625,
-0.04522705078125,
-0.0056304931640625,
0.041656494140625,
0.03778076171875,
0.032135009765625,
0.060150146484375,
0.0213623046875,
0.021087646484375,
0.0005183219909667969,
0.013092041015625,
-0.0177459716796875,
-0.0294036865234375,
0.0021820068359375,
-0.0272369384765625,
-0.02630615234375,
0.00740814208984375,
0.058135986328125,
0.036285400390625,
0.00122833251953125,
0.0283966064453125,
0.00908660888671875,
0.04412841796875,
-0.027801513671875,
0.0310211181640625,
-0.026123046875,
-0.01202392578125,
-0.056915283203125,
0.01019287109375,
-0.0293426513671875,
-0.029571533203125,
-0.0107574462890625,
-0.017364501953125,
0.00916290283203125,
0.0011806488037109375,
0.0850830078125,
-0.0158233642578125,
-0.02459716796875,
-0.0232391357421875,
-0.037506103515625,
0.060455322265625,
-0.040618896484375,
0.0254058837890625,
0.046478271484375,
0.01430511474609375,
0.020111083984375,
-0.021697998046875,
-0.058807373046875,
0.0063629150390625,
-0.01259613037109375,
0.00858306884765625,
-0.0024471282958984375,
-0.0241241455078125,
0.028564453125,
0.03851318359375,
-0.0672607421875,
0.00888824462890625,
-0.0297393798828125,
-0.0226287841796875,
0.0616455078125,
-0.004467010498046875,
0.0379638671875,
-0.0201263427734375,
-0.0142669677734375,
-0.01983642578125,
-0.0245361328125,
0.01531982421875,
0.04254150390625,
0.05023193359375,
-0.048065185546875,
0.0309295654296875,
-0.01462554931640625,
0.0457763671875,
-0.01316070556640625,
-0.025634765625,
0.06939697265625,
-0.0400390625,
-0.0033416748046875,
-0.0038433074951171875,
0.08551025390625,
0.0174560546875,
0.0299224853515625,
0.0005846023559570312,
-0.010101318359375,
0.0037384033203125,
-0.024688720703125,
-0.04937744140625,
-0.0106048583984375,
0.0289154052734375,
-0.03656005859375,
-0.0311126708984375,
0.008209228515625,
-0.06414794921875,
-0.006526947021484375,
-0.0167388916015625,
0.003910064697265625,
-0.0259246826171875,
-0.044281005859375,
-0.0018796920776367188,
-0.00342559814453125,
0.02691650390625,
-0.01346588134765625,
-0.05706787109375,
0.01702880859375,
0.02734375,
0.046783447265625,
-0.025909423828125,
-0.0323486328125,
-0.00843048095703125,
-0.0012121200561523438,
-0.0031070709228515625,
0.05126953125,
-0.037017822265625,
-0.01270294189453125,
0.0165557861328125,
0.0379638671875,
-0.0068817138671875,
-0.0382080078125,
0.055389404296875,
-0.02099609375,
0.039337158203125,
-0.02850341796875,
-0.0312347412109375,
-0.0049896240234375,
0.025909423828125,
-0.06268310546875,
0.11383056640625,
0.0147857666015625,
-0.066162109375,
0.0245513916015625,
-0.043487548828125,
-0.037841796875,
0.0201263427734375,
-0.013763427734375,
-0.046295166015625,
-0.0223236083984375,
0.00470733642578125,
0.037445068359375,
-0.0253143310546875,
0.0281219482421875,
-0.00960540771484375,
-0.009002685546875,
0.015411376953125,
-0.0261993408203125,
0.0933837890625,
0.0181121826171875,
-0.0283050537109375,
-0.0039043426513671875,
-0.07965087890625,
-0.00027060508728027344,
0.028167724609375,
-0.03515625,
-0.0217132568359375,
-0.01507568359375,
0.046356201171875,
0.0218048095703125,
0.0241241455078125,
-0.043792724609375,
0.0012683868408203125,
-0.0215911865234375,
0.0089874267578125,
0.043548583984375,
-0.0157928466796875,
0.0238037109375,
-0.022918701171875,
0.0487060546875,
0.01018524169921875,
-0.00022363662719726562,
-0.0116424560546875,
-0.05340576171875,
-0.054046630859375,
-0.0235137939453125,
0.041015625,
0.067626953125,
-0.057281494140625,
0.058837890625,
-0.03082275390625,
-0.043731689453125,
-0.041259765625,
0.0189666748046875,
0.057342529296875,
0.0216827392578125,
0.0222320556640625,
-0.024749755859375,
-0.041412353515625,
-0.056884765625,
-0.01220703125,
-0.018280029296875,
0.0102081298828125,
0.027099609375,
0.037933349609375,
-0.011871337890625,
0.052215576171875,
-0.0233001708984375,
-0.0225677490234375,
-0.0390625,
-0.0016622543334960938,
0.01739501953125,
0.035400390625,
0.046234130859375,
-0.05914306640625,
-0.06329345703125,
0.00569915771484375,
-0.050689697265625,
-0.017852783203125,
-0.002269744873046875,
-0.006290435791015625,
0.04156494140625,
0.0254364013671875,
-0.01033782958984375,
0.018096923828125,
0.052490234375,
-0.0228729248046875,
0.035552978515625,
0.00939178466796875,
0.00527191162109375,
-0.10174560546875,
0.01320648193359375,
0.0272369384765625,
0.01038360595703125,
-0.048095703125,
-0.0110015869140625,
0.008514404296875,
0.0019464492797851562,
-0.023193359375,
0.060211181640625,
-0.029754638671875,
0.024627685546875,
-0.0007495880126953125,
0.020538330078125,
-0.00531768798828125,
0.04986572265625,
0.0191650390625,
0.051910400390625,
0.047149658203125,
-0.041412353515625,
0.01305389404296875,
0.025848388671875,
-0.039764404296875,
0.044830322265625,
-0.03277587890625,
-0.0005297660827636719,
-0.0165557861328125,
0.003604888916015625,
-0.07147216796875,
-0.0157623291015625,
0.039031982421875,
-0.04595947265625,
0.02099609375,
-0.01093292236328125,
-0.05609130859375,
-0.02984619140625,
-0.0165557861328125,
0.02178955078125,
0.0220184326171875,
-0.03741455078125,
0.0404052734375,
0.046234130859375,
-0.01256561279296875,
-0.053375244140625,
-0.056854248046875,
0.001865386962890625,
-0.0269317626953125,
-0.0297698974609375,
0.0283966064453125,
-0.0170440673828125,
-0.005695343017578125,
-0.00983428955078125,
0.0258636474609375,
-0.0153656005859375,
0.006130218505859375,
0.004161834716796875,
0.023223876953125,
-0.00214385986328125,
0.0169677734375,
0.002040863037109375,
-0.01076507568359375,
-0.00794219970703125,
-0.00476837158203125,
0.042083740234375,
-0.00717926025390625,
-0.0089569091796875,
-0.038116455078125,
0.0292510986328125,
0.0229339599609375,
-0.035308837890625,
0.057830810546875,
0.0836181640625,
-0.031982421875,
-0.0022830963134765625,
-0.0384521484375,
0.00984954833984375,
-0.030548095703125,
0.02777099609375,
-0.040985107421875,
-0.0543212890625,
0.055419921875,
0.0211944580078125,
-0.0028781890869140625,
0.030517578125,
0.048492431640625,
0.01505279541015625,
0.06719970703125,
0.04254150390625,
-0.051177978515625,
0.048858642578125,
-0.019012451171875,
0.01407623291015625,
-0.045684814453125,
-0.025482177734375,
-0.07147216796875,
-0.011871337890625,
-0.07159423828125,
-0.02252197265625,
-0.0176849365234375,
-0.00537872314453125,
-0.003055572509765625,
0.05010986328125,
-0.043243408203125,
0.0362548828125,
0.050811767578125,
0.0020160675048828125,
0.01285552978515625,
0.007480621337890625,
-0.004726409912109375,
-0.00249481201171875,
-0.037841796875,
-0.05352783203125,
0.0831298828125,
0.0312347412109375,
0.0222015380859375,
0.01482391357421875,
0.04840087890625,
0.005077362060546875,
0.0247802734375,
-0.039154052734375,
0.04095458984375,
-0.015411376953125,
-0.05340576171875,
-0.0110015869140625,
-0.033599853515625,
-0.07623291015625,
0.00502777099609375,
-0.01261138916015625,
-0.058349609375,
0.0156402587890625,
-0.00380706787109375,
-0.0035533905029296875,
0.01245880126953125,
-0.060302734375,
0.08251953125,
-0.0233306884765625,
-0.0210418701171875,
0.0140838623046875,
-0.048858642578125,
0.01230621337890625,
-0.01386260986328125,
0.03875732421875,
-0.01495361328125,
0.007167816162109375,
0.07452392578125,
-0.01074981689453125,
0.07330322265625,
-0.01313018798828125,
-0.00782012939453125,
0.024627685546875,
-0.03277587890625,
0.03289794921875,
-0.00812530517578125,
-0.00791168212890625,
0.03662109375,
0.0029087066650390625,
-0.03289794921875,
-0.01715087890625,
0.0474853515625,
-0.057952880859375,
-0.005321502685546875,
-0.036895751953125,
-0.024444580078125,
-0.00206756591796875,
0.0247955322265625,
0.017547607421875,
0.027008056640625,
-0.01044464111328125,
0.0113067626953125,
0.04595947265625,
-0.037841796875,
0.026214599609375,
0.051849365234375,
-0.012725830078125,
-0.03643798828125,
0.08251953125,
0.006130218505859375,
0.00457000732421875,
0.0322265625,
0.0166168212890625,
-0.0294189453125,
-0.0278472900390625,
-0.044830322265625,
0.028778076171875,
-0.04083251953125,
-0.00547027587890625,
-0.04656982421875,
-0.0152587890625,
-0.0369873046875,
0.0183563232421875,
-0.004039764404296875,
-0.0187225341796875,
-0.0204620361328125,
-0.015533447265625,
0.03472900390625,
0.022979736328125,
-0.0007624626159667969,
0.02679443359375,
-0.04669189453125,
0.01715087890625,
-0.007114410400390625,
0.03765869140625,
-0.01299285888671875,
-0.037353515625,
-0.035736083984375,
-0.0007162094116210938,
-0.007465362548828125,
-0.0560302734375,
0.0278472900390625,
0.020111083984375,
0.04937744140625,
0.03759765625,
-0.002288818359375,
0.02862548828125,
-0.030029296875,
0.055999755859375,
-0.002597808837890625,
-0.059844970703125,
0.040130615234375,
-0.0261993408203125,
0.02825927734375,
0.05267333984375,
0.0474853515625,
-0.0538330078125,
-0.031707763671875,
-0.047393798828125,
-0.05645751953125,
0.0689697265625,
0.01274871826171875,
0.0235137939453125,
-0.016815185546875,
0.017608642578125,
-0.0076446533203125,
0.013153076171875,
-0.0885009765625,
-0.05810546875,
0.0090484619140625,
-0.048065185546875,
-0.00901031494140625,
-0.01294708251953125,
0.00029158592224121094,
-0.0243377685546875,
0.05865478515625,
-0.0105438232421875,
0.012603759765625,
-0.019012451171875,
-0.00390625,
0.00540924072265625,
0.01401519775390625,
0.031585693359375,
0.0185699462890625,
-0.00542449951171875,
-0.003814697265625,
-0.00142669677734375,
-0.043365478515625,
-0.0037784576416015625,
0.018798828125,
-0.01287841796875,
0.009735107421875,
0.025604248046875,
0.060089111328125,
-0.004650115966796875,
-0.0626220703125,
0.04388427734375,
-0.00765228271484375,
-0.007274627685546875,
-0.037841796875,
-0.01043701171875,
-0.0106658935546875,
0.005283355712890625,
0.0205841064453125,
-0.016387939453125,
0.004009246826171875,
-0.0362548828125,
0.0177764892578125,
0.028076171875,
-0.0272064208984375,
-0.0298309326171875,
0.030609130859375,
0.014251708984375,
-0.035430908203125,
0.0338134765625,
-0.0210723876953125,
-0.045562744140625,
0.05084228515625,
0.030059814453125,
0.06304931640625,
-0.033416748046875,
0.032073974609375,
0.053131103515625,
0.039031982421875,
-0.0035419464111328125,
0.03619384765625,
-0.01192474365234375,
-0.0843505859375,
-0.02154541015625,
-0.04620361328125,
-0.0181732177734375,
0.0238037109375,
-0.06414794921875,
0.03839111328125,
-0.0185699462890625,
0.0018100738525390625,
0.00801849365234375,
0.01457977294921875,
-0.053863525390625,
0.018402099609375,
0.0186004638671875,
0.065185546875,
-0.10198974609375,
0.07958984375,
0.043731689453125,
-0.05133056640625,
-0.055511474609375,
-0.0094451904296875,
0.01375579833984375,
-0.05401611328125,
0.034698486328125,
0.0264129638671875,
0.0247802734375,
-0.00847625732421875,
-0.03802490234375,
-0.060302734375,
0.0574951171875,
0.0007119178771972656,
-0.022613525390625,
0.028472900390625,
0.0220184326171875,
0.055267333984375,
-0.032470703125,
0.0223846435546875,
0.0546875,
0.049224853515625,
-0.004116058349609375,
-0.07110595703125,
0.0012054443359375,
-0.04925537109375,
-0.0050201416015625,
0.014556884765625,
-0.053680419921875,
0.037261962890625,
0.00372314453125,
-0.0201873779296875,
0.0025005340576171875,
0.03155517578125,
0.027618408203125,
0.024444580078125,
0.032928466796875,
0.048675537109375,
0.06304931640625,
-0.02227783203125,
0.07220458984375,
-0.0309600830078125,
0.0205230712890625,
0.079833984375,
-0.01322174072265625,
0.0679931640625,
0.0166778564453125,
-0.0254364013671875,
0.050384521484375,
0.052978515625,
-0.022491455078125,
0.02349853515625,
0.00934600830078125,
-0.0113525390625,
0.00518035888671875,
-0.0147857666015625,
-0.0228729248046875,
0.037109375,
0.033599853515625,
-0.041961669921875,
0.0048065185546875,
0.0140228271484375,
0.034088134765625,
0.005359649658203125,
0.006622314453125,
0.0582275390625,
-0.0185699462890625,
-0.039581298828125,
0.03582763671875,
0.01174163818359375,
0.05352783203125,
-0.0452880859375,
0.01079559326171875,
-0.0135498046875,
0.01215362548828125,
-0.02130126953125,
-0.05853271484375,
0.016082763671875,
0.0007224082946777344,
-0.0225067138671875,
-0.02398681640625,
0.0330810546875,
-0.06689453125,
-0.0552978515625,
0.031494140625,
0.029876708984375,
0.0247802734375,
0.00917816162109375,
-0.0831298828125,
0.031463623046875,
0.01800537109375,
-0.012176513671875,
0.024322509765625,
0.035797119140625,
-0.01061248779296875,
0.039764404296875,
0.03472900390625,
0.0056610107421875,
-0.008697509765625,
0.031280517578125,
0.05108642578125,
-0.043060302734375,
-0.025787353515625,
-0.0447998046875,
0.040863037109375,
-0.026031494140625,
-0.040740966796875,
0.07611083984375,
0.06597900390625,
0.09393310546875,
0.0032863616943359375,
0.074462890625,
-0.022674560546875,
0.06561279296875,
-0.021209716796875,
0.04730224609375,
-0.041229248046875,
0.0164031982421875,
-0.049896240234375,
-0.05853271484375,
-0.035247802734375,
0.0469970703125,
-0.0165863037109375,
0.02197265625,
0.047149658203125,
0.06988525390625,
0.01270294189453125,
-0.00994110107421875,
0.0029163360595703125,
0.010650634765625,
0.01177215576171875,
0.033233642578125,
0.02691650390625,
-0.06341552734375,
0.047698974609375,
-0.036376953125,
-0.029754638671875,
-0.0023899078369140625,
-0.0538330078125,
-0.0782470703125,
-0.07061767578125,
-0.0634765625,
-0.0418701171875,
-0.0189666748046875,
0.058624267578125,
0.04156494140625,
-0.08514404296875,
-0.0399169921875,
0.01515960693359375,
0.0178680419921875,
-0.02020263671875,
-0.021484375,
0.0382080078125,
-0.00559234619140625,
-0.0838623046875,
0.0034122467041015625,
0.001628875732421875,
-0.00006628036499023438,
-0.01654052734375,
-0.00662994384765625,
-0.0272369384765625,
-0.0169677734375,
0.04034423828125,
0.035919189453125,
-0.04888916015625,
-0.0089111328125,
0.002010345458984375,
-0.01210784912109375,
0.0003275871276855469,
0.02777099609375,
-0.035247802734375,
0.03240966796875,
0.0301666259765625,
0.04119873046875,
0.02825927734375,
-0.00600433349609375,
0.01552581787109375,
-0.06451416015625,
0.0187835693359375,
-0.0037784576416015625,
0.02569580078125,
0.0296783447265625,
-0.0263519287109375,
0.04827880859375,
0.0250396728515625,
-0.0302276611328125,
-0.0657958984375,
-0.00040984153747558594,
-0.089111328125,
0.000766754150390625,
0.09521484375,
-0.01024627685546875,
-0.0204925537109375,
-0.03302001953125,
-0.0094757080078125,
0.0011157989501953125,
-0.037261962890625,
0.043365478515625,
0.0650634765625,
0.0165863037109375,
-0.037322998046875,
-0.021636962890625,
0.041351318359375,
0.0036411285400390625,
-0.06927490234375,
0.001911163330078125,
0.02008056640625,
0.0248565673828125,
0.02740478515625,
0.0557861328125,
-0.024658203125,
-0.00815582275390625,
-0.0287628173828125,
0.0345458984375,
0.0206756591796875,
-0.0129547119140625,
-0.026702880859375,
-0.0027008056640625,
-0.00884246826171875,
-0.0159149169921875
]
] |
squad_kor_v1 | 2023-06-15T15:25:29.000Z | [
"task_categories:question-answering",
"task_ids:extractive-qa",
"annotations_creators:crowdsourced",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:ko",
"license:cc-by-nd-4.0",
"arxiv:1909.07005",
"region:us"
] | null | KorQuAD 1.0 is a large-scale Korean dataset for machine reading comprehension task consisting of human generated questions for Wikipedia articles. We benchmark the data collecting process of SQuADv1.0 and crowdsourced 70,000+ question-answer pairs. 1,637 articles and 70,079 pairs of question answers were collected. 1,420 articles are used for the training set, 140 for the dev set, and 77 for the test set. 60,407 question-answer pairs are for the training set, 5,774 for the dev set, and 3,898 for the test set. | @article{lim2019korquad1,
title={Korquad1. 0: Korean qa dataset for machine reading comprehension},
author={Lim, Seungyoung and Kim, Myungji and Lee, Jooyoul},
journal={arXiv preprint arXiv:1909.07005},
year={2019}
} | 9 | 1,022 | 2022-03-02T23:29:22 | ---
annotations_creators:
- crowdsourced
language_creators:
- found
language:
- ko
license:
- cc-by-nd-4.0
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- question-answering
task_ids:
- extractive-qa
paperswithcode_id: korquad
pretty_name: The Korean Question Answering Dataset
dataset_info:
features:
- name: id
dtype: string
- name: title
dtype: string
- name: context
dtype: string
- name: question
dtype: string
- name: answers
sequence:
- name: text
dtype: string
- name: answer_start
dtype: int32
config_name: squad_kor_v1
splits:
- name: train
num_bytes: 83380337
num_examples: 60407
- name: validation
num_bytes: 8261729
num_examples: 5774
download_size: 42408533
dataset_size: 91642066
---
# Dataset Card for KorQuAD v1.0
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://korquad.github.io/KorQuad%201.0/
- **Repository:** https://github.com/korquad/korquad.github.io/tree/master/dataset
- **Paper:** https://arxiv.org/abs/1909.07005
### Dataset Summary
KorQuAD 1.0 is a large-scale question-and-answer dataset constructed for Korean machine reading comprehension, and investigate the dataset to understand the distribution of answers and the types of reasoning required to answer the question. This dataset benchmarks the data generating process of SQuAD v1.0 to meet the standard.
### Supported Tasks and Leaderboards
`question-answering`
### Languages
Korean
## Dataset Structure
Follows the standars SQuAD format.
### Data Instances
An example from the data set looks as follows:
```
{'answers': {'answer_start': [54], 'text': ['교향곡']},
'context': '1839년 바그너는 괴테의 파우스트을 처음 읽고 그 내용에 마음이 끌려 이를 소재로 해서 하나의 교향곡을 쓰려는 뜻을 갖는다. 이 시기 바그너는 1838년에 빛 독촉으로 산전수전을 다 걲은 상황이라 좌절과 실망에 가득했으며 메피스토펠레스를 만나는 파우스트의 심경에 공감했다고 한다. 또한 파리에서 아브네크의 지휘로 파리 음악원 관현악단이 연주하는 베토벤의 교향곡 9번을 듣고 깊은 감명을 받았는데, 이것이 이듬해 1월에 파우스트의 서곡으로 쓰여진 이 작품에 조금이라도 영향을 끼쳤으리라는 것은 의심할 여지가 없다. 여기의 라단조 조성의 경우에도 그의 전기에 적혀 있는 것처럼 단순한 정신적 피로나 실의가 반영된 것이 아니라 베토벤의 합창교향곡 조성의 영향을 받은 것을 볼 수 있다. 그렇게 교향곡 작곡을 1839년부터 40년에 걸쳐 파리에서 착수했으나 1악장을 쓴 뒤에 중단했다. 또한 작품의 완성과 동시에 그는 이 서곡(1악장)을 파리 음악원의 연주회에서 연주할 파트보까지 준비하였으나, 실제로는 이루어지지는 않았다. 결국 초연은 4년 반이 지난 후에 드레스덴에서 연주되었고 재연도 이루어졌지만, 이후에 그대로 방치되고 말았다. 그 사이에 그는 리엔치와 방황하는 네덜란드인을 완성하고 탄호이저에도 착수하는 등 분주한 시간을 보냈는데, 그런 바쁜 생활이 이 곡을 잊게 한 것이 아닌가 하는 의견도 있다.',
'id': '6566495-0-0',
'question': '바그너는 괴테의 파우스트를 읽고 무엇을 쓰고자 했는가?',
'title': '파우스트_서곡'}
```
### Data Fields
```
{'id': Value(dtype='string', id=None),
'title': Value(dtype='string', id=None),
'context': Value(dtype='string', id=None),
'question': Value(dtype='string', id=None),
'answers': Sequence(feature={'text': Value(dtype='string', id=None), 'answer_start': Value(dtype='int32', id=None)}, length=-1, id=None)}
```
### Data Splits
- Train: 60407
- Validation: 5774
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
Wikipedia
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[CC BY-ND 2.0 KR](https://creativecommons.org/licenses/by-nd/2.0/kr/deed.en)
### Citation Information
```
@article{lim2019korquad1,
title={Korquad1. 0: Korean qa dataset for machine reading comprehension},
author={Lim, Seungyoung and Kim, Myungji and Lee, Jooyoul},
journal={arXiv preprint arXiv:1909.07005},
year={2019}
```
### Contributions
Thanks to [@cceyda](https://github.com/cceyda) for adding this dataset. | 5,094 | [
[
-0.04742431640625,
-0.04547119140625,
0.0219573974609375,
0.0160369873046875,
-0.020782470703125,
0.0047454833984375,
0.005420684814453125,
-0.015106201171875,
0.034698486328125,
0.036712646484375,
-0.051422119140625,
-0.048675537109375,
-0.033233642578125,
0.019927978515625,
0.00006222724914550781,
0.06500244140625,
-0.013916015625,
-0.0179290771484375,
-0.0274200439453125,
-0.021697998046875,
-0.042236328125,
-0.031005859375,
-0.050384521484375,
-0.023284912109375,
0.011444091796875,
0.045257568359375,
0.0478515625,
0.037384033203125,
0.03216552734375,
0.026336669921875,
0.00007510185241699219,
0.005695343017578125,
-0.033203125,
0.01470184326171875,
0.006717681884765625,
-0.03692626953125,
-0.0271148681640625,
-0.004730224609375,
0.03765869140625,
0.040924072265625,
-0.0018711090087890625,
0.035247802734375,
0.004306793212890625,
0.07623291015625,
-0.0294342041015625,
0.0296478271484375,
-0.004177093505859375,
0.00414276123046875,
-0.0019292831420898438,
-0.015777587890625,
0.01044464111328125,
-0.052459716796875,
0.0025730133056640625,
-0.050537109375,
0.01308441162109375,
0.004138946533203125,
0.08392333984375,
-0.0013933181762695312,
-0.012176513671875,
-0.020233154296875,
-0.029998779296875,
0.057647705078125,
-0.05224609375,
0.0148162841796875,
0.044647216796875,
0.0226287841796875,
-0.0022125244140625,
-0.042083740234375,
-0.060302734375,
0.01378631591796875,
-0.0238037109375,
0.036834716796875,
-0.0016803741455078125,
-0.0303497314453125,
0.027618408203125,
0.0232696533203125,
-0.0458984375,
-0.0124359130859375,
-0.0389404296875,
-0.0130157470703125,
0.0784912109375,
0.0211944580078125,
0.031982421875,
-0.044677734375,
-0.033203125,
-0.0212249755859375,
-0.01467132568359375,
0.041259765625,
0.0308074951171875,
0.00777435302734375,
-0.0298919677734375,
0.051177978515625,
-0.049774169921875,
0.0280914306640625,
0.0141754150390625,
-0.0193328857421875,
0.053466796875,
-0.0491943359375,
-0.0200653076171875,
0.0139923095703125,
0.0794677734375,
0.050323486328125,
0.02105712890625,
0.0108795166015625,
0.0021457672119140625,
-0.0094757080078125,
-0.0100250244140625,
-0.06085205078125,
-0.0151214599609375,
0.0440673828125,
-0.0333251953125,
-0.0254058837890625,
0.0208587646484375,
-0.08367919921875,
-0.01361846923828125,
-0.02362060546875,
0.0187225341796875,
-0.027313232421875,
-0.040985107421875,
0.0036106109619140625,
-0.00904083251953125,
0.02374267578125,
0.01482391357421875,
-0.036163330078125,
0.0209808349609375,
0.01078033447265625,
0.055511474609375,
-0.004138946533203125,
-0.00484466552734375,
0.006900787353515625,
0.0037097930908203125,
-0.0191802978515625,
0.064697265625,
-0.004730224609375,
-0.036773681640625,
-0.0027141571044921875,
0.02423095703125,
-0.026458740234375,
-0.0273284912109375,
0.047943115234375,
-0.022430419921875,
0.01078033447265625,
-0.0313720703125,
-0.036865234375,
-0.0078582763671875,
0.03167724609375,
-0.0567626953125,
0.09967041015625,
0.02294921875,
-0.07623291015625,
0.01183319091796875,
-0.0509033203125,
-0.0197906494140625,
0.00881195068359375,
-0.007289886474609375,
-0.0439453125,
-0.037445068359375,
0.03271484375,
0.045928955078125,
-0.0208282470703125,
0.0001366138458251953,
-0.0140533447265625,
-0.01367950439453125,
0.021697998046875,
0.002597808837890625,
0.09039306640625,
0.0252838134765625,
-0.01043701171875,
-0.00907135009765625,
-0.06256103515625,
0.03875732421875,
0.0302276611328125,
-0.01552581787109375,
-0.008575439453125,
-0.0251007080078125,
-0.0094451904296875,
0.0318603515625,
0.0161590576171875,
-0.030303955078125,
-0.0023365020751953125,
-0.0209197998046875,
0.0258331298828125,
0.048492431640625,
0.0295562744140625,
0.03155517578125,
-0.049072265625,
0.060882568359375,
0.0211181640625,
0.0092315673828125,
-0.01055145263671875,
-0.034393310546875,
-0.048126220703125,
-0.012481689453125,
0.0135650634765625,
0.06292724609375,
-0.06390380859375,
0.047088623046875,
-0.026458740234375,
-0.052581787109375,
-0.0518798828125,
-0.00008857250213623047,
0.026092529296875,
0.055084228515625,
0.0253753662109375,
0.003383636474609375,
-0.0496826171875,
-0.06500244140625,
-0.0057830810546875,
-0.0177459716796875,
0.0081634521484375,
0.0421142578125,
0.058013916015625,
-0.00643157958984375,
0.0775146484375,
-0.059051513671875,
-0.0133819580078125,
-0.0297088623046875,
-0.01079559326171875,
0.035888671875,
0.056854248046875,
0.04425048828125,
-0.0740966796875,
-0.06683349609375,
-0.0037670135498046875,
-0.072265625,
-0.008575439453125,
0.0028896331787109375,
-0.0164642333984375,
0.0242919921875,
0.040618896484375,
-0.04962158203125,
0.037750244140625,
0.0210113525390625,
-0.0394287109375,
0.0655517578125,
-0.006351470947265625,
0.034393310546875,
-0.09625244140625,
0.02203369140625,
-0.002384185791015625,
0.0009541511535644531,
-0.049468994140625,
-0.007610321044921875,
-0.0015840530395507812,
0.0055694580078125,
-0.0257720947265625,
0.049774169921875,
-0.032989501953125,
0.027191162109375,
0.0204620361328125,
0.0248870849609375,
0.0098114013671875,
0.04144287109375,
-0.01302337646484375,
0.0552978515625,
0.03753662109375,
-0.03912353515625,
0.0321044921875,
0.03009033203125,
-0.037261962890625,
0.050537109375,
-0.06268310546875,
-0.0025615692138671875,
-0.0322265625,
0.015899658203125,
-0.09759521484375,
-0.0330810546875,
0.04437255859375,
-0.055389404296875,
0.01082611083984375,
-0.0059967041015625,
-0.0357666015625,
-0.04351806640625,
-0.03948974609375,
0.02362060546875,
0.02813720703125,
-0.006702423095703125,
0.0233917236328125,
0.0301666259765625,
-0.0262908935546875,
-0.033203125,
-0.050048828125,
-0.024566650390625,
-0.013641357421875,
-0.05987548828125,
0.0282440185546875,
-0.0247344970703125,
-0.01024627685546875,
0.00287628173828125,
-0.0030956268310546875,
-0.014068603515625,
-0.0157318115234375,
0.0271453857421875,
0.0248260498046875,
-0.01285552978515625,
0.004314422607421875,
0.0030841827392578125,
-0.0102386474609375,
0.00046825408935546875,
0.011199951171875,
0.047454833984375,
-0.0086822509765625,
-0.01153564453125,
-0.048797607421875,
0.031585693359375,
0.04327392578125,
-0.01209259033203125,
0.0576171875,
0.04400634765625,
-0.015350341796875,
0.0121612548828125,
-0.038330078125,
0.009033203125,
-0.03363037109375,
0.029571533203125,
-0.032745361328125,
-0.055999755859375,
0.06890869140625,
0.0015115737915039062,
-0.018585205078125,
0.06683349609375,
0.0298614501953125,
-0.0178680419921875,
0.07684326171875,
0.010986328125,
-0.0030536651611328125,
0.02410888671875,
-0.05535888671875,
0.0139312744140625,
-0.05908203125,
-0.054534912109375,
-0.044525146484375,
-0.02374267578125,
-0.05718994140625,
-0.023193359375,
0.0256805419921875,
0.0305633544921875,
-0.02459716796875,
0.0184326171875,
-0.04998779296875,
0.02789306640625,
0.028533935546875,
0.03179931640625,
0.00577545166015625,
-0.01305389404296875,
-0.007610321044921875,
0.0033626556396484375,
-0.061187744140625,
-0.0302734375,
0.08453369140625,
0.0160369873046875,
0.025238037109375,
0.0003113746643066406,
0.052459716796875,
0.022674560546875,
-0.0005674362182617188,
-0.040924072265625,
0.045135498046875,
0.0225982666015625,
-0.04925537109375,
-0.043701171875,
-0.0268096923828125,
-0.07037353515625,
0.0119171142578125,
-0.0222015380859375,
-0.0615234375,
0.03216552734375,
-0.003986358642578125,
-0.0306396484375,
0.015960693359375,
-0.062164306640625,
0.07061767578125,
0.006206512451171875,
-0.03790283203125,
0.01641845703125,
-0.05987548828125,
0.0286712646484375,
-0.00022125244140625,
0.0279541015625,
-0.0145111083984375,
0.00679779052734375,
0.06640625,
-0.058685302734375,
0.039276123046875,
-0.023406982421875,
0.004756927490234375,
0.0540771484375,
-0.0200042724609375,
0.043914794921875,
0.0229949951171875,
-0.0133514404296875,
-0.00152587890625,
0.0290374755859375,
-0.043975830078125,
-0.0340576171875,
0.0484619140625,
-0.06427001953125,
-0.030364990234375,
-0.0330810546875,
-0.0328369140625,
-0.0035800933837890625,
0.0248260498046875,
0.033355712890625,
0.0227813720703125,
0.00331878662109375,
0.0204315185546875,
0.04876708984375,
-0.0212249755859375,
0.033355712890625,
0.017364501953125,
-0.01557159423828125,
-0.03936767578125,
0.048492431640625,
0.025665283203125,
0.016876220703125,
0.0111083984375,
0.00766754150390625,
-0.0413818359375,
-0.025299072265625,
-0.0251007080078125,
0.0098114013671875,
-0.0482177734375,
-0.026702880859375,
-0.0494384765625,
-0.0305023193359375,
-0.056793212890625,
-0.00466156005859375,
-0.00720977783203125,
-0.04290771484375,
-0.01116943359375,
-0.01708984375,
0.042266845703125,
0.025299072265625,
-0.007030487060546875,
0.0157928466796875,
-0.04534912109375,
0.0290985107421875,
0.0193328857421875,
0.0293731689453125,
0.00472259521484375,
-0.0322265625,
-0.021270751953125,
0.02178955078125,
-0.0186920166015625,
-0.0745849609375,
0.03106689453125,
-0.0166778564453125,
0.041168212890625,
0.025054931640625,
0.0202178955078125,
0.049468994140625,
-0.006542205810546875,
0.0634765625,
0.0143585205078125,
-0.038818359375,
0.0526123046875,
-0.03704833984375,
0.034637451171875,
0.05633544921875,
0.039154052734375,
-0.0496826171875,
-0.00885009765625,
-0.0518798828125,
-0.068603515625,
0.07000732421875,
0.0236358642578125,
-0.007415771484375,
-0.0005307197570800781,
0.02239990234375,
-0.0154876708984375,
0.01275634765625,
-0.038116455078125,
-0.053070068359375,
-0.0254669189453125,
-0.016876220703125,
0.00439453125,
-0.00506591796875,
-0.004425048828125,
-0.048370361328125,
0.055511474609375,
0.00824737548828125,
0.0297393798828125,
0.050201416015625,
0.0034847259521484375,
0.0018901824951171875,
0.017425537109375,
0.0377197265625,
0.048004150390625,
-0.0194244384765625,
-0.018829345703125,
0.01468658447265625,
-0.0556640625,
0.004001617431640625,
0.01335906982421875,
-0.033416748046875,
0.0004413127899169922,
0.02142333984375,
0.05535888671875,
0.002468109130859375,
-0.046966552734375,
0.035430908203125,
0.007808685302734375,
-0.0350341796875,
-0.0345458984375,
0.004547119140625,
0.005031585693359375,
0.0261993408203125,
0.03240966796875,
-0.0058441162109375,
-0.0058441162109375,
-0.032684326171875,
0.007381439208984375,
0.01358795166015625,
-0.0290985107421875,
-0.0041656494140625,
0.0413818359375,
-0.01849365234375,
-0.0169677734375,
0.032318115234375,
-0.0204925537109375,
-0.0477294921875,
0.0743408203125,
0.0296783447265625,
0.053985595703125,
-0.0225677490234375,
0.036407470703125,
0.07464599609375,
0.008880615234375,
-0.00949859619140625,
0.04400634765625,
0.006816864013671875,
-0.055389404296875,
-0.007259368896484375,
-0.04638671875,
-0.0007047653198242188,
0.023895263671875,
-0.057586669921875,
0.00525665283203125,
-0.0308074951171875,
-0.0169525146484375,
0.003078460693359375,
0.0286712646484375,
-0.061187744140625,
0.0175323486328125,
-0.0268096923828125,
0.0643310546875,
-0.0623779296875,
0.044525146484375,
0.0584716796875,
-0.051605224609375,
-0.06903076171875,
-0.01161956787109375,
-0.0128631591796875,
-0.053070068359375,
0.0430908203125,
0.0012159347534179688,
0.026702880859375,
0.00862884521484375,
-0.052154541015625,
-0.073974609375,
0.11383056640625,
-0.00870513916015625,
-0.02203369140625,
0.0263671875,
0.0350341796875,
0.034271240234375,
-0.0191497802734375,
0.01361846923828125,
0.044708251953125,
0.047821044921875,
0.0123138427734375,
-0.04937744140625,
0.0263214111328125,
-0.04296875,
-0.0088348388671875,
0.01329803466796875,
-0.072509765625,
0.0562744140625,
-0.0117645263671875,
-0.006591796875,
-0.00321197509765625,
0.030303955078125,
0.040924072265625,
0.0372314453125,
0.0333251953125,
0.04718017578125,
0.052154541015625,
-0.015655517578125,
0.07305908203125,
-0.02374267578125,
0.03875732421875,
0.05859375,
0.00323486328125,
0.045166015625,
0.0269317626953125,
-0.04931640625,
0.032470703125,
0.03814697265625,
-0.01763916015625,
0.036712646484375,
0.0084991455078125,
-0.01934814453125,
-0.00693511962890625,
-0.004055023193359375,
-0.033050537109375,
0.01812744140625,
0.0081939697265625,
-0.01861572265625,
-0.0015077590942382812,
-0.0009336471557617188,
0.0160064697265625,
0.00791168212890625,
-0.03363037109375,
0.04931640625,
-0.0134124755859375,
-0.053070068359375,
0.03973388671875,
-0.00904083251953125,
0.0294342041015625,
-0.04315185546875,
0.0004596710205078125,
-0.0238800048828125,
-0.0037441253662109375,
-0.0328369140625,
-0.080078125,
0.0120697021484375,
-0.009246826171875,
-0.04083251953125,
-0.004486083984375,
0.06298828125,
-0.0293731689453125,
-0.058197021484375,
0.0011196136474609375,
0.041107177734375,
0.0158538818359375,
0.00040340423583984375,
-0.06292724609375,
-0.00507354736328125,
0.01213836669921875,
-0.0272216796875,
0.0204925537109375,
0.040252685546875,
-0.0030307769775390625,
0.0494384765625,
0.05169677734375,
0.00034046173095703125,
0.0164031982421875,
-0.01308441162109375,
0.06524658203125,
-0.048858642578125,
-0.043487548828125,
-0.051361083984375,
0.0582275390625,
-0.032867431640625,
-0.032135009765625,
0.061553955078125,
0.063720703125,
0.057708740234375,
-0.002277374267578125,
0.0802001953125,
-0.032073974609375,
0.05914306640625,
-0.0233001708984375,
0.06829833984375,
-0.03302001953125,
-0.0013532638549804688,
-0.0308685302734375,
-0.0374755859375,
-0.004146575927734375,
0.04443359375,
-0.0164642333984375,
0.0156402587890625,
0.03887939453125,
0.059356689453125,
0.0133819580078125,
0.018463134765625,
-0.004169464111328125,
0.02587890625,
-0.0008301734924316406,
0.039306640625,
0.0279388427734375,
-0.06744384765625,
0.05047607421875,
-0.04290771484375,
-0.0127410888671875,
-0.01108551025390625,
-0.04144287109375,
-0.06671142578125,
-0.049102783203125,
-0.033660888671875,
-0.0325927734375,
-0.014068603515625,
0.05560302734375,
0.0293426513671875,
-0.06988525390625,
-0.01454925537109375,
0.0018739700317382812,
0.0230255126953125,
-0.0302734375,
-0.027618408203125,
0.059417724609375,
-0.00914764404296875,
-0.048675537109375,
-0.018035888671875,
-0.011932373046875,
0.007747650146484375,
0.008636474609375,
-0.0207366943359375,
-0.038848876953125,
-0.0041351318359375,
0.0498046875,
0.031005859375,
-0.0272369384765625,
-0.008514404296875,
0.01247406005859375,
-0.0072174072265625,
0.011077880859375,
0.0178985595703125,
-0.051544189453125,
0.0268096923828125,
0.055511474609375,
0.0249176025390625,
0.050537109375,
0.01226806640625,
0.0037136077880859375,
-0.034423828125,
0.0088653564453125,
0.005283355712890625,
0.0118560791015625,
-0.0011043548583984375,
-0.02783203125,
0.05108642578125,
0.028350830078125,
-0.046478271484375,
-0.056640625,
-0.01256561279296875,
-0.0858154296875,
-0.0144195556640625,
0.082275390625,
-0.014617919921875,
-0.02130126953125,
-0.02197265625,
-0.0257415771484375,
0.027587890625,
-0.03656005859375,
0.05010986328125,
0.060699462890625,
-0.0207061767578125,
-0.0162506103515625,
-0.062408447265625,
0.033538818359375,
0.0098724365234375,
-0.06964111328125,
-0.0161590576171875,
0.02056884765625,
0.018585205078125,
0.01305389404296875,
0.07177734375,
-0.01214599609375,
0.01470184326171875,
-0.004802703857421875,
-0.0022830963134765625,
-0.008056640625,
0.01544189453125,
-0.0017852783203125,
0.00960540771484375,
-0.04632568359375,
-0.0256500244140625
]
] |
open_subtitles | 2023-06-01T14:59:58.000Z | [
"task_categories:translation",
"annotations_creators:found",
"language_creators:found",
"multilinguality:multilingual",
"size_categories:10K<n<100K",
"size_categories:1M<n<10M",
"size_categories:n<1K",
"source_datasets:original",
"language:af",
"language:ar",
"language:bg",
"language:bn",
"language:br",
"language:bs",
"language:ca",
"language:cs",
"language:da",
"language:de",
"language:el",
"language:en",
"language:eo",
"language:es",
"language:et",
"language:eu",
"language:fa",
"language:fi",
"language:fr",
"language:gl",
"language:he",
"language:hi",
"language:hr",
"language:hu",
"language:hy",
"language:id",
"language:is",
"language:it",
"language:ja",
"language:ka",
"language:kk",
"language:ko",
"language:lt",
"language:lv",
"language:mk",
"language:ml",
"language:ms",
"language:nl",
"language:no",
"language:pl",
"language:pt",
"language:ro",
"language:ru",
"language:si",
"language:sk",
"language:sl",
"language:sq",
"language:sr",
"language:sv",
"language:ta",
"language:te",
"language:th",
"language:tl",
"language:tr",
"language:uk",
"language:ur",
"language:vi",
"language:zh",
"license:unknown",
"region:us"
] | null | This is a new collection of translated movie subtitles from http://www.opensubtitles.org/.
IMPORTANT: If you use the OpenSubtitle corpus: Please, add a link to http://www.opensubtitles.org/ to your website and to your reports and publications produced with the data!
This is a slightly cleaner version of the subtitle collection using improved sentence alignment and better language checking.
62 languages, 1,782 bitexts
total number of files: 3,735,070
total number of tokens: 22.10G
total number of sentence fragments: 3.35G | P. Lison and J. Tiedemann, 2016, OpenSubtitles2016: Extracting Large Parallel Corpora from Movie and TV Subtitles. In Proceedings of the 10th International Conference on Language Resources and Evaluation (LREC 2016) | 33 | 1,018 | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- found
language:
- af
- ar
- bg
- bn
- br
- bs
- ca
- cs
- da
- de
- el
- en
- eo
- es
- et
- eu
- fa
- fi
- fr
- gl
- he
- hi
- hr
- hu
- hy
- id
- is
- it
- ja
- ka
- kk
- ko
- lt
- lv
- mk
- ml
- ms
- nl
- 'no'
- pl
- pt
- ro
- ru
- si
- sk
- sl
- sq
- sr
- sv
- ta
- te
- th
- tl
- tr
- uk
- ur
- vi
- zh
language_bcp47:
- pt-BR
- ze-EN
- ze-ZH
- zh-CN
- zh-TW
license:
- unknown
multilinguality:
- multilingual
size_categories:
- 10K<n<100K
- 1M<n<10M
- n<1K
source_datasets:
- original
task_categories:
- translation
task_ids: []
paperswithcode_id: opensubtitles
pretty_name: OpenSubtitles
dataset_info:
- config_name: bs-eo
features:
- name: id
dtype: string
- name: meta
struct:
- name: year
dtype: uint32
- name: imdbId
dtype: uint32
- name: subtitleId
struct:
- name: bs
dtype: uint32
- name: eo
dtype: uint32
- name: sentenceIds
struct:
- name: bs
sequence: uint32
- name: eo
sequence: uint32
- name: translation
dtype:
translation:
languages:
- bs
- eo
splits:
- name: train
num_bytes: 1204266
num_examples: 10989
download_size: 333050
dataset_size: 1204266
- config_name: fr-hy
features:
- name: id
dtype: string
- name: meta
struct:
- name: year
dtype: uint32
- name: imdbId
dtype: uint32
- name: subtitleId
struct:
- name: fr
dtype: uint32
- name: hy
dtype: uint32
- name: sentenceIds
struct:
- name: fr
sequence: uint32
- name: hy
sequence: uint32
- name: translation
dtype:
translation:
languages:
- fr
- hy
splits:
- name: train
num_bytes: 132450
num_examples: 668
download_size: 41861
dataset_size: 132450
- config_name: da-ru
features:
- name: id
dtype: string
- name: meta
struct:
- name: year
dtype: uint32
- name: imdbId
dtype: uint32
- name: subtitleId
struct:
- name: da
dtype: uint32
- name: ru
dtype: uint32
- name: sentenceIds
struct:
- name: da
sequence: uint32
- name: ru
sequence: uint32
- name: translation
dtype:
translation:
languages:
- da
- ru
splits:
- name: train
num_bytes: 1082649105
num_examples: 7543012
download_size: 267995167
dataset_size: 1082649105
- config_name: en-hi
features:
- name: id
dtype: string
- name: meta
struct:
- name: year
dtype: uint32
- name: imdbId
dtype: uint32
- name: subtitleId
struct:
- name: en
dtype: uint32
- name: hi
dtype: uint32
- name: sentenceIds
struct:
- name: en
sequence: uint32
- name: hi
sequence: uint32
- name: translation
dtype:
translation:
languages:
- en
- hi
splits:
- name: train
num_bytes: 13845544
num_examples: 93016
download_size: 2967295
dataset_size: 13845544
- config_name: bn-is
features:
- name: id
dtype: string
- name: meta
struct:
- name: year
dtype: uint32
- name: imdbId
dtype: uint32
- name: subtitleId
struct:
- name: bn
dtype: uint32
- name: is
dtype: uint32
- name: sentenceIds
struct:
- name: bn
sequence: uint32
- name: is
sequence: uint32
- name: translation
dtype:
translation:
languages:
- bn
- is
splits:
- name: train
num_bytes: 6371251
num_examples: 38272
download_size: 1411625
dataset_size: 6371251
config_names:
- bn-is
- bs-eo
- da-ru
- en-hi
- fr-hy
---
# Dataset Card for OpenSubtitles
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** http://opus.nlpl.eu/OpenSubtitles.php
- **Repository:** None
- **Paper:** http://www.lrec-conf.org/proceedings/lrec2016/pdf/62_Paper.pdf
- **Leaderboard:** [More Information Needed]
- **Point of Contact:** [More Information Needed]
### Dataset Summary
To load a language pair which isn't part of the config, all you need to do is specify the language code as pairs.
You can find the valid pairs in Homepage section of Dataset Description: http://opus.nlpl.eu/OpenSubtitles.php
E.g.
`dataset = load_dataset("open_subtitles", lang1="fi", lang2="hi")`
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
The languages in the dataset are:
- af
- ar
- bg
- bn
- br
- bs
- ca
- cs
- da
- de
- el
- en
- eo
- es
- et
- eu
- fa
- fi
- fr
- gl
- he
- hi
- hr
- hu
- hy
- id
- is
- it
- ja
- ka
- kk
- ko
- lt
- lv
- mk
- ml
- ms
- nl
- no
- pl
- pt
- pt_br: Portuguese (Brazil) (pt-BR)
- ro
- ru
- si
- sk
- sl
- sq
- sr
- sv
- ta
- te
- th
- tl
- tr
- uk
- ur
- vi
- ze_en: English constituent of Bilingual Chinese-English (subtitles displaying two languages at once, one per line)
- ze_zh: Chinese constituent of Bilingual Chinese-English (subtitles displaying two languages at once, one per line)
- zh_cn: Simplified Chinese (zh-CN, `zh-Hans`)
- zh_tw: Traditional Chinese (zh-TW, `zh-Hant`)
## Dataset Structure
### Data Instances
Here are some examples of questions and facts:
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
[More Information Needed]
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
[More Information Needed]
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Contributions
Thanks to [@abhishekkrthakur](https://github.com/abhishekkrthakur) for adding this dataset. | 7,448 | [
[
-0.037689208984375,
-0.030853271484375,
-0.00499725341796875,
0.0225830078125,
-0.0307159423828125,
0.00548553466796875,
-0.041351318359375,
-0.00881195068359375,
0.0274810791015625,
0.045135498046875,
-0.047576904296875,
-0.06683349609375,
-0.03985595703125,
0.01812744140625,
-0.006305694580078125,
0.09613037109375,
-0.016998291015625,
0.0158843994140625,
-0.0022678375244140625,
-0.031402587890625,
-0.0180206298828125,
-0.0159912109375,
-0.01013946533203125,
-0.00849151611328125,
0.024139404296875,
0.06536865234375,
0.056976318359375,
0.06292724609375,
0.050048828125,
0.014068603515625,
0.0157928466796875,
0.016082763671875,
-0.0347900390625,
-0.0095977783203125,
-0.00574493408203125,
-0.015838623046875,
-0.028045654296875,
-0.00913238525390625,
0.068115234375,
0.048095703125,
-0.00075531005859375,
0.042083740234375,
0.009552001953125,
0.061553955078125,
-0.0207366943359375,
0.04449462890625,
-0.01287841796875,
0.0128173828125,
-0.041473388671875,
-0.0101165771484375,
-0.0181121826171875,
-0.041107177734375,
-0.017913818359375,
-0.042633056640625,
0.0023937225341796875,
0.0009889602661132812,
0.08612060546875,
0.006465911865234375,
-0.013824462890625,
-0.007625579833984375,
-0.038604736328125,
0.0487060546875,
-0.058258056640625,
0.0283203125,
0.048553466796875,
0.016845703125,
0.0166778564453125,
-0.04180908203125,
-0.035491943359375,
0.007476806640625,
-0.027496337890625,
0.018768310546875,
-0.005138397216796875,
-0.0109710693359375,
0.037322998046875,
0.047454833984375,
-0.058807373046875,
0.004337310791015625,
-0.06488037109375,
-0.019561767578125,
0.06353759765625,
0.014678955078125,
0.034942626953125,
-0.03515625,
-0.0159454345703125,
-0.01528167724609375,
-0.0299835205078125,
0.01497650146484375,
0.04925537109375,
0.03973388671875,
-0.057861328125,
0.07025146484375,
-0.026824951171875,
0.035980224609375,
-0.0108795166015625,
-0.01367950439453125,
0.046356201171875,
-0.04571533203125,
-0.0015850067138671875,
0.0052337646484375,
0.0703125,
0.048614501953125,
0.0186920166015625,
0.00286102294921875,
0.006103515625,
0.0003981590270996094,
-0.023712158203125,
-0.04498291015625,
-0.0284881591796875,
0.03131103515625,
-0.035430908203125,
-0.0006160736083984375,
0.0285491943359375,
-0.069580078125,
-0.01308441162109375,
-0.0265960693359375,
0.0164794921875,
-0.0247955322265625,
-0.0274200439453125,
-0.002201080322265625,
-0.0079345703125,
0.03656005859375,
0.002689361572265625,
-0.0537109375,
0.0299835205078125,
0.0178680419921875,
0.057586669921875,
-0.0224456787109375,
-0.0234527587890625,
-0.03228759765625,
0.01372528076171875,
0.004505157470703125,
0.043548583984375,
-0.009063720703125,
-0.0208282470703125,
0.016754150390625,
0.029876708984375,
0.001895904541015625,
-0.010162353515625,
0.060333251953125,
-0.01242828369140625,
0.0307464599609375,
-0.035003662109375,
-0.0216217041015625,
-0.00579071044921875,
0.00914764404296875,
-0.069580078125,
0.09063720703125,
0.00441741943359375,
-0.08001708984375,
0.0171966552734375,
-0.06756591796875,
-0.042633056640625,
0.0143890380859375,
-0.0247802734375,
-0.03216552734375,
-0.034698486328125,
0.027923583984375,
0.0258636474609375,
-0.02392578125,
0.0266265869140625,
-0.002471923828125,
-0.0148773193359375,
0.0013580322265625,
-0.02008056640625,
0.08685302734375,
0.02685546875,
-0.0175628662109375,
0.004856109619140625,
-0.054901123046875,
-0.00817108154296875,
0.0269622802734375,
-0.025054931640625,
-0.00702667236328125,
-0.0000069141387939453125,
0.02630615234375,
0.00037932395935058594,
0.0226287841796875,
-0.03424072265625,
0.01409149169921875,
-0.02130126953125,
0.02252197265625,
0.045166015625,
0.00302886962890625,
0.031585693359375,
-0.01169586181640625,
0.041229248046875,
0.0179443359375,
0.017852783203125,
-0.0163726806640625,
-0.049530029296875,
-0.0606689453125,
-0.0092926025390625,
0.0246429443359375,
0.05908203125,
-0.07061767578125,
0.038482666015625,
-0.035003662109375,
-0.045074462890625,
-0.04608154296875,
0.0162353515625,
0.03265380859375,
0.0134124755859375,
0.024810791015625,
-0.0341796875,
-0.0513916015625,
-0.081298828125,
-0.0005674362182617188,
-0.00011044740676879883,
0.0173187255859375,
0.03167724609375,
0.04547119140625,
0.0137481689453125,
0.06561279296875,
-0.0555419921875,
-0.0285491943359375,
-0.042205810546875,
-0.01384735107421875,
0.0316162109375,
0.03887939453125,
0.037353515625,
-0.0706787109375,
-0.05426025390625,
-0.0017461776733398438,
-0.0628662109375,
-0.0135650634765625,
0.01273345947265625,
-0.00678253173828125,
0.0146331787109375,
0.023590087890625,
-0.004100799560546875,
0.032379150390625,
0.0584716796875,
-0.021148681640625,
0.031707763671875,
-0.00785064697265625,
0.0240325927734375,
-0.0926513671875,
0.006465911865234375,
0.00524139404296875,
0.01535797119140625,
-0.036224365234375,
-0.0163421630859375,
-0.0025653839111328125,
-0.005268096923828125,
-0.037841796875,
0.04376220703125,
-0.02508544921875,
-0.00479888916015625,
0.0252532958984375,
0.02471923828125,
-0.00246429443359375,
0.055908203125,
0.005924224853515625,
0.053314208984375,
0.047271728515625,
-0.03326416015625,
0.0361328125,
0.036956787109375,
-0.053619384765625,
0.028350830078125,
-0.05517578125,
-0.013031005859375,
-0.022491455078125,
0.003353118896484375,
-0.087890625,
-0.041656494140625,
0.044036865234375,
-0.04571533203125,
0.00788116455078125,
-0.016571044921875,
-0.050323486328125,
-0.02227783203125,
-0.0269317626953125,
0.028076171875,
0.0226287841796875,
-0.0163421630859375,
0.018157958984375,
0.045135498046875,
-0.023284912109375,
-0.039306640625,
-0.06976318359375,
-0.00412750244140625,
-0.006526947021484375,
-0.047271728515625,
0.025726318359375,
-0.0223388671875,
-0.0080413818359375,
0.0180511474609375,
0.0213470458984375,
-0.00890350341796875,
-0.01312255859375,
0.01204681396484375,
0.01282501220703125,
-0.0248565673828125,
-0.014862060546875,
0.0128631591796875,
-0.0068206787109375,
-0.0245208740234375,
0.0062255859375,
0.03631591796875,
-0.00792694091796875,
-0.0186309814453125,
-0.0279998779296875,
0.034698486328125,
0.018524169921875,
-0.046966552734375,
0.047515869140625,
0.07373046875,
-0.02728271484375,
0.0038166046142578125,
-0.024444580078125,
-0.0038318634033203125,
-0.02862548828125,
0.0291900634765625,
-0.01255035400390625,
-0.051025390625,
0.05975341796875,
0.036102294921875,
0.0183563232421875,
0.040252685546875,
0.0450439453125,
0.00922393798828125,
0.058258056640625,
0.0266876220703125,
-0.0066375732421875,
0.037384033203125,
-0.039581298828125,
0.004608154296875,
-0.04718017578125,
-0.0291900634765625,
-0.047576904296875,
-0.0189666748046875,
-0.058380126953125,
-0.02447509765625,
0.021759033203125,
-0.0004820823669433594,
-0.0089263916015625,
0.053741455078125,
-0.019195556640625,
0.04449462890625,
0.0640869140625,
0.006237030029296875,
0.0212860107421875,
0.01335906982421875,
-0.005840301513671875,
-0.02191162109375,
-0.050933837890625,
-0.03717041015625,
0.07135009765625,
0.0297088623046875,
0.039764404296875,
0.0309906005859375,
0.037109375,
0.03546142578125,
0.005359649658203125,
-0.037506103515625,
0.04443359375,
-0.0325927734375,
-0.058990478515625,
-0.031982421875,
-0.0236663818359375,
-0.053680419921875,
-0.006168365478515625,
-0.0121307373046875,
-0.0484619140625,
0.014678955078125,
0.0012722015380859375,
-0.0113677978515625,
0.0220489501953125,
-0.047637939453125,
0.07598876953125,
-0.0200653076171875,
-0.0299835205078125,
0.00716400146484375,
-0.07379150390625,
0.0197906494140625,
0.017303466796875,
0.0380859375,
-0.0040740966796875,
0.00978851318359375,
0.08099365234375,
-0.01099395751953125,
0.07098388671875,
-0.006195068359375,
0.006633758544921875,
0.029541015625,
-0.01593017578125,
0.016845703125,
0.004161834716796875,
-0.0019521713256835938,
0.032562255859375,
-0.00574493408203125,
-0.02606201171875,
-0.0290069580078125,
0.0423583984375,
-0.05926513671875,
-0.0174407958984375,
-0.03778076171875,
-0.033538818359375,
0.00406646728515625,
0.03302001953125,
0.0193023681640625,
0.03948974609375,
-0.005535125732421875,
0.04302978515625,
0.03961181640625,
-0.034759521484375,
0.016754150390625,
0.0394287109375,
-0.01168060302734375,
-0.0765380859375,
0.059478759765625,
0.028411865234375,
0.0191802978515625,
0.027618408203125,
0.0098876953125,
-0.02166748046875,
-0.033477783203125,
-0.049713134765625,
0.03118896484375,
-0.051727294921875,
-0.00991058349609375,
-0.0293121337890625,
-0.0225982666015625,
-0.05194091796875,
0.009033203125,
-0.0068817138671875,
-0.029296875,
-0.0017957687377929688,
-0.036163330078125,
0.041107177734375,
0.0309295654296875,
-0.029296875,
0.0202178955078125,
-0.06451416015625,
0.0377197265625,
-0.00731658935546875,
0.04302978515625,
-0.0238189697265625,
-0.042633056640625,
-0.0592041015625,
0.0095977783203125,
-0.029144287109375,
-0.0628662109375,
0.0228271484375,
0.0114898681640625,
0.06085205078125,
0.0264739990234375,
0.0228118896484375,
0.027130126953125,
-0.0310821533203125,
0.09521484375,
0.005584716796875,
-0.04656982421875,
0.047515869140625,
-0.034881591796875,
0.01399993896484375,
0.04901123046875,
0.046600341796875,
-0.045074462890625,
-0.007625579833984375,
-0.033660888671875,
-0.0667724609375,
0.08831787109375,
0.037261962890625,
0.00328826904296875,
-0.0008254051208496094,
-0.007480621337890625,
0.00626373291015625,
0.0097198486328125,
-0.07623291015625,
-0.065185546875,
-0.016571044921875,
-0.0254669189453125,
-0.0216522216796875,
-0.00820159912109375,
-0.01226043701171875,
-0.03704833984375,
0.057586669921875,
0.00579071044921875,
-0.0016269683837890625,
0.01593017578125,
0.0018167495727539062,
-0.01824951171875,
0.01229095458984375,
0.045196533203125,
0.023956298828125,
-0.0283660888671875,
-0.01262664794921875,
-0.00397491455078125,
-0.040130615234375,
-0.02325439453125,
0.01372528076171875,
-0.0225830078125,
0.009429931640625,
0.027801513671875,
0.07464599609375,
0.01105499267578125,
-0.048614501953125,
0.037445068359375,
0.01027679443359375,
-0.0226287841796875,
-0.032684326171875,
-0.01739501953125,
-0.0064697265625,
0.016082763671875,
0.00992584228515625,
-0.01470947265625,
0.0027675628662109375,
-0.04742431640625,
0.0192718505859375,
-0.007732391357421875,
-0.030548095703125,
-0.01971435546875,
0.040863037109375,
0.0200958251953125,
-0.033355712890625,
0.0404052734375,
-0.008941650390625,
-0.037506103515625,
0.048431396484375,
0.0216217041015625,
0.058258056640625,
-0.01163482666015625,
0.030364990234375,
0.060882568359375,
0.0404052734375,
-0.0012979507446289062,
0.036956787109375,
-0.007781982421875,
-0.060302734375,
-0.0133056640625,
-0.037811279296875,
-0.031158447265625,
0.01605224609375,
-0.0753173828125,
0.041351318359375,
-0.0137786865234375,
-0.005207061767578125,
-0.0066680908203125,
0.003253936767578125,
-0.049560546875,
0.0083465576171875,
0.01023101806640625,
0.062744140625,
-0.09124755859375,
0.06268310546875,
0.0526123046875,
-0.0792236328125,
-0.05670166015625,
-0.0262603759765625,
-0.007099151611328125,
-0.04193115234375,
0.039031982421875,
-0.0033893585205078125,
0.02777099609375,
-0.00769805908203125,
-0.043731689453125,
-0.05450439453125,
0.08319091796875,
0.007785797119140625,
-0.011993408203125,
0.0035343170166015625,
0.0423583984375,
0.03155517578125,
-0.0268096923828125,
0.003139495849609375,
0.03857421875,
0.055908203125,
-0.004154205322265625,
-0.0660400390625,
-0.006710052490234375,
-0.043121337890625,
-0.0257720947265625,
0.01617431640625,
-0.05279541015625,
0.054718017578125,
-0.0171966552734375,
-0.015228271484375,
-0.003326416015625,
0.047027587890625,
0.017578125,
0.036102294921875,
0.0279083251953125,
0.027801513671875,
0.01690673828125,
-0.0240478515625,
0.058013916015625,
-0.0287322998046875,
0.0309600830078125,
0.087158203125,
0.002288818359375,
0.058319091796875,
0.035614013671875,
-0.030181884765625,
0.032928466796875,
0.040252685546875,
-0.0218963623046875,
0.0362548828125,
-0.0006542205810546875,
0.0202484130859375,
-0.0121307373046875,
-0.0296173095703125,
-0.03790283203125,
0.0291595458984375,
0.034027099609375,
-0.037200927734375,
-0.006267547607421875,
-0.0015087127685546875,
0.00521087646484375,
0.0225677490234375,
-0.0070343017578125,
0.0506591796875,
-0.0070343017578125,
-0.048492431640625,
0.0204010009765625,
0.0024166107177734375,
0.035614013671875,
-0.0660400390625,
-0.00760650634765625,
-0.0230865478515625,
0.0021038055419921875,
-0.035858154296875,
-0.0877685546875,
0.0147705078125,
0.01114654541015625,
-0.022216796875,
-0.01424407958984375,
0.0124053955078125,
-0.0638427734375,
-0.044036865234375,
0.00902557373046875,
0.01995849609375,
0.0232696533203125,
0.03192138671875,
-0.055328369140625,
0.0247344970703125,
0.0293426513671875,
-0.00930023193359375,
0.0017147064208984375,
0.0267486572265625,
-0.0010929107666015625,
0.019866943359375,
0.0394287109375,
0.0141754150390625,
0.00238800048828125,
0.027435302734375,
0.054229736328125,
-0.043609619140625,
-0.0306396484375,
-0.035614013671875,
0.06781005859375,
-0.0181732177734375,
-0.027313232421875,
0.07623291015625,
0.06988525390625,
0.08953857421875,
-0.0246124267578125,
0.07012939453125,
-0.0279693603515625,
0.040924072265625,
-0.04522705078125,
0.049346923828125,
-0.054473876953125,
0.01219940185546875,
-0.03887939453125,
-0.064208984375,
-0.037078857421875,
0.03131103515625,
-0.0266571044921875,
-0.010650634765625,
0.03778076171875,
0.063720703125,
-0.00963592529296875,
0.00577545166015625,
0.00815582275390625,
0.026824951171875,
0.01641845703125,
0.0267486572265625,
0.03363037109375,
-0.060760498046875,
0.056243896484375,
-0.05035400390625,
-0.017425537109375,
-0.00970458984375,
-0.06231689453125,
-0.058868408203125,
-0.06805419921875,
-0.042388916015625,
-0.033660888671875,
-0.005615234375,
0.08026123046875,
0.0228118896484375,
-0.08087158203125,
-0.0455322265625,
0.029296875,
0.01036834716796875,
-0.01300811767578125,
-0.0201873779296875,
0.04608154296875,
0.0206298828125,
-0.06451416015625,
-0.0034008026123046875,
0.005096435546875,
-0.00737762451171875,
-0.0219268798828125,
-0.027069091796875,
-0.030426025390625,
-0.00927734375,
0.034271240234375,
0.036651611328125,
-0.0537109375,
-0.007335662841796875,
0.006847381591796875,
0.00029778480529785156,
0.006195068359375,
0.031402587890625,
-0.01003265380859375,
0.0341796875,
0.05816650390625,
0.0151519775390625,
0.0231170654296875,
0.0014810562133789062,
0.0279998779296875,
-0.044097900390625,
0.0166778564453125,
-0.00004845857620239258,
0.040313720703125,
0.028045654296875,
-0.0170745849609375,
0.05450439453125,
0.0217742919921875,
-0.0300140380859375,
-0.0714111328125,
0.01036834716796875,
-0.10345458984375,
0.0106201171875,
0.1031494140625,
-0.010589599609375,
-0.004245758056640625,
-0.01873779296875,
-0.036163330078125,
0.0230865478515625,
-0.042022705078125,
0.015869140625,
0.0587158203125,
0.018524169921875,
-0.00800323486328125,
-0.03131103515625,
0.029571533203125,
-0.004085540771484375,
-0.045989990234375,
0.00432586669921875,
0.01995849609375,
0.0113372802734375,
0.016693115234375,
0.042236328125,
-0.028656005859375,
0.01131439208984375,
-0.01114654541015625,
0.0136871337890625,
-0.01529693603515625,
-0.0185546875,
-0.005947113037109375,
-0.00885772705078125,
-0.01161956787109375,
-0.0224609375
]
] |
dane | 2023-01-25T14:29:05.000Z | [
"task_categories:token-classification",
"task_ids:named-entity-recognition",
"task_ids:part-of-speech",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:extended|other-Danish-Universal-Dependencies-treebank",
"language:da",
"license:cc-by-sa-4.0",
"region:us"
] | null | The DaNE dataset has been annotated with Named Entities for PER, ORG and LOC
by the Alexandra Institute.
It is a reannotation of the UD-DDT (Universal Dependency - Danish Dependency Treebank)
which has annotations for dependency parsing and part-of-speech (POS) tagging.
The Danish UD treebank (Johannsen et al., 2015, UD-DDT) is a conversion of
the Danish Dependency Treebank (Buch-Kromann et al. 2003) based on texts
from Parole (Britt, 1998). | @inproceedings{hvingelby-etal-2020-dane,
title = "{D}a{NE}: A Named Entity Resource for {D}anish",
author = "Hvingelby, Rasmus and
Pauli, Amalie Brogaard and
Barrett, Maria and
Rosted, Christina and
Lidegaard, Lasse Malm and
Søgaard, Anders",
booktitle = "Proceedings of the 12th Language Resources and Evaluation Conference",
month = may,
year = "2020",
address = "Marseille, France",
publisher = "European Language Resources Association",
url = "https://www.aclweb.org/anthology/2020.lrec-1.565",
pages = "4597--4604",
abstract = "We present a named entity annotation for the Danish Universal Dependencies treebank using the CoNLL-2003 annotation scheme: DaNE. It is the largest publicly available, Danish named entity gold annotation. We evaluate the quality of our annotations intrinsically by double annotating the entire treebank and extrinsically by comparing our annotations to a recently released named entity annotation of the validation and test sections of the Danish Universal Dependencies treebank. We benchmark the new resource by training and evaluating competitive architectures for supervised named entity recognition (NER), including FLAIR, monolingual (Danish) BERT and multilingual BERT. We explore cross-lingual transfer in multilingual BERT from five related languages in zero-shot and direct transfer setups, and we show that even with our modestly-sized training set, we improve Danish NER over a recent cross-lingual approach, as well as over zero-shot transfer from five related languages. Using multilingual BERT, we achieve higher performance by fine-tuning on both DaNE and a larger Bokm{\aa}l (Norwegian) training set compared to only using DaNE. However, the highest performance isachieved by using a Danish BERT fine-tuned on DaNE. Our dataset enables improvements and applicability for Danish NER beyond cross-lingual methods. We employ a thorough error analysis of the predictions of the best models for seen and unseen entities, as well as their robustness on un-capitalized text. The annotated dataset and all the trained models are made publicly available.",
language = "English",
ISBN = "979-10-95546-34-4",
} | 3 | 1,017 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- found
language:
- da
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- extended|other-Danish-Universal-Dependencies-treebank
task_categories:
- token-classification
task_ids:
- named-entity-recognition
- part-of-speech
paperswithcode_id: dane
pretty_name: DaNE
dataset_info:
features:
- name: sent_id
dtype: string
- name: text
dtype: string
- name: tok_ids
sequence: int64
- name: tokens
sequence: string
- name: lemmas
sequence: string
- name: pos_tags
sequence:
class_label:
names:
'0': NUM
'1': CCONJ
'2': PRON
'3': VERB
'4': INTJ
'5': AUX
'6': ADJ
'7': PROPN
'8': PART
'9': ADV
'10': PUNCT
'11': ADP
'12': NOUN
'13': X
'14': DET
'15': SYM
'16': SCONJ
- name: morph_tags
sequence: string
- name: dep_ids
sequence: int64
- name: dep_labels
sequence:
class_label:
names:
'0': parataxis
'1': mark
'2': nummod
'3': discourse
'4': compound:prt
'5': reparandum
'6': vocative
'7': list
'8': obj
'9': dep
'10': det
'11': obl:loc
'12': flat
'13': iobj
'14': cop
'15': expl
'16': obl
'17': conj
'18': nmod
'19': root
'20': acl:relcl
'21': goeswith
'22': appos
'23': fixed
'24': obl:tmod
'25': xcomp
'26': advmod
'27': nmod:poss
'28': aux
'29': ccomp
'30': amod
'31': cc
'32': advcl
'33': nsubj
'34': punct
'35': case
- name: ner_tags
sequence:
class_label:
names:
'0': O
'1': B-PER
'2': I-PER
'3': B-ORG
'4': I-ORG
'5': B-LOC
'6': I-LOC
'7': B-MISC
'8': I-MISC
splits:
- name: train
num_bytes: 7311212
num_examples: 4383
- name: test
num_bytes: 909699
num_examples: 565
- name: validation
num_bytes: 940413
num_examples: 564
download_size: 1209710
dataset_size: 9161324
---
# Dataset Card for DaNE
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [DaNE homepage](https://danlp-alexandra.readthedocs.io/en/latest/docs/datasets.html#dane)
- **Repository:** [Github](https://github.com/alexandrainst/danlp)
- **Paper:** [Aclweb](https://www.aclweb.org/anthology/2020.lrec-1.565)
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
The Danish Dependency Treebank (DaNE) is a named entity annotation for the Danish Universal Dependencies treebank using the CoNLL-2003 annotation scheme.
The Danish UD treebank (Johannsen et al., 2015, UD-DDT) is a conversion of the Danish Dependency Treebank (Buch-Kromann et al. 2003) based on texts from Parole (Britt, 1998). UD-DDT has annotations for dependency parsing and part-of-speech (POS) tagging. The dataset was annotated with Named Entities for PER, ORG, and LOC by the Alexandra Institute in the DaNE dataset (Hvingelby et al. 2020).
### Supported Tasks and Leaderboards
Parts-of-speech tagging, dependency parsing and named entitity recognition.
### Languages
Danish
## Dataset Structure
### Data Instances
This is an example in the "train" split:
```python
{
'sent_id': 'train-v2-0\n',
'lemmas': ['på', 'fredag', 'have', 'SiD', 'invitere', 'til', 'reception', 'i', 'SID-hus', 'i', 'anledning', 'af', 'at', 'formand', 'Kjeld', 'Christensen', 'gå', 'ind', 'i', 'den', 'glad', 'tresser', '.'],
'dep_labels': [35, 16, 28, 33, 19, 35, 16, 35, 18, 35, 18, 1, 1, 33, 22, 12, 32, 11, 35, 10, 30, 16, 34],
'ner_tags': [0, 0, 0, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0],
'morph_tags': ['AdpType=Prep', 'Definite=Ind|Gender=Com|Number=Sing', 'Mood=Ind|Tense=Pres|VerbForm=Fin|Voice=Act', '_', 'Definite=Ind|Number=Sing|Tense=Past|VerbForm=Part', 'AdpType=Prep', 'Definite=Ind|Gender=Com|Number=Sing', 'AdpType=Prep', 'Definite=Def|Gender=Neut|Number=Sing', 'AdpType=Prep', 'Definite=Ind|Gender=Com|Number=Sing', 'AdpType=Prep', '_', 'Definite=Def|Gender=Com|Number=Sing', '_', '_', 'Mood=Ind|Tense=Pres|VerbForm=Fin|Voice=Act', '_', 'AdpType=Prep', 'Number=Plur|PronType=Dem', 'Degree=Pos|Number=Plur', 'Definite=Ind|Gender=Com|Number=Plur', '_'],
'dep_ids': [2, 5, 5, 5, 0, 7, 5, 9, 7, 11, 7, 17, 17, 17, 14, 15, 11, 17, 22, 22, 22, 18, 5],
'pos_tags': [11, 12, 5, 7, 3, 11, 12, 11, 12, 11, 12, 11, 16, 12, 7, 7, 3, 9, 11, 14, 6, 12, 10],
'text': 'På fredag har SID inviteret til reception i SID-huset i anledning af at formanden Kjeld Christensen går ind i de glade tressere.\n',
'tokens': ['På', 'fredag', 'har', 'SID', 'inviteret', 'til', 'reception', 'i', 'SID-huset', 'i', 'anledning', 'af', 'at', 'formanden', 'Kjeld', 'Christensen', 'går', 'ind', 'i', 'de', 'glade', 'tressere', '.'],
'tok_ids': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
}
```
### Data Fields
Data Fields:
- q_id: a string question identifier for each example, corresponding to its ID in the Pushshift.io Reddit submission dumps.
- subreddit: One of explainlikeimfive, askscience, or AskHistorians, indicating which subreddit the question came from
- title: title of the question, with URLs extracted and replaced by URL_n tokens
- title_urls: list of the extracted URLs, the nth element of the list was replaced by URL_n
- sent_id: a string identifier for each example
- text: a string, the original sentence (not tokenized)
- tok_ids: a list of ids (int), one for each token
- tokens: a list of strings, the tokens
- lemmas: a list of strings, the lemmas of the tokens
- pos_tags: a list of strings, the part-of-speech tags of the tokens
- morph_tags: a list of strings, the morphological tags of the tokens
- dep_ids: a list of ids (int), the id of the head of the incoming dependency for each token
- dep_labels: a list of strings, the dependency labels
- ner_tags: a list of strings, the named entity tags (BIO format)
### Data Splits
| | train | validation | test |
|-------------|-------:|-----------:|-------:|
| # sentences | 4383 | 564 | 565 |
| # tokens | 80 378 | 10 322 | 10 023 |
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Citation Information
```
@inproceedings{hvingelby-etal-2020-dane,
title = "{D}a{NE}: A Named Entity Resource for {D}anish",
author = "Hvingelby, Rasmus and
Pauli, Amalie Brogaard and
Barrett, Maria and
Rosted, Christina and
Lidegaard, Lasse Malm and
S{\o}gaard, Anders",
booktitle = "Proceedings of the 12th Language Resources and Evaluation Conference",
month = may,
year = "2020",
address = "Marseille, France",
publisher = "European Language Resources Association",
url = "https://aclanthology.org/2020.lrec-1.565",
pages = "4597--4604",
abstract = "We present a named entity annotation for the Danish Universal Dependencies treebank using the CoNLL-2003 annotation scheme: DaNE. It is the largest publicly available, Danish named entity gold annotation. We evaluate the quality of our annotations intrinsically by double annotating the entire treebank and extrinsically by comparing our annotations to a recently released named entity annotation of the validation and test sections of the Danish Universal Dependencies treebank. We benchmark the new resource by training and evaluating competitive architectures for supervised named entity recognition (NER), including FLAIR, monolingual (Danish) BERT and multilingual BERT. We explore cross-lingual transfer in multilingual BERT from five related languages in zero-shot and direct transfer setups, and we show that even with our modestly-sized training set, we improve Danish NER over a recent cross-lingual approach, as well as over zero-shot transfer from five related languages. Using multilingual BERT, we achieve higher performance by fine-tuning on both DaNE and a larger Bokm{\aa}l (Norwegian) training set compared to only using DaNE. However, the highest performance isachieved by using a Danish BERT fine-tuned on DaNE. Our dataset enables improvements and applicability for Danish NER beyond cross-lingual methods. We employ a thorough error analysis of the predictions of the best models for seen and unseen entities, as well as their robustness on un-capitalized text. The annotated dataset and all the trained models are made publicly available.",
language = "English",
ISBN = "979-10-95546-34-4",
}
```
### Contributions
Thanks to [@ophelielacroix](https://github.com/ophelielacroix), [@lhoestq](https://github.com/lhoestq) for adding this dataset. | 10,820 | [
[
-0.052459716796875,
-0.0443115234375,
0.02032470703125,
0.0207061767578125,
-0.0200042724609375,
-0.01146697998046875,
-0.0272979736328125,
-0.03271484375,
0.040740966796875,
0.0255126953125,
-0.049652099609375,
-0.0577392578125,
-0.03369140625,
0.034454345703125,
-0.00879669189453125,
0.0770263671875,
-0.0018854141235351562,
0.006298065185546875,
-0.00971221923828125,
-0.01158905029296875,
-0.017974853515625,
-0.040313720703125,
-0.045440673828125,
-0.0146331787109375,
0.041656494140625,
0.0227203369140625,
0.032684326171875,
0.046356201171875,
0.03448486328125,
0.0186309814453125,
-0.032196044921875,
0.0013418197631835938,
-0.0241851806640625,
-0.004482269287109375,
-0.01611328125,
-0.02264404296875,
-0.0479736328125,
0.0029163360595703125,
0.049346923828125,
0.056671142578125,
0.0013904571533203125,
0.0294342041015625,
0.00780487060546875,
0.043914794921875,
-0.022491455078125,
0.03497314453125,
-0.0364990234375,
-0.004199981689453125,
-0.024200439453125,
-0.0052337646484375,
-0.0159912109375,
-0.021697998046875,
-0.005527496337890625,
-0.054931640625,
0.0048675537109375,
-0.0035114288330078125,
0.0833740234375,
0.009674072265625,
-0.0255126953125,
-0.01025390625,
-0.036834716796875,
0.058349609375,
-0.054901123046875,
0.0282135009765625,
0.0380859375,
0.01311492919921875,
-0.0245819091796875,
-0.05364990234375,
-0.0523681640625,
0.00452423095703125,
-0.03485107421875,
0.0210723876953125,
-0.004573822021484375,
-0.0009088516235351562,
0.0307464599609375,
0.0276947021484375,
-0.045867919921875,
-0.0038356781005859375,
-0.031829833984375,
-0.008697509765625,
0.06719970703125,
-0.0011529922485351562,
0.033233642578125,
-0.0491943359375,
-0.0191650390625,
-0.018646240234375,
-0.0386962890625,
0.00901031494140625,
0.02337646484375,
0.039215087890625,
-0.0289459228515625,
0.047271728515625,
-0.01097869873046875,
0.041748046875,
0.01355743408203125,
-0.00748443603515625,
0.0435791015625,
-0.0318603515625,
-0.007175445556640625,
0.00815582275390625,
0.0673828125,
0.03472900390625,
0.02349853515625,
0.005466461181640625,
0.0009756088256835938,
-0.005390167236328125,
-0.01415252685546875,
-0.040283203125,
-0.04095458984375,
0.0288543701171875,
-0.04486083984375,
-0.01373291015625,
0.00896453857421875,
-0.07080078125,
-0.00701141357421875,
-0.0206146240234375,
0.00995635986328125,
-0.033203125,
-0.043701171875,
-0.01715087890625,
-0.01541900634765625,
0.0257568359375,
0.013092041015625,
-0.06396484375,
0.01898193359375,
0.040283203125,
0.046051025390625,
-0.01125335693359375,
-0.0230560302734375,
-0.01279449462890625,
0.0084228515625,
-0.011688232421875,
0.05474853515625,
-0.0299835205078125,
-0.032806396484375,
-0.01611328125,
0.03289794921875,
-0.0178375244140625,
-0.0291748046875,
0.044189453125,
-0.0170440673828125,
0.03472900390625,
-0.032623291015625,
-0.047943115234375,
-0.027313232421875,
0.01654052734375,
-0.061187744140625,
0.09552001953125,
0.0168304443359375,
-0.0830078125,
0.035247802734375,
-0.061553955078125,
-0.0266876220703125,
0.01531982421875,
-0.0307769775390625,
-0.018951416015625,
-0.017730712890625,
0.0175323486328125,
0.04180908203125,
-0.0180206298828125,
0.0220489501953125,
-0.0155792236328125,
-0.0087738037109375,
0.00045680999755859375,
-0.01285552978515625,
0.1087646484375,
0.0086212158203125,
-0.0282745361328125,
-0.00778961181640625,
-0.0848388671875,
0.0026340484619140625,
0.0276641845703125,
-0.044036865234375,
-0.03387451171875,
-0.01079559326171875,
0.017242431640625,
0.019439697265625,
0.017669677734375,
-0.049163818359375,
0.0125885009765625,
-0.03369140625,
0.018096923828125,
0.053985595703125,
0.0200653076171875,
0.020965576171875,
-0.0168304443359375,
0.030517578125,
0.0030040740966796875,
0.01146697998046875,
-0.0006189346313476562,
-0.049285888671875,
-0.04730224609375,
-0.026458740234375,
0.042144775390625,
0.0555419921875,
-0.045806884765625,
0.051239013671875,
-0.042999267578125,
-0.0438232421875,
-0.045379638671875,
-0.0004334449768066406,
0.0247344970703125,
0.034454345703125,
0.038909912109375,
-0.01438140869140625,
-0.06732177734375,
-0.0728759765625,
-0.001903533935546875,
-0.031768798828125,
0.012939453125,
0.043701171875,
0.05218505859375,
-0.00655364990234375,
0.06353759765625,
-0.0293426513671875,
-0.013824462890625,
-0.0242767333984375,
-0.0029430389404296875,
0.042144775390625,
0.050567626953125,
0.050750732421875,
-0.0753173828125,
-0.04937744140625,
0.001399993896484375,
-0.050872802734375,
-0.0112762451171875,
-0.006072998046875,
-0.00899505615234375,
0.0244140625,
0.0245819091796875,
-0.054168701171875,
0.0214691162109375,
0.036376953125,
-0.037353515625,
0.04339599609375,
-0.001506805419921875,
0.01226806640625,
-0.099365234375,
0.0193328857421875,
-0.0179290771484375,
0.0010395050048828125,
-0.040283203125,
-0.01580810546875,
-0.004596710205078125,
0.0178375244140625,
-0.035369873046875,
0.049957275390625,
-0.044281005859375,
0.007663726806640625,
0.0189666748046875,
0.00746917724609375,
-0.0052490234375,
0.044464111328125,
0.000030875205993652344,
0.050140380859375,
0.044189453125,
-0.04205322265625,
0.033538818359375,
0.04229736328125,
-0.0242462158203125,
0.056488037109375,
-0.038726806640625,
-0.00794219970703125,
-0.02239990234375,
0.0187225341796875,
-0.07208251953125,
-0.0220947265625,
0.0303955078125,
-0.044891357421875,
0.0295867919921875,
-0.023223876953125,
-0.038970947265625,
-0.031524658203125,
-0.017669677734375,
0.0152587890625,
0.0302734375,
-0.036041259765625,
0.05072021484375,
0.03826904296875,
-0.0095062255859375,
-0.041259765625,
-0.060699462890625,
0.01178741455078125,
-0.0192108154296875,
-0.047271728515625,
0.032745361328125,
-0.0049896240234375,
-0.02874755859375,
0.0230865478515625,
-0.0009398460388183594,
-0.001399993896484375,
0.01277923583984375,
0.0191802978515625,
0.0136566162109375,
-0.014129638671875,
0.01152801513671875,
-0.003170013427734375,
-0.00896453857421875,
0.002658843994140625,
-0.007415771484375,
0.043853759765625,
0.005283355712890625,
-0.016510009765625,
-0.029937744140625,
0.03887939453125,
0.0302581787109375,
-0.01092529296875,
0.055023193359375,
0.046234130859375,
-0.032318115234375,
-0.0011959075927734375,
-0.03668212890625,
-0.003570556640625,
-0.0297698974609375,
0.0238800048828125,
-0.0438232421875,
-0.048980712890625,
0.0567626953125,
-0.0005373954772949219,
0.018829345703125,
0.07470703125,
0.032379150390625,
-0.01983642578125,
0.05914306640625,
0.0309295654296875,
-0.0016689300537109375,
0.034210205078125,
-0.044036865234375,
-0.0027027130126953125,
-0.058502197265625,
-0.029327392578125,
-0.0394287109375,
-0.0255889892578125,
-0.06719970703125,
-0.02618408203125,
-0.0016632080078125,
0.00957489013671875,
-0.01727294921875,
0.044921875,
-0.03790283203125,
0.0211639404296875,
0.04962158203125,
-0.00966644287109375,
0.008270263671875,
-0.004238128662109375,
-0.0213470458984375,
0.0004715919494628906,
-0.050079345703125,
-0.042083740234375,
0.0750732421875,
0.0099639892578125,
0.033599853515625,
0.008697509765625,
0.0660400390625,
0.0179443359375,
0.00896453857421875,
-0.038360595703125,
0.05908203125,
-0.016876220703125,
-0.0577392578125,
-0.0240478515625,
-0.031585693359375,
-0.0858154296875,
0.013885498046875,
-0.01502227783203125,
-0.06549072265625,
0.036285400390625,
0.0020313262939453125,
-0.0105743408203125,
0.02716064453125,
-0.04486083984375,
0.0675048828125,
-0.014190673828125,
0.003467559814453125,
0.003673553466796875,
-0.06353759765625,
0.00542449951171875,
0.0108489990234375,
0.021392822265625,
-0.019744873046875,
0.00818634033203125,
0.080322265625,
-0.024200439453125,
0.062255859375,
-0.01947021484375,
-0.00789642333984375,
0.0245361328125,
-0.006145477294921875,
0.040313720703125,
0.0004448890686035156,
0.00046563148498535156,
0.0280914306640625,
0.01290130615234375,
-0.021148681640625,
-0.027496337890625,
0.059326171875,
-0.056610107421875,
-0.03753662109375,
-0.0298614501953125,
-0.0236053466796875,
0.002178192138671875,
0.023895263671875,
0.0249786376953125,
0.01873779296875,
-0.0103759765625,
0.0156707763671875,
0.042083740234375,
-0.0220489501953125,
0.0306396484375,
0.0243377685546875,
-0.0108184814453125,
-0.053741455078125,
0.052947998046875,
0.0362548828125,
0.0026683807373046875,
0.032745361328125,
-0.004795074462890625,
-0.02032470703125,
-0.019439697265625,
-0.03326416015625,
0.03057861328125,
-0.055908203125,
-0.0109100341796875,
-0.06365966796875,
-0.0242767333984375,
-0.046600341796875,
0.001216888427734375,
-0.01531982421875,
-0.058349609375,
-0.02947998046875,
-0.03436279296875,
0.047821044921875,
0.033905029296875,
-0.02099609375,
0.0019216537475585938,
-0.044769287109375,
0.0182952880859375,
0.0157012939453125,
0.023223876953125,
-0.00992584228515625,
-0.0224609375,
-0.00742340087890625,
0.0031108856201171875,
0.0005550384521484375,
-0.08502197265625,
0.00994110107421875,
0.01727294921875,
0.06103515625,
0.00830078125,
0.002193450927734375,
0.04681396484375,
-0.03216552734375,
0.07965087890625,
0.00473785400390625,
-0.0478515625,
0.053375244140625,
-0.0250091552734375,
0.0070648193359375,
0.04913330078125,
0.0321044921875,
-0.05621337890625,
-0.0203094482421875,
-0.07098388671875,
-0.09210205078125,
0.0645751953125,
0.0250244140625,
0.006999969482421875,
-0.019378662109375,
0.01812744140625,
0.00441741943359375,
-0.001129150390625,
-0.062225341796875,
-0.060516357421875,
-0.01229095458984375,
-0.0281524658203125,
0.005550384521484375,
-0.0243682861328125,
-0.01479339599609375,
-0.03369140625,
0.079833984375,
0.0147705078125,
0.024383544921875,
0.02398681640625,
-0.0033721923828125,
0.00373077392578125,
0.023651123046875,
0.02679443359375,
0.041046142578125,
-0.0216217041015625,
0.019073486328125,
0.0216217041015625,
-0.04620361328125,
0.004169464111328125,
0.022796630859375,
-0.0246429443359375,
0.022796630859375,
0.0307464599609375,
0.06317138671875,
0.00128936767578125,
-0.032745361328125,
0.033782958984375,
-0.0012254714965820312,
-0.026214599609375,
-0.04193115234375,
-0.004680633544921875,
0.0094146728515625,
0.018096923828125,
0.02398681640625,
-0.0226287841796875,
-0.003269195556640625,
-0.0222015380859375,
0.019744873046875,
0.01251220703125,
-0.017669677734375,
-0.023223876953125,
0.05145263671875,
0.004001617431640625,
-0.0260162353515625,
0.03265380859375,
-0.0222930908203125,
-0.031585693359375,
0.052947998046875,
0.0321044921875,
0.07330322265625,
-0.0163726806640625,
0.0194091796875,
0.054779052734375,
0.0310516357421875,
0.011444091796875,
0.061767578125,
-0.0032501220703125,
-0.046630859375,
-0.03466796875,
-0.051422119140625,
0.0007529258728027344,
0.026123046875,
-0.051788330078125,
0.0163421630859375,
-0.0244903564453125,
-0.0204010009765625,
0.01371002197265625,
0.0011730194091796875,
-0.05865478515625,
0.0156402587890625,
0.01107025146484375,
0.07696533203125,
-0.07415771484375,
0.056671142578125,
0.07861328125,
-0.044830322265625,
-0.07244873046875,
-0.00600433349609375,
-0.0031452178955078125,
-0.04241943359375,
0.060699462890625,
0.003971099853515625,
0.02520751953125,
0.006053924560546875,
-0.036956787109375,
-0.08447265625,
0.08563232421875,
0.01149749755859375,
-0.03057861328125,
0.00789642333984375,
0.004123687744140625,
0.0443115234375,
-0.009979248046875,
0.01407623291015625,
0.04449462890625,
0.05352783203125,
-0.0090789794921875,
-0.07354736328125,
0.02325439453125,
-0.045318603515625,
0.00441741943359375,
0.0201416015625,
-0.044586181640625,
0.0611572265625,
0.006397247314453125,
-0.029327392578125,
-0.019561767578125,
0.05059814453125,
0.015838623046875,
0.00560760498046875,
0.044403076171875,
0.056304931640625,
0.057769775390625,
-0.014892578125,
0.0628662109375,
-0.0321044921875,
0.038116455078125,
0.087158203125,
0.00714111328125,
0.059051513671875,
0.0491943359375,
-0.040252685546875,
0.045318603515625,
0.056182861328125,
-0.01349639892578125,
0.038726806640625,
0.017669677734375,
-0.0057220458984375,
-0.00948333740234375,
-0.0194549560546875,
-0.0306396484375,
0.036163330078125,
0.0207977294921875,
-0.040008544921875,
-0.01213836669921875,
0.00013387203216552734,
0.0231781005859375,
-0.0094757080078125,
-0.01438140869140625,
0.06890869140625,
0.001682281494140625,
-0.044403076171875,
0.048248291015625,
-0.0127410888671875,
0.03948974609375,
-0.035491943359375,
-0.014434814453125,
-0.0162353515625,
-0.0024433135986328125,
-0.0246429443359375,
-0.07366943359375,
0.0159454345703125,
-0.00037097930908203125,
-0.0243988037109375,
-0.01291656494140625,
0.0408935546875,
-0.038299560546875,
-0.044464111328125,
0.033782958984375,
0.035797119140625,
0.0345458984375,
0.0194549560546875,
-0.06591796875,
-0.0145263671875,
0.01305389404296875,
-0.037322998046875,
0.00859832763671875,
0.03594970703125,
-0.0057220458984375,
0.0307464599609375,
0.039886474609375,
0.024810791015625,
0.0089874267578125,
0.007541656494140625,
0.060455322265625,
-0.052581787109375,
-0.0278778076171875,
-0.0628662109375,
0.048614501953125,
-0.0214080810546875,
-0.025299072265625,
0.0665283203125,
0.051116943359375,
0.0849609375,
0.004261016845703125,
0.06494140625,
-0.04620361328125,
0.047393798828125,
-0.02325439453125,
0.0458984375,
-0.049285888671875,
0.0033969879150390625,
-0.02606201171875,
-0.071044921875,
-0.0266265869140625,
0.051910400390625,
-0.0228118896484375,
0.0035114288330078125,
0.0367431640625,
0.048065185546875,
-0.0038661956787109375,
-0.00295257568359375,
0.0025177001953125,
0.035614013671875,
0.0143890380859375,
0.032745361328125,
0.039947509765625,
-0.03375244140625,
0.046356201171875,
-0.045867919921875,
-0.007778167724609375,
-0.00600433349609375,
-0.061737060546875,
-0.057159423828125,
-0.06597900390625,
-0.039825439453125,
-0.0290985107421875,
-0.002002716064453125,
0.0869140625,
0.028167724609375,
-0.08465576171875,
-0.007083892822265625,
0.00262451171875,
0.005130767822265625,
-0.029876708984375,
-0.0226898193359375,
0.06243896484375,
0.0002617835998535156,
-0.049774169921875,
0.01107025146484375,
0.01229095458984375,
0.01806640625,
-0.00212860107421875,
-0.0023059844970703125,
-0.045989990234375,
-0.0028400421142578125,
0.031524658203125,
0.0194091796875,
-0.055145263671875,
-0.0215911865234375,
-0.006389617919921875,
-0.0099639892578125,
0.01158905029296875,
0.0169830322265625,
-0.0362548828125,
0.0234527587890625,
0.0531005859375,
0.0250701904296875,
0.028076171875,
0.00269317626953125,
0.01300048828125,
-0.051788330078125,
0.0058135986328125,
0.0173797607421875,
0.0384521484375,
0.023529052734375,
-0.0311126708984375,
0.05621337890625,
0.030364990234375,
-0.0345458984375,
-0.06475830078125,
-0.001369476318359375,
-0.0836181640625,
-0.017669677734375,
0.1043701171875,
-0.020904541015625,
-0.0275726318359375,
-0.022979736328125,
-0.0270233154296875,
0.026458740234375,
-0.02520751953125,
0.040924072265625,
0.05828857421875,
-0.0023784637451171875,
-0.005336761474609375,
-0.03594970703125,
0.045623779296875,
0.014007568359375,
-0.05413818359375,
0.005184173583984375,
0.0281982421875,
0.0226593017578125,
0.0232391357421875,
0.06085205078125,
-0.015716552734375,
0.0037994384765625,
-0.003643035888671875,
0.032623291015625,
0.0086822509765625,
-0.00534820556640625,
-0.010040283203125,
-0.00847625732421875,
-0.01181793212890625,
-0.02264404296875
]
] |
medical_dialog | 2023-09-18T09:07:35.000Z | [
"task_categories:question-answering",
"task_ids:closed-domain-qa",
"annotations_creators:found",
"language_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:1M<n<10M",
"source_datasets:original",
"language:en",
"language:zh",
"license:unknown",
"arxiv:2004.03329",
"region:us"
] | null | The MedDialog dataset (English) contains conversations (in English) between doctors and patients.It has 0.26 million dialogues. The data is continuously growing and more dialogues will be added. The raw dialogues are from healthcaremagic.com and icliniq.com.
All copyrights of the data belong to healthcaremagic.com and icliniq.com. | @article{chen2020meddiag,
title={MedDialog: a large-scale medical dialogue dataset},
author={Chen, Shu and Ju, Zeqian and Dong, Xiangyu and Fang, Hongchao and Wang, Sicheng and Yang, Yue and Zeng, Jiaqi and Zhang, Ruisi and Zhang, Ruoyu and Zhou, Meng and Zhu, Penghui and Xie, Pengtao},
journal={arXiv preprint arXiv:2004.03329},
year={2020}
} | 78 | 1,016 | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- expert-generated
- found
language:
- en
- zh
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 1M<n<10M
source_datasets:
- original
task_categories:
- question-answering
task_ids:
- closed-domain-qa
pretty_name: MedDialog
paperswithcode_id: meddialog
dataset_info:
- config_name: en
features:
- name: file_name
dtype: string
- name: dialogue_id
dtype: int32
- name: dialogue_url
dtype: string
- name: dialogue_turns
sequence:
- name: speaker
dtype:
class_label:
names:
'0': Patient
'1': Doctor
- name: utterance
dtype: string
splits:
- name: train
num_bytes: 290274759
num_examples: 229674
download_size: 0
dataset_size: 290274759
- config_name: zh
features:
- name: file_name
dtype: string
- name: dialogue_id
dtype: int32
- name: dialogue_url
dtype: string
- name: dialogue_turns
sequence:
- name: speaker
dtype:
class_label:
names:
'0': 病人
'1': 医生
- name: utterance
dtype: string
splits:
- name: train
num_bytes: 1092063621
num_examples: 1921127
download_size: 0
dataset_size: 1092063621
- config_name: processed.en
features:
- name: description
dtype: string
- name: utterances
sequence: string
splits:
- name: train
num_bytes: 370745
num_examples: 482
- name: validation
num_bytes: 52145
num_examples: 60
- name: test
num_bytes: 46514
num_examples: 61
download_size: 524214
dataset_size: 469404
- config_name: processed.zh
features:
- name: utterances
sequence: string
splits:
- name: train
num_bytes: 1571262099
num_examples: 2725989
- name: validation
num_bytes: 197117565
num_examples: 340748
- name: test
num_bytes: 196526738
num_examples: 340754
download_size: 2082354155
dataset_size: 1964906402
config_names:
- en
- zh
viewer: false
---
# Dataset Card for MedDialog
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Repository:** https://github.com/UCSD-AI4H/Medical-Dialogue-System
- **Paper:** [MedDialog: Two Large-scale Medical Dialogue Datasets](https://arxiv.org/abs/2004.03329)
- **Point of Contact:** [Pengtao Xie](mailto:pengtaoxie2008@gmail.com)
### Dataset Summary
The MedDialog dataset (Chinese) contains conversations (in Chinese) between doctors and patients. It has 1.1 million dialogues and 4 million utterances. The data is continuously growing and more dialogues will be added. The raw dialogues are from haodf.com. All copyrights of the data belong to haodf.com.
The MedDialog dataset (English) contains conversations (in English) between doctors and patients. It has 0.26 million dialogues. The data is continuously growing and more dialogues will be added. The raw dialogues are from healthcaremagic.com and icliniq.com. All copyrights of the data belong to healthcaremagic.com and icliniq.com.
Directions for using the pre-trained model using BERT using PyTorch is available in the Homepage.
### Supported Tasks and Leaderboards
Closed domain qa
### Languages
Monolingual. The datasets are in English (EN) and Chinese (ZH)
## Dataset Structure
### Data Instances
There are 4 configurations:
- Raw data:
- en
- zh
- Processed data:
- processed.en
- processed.zh
#### en
Each consultation consists of the below:
- ID
- URL
- Description of patient’s medical condition
- Dialogue
The dataset is built from [icliniq.com](https://www.icliniq.com/), [healthcaremagic.com](https://www.healthcaremagic.com/), [healthtap.com](https://www.healthtap.com/) and all copyrights of the data belong to these websites.
#### zh
Each consultation consists of the below:
- ID
- URL
- Description of patient’s medical condition
- Dialogue
- (Optional) Diagnosis and suggestions.
The dataset is built from [Haodf.com](https://www.haodf.com/) and all copyrights of the data belong to [Haodf.com](https://www.haodf.com/).
One example for chinese is
```
{
{'dialogue_id': 2,
'dialogue_turns': [{'speaker': '病人',
'utterance': '孩子哭闹时,鸡鸡旁边会肿起,情绪平静时肿块会消失,去一个私人诊所看过,说是疝气.如果确定是疝气,是不是一定要手术治疗?我孩子只有1岁10月,自愈的可能性大吗?如果一定要手术,这么小的孩子风险大吗?术后的恢复困难吗?谢谢.'},
{'speaker': '医生', 'utterance': '南方医的B超说得不清楚,可能是鞘膜积液,可到我医院复查一个B超。'}],
'dialogue_url': 'https://www.haodf.com/doctorteam/flow_team_6477251152.htm',
'file_name': '2020.txt'},
}
```
#### processed.en
```
{
'description': 'throat a bit sore and want to get a good imune booster, especially in light of the virus. please advise. have not been in contact with nyone with the virus.',
'utterances': [
'patient: throat a bit sore and want to get a good imune booster, especially in light of the virus. please advise. have not been in contact with nyone with the virus.',
"doctor: during this pandemic. throat pain can be from a strep throat infection (antibiotics needed), a cold or influenza or other virus, or from some other cause such as allergies or irritants. usually, a person sees the doctor (call first) if the sore throat is bothersome, recurrent, or doesn't go away quickly. covid-19 infections tend to have cough, whereas strep throat usually lacks cough but has more throat pain. (3/21/20)"
]
}
```
#### processed.zh
```
{
'utterances': [
'病人:强制性脊柱炎,晚上睡觉翻身时腰骶骨区域疼痛,其他身体任何部位均不疼痛。',
'医生:应该没有问题,但最好把图像上传看看。'
]
}
```
### Data Fields
For generating the QA only the below fields have been considered:
- ID : Consultatation Identifier (restarts for each file)
- URL: The url link of the extracted conversation
- Dialogue : The conversation between the doctor and the patient.
These are arranged as below in the prepared dataset. Each item will be represented with these parameters.
- "file_name": string - signifies the file from which the conversation was extracted
- "dialogue_id": int32 - the dialogue id
- "dialogue_url": string - url of the conversation
- "dialogue_turns": datasets.Sequence - sequence of dialogues between patient and the doctor.Consists ClassLabel(names=["病人", "医生"]), and "utterance"(string) for each turn. (ClassLable(names=["Patient", "Doctor"]) for english)
#### processed.en
- `description` (str): Description of the dialog.
- `utterances` (list of str): Dialog utterances between patient and doctor.
#### processed.zh
- `utterances` (list of str): Dialog utterances between patient and doctor.
### Data Splits
There are no data splits on the original raw data. The "train" split for each language contains:
- en: 229674 examples
- zh: 1921127 examples
For processed configurations, data is split into train, validation and test, with the following number of examples:
| | train | validation | test |
|--------------|--------:|-----------:|-------:|
| processed.en | 482 | 60 | 61 |
| processed.zh | 2725989 | 340748 | 340754 |
## Dataset Creation
### Curation Rationale
Medical dialogue systems are promising in assisting in telemedicine to increase access to healthcare services, improve the quality of patient care, and reduce medical costs.
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
The authors claim that:
- They scraped the data from the following websites:
- MedDialog-EN: data was crawled from https://www.icliniq.com/ and https://www.healthcaremagic.com/
- MedDialog-CN: data was crawled from https://www.haodf.com/
- All copyrights of the data belong to the corresponding websites
The [terms and conditions](https://www.icliniq.com/p/terms) (last updated on: 11th April 2022) of www.icliniq.com website state:
> No person (including a User, Doctor, Alternative Medicine Practitioner, or Wellness Professional) shall copy, transfer, download, republish, sell, duplicate, or "scrape", for commercial or any other purpose whatsoever, the contents or information made available on the Platform including Directory Listing Services, academic articles, and queries, in whole or in part, in any medium whatsoever.
The [terms and conditions](https://www.healthcaremagic.com/tc) (last updated: August 17, 2012) of www.healthcaremagic.com website stipulate:
> You are prohibited from republishing, selling, duplicating, or "scraping" for commercial or any other purpose whatsoever any of the data or other information contained therein, in whole or in part, in any medium whatsoever.
### Citation Information
```
@article{chen2020meddiag,
title={MedDialog: a large-scale medical dialogue dataset},
author={Chen, Shu and Ju, Zeqian and Dong, Xiangyu and Fang, Hongchao and Wang, Sicheng and Yang, Yue and Zeng, Jiaqi and Zhang, Ruisi and Zhang, Ruoyu and Zhou, Meng and Zhu, Penghui and Xie, Pengtao},
journal={arXiv preprint arXiv:2004.03329},
year={2020}
}
```
### Contributions
Thanks to [@vrindaprabhu](https://github.com/vrindaprabhu) for adding this dataset. | 10,509 | [
[
-0.014801025390625,
-0.048370361328125,
0.018157958984375,
0.01117706298828125,
-0.0308837890625,
-0.01090240478515625,
-0.00826263427734375,
-0.033660888671875,
0.036865234375,
0.038909912109375,
-0.055145263671875,
-0.05731201171875,
-0.0309906005859375,
0.01142120361328125,
0.01238250732421875,
0.08123779296875,
0.01503753662109375,
0.032379150390625,
-0.000934600830078125,
-0.01751708984375,
-0.0185699462890625,
-0.035003662109375,
-0.05999755859375,
-0.0270843505859375,
0.014068603515625,
0.036865234375,
0.049560546875,
0.031982421875,
0.042236328125,
0.0194244384765625,
0.00934600830078125,
0.0177764892578125,
-0.03289794921875,
0.005451202392578125,
0.005096435546875,
-0.0285491943359375,
-0.04364013671875,
-0.0026454925537109375,
0.040435791015625,
0.04083251953125,
-0.0175018310546875,
0.0216217041015625,
0.008697509765625,
0.035125732421875,
0.0005817413330078125,
0.0247650146484375,
-0.0203094482421875,
0.021270751953125,
-0.0089874267578125,
-0.031097412109375,
-0.0114898681640625,
-0.038360595703125,
0.0240936279296875,
-0.04681396484375,
-0.00283050537109375,
0.005863189697265625,
0.0885009765625,
0.0019130706787109375,
-0.0205078125,
-0.00609588623046875,
-0.02752685546875,
0.051239013671875,
-0.07769775390625,
0.00710296630859375,
0.041961669921875,
0.0288543701171875,
-0.0180511474609375,
-0.060577392578125,
-0.04339599609375,
0.00039649009704589844,
-0.018829345703125,
0.03448486328125,
-0.0203094482421875,
0.009796142578125,
0.0239105224609375,
0.040069580078125,
-0.044952392578125,
-0.0026988983154296875,
-0.04559326171875,
-0.028656005859375,
0.053009033203125,
0.0310211181640625,
0.047454833984375,
-0.052337646484375,
-0.028717041015625,
-0.012542724609375,
-0.0406494140625,
0.0155487060546875,
-0.0029144287109375,
0.0169525146484375,
-0.05072021484375,
0.032318115234375,
-0.00984954833984375,
0.04290771484375,
0.00591278076171875,
-0.0439453125,
0.0489501953125,
-0.05242919921875,
-0.0312347412109375,
0.006267547607421875,
0.09600830078125,
0.04864501953125,
0.0033626556396484375,
0.0215911865234375,
0.0178375244140625,
-0.0279998779296875,
-0.00728607177734375,
-0.0650634765625,
-0.022186279296875,
0.04656982421875,
-0.05963134765625,
-0.024200439453125,
-0.0106658935546875,
-0.06756591796875,
-0.009613037109375,
-0.01287078857421875,
0.01146697998046875,
-0.04388427734375,
-0.033172607421875,
-0.0007171630859375,
-0.0006079673767089844,
0.0183563232421875,
0.0184173583984375,
-0.037200927734375,
0.03314208984375,
0.0190887451171875,
0.061676025390625,
0.0007033348083496094,
-0.00433349609375,
-0.0230560302734375,
-0.00688934326171875,
-0.00435638427734375,
0.045013427734375,
-0.0173797607421875,
-0.043853759765625,
0.003818511962890625,
0.0246734619140625,
-0.0299835205078125,
-0.044708251953125,
0.05010986328125,
0.004589080810546875,
0.052581787109375,
-0.0172119140625,
-0.0289764404296875,
-0.0180511474609375,
0.019073486328125,
-0.0357666015625,
0.062103271484375,
0.0206756591796875,
-0.05792236328125,
0.01509857177734375,
-0.05206298828125,
-0.03619384765625,
0.0130462646484375,
-0.02685546875,
-0.035491943359375,
-0.033843994140625,
0.0226593017578125,
0.032073974609375,
-0.048583984375,
0.0261993408203125,
-0.00397491455078125,
-0.0030059814453125,
0.020355224609375,
-0.029815673828125,
0.09796142578125,
0.0309295654296875,
-0.01666259765625,
0.00815582275390625,
-0.05853271484375,
0.01285552978515625,
0.0126800537109375,
-0.023651123046875,
-0.01345062255859375,
-0.00487518310546875,
0.003936767578125,
0.032958984375,
0.00351715087890625,
-0.031585693359375,
0.01561737060546875,
-0.04864501953125,
0.0389404296875,
0.034423828125,
0.0362548828125,
0.00030493736267089844,
-0.048797607421875,
0.04986572265625,
0.0292816162109375,
0.031890869140625,
-0.01161956787109375,
-0.058868408203125,
-0.048614501953125,
-0.024505615234375,
0.01317596435546875,
0.05792236328125,
-0.05340576171875,
0.042633056640625,
-0.036102294921875,
-0.0439453125,
-0.0697021484375,
-0.00013124942779541016,
0.03924560546875,
0.05816650390625,
0.03070068359375,
-0.0246429443359375,
-0.041107177734375,
-0.0633544921875,
0.01128387451171875,
-0.019561767578125,
0.0030002593994140625,
0.059814453125,
0.0247039794921875,
-0.03204345703125,
0.04547119140625,
-0.038116455078125,
-0.037017822265625,
-0.033905029296875,
-0.004150390625,
0.026123046875,
0.048919677734375,
0.0294647216796875,
-0.056427001953125,
-0.050750732421875,
0.0026798248291015625,
-0.0687255859375,
-0.0132293701171875,
-0.0225677490234375,
-0.0131988525390625,
0.01091766357421875,
0.0171356201171875,
-0.036773681640625,
0.03814697265625,
0.036529541015625,
-0.0183563232421875,
0.03607177734375,
-0.00795745849609375,
0.0333251953125,
-0.119384765625,
0.01143646240234375,
0.004772186279296875,
-0.01209259033203125,
-0.049163818359375,
-0.02056884765625,
-0.024261474609375,
-0.01392364501953125,
-0.032379150390625,
0.024749755859375,
-0.021026611328125,
0.03424072265625,
0.015106201171875,
0.0108642578125,
-0.00264739990234375,
0.045135498046875,
-0.009735107421875,
0.0517578125,
0.041595458984375,
-0.044708251953125,
0.03076171875,
0.04461669921875,
-0.0225067138671875,
0.04437255859375,
-0.0633544921875,
-0.00916290283203125,
0.00846099853515625,
0.022003173828125,
-0.06549072265625,
-0.029815673828125,
0.05584716796875,
-0.051666259765625,
0.0101318359375,
-0.01593017578125,
-0.0230255126953125,
-0.0194244384765625,
-0.0254364013671875,
0.016326904296875,
0.0328369140625,
-0.0008540153503417969,
0.029022216796875,
0.040130615234375,
-0.029083251953125,
-0.036773681640625,
-0.05145263671875,
0.0007448196411132812,
-0.0163116455078125,
-0.058502197265625,
0.0269622802734375,
-0.00412750244140625,
-0.0186614990234375,
0.0023670196533203125,
0.0080108642578125,
-0.014923095703125,
-0.0106201171875,
0.022796630859375,
0.027496337890625,
-0.0167999267578125,
0.007232666015625,
0.002704620361328125,
-0.00093841552734375,
0.005611419677734375,
0.0037021636962890625,
0.05340576171875,
-0.00397491455078125,
-0.0206451416015625,
-0.06121826171875,
0.041351318359375,
0.049713134765625,
-0.0072174072265625,
0.049591064453125,
0.04412841796875,
-0.034698486328125,
0.02880859375,
-0.035675048828125,
-0.0183868408203125,
-0.0304718017578125,
0.0222930908203125,
-0.010467529296875,
-0.0380859375,
0.0552978515625,
0.0003943443298339844,
0.003589630126953125,
0.049530029296875,
0.043609619140625,
-0.00759124755859375,
0.06976318359375,
0.01520538330078125,
-0.0172119140625,
0.01337432861328125,
-0.033966064453125,
0.01490020751953125,
-0.06732177734375,
-0.0333251953125,
-0.030029296875,
-0.0103302001953125,
-0.06451416015625,
-0.032562255859375,
0.042877197265625,
-0.0225677490234375,
-0.01009368896484375,
0.0161285400390625,
-0.043365478515625,
-0.016357421875,
0.048370361328125,
0.036834716796875,
0.0111083984375,
-0.00045871734619140625,
-0.0161590576171875,
-0.01551055908203125,
-0.06488037109375,
-0.0291748046875,
0.0743408203125,
0.0270538330078125,
0.041900634765625,
0.006298065185546875,
0.045196533203125,
0.01336669921875,
-0.005321502685546875,
-0.060028076171875,
0.044342041015625,
-0.0007443428039550781,
-0.038330078125,
-0.0214385986328125,
-0.039398193359375,
-0.10302734375,
0.0116119384765625,
-0.0215301513671875,
-0.063720703125,
0.0222320556640625,
-0.005641937255859375,
-0.042694091796875,
0.0125274658203125,
-0.05242919921875,
0.06390380859375,
-0.01336669921875,
-0.02398681640625,
-0.01465606689453125,
-0.07781982421875,
0.0192108154296875,
0.0169830322265625,
0.01525115966796875,
-0.00432586669921875,
0.0229949951171875,
0.064208984375,
-0.06158447265625,
0.06805419921875,
-0.01285552978515625,
0.0178375244140625,
0.02264404296875,
-0.0199737548828125,
0.0225830078125,
0.02197265625,
0.00428009033203125,
0.0176849365234375,
0.0276947021484375,
-0.0221405029296875,
-0.02593994140625,
0.04046630859375,
-0.0614013671875,
-0.04876708984375,
-0.0506591796875,
-0.0218048095703125,
-0.007678985595703125,
0.023468017578125,
0.034820556640625,
0.059112548828125,
-0.005046844482421875,
0.0098114013671875,
0.03875732421875,
-0.04705810546875,
0.00490570068359375,
0.0303192138671875,
0.00027871131896972656,
-0.04229736328125,
0.0458984375,
0.01397705078125,
0.021728515625,
0.018463134765625,
0.0239410400390625,
-0.00850677490234375,
-0.032623291015625,
-0.031890869140625,
0.027801513671875,
-0.034698486328125,
-0.0169830322265625,
-0.05596923828125,
-0.044830322265625,
-0.054534912109375,
0.0224151611328125,
0.003940582275390625,
-0.0160675048828125,
-0.0288848876953125,
-0.0012645721435546875,
0.043121337890625,
0.0204925537109375,
-0.0096893310546875,
0.0173492431640625,
-0.073486328125,
0.0175628662109375,
0.0003883838653564453,
0.01320648193359375,
-0.0058135986328125,
-0.0294647216796875,
-0.026947021484375,
0.0254364013671875,
-0.0295562744140625,
-0.063720703125,
0.051971435546875,
0.0160675048828125,
0.043853759765625,
0.0411376953125,
0.014373779296875,
0.0692138671875,
-0.0217132568359375,
0.09185791015625,
0.0247955322265625,
-0.043243408203125,
0.0517578125,
-0.03387451171875,
0.0272216796875,
0.043792724609375,
0.036529541015625,
-0.06622314453125,
-0.01348876953125,
-0.0601806640625,
-0.0697021484375,
0.067138671875,
0.01561737060546875,
0.000059545040130615234,
0.00763702392578125,
0.00647735595703125,
-0.004245758056640625,
0.016448974609375,
-0.049163818359375,
-0.047210693359375,
-0.010467529296875,
-0.0276031494140625,
0.01039886474609375,
-0.0221710205078125,
-0.040985107421875,
-0.038055419921875,
0.061737060546875,
0.005710601806640625,
0.050811767578125,
0.04986572265625,
0.005329132080078125,
-0.00904083251953125,
0.03448486328125,
0.041900634765625,
0.04840087890625,
-0.021209716796875,
-0.011383056640625,
0.005828857421875,
-0.060577392578125,
-0.010528564453125,
0.0215911865234375,
-0.003406524658203125,
0.01471710205078125,
0.026123046875,
0.05816650390625,
0.01361846923828125,
-0.04937744140625,
0.031585693359375,
-0.00847625732421875,
-0.019439697265625,
-0.03765869140625,
-0.0008835792541503906,
-0.01006317138671875,
0.01142120361328125,
0.0154876708984375,
-0.00001043081283569336,
0.02581787109375,
-0.036712646484375,
0.01605224609375,
0.0022220611572265625,
-0.0338134765625,
-0.017242431640625,
0.03741455078125,
0.018218994140625,
-0.0281219482421875,
0.054901123046875,
0.0023937225341796875,
-0.03326416015625,
0.032501220703125,
0.02874755859375,
0.04608154296875,
-0.0188446044921875,
0.026763916015625,
0.047637939453125,
0.0130462646484375,
0.006786346435546875,
0.041412353515625,
0.007045745849609375,
-0.049957275390625,
-0.0225677490234375,
-0.0142364501953125,
-0.02679443359375,
0.0261688232421875,
-0.06231689453125,
0.018157958984375,
-0.028717041015625,
-0.0269012451171875,
0.00151824951171875,
0.016021728515625,
-0.04461669921875,
0.01280975341796875,
-0.00722503662109375,
0.0628662109375,
-0.0419921875,
0.058502197265625,
0.05047607421875,
-0.054443359375,
-0.077880859375,
-0.004627227783203125,
0.0182342529296875,
-0.07000732421875,
0.021240234375,
-0.0018682479858398438,
0.01499176025390625,
-0.0217132568359375,
-0.032440185546875,
-0.052520751953125,
0.0836181640625,
0.0160980224609375,
-0.031646728515625,
0.0033588409423828125,
0.0194091796875,
0.044647216796875,
-0.0231475830078125,
0.02764892578125,
0.03607177734375,
0.026123046875,
0.0027637481689453125,
-0.09332275390625,
0.0186767578125,
-0.047943115234375,
-0.03436279296875,
-0.006511688232421875,
-0.06170654296875,
0.04986572265625,
-0.00414276123046875,
-0.016998291015625,
-0.007762908935546875,
0.01430511474609375,
0.017242431640625,
0.0299835205078125,
0.0271453857421875,
0.043670654296875,
0.06829833984375,
-0.015716552734375,
0.08331298828125,
-0.0322265625,
0.006744384765625,
0.07080078125,
-0.0029010772705078125,
0.041015625,
0.0232086181640625,
-0.0252685546875,
0.044891357421875,
0.054656982421875,
-0.00887298583984375,
0.038421630859375,
-0.0076141357421875,
-0.02105712890625,
-0.005123138427734375,
-0.0223846435546875,
-0.04766845703125,
0.02984619140625,
0.042144775390625,
-0.047119140625,
0.00771331787109375,
0.00608062744140625,
0.03619384765625,
-0.0216522216796875,
-0.006072998046875,
0.0765380859375,
0.014801025390625,
-0.061553955078125,
0.0679931640625,
-0.0224151611328125,
0.0313720703125,
-0.063720703125,
-0.00682830810546875,
-0.00711822509765625,
0.0039043426513671875,
-0.0357666015625,
-0.04595947265625,
0.0027980804443359375,
-0.0159454345703125,
-0.00957489013671875,
-0.01001739501953125,
0.042083740234375,
-0.0374755859375,
-0.02960205078125,
0.0025691986083984375,
0.042999267578125,
0.038543701171875,
0.0294342041015625,
-0.08184814453125,
-0.00972747802734375,
0.0306854248046875,
-0.00787353515625,
0.01873779296875,
0.0310821533203125,
0.00508880615234375,
0.0506591796875,
0.045135498046875,
0.039093017578125,
-0.0236358642578125,
0.01091766357421875,
0.06500244140625,
-0.04412841796875,
-0.033477783203125,
-0.052520751953125,
0.044830322265625,
-0.03240966796875,
-0.037689208984375,
0.06109619140625,
0.047637939453125,
0.044891357421875,
0.005542755126953125,
0.07928466796875,
-0.0147705078125,
0.052154541015625,
-0.026580810546875,
0.057769775390625,
-0.042266845703125,
0.01361083984375,
-0.0276947021484375,
-0.0160675048828125,
-0.0152130126953125,
0.0491943359375,
-0.01561737060546875,
-0.004787445068359375,
0.050384521484375,
0.05767822265625,
0.01385498046875,
0.00870513916015625,
0.00548553466796875,
0.032745361328125,
0.029083251953125,
0.051483154296875,
0.02978515625,
-0.054168701171875,
0.038848876953125,
-0.0285186767578125,
-0.021453857421875,
-0.0226898193359375,
-0.03338623046875,
-0.058746337890625,
-0.046875,
-0.0389404296875,
-0.050994873046875,
-0.00473785400390625,
0.0997314453125,
0.053955078125,
-0.0677490234375,
-0.0255584716796875,
0.0261993408203125,
0.00557708740234375,
-0.037078857421875,
-0.0184173583984375,
0.040618896484375,
0.004032135009765625,
-0.048919677734375,
0.007221221923828125,
0.0083465576171875,
0.0133819580078125,
0.000560760498046875,
-0.0006031990051269531,
-0.0268402099609375,
-0.00885772705078125,
0.031707763671875,
0.03448486328125,
-0.0421142578125,
0.001857757568359375,
0.01262664794921875,
-0.0155181884765625,
0.030364990234375,
0.036651611328125,
-0.037322998046875,
0.0411376953125,
0.03228759765625,
0.01666259765625,
0.033050537109375,
0.0005135536193847656,
0.0465087890625,
-0.0220947265625,
0.01415252685546875,
0.02197265625,
0.03936767578125,
0.01448822021484375,
-0.04290771484375,
0.037322998046875,
0.0279388427734375,
-0.046142578125,
-0.056549072265625,
-0.01184844970703125,
-0.09588623046875,
-0.006023406982421875,
0.10247802734375,
-0.018829345703125,
-0.0066375732421875,
-0.026123046875,
-0.043701171875,
0.033843994140625,
-0.050994873046875,
0.050140380859375,
0.0438232421875,
-0.0235595703125,
-0.00548553466796875,
-0.05352783203125,
0.05389404296875,
0.0167388916015625,
-0.0689697265625,
-0.01168060302734375,
0.0274200439453125,
0.018157958984375,
0.0010700225830078125,
0.07342529296875,
-0.0286865234375,
0.0184478759765625,
-0.0196075439453125,
-0.005115509033203125,
0.00787353515625,
0.0231170654296875,
-0.0117034912109375,
-0.00994110107421875,
-0.01494598388671875,
-0.027252197265625
]
] |
clarin-knext/fiqa-pl | 2023-06-07T08:23:07.000Z | [
"language:pl",
"arxiv:2305.19840",
"region:us"
] | clarin-knext | null | null | 0 | 1,016 | 2023-06-06T17:48:25 | ---
language:
- pl
---
Part of **BEIR-PL: Zero Shot Information Retrieval Benchmark for the Polish Language**.
Link to arxiv: https://arxiv.org/pdf/2305.19840.pdf
Contact: konrad.wojtasik@pwr.edu.pl | 201 | [
[
-0.0153961181640625,
-0.0628662109375,
0.03546142578125,
0.0164031982421875,
-0.0221710205078125,
-0.0103607177734375,
-0.01160430908203125,
-0.034515380859375,
-0.0013275146484375,
0.0286102294921875,
-0.03826904296875,
-0.048126220703125,
-0.0290069580078125,
-0.00336456298828125,
-0.0195465087890625,
0.04925537109375,
0.0023403167724609375,
0.026031494140625,
0.026641845703125,
-0.0216827392578125,
-0.003940582275390625,
-0.043060302734375,
-0.0230255126953125,
-0.007442474365234375,
0.0455322265625,
0.042510986328125,
0.0158843994140625,
0.032958984375,
0.0635986328125,
0.01160430908203125,
0.025604248046875,
-0.03326416015625,
-0.038055419921875,
0.0245513916015625,
-0.012115478515625,
-0.02630615234375,
-0.01422119140625,
-0.01448822021484375,
0.0787353515625,
0.0635986328125,
-0.0026226043701171875,
0.0230255126953125,
-0.0222930908203125,
0.0574951171875,
-0.07666015625,
0.003131866455078125,
-0.03521728515625,
0.0142974853515625,
-0.07177734375,
-0.0037517547607421875,
-0.04705810546875,
-0.003997802734375,
-0.032867431640625,
-0.0259246826171875,
0.0310516357421875,
0.006618499755859375,
0.081787109375,
-0.017364501953125,
-0.01447296142578125,
0.0156707763671875,
-0.054779052734375,
0.05133056640625,
-0.032470703125,
0.038299560546875,
0.016845703125,
0.026641845703125,
-0.0217437744140625,
-0.03497314453125,
-0.0362548828125,
0.00885009765625,
0.0157623291015625,
0.020965576171875,
-0.0229644775390625,
-0.001064300537109375,
0.0301513671875,
0.0213470458984375,
-0.052520751953125,
-0.032623291015625,
-0.03411865234375,
-0.0169830322265625,
0.044647216796875,
0.022857666015625,
0.01261138916015625,
0.01123046875,
-0.020050048828125,
-0.026763916015625,
-0.049041748046875,
-0.00913238525390625,
0.040924072265625,
0.036865234375,
-0.006221771240234375,
0.06353759765625,
-0.057891845703125,
0.07427978515625,
-0.005298614501953125,
0.0082855224609375,
0.06634521484375,
-0.0377197265625,
0.0017261505126953125,
0.0131683349609375,
0.064697265625,
0.018524169921875,
-0.003566741943359375,
-0.0143585205078125,
-0.00615692138671875,
-0.01398468017578125,
-0.005878448486328125,
-0.0618896484375,
-0.030517578125,
-0.0039520263671875,
-0.0176849365234375,
0.0134735107421875,
0.0419921875,
-0.050750732421875,
0.01322174072265625,
0.0294342041015625,
0.03790283203125,
-0.04034423828125,
-0.008331298828125,
0.00997161865234375,
-0.023651123046875,
0.0275421142578125,
-0.00872039794921875,
-0.024322509765625,
0.01238250732421875,
0.02813720703125,
0.049102783203125,
0.01074981689453125,
-0.0322265625,
-0.0682373046875,
0.00295257568359375,
-0.0302886962890625,
0.06536865234375,
-0.0279083251953125,
-0.02703857421875,
0.01020050048828125,
0.00336456298828125,
0.006069183349609375,
-0.028839111328125,
0.06658935546875,
-0.0294647216796875,
0.01557159423828125,
-0.02679443359375,
-0.0367431640625,
0.0005888938903808594,
0.01145172119140625,
-0.0255126953125,
0.1065673828125,
0.0218505859375,
-0.058807373046875,
0.0252532958984375,
-0.028350830078125,
-0.0260162353515625,
0.032867431640625,
-0.0166015625,
-0.019989013671875,
0.009063720703125,
-0.0277252197265625,
0.0109405517578125,
0.0006313323974609375,
-0.006473541259765625,
-0.043914794921875,
-0.035858154296875,
0.0013179779052734375,
-0.00737762451171875,
0.07550048828125,
0.0108184814453125,
-0.00402069091796875,
-0.0078125,
-0.059295654296875,
0.0199127197265625,
0.013702392578125,
-0.024871826171875,
-0.0229949951171875,
-0.020172119140625,
0.0205078125,
0.03289794921875,
0.048736572265625,
-0.097900390625,
0.003772735595703125,
-0.03582763671875,
-0.019775390625,
-0.004039764404296875,
0.0034465789794921875,
0.011749267578125,
-0.0077972412109375,
0.01373291015625,
-0.007671356201171875,
0.0135498046875,
0.0024127960205078125,
-0.03790283203125,
-0.048126220703125,
-0.003307342529296875,
0.0234527587890625,
0.05767822265625,
-0.05963134765625,
0.0232391357421875,
0.003936767578125,
-0.052947998046875,
-0.03515625,
0.0084991455078125,
0.044219970703125,
0.06396484375,
0.0220184326171875,
-0.0279693603515625,
-0.039825439453125,
-0.0726318359375,
-0.0034046173095703125,
-0.028167724609375,
-0.00997161865234375,
0.01013946533203125,
0.03564453125,
0.03533935546875,
0.05096435546875,
-0.03411865234375,
-0.01788330078125,
-0.01568603515625,
0.028839111328125,
0.04730224609375,
0.01136016845703125,
0.052276611328125,
-0.044464111328125,
-0.08355712890625,
-0.009857177734375,
-0.050140380859375,
-0.035675048828125,
0.03131103515625,
-0.0217132568359375,
0.0238189697265625,
0.01557159423828125,
-0.05560302734375,
0.0408935546875,
0.002300262451171875,
-0.053802490234375,
0.04205322265625,
-0.020050048828125,
0.0182952880859375,
-0.03619384765625,
0.04864501953125,
-0.0225830078125,
-0.0059356689453125,
-0.05364990234375,
0.01294708251953125,
0.039794921875,
0.00263214111328125,
-0.06439208984375,
0.049041748046875,
-0.05322265625,
-0.01812744140625,
-0.012664794921875,
0.02496337890625,
-0.0135498046875,
0.017822265625,
0.0019140243530273438,
0.0736083984375,
0.052398681640625,
-0.03143310546875,
0.01611328125,
0.04241943359375,
-0.0421142578125,
0.05474853515625,
-0.04010009765625,
-0.0106201171875,
-0.005279541015625,
-0.0112762451171875,
-0.0567626953125,
-0.0109100341796875,
0.03460693359375,
-0.04205322265625,
0.02435302734375,
-0.004669189453125,
-0.0643310546875,
-0.0181121826171875,
-0.04461669921875,
0.024688720703125,
0.021636962890625,
-0.00043487548828125,
0.00653076171875,
0.03546142578125,
-0.0237579345703125,
-0.06890869140625,
-0.04217529296875,
0.0190277099609375,
0.019073486328125,
-0.0291748046875,
0.03814697265625,
-0.03155517578125,
-0.0245513916015625,
0.01450347900390625,
0.017608642578125,
-0.01702880859375,
-0.012603759765625,
0.006542205810546875,
0.040679931640625,
-0.041015625,
0.006122589111328125,
-0.0323486328125,
-0.0179901123046875,
-0.0250244140625,
0.029144287109375,
0.054351806640625,
-0.019378662109375,
-0.0290985107421875,
-0.007175445556640625,
0.04473876953125,
0.0195465087890625,
0.003376007080078125,
0.05126953125,
0.043853759765625,
-0.004253387451171875,
0.01503753662109375,
-0.0589599609375,
0.01153564453125,
-0.0285797119140625,
0.0147857666015625,
-0.0271148681640625,
-0.0297088623046875,
0.049774169921875,
0.0290985107421875,
-0.022705078125,
0.04534912109375,
0.040618896484375,
-0.00984954833984375,
0.05615234375,
0.050537109375,
-0.01029205322265625,
0.0467529296875,
-0.005268096923828125,
0.014495849609375,
-0.058074951171875,
-0.0271759033203125,
-0.050048828125,
-0.004817962646484375,
-0.0201873779296875,
-0.01305389404296875,
0.014068603515625,
0.0240631103515625,
-0.04254150390625,
0.034637451171875,
-0.004852294921875,
0.035675048828125,
0.0506591796875,
-0.0009965896606445312,
0.0168609619140625,
-0.01100921630859375,
-0.0280609130859375,
-0.002948760986328125,
-0.05474853515625,
-0.00357818603515625,
0.05413818359375,
-0.01194000244140625,
0.028045654296875,
0.016204833984375,
0.04638671875,
0.00489044189453125,
-0.005702972412109375,
-0.04388427734375,
0.05828857421875,
-0.0259246826171875,
-0.0760498046875,
-0.021270751953125,
-0.01195526123046875,
-0.0748291015625,
0.0201416015625,
-0.01111602783203125,
-0.054046630859375,
0.0296173095703125,
-0.01203155517578125,
-0.016357421875,
0.02899169921875,
-0.035186767578125,
0.06512451171875,
-0.016204833984375,
-0.03741455078125,
0.0037441253662109375,
-0.06005859375,
-0.006542205810546875,
-0.00072479248046875,
0.0090484619140625,
-0.04754638671875,
-0.018280029296875,
0.03253173828125,
-0.02313232421875,
0.024261474609375,
-0.03125,
0.031219482421875,
0.0131683349609375,
0.01910400390625,
0.01242828369140625,
-0.03802490234375,
-0.048095703125,
0.037139892578125,
0.0117340087890625,
-0.055389404296875,
-0.0037250518798828125,
0.03460693359375,
-0.026336669921875,
-0.0110626220703125,
-0.052001953125,
-0.04241943359375,
-0.013580322265625,
0.051116943359375,
0.041015625,
0.037750244140625,
-0.042083740234375,
0.04534912109375,
0.033294677734375,
-0.0200653076171875,
0.054931640625,
0.09954833984375,
-0.01006317138671875,
-0.0079345703125,
0.0306854248046875,
0.0233612060546875,
-0.009033203125,
0.0467529296875,
-0.0097198486328125,
-0.01239776611328125,
-0.040802001953125,
-0.03607177734375,
0.0374755859375,
-0.0389404296875,
-0.036834716796875,
-0.033599853515625,
-0.026763916015625,
-0.022216796875,
0.004932403564453125,
-0.028289794921875,
-0.0262603759765625,
-0.005031585693359375,
0.0038509368896484375,
0.0176239013671875,
0.035888671875,
-0.026580810546875,
0.015411376953125,
-0.061004638671875,
0.01245880126953125,
-0.03240966796875,
0.051727294921875,
-0.0261688232421875,
-0.033294677734375,
-0.0299072265625,
-0.01033782958984375,
-0.012359619140625,
-0.0477294921875,
0.04833984375,
0.02899169921875,
0.059417724609375,
0.01509857177734375,
0.043243408203125,
0.0293731689453125,
-0.05059814453125,
0.069580078125,
0.020050048828125,
-0.048614501953125,
0.053802490234375,
-0.03082275390625,
0.051666259765625,
0.07489013671875,
0.0267181396484375,
-0.019683837890625,
-0.029266357421875,
-0.03839111328125,
-0.0748291015625,
0.049041748046875,
0.006381988525390625,
0.020294189453125,
-0.036865234375,
0.00370025634765625,
0.01015472412109375,
-0.0005269050598144531,
-0.0230255126953125,
-0.0404052734375,
0.01910400390625,
-0.016571044921875,
0.0102996826171875,
-0.04998779296875,
0.00429534912109375,
-0.01422119140625,
0.07427978515625,
0.0178070068359375,
0.031280517578125,
0.0261077880859375,
-0.01904296875,
-0.0289764404296875,
0.0295562744140625,
0.054473876953125,
0.04510498046875,
-0.054412841796875,
0.0005793571472167969,
0.002044677734375,
-0.035308837890625,
-0.00798797607421875,
0.004711151123046875,
-0.0250244140625,
0.03411865234375,
0.016326904296875,
0.038543701171875,
0.0303497314453125,
-0.058258056640625,
0.06500244140625,
0.00843048095703125,
-0.0357666015625,
-0.03948974609375,
-0.0050048828125,
-0.027191162109375,
0.018951416015625,
0.0548095703125,
-0.031005859375,
0.0218963623046875,
-0.0418701171875,
0.0421142578125,
0.03228759765625,
-0.04833984375,
-0.021240234375,
0.028533935546875,
0.0020427703857421875,
-0.02178955078125,
0.0478515625,
-0.0247650146484375,
-0.01806640625,
0.003162384033203125,
0.04449462890625,
0.03729248046875,
-0.00815582275390625,
0.006946563720703125,
0.04705810546875,
-0.00008362531661987305,
-0.0002238750457763672,
0.056488037109375,
-0.004550933837890625,
-0.059722900390625,
-0.0223846435546875,
-0.0357666015625,
-0.0306549072265625,
0.0028781890869140625,
-0.04632568359375,
0.0235137939453125,
-0.00992584228515625,
-0.0188140869140625,
0.003513336181640625,
0.00887298583984375,
-0.03900146484375,
-0.017303466796875,
0.00923919677734375,
0.091064453125,
-0.052581787109375,
0.080078125,
0.03350830078125,
-0.04931640625,
-0.0187225341796875,
-0.0096588134765625,
-0.004756927490234375,
-0.04901123046875,
0.069580078125,
-0.020172119140625,
-0.0245208740234375,
-0.02874755859375,
-0.0227508544921875,
-0.06109619140625,
0.0535888671875,
0.041961669921875,
-0.049530029296875,
0.03167724609375,
0.0040283203125,
0.046051025390625,
-0.002002716064453125,
0.00542449951171875,
0.0162811279296875,
0.036865234375,
-0.0009479522705078125,
-0.06585693359375,
-0.0258636474609375,
-0.05572509765625,
-0.0188446044921875,
0.047119140625,
-0.03680419921875,
0.073486328125,
0.0024566650390625,
-0.033172607421875,
0.018646240234375,
0.029693603515625,
0.0019464492797851562,
0.032958984375,
-0.0027027130126953125,
0.047119140625,
0.026580810546875,
-0.0188446044921875,
0.08056640625,
-0.055908203125,
0.028656005859375,
0.09637451171875,
-0.03271484375,
0.10577392578125,
0.037933349609375,
-0.025970458984375,
0.0335693359375,
0.0248565673828125,
-0.0258636474609375,
0.053466796875,
-0.019775390625,
-0.03631591796875,
-0.0040740966796875,
-0.01163482666015625,
-0.027618408203125,
0.0223388671875,
0.00858306884765625,
-0.0043792724609375,
-0.04547119140625,
-0.0183563232421875,
-0.00927734375,
-0.0010919570922851562,
-0.00940704345703125,
0.04901123046875,
-0.02008056640625,
-0.026580810546875,
0.018341064453125,
-0.0102691650390625,
0.0347900390625,
-0.0526123046875,
-0.0013027191162109375,
-0.01061248779296875,
0.014007568359375,
-0.004032135009765625,
-0.09820556640625,
0.040283203125,
0.00031113624572753906,
-0.02337646484375,
-0.007488250732421875,
0.06719970703125,
-0.037139892578125,
-0.0499267578125,
0.043701171875,
0.04345703125,
0.03887939453125,
-0.0024776458740234375,
-0.0513916015625,
-0.00643157958984375,
-0.01331329345703125,
-0.00836181640625,
0.03173828125,
0.0341796875,
0.01015472412109375,
0.0379638671875,
0.0295562744140625,
0.0335693359375,
0.01557159423828125,
0.005855560302734375,
0.03265380859375,
-0.06304931640625,
-0.005405426025390625,
-0.0496826171875,
0.037139892578125,
-0.02752685546875,
-0.022613525390625,
0.0677490234375,
0.08709716796875,
0.09490966796875,
-0.0316162109375,
0.04583740234375,
-0.031646728515625,
0.0582275390625,
-0.006206512451171875,
0.057220458984375,
-0.0254364013671875,
-0.0199127197265625,
-0.00717926025390625,
-0.07373046875,
-0.06512451171875,
0.045166015625,
-0.0172576904296875,
-0.03125,
0.045928955078125,
0.052886962890625,
-0.004486083984375,
-0.045135498046875,
0.067138671875,
0.01641845703125,
-0.0309600830078125,
0.01071929931640625,
0.0369873046875,
-0.050933837890625,
0.045166015625,
-0.052215576171875,
0.0017604827880859375,
-0.03436279296875,
-0.07080078125,
-0.033233642578125,
-0.040618896484375,
-0.026580810546875,
-0.003910064697265625,
0.0174102783203125,
0.053131103515625,
0.0308685302734375,
-0.0819091796875,
-0.03570556640625,
0.0174407958984375,
-0.0132904052734375,
0.006549835205078125,
-0.01163482666015625,
0.0223846435546875,
-0.0255584716796875,
-0.026824951171875,
0.030517578125,
0.04827880859375,
-0.01493072509765625,
0.0239410400390625,
0.0017490386962890625,
-0.051666259765625,
-0.0031948089599609375,
0.03839111328125,
0.037322998046875,
-0.045440673828125,
-0.0242462158203125,
0.006870269775390625,
-0.026885986328125,
0.039642333984375,
0.047454833984375,
-0.028472900390625,
0.03607177734375,
0.066162109375,
0.010986328125,
0.05438232421875,
-0.008819580078125,
0.021026611328125,
-0.0640869140625,
0.0198211669921875,
0.0096893310546875,
0.03619384765625,
0.033172607421875,
-0.01308441162109375,
0.058074951171875,
0.0247650146484375,
-0.025299072265625,
-0.0621337890625,
-0.0114288330078125,
-0.1070556640625,
-0.018646240234375,
0.05560302734375,
-0.01873779296875,
-0.0177001953125,
-0.02313232421875,
-0.0181884765625,
0.0277252197265625,
-0.046600341796875,
0.04425048828125,
0.058837890625,
-0.0145111083984375,
-0.02801513671875,
-0.0626220703125,
-0.0050201416015625,
0.0018606185913085938,
-0.0280609130859375,
0.0031986236572265625,
0.027008056640625,
0.046478271484375,
0.01337432861328125,
0.05712890625,
-0.034515380859375,
0.0177764892578125,
0.02606201171875,
0.039794921875,
-0.00829315185546875,
-0.0116119384765625,
-0.00940704345703125,
0.02447509765625,
0.0092010498046875,
-0.00653076171875
]
] |
mc_taco | 2023-01-25T14:40:09.000Z | [
"task_categories:question-answering",
"task_ids:multiple-choice-qa",
"annotations_creators:crowdsourced",
"annotations_creators:machine-generated",
"language_creators:crowdsourced",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:en",
"license:unknown",
"arxiv:1909.03065",
"region:us"
] | null | MC-TACO (Multiple Choice TemporAl COmmonsense) is a dataset of 13k question-answer
pairs that require temporal commonsense comprehension. A system receives a sentence
providing context information, a question designed to require temporal commonsense
knowledge, and multiple candidate answers. More than one candidate answer can be plausible.
The task is framed as binary classification: givent he context, the question,
and the candidate answer, the task is to determine whether the candidate
answer is plausible ("yes") or not ("no"). | @inproceedings{ZKNR19,
author = {Ben Zhou, Daniel Khashabi, Qiang Ning and Dan Roth},
title = {“Going on a vacation” takes longer than “Going for a walk”: A Study of Temporal Commonsense Understanding },
booktitle = {EMNLP},
year = {2019},
} | 0 | 1,012 | 2022-03-02T23:29:22 | ---
annotations_creators:
- crowdsourced
- machine-generated
language_creators:
- crowdsourced
- found
language:
- en
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- question-answering
task_ids:
- multiple-choice-qa
paperswithcode_id: mc-taco
pretty_name: MC-TACO
dataset_info:
features:
- name: sentence
dtype: string
- name: question
dtype: string
- name: answer
dtype: string
- name: label
dtype:
class_label:
names:
'0': 'no'
'1': 'yes'
- name: category
dtype:
class_label:
names:
'0': Event Duration
'1': Event Ordering
'2': Frequency
'3': Typical Time
'4': Stationarity
config_name: plain_text
splits:
- name: test
num_bytes: 1785553
num_examples: 9442
- name: validation
num_bytes: 713023
num_examples: 3783
download_size: 2385137
dataset_size: 2498576
---
# Dataset Card for MC-TACO
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [MC-TACO](https://cogcomp.seas.upenn.edu/page/resource_view/125)
- **Repository:** [Github repository](https://github.com/CogComp/MCTACO)
- **Paper:** ["Going on a vacation" takes longer than "Going for a walk": A Study of Temporal Commonsense Understanding](https://arxiv.org/abs/1909.03065)
- **Leaderboard:** [AI2 Leaderboard](https://leaderboard.allenai.org/mctaco)
### Dataset Summary
MC-TACO (Multiple Choice TemporAl COmmonsense) is a dataset of 13k question-answer pairs that require temporal commonsense comprehension. A system receives a sentence providing context information, a question designed to require temporal commonsense knowledge, and multiple candidate answers. More than one candidate answer can be plausible.
### Supported Tasks and Leaderboards
The task is framed as binary classification: givent he context, the question, and the candidate answer, the task is to determine whether the candidate answer is plausible ("yes") or not ("no").
Performance is measured using two metrics:
- Exact Match -- the average number of questions for which all the candidate answers are predicted correctly.
- F1 -- is slightly more relaxed than EM. It measures the overlap between one’s predictions and the ground truth, by computing the geometric mean of Precision and Recall.
### Languages
The text in the dataset is in English. The associated BCP-47 code is `en`.
## Dataset Structure
### Data Instances
An example looks like this:
```
{
"sentence": "However, more recently, it has been suggested that it may date from earlier than Abdalonymus' death.",
"question": "How often did Abdalonymus die?",
"answer": "every two years",
"label": "no",
"category": "Frequency",
}
```
### Data Fields
All fields are strings:
- `sentence`: a sentence (or context) on which the question is based
- `question`: a question querying some temporal commonsense knowledge
- `answer`: a potential answer to the question (all lowercased)
- `label`: whether the answer is a correct. "yes" indicates the answer is correct/plaussible, "no" otherwise
- `category`: the temporal category the question belongs to (among "Event Ordering", "Event Duration", "Frequency", "Stationarity", and "Typical Time")
### Data Splits
The development set contains 561 questions and 3,783 candidate answers. The test set contains 1,332 questions and 9,442 candidate answers.
From the original repository:
*Note that there is no training data, and we provide the dev set as the only source of supervision. The rationale is that we believe a successful system has to bring in a huge amount of world knowledge and derive commonsense understandings prior to the current task evaluation. We therefore believe that it is not reasonable to expect a system to be trained solely on this data, and we think of the development data as only providing a definition of the task.*
## Dataset Creation
### Curation Rationale
MC-TACO is used as a testbed to study the temporal commonsense understanding on NLP systems.
### Source Data
From the original paper:
*The context sentences are randomly selected from [MultiRC](https://www.aclweb.org/anthology/N18-1023/) (from each of its 9 domains). For each sentence, we use crowdsourcing on Amazon Mechanical Turk to collect questions and candidate answers (both correct and wrong ones).*
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
From the original paper:
*To ensure the quality of the results, we limit the annotations to native speakers and use qualification tryouts.*
#### Annotation process
The crowdsourced construction/annotation of the dataset follows 4 steps described in Section 3 of the [paper](https://arxiv.org/abs/1909.03065): question generation, question verification, candidate answer expansion and answer labeling.
#### Who are the annotators?
Paid crowdsourcers.
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
Unknwon
### Citation Information
```
@inproceedings{ZKNR19,
author = {Ben Zhou, Daniel Khashabi, Qiang Ning and Dan Roth},
title = {“Going on a vacation” takes longer than “Going for a walk”: A Study of Temporal Commonsense Understanding },
booktitle = {EMNLP},
year = {2019},
}
```
### Contributions
Thanks to [@VictorSanh](https://github.com/VictorSanh) for adding this dataset. | 6,840 | [
[
-0.034210205078125,
-0.05523681640625,
0.024444580078125,
0.01314544677734375,
-0.012481689453125,
-0.005489349365234375,
-0.0152130126953125,
-0.031768798828125,
0.022796630859375,
0.0228729248046875,
-0.047515869140625,
-0.046417236328125,
-0.037017822265625,
0.020660400390625,
0.004108428955078125,
0.08758544921875,
0.004467010498046875,
-0.017059326171875,
-0.0208892822265625,
-0.0198974609375,
-0.016265869140625,
-0.0222015380859375,
-0.065185546875,
-0.00936126708984375,
0.052337646484375,
0.043304443359375,
0.045928955078125,
0.069580078125,
0.0162200927734375,
0.01416015625,
-0.0150604248046875,
0.01407623291015625,
-0.028350830078125,
-0.02313232421875,
-0.035980224609375,
-0.01053619384765625,
-0.031402587890625,
0.0031261444091796875,
0.03369140625,
0.052001953125,
-0.00713348388671875,
0.04327392578125,
-0.0003254413604736328,
0.03631591796875,
-0.049072265625,
0.028533935546875,
-0.039154052734375,
0.00772857666015625,
-0.0185089111328125,
-0.0201263427734375,
-0.00760650634765625,
-0.03411865234375,
-0.0104522705078125,
-0.06781005859375,
0.01107025146484375,
0.004482269287109375,
0.065673828125,
0.0091705322265625,
-0.0489501953125,
-0.0225982666015625,
-0.0219879150390625,
0.0655517578125,
-0.054412841796875,
0.0186614990234375,
0.04888916015625,
0.0206298828125,
0.007598876953125,
-0.06353759765625,
-0.0740966796875,
-0.00966644287109375,
-0.00567626953125,
0.0241241455078125,
0.009765625,
-0.01898193359375,
0.030517578125,
0.0150146484375,
-0.039093017578125,
0.01201629638671875,
-0.03692626953125,
-0.006439208984375,
0.05010986328125,
0.025299072265625,
0.020721435546875,
-0.038909912109375,
-0.039825439453125,
-0.0082244873046875,
-0.0212249755859375,
0.01496124267578125,
0.025726318359375,
0.01800537109375,
-0.034759521484375,
0.047515869140625,
-0.0298309326171875,
0.035125732421875,
-0.01412200927734375,
-0.006443023681640625,
0.0268402099609375,
-0.05499267578125,
-0.00592803955078125,
-0.0089263916015625,
0.058837890625,
0.052032470703125,
0.0231475830078125,
-0.005954742431640625,
-0.0020389556884765625,
-0.00994873046875,
-0.0080108642578125,
-0.040771484375,
-0.01305389404296875,
0.0372314453125,
-0.022308349609375,
-0.0279388427734375,
0.01153564453125,
-0.0645751953125,
-0.00397491455078125,
-0.0209197998046875,
0.0068817138671875,
-0.0136871337890625,
-0.040802001953125,
-0.002288818359375,
-0.0227203369140625,
0.014251708984375,
0.00814056396484375,
-0.052154541015625,
0.0352783203125,
0.0443115234375,
0.07269287109375,
-0.0167388916015625,
-0.037445068359375,
-0.023284912109375,
0.0249786376953125,
-0.01141357421875,
0.042877197265625,
-0.026702880859375,
-0.03375244140625,
-0.0168304443359375,
0.0279083251953125,
-0.014312744140625,
-0.021026611328125,
0.048187255859375,
-0.0290679931640625,
0.025848388671875,
-0.056427001953125,
-0.021331787109375,
0.00464630126953125,
0.036773681640625,
-0.052734375,
0.08978271484375,
0.00359344482421875,
-0.0638427734375,
0.0416259765625,
-0.08056640625,
-0.022308349609375,
-0.0002161264419555664,
0.0013036727905273438,
-0.01206207275390625,
-0.032012939453125,
0.0270233154296875,
0.0404052734375,
-0.0152435302734375,
0.037933349609375,
-0.0183868408203125,
-0.009765625,
0.03369140625,
-0.0189361572265625,
0.0933837890625,
0.036895751953125,
-0.027862548828125,
-0.021240234375,
-0.042572021484375,
-0.002452850341796875,
0.0193328857421875,
-0.0154876708984375,
-0.018951416015625,
-0.006610870361328125,
0.0110931396484375,
0.02587890625,
0.0215301513671875,
-0.04296875,
0.006862640380859375,
-0.0138092041015625,
0.03753662109375,
0.06048583984375,
0.0230712890625,
0.0241241455078125,
-0.04107666015625,
0.0260467529296875,
0.0166778564453125,
0.0335693359375,
0.005245208740234375,
-0.037261962890625,
-0.03656005859375,
0.01247406005859375,
0.0171356201171875,
0.043792724609375,
-0.0665283203125,
0.03326416015625,
-0.04510498046875,
-0.033050537109375,
-0.0032138824462890625,
-0.006542205810546875,
0.040496826171875,
0.06048583984375,
0.0390625,
-0.0172271728515625,
-0.036468505859375,
-0.052520751953125,
-0.00005125999450683594,
-0.01290130615234375,
0.01020050048828125,
0.036346435546875,
0.072265625,
0.00534820556640625,
0.05706787109375,
-0.04205322265625,
-0.00457000732421875,
-0.00669097900390625,
-0.00978851318359375,
0.01421356201171875,
0.049468994140625,
0.0287933349609375,
-0.06793212890625,
-0.01788330078125,
-0.00496673583984375,
-0.052337646484375,
-0.004444122314453125,
-0.006511688232421875,
-0.00007301568984985352,
0.017669677734375,
0.035369873046875,
-0.0192108154296875,
0.0207977294921875,
0.0380859375,
-0.044464111328125,
0.045654296875,
0.006168365478515625,
0.03155517578125,
-0.095703125,
0.0308685302734375,
-0.0019435882568359375,
0.005298614501953125,
-0.0279083251953125,
-0.00862884521484375,
-0.00786590576171875,
-0.0029201507568359375,
-0.048614501953125,
0.07354736328125,
-0.022705078125,
0.0025272369384765625,
0.0167999267578125,
0.0196533203125,
0.004131317138671875,
0.058563232421875,
0.0014848709106445312,
0.050994873046875,
0.014373779296875,
-0.06640625,
0.0141754150390625,
0.00972747802734375,
-0.0247039794921875,
0.04248046875,
-0.062225341796875,
0.0066070556640625,
-0.007343292236328125,
0.020050048828125,
-0.07012939453125,
-0.0209503173828125,
0.0338134765625,
-0.053924560546875,
-0.01505279541015625,
-0.0189208984375,
-0.059234619140625,
-0.0272064208984375,
-0.0154571533203125,
0.0330810546875,
0.007843017578125,
-0.027679443359375,
0.01593017578125,
0.033966064453125,
0.0005145072937011719,
-0.05615234375,
-0.0831298828125,
-0.004852294921875,
-0.0079803466796875,
-0.035369873046875,
0.02569580078125,
-0.0004420280456542969,
-0.02825927734375,
0.0134429931640625,
-0.0032863616943359375,
-0.01806640625,
0.0019474029541015625,
0.0081024169921875,
0.0029697418212890625,
-0.0016689300537109375,
0.021881103515625,
0.01111602783203125,
-0.0031604766845703125,
-0.0016412734985351562,
-0.01214599609375,
0.037261962890625,
-0.00211334228515625,
-0.006130218505859375,
-0.037384033203125,
0.01983642578125,
0.0308380126953125,
-0.01293182373046875,
0.059814453125,
0.058837890625,
-0.03143310546875,
0.01141357421875,
-0.042236328125,
-0.005695343017578125,
-0.033538818359375,
0.01097869873046875,
-0.01558685302734375,
-0.05255126953125,
0.057861328125,
0.0299072265625,
0.0157318115234375,
0.06005859375,
0.03179931640625,
-0.0032749176025390625,
0.037445068359375,
0.003131866455078125,
0.01800537109375,
0.036834716796875,
-0.044281005859375,
-0.032196044921875,
-0.0589599609375,
-0.054931640625,
-0.0404052734375,
-0.03424072265625,
-0.054840087890625,
-0.039886474609375,
0.01470947265625,
-0.0165252685546875,
-0.040008544921875,
0.02276611328125,
-0.035919189453125,
0.04290771484375,
0.04595947265625,
0.0186309814453125,
0.019622802734375,
-0.0253753662109375,
-0.0157318115234375,
-0.001407623291015625,
-0.0556640625,
-0.040313720703125,
0.08111572265625,
0.0203857421875,
0.01483917236328125,
0.018829345703125,
0.0443115234375,
0.02569580078125,
0.0006327629089355469,
-0.0310211181640625,
0.0455322265625,
-0.00399017333984375,
-0.06292724609375,
-0.038970947265625,
-0.047943115234375,
-0.078857421875,
-0.006587982177734375,
-0.01300811767578125,
-0.046417236328125,
0.032470703125,
0.00128936767578125,
-0.0258331298828125,
0.035003662109375,
-0.07745361328125,
0.07763671875,
-0.023193359375,
-0.034088134765625,
0.004467010498046875,
-0.0687255859375,
0.0236053466796875,
0.0228118896484375,
0.0301055908203125,
-0.018951416015625,
-0.034942626953125,
0.09161376953125,
-0.03570556640625,
0.0780029296875,
-0.0298614501953125,
0.022979736328125,
0.031707763671875,
-0.01107025146484375,
0.033966064453125,
0.038299560546875,
-0.0026493072509765625,
0.017364501953125,
0.032928466796875,
-0.050506591796875,
-0.04656982421875,
0.06219482421875,
-0.05523681640625,
-0.0100250244140625,
-0.039276123046875,
-0.032684326171875,
-0.0021152496337890625,
0.0247802734375,
0.020538330078125,
0.038787841796875,
-0.006549835205078125,
0.005847930908203125,
0.04669189453125,
-0.0219573974609375,
0.0440673828125,
0.0281524658203125,
0.00213623046875,
-0.052947998046875,
0.047393798828125,
0.0280914306640625,
0.016632080078125,
0.0460205078125,
0.02874755859375,
-0.040985107421875,
-0.0184326171875,
-0.0175018310546875,
0.0160369873046875,
-0.038177490234375,
-0.00798797607421875,
-0.0655517578125,
0.0057373046875,
-0.056182861328125,
-0.0008807182312011719,
-0.0143280029296875,
-0.057708740234375,
-0.027740478515625,
-0.0214691162109375,
0.038818359375,
0.0280914306640625,
-0.02398681640625,
0.0136871337890625,
-0.031463623046875,
0.023956298828125,
0.0266876220703125,
0.03155517578125,
0.014251708984375,
-0.0276031494140625,
-0.0230255126953125,
0.0193023681640625,
-0.016754150390625,
-0.055511474609375,
0.0079498291015625,
0.0016613006591796875,
0.052825927734375,
0.0224609375,
0.0199127197265625,
0.0455322265625,
0.0006895065307617188,
0.0869140625,
0.00927734375,
-0.048736572265625,
0.052947998046875,
-0.03875732421875,
0.03759765625,
0.06390380859375,
0.038482666015625,
-0.057464599609375,
-0.01169586181640625,
-0.0751953125,
-0.06201171875,
0.042877197265625,
0.019866943359375,
0.0062408447265625,
-0.035064697265625,
0.0133209228515625,
0.005062103271484375,
0.00849151611328125,
-0.06842041015625,
-0.03704833984375,
-0.0269622802734375,
0.0032291412353515625,
-0.007320404052734375,
-0.01090240478515625,
-0.0157623291015625,
-0.0298309326171875,
0.032806396484375,
0.0081634521484375,
0.03271484375,
0.025970458984375,
-0.0004508495330810547,
0.016632080078125,
0.0284423828125,
0.059722900390625,
0.0665283203125,
-0.0196380615234375,
0.0146026611328125,
0.03070068359375,
-0.045806884765625,
-0.012847900390625,
0.0002593994140625,
0.0006260871887207031,
-0.00681304931640625,
0.0279541015625,
0.038482666015625,
0.0113983154296875,
-0.039947509765625,
0.039825439453125,
0.01097869873046875,
-0.0168304443359375,
-0.046722412109375,
-0.0055084228515625,
-0.007633209228515625,
0.006591796875,
0.02886962890625,
-0.00605010986328125,
0.002269744873046875,
-0.042999267578125,
0.023529052734375,
-0.003326416015625,
-0.01493072509765625,
-0.017120361328125,
0.047576904296875,
0.0177154541015625,
-0.0155487060546875,
0.04034423828125,
-0.033966064453125,
-0.02020263671875,
0.06427001953125,
0.0211639404296875,
0.050201416015625,
0.0002321004867553711,
0.0280303955078125,
0.06219482421875,
0.03375244140625,
-0.00817108154296875,
0.031646728515625,
-0.0274505615234375,
-0.052886962890625,
-0.031524658203125,
-0.02496337890625,
-0.0208282470703125,
0.0018186569213867188,
-0.0570068359375,
0.01363372802734375,
-0.045257568359375,
-0.0232696533203125,
-0.0248870849609375,
0.0244293212890625,
-0.0682373046875,
0.0302734375,
-0.026275634765625,
0.07342529296875,
-0.0703125,
0.04547119140625,
0.040283203125,
-0.05718994140625,
-0.049285888671875,
-0.006221771240234375,
0.00019919872283935547,
-0.0667724609375,
0.0458984375,
-0.007266998291015625,
0.016357421875,
-0.0005736351013183594,
-0.051177978515625,
-0.050018310546875,
0.1051025390625,
-0.0055084228515625,
-0.0199432373046875,
-0.01080322265625,
0.004123687744140625,
0.037994384765625,
-0.01515960693359375,
0.0210418701171875,
0.0305328369140625,
0.0450439453125,
0.0134429931640625,
-0.06768798828125,
0.0179901123046875,
-0.02691650390625,
-0.0100860595703125,
0.002246856689453125,
-0.058380126953125,
0.0435791015625,
-0.0311126708984375,
-0.0279388427734375,
-0.021392822265625,
0.03875732421875,
0.02392578125,
0.06610107421875,
0.0364990234375,
0.0570068359375,
0.059967041015625,
-0.01093292236328125,
0.08026123046875,
-0.00817108154296875,
0.0225982666015625,
0.1033935546875,
0.0231170654296875,
0.053985595703125,
0.049468994140625,
-0.0197601318359375,
0.03094482421875,
0.0540771484375,
0.0004398822784423828,
0.03656005859375,
0.004077911376953125,
0.00621795654296875,
0.00568389892578125,
-0.0306396484375,
-0.042877197265625,
0.0272064208984375,
0.020111083984375,
-0.032928466796875,
-0.00446319580078125,
-0.0018768310546875,
0.0263519287109375,
0.0019702911376953125,
-0.0260772705078125,
0.04937744140625,
-0.00907135009765625,
-0.045135498046875,
0.0321044921875,
-0.00934600830078125,
0.050994873046875,
-0.02655029296875,
0.01180267333984375,
-0.027587890625,
-0.0221405029296875,
-0.026763916015625,
-0.08135986328125,
0.038177490234375,
-0.004970550537109375,
-0.01407623291015625,
-0.020538330078125,
0.0138397216796875,
-0.01360321044921875,
-0.03875732421875,
-0.0078277587890625,
0.041412353515625,
0.0207061767578125,
0.019073486328125,
-0.06390380859375,
-0.005096435546875,
-0.0115203857421875,
-0.00739288330078125,
0.0003266334533691406,
0.050628662109375,
0.007228851318359375,
0.048614501953125,
0.04522705078125,
0.009521484375,
0.002048492431640625,
-0.00199127197265625,
0.052032470703125,
-0.06085205078125,
-0.04473876953125,
-0.05035400390625,
0.0501708984375,
-0.025848388671875,
-0.0638427734375,
0.044708251953125,
0.05841064453125,
0.09246826171875,
0.00598907470703125,
0.046417236328125,
-0.037872314453125,
0.045257568359375,
-0.05023193359375,
0.047271728515625,
-0.045867919921875,
0.0231475830078125,
-0.02777099609375,
-0.0509033203125,
-0.0124053955078125,
0.012603759765625,
-0.042083740234375,
0.0240325927734375,
0.05804443359375,
0.0673828125,
-0.002010345458984375,
-0.006801605224609375,
0.0092926025390625,
-0.0019741058349609375,
0.00833892822265625,
0.054351806640625,
0.043212890625,
-0.039764404296875,
0.056060791015625,
-0.04315185546875,
-0.00972747802734375,
0.0026111602783203125,
-0.068115234375,
-0.05731201171875,
-0.07684326171875,
-0.03515625,
-0.0384521484375,
0.01263427734375,
0.06842041015625,
0.0279083251953125,
-0.05377197265625,
-0.0236968994140625,
0.00501251220703125,
0.0208587646484375,
-0.040130615234375,
-0.02703857421875,
0.035919189453125,
0.002407073974609375,
-0.048736572265625,
-0.012359619140625,
-0.01094818115234375,
0.0031986236572265625,
0.00801849365234375,
-0.0088958740234375,
-0.0426025390625,
-0.0221099853515625,
0.04022216796875,
0.04156494140625,
-0.048736572265625,
-0.0204925537109375,
0.0194549560546875,
-0.00606536865234375,
-0.00525665283203125,
0.0531005859375,
-0.042449951171875,
0.03436279296875,
0.0308074951171875,
0.023956298828125,
0.043212890625,
-0.0049591064453125,
0.0043792724609375,
-0.055816650390625,
0.0019474029541015625,
0.024261474609375,
0.00905609130859375,
0.0162200927734375,
-0.030242919921875,
0.057586669921875,
0.038238525390625,
-0.04132080078125,
-0.056182861328125,
0.0055084228515625,
-0.10565185546875,
-0.01059722900390625,
0.11431884765625,
0.0142974853515625,
-0.017669677734375,
-0.03369140625,
0.00640106201171875,
0.037445068359375,
-0.0489501953125,
0.056060791015625,
0.042083740234375,
-0.001659393310546875,
-0.0232086181640625,
-0.047515869140625,
0.0264129638671875,
-0.007480621337890625,
-0.058685302734375,
-0.00824737548828125,
0.0217437744140625,
0.034881591796875,
0.0103912353515625,
0.0682373046875,
-0.0243682861328125,
0.028594970703125,
0.006504058837890625,
-0.0026111602783203125,
-0.037322998046875,
-0.0011072158813476562,
0.0079498291015625,
0.0084228515625,
-0.0182342529296875,
-0.032440185546875
]
] |
shawhin/imdb-truncated | 2023-09-06T21:06:35.000Z | [
"region:us"
] | shawhin | null | null | 0 | 1,009 | 2023-09-06T15:55:01 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
dataset_info:
features:
- name: label
dtype: int64
- name: text
dtype: string
splits:
- name: train
num_bytes: 1310325
num_examples: 1000
- name: validation
num_bytes: 1329205
num_examples: 1000
download_size: 1688812
dataset_size: 2639530
---
# Dataset Card for "imdb-truncated"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 592 | [
[
-0.052520751953125,
-0.0117950439453125,
0.01247406005859375,
0.0008091926574707031,
-0.0302581787109375,
0.0282440185546875,
0.00630950927734375,
-0.008544921875,
0.0772705078125,
0.03387451171875,
-0.08087158203125,
-0.0277557373046875,
-0.05291748046875,
0.00023865699768066406,
-0.051239013671875,
0.09661865234375,
0.01313018798828125,
-0.00844573974609375,
-0.017059326171875,
-0.000028192996978759766,
-0.023590087890625,
-0.0280609130859375,
-0.0262451171875,
-0.0194854736328125,
0.050323486328125,
0.0692138671875,
0.04949951171875,
0.042938232421875,
0.06707763671875,
-0.0012025833129882812,
0.01543426513671875,
-0.00380706787109375,
-0.02655029296875,
-0.003910064697265625,
-0.00910186767578125,
-0.0126800537109375,
-0.0670166015625,
-0.00151824951171875,
0.071533203125,
0.0457763671875,
-0.0055389404296875,
0.06463623046875,
-0.007381439208984375,
0.055023193359375,
-0.033935546875,
0.0177154541015625,
-0.021331787109375,
0.00717926025390625,
-0.0491943359375,
-0.00675201416015625,
0.016815185546875,
-0.0222320556640625,
-0.02496337890625,
-0.051788330078125,
0.0100250244140625,
0.0156097412109375,
0.07861328125,
0.007640838623046875,
-0.00736236572265625,
0.004852294921875,
-0.042999267578125,
0.0097198486328125,
-0.0227203369140625,
0.002811431884765625,
0.041168212890625,
0.029022216796875,
0.007045745849609375,
-0.032470703125,
-0.0328369140625,
-0.00910186767578125,
-0.0012989044189453125,
0.0020809173583984375,
0.01629638671875,
0.01279449462890625,
0.0609130859375,
0.048431396484375,
-0.032958984375,
-0.00028514862060546875,
-0.067138671875,
-0.036529541015625,
0.041412353515625,
0.011016845703125,
0.00893402099609375,
-0.029205322265625,
0.00821685791015625,
-0.00884246826171875,
-0.047607421875,
-0.01708984375,
0.0509033203125,
0.004848480224609375,
-0.05633544921875,
0.08892822265625,
-0.0016765594482421875,
0.0127716064453125,
0.007335662841796875,
0.05438232421875,
0.029022216796875,
-0.0179443359375,
0.00469207763671875,
0.01166534423828125,
0.020538330078125,
0.058837890625,
0.028106689453125,
0.01538848876953125,
-0.0008459091186523438,
0.001495361328125,
0.01369476318359375,
-0.07122802734375,
-0.03125,
0.0306243896484375,
-0.035430908203125,
0.01171875,
0.033599853515625,
-0.06939697265625,
-0.030792236328125,
-0.01311492919921875,
0.023162841796875,
-0.00970458984375,
-0.0440673828125,
-0.0350341796875,
-0.0504150390625,
0.0214996337890625,
-0.0016069412231445312,
-0.04827880859375,
0.01617431640625,
0.03875732421875,
0.051727294921875,
0.01389312744140625,
-0.00638580322265625,
-0.06475830078125,
0.026397705078125,
0.013519287109375,
0.04962158203125,
-0.04351806640625,
-0.039459228515625,
0.0016279220581054688,
0.0239715576171875,
0.0170745849609375,
-0.026947021484375,
0.07568359375,
-0.0052490234375,
-0.01300811767578125,
-0.0273590087890625,
-0.03485107421875,
0.01263427734375,
0.0389404296875,
-0.0791015625,
0.07135009765625,
0.02996826171875,
-0.053680419921875,
0.03204345703125,
-0.0732421875,
-0.01065826416015625,
0.0248260498046875,
-0.00827789306640625,
-0.043975830078125,
0.01131439208984375,
0.01480865478515625,
0.0267791748046875,
-0.014923095703125,
0.034912109375,
-0.0517578125,
-0.02899169921875,
0.00835418701171875,
0.0067291259765625,
0.03704833984375,
0.0311126708984375,
0.02545166015625,
-0.0006418228149414062,
-0.070556640625,
-0.0076904296875,
0.00786590576171875,
-0.014495849609375,
-0.008453369140625,
-0.0309295654296875,
0.034942626953125,
0.0018415451049804688,
0.018157958984375,
-0.0390625,
0.038787841796875,
0.00212860107421875,
0.0018205642700195312,
0.03704833984375,
0.01277923583984375,
0.01396942138671875,
-0.035675048828125,
0.05694580078125,
0.00847625732421875,
0.0311126708984375,
-0.01053619384765625,
-0.0021209716796875,
-0.053009033203125,
-0.0108642578125,
0.040802001953125,
0.04833984375,
-0.031463623046875,
0.044464111328125,
-0.025054931640625,
-0.0323486328125,
-0.0239715576171875,
0.0030574798583984375,
0.00634002685546875,
0.005786895751953125,
0.0166168212890625,
-0.06744384765625,
-0.0687255859375,
-0.06292724609375,
0.00543975830078125,
-0.01319122314453125,
-0.006404876708984375,
0.02960205078125,
0.058258056640625,
-0.043731689453125,
0.0577392578125,
-0.04656982421875,
-0.03814697265625,
0.01303863525390625,
-0.02294921875,
0.0439453125,
0.068115234375,
0.042877197265625,
-0.04150390625,
-0.02471923828125,
-0.04571533203125,
-0.033233642578125,
0.0013189315795898438,
0.009033203125,
-0.029571533203125,
-0.0302276611328125,
0.0171966552734375,
-0.042816162109375,
0.044464111328125,
0.04498291015625,
-0.03265380859375,
0.031036376953125,
0.000008821487426757812,
0.019927978515625,
-0.08758544921875,
0.0230255126953125,
-0.007659912109375,
-0.021240234375,
-0.00969696044921875,
-0.02252197265625,
0.0189666748046875,
-0.016693115234375,
0.00701904296875,
0.02484130859375,
-0.0404052734375,
-0.0143890380859375,
0.00800323486328125,
0.004871368408203125,
-0.00127410888671875,
0.01352691650390625,
-0.01132965087890625,
0.0299530029296875,
0.053497314453125,
-0.021484375,
0.061859130859375,
0.031982421875,
-0.016876220703125,
0.06524658203125,
-0.04742431640625,
-0.00543212890625,
-0.0207672119140625,
0.00616455078125,
-0.047027587890625,
-0.05804443359375,
0.0228424072265625,
-0.0209808349609375,
0.0438232421875,
-0.059661865234375,
-0.0390625,
-0.05816650390625,
-0.0355224609375,
0.059844970703125,
0.03753662109375,
-0.034423828125,
0.005886077880859375,
0.053253173828125,
-0.01424407958984375,
-0.020721435546875,
-0.056915283203125,
0.024627685546875,
-0.041717529296875,
-0.007015228271484375,
0.0312347412109375,
-0.031890869140625,
0.0036373138427734375,
-0.005710601806640625,
0.026336669921875,
-0.0196533203125,
-0.018646240234375,
0.0401611328125,
0.02178955078125,
-0.00506591796875,
0.01313018798828125,
0.0233306884765625,
-0.01552581787109375,
0.0032901763916015625,
0.006000518798828125,
0.0221710205078125,
0.00003314018249511719,
-0.0190887451171875,
-0.006500244140625,
0.051422119140625,
0.0219573974609375,
-0.00970458984375,
0.04248046875,
0.06915283203125,
-0.0460205078125,
0.01163482666015625,
-0.03387451171875,
-0.0233001708984375,
-0.026519775390625,
0.00946807861328125,
-0.0228118896484375,
-0.04925537109375,
0.048828125,
-0.012359619140625,
-0.0159912109375,
0.060302734375,
0.031402587890625,
-0.005672454833984375,
0.03973388671875,
0.048980712890625,
0.0003867149353027344,
0.03912353515625,
-0.032257080078125,
-0.017578125,
-0.07452392578125,
-0.0221710205078125,
-0.0275726318359375,
-0.0215301513671875,
-0.036346435546875,
-0.0233001708984375,
0.022552490234375,
0.008819580078125,
-0.00836944580078125,
0.042083740234375,
-0.051300048828125,
0.03363037109375,
0.041046142578125,
0.01288604736328125,
-0.00307464599609375,
-0.0015764236450195312,
0.011749267578125,
0.0103912353515625,
-0.029510498046875,
-0.0202484130859375,
0.08868408203125,
0.030792236328125,
0.068359375,
0.0284576416015625,
0.045684814453125,
0.05548095703125,
0.0096893310546875,
-0.025482177734375,
0.0135345458984375,
0.005832672119140625,
-0.07427978515625,
-0.01047515869140625,
-0.0021419525146484375,
-0.05145263671875,
-0.0362548828125,
-0.032135009765625,
-0.02716064453125,
0.042205810546875,
0.02581787109375,
-0.01326751708984375,
0.01221466064453125,
-0.05670166015625,
0.060028076171875,
-0.00005745887756347656,
-0.0068359375,
-0.015289306640625,
-0.061614990234375,
0.0195465087890625,
-0.005191802978515625,
0.01280975341796875,
-0.03863525390625,
0.0020198822021484375,
0.07208251953125,
-0.052581787109375,
0.06597900390625,
-0.042938232421875,
0.02166748046875,
0.012298583984375,
-0.01026153564453125,
0.020599365234375,
0.043304443359375,
-0.0202178955078125,
0.01258087158203125,
0.0265045166015625,
-0.033050537109375,
-0.00920867919921875,
0.044891357421875,
-0.0328369140625,
-0.0012187957763671875,
-0.04083251953125,
-0.037261962890625,
0.0010890960693359375,
0.0295257568359375,
0.017578125,
0.052642822265625,
-0.034576416015625,
-0.0017004013061523438,
0.0289764404296875,
0.0184326171875,
0.0238037109375,
0.001407623291015625,
-0.01390838623046875,
-0.0435791015625,
0.042724609375,
0.0267486572265625,
-0.020538330078125,
0.02215576171875,
-0.00022482872009277344,
-0.0210418701171875,
-0.0299530029296875,
-0.04864501953125,
0.0170135498046875,
-0.03839111328125,
-0.029937744140625,
-0.024078369140625,
-0.032623291015625,
-0.04010009765625,
0.002117156982421875,
-0.0140533447265625,
-0.0662841796875,
-0.039093017578125,
-0.046844482421875,
0.0665283203125,
0.0310211181640625,
-0.046875,
0.04241943359375,
-0.06634521484375,
0.0341796875,
-0.019012451171875,
0.059539794921875,
-0.032562255859375,
-0.051422119140625,
-0.0400390625,
-0.005542755126953125,
-0.0025463104248046875,
-0.041900634765625,
0.0103607177734375,
0.049560546875,
0.03472900390625,
0.02764892578125,
0.014404296875,
0.05670166015625,
-0.0226287841796875,
0.046661376953125,
0.01371002197265625,
-0.0509033203125,
0.058380126953125,
-0.010498046875,
0.0298309326171875,
0.06903076171875,
0.0285491943359375,
-0.030242919921875,
0.006008148193359375,
-0.0552978515625,
-0.059661865234375,
0.03387451171875,
0.01995849609375,
0.018768310546875,
0.0098114013671875,
0.042999267578125,
0.0185546875,
0.031829833984375,
-0.05157470703125,
-0.041717529296875,
-0.006725311279296875,
-0.0241241455078125,
-0.00234222412109375,
-0.060577392578125,
-0.0168304443359375,
-0.049285888671875,
0.05474853515625,
-0.0132598876953125,
0.021728515625,
0.0236968994140625,
-0.0037517547607421875,
-0.0122833251953125,
0.0120391845703125,
0.019622802734375,
0.043670654296875,
-0.06219482421875,
-0.005458831787109375,
-0.0273895263671875,
-0.038177490234375,
-0.01450347900390625,
0.038238525390625,
0.0089263916015625,
-0.007537841796875,
0.031280517578125,
0.056915283203125,
-0.0350341796875,
-0.0435791015625,
0.025390625,
-0.00785064697265625,
-0.0059356689453125,
-0.06304931640625,
-0.0021533966064453125,
-0.0230865478515625,
0.0023651123046875,
0.0159149169921875,
-0.00727081298828125,
0.0281219482421875,
-0.04815673828125,
0.036041259765625,
0.00620269775390625,
-0.058502197265625,
-0.018341064453125,
0.038970947265625,
0.0268096923828125,
-0.01557159423828125,
0.07708740234375,
-0.0017786026000976562,
-0.0204620361328125,
0.05364990234375,
0.01108551025390625,
0.0538330078125,
-0.00513458251953125,
0.017578125,
0.0491943359375,
0.039642333984375,
0.0184173583984375,
0.040679931640625,
-0.031646728515625,
-0.0269317626953125,
-0.014495849609375,
-0.03155517578125,
-0.03265380859375,
-0.038787841796875,
-0.0797119140625,
0.0302581787109375,
-0.047027587890625,
-0.035247802734375,
-0.0087432861328125,
0.00836944580078125,
-0.044647216796875,
0.009490966796875,
0.007541656494140625,
0.091796875,
-0.058990478515625,
0.07342529296875,
0.0389404296875,
-0.04638671875,
-0.036224365234375,
-0.0150909423828125,
-0.008758544921875,
-0.033416748046875,
-0.0053558349609375,
0.031494140625,
0.036468505859375,
-0.00923919677734375,
-0.05218505859375,
-0.0640869140625,
0.07647705078125,
0.037261962890625,
-0.05804443359375,
0.0054931640625,
-0.004611968994140625,
0.01296234130859375,
-0.03045654296875,
0.03125,
0.05096435546875,
0.05413818359375,
0.0134735107421875,
-0.067626953125,
0.0019397735595703125,
-0.035400390625,
-0.0260467529296875,
0.034088134765625,
-0.0361328125,
0.005496978759765625,
-0.02862548828125,
-0.004680633544921875,
0.0169830322265625,
0.0439453125,
0.00048232078552246094,
0.0308685302734375,
0.035675048828125,
0.032318115234375,
0.0653076171875,
-0.025604248046875,
0.0682373046875,
0.0087127685546875,
0.036590576171875,
0.08026123046875,
-0.0138397216796875,
0.0181732177734375,
0.06890869140625,
-0.0083770751953125,
0.028228759765625,
0.0640869140625,
-0.048065185546875,
0.02923583984375,
0.02294921875,
-0.0005688667297363281,
-0.0137786865234375,
-0.036041259765625,
-0.03875732421875,
-0.005390167236328125,
0.057098388671875,
-0.028717041015625,
0.0032749176025390625,
0.01548004150390625,
-0.004711151123046875,
-0.005374908447265625,
-0.03753662109375,
0.0333251953125,
0.0126953125,
-0.029510498046875,
0.009765625,
-0.008575439453125,
0.0309600830078125,
-0.048980712890625,
-0.0182037353515625,
-0.00545501708984375,
-0.0042266845703125,
-0.048065185546875,
-0.0794677734375,
0.06304931640625,
-0.006160736083984375,
-0.03790283203125,
0.0214996337890625,
0.0295257568359375,
-0.045745849609375,
-0.0572509765625,
0.007740020751953125,
-0.007167816162109375,
0.029571533203125,
-0.002716064453125,
-0.08148193359375,
0.0218048095703125,
-0.00946807861328125,
0.0176849365234375,
-0.008636474609375,
-0.01247406005859375,
-0.003368377685546875,
0.046600341796875,
0.0290985107421875,
-0.0003027915954589844,
0.0009126663208007812,
0.02142333984375,
0.05303955078125,
-0.06463623046875,
-0.02435302734375,
-0.048675537109375,
0.05059814453125,
-0.035186767578125,
-0.017578125,
0.035308837890625,
0.0843505859375,
0.04998779296875,
-0.018951416015625,
0.040252685546875,
-0.052093505859375,
0.040283203125,
-0.039398193359375,
0.029449462890625,
-0.0357666015625,
0.004833221435546875,
-0.020538330078125,
-0.0697021484375,
-0.05303955078125,
0.01399993896484375,
0.01352691650390625,
0.001552581787109375,
0.035919189453125,
0.0631103515625,
-0.0253753662109375,
-0.018768310546875,
0.01065826416015625,
0.015625,
0.027679443359375,
0.0277099609375,
0.038665771484375,
-0.03265380859375,
0.0245513916015625,
-0.0163421630859375,
-0.0269012451171875,
-0.01045989990234375,
-0.08160400390625,
-0.05908203125,
-0.0518798828125,
-0.055084228515625,
-0.046173095703125,
-0.0095367431640625,
0.07843017578125,
0.0723876953125,
-0.05560302734375,
-0.020050048828125,
0.029693603515625,
0.0294189453125,
0.0038242340087890625,
-0.0113983154296875,
0.047393798828125,
0.04833984375,
-0.0557861328125,
-0.0082855224609375,
0.01319122314453125,
0.011444091796875,
-0.0095062255859375,
0.0058746337890625,
-0.0143280029296875,
0.0008921623229980469,
0.01071929931640625,
0.042510986328125,
-0.00966644287109375,
-0.0160675048828125,
-0.061920166015625,
0.0199737548828125,
0.0084381103515625,
0.056060791015625,
-0.0295257568359375,
0.0275421142578125,
0.0244293212890625,
0.017425537109375,
0.057891845703125,
0.00930023193359375,
0.04656982421875,
-0.06689453125,
0.0206146240234375,
0.00021922588348388672,
0.0445556640625,
0.0238494873046875,
-0.0557861328125,
0.0589599609375,
0.019500732421875,
-0.033233642578125,
-0.060882568359375,
0.005832672119140625,
-0.11053466796875,
0.028106689453125,
0.056365966796875,
0.022308349609375,
-0.0284881591796875,
0.00199127197265625,
-0.035369873046875,
0.01282501220703125,
-0.05804443359375,
0.0165252685546875,
0.04510498046875,
0.01531219482421875,
-0.031219482421875,
-0.0158843994140625,
0.02960205078125,
-0.01255035400390625,
-0.056243896484375,
-0.00791168212890625,
0.042236328125,
0.007659912109375,
0.00769805908203125,
0.045928955078125,
-0.027374267578125,
0.00969696044921875,
-0.0031566619873046875,
0.024139404296875,
-0.01047515869140625,
-0.0307159423828125,
-0.027191162109375,
0.00360107421875,
0.0107574462890625,
-0.0285186767578125
]
] |
THUDM/AgentInstruct | 2023-10-23T12:36:19.000Z | [
"language:en",
"arxiv:2310.12823",
"region:us"
] | THUDM | null | null | 103 | 1,002 | 2023-10-16T10:27:58 | ---
configs:
- config_name: default
data_files:
- split: os
path: data/os-*
- split: db
path: data/db-*
- split: alfworld
path: data/alfworld-*
- split: webshop
path: data/webshop-*
- split: kg
path: data/kg-*
- split: mind2web
path: data/mind2web-*
dataset_info:
features:
- name: conversations
list:
- name: from
dtype: string
- name: loss
dtype: bool
- name: value
dtype: string
- name: id
dtype: string
splits:
- name: os
num_bytes: 660245
num_examples: 195
- name: db
num_bytes: 1436655
num_examples: 538
- name: alfworld
num_bytes: 1223363
num_examples: 336
- name: webshop
num_bytes: 1602648
num_examples: 351
- name: kg
num_bytes: 2960010
num_examples: 324
- name: mind2web
num_bytes: 159590
num_examples: 122
download_size: 1255385
dataset_size: 8042511
language:
- en
pretty_name: AgentInstruct
---
# AgentInstruct Dataset
<p align="center">
🤗 <a href="https://huggingface.co/THUDM/agentlm-70b" target="_blank">[Models]</a> • 💻 <a href="https://github.com/THUDM/AgentTuning" target="_blank">[Github Repo]</a> • 📌 <a href="https://THUDM.github.io/AgentTuning/" target="_blank">[Project Page]</a> • 📃 <a href="https://arxiv.org/abs/2310.12823" target="_blank">[Paper]</a>
</p>
**AgentInstruct** is a meticulously curated dataset featuring **1,866** high-quality interactions, designed to enhance AI agents across six diverse real-world tasks, leveraging innovative methods like **Task Derivation** and **Self-Instruct**.
- 🔍 **CoT** - Harness the power of [ReAct](https://react-lm.github.io/), offering detailed thought explanations for each action, ensuring an intricate understanding of the model's decision-making journey.
- 🌍 **Diversity** - Spanning 6 real-world scenarios, from Daily Household Routines to Database Operations, and their average turns range from 5 to 35.
- 🎯 **Precision** - Not all trajectories of GPT-4 are effective! Ours are rigorously filtered using strict rewards to ensure top-notch quality.
- ✅ **Assurance** - Rigorous checks to avoid data leakage, ensuring pristine dataset quality.
## Task Overview
| Task | # Filt. Traj. | Avg # Filt. Traj. Turns |
|---|---|---|
|ALFWorld|336|13.52|
|WebShop|351|3.68|
|Mind2Web|122|1.00|
|Knowledge Graph|324|6.04|
|Operating System|195|3.85|
|Database|538|2.06|
|**AgentInstruct**|1866|5.24|
AgentInstruct includes 1,866 trajectories from
6 agents tasks. "Traj." stands for interaction trajectory. "Filt. Traj."
stands for filtered trajectories.
## Models
**AgentLM** models are produced by mixed training on AgentInstruct dataset and ShareGPT dataset from Llama-2-chat models.
The models follow the conversation format of [Llama-2-chat](https://huggingface.co/blog/llama2#how-to-prompt-llama-2), with system prompt fixed as
```
You are a helpful, respectful and honest assistant.
```
7B, 13B, and 70B models are available on Huggingface model hub.
|Model|Huggingface Repo|
|---|---|
|AgentLM-7B| [🤗Huggingface Repo](https://huggingface.co/THUDM/agentlm-7b) |
|AgentLM-13B| [🤗Huggingface Repo](https://huggingface.co/THUDM/agentlm-13b) |
|AgentLM-70B| [🤗Huggingface Repo](https://huggingface.co/THUDM/agentlm-70b) |
Check our [[Github Repo]](https://github.com/THUDM/AgentTuning) for details about **AgentTuning**.
## Citation
If you find our work useful, please consider citing AgentTuning:
```
@misc{zeng2023agenttuning,
title={AgentTuning: Enabling Generalized Agent Abilities for LLMs},
author={Aohan Zeng and Mingdao Liu and Rui Lu and Bowen Wang and Xiao Liu and Yuxiao Dong and Jie Tang},
year={2023},
eprint={2310.12823},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
``` | 3,764 | [
[
-0.02685546875,
-0.049560546875,
0.0292205810546875,
0.00567626953125,
-0.005771636962890625,
0.0163726806640625,
-0.0013456344604492188,
-0.041717529296875,
0.0189208984375,
0.0290069580078125,
-0.059478759765625,
-0.047943115234375,
-0.02557373046875,
-0.00838470458984375,
-0.01068878173828125,
0.0875244140625,
-0.0008358955383300781,
-0.0136566162109375,
-0.033966064453125,
-0.014801025390625,
-0.0287322998046875,
-0.0287017822265625,
-0.049530029296875,
-0.039520263671875,
0.0168914794921875,
0.0278167724609375,
0.0592041015625,
0.04217529296875,
0.027099609375,
0.032196044921875,
-0.0048828125,
0.0292205810546875,
-0.036529541015625,
0.003993988037109375,
-0.002437591552734375,
-0.019012451171875,
-0.0736083984375,
0.00279998779296875,
0.041259765625,
0.013916015625,
-0.01235198974609375,
0.01253509521484375,
0.0080413818359375,
0.03485107421875,
-0.02264404296875,
0.032196044921875,
-0.0204925537109375,
-0.004970550537109375,
0.007282257080078125,
0.007732391357421875,
-0.0177764892578125,
-0.01413726806640625,
0.0005512237548828125,
-0.05108642578125,
0.004444122314453125,
0.003955841064453125,
0.094482421875,
0.031158447265625,
-0.03961181640625,
0.006359100341796875,
-0.039031982421875,
0.049774169921875,
-0.047576904296875,
0.0166778564453125,
0.042327880859375,
0.036468505859375,
-0.0137481689453125,
-0.0606689453125,
-0.0340576171875,
-0.0217132568359375,
-0.0091705322265625,
0.011199951171875,
-0.018341064453125,
0.0152435302734375,
0.01024627685546875,
0.01032257080078125,
-0.05560302734375,
0.0018167495727539062,
-0.0102081298828125,
-0.035247802734375,
0.07275390625,
0.034332275390625,
0.0186309814453125,
-0.00289154052734375,
-0.04083251953125,
-0.03717041015625,
-0.0277557373046875,
0.0233306884765625,
0.0277252197265625,
0.0186004638671875,
-0.052947998046875,
0.03289794921875,
-0.0243682861328125,
0.03179931640625,
0.01517486572265625,
-0.01204681396484375,
0.046783447265625,
-0.05145263671875,
-0.0106353759765625,
-0.0295562744140625,
0.06646728515625,
0.032684326171875,
-0.0024166107177734375,
-0.01044464111328125,
-0.01459503173828125,
-0.006259918212890625,
0.01904296875,
-0.056060791015625,
0.002017974853515625,
0.03131103515625,
-0.0216522216796875,
-0.0281524658203125,
-0.005222320556640625,
-0.048583984375,
-0.0262451171875,
-0.020355224609375,
0.0229339599609375,
-0.03619384765625,
-0.035186767578125,
0.0007109642028808594,
-0.0084381103515625,
0.04681396484375,
0.0268707275390625,
-0.039581298828125,
0.0290069580078125,
0.04571533203125,
0.0697021484375,
-0.01666259765625,
-0.039337158203125,
-0.0213623046875,
-0.003368377685546875,
-0.0117950439453125,
0.06903076171875,
-0.029449462890625,
-0.0258026123046875,
-0.01091766357421875,
0.0154266357421875,
-0.01085662841796875,
-0.027099609375,
0.03131103515625,
-0.022796630859375,
0.0012369155883789062,
-0.020660400390625,
-0.0304718017578125,
-0.03131103515625,
0.036865234375,
-0.03533935546875,
0.08856201171875,
0.023406982421875,
-0.0258026123046875,
0.01458740234375,
-0.05841064453125,
-0.019989013671875,
-0.006458282470703125,
-0.006145477294921875,
-0.05364990234375,
-0.0308990478515625,
0.0106201171875,
0.041595458984375,
-0.02069091796875,
0.0238189697265625,
-0.0270233154296875,
-0.0150299072265625,
0.0095672607421875,
-0.004390716552734375,
0.066650390625,
0.0181427001953125,
-0.024169921875,
0.0369873046875,
-0.048858642578125,
-0.002498626708984375,
0.029449462890625,
-0.0092926025390625,
0.007312774658203125,
-0.0170745849609375,
-0.00185394287109375,
0.0207061767578125,
0.0273284912109375,
-0.0252838134765625,
0.0303955078125,
-0.0264739990234375,
0.01134490966796875,
0.06451416015625,
0.01108551025390625,
0.04302978515625,
-0.0604248046875,
0.0611572265625,
-0.0024166107177734375,
0.037109375,
0.0191650390625,
-0.047637939453125,
-0.04864501953125,
-0.0255889892578125,
-0.007076263427734375,
0.043121337890625,
-0.0638427734375,
0.039398193359375,
-0.022918701171875,
-0.058746337890625,
-0.037933349609375,
0.0017004013061523438,
0.043731689453125,
0.03314208984375,
0.0263519287109375,
-0.0197296142578125,
-0.0404052734375,
-0.057373046875,
0.0059661865234375,
-0.0183868408203125,
0.00559234619140625,
0.03167724609375,
0.05419921875,
-0.035064697265625,
0.0750732421875,
-0.0292205810546875,
-0.0119476318359375,
-0.0278472900390625,
-0.0180511474609375,
0.0003657341003417969,
0.034027099609375,
0.058563232421875,
-0.04669189453125,
-0.034759521484375,
-0.0112457275390625,
-0.0667724609375,
0.0015649795532226562,
0.00032973289489746094,
-0.044097900390625,
0.0252838134765625,
0.01459503173828125,
-0.072265625,
0.044342041015625,
0.02655029296875,
-0.058258056640625,
0.048187255859375,
0.0028400421142578125,
0.00333404541015625,
-0.0882568359375,
0.0018415451049804688,
-0.00434112548828125,
-0.02606201171875,
-0.054901123046875,
0.00458526611328125,
-0.02362060546875,
0.005062103271484375,
-0.035919189453125,
0.06671142578125,
-0.03704833984375,
-0.01190948486328125,
-0.0097808837890625,
0.006137847900390625,
0.005123138427734375,
0.06866455078125,
-0.017120361328125,
0.05462646484375,
0.0382080078125,
-0.04217529296875,
0.033355712890625,
0.053955078125,
0.00044655799865722656,
0.0333251953125,
-0.052703857421875,
0.0240325927734375,
0.002414703369140625,
0.035308837890625,
-0.0716552734375,
-0.026214599609375,
0.050567626953125,
-0.043487548828125,
0.0227508544921875,
-0.01267242431640625,
-0.03466796875,
-0.02294921875,
-0.042083740234375,
0.01554107666015625,
0.04156494140625,
-0.0257720947265625,
0.059967041015625,
0.03570556640625,
0.0019626617431640625,
-0.046173095703125,
-0.03814697265625,
-0.01128387451171875,
-0.0236053466796875,
-0.057952880859375,
0.0132293701171875,
-0.0217132568359375,
-0.01277923583984375,
0.0035228729248046875,
0.0021457672119140625,
0.005359649658203125,
0.0026683807373046875,
0.0389404296875,
0.0270233154296875,
0.005828857421875,
0.0095672607421875,
-0.00044226646423339844,
-0.0137481689453125,
-0.002838134765625,
-0.0006937980651855469,
0.0537109375,
-0.0196533203125,
-0.02606201171875,
-0.035125732421875,
0.00409698486328125,
0.039031982421875,
-0.0179595947265625,
0.056854248046875,
0.05950927734375,
-0.0140380859375,
-0.00946044921875,
-0.031951904296875,
-0.0289154052734375,
-0.039581298828125,
0.03179931640625,
-0.02587890625,
-0.05078125,
0.06427001953125,
0.016387939453125,
0.01087188720703125,
0.044097900390625,
0.04449462890625,
0.0092926025390625,
0.0643310546875,
0.0380859375,
-0.00795745849609375,
0.04803466796875,
-0.05242919921875,
-0.01641845703125,
-0.0589599609375,
-0.036590576171875,
-0.031402587890625,
-0.0175933837890625,
-0.050689697265625,
-0.045013427734375,
0.0311279296875,
-0.03564453125,
-0.048980712890625,
0.029449462890625,
-0.049591064453125,
0.0090789794921875,
0.036773681640625,
0.025848388671875,
0.00965118408203125,
0.0043792724609375,
0.0059051513671875,
0.027587890625,
-0.04779052734375,
-0.0355224609375,
0.09259033203125,
0.03662109375,
0.043487548828125,
0.0102081298828125,
0.05120849609375,
0.027923583984375,
0.0084686279296875,
-0.05322265625,
0.06512451171875,
0.0264434814453125,
-0.054901123046875,
-0.0316162109375,
-0.03375244140625,
-0.0855712890625,
0.01959228515625,
-0.01122283935546875,
-0.057342529296875,
0.01532745361328125,
0.0014276504516601562,
-0.0146026611328125,
0.016693115234375,
-0.040618896484375,
0.05865478515625,
-0.01617431640625,
-0.034912109375,
-0.00882720947265625,
-0.0650634765625,
0.01605224609375,
0.0203857421875,
0.00547027587890625,
-0.0202178955078125,
-0.01222991943359375,
0.060760498046875,
-0.051971435546875,
0.07720947265625,
-0.0279998779296875,
-0.0016107559204101562,
0.048919677734375,
-0.00360107421875,
0.06396484375,
-0.00911712646484375,
-0.01462554931640625,
0.020416259765625,
-0.0102691650390625,
-0.027008056640625,
-0.035888671875,
0.038848876953125,
-0.07940673828125,
-0.0264739990234375,
-0.04052734375,
-0.052642822265625,
-0.01219940185546875,
0.0039215087890625,
0.01666259765625,
0.02001953125,
-0.00531005859375,
-0.0027141571044921875,
0.023590087890625,
-0.01123046875,
0.034423828125,
0.043670654296875,
-0.006092071533203125,
-0.035247802734375,
0.0675048828125,
0.00527191162109375,
0.016937255859375,
0.01317596435546875,
-0.0024089813232421875,
-0.037841796875,
-0.026153564453125,
-0.0259246826171875,
0.0299530029296875,
-0.03900146484375,
-0.03179931640625,
-0.04638671875,
-0.0270538330078125,
-0.035308837890625,
0.0010204315185546875,
-0.039642333984375,
-0.02117919921875,
-0.028900146484375,
-0.0291748046875,
0.0550537109375,
0.0491943359375,
-0.0173187255859375,
0.034210205078125,
-0.033111572265625,
0.01434326171875,
0.0189666748046875,
0.0286865234375,
0.0017642974853515625,
-0.048858642578125,
-0.028564453125,
0.0193939208984375,
-0.0428466796875,
-0.052276611328125,
0.0294647216796875,
0.016326904296875,
0.056182861328125,
0.0139312744140625,
0.0133209228515625,
0.041961669921875,
-0.0076141357421875,
0.0638427734375,
-0.006511688232421875,
-0.049591064453125,
0.040313720703125,
-0.0439453125,
0.019805908203125,
0.037567138671875,
0.0225677490234375,
-0.0140228271484375,
-0.0245208740234375,
-0.06195068359375,
-0.0609130859375,
0.071533203125,
0.036834716796875,
-0.003387451171875,
0.026824951171875,
0.028228759765625,
-0.004261016845703125,
0.0169219970703125,
-0.055023193359375,
-0.03692626953125,
-0.016204833984375,
-0.024200439453125,
-0.012786865234375,
-0.01421356201171875,
-0.01480865478515625,
-0.0297393798828125,
0.065673828125,
-0.01177215576171875,
0.05389404296875,
0.0078582763671875,
-0.0014619827270507812,
-0.006191253662109375,
-0.002017974853515625,
0.047332763671875,
0.03228759765625,
-0.0192108154296875,
-0.01776123046875,
0.020263671875,
-0.04400634765625,
0.026947021484375,
0.01593017578125,
-0.007404327392578125,
-0.014404296875,
0.043182373046875,
0.07489013671875,
-0.002288818359375,
-0.0345458984375,
0.0338134765625,
0.00531005859375,
-0.0223541259765625,
-0.032196044921875,
0.0257720947265625,
-0.00789642333984375,
0.04571533203125,
0.015655517578125,
-0.00653076171875,
0.0163421630859375,
-0.031524658203125,
0.01076507568359375,
0.0361328125,
-0.0189666748046875,
-0.039154052734375,
0.04498291015625,
0.0086517333984375,
-0.016815185546875,
0.039581298828125,
-0.04254150390625,
-0.034027099609375,
0.07257080078125,
0.02044677734375,
0.07708740234375,
-0.0233154296875,
0.0280303955078125,
0.026153564453125,
0.01531219482421875,
-0.005420684814453125,
0.0299072265625,
-0.0029430389404296875,
-0.060516357421875,
-0.0217742919921875,
-0.037994384765625,
-0.03741455078125,
0.005931854248046875,
-0.038604736328125,
0.0208892822265625,
-0.0272369384765625,
-0.02978515625,
-0.026123046875,
0.0264739990234375,
-0.06292724609375,
-0.001728057861328125,
-0.004695892333984375,
0.05230712890625,
-0.055511474609375,
0.0439453125,
0.0721435546875,
-0.0433349609375,
-0.07208251953125,
-0.012786865234375,
0.0236053466796875,
-0.070068359375,
0.00817108154296875,
0.0017671585083007812,
-0.009979248046875,
0.003917694091796875,
-0.0748291015625,
-0.06854248046875,
0.1141357421875,
0.0279083251953125,
-0.0208587646484375,
-0.0021724700927734375,
0.01233673095703125,
0.042938232421875,
-0.03411865234375,
0.034332275390625,
0.040374755859375,
0.047943115234375,
0.017425537109375,
-0.0743408203125,
0.019317626953125,
-0.039794921875,
-0.00926971435546875,
-0.01087188720703125,
-0.08807373046875,
0.058746337890625,
-0.016082763671875,
-0.000804901123046875,
0.0036106109619140625,
0.0390625,
0.035125732421875,
0.04840087890625,
0.036956787109375,
0.040374755859375,
0.051605224609375,
-0.0062255859375,
0.08111572265625,
-0.0197601318359375,
0.040985107421875,
0.07769775390625,
-0.0081939697265625,
0.035308837890625,
-0.0006079673767089844,
-0.0243988037109375,
0.0458984375,
0.05462646484375,
-0.00856781005859375,
0.0330810546875,
-0.0046539306640625,
0.0022125244140625,
-0.0214385986328125,
-0.012176513671875,
-0.0308685302734375,
0.045928955078125,
0.0106201171875,
0.004486083984375,
-0.0009012222290039062,
0.0095672607421875,
0.01739501953125,
-0.0169677734375,
-0.003475189208984375,
0.072265625,
0.0022373199462890625,
-0.03656005859375,
0.057464599609375,
-0.026153564453125,
0.039398193359375,
-0.05230712890625,
-0.00914764404296875,
-0.041534423828125,
0.0007109642028808594,
-0.017364501953125,
-0.059967041015625,
0.007411956787109375,
-0.01186370849609375,
-0.0030536651611328125,
-0.01226043701171875,
0.061309814453125,
-0.0186767578125,
-0.0215606689453125,
0.034088134765625,
0.04449462890625,
0.024200439453125,
0.002017974853515625,
-0.05889892578125,
0.01971435546875,
0.0009150505065917969,
-0.044036865234375,
0.0249481201171875,
0.022613525390625,
-0.004230499267578125,
0.08154296875,
0.0301055908203125,
-0.01494598388671875,
-0.0234375,
-0.00656890869140625,
0.08123779296875,
-0.048828125,
-0.039459228515625,
-0.0521240234375,
0.06951904296875,
-0.0108795166015625,
-0.022308349609375,
0.0576171875,
0.0355224609375,
0.049041748046875,
-0.0011892318725585938,
0.0511474609375,
-0.01108551025390625,
0.0299072265625,
-0.02093505859375,
0.057159423828125,
-0.06170654296875,
0.0171966552734375,
-0.0234222412109375,
-0.057952880859375,
0.0018529891967773438,
0.0390625,
-0.0207366943359375,
0.035980224609375,
0.03179931640625,
0.07537841796875,
0.0003082752227783203,
-0.026824951171875,
0.01282501220703125,
0.029754638671875,
0.0355224609375,
0.037353515625,
0.057525634765625,
-0.04388427734375,
0.0467529296875,
-0.01617431640625,
-0.01433563232421875,
-0.0301513671875,
-0.03753662109375,
-0.080078125,
-0.0533447265625,
-0.0316162109375,
-0.04388427734375,
0.0033721923828125,
0.08465576171875,
0.06646728515625,
-0.04803466796875,
-0.023895263671875,
-0.0012493133544921875,
0.0257720947265625,
-0.026763916015625,
-0.0171356201171875,
0.030059814453125,
-0.007354736328125,
-0.04498291015625,
0.0247039794921875,
-0.0120697021484375,
0.0246734619140625,
-0.00441741943359375,
-0.04248046875,
-0.0189361572265625,
0.0029544830322265625,
0.03607177734375,
0.0247039794921875,
-0.035400390625,
-0.0225372314453125,
0.0011548995971679688,
-0.01277923583984375,
0.00933837890625,
0.002536773681640625,
-0.04473876953125,
0.0137786865234375,
0.026519775390625,
0.0173187255859375,
0.054656982421875,
0.0129241943359375,
0.025115966796875,
-0.057159423828125,
0.0306854248046875,
0.0106201171875,
0.0163116455078125,
0.019775390625,
-0.03857421875,
0.0701904296875,
0.019134521484375,
-0.055206298828125,
-0.0655517578125,
0.005157470703125,
-0.09527587890625,
0.00182342529296875,
0.1005859375,
0.00033545494079589844,
-0.020294189453125,
-0.00311279296875,
-0.02764892578125,
0.035308837890625,
-0.06707763671875,
0.038055419921875,
0.03411865234375,
-0.0218658447265625,
-0.0189666748046875,
-0.034271240234375,
0.046844482421875,
0.004741668701171875,
-0.0726318359375,
-0.0211944580078125,
0.042388916015625,
0.019561767578125,
0.00458526611328125,
0.055419921875,
0.0178680419921875,
0.0096893310546875,
0.007564544677734375,
0.031463623046875,
-0.03424072265625,
-0.0247650146484375,
-0.0191802978515625,
-0.00555419921875,
-0.0028285980224609375,
-0.029022216796875
]
] |
pszemraj/qmsum-cleaned | 2023-06-07T22:58:58.000Z | [
"source_datasets:tau/scrolls",
"language:en",
"license:apache-2.0",
"region:us"
] | pszemraj | null | null | 1 | 995 | 2023-05-05T16:16:33 | ---
license: apache-2.0
language:
- en
source_datasets: tau/scrolls
---
# qmsum-cleaned
## prefixes
It's worth noting that each "document" in `input` is prefixed by a question/prompt on what the model is supposed to do. **You may want to explicitly handle this in some way, or prefix your models trained on this dataset.**
Most frequent "prefixes" separated via [sentence-splitter](https://github.com/mediacloud/sentence-splitter) in the `train` split:
| | Sentence | Count |
|---:|:------------------------------------------------------------------------------|--------:|
| 0 | Summarize the whole meeting. | 121 |
| 1 | Summarize the meeting | 25 |
| 2 | What did the team discuss about the product cost? | 4 |
| 3 | How did Marketing design the product evaluation? | 4 |
| 4 | Summarize the wrap up of the meeting. | 3 |
| 5 | What did the group discuss about user requirements of the new remote control? | 3 |
| 6 | What did the team discuss during the product evaluation? | 3 |
| 7 | Summarize the meeting. | 2 |
| 8 | Summarize what was said about digits form | 2 |
| 9 | What was discussed in the meeting? | 2 |
### wordcloud
Visualized as a wordcloud (`train` split):

## token counts

| 1,780 | [
[
-0.03985595703125,
-0.03179931640625,
0.04974365234375,
0.00252532958984375,
-0.042022705078125,
0.00946807861328125,
-0.0039043426513671875,
-0.007904052734375,
0.019256591796875,
0.03216552734375,
-0.0570068359375,
-0.0501708984375,
-0.04998779296875,
0.00637054443359375,
-0.0306549072265625,
0.083984375,
-0.01383209228515625,
0.0125885009765625,
-0.0285797119140625,
-0.0234222412109375,
-0.06011962890625,
-0.03656005859375,
-0.027557373046875,
-0.0171661376953125,
0.038116455078125,
0.050872802734375,
0.058807373046875,
0.041473388671875,
0.03411865234375,
0.02508544921875,
-0.0157928466796875,
0.03485107421875,
-0.0202178955078125,
-0.0038471221923828125,
0.010284423828125,
-0.034332275390625,
-0.041473388671875,
-0.0008802413940429688,
0.0455322265625,
0.0400390625,
-0.01549530029296875,
0.015960693359375,
0.005588531494140625,
0.0299072265625,
-0.03582763671875,
0.0021953582763671875,
-0.0302886962890625,
-0.00252532958984375,
-0.00690460205078125,
-0.00745391845703125,
-0.01024627685546875,
-0.020843505859375,
-0.0255889892578125,
-0.059844970703125,
0.01381683349609375,
0.0080108642578125,
0.10687255859375,
0.009063720703125,
-0.045623779296875,
-0.01837158203125,
-0.0362548828125,
0.05548095703125,
-0.0595703125,
0.030364990234375,
0.0535888671875,
0.0136871337890625,
-0.01324462890625,
-0.0716552734375,
-0.044525146484375,
0.00909423828125,
-0.00995635986328125,
0.0180511474609375,
-0.0205535888671875,
0.0123443603515625,
0.038787841796875,
0.024688720703125,
-0.05902099609375,
-0.004604339599609375,
-0.062225341796875,
-0.01503753662109375,
0.043243408203125,
0.034393310546875,
0.024871826171875,
-0.0004887580871582031,
-0.012725830078125,
-0.004764556884765625,
-0.0189361572265625,
-0.006412506103515625,
0.00438690185546875,
0.01029205322265625,
-0.017425537109375,
0.049041748046875,
-0.04052734375,
0.03350830078125,
-0.0186920166015625,
-0.0056304931640625,
0.0386962890625,
-0.04345703125,
-0.0237579345703125,
-0.011749267578125,
0.071044921875,
0.055999755859375,
0.00789642333984375,
-0.018707275390625,
-0.0206451416015625,
0.00777435302734375,
0.01140594482421875,
-0.0748291015625,
-0.020355224609375,
0.0440673828125,
-0.03350830078125,
-0.008697509765625,
0.0256195068359375,
-0.031890869140625,
-0.00820159912109375,
-0.0284881591796875,
0.0313720703125,
-0.03863525390625,
-0.0018854141235351562,
0.0283966064453125,
-0.0430908203125,
0.00873565673828125,
0.029541015625,
-0.050323486328125,
0.038116455078125,
0.055816650390625,
0.055206298828125,
0.0093536376953125,
-0.0233917236328125,
-0.046783447265625,
-0.0178070068359375,
-0.0212249755859375,
0.055389404296875,
0.011505126953125,
-0.0518798828125,
-0.006946563720703125,
0.0035343170166015625,
-0.0134735107421875,
-0.04803466796875,
0.04412841796875,
-0.038909912109375,
0.07122802734375,
-0.046539306640625,
-0.0478515625,
-0.0220794677734375,
0.022003173828125,
-0.034912109375,
0.07659912109375,
0.01251220703125,
-0.0501708984375,
0.038421630859375,
-0.05865478515625,
-0.00951385498046875,
0.019256591796875,
-0.016754150390625,
-0.0250244140625,
0.0038890838623046875,
0.002948760986328125,
0.00583648681640625,
-0.007686614990234375,
0.0193634033203125,
-0.00727081298828125,
-0.0268096923828125,
0.0367431640625,
0.00594329833984375,
0.05487060546875,
0.0328369140625,
-0.00015032291412353516,
0.044647216796875,
-0.06768798828125,
0.019012451171875,
-0.007213592529296875,
-0.023345947265625,
-0.01549530029296875,
-0.0030422210693359375,
0.0208587646484375,
0.04833984375,
0.0112762451171875,
-0.0328369140625,
0.0283050537109375,
-0.0073699951171875,
0.0269775390625,
0.0264434814453125,
0.0289459228515625,
0.026153564453125,
-0.0404052734375,
0.04949951171875,
0.01020050048828125,
0.022186279296875,
-0.00751495361328125,
-0.0222320556640625,
-0.07403564453125,
-0.035430908203125,
0.029541015625,
0.0302886962890625,
-0.059661865234375,
0.04510498046875,
-0.038299560546875,
-0.0250244140625,
-0.048126220703125,
-0.0021610260009765625,
0.014251708984375,
0.01387786865234375,
0.032257080078125,
-0.0190582275390625,
-0.038665771484375,
-0.0640869140625,
-0.01461029052734375,
-0.007244110107421875,
-0.00814056396484375,
-0.01189422607421875,
0.06439208984375,
0.0026302337646484375,
0.08575439453125,
-0.0614013671875,
-0.0041961669921875,
-0.01207733154296875,
0.03656005859375,
0.007236480712890625,
0.03094482421875,
0.01026153564453125,
-0.052886962890625,
-0.00902557373046875,
-0.035247802734375,
-0.04608154296875,
-0.01085662841796875,
-0.0196685791015625,
-0.0207977294921875,
-0.009796142578125,
0.045654296875,
-0.062225341796875,
0.0264892578125,
0.0178985595703125,
-0.052734375,
0.034515380859375,
0.00637054443359375,
0.01038360595703125,
-0.10675048828125,
-0.0018558502197265625,
-0.0306396484375,
-0.021240234375,
-0.0252532958984375,
-0.0016031265258789062,
0.01192474365234375,
0.008056640625,
-0.041107177734375,
0.027099609375,
-0.049835205078125,
-0.004169464111328125,
-0.023162841796875,
0.01043701171875,
0.0203857421875,
0.0345458984375,
-0.0213470458984375,
0.050811767578125,
0.0296173095703125,
-0.054718017578125,
0.01334381103515625,
0.039031982421875,
-0.0311126708984375,
0.023468017578125,
-0.053314208984375,
0.007122039794921875,
-0.003620147705078125,
-0.0006837844848632812,
-0.07623291015625,
0.0022296905517578125,
0.0298919677734375,
-0.057403564453125,
-0.003192901611328125,
0.011505126953125,
-0.07000732421875,
-0.0113983154296875,
-0.033782958984375,
0.013153076171875,
0.0313720703125,
0.00009495019912719727,
0.0223541259765625,
0.01763916015625,
0.0104217529296875,
-0.00335693359375,
-0.0379638671875,
0.019622802734375,
-0.023651123046875,
-0.03656005859375,
0.0187835693359375,
-0.01593017578125,
-0.01457977294921875,
0.01345062255859375,
0.001888275146484375,
-0.01580810546875,
0.0232391357421875,
0.040313720703125,
0.029296875,
-0.0120086669921875,
0.0202484130859375,
-0.00872802734375,
0.007904052734375,
0.0178375244140625,
0.004547119140625,
0.052398681640625,
-0.005298614501953125,
-0.0147705078125,
-0.0241546630859375,
0.031036376953125,
0.058441162109375,
-0.045379638671875,
0.054779052734375,
0.037139892578125,
-0.032379150390625,
0.00299072265625,
-0.0179595947265625,
-0.01065826416015625,
-0.0355224609375,
0.033416748046875,
-0.034698486328125,
-0.07745361328125,
0.05096435546875,
0.006134033203125,
0.0192413330078125,
0.04827880859375,
0.035003662109375,
-0.00824737548828125,
0.07989501953125,
0.035736083984375,
0.005321502685546875,
0.035675048828125,
-0.0218963623046875,
0.012786865234375,
-0.056182861328125,
-0.0247039794921875,
-0.047760009765625,
-0.013092041015625,
-0.04949951171875,
-0.0178985595703125,
0.01357269287109375,
0.0243377685546875,
-0.010009765625,
0.034515380859375,
-0.0195770263671875,
-0.0005612373352050781,
0.042694091796875,
-0.01110076904296875,
0.0196380615234375,
-0.00658416748046875,
-0.0242462158203125,
-0.007251739501953125,
-0.06304931640625,
-0.039764404296875,
0.0450439453125,
0.0255889892578125,
0.0171661376953125,
0.00872039794921875,
0.07574462890625,
0.00716400146484375,
0.0233001708984375,
-0.07586669921875,
0.058746337890625,
0.02685546875,
-0.044464111328125,
-0.021514892578125,
-0.03204345703125,
-0.08477783203125,
0.040496826171875,
-0.0207366943359375,
-0.044952392578125,
0.0123748779296875,
-0.0226898193359375,
-0.03070068359375,
0.00849151611328125,
-0.03106689453125,
0.074951171875,
-0.0108489990234375,
-0.00638580322265625,
-0.01432037353515625,
-0.0304718017578125,
0.030731201171875,
0.0034389495849609375,
0.03204345703125,
-0.01413726806640625,
-0.01345062255859375,
0.087890625,
-0.0753173828125,
0.0284271240234375,
0.01052093505859375,
0.0010395050048828125,
0.03515625,
-0.007747650146484375,
0.0015611648559570312,
-0.0261383056640625,
0.0252532958984375,
-0.00894927978515625,
0.018096923828125,
-0.0216064453125,
-0.043609619140625,
0.02215576171875,
-0.04644775390625,
-0.00824737548828125,
-0.06134033203125,
-0.03851318359375,
-0.006198883056640625,
0.0289764404296875,
0.032257080078125,
0.039794921875,
-0.023590087890625,
0.005023956298828125,
0.01345062255859375,
-0.014068603515625,
0.0374755859375,
0.0582275390625,
-0.04296875,
-0.056854248046875,
0.044158935546875,
0.0188751220703125,
0.005584716796875,
0.01320648193359375,
-0.01439666748046875,
-0.0208892822265625,
-0.03375244140625,
-0.01450347900390625,
0.031585693359375,
-0.044647216796875,
-0.01444244384765625,
-0.052398681640625,
-0.004390716552734375,
-0.041046142578125,
0.0269622802734375,
-0.006103515625,
-0.04046630859375,
-0.04852294921875,
-0.0260009765625,
0.02081298828125,
0.04052734375,
0.01132965087890625,
0.05792236328125,
-0.09197998046875,
0.02392578125,
0.00580596923828125,
0.0216064453125,
-0.02972412109375,
-0.053375244140625,
-0.04571533203125,
-0.006198883056640625,
-0.0416259765625,
-0.07421875,
0.039764404296875,
-0.006923675537109375,
0.0290069580078125,
0.0256195068359375,
0.005889892578125,
0.061920166015625,
-0.03411865234375,
0.0753173828125,
0.0227203369140625,
-0.058624267578125,
0.0303955078125,
-0.0260009765625,
0.04833984375,
0.0670166015625,
0.0207366943359375,
-0.0716552734375,
-0.031494140625,
-0.0792236328125,
-0.07989501953125,
0.036712646484375,
0.01568603515625,
-0.0020198822021484375,
-0.0166015625,
-0.0003647804260253906,
-0.0293121337890625,
0.03106689453125,
-0.02374267578125,
-0.018890380859375,
0.0048980712890625,
-0.00891876220703125,
0.005130767822265625,
-0.03350830078125,
-0.0243072509765625,
-0.017608642578125,
0.054931640625,
0.0176239013671875,
0.007198333740234375,
0.007778167724609375,
-0.004177093505859375,
-0.0012264251708984375,
0.039520263671875,
0.06298828125,
0.0621337890625,
-0.0262908935546875,
0.005565643310546875,
0.006908416748046875,
-0.02593994140625,
-0.0081329345703125,
0.00826263427734375,
-0.0058746337890625,
0.03680419921875,
0.0386962890625,
0.06396484375,
0.00862884521484375,
-0.037200927734375,
0.0252532958984375,
-0.0276031494140625,
-0.055206298828125,
-0.0183868408203125,
-0.000988006591796875,
0.0160980224609375,
-0.004428863525390625,
0.0165557861328125,
-0.007106781005859375,
0.0250244140625,
-0.042022705078125,
0.0275726318359375,
0.01119232177734375,
-0.036407470703125,
-0.0117034912109375,
0.040130615234375,
0.0120391845703125,
-0.0222625732421875,
0.04803466796875,
-0.036529541015625,
-0.06304931640625,
0.04425048828125,
0.005115509033203125,
0.0809326171875,
0.01367950439453125,
0.006580352783203125,
0.0273895263671875,
0.03582763671875,
-0.011505126953125,
0.06439208984375,
-0.005794525146484375,
-0.056365966796875,
-0.0200958251953125,
-0.0240478515625,
-0.0231781005859375,
0.0182342529296875,
-0.06646728515625,
0.02508544921875,
-0.014984130859375,
-0.034210205078125,
0.004180908203125,
0.011749267578125,
-0.043609619140625,
0.03363037109375,
0.0036220550537109375,
0.077392578125,
-0.0748291015625,
0.053741455078125,
0.05859375,
-0.05889892578125,
-0.07672119140625,
-0.0203094482421875,
-0.00984954833984375,
-0.0238494873046875,
0.038238525390625,
-0.0007991790771484375,
0.013916015625,
-0.00881195068359375,
-0.051727294921875,
-0.0601806640625,
0.08880615234375,
-0.0152435302734375,
-0.03680419921875,
0.0194854736328125,
0.0067138671875,
0.031494140625,
0.0023441314697265625,
0.0275421142578125,
0.021331787109375,
0.0269775390625,
-0.0036296844482421875,
-0.07000732421875,
0.0145263671875,
-0.037384033203125,
-0.0050048828125,
0.0233917236328125,
-0.045440673828125,
0.068603515625,
0.005523681640625,
-0.0379638671875,
0.005207061767578125,
0.0670166015625,
0.0237884521484375,
0.035888671875,
0.04571533203125,
0.048980712890625,
0.060882568359375,
-0.00925445556640625,
0.0682373046875,
-0.0170135498046875,
0.0276031494140625,
0.1004638671875,
-0.016265869140625,
0.04620361328125,
0.044769287109375,
-0.0293731689453125,
0.02813720703125,
0.060333251953125,
-0.0162811279296875,
0.026031494140625,
0.032745361328125,
-0.003002166748046875,
-0.0159759521484375,
-0.01016998291015625,
-0.029998779296875,
0.034942626953125,
-0.001445770263671875,
-0.02606201171875,
-0.01480865478515625,
-0.00637054443359375,
0.035430908203125,
-0.011688232421875,
-0.00943756103515625,
0.068603515625,
0.0094451904296875,
-0.05718994140625,
0.040740966796875,
0.026611328125,
0.041290283203125,
-0.04742431640625,
-0.007778167724609375,
-0.01812744140625,
-0.00881195068359375,
-0.02532958984375,
-0.044097900390625,
0.011474609375,
-0.0003833770751953125,
-0.01959228515625,
-0.0191650390625,
0.031005859375,
-0.042022705078125,
-0.031982421875,
-0.005664825439453125,
0.056182861328125,
0.03271484375,
-0.020263671875,
-0.040679931640625,
0.00341033935546875,
-0.0027904510498046875,
-0.004032135009765625,
0.0204620361328125,
0.041839599609375,
-0.01354217529296875,
0.032806396484375,
0.0440673828125,
-0.0020046234130859375,
0.0102691650390625,
0.0277252197265625,
0.079833984375,
-0.0599365234375,
-0.051513671875,
-0.057861328125,
0.05999755859375,
-0.0242156982421875,
-0.057586669921875,
0.0703125,
0.08026123046875,
0.044708251953125,
0.007732391357421875,
0.04864501953125,
0.003002166748046875,
0.032958984375,
-0.040557861328125,
0.052978515625,
-0.048492431640625,
0.01031494140625,
0.01111602783203125,
-0.044403076171875,
-0.00269317626953125,
0.029510498046875,
-0.0186004638671875,
-0.0030803680419921875,
0.0777587890625,
0.055389404296875,
0.00818634033203125,
-0.00296783447265625,
0.0214385986328125,
0.0005545616149902344,
0.02099609375,
0.024444580078125,
0.07220458984375,
-0.06695556640625,
0.047119140625,
-0.01207733154296875,
-0.00015234947204589844,
-0.0063629150390625,
-0.046234130859375,
-0.041778564453125,
-0.050506591796875,
-0.051605224609375,
-0.05181884765625,
-0.0037746429443359375,
0.078369140625,
0.035675048828125,
-0.05419921875,
-0.03094482421875,
0.0091400146484375,
0.01358795166015625,
-0.01056671142578125,
-0.023834228515625,
0.0216064453125,
-0.02569580078125,
-0.0386962890625,
0.0157470703125,
-0.0211334228515625,
0.0016603469848632812,
0.02301025390625,
0.00916290283203125,
-0.0233917236328125,
-0.003421783447265625,
0.0362548828125,
0.008209228515625,
-0.021697998046875,
-0.00376129150390625,
0.010650634765625,
-0.044097900390625,
0.0117645263671875,
0.052734375,
-0.032989501953125,
0.01849365234375,
0.051361083984375,
0.007434844970703125,
0.0419921875,
0.01617431640625,
0.035369873046875,
-0.039642333984375,
-0.00673675537109375,
0.014556884765625,
0.029449462890625,
0.0213165283203125,
-0.00875091552734375,
0.02813720703125,
0.0245361328125,
-0.03387451171875,
-0.0614013671875,
-0.006443023681640625,
-0.08380126953125,
-0.03424072265625,
0.0904541015625,
0.01142120361328125,
-0.00420379638671875,
-0.0037174224853515625,
-0.0345458984375,
0.045318603515625,
-0.032928466796875,
0.035491943359375,
0.07476806640625,
-0.00037860870361328125,
-0.00824737548828125,
-0.054351806640625,
0.039794921875,
0.040740966796875,
-0.07232666015625,
-0.029449462890625,
0.0521240234375,
0.026611328125,
0.0004494190216064453,
0.06463623046875,
-0.00939178466796875,
0.0166015625,
-0.006134033203125,
0.031768798828125,
-0.0214385986328125,
-0.001087188720703125,
-0.04766845703125,
-0.0016431808471679688,
0.0089874267578125,
-0.0772705078125
]
] |
BeIR/nfcorpus-qrels | 2022-10-23T06:05:32.000Z | [
"task_categories:text-retrieval",
"task_ids:entity-linking-retrieval",
"task_ids:fact-checking-retrieval",
"multilinguality:monolingual",
"language:en",
"license:cc-by-sa-4.0",
"region:us"
] | BeIR | null | null | 0 | 994 | 2022-06-05T17:25:56 | ---
annotations_creators: []
language_creators: []
language:
- en
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
paperswithcode_id: beir
pretty_name: BEIR Benchmark
size_categories:
msmarco:
- 1M<n<10M
trec-covid:
- 100k<n<1M
nfcorpus:
- 1K<n<10K
nq:
- 1M<n<10M
hotpotqa:
- 1M<n<10M
fiqa:
- 10K<n<100K
arguana:
- 1K<n<10K
touche-2020:
- 100K<n<1M
cqadupstack:
- 100K<n<1M
quora:
- 100K<n<1M
dbpedia:
- 1M<n<10M
scidocs:
- 10K<n<100K
fever:
- 1M<n<10M
climate-fever:
- 1M<n<10M
scifact:
- 1K<n<10K
source_datasets: []
task_categories:
- text-retrieval
- zero-shot-retrieval
- information-retrieval
- zero-shot-information-retrieval
task_ids:
- passage-retrieval
- entity-linking-retrieval
- fact-checking-retrieval
- tweet-retrieval
- citation-prediction-retrieval
- duplication-question-retrieval
- argument-retrieval
- news-retrieval
- biomedical-information-retrieval
- question-answering-retrieval
---
# Dataset Card for BEIR Benchmark
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://github.com/UKPLab/beir
- **Repository:** https://github.com/UKPLab/beir
- **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
- **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
- **Point of Contact:** nandan.thakur@uwaterloo.ca
### Dataset Summary
BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks:
- Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
- Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
- Bio-Medical IR: [TREC-COVID](https://ir.nist.gov/covidSubmit/index.html), [BioASQ](http://bioasq.org), [NFCorpus](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/)
- News Retrieval: [TREC-NEWS](https://trec.nist.gov/data/news2019.html), [Robust04](https://trec.nist.gov/data/robust/04.guidelines.html)
- Argument Retrieval: [Touche-2020](https://webis.de/events/touche-20/shared-task-1.html), [ArguAna](tp://argumentation.bplaced.net/arguana/data)
- Duplicate Question Retrieval: [Quora](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs), [CqaDupstack](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/)
- Citation-Prediction: [SCIDOCS](https://allenai.org/data/scidocs)
- Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
- Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
All these datasets have been preprocessed and can be used for your experiments.
```python
```
### Supported Tasks and Leaderboards
The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia.
The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/).
### Languages
All tasks are in English (`en`).
## Dataset Structure
All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format:
- `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}`
- `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}`
- `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1`
### Data Instances
A high level example of any beir dataset:
```python
corpus = {
"doc1" : {
"title": "Albert Einstein",
"text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
its influence on the philosophy of science. He is best known to the general public for his mass–energy \
equivalence formula E = mc2, which has been dubbed 'the world's most famous equation'. He received the 1921 \
Nobel Prize in Physics 'for his services to theoretical physics, and especially for his discovery of the law \
of the photoelectric effect', a pivotal step in the development of quantum theory."
},
"doc2" : {
"title": "", # Keep title an empty string if not present
"text": "Wheat beer is a top-fermented beer which is brewed with a large proportion of wheat relative to the amount of \
malted barley. The two main varieties are German Weißbier and Belgian witbier; other types include Lambic (made\
with wild yeast), Berliner Weisse (a cloudy, sour beer), and Gose (a sour, salty beer)."
},
}
queries = {
"q1" : "Who developed the mass-energy equivalence formula?",
"q2" : "Which beer is brewed with a large proportion of wheat?"
}
qrels = {
"q1" : {"doc1": 1},
"q2" : {"doc2": 1},
}
```
### Data Fields
Examples from all configurations have the following features:
### Corpus
- `corpus`: a `dict` feature representing the document title and passage text, made up of:
- `_id`: a `string` feature representing the unique document id
- `title`: a `string` feature, denoting the title of the document.
- `text`: a `string` feature, denoting the text of the document.
### Queries
- `queries`: a `dict` feature representing the query, made up of:
- `_id`: a `string` feature representing the unique query id
- `text`: a `string` feature, denoting the text of the query.
### Qrels
- `qrels`: a `dict` feature representing the query document relevance judgements, made up of:
- `_id`: a `string` feature representing the query id
- `_id`: a `string` feature, denoting the document id.
- `score`: a `int32` feature, denoting the relevance judgement between query and document.
### Data Splits
| Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
| -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:|
| MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` |
| TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` |
| NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` |
| BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
| NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` |
| HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` |
| FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` |
| Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
| TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
| ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` |
| Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` |
| CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` |
| Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` |
| DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` |
| SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` |
| FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` |
| Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` |
| SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` |
| Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
## Dataset Creation
### Curation Rationale
[Needs More Information]
### Source Data
#### Initial Data Collection and Normalization
[Needs More Information]
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
[Needs More Information]
#### Who are the annotators?
[Needs More Information]
### Personal and Sensitive Information
[Needs More Information]
## Considerations for Using the Data
### Social Impact of Dataset
[Needs More Information]
### Discussion of Biases
[Needs More Information]
### Other Known Limitations
[Needs More Information]
## Additional Information
### Dataset Curators
[Needs More Information]
### Licensing Information
[Needs More Information]
### Citation Information
Cite as:
```
@inproceedings{
thakur2021beir,
title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych},
booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
year={2021},
url={https://openreview.net/forum?id=wCu6T5xFjeJ}
}
```
### Contributions
Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset. | 13,988 | [
[
-0.0396728515625,
-0.03985595703125,
0.010955810546875,
0.003665924072265625,
0.004230499267578125,
0.00008660554885864258,
-0.0081939697265625,
-0.018890380859375,
0.0216827392578125,
0.005954742431640625,
-0.034332275390625,
-0.0545654296875,
-0.0263824462890625,
0.0153961181640625,
-0.0228118896484375,
0.0740966796875,
0.0010728836059570312,
0.004459381103515625,
-0.0185394287109375,
-0.0277862548828125,
-0.006099700927734375,
-0.03399658203125,
-0.038330078125,
-0.022064208984375,
0.034576416015625,
0.030120849609375,
0.03216552734375,
0.036956787109375,
0.06512451171875,
0.0196533203125,
-0.01287841796875,
0.01464080810546875,
-0.032073974609375,
-0.0086822509765625,
-0.0189971923828125,
-0.0254669189453125,
-0.0256195068359375,
-0.00322723388671875,
0.053375244140625,
0.03680419921875,
-0.0037364959716796875,
0.0288238525390625,
0.00594329833984375,
0.058013916015625,
-0.033721923828125,
0.00879669189453125,
-0.040679931640625,
-0.007904052734375,
-0.027618408203125,
-0.009124755859375,
-0.00627899169921875,
-0.01433563232421875,
-0.0025386810302734375,
-0.049560546875,
0.03338623046875,
0.0185089111328125,
0.09039306640625,
0.011383056640625,
-0.0258636474609375,
-0.01453399658203125,
-0.032562255859375,
0.064453125,
-0.049774169921875,
0.03662109375,
0.038726806640625,
0.0190582275390625,
-0.01071929931640625,
-0.062347412109375,
-0.04241943359375,
-0.0071258544921875,
-0.027679443359375,
0.034912109375,
-0.0120086669921875,
-0.026397705078125,
0.026947021484375,
0.0316162109375,
-0.0655517578125,
-0.01197052001953125,
-0.036468505859375,
-0.01514434814453125,
0.0584716796875,
0.0227813720703125,
0.002429962158203125,
-0.0306549072265625,
-0.02392578125,
-0.032958984375,
-0.0311737060546875,
0.020477294921875,
0.0156097412109375,
0.021820068359375,
-0.0251312255859375,
0.0303955078125,
-0.034332275390625,
0.03765869140625,
0.006557464599609375,
-0.00782012939453125,
0.049072265625,
-0.061920166015625,
-0.003810882568359375,
-0.00879669189453125,
0.0770263671875,
0.0309600830078125,
-0.0303192138671875,
-0.00431060791015625,
-0.00434112548828125,
-0.020355224609375,
0.00047898292541503906,
-0.0648193359375,
-0.0115814208984375,
0.044830322265625,
-0.033721923828125,
-0.0015382766723632812,
0.0233917236328125,
-0.0740966796875,
-0.00548553466796875,
0.0006818771362304688,
0.0300140380859375,
-0.0396728515625,
-0.0120849609375,
0.0018510818481445312,
-0.04345703125,
0.0261688232421875,
-0.0006022453308105469,
-0.04742431640625,
0.02398681640625,
0.03399658203125,
0.061004638671875,
-0.0031414031982421875,
-0.019927978515625,
-0.0253143310546875,
0.01097869873046875,
-0.0109100341796875,
0.04986572265625,
-0.024200439453125,
-0.030792236328125,
-0.01076507568359375,
0.01149749755859375,
-0.0025691986083984375,
-0.0256195068359375,
0.07049560546875,
-0.02960205078125,
0.03411865234375,
-0.059906005859375,
-0.031280517578125,
-0.008209228515625,
0.0259246826171875,
-0.052764892578125,
0.09661865234375,
0.0201416015625,
-0.08331298828125,
0.0220947265625,
-0.06890869140625,
-0.032745361328125,
0.0007491111755371094,
-0.00859832763671875,
-0.034637451171875,
-0.0269012451171875,
0.017333984375,
0.03216552734375,
-0.04730224609375,
0.0097503662109375,
-0.0121307373046875,
-0.0164642333984375,
0.01377105712890625,
0.0025177001953125,
0.07513427734375,
0.029449462890625,
-0.026275634765625,
-0.0123291015625,
-0.0657958984375,
0.00141143798828125,
0.023834228515625,
-0.0296173095703125,
-0.01287841796875,
-0.0032901763916015625,
0.014312744140625,
0.00891876220703125,
0.0222625732421875,
-0.039337158203125,
0.00031185150146484375,
-0.0230560302734375,
0.03778076171875,
0.020233154296875,
0.010955810546875,
0.0179290771484375,
-0.0533447265625,
0.0201263427734375,
0.01020050048828125,
0.0260467529296875,
0.005214691162109375,
-0.03350830078125,
-0.038177490234375,
-0.022003173828125,
0.0266571044921875,
0.048492431640625,
-0.041290283203125,
0.0465087890625,
-0.03900146484375,
-0.07025146484375,
-0.043121337890625,
0.00550079345703125,
0.033843994140625,
0.057647705078125,
0.04644775390625,
-0.00653076171875,
-0.03936767578125,
-0.0694580078125,
-0.01377105712890625,
-0.0163421630859375,
0.00858306884765625,
0.03619384765625,
0.06671142578125,
-0.0088958740234375,
0.055450439453125,
-0.04473876953125,
-0.0218353271484375,
-0.0081634521484375,
0.003681182861328125,
0.0380859375,
0.04742431640625,
0.04937744140625,
-0.08599853515625,
-0.035614013671875,
-0.002597808837890625,
-0.05889892578125,
0.000560760498046875,
0.00501251220703125,
-0.0146026611328125,
0.01436614990234375,
0.033447265625,
-0.044525146484375,
0.02471923828125,
0.009796142578125,
-0.02001953125,
0.028839111328125,
-0.01015472412109375,
0.041259765625,
-0.09332275390625,
0.044586181640625,
0.01091766357421875,
0.0110015869140625,
-0.040740966796875,
0.005474090576171875,
0.00933074951171875,
0.01546478271484375,
-0.03289794921875,
0.051849365234375,
-0.03228759765625,
0.00579071044921875,
0.024078369140625,
0.0027484893798828125,
0.0167236328125,
0.02471923828125,
-0.0149688720703125,
0.0584716796875,
0.036834716796875,
-0.049102783203125,
0.0243682861328125,
0.032379150390625,
-0.0240325927734375,
0.0277862548828125,
-0.0521240234375,
-0.00843048095703125,
-0.007266998291015625,
0.0190887451171875,
-0.07244873046875,
-0.0210723876953125,
0.017669677734375,
-0.049224853515625,
0.0169525146484375,
-0.01044464111328125,
-0.0556640625,
-0.047119140625,
-0.040557861328125,
0.015167236328125,
0.0372314453125,
-0.0263824462890625,
0.036834716796875,
0.026214599609375,
0.0092926025390625,
-0.059234619140625,
-0.054779052734375,
-0.0139923095703125,
-0.01971435546875,
-0.053192138671875,
0.050628662109375,
-0.0226287841796875,
-0.020721435546875,
0.0137176513671875,
-0.00506591796875,
-0.004611968994140625,
0.00576019287109375,
0.018402099609375,
0.021728515625,
-0.007740020751953125,
0.006542205810546875,
-0.01108551025390625,
0.0134735107421875,
-0.009002685546875,
0.005260467529296875,
0.0433349609375,
-0.0277252197265625,
-0.009765625,
-0.02703857421875,
0.023040771484375,
0.0419921875,
-0.0254974365234375,
0.0533447265625,
0.06365966796875,
-0.0266876220703125,
0.0140228271484375,
-0.04107666015625,
-0.01100921630859375,
-0.03369140625,
0.0181121826171875,
-0.0296173095703125,
-0.045867919921875,
0.055908203125,
0.0110321044921875,
0.01204681396484375,
0.07196044921875,
0.034912109375,
-0.01447296142578125,
0.05596923828125,
0.01457977294921875,
-0.00528717041015625,
0.03485107421875,
-0.050994873046875,
-0.003757476806640625,
-0.06256103515625,
-0.0380859375,
-0.06878662109375,
-0.01529693603515625,
-0.0521240234375,
-0.0290679931640625,
0.035186767578125,
0.0123138427734375,
-0.0341796875,
0.0289459228515625,
-0.051788330078125,
0.01149749755859375,
0.055419921875,
0.00737762451171875,
-0.0020427703857421875,
0.0002586841583251953,
-0.0200347900390625,
0.01273345947265625,
-0.060791015625,
-0.0208282470703125,
0.09161376953125,
0.0048980712890625,
0.037750244140625,
0.012725830078125,
0.06011962890625,
0.0219879150390625,
0.0007772445678710938,
-0.024932861328125,
0.0419921875,
-0.01227569580078125,
-0.07568359375,
-0.017974853515625,
-0.041046142578125,
-0.08673095703125,
0.009002685546875,
-0.0313720703125,
-0.052642822265625,
0.0250396728515625,
0.002979278564453125,
-0.021392822265625,
0.0184478759765625,
-0.057464599609375,
0.059783935546875,
-0.025360107421875,
-0.0540771484375,
-0.0050201416015625,
-0.06365966796875,
0.01390838623046875,
0.0019550323486328125,
0.0259857177734375,
-0.00223541259765625,
-0.004611968994140625,
0.079345703125,
-0.03216552734375,
0.031005859375,
-0.0123138427734375,
0.034210205078125,
0.0303955078125,
-0.02642822265625,
0.03863525390625,
0.007740020751953125,
-0.03717041015625,
0.0267791748046875,
0.03338623046875,
-0.044525146484375,
-0.0242767333984375,
0.054107666015625,
-0.0582275390625,
-0.0333251953125,
-0.05181884765625,
-0.035736083984375,
-0.002758026123046875,
0.0257110595703125,
0.03778076171875,
0.0333251953125,
-0.0211639404296875,
0.0284271240234375,
0.042327880859375,
-0.02520751953125,
0.027435302734375,
0.041778564453125,
-0.0029010772705078125,
-0.045745849609375,
0.058197021484375,
0.0215606689453125,
-0.0106353759765625,
0.05133056640625,
0.019866943359375,
-0.0343017578125,
-0.04473876953125,
-0.02178955078125,
0.020050048828125,
-0.041839599609375,
-0.03326416015625,
-0.056243896484375,
-0.02044677734375,
-0.055419921875,
0.000637054443359375,
-0.01119232177734375,
-0.01922607421875,
-0.0279083251953125,
-0.006427764892578125,
0.04632568359375,
0.025146484375,
-0.030181884765625,
0.0097808837890625,
-0.06134033203125,
0.02862548828125,
-0.00550079345703125,
0.01555633544921875,
-0.0157470703125,
-0.03411865234375,
-0.02911376953125,
0.01055908203125,
-0.025177001953125,
-0.04766845703125,
0.0293731689453125,
0.0147247314453125,
0.05889892578125,
0.0173797607421875,
0.0155029296875,
0.050689697265625,
-0.01049041748046875,
0.07879638671875,
0.01450347900390625,
-0.042236328125,
0.046234130859375,
-0.02911376953125,
0.0181121826171875,
0.0633544921875,
0.051116943359375,
-0.029876708984375,
-0.01105499267578125,
-0.057861328125,
-0.07659912109375,
0.049896240234375,
0.0271148681640625,
-0.017059326171875,
-0.00395965576171875,
0.01959228515625,
0.004302978515625,
0.00803375244140625,
-0.0292816162109375,
-0.05133056640625,
-0.0262603759765625,
-0.0200958251953125,
-0.00589752197265625,
0.001857757568359375,
-0.0281982421875,
-0.042327880859375,
0.0697021484375,
0.00838470458984375,
0.031890869140625,
0.04656982421875,
-0.00174713134765625,
0.003509521484375,
0.021942138671875,
0.0308837890625,
0.047607421875,
-0.048736572265625,
-0.0012464523315429688,
0.0115814208984375,
-0.042816162109375,
-0.01494598388671875,
0.037872314453125,
-0.01470184326171875,
0.003459930419921875,
0.0246124267578125,
0.0352783203125,
-0.003971099853515625,
-0.050262451171875,
0.030120849609375,
-0.010833740234375,
-0.03643798828125,
-0.0240020751953125,
0.01013946533203125,
0.0119476318359375,
0.0202789306640625,
0.045196533203125,
-0.006866455078125,
0.0179443359375,
-0.045989990234375,
0.021240234375,
0.031707763671875,
-0.0072784423828125,
-0.0174713134765625,
0.053985595703125,
-0.0011968612670898438,
-0.00844573974609375,
0.035797119140625,
-0.0293426513671875,
-0.03533935546875,
0.055633544921875,
0.0194549560546875,
0.03668212890625,
0.0023021697998046875,
0.01224517822265625,
0.058807373046875,
0.0227813720703125,
-0.01152801513671875,
0.043487548828125,
0.006626129150390625,
-0.043792724609375,
0.0084228515625,
-0.046112060546875,
-0.0211639404296875,
0.019134521484375,
-0.054107666015625,
0.01690673828125,
-0.0271759033203125,
-0.027679443359375,
0.02667236328125,
0.040863037109375,
-0.08013916015625,
0.0178680419921875,
-0.01369476318359375,
0.080078125,
-0.050750732421875,
0.049591064453125,
0.06201171875,
-0.053863525390625,
-0.0570068359375,
-0.01218414306640625,
-0.004199981689453125,
-0.043182373046875,
0.040740966796875,
-0.004718780517578125,
0.01654052734375,
-0.00658416748046875,
-0.0452880859375,
-0.076416015625,
0.10992431640625,
0.006633758544921875,
-0.038116455078125,
0.0161285400390625,
0.00782012939453125,
0.048004150390625,
-0.01071929931640625,
0.033294677734375,
0.03607177734375,
0.05145263671875,
0.0076141357421875,
-0.05712890625,
0.0116424560546875,
-0.041229248046875,
-0.02777099609375,
0.01458740234375,
-0.0821533203125,
0.060577392578125,
0.0011854171752929688,
-0.0113372802734375,
-0.0083465576171875,
0.042327880859375,
0.015838623046875,
0.056915283203125,
0.01715087890625,
0.0657958984375,
0.07000732421875,
-0.01454925537109375,
0.08319091796875,
-0.034637451171875,
0.035980224609375,
0.0670166015625,
-0.017974853515625,
0.060882568359375,
0.026824951171875,
-0.0312347412109375,
0.0302886962890625,
0.053009033203125,
-0.0281982421875,
0.0474853515625,
0.00551605224609375,
0.0013017654418945312,
0.0012712478637695312,
-0.01068878173828125,
-0.051666259765625,
0.0289459228515625,
0.0273590087890625,
-0.01611328125,
-0.00769805908203125,
-0.0179901123046875,
0.004817962646484375,
-0.00933837890625,
-0.01708984375,
0.0472412109375,
-0.0124664306640625,
-0.0419921875,
0.058563232421875,
-0.001617431640625,
0.050628662109375,
-0.05450439453125,
0.01422882080078125,
-0.03033447265625,
-0.00147247314453125,
-0.03076171875,
-0.06256103515625,
0.0203857421875,
0.0023174285888671875,
-0.0293731689453125,
0.0013151168823242188,
0.045684814453125,
-0.0103607177734375,
-0.0428466796875,
0.0166015625,
0.045440673828125,
0.0273590087890625,
0.01203155517578125,
-0.0731201171875,
0.002132415771484375,
-0.0013284683227539062,
-0.026275634765625,
0.0260467529296875,
0.028228759765625,
0.007335662841796875,
0.043182373046875,
0.05841064453125,
-0.0011510848999023438,
0.0026531219482421875,
-0.0136260986328125,
0.06756591796875,
-0.06964111328125,
-0.021820068359375,
-0.043121337890625,
0.031341552734375,
-0.0265655517578125,
-0.033599853515625,
0.061920166015625,
0.084716796875,
0.06866455078125,
0.01021575927734375,
0.06591796875,
-0.037506103515625,
0.046905517578125,
-0.0238189697265625,
0.0633544921875,
-0.06982421875,
0.005779266357421875,
-0.0092926025390625,
-0.038299560546875,
-0.0125885009765625,
0.0232086181640625,
-0.0208892822265625,
0.004703521728515625,
0.054534912109375,
0.076904296875,
0.002338409423828125,
-0.0108642578125,
0.004306793212890625,
0.020538330078125,
0.0193328857421875,
0.030792236328125,
0.035369873046875,
-0.061004638671875,
0.049957275390625,
-0.033050537109375,
0.000011265277862548828,
-0.029449462890625,
-0.049560546875,
-0.054595947265625,
-0.07293701171875,
-0.0307159423828125,
-0.042755126953125,
0.00994110107421875,
0.07489013671875,
0.051971435546875,
-0.06884765625,
-0.0074615478515625,
0.007427215576171875,
0.01343536376953125,
-0.0281219482421875,
-0.0204925537109375,
0.0555419921875,
-0.0028247833251953125,
-0.045013427734375,
0.011322021484375,
-0.0007615089416503906,
-0.0028133392333984375,
0.0179443359375,
-0.008209228515625,
-0.042327880859375,
0.0030002593994140625,
0.036102294921875,
0.035186767578125,
-0.03741455078125,
-0.004634857177734375,
0.0048370361328125,
-0.0194549560546875,
0.021728515625,
0.017974853515625,
-0.047088623046875,
0.0100555419921875,
0.057769775390625,
0.037078857421875,
0.050750732421875,
0.006015777587890625,
-0.0048065185546875,
-0.03656005859375,
-0.005313873291015625,
0.0178070068359375,
0.029205322265625,
0.02923583984375,
-0.0294036865234375,
0.058563232421875,
0.0259246826171875,
-0.0408935546875,
-0.065673828125,
-0.0250091552734375,
-0.11383056640625,
-0.0178070068359375,
0.09185791015625,
0.00017952919006347656,
-0.026092529296875,
-0.002590179443359375,
-0.00399017333984375,
0.0309295654296875,
-0.053375244140625,
0.045867919921875,
0.044677734375,
-0.01285552978515625,
0.0120086669921875,
-0.0455322265625,
0.033294677734375,
0.0188446044921875,
-0.066162109375,
-0.0160064697265625,
0.020721435546875,
0.033782958984375,
0.0225372314453125,
0.0419921875,
-0.01561737060546875,
0.00428009033203125,
0.01019287109375,
0.006622314453125,
-0.01142120361328125,
0.0036258697509765625,
-0.0055084228515625,
0.017059326171875,
-0.0173187255859375,
-0.0169525146484375
]
] |
liuhaotian/LLaVA-Instruct-150K | 2023-10-06T22:18:34.000Z | [
"task_categories:visual-question-answering",
"task_categories:question-answering",
"size_categories:100K<n<1M",
"language:en",
"license:cc-by-nc-4.0",
"region:us"
] | liuhaotian | null | null | 174 | 994 | 2023-04-17T23:47:27 | ---
license: cc-by-nc-4.0
task_categories:
- visual-question-answering
- question-answering
language:
- en
pretty_name: LLaVA Visual Instruct 150K
size_categories:
- 100K<n<1M
---
# LLaVA Visual Instruct 150K Dataset Card
## Dataset details
**Dataset type:**
LLaVA Visual Instruct 150K is a set of GPT-generated multimodal instruction-following data.
It is constructed for visual instruction tuning and for building large multimodal towards GPT-4 vision/language capability.
**Dataset date:**
LLaVA Visual Instruct 150K was collected in April 2023, by prompting GPT-4-0314 API.
**Paper or resources for more information:**
https://llava-vl.github.io/
**License:**
Attribution-NonCommercial 4.0 International
It should abide by the policy of OpenAI: https://openai.com/policies/terms-of-use
**Where to send questions or comments about the model:**
https://github.com/haotian-liu/LLaVA/issues
## Intended use
**Primary intended uses:**
The primary use of LLaVA is research on large multimodal models and chatbots.
**Primary intended users:**
The primary intended users of the model are researchers and hobbyists in computer vision, natural language processing, machine learning, and artificial intelligence. | 1,216 | [
[
-0.0054931640625,
-0.055511474609375,
0.0265960693359375,
0.0173797607421875,
-0.0229339599609375,
0.0023403167724609375,
-0.004650115966796875,
-0.022857666015625,
0.013824462890625,
0.0394287109375,
-0.055511474609375,
-0.047119140625,
-0.03424072265625,
-0.01079559326171875,
-0.0214996337890625,
0.07476806640625,
-0.01203155517578125,
0.0052337646484375,
-0.0316162109375,
0.0007448196411132812,
-0.059967041015625,
-0.0153656005859375,
-0.027862548828125,
0.00589752197265625,
0.048492431640625,
0.053619384765625,
0.02337646484375,
0.032867431640625,
0.038055419921875,
0.028839111328125,
0.01898193359375,
0.01146697998046875,
-0.048309326171875,
-0.00629425048828125,
0.0167388916015625,
-0.04168701171875,
-0.05438232421875,
-0.00739288330078125,
0.06396484375,
0.005828857421875,
-0.01319122314453125,
0.043609619140625,
0.0111083984375,
0.04022216796875,
-0.033538818359375,
0.05059814453125,
-0.03973388671875,
-0.0108642578125,
-0.04608154296875,
-0.01306915283203125,
-0.03509521484375,
-0.0302734375,
-0.012115478515625,
-0.053955078125,
-0.0068817138671875,
-0.0021991729736328125,
0.06732177734375,
0.0222625732421875,
-0.037200927734375,
-0.0160369873046875,
-0.032318115234375,
0.059295654296875,
-0.031829833984375,
0.0186004638671875,
0.0325927734375,
0.0455322265625,
-0.00690460205078125,
-0.06573486328125,
-0.03509521484375,
-0.0012922286987304688,
0.0166778564453125,
0.0211334228515625,
-0.00710296630859375,
0.0211944580078125,
0.03277587890625,
0.0242919921875,
-0.047821044921875,
-0.0102081298828125,
-0.041900634765625,
-0.002422332763671875,
0.045135498046875,
0.025909423828125,
0.0271148681640625,
-0.0215606689453125,
-0.0338134765625,
-0.01210784912109375,
-0.054901123046875,
-0.0006093978881835938,
0.0369873046875,
0.005313873291015625,
-0.0305328369140625,
0.056671142578125,
-0.012237548828125,
0.053680419921875,
-0.014404296875,
-0.04638671875,
0.038116455078125,
-0.04461669921875,
-0.034759521484375,
-0.01092529296875,
0.04376220703125,
0.0235137939453125,
0.035614013671875,
0.022430419921875,
-0.01468658447265625,
-0.009918212890625,
0.01349639892578125,
-0.0537109375,
-0.00775146484375,
-0.000919342041015625,
-0.0372314453125,
-0.01213836669921875,
-0.0094757080078125,
-0.06634521484375,
-0.01654052734375,
-0.035675048828125,
0.01983642578125,
-0.0290985107421875,
-0.01306915283203125,
-0.01427459716796875,
0.01122283935546875,
0.0478515625,
0.04119873046875,
-0.08087158203125,
0.001190185546875,
0.038421630859375,
0.048583984375,
0.00666046142578125,
-0.0258026123046875,
-0.009735107421875,
0.0274505615234375,
-0.00844573974609375,
0.060791015625,
-0.04443359375,
-0.031097412109375,
0.00514984130859375,
0.0211944580078125,
-0.012298583984375,
-0.0186309814453125,
0.028533935546875,
-0.034149169921875,
-0.00009530782699584961,
-0.0297088623046875,
-0.035980224609375,
-0.01904296875,
0.01317596435546875,
-0.0496826171875,
0.07720947265625,
-0.0007004737854003906,
-0.049041748046875,
0.0380859375,
-0.04412841796875,
-0.01076507568359375,
0.04107666015625,
-0.03155517578125,
-0.0204925537109375,
-0.00841522216796875,
0.0198974609375,
0.0235748291015625,
-0.01393890380859375,
0.025054931640625,
-0.010589599609375,
-0.03582763671875,
0.0022792816162109375,
-0.05572509765625,
0.06890869140625,
0.017852783203125,
-0.0036907196044921875,
0.022125244140625,
-0.047760009765625,
-0.0081024169921875,
0.0062713623046875,
-0.032623291015625,
-0.0024738311767578125,
-0.0244903564453125,
-0.00714111328125,
-0.01174163818359375,
0.041595458984375,
-0.0467529296875,
0.043853759765625,
-0.001434326171875,
0.005764007568359375,
0.09075927734375,
-0.0013742446899414062,
0.004276275634765625,
-0.00794219970703125,
0.062347412109375,
-0.01678466796875,
0.049652099609375,
-0.022186279296875,
-0.07867431640625,
-0.048370361328125,
-0.032958984375,
0.0163726806640625,
0.0616455078125,
-0.08258056640625,
-0.006072998046875,
-0.0269927978515625,
-0.022064208984375,
-0.054290771484375,
0.03155517578125,
0.0300750732421875,
0.035186767578125,
0.0003478527069091797,
0.00687408447265625,
-0.049896240234375,
-0.07586669921875,
0.0150146484375,
-0.00989532470703125,
0.003498077392578125,
0.028106689453125,
0.05511474609375,
-0.0242919921875,
0.04156494140625,
-0.0374755859375,
-0.02423095703125,
-0.0196380615234375,
-0.00386810302734375,
0.016326904296875,
0.01151275634765625,
0.039794921875,
-0.0484619140625,
-0.056365966796875,
-0.0028820037841796875,
-0.0797119140625,
0.0084228515625,
-0.002574920654296875,
-0.0287628173828125,
0.0123138427734375,
0.0294647216796875,
-0.019500732421875,
0.054107666015625,
0.06256103515625,
-0.01507568359375,
0.0221405029296875,
-0.01145172119140625,
0.02691650390625,
-0.08935546875,
-0.0112762451171875,
-0.007778167724609375,
-0.01413726806640625,
-0.026153564453125,
-0.005863189697265625,
0.0090179443359375,
-0.01506805419921875,
-0.039947509765625,
0.035858154296875,
-0.0277557373046875,
-0.0037479400634765625,
-0.0038700103759765625,
-0.01436614990234375,
-0.0125732421875,
0.047027587890625,
-0.0189056396484375,
0.07666015625,
0.04156494140625,
-0.02325439453125,
0.054595947265625,
0.0350341796875,
-0.034637451171875,
0.057342529296875,
-0.057830810546875,
0.005725860595703125,
-0.00946807861328125,
0.00612640380859375,
-0.077880859375,
-0.051025390625,
0.0382080078125,
-0.0244598388671875,
0.0218963623046875,
-0.01861572265625,
-0.04656982421875,
-0.0178680419921875,
-0.030303955078125,
0.04473876953125,
0.0379638671875,
-0.044677734375,
0.04937744140625,
0.0305633544921875,
-0.010162353515625,
-0.050140380859375,
-0.07293701171875,
-0.0013055801391601562,
-0.01184844970703125,
-0.05657958984375,
0.00583648681640625,
-0.0261688232421875,
-0.006130218505859375,
-0.003139495849609375,
0.02947998046875,
-0.0029926300048828125,
-0.031402587890625,
0.046875,
0.0408935546875,
-0.0048980712890625,
0.020721435546875,
0.0003681182861328125,
-0.005359649658203125,
-0.0111236572265625,
0.02099609375,
0.0287017822265625,
-0.0215911865234375,
-0.04534912109375,
-0.0635986328125,
0.018829345703125,
0.0173187255859375,
0.003200531005859375,
0.050689697265625,
0.04425048828125,
-0.01134490966796875,
0.00942230224609375,
-0.04180908203125,
0.00452423095703125,
-0.04351806640625,
0.0311431884765625,
-0.03277587890625,
-0.04364013671875,
0.027984619140625,
-0.0029850006103515625,
0.0145721435546875,
0.0279693603515625,
0.047393798828125,
-0.0212249755859375,
0.0501708984375,
0.0440673828125,
-0.006526947021484375,
0.0718994140625,
-0.0249481201171875,
-0.0187530517578125,
-0.061187744140625,
-0.038421630859375,
0.0007276535034179688,
-0.0245208740234375,
-0.04327392578125,
-0.033355712890625,
0.0255889892578125,
-0.0272064208984375,
-0.0164031982421875,
0.0037822723388671875,
-0.0279541015625,
0.041748046875,
0.0552978515625,
0.0252685546875,
0.0120391845703125,
0.0248565673828125,
0.01947021484375,
-0.01053619384765625,
-0.0379638671875,
-0.0293731689453125,
0.10870361328125,
0.032012939453125,
0.0738525390625,
0.00015282630920410156,
0.060760498046875,
0.02703857421875,
0.0163421630859375,
-0.042022705078125,
0.059814453125,
-0.0079803466796875,
-0.042022705078125,
-0.019439697265625,
-0.0234222412109375,
-0.06890869140625,
-0.0197906494140625,
0.0075531005859375,
-0.03857421875,
0.006832122802734375,
0.0254974365234375,
0.00980377197265625,
0.0261993408203125,
-0.08038330078125,
0.06439208984375,
-0.029876708984375,
-0.0160369873046875,
-0.0065155029296875,
-0.026824951171875,
0.0426025390625,
0.01100921630859375,
0.0021266937255859375,
0.00428009033203125,
-0.00457000732421875,
0.0576171875,
-0.0146636962890625,
0.09674072265625,
-0.031036376953125,
-0.0162811279296875,
0.0423583984375,
-0.0274200439453125,
0.041595458984375,
0.0122528076171875,
0.0161590576171875,
0.01837158203125,
-0.00811767578125,
-0.03973388671875,
-0.0202789306640625,
0.057037353515625,
-0.064208984375,
-0.032562255859375,
-0.0311431884765625,
-0.042205810546875,
0.006946563720703125,
0.00833892822265625,
0.0214080810546875,
0.040557861328125,
-0.00652313232421875,
0.022308349609375,
0.056488037109375,
-0.0307159423828125,
0.0228729248046875,
0.00807952880859375,
-0.0095367431640625,
-0.04022216796875,
0.08990478515625,
0.0145111083984375,
0.0193328857421875,
0.019378662109375,
-0.0127410888671875,
-0.0029315948486328125,
-0.025482177734375,
-0.04827880859375,
0.0229949951171875,
-0.06640625,
-0.0241851806640625,
-0.0012121200561523438,
-0.0200653076171875,
-0.021026611328125,
0.002834320068359375,
-0.0193023681640625,
-0.00543212890625,
-0.026885986328125,
-0.00843048095703125,
0.053985595703125,
0.0673828125,
0.0099639892578125,
0.038330078125,
-0.029144287109375,
0.033905029296875,
0.05059814453125,
0.042938232421875,
-0.016632080078125,
-0.04425048828125,
-0.021453857421875,
0.00733184814453125,
-0.0173492431640625,
-0.056121826171875,
0.02032470703125,
0.022796630859375,
0.054901123046875,
0.020263671875,
-0.031219482421875,
0.0626220703125,
-0.0266265869140625,
0.0615234375,
0.0037670135498046875,
-0.044189453125,
0.05712890625,
-0.0198974609375,
0.047210693359375,
0.03973388671875,
0.0207672119140625,
-0.0244903564453125,
-0.00197601318359375,
-0.028076171875,
-0.05035400390625,
0.05322265625,
-0.001964569091796875,
0.018646240234375,
0.01120758056640625,
0.024658203125,
0.0157623291015625,
0.01263427734375,
-0.0723876953125,
-0.019073486328125,
-0.0258331298828125,
-0.0382080078125,
0.01551055908203125,
-0.051300048828125,
-0.02398681640625,
-0.0244903564453125,
0.03875732421875,
-0.017578125,
0.046844482421875,
-0.0241851806640625,
-0.0188751220703125,
-0.0008101463317871094,
-0.0006694793701171875,
0.05963134765625,
0.056121826171875,
-0.0237274169921875,
-0.0243988037109375,
0.02410888671875,
-0.06890869140625,
-0.012420654296875,
-0.01264190673828125,
-0.01308441162109375,
-0.0195159912109375,
0.054656982421875,
0.07489013671875,
0.0080718994140625,
-0.048065185546875,
0.04168701171875,
-0.0187225341796875,
-0.02703857421875,
-0.043914794921875,
-0.0029277801513671875,
-0.0028247833251953125,
0.02935791015625,
0.00839996337890625,
-0.0237579345703125,
0.0065155029296875,
-0.0268707275390625,
-0.0005664825439453125,
0.026611328125,
-0.01049041748046875,
-0.026031494140625,
0.0330810546875,
0.0173492431640625,
0.0010881423950195312,
0.062408447265625,
-0.000022411346435546875,
0.0032939910888671875,
0.037689208984375,
0.019866943359375,
0.060882568359375,
-0.0226898193359375,
0.0243988037109375,
0.0302276611328125,
0.0246124267578125,
0.0241241455078125,
0.06427001953125,
0.002407073974609375,
-0.033782958984375,
-0.03662109375,
-0.046112060546875,
-0.025238037109375,
0.004192352294921875,
-0.03509521484375,
0.0281829833984375,
-0.03790283203125,
0.0029468536376953125,
-0.0165863037109375,
-0.007610321044921875,
-0.06536865234375,
0.0018968582153320312,
0.0165557861328125,
0.04901123046875,
-0.061309814453125,
0.09130859375,
0.03765869140625,
-0.05059814453125,
-0.047210693359375,
-0.014404296875,
0.0160980224609375,
-0.10150146484375,
0.0721435546875,
-0.0032825469970703125,
0.00305938720703125,
-0.0197906494140625,
-0.0770263671875,
-0.060150146484375,
0.11181640625,
0.03887939453125,
-0.056640625,
0.0007815361022949219,
0.019866943359375,
0.0272064208984375,
-0.023681640625,
0.014892578125,
0.0174560546875,
0.04498291015625,
0.03302001953125,
-0.062744140625,
-0.0168304443359375,
-0.0233612060546875,
-0.0016736984252929688,
-0.00592803955078125,
-0.06597900390625,
0.06561279296875,
-0.00263214111328125,
-0.0092926025390625,
-0.0055389404296875,
0.047821044921875,
0.0203857421875,
0.01763916015625,
0.028289794921875,
0.03997802734375,
0.048797607421875,
-0.0003857612609863281,
0.0830078125,
-0.01453399658203125,
-0.0082244873046875,
0.0745849609375,
0.01006317138671875,
0.046905517578125,
0.0330810546875,
-0.01617431640625,
0.04193115234375,
0.0467529296875,
-0.01403045654296875,
0.045379638671875,
-0.0107879638671875,
-0.009613037109375,
0.0018768310546875,
0.0022296905517578125,
-0.040191650390625,
0.037445068359375,
0.03912353515625,
-0.0306549072265625,
0.0067596435546875,
0.01241302490234375,
-0.00733184814453125,
-0.0277099609375,
-0.0215301513671875,
0.0655517578125,
-0.0103759765625,
-0.0151824951171875,
0.049774169921875,
-0.0291900634765625,
0.045440673828125,
-0.060028076171875,
-0.0352783203125,
-0.0322265625,
0.0047454833984375,
-0.01078033447265625,
-0.0657958984375,
0.006931304931640625,
0.0010519027709960938,
0.0006275177001953125,
-0.019378662109375,
0.049407958984375,
-0.020843505859375,
-0.0579833984375,
0.005313873291015625,
0.0176849365234375,
0.02166748046875,
0.023590087890625,
-0.058258056640625,
0.0217437744140625,
0.03033447265625,
-0.031341552734375,
0.0281829833984375,
0.04449462890625,
-0.018951416015625,
0.0693359375,
0.0262603759765625,
0.0021381378173828125,
0.0150146484375,
0.0242156982421875,
0.0841064453125,
-0.044036865234375,
-0.0128631591796875,
-0.046417236328125,
0.04925537109375,
-0.004016876220703125,
-0.042144775390625,
0.0633544921875,
0.0379638671875,
0.055511474609375,
-0.0233154296875,
0.05322265625,
-0.002536773681640625,
0.01064300537109375,
-0.047210693359375,
0.01763916015625,
-0.05303955078125,
0.0233917236328125,
-0.0274505615234375,
-0.0528564453125,
-0.0094146728515625,
0.017852783203125,
-0.01552581787109375,
0.0076141357421875,
0.03173828125,
0.06646728515625,
-0.004299163818359375,
-0.006793975830078125,
0.029754638671875,
0.00164031982421875,
0.024261474609375,
0.046234130859375,
0.050750732421875,
-0.029449462890625,
0.063232421875,
-0.01397705078125,
-0.04248046875,
-0.02325439453125,
-0.047760009765625,
-0.08135986328125,
-0.041900634765625,
-0.01306915283203125,
0.009521484375,
0.01092529296875,
0.0369873046875,
0.044677734375,
-0.05303955078125,
-0.031646728515625,
0.01171112060546875,
0.002216339111328125,
-0.00042510032653808594,
-0.0123443603515625,
0.03363037109375,
-0.01306915283203125,
-0.0633544921875,
0.0223541259765625,
0.0084686279296875,
0.006603240966796875,
-0.02947998046875,
-0.013946533203125,
-0.0305633544921875,
-0.00738525390625,
0.0452880859375,
0.0234527587890625,
-0.049041748046875,
-0.01352691650390625,
0.00046253204345703125,
0.0024089813232421875,
0.009521484375,
0.0278167724609375,
-0.037445068359375,
0.05322265625,
0.043121337890625,
0.0230865478515625,
0.04150390625,
-0.01050567626953125,
0.0287322998046875,
-0.0751953125,
0.0390625,
-0.00559234619140625,
0.0287017822265625,
0.01103973388671875,
-0.036285400390625,
0.04754638671875,
0.0135498046875,
-0.058380126953125,
-0.0523681640625,
0.01483917236328125,
-0.0836181640625,
0.002719879150390625,
0.08038330078125,
-0.002109527587890625,
-0.0355224609375,
0.013519287109375,
-0.041351318359375,
0.0052642822265625,
-0.051849365234375,
0.0298309326171875,
0.04150390625,
-0.0177459716796875,
-0.04736328125,
-0.07958984375,
0.03167724609375,
-0.01186370849609375,
-0.07952880859375,
-0.01209259033203125,
0.033111572265625,
0.009918212890625,
-0.0129241943359375,
0.04730224609375,
-0.0031909942626953125,
0.0164794921875,
0.0263671875,
0.0301971435546875,
-0.012786865234375,
-0.039031982421875,
-0.00702667236328125,
-0.005084991455078125,
0.003314971923828125,
-0.047454833984375
]
] |
un_multi | 2023-06-01T14:59:54.000Z | [
"task_categories:translation",
"annotations_creators:found",
"language_creators:found",
"multilinguality:multilingual",
"size_categories:100K<n<1M",
"source_datasets:original",
"language:ar",
"language:de",
"language:en",
"language:es",
"language:fr",
"language:ru",
"language:zh",
"license:unknown",
"region:us"
] | null | This is a collection of translated documents from the United Nations. This corpus is available in all 6 official languages of the UN, consisting of around 300 million words per language | @inproceedings{eisele-chen-2010-multiun,
title = "{M}ulti{UN}: A Multilingual Corpus from United Nation Documents",
author = "Eisele, Andreas and
Chen, Yu",
booktitle = "Proceedings of the Seventh International Conference on Language Resources and Evaluation ({LREC}'10)",
month = may,
year = "2010",
address = "Valletta, Malta",
publisher = "European Language Resources Association (ELRA)",
url = "http://www.lrec-conf.org/proceedings/lrec2010/pdf/686_Paper.pdf",
abstract = "This paper describes the acquisition, preparation and properties of a corpus extracted from the official documents of the United Nations (UN). This corpus is available in all 6 official languages of the UN, consisting of around 300 million words per language. We describe the methods we used for crawling, document formatting, and sentence alignment. This corpus also includes a common test set for machine translation. We present the results of a French-Chinese machine translation experiment performed on this corpus.",
}
@InProceedings{TIEDEMANN12.463,
author = {J�rg Tiedemann},
title = {Parallel Data, Tools and Interfaces in OPUS},
booktitle = {Proceedings of the Eight International Conference on Language Resources and Evaluation (LREC'12)},
year = {2012},
month = {may},
date = {23-25},
address = {Istanbul, Turkey},
editor = {Nicoletta Calzolari (Conference Chair) and Khalid Choukri and Thierry Declerck and Mehmet Ugur Dogan and Bente Maegaard and Joseph Mariani and Jan Odijk and Stelios Piperidis},
publisher = {European Language Resources Association (ELRA)},
isbn = {978-2-9517408-7-7},
} | 2 | 991 | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- found
language:
- ar
- de
- en
- es
- fr
- ru
- zh
license:
- unknown
multilinguality:
- multilingual
size_categories:
- 100K<n<1M
source_datasets:
- original
task_categories:
- translation
task_ids: []
paperswithcode_id: multiun
pretty_name: Multilingual Corpus from United Nation Documents
dataset_info:
- config_name: ar-de
features:
- name: translation
dtype:
translation:
languages:
- ar
- de
splits:
- name: train
num_bytes: 94466397
num_examples: 165090
download_size: 21869935
dataset_size: 94466397
- config_name: ar-en
features:
- name: translation
dtype:
translation:
languages:
- ar
- en
splits:
- name: train
num_bytes: 4189852369
num_examples: 9759125
download_size: 1036296368
dataset_size: 4189852369
- config_name: ar-es
features:
- name: translation
dtype:
translation:
languages:
- ar
- es
splits:
- name: train
num_bytes: 4509675284
num_examples: 10119379
download_size: 1101206667
dataset_size: 4509675284
- config_name: ar-fr
features:
- name: translation
dtype:
translation:
languages:
- ar
- fr
splits:
- name: train
num_bytes: 4516850009
num_examples: 9929567
download_size: 1109705925
dataset_size: 4516850009
- config_name: ar-ru
features:
- name: translation
dtype:
translation:
languages:
- ar
- ru
splits:
- name: train
num_bytes: 5932866867
num_examples: 10206243
download_size: 1261123878
dataset_size: 5932866867
- config_name: ar-zh
features:
- name: translation
dtype:
translation:
languages:
- ar
- zh
splits:
- name: train
num_bytes: 3781658413
num_examples: 9832293
download_size: 1009696775
dataset_size: 3781658413
- config_name: de-en
features:
- name: translation
dtype:
translation:
languages:
- de
- en
splits:
- name: train
num_bytes: 76684549
num_examples: 162981
download_size: 19468529
dataset_size: 76684549
- config_name: de-es
features:
- name: translation
dtype:
translation:
languages:
- de
- es
splits:
- name: train
num_bytes: 80936653
num_examples: 162078
download_size: 20266591
dataset_size: 80936653
- config_name: de-fr
features:
- name: translation
dtype:
translation:
languages:
- de
- fr
splits:
- name: train
num_bytes: 81888435
num_examples: 164025
download_size: 20692837
dataset_size: 81888435
- config_name: de-ru
features:
- name: translation
dtype:
translation:
languages:
- de
- ru
splits:
- name: train
num_bytes: 111517934
num_examples: 164792
download_size: 23507789
dataset_size: 111517934
- config_name: de-zh
features:
- name: translation
dtype:
translation:
languages:
- de
- zh
splits:
- name: train
num_bytes: 70534818
num_examples: 176933
download_size: 19927209
dataset_size: 70534818
- config_name: en-es
features:
- name: translation
dtype:
translation:
languages:
- en
- es
splits:
- name: train
num_bytes: 4128141663
num_examples: 11350967
download_size: 1123164180
dataset_size: 4128141663
- config_name: en-fr
features:
- name: translation
dtype:
translation:
languages:
- en
- fr
splits:
- name: train
num_bytes: 4678055160
num_examples: 13172019
download_size: 1355002731
dataset_size: 4678055160
- config_name: en-ru
features:
- name: translation
dtype:
translation:
languages:
- en
- ru
splits:
- name: train
num_bytes: 5632662839
num_examples: 11654416
download_size: 1285801078
dataset_size: 5632662839
- config_name: en-zh
features:
- name: translation
dtype:
translation:
languages:
- en
- zh
splits:
- name: train
num_bytes: 2960376046
num_examples: 9564315
download_size: 900076520
dataset_size: 2960376046
- config_name: es-fr
features:
- name: translation
dtype:
translation:
languages:
- es
- fr
splits:
- name: train
num_bytes: 4454712498
num_examples: 11441889
download_size: 1195733510
dataset_size: 4454712498
- config_name: es-ru
features:
- name: translation
dtype:
translation:
languages:
- es
- ru
splits:
- name: train
num_bytes: 5442655730
num_examples: 10605056
download_size: 1228045966
dataset_size: 5442655730
- config_name: es-zh
features:
- name: translation
dtype:
translation:
languages:
- es
- zh
splits:
- name: train
num_bytes: 3223871198
num_examples: 9847770
download_size: 953250084
dataset_size: 3223871198
- config_name: fr-ru
features:
- name: translation
dtype:
translation:
languages:
- fr
- ru
splits:
- name: train
num_bytes: 5979879089
num_examples: 11761738
download_size: 1364307157
dataset_size: 5979879089
- config_name: fr-zh
features:
- name: translation
dtype:
translation:
languages:
- fr
- zh
splits:
- name: train
num_bytes: 3241098333
num_examples: 9690914
download_size: 962824881
dataset_size: 3241098333
- config_name: ru-zh
features:
- name: translation
dtype:
translation:
languages:
- ru
- zh
splits:
- name: train
num_bytes: 4233875537
num_examples: 9557007
download_size: 1037881127
dataset_size: 4233875537
config_names:
- ar-de
- ar-en
- ar-es
- ar-fr
- ar-ru
- ar-zh
- de-en
- de-es
- de-fr
- de-ru
- de-zh
- en-es
- en-fr
- en-ru
- en-zh
- es-fr
- es-ru
- es-zh
- fr-ru
- fr-zh
- ru-zh
---
# Dataset Card for [Dataset Name]
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:**[MultiUN](http://www.euromatrixplus.net/multi-unp)
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
This is a collection of translated documents from the United Nations.
This corpus is available in all 6 official languages of the UN
consisting of around 300 million words per language
### Supported Tasks and Leaderboards
The underlying task is machine translation.
### Languages
[More Information Needed]
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
```
@inproceedings{eisele-chen-2010-multiun,
title = "{M}ulti{UN}: A Multilingual Corpus from United Nation Documents",
author = "Eisele, Andreas and
Chen, Yu",
booktitle = "Proceedings of the Seventh International Conference on Language Resources and Evaluation ({LREC}'10)",
month = may,
year = "2010",
address = "Valletta, Malta",
publisher = "European Language Resources Association (ELRA)",
url = "http://www.lrec-conf.org/proceedings/lrec2010/pdf/686_Paper.pdf",
abstract = "This paper describes the acquisition, preparation and properties of a corpus extracted from the official documents of the United Nations (UN). This corpus is available in all 6 official languages of the UN, consisting of around 300 million words per language. We describe the methods we used for crawling, document formatting, and sentence alignment. This corpus also includes a common test set for machine translation. We present the results of a French-Chinese machine translation experiment performed on this corpus.",
}
```
```
@InProceedings{TIEDEMANN12.463,
author = {J�rg Tiedemann},
title = {Parallel Data, Tools and Interfaces in OPUS},
booktitle = {Proceedings of the Eight International Conference on Language Resources and Evaluation (LREC'12)},
year = {2012},
month = {may},
date = {23-25},
address = {Istanbul, Turkey},
editor = {Nicoletta Calzolari (Conference Chair) and Khalid Choukri and Thierry Declerck and Mehmet Ugur Dogan and Bente Maegaard and Joseph Mariani and Jan Odijk and Stelios Piperidis},
publisher = {European Language Resources Association (ELRA)},
isbn = {978-2-9517408-7-7},
}
```
### Contributions
Thanks to [@patil-suraj](https://github.com/patil-suraj) for adding this dataset. | 10,328 | [
[
-0.0357666015625,
-0.0287017822265625,
0.01470947265625,
0.0093231201171875,
-0.0220184326171875,
0.015380859375,
-0.0396728515625,
-0.0237579345703125,
0.0200042724609375,
0.036651611328125,
-0.031707763671875,
-0.061859130859375,
-0.0498046875,
0.03924560546875,
-0.0282745361328125,
0.078857421875,
-0.0185699462890625,
0.0003981590270996094,
-0.004596710205078125,
-0.035247802734375,
-0.005382537841796875,
-0.044281005859375,
-0.0225677490234375,
-0.020263671875,
0.03350830078125,
0.038787841796875,
0.048065185546875,
0.062744140625,
0.048553466796875,
0.023956298828125,
-0.0001798868179321289,
0.024810791015625,
-0.03863525390625,
-0.028289794921875,
-0.0182037353515625,
-0.010833740234375,
-0.042694091796875,
0.0138397216796875,
0.06500244140625,
0.053436279296875,
0.009918212890625,
0.03436279296875,
0.0288543701171875,
0.0609130859375,
-0.0285797119140625,
0.032318115234375,
-0.016815185546875,
-0.013702392578125,
-0.030731201171875,
-0.0021190643310546875,
-0.01445770263671875,
-0.0117645263671875,
-0.018890380859375,
-0.05059814453125,
0.01154327392578125,
-0.00966644287109375,
0.058197021484375,
0.007053375244140625,
-0.0243072509765625,
-0.00702667236328125,
-0.036224365234375,
0.0733642578125,
-0.05157470703125,
0.0273284912109375,
0.03497314453125,
0.00397491455078125,
-0.0228729248046875,
-0.06805419921875,
-0.0450439453125,
0.00846099853515625,
-0.01837158203125,
0.0303802490234375,
-0.011260986328125,
-0.0113372802734375,
0.0213775634765625,
0.0290374755859375,
-0.041412353515625,
-0.0009169578552246094,
-0.04583740234375,
-0.015716552734375,
0.07208251953125,
0.0003936290740966797,
0.0283203125,
-0.029937744140625,
-0.0192413330078125,
-0.0290374755859375,
-0.0396728515625,
0.00241851806640625,
0.036285400390625,
0.043304443359375,
-0.045440673828125,
0.05426025390625,
-0.01849365234375,
0.040069580078125,
-0.0242462158203125,
0.0005917549133300781,
0.044158935546875,
-0.05426025390625,
0.004528045654296875,
-0.007106781005859375,
0.08203125,
0.043060302734375,
0.01763916015625,
-0.00888824462890625,
-0.007106781005859375,
0.006000518798828125,
0.0005645751953125,
-0.056671142578125,
-0.0080718994140625,
0.03057861328125,
-0.04815673828125,
-0.0103302001953125,
0.0374755859375,
-0.083251953125,
-0.009857177734375,
-0.02874755859375,
-0.0036296844482421875,
-0.0230712890625,
-0.01247406005859375,
-0.003223419189453125,
-0.0094757080078125,
0.0178070068359375,
0.00007599592208862305,
-0.03814697265625,
0.026611328125,
0.027435302734375,
0.0618896484375,
-0.0298614501953125,
-0.0321044921875,
-0.028076171875,
0.00499725341796875,
-0.006259918212890625,
0.045074462890625,
-0.0249786376953125,
-0.0477294921875,
0.0121002197265625,
0.0321044921875,
-0.0005483627319335938,
-0.017578125,
0.08251953125,
-0.01340484619140625,
0.0222320556640625,
-0.04388427734375,
-0.03594970703125,
-0.0191802978515625,
0.0113372802734375,
-0.060760498046875,
0.097900390625,
0.01067352294921875,
-0.060211181640625,
0.0039520263671875,
-0.0733642578125,
-0.028411865234375,
0.0015974044799804688,
-0.0250091552734375,
-0.01348876953125,
-0.0075531005859375,
0.01654052734375,
0.037261962890625,
-0.03759765625,
0.019500732421875,
-0.00677490234375,
-0.0092010498046875,
0.01253509521484375,
-0.02093505859375,
0.08544921875,
0.02410888671875,
-0.0236053466796875,
0.004047393798828125,
-0.06927490234375,
-0.002044677734375,
0.0264892578125,
-0.03851318359375,
-0.01497650146484375,
-0.0029850006103515625,
0.0253143310546875,
0.0173492431640625,
0.036651611328125,
-0.052001953125,
0.0275115966796875,
-0.01183319091796875,
0.02899169921875,
0.036865234375,
-0.007305145263671875,
0.0284881591796875,
-0.0223236083984375,
0.020965576171875,
-0.003787994384765625,
0.01445770263671875,
-0.00888824462890625,
-0.048919677734375,
-0.050445556640625,
-0.005519866943359375,
0.03790283203125,
0.053466796875,
-0.049102783203125,
0.0484619140625,
-0.040924072265625,
-0.0333251953125,
-0.058807373046875,
0.0173187255859375,
0.049346923828125,
0.0235748291015625,
0.045562744140625,
-0.024078369140625,
-0.056304931640625,
-0.056854248046875,
-0.0120391845703125,
0.0013027191162109375,
-0.0007262229919433594,
0.016998291015625,
0.0618896484375,
-0.0207061767578125,
0.054168701171875,
-0.02520751953125,
-0.0307464599609375,
-0.022369384765625,
0.0177459716796875,
0.01800537109375,
0.040435791015625,
0.0287322998046875,
-0.0836181640625,
-0.03668212890625,
0.0026874542236328125,
-0.062286376953125,
-0.0177459716796875,
0.0007801055908203125,
-0.0160064697265625,
0.0282135009765625,
0.030426025390625,
-0.0186767578125,
0.03863525390625,
0.057037353515625,
-0.0226593017578125,
0.0281524658203125,
-0.0216827392578125,
0.01861572265625,
-0.09503173828125,
0.0265045166015625,
-0.002864837646484375,
0.0017309188842773438,
-0.037689208984375,
-0.00390625,
0.0085296630859375,
0.01480865478515625,
-0.032806396484375,
0.05999755859375,
-0.049102783203125,
-0.0017147064208984375,
-0.00439453125,
0.036224365234375,
0.01461029052734375,
0.0391845703125,
-0.00920867919921875,
0.0548095703125,
0.020599365234375,
-0.043060302734375,
0.0243988037109375,
0.040374755859375,
-0.028656005859375,
0.03521728515625,
-0.05120849609375,
0.0135040283203125,
-0.00693511962890625,
0.01042938232421875,
-0.061065673828125,
-0.0167236328125,
0.0236663818359375,
-0.048065185546875,
0.018768310546875,
-0.005962371826171875,
-0.061248779296875,
-0.02752685546875,
-0.033935546875,
0.0176849365234375,
0.0243988037109375,
-0.0259857177734375,
0.0225372314453125,
0.040679931640625,
0.0060272216796875,
-0.044525146484375,
-0.062469482421875,
0.01084136962890625,
-0.004528045654296875,
-0.033935546875,
0.04364013671875,
-0.0224761962890625,
-0.0199127197265625,
0.006481170654296875,
0.01528167724609375,
0.0087738037109375,
-0.005283355712890625,
0.0203704833984375,
0.01849365234375,
0.00377655029296875,
-0.01294708251953125,
-0.0035228729248046875,
-0.014373779296875,
-0.01207733154296875,
-0.0216064453125,
0.040008544921875,
-0.007770538330078125,
-0.020904541015625,
-0.0280914306640625,
0.03399658203125,
0.029632568359375,
-0.03204345703125,
0.056915283203125,
0.0654296875,
-0.0296173095703125,
0.0182342529296875,
-0.03265380859375,
-0.001491546630859375,
-0.0291900634765625,
0.0197296142578125,
-0.0126495361328125,
-0.03924560546875,
0.0672607421875,
0.0025768280029296875,
0.02874755859375,
0.06439208984375,
0.04962158203125,
0.01149749755859375,
0.0645751953125,
0.04571533203125,
-0.024993896484375,
0.0228271484375,
-0.049072265625,
-0.0052947998046875,
-0.0772705078125,
-0.029815673828125,
-0.0623779296875,
-0.032989501953125,
-0.08056640625,
-0.0517578125,
0.003910064697265625,
0.0137939453125,
-0.00975799560546875,
0.04022216796875,
-0.0426025390625,
0.0135040283203125,
0.058319091796875,
-0.0149993896484375,
0.023468017578125,
-0.006103515625,
-0.02392578125,
-0.00749969482421875,
-0.038909912109375,
-0.05804443359375,
0.07977294921875,
0.007564544677734375,
0.032073974609375,
0.007099151611328125,
0.058135986328125,
0.0209503173828125,
0.0119476318359375,
-0.0288543701171875,
0.038909912109375,
-0.033599853515625,
-0.037384033203125,
-0.0278167724609375,
-0.0259246826171875,
-0.08782958984375,
0.01161956787109375,
-0.008331298828125,
-0.05743408203125,
0.034637451171875,
-0.0149078369140625,
-0.00847625732421875,
0.02923583984375,
-0.039276123046875,
0.06536865234375,
-0.0202178955078125,
-0.0200958251953125,
0.003589630126953125,
-0.06463623046875,
-0.0037631988525390625,
-0.0028209686279296875,
0.043121337890625,
-0.01232147216796875,
-0.01038360595703125,
0.07916259765625,
-0.010284423828125,
0.062744140625,
0.0033512115478515625,
-0.0006060600280761719,
0.0311431884765625,
-0.015838623046875,
0.04229736328125,
-0.005527496337890625,
-0.0197906494140625,
0.045135498046875,
-0.0031604766845703125,
-0.0306549072265625,
-0.0225830078125,
0.05096435546875,
-0.06707763671875,
-0.01030731201171875,
-0.02874755859375,
-0.053619384765625,
0.0178680419921875,
0.046173095703125,
0.03173828125,
0.0192108154296875,
-0.02423095703125,
0.0303192138671875,
0.02484130859375,
-0.032257080078125,
0.031890869140625,
0.033935546875,
-0.01395416259765625,
-0.0367431640625,
0.062286376953125,
0.036529541015625,
0.003353118896484375,
0.0367431640625,
0.0073089599609375,
-0.0301971435546875,
-0.0287933349609375,
-0.03948974609375,
0.01800537109375,
-0.0310211181640625,
-0.0162353515625,
-0.046173095703125,
-0.01358795166015625,
-0.053466796875,
-0.004352569580078125,
-0.024749755859375,
-0.0421142578125,
-0.02313232421875,
-0.0217132568359375,
0.031341552734375,
0.040618896484375,
-0.0321044921875,
0.01551055908203125,
-0.069091796875,
0.0294189453125,
-0.0194854736328125,
0.0177459716796875,
-0.0189056396484375,
-0.042083740234375,
-0.03021240234375,
0.0257720947265625,
-0.0233612060546875,
-0.06683349609375,
0.0352783203125,
0.01088714599609375,
0.05718994140625,
0.0211334228515625,
0.0296630859375,
0.0394287109375,
-0.032501220703125,
0.06463623046875,
-0.004207611083984375,
-0.041229248046875,
0.029998779296875,
-0.040863037109375,
0.0294189453125,
0.055206298828125,
0.032073974609375,
-0.05224609375,
-0.0199127197265625,
-0.0633544921875,
-0.078125,
0.053314208984375,
0.03271484375,
0.01513671875,
-0.00791168212890625,
0.017059326171875,
-0.006015777587890625,
0.01244354248046875,
-0.047760009765625,
-0.060333251953125,
-0.00870513916015625,
-0.0172882080078125,
-0.0156402587890625,
-0.02264404296875,
-0.0278778076171875,
-0.01554107666015625,
0.054443359375,
-0.006656646728515625,
0.0197906494140625,
0.021270751953125,
-0.0079345703125,
-0.001392364501953125,
0.0263824462890625,
0.027374267578125,
0.042694091796875,
-0.019317626953125,
0.00908660888671875,
0.006317138671875,
-0.03948974609375,
-0.0148162841796875,
0.0288238525390625,
-0.018402099609375,
0.003528594970703125,
0.02728271484375,
0.04046630859375,
0.012603759765625,
-0.0384521484375,
0.02862548828125,
0.007476806640625,
-0.02386474609375,
-0.0284271240234375,
-0.024383544921875,
0.0015869140625,
0.00982666015625,
0.0221405029296875,
-0.029571533203125,
0.00716400146484375,
-0.039886474609375,
0.0290679931640625,
0.0056915283203125,
-0.018157958984375,
-0.03717041015625,
0.04656982421875,
0.01296234130859375,
-0.0220489501953125,
0.055877685546875,
-0.02728271484375,
-0.03363037109375,
0.034210205078125,
0.02496337890625,
0.058074951171875,
-0.01806640625,
0.0270843505859375,
0.0528564453125,
0.038238525390625,
-0.010986328125,
0.0516357421875,
0.00914764404296875,
-0.05987548828125,
-0.023040771484375,
-0.0498046875,
-0.015228271484375,
0.0089111328125,
-0.07110595703125,
0.0190887451171875,
-0.00885772705078125,
-0.01232147216796875,
-0.00536346435546875,
0.030364990234375,
-0.06842041015625,
-0.005481719970703125,
0.00664520263671875,
0.0645751953125,
-0.0552978515625,
0.06341552734375,
0.05828857421875,
-0.06573486328125,
-0.041229248046875,
-0.0220794677734375,
0.01788330078125,
-0.056182861328125,
0.0273284912109375,
0.00669097900390625,
0.021331787109375,
-0.003509521484375,
-0.040435791015625,
-0.0660400390625,
0.0811767578125,
0.0270843505859375,
-0.0382080078125,
0.00739288330078125,
0.03790283203125,
0.043975830078125,
-0.02215576171875,
0.00113677978515625,
0.049896240234375,
0.07293701171875,
-0.0085296630859375,
-0.061126708984375,
0.0129852294921875,
-0.03680419921875,
-0.007030487060546875,
0.0128631591796875,
-0.0582275390625,
0.0648193359375,
-0.0100555419921875,
-0.0272369384765625,
0.0009512901306152344,
0.053985595703125,
0.01276397705078125,
0.007904052734375,
0.0207977294921875,
0.0445556640625,
0.0576171875,
-0.0147857666015625,
0.084716796875,
-0.038909912109375,
0.0276336669921875,
0.0889892578125,
0.001796722412109375,
0.05706787109375,
0.0340576171875,
-0.028839111328125,
0.039398193359375,
0.040618896484375,
-0.01971435546875,
0.020660400390625,
0.01401519775390625,
0.01177978515625,
0.0085906982421875,
-0.041656494140625,
-0.0260162353515625,
0.034027099609375,
0.0262603759765625,
-0.032989501953125,
-0.0166015625,
-0.0201416015625,
0.028594970703125,
0.0154876708984375,
-0.01023101806640625,
0.048126220703125,
0.01861572265625,
-0.0345458984375,
0.03228759765625,
0.0153656005859375,
0.032928466796875,
-0.036285400390625,
-0.012298583984375,
-0.0234375,
0.01031494140625,
-0.0255584716796875,
-0.0704345703125,
0.024871826171875,
0.0121917724609375,
-0.028411865234375,
-0.02325439453125,
0.0290374755859375,
-0.036529541015625,
-0.05828857421875,
0.048095703125,
0.049346923828125,
0.034149169921875,
0.0039825439453125,
-0.07476806640625,
0.01131439208984375,
0.00919342041015625,
-0.03411865234375,
0.02911376953125,
0.043060302734375,
-0.02490234375,
0.015838623046875,
0.06439208984375,
0.007965087890625,
0.005542755126953125,
0.023040771484375,
0.059051513671875,
-0.045684814453125,
-0.018707275390625,
-0.055023193359375,
0.0567626953125,
-0.0233612060546875,
-0.0230712890625,
0.078857421875,
0.064453125,
0.09332275390625,
0.02166748046875,
0.07073974609375,
-0.0309295654296875,
0.043426513671875,
-0.0143280029296875,
0.052734375,
-0.0477294921875,
-0.00923919677734375,
-0.028839111328125,
-0.06854248046875,
-0.028839111328125,
0.033782958984375,
-0.00618743896484375,
-0.001575469970703125,
0.0411376953125,
0.0479736328125,
0.007686614990234375,
-0.018798828125,
0.0163726806640625,
0.026885986328125,
0.017578125,
0.01108551025390625,
0.014617919921875,
-0.04559326171875,
0.052001953125,
-0.043670654296875,
-0.01169586181640625,
0.0030078887939453125,
-0.07049560546875,
-0.0504150390625,
-0.07244873046875,
-0.0178070068359375,
-0.036529541015625,
-0.006855010986328125,
0.062042236328125,
0.0164337158203125,
-0.0787353515625,
-0.03656005859375,
0.017608642578125,
0.0105133056640625,
-0.0172119140625,
-0.013885498046875,
0.0633544921875,
-0.0026760101318359375,
-0.07818603515625,
0.01422119140625,
0.00774383544921875,
0.0013227462768554688,
-0.01274871826171875,
-0.018402099609375,
-0.040374755859375,
-0.0174102783203125,
0.035491943359375,
0.037384033203125,
-0.047119140625,
-0.0040740966796875,
0.005115509033203125,
-0.0024509429931640625,
0.0030002593994140625,
0.038177490234375,
-0.0233612060546875,
0.0343017578125,
0.04815673828125,
0.032684326171875,
0.01654052734375,
0.004863739013671875,
0.03228759765625,
-0.053558349609375,
0.0223388671875,
-0.00225067138671875,
0.0419921875,
0.036529541015625,
-0.02252197265625,
0.06414794921875,
0.0173492431640625,
-0.03778076171875,
-0.06329345703125,
-0.00749969482421875,
-0.08099365234375,
-0.006893157958984375,
0.107177734375,
-0.017181396484375,
-0.0197601318359375,
-0.0179901123046875,
-0.01102447509765625,
0.053192138671875,
-0.048065185546875,
0.042510986328125,
0.048675537109375,
0.01120758056640625,
0.0132598876953125,
-0.06182861328125,
0.029815673828125,
-0.002277374267578125,
-0.0625,
0.00881195068359375,
0.020965576171875,
-0.0038204193115234375,
0.031646728515625,
0.04962158203125,
-0.037841796875,
-0.006153106689453125,
-0.01690673828125,
0.035614013671875,
0.0011701583862304688,
-0.0181121826171875,
-0.0086822509765625,
-0.0200653076171875,
-0.0265655517578125,
-0.0182342529296875
]
] |
NeelNanda/codeparrot_clean_subset_train | 2022-10-22T23:04:58.000Z | [
"region:us"
] | NeelNanda | null | null | 0 | 991 | 2022-10-22T23:04:32 | Entry not found | 15 | [
[
-0.0213775634765625,
-0.01497650146484375,
0.05718994140625,
0.02880859375,
-0.0350341796875,
0.046478271484375,
0.052490234375,
0.00507354736328125,
0.051361083984375,
0.0170135498046875,
-0.052093505859375,
-0.01497650146484375,
-0.0604248046875,
0.03790283203125,
-0.026458740234375,
0.038421630859375,
-0.00960540771484375,
-0.00713348388671875,
0.018707275390625,
-0.018341064453125,
-0.035919189453125,
-0.024444580078125,
-0.0789794921875,
0.004062652587890625,
0.0352783203125,
0.04931640625,
0.050262451171875,
0.024261474609375,
0.04266357421875,
0.02606201171875,
-0.015350341796875,
0.031951904296875,
-0.00276947021484375,
0.00018787384033203125,
-0.02337646484375,
-0.03662109375,
-0.0189208984375,
0.005035400390625,
0.07275390625,
0.06414794921875,
-0.0188751220703125,
0.0035343170166015625,
-0.0203094482421875,
0.02197265625,
-0.032989501953125,
0.020233154296875,
-0.001476287841796875,
0.0108184814453125,
-0.046722412109375,
-0.036712646484375,
0.0008215904235839844,
-0.048797607421875,
0.01187896728515625,
-0.0457763671875,
0.054840087890625,
0.01235198974609375,
0.07647705078125,
0.00982666015625,
-0.030670166015625,
-0.05413818359375,
-0.043365478515625,
0.037841796875,
-0.0216827392578125,
0.0263214111328125,
0.046630859375,
-0.0032100677490234375,
-0.0650634765625,
-0.04473876953125,
-0.03082275390625,
0.0193939208984375,
0.0234832763671875,
-0.022613525390625,
-0.0115966796875,
-0.020294189453125,
0.01047515869140625,
0.0084991455078125,
-0.032135009765625,
-0.036773681640625,
-0.036346435546875,
-0.0262603759765625,
0.0411376953125,
0.023101806640625,
0.0160980224609375,
-0.01255035400390625,
-0.0214080810546875,
0.0058441162109375,
-0.0275115966796875,
0.022552490234375,
0.041961669921875,
0.04718017578125,
-0.038543701171875,
0.037139892578125,
-0.0032672882080078125,
0.049346923828125,
0.00757598876953125,
-0.01824951171875,
0.027496337890625,
-0.00974273681640625,
0.0036525726318359375,
0.0280303955078125,
0.020904541015625,
0.0188446044921875,
-0.021728515625,
0.013458251953125,
-0.02130126953125,
-0.0202484130859375,
-0.0148162841796875,
-0.019561767578125,
-0.02386474609375,
0.03643798828125,
-0.0219879150390625,
-0.028411865234375,
0.0758056640625,
-0.0278778076171875,
-0.048431396484375,
0.0219879150390625,
0.0269775390625,
-0.006626129150390625,
-0.024658203125,
-0.0034694671630859375,
-0.056121826171875,
-0.0005083084106445312,
0.0496826171875,
-0.0477294921875,
0.022369384765625,
0.031341552734375,
0.04925537109375,
0.01303863525390625,
-0.00928497314453125,
-0.028533935546875,
0.01971435546875,
-0.057403564453125,
0.041961669921875,
-0.01334381103515625,
-0.06671142578125,
0.007396697998046875,
0.059478759765625,
-0.0251312255859375,
-0.0802001953125,
0.0703125,
-0.045684814453125,
0.0106048583984375,
-0.044891357421875,
-0.00971221923828125,
-0.00475311279296875,
-0.0003495216369628906,
-0.040374755859375,
0.0501708984375,
0.038970947265625,
-0.033111572265625,
0.01422119140625,
-0.0172576904296875,
-0.0259552001953125,
0.0257415771484375,
-0.00527191162109375,
-0.01446533203125,
0.047332763671875,
-0.044097900390625,
-0.0178680419921875,
0.01953125,
0.015716552734375,
-0.0236663818359375,
-0.052581787109375,
0.005603790283203125,
-0.003841400146484375,
0.102783203125,
-0.0025691986083984375,
-0.0237884521484375,
-0.0450439453125,
-0.0762939453125,
-0.004703521728515625,
0.045684814453125,
-0.060943603515625,
-0.01849365234375,
-0.0030384063720703125,
-0.017364501953125,
0.005939483642578125,
0.049041748046875,
-0.07421875,
0.0187835693359375,
-0.003383636474609375,
-0.01512908935546875,
0.054840087890625,
0.010223388671875,
0.0164337158203125,
0.00989532470703125,
0.02850341796875,
0.03497314453125,
0.00738525390625,
0.04534912109375,
-0.0230255126953125,
-0.0643310546875,
0.04083251953125,
0.0167388916015625,
0.0538330078125,
-0.033111572265625,
0.0177764892578125,
0.0179290771484375,
-0.0225982666015625,
-0.03765869140625,
-0.02056884765625,
0.0059814453125,
0.0099334716796875,
0.00738525390625,
-0.037933349609375,
-0.0435791015625,
-0.06427001953125,
-0.0090179443359375,
-0.028594970703125,
-0.0236663818359375,
0.01392364501953125,
0.038421630859375,
-0.07940673828125,
0.0273590087890625,
-0.05108642578125,
-0.046661376953125,
-0.0007190704345703125,
-0.01280975341796875,
0.050018310546875,
0.0286712646484375,
0.03338623046875,
-0.04241943359375,
-0.037506103515625,
-0.014923095703125,
-0.06854248046875,
-0.00882720947265625,
0.016448974609375,
0.020294189453125,
-0.00887298583984375,
-0.0181732177734375,
-0.03228759765625,
0.053680419921875,
0.009796142578125,
-0.035736083984375,
0.034637451171875,
-0.0200042724609375,
0.0114288330078125,
-0.042236328125,
-0.0045623779296875,
-0.04388427734375,
-0.00005829334259033203,
-0.02392578125,
-0.038055419921875,
0.009796142578125,
0.004688262939453125,
-0.0106353759765625,
0.01910400390625,
-0.060302734375,
-0.00006479024887084961,
-0.049346923828125,
0.0251617431640625,
0.00423431396484375,
-0.0208892822265625,
-0.0011310577392578125,
0.06634521484375,
0.051605224609375,
-0.025543212890625,
0.0478515625,
0.029449462890625,
0.01263427734375,
0.05059814453125,
-0.012420654296875,
0.01091766357421875,
-0.0347900390625,
-0.008087158203125,
-0.0589599609375,
-0.0728759765625,
0.048583984375,
-0.040557861328125,
0.0242462158203125,
-0.028411865234375,
0.0171661376953125,
-0.045928955078125,
-0.00257110595703125,
0.031829833984375,
-0.00394439697265625,
-0.0455322265625,
0.034759521484375,
0.029998779296875,
-0.01338958740234375,
-0.043853759765625,
-0.03515625,
0.0261077880859375,
0.04083251953125,
-0.0108642578125,
0.004543304443359375,
0.00989532470703125,
-0.036102294921875,
-0.00270843505859375,
-0.0256500244140625,
-0.030364990234375,
0.0036067962646484375,
0.00865936279296875,
-0.0003647804260253906,
-0.02685546875,
-0.005764007568359375,
-0.0237579345703125,
-0.0308837890625,
0.01448822021484375,
0.0199737548828125,
-0.0026874542236328125,
-0.0282440185546875,
-0.024017333984375,
-0.05889892578125,
0.0445556640625,
0.03558349609375,
0.00348663330078125,
0.050140380859375,
0.0111236572265625,
-0.05316162109375,
-0.0089569091796875,
-0.01166534423828125,
0.0178680419921875,
-0.037109375,
0.00917816162109375,
-0.0009069442749023438,
-0.004215240478515625,
0.0174560546875,
0.0168304443359375,
-0.028533935546875,
0.06146240234375,
-0.017364501953125,
-0.023834228515625,
0.052825927734375,
0.03961181640625,
0.032867431640625,
0.01093292236328125,
-0.00299072265625,
0.05975341796875,
-0.07940673828125,
-0.0435791015625,
-0.049163818359375,
-0.0105743408203125,
-0.028839111328125,
-0.002117156982421875,
0.04150390625,
0.0192718505859375,
-0.00885772705078125,
0.031524658203125,
-0.0347900390625,
0.0236053466796875,
0.067138671875,
0.023681640625,
0.0228271484375,
-0.050201416015625,
-0.0166778564453125,
-0.00930023193359375,
-0.06634521484375,
-0.0174560546875,
0.058868408203125,
0.015106201171875,
0.056060791015625,
0.039764404296875,
0.045013427734375,
0.009063720703125,
0.0167388916015625,
-0.0203094482421875,
0.025970458984375,
0.029052734375,
-0.06903076171875,
-0.0283355712890625,
0.0014390945434570312,
-0.0643310546875,
-0.00943756103515625,
-0.00231170654296875,
-0.028289794921875,
0.05096435546875,
0.00001537799835205078,
-0.02703857421875,
0.05133056640625,
-0.0302276611328125,
0.0501708984375,
-0.029693603515625,
-0.001781463623046875,
0.03118896484375,
-0.046905517578125,
0.031036376953125,
0.00856781005859375,
0.0411376953125,
-0.0010232925415039062,
-0.0027141571044921875,
0.047088623046875,
-0.060516357421875,
0.016876220703125,
-0.042144775390625,
0.01486968994140625,
0.016082763671875,
0.034271240234375,
0.039581298828125,
0.029022216796875,
0.006683349609375,
-0.015838623046875,
0.0027141571044921875,
-0.054595947265625,
-0.01393890380859375,
0.0462646484375,
-0.04766845703125,
-0.045501708984375,
-0.08197021484375,
0.00960540771484375,
0.018157958984375,
0.0258331298828125,
0.05279541015625,
0.037933349609375,
0.008575439453125,
0.045135498046875,
0.06561279296875,
-0.00458526611328125,
0.060821533203125,
0.02142333984375,
0.0060882568359375,
-0.01453399658203125,
0.04669189453125,
0.0176544189453125,
-0.0163726806640625,
-0.0079193115234375,
0.01383209228515625,
-0.00738525390625,
-0.039276123046875,
-0.033172607421875,
0.024566650390625,
-0.044647216796875,
-0.01215362548828125,
-0.0413818359375,
-0.04010009765625,
-0.033935546875,
0.004608154296875,
-0.04736328125,
0.01593017578125,
-0.05145263671875,
-0.00701904296875,
0.00287628173828125,
0.06494140625,
-0.039093017578125,
0.03851318359375,
-0.07440185546875,
0.01282501220703125,
-0.005245208740234375,
0.052520751953125,
0.01419830322265625,
-0.0487060546875,
-0.0263214111328125,
-0.007686614990234375,
-0.0247344970703125,
-0.09002685546875,
0.01422119140625,
-0.016265869140625,
0.01531219482421875,
0.040802001953125,
0.00928497314453125,
0.034881591796875,
-0.02276611328125,
0.046630859375,
-0.0038013458251953125,
-0.046905517578125,
0.052642822265625,
-0.033355712890625,
0.03289794921875,
0.06475830078125,
0.035400390625,
-0.052978515625,
0.002353668212890625,
-0.06903076171875,
-0.03985595703125,
0.025482177734375,
0.00791168212890625,
-0.00241851806640625,
-0.044189453125,
-0.0035572052001953125,
-0.01070404052734375,
0.04010009765625,
-0.06890869140625,
-0.0521240234375,
0.0171051025390625,
0.035003662109375,
0.005420684814453125,
-0.037506103515625,
0.01384735107421875,
-0.03607177734375,
0.0706787109375,
0.0298919677734375,
0.021728515625,
0.055755615234375,
0.03082275390625,
-0.025360107421875,
0.00611114501953125,
0.05084228515625,
0.044189453125,
-0.0347900390625,
-0.0192718505859375,
-0.005878448486328125,
-0.06060791015625,
0.00392913818359375,
0.007396697998046875,
-0.0008745193481445312,
0.060211181640625,
0.0384521484375,
0.0168304443359375,
0.0299224853515625,
-0.0482177734375,
0.058746337890625,
-0.00992584228515625,
-0.0082855224609375,
-0.07080078125,
0.012939453125,
-0.0159149169921875,
0.033233642578125,
0.06671142578125,
0.034820556640625,
-0.003124237060546875,
-0.053985595703125,
-0.0009698867797851562,
0.0460205078125,
-0.0469970703125,
-0.0115509033203125,
0.06268310546875,
0.0254974365234375,
-0.08587646484375,
0.0733642578125,
-0.035675048828125,
-0.03717041015625,
0.060516357421875,
0.03472900390625,
0.07440185546875,
-0.029327392578125,
0.00006479024887084961,
0.017669677734375,
0.0274658203125,
0.03594970703125,
0.0721435546875,
0.028594970703125,
-0.052581787109375,
0.058563232421875,
-0.0164337158203125,
-0.0267791748046875,
-0.0035343170166015625,
-0.028411865234375,
0.011199951171875,
-0.0292205810546875,
-0.007091522216796875,
-0.0228424072265625,
0.0189056396484375,
-0.046844482421875,
0.0283660888671875,
-0.00551605224609375,
0.057403564453125,
-0.056732177734375,
0.03131103515625,
0.04217529296875,
-0.02215576171875,
-0.056427001953125,
-0.017364501953125,
-0.007598876953125,
-0.042388916015625,
0.020050048828125,
-0.03021240234375,
0.0029239654541015625,
0.0063934326171875,
-0.043060302734375,
-0.078125,
0.060302734375,
-0.04241943359375,
-0.01849365234375,
0.01360321044921875,
-0.007633209228515625,
0.0190887451171875,
-0.0167236328125,
0.0007004737854003906,
0.02777099609375,
0.049652099609375,
0.0188751220703125,
-0.051239013671875,
-0.0245208740234375,
0.00009071826934814453,
-0.02947998046875,
0.050323486328125,
-0.039825439453125,
0.07843017578125,
-0.036865234375,
-0.003971099853515625,
0.029449462890625,
0.0163726806640625,
0.0139923095703125,
0.0439453125,
0.00959014892578125,
0.04833984375,
0.07098388671875,
-0.027069091796875,
0.0584716796875,
0.01751708984375,
0.031402587890625,
0.04803466796875,
-0.042999267578125,
0.049835205078125,
0.0211181640625,
-0.03765869140625,
0.061248779296875,
0.08563232421875,
-0.010406494140625,
0.053558349609375,
0.00339508056640625,
-0.07171630859375,
0.0216217041015625,
-0.01375579833984375,
-0.0499267578125,
0.020904541015625,
0.01265716552734375,
-0.045928955078125,
-0.03826904296875,
-0.0159454345703125,
-0.0236358642578125,
-0.00765228271484375,
-0.050628662109375,
0.0445556640625,
-0.0011463165283203125,
-0.03387451171875,
0.012481689453125,
0.019073486328125,
0.011505126953125,
-0.034759521484375,
-0.001949310302734375,
-0.01513671875,
0.017669677734375,
-0.03759765625,
-0.03472900390625,
0.037994384765625,
-0.0214996337890625,
-0.035430908203125,
0.01204681396484375,
0.050628662109375,
-0.01123809814453125,
-0.0299530029296875,
0.0215301513671875,
0.046173095703125,
0.0110626220703125,
0.0281524658203125,
-0.01558685302734375,
0.0162353515625,
-0.005336761474609375,
-0.004425048828125,
0.0183563232421875,
0.0228729248046875,
0.014892578125,
0.0294952392578125,
0.028717041015625,
-0.0011949539184570312,
-0.007110595703125,
-0.025390625,
0.0273590087890625,
-0.06329345703125,
-0.03790283203125,
-0.04180908203125,
0.0181732177734375,
-0.0015554428100585938,
-0.0718994140625,
0.027496337890625,
0.09552001953125,
0.0687255859375,
-0.031524658203125,
0.07080078125,
-0.0144805908203125,
0.06365966796875,
0.0275115966796875,
0.03594970703125,
-0.040008544921875,
0.002536773681640625,
-0.0289154052734375,
-0.07135009765625,
-0.0236663818359375,
0.0301055908203125,
-0.0015201568603515625,
-0.0227508544921875,
0.057861328125,
0.0390625,
-0.022186279296875,
-0.0077972412109375,
0.0032062530517578125,
-0.0019893646240234375,
-0.00823211669921875,
0.03411865234375,
0.050750732421875,
-0.061981201171875,
-0.00707244873046875,
-0.0143280029296875,
-0.042327880859375,
-0.033477783203125,
-0.06390380859375,
-0.0085906982421875,
-0.0106353759765625,
0.002368927001953125,
-0.03753662109375,
0.00014734268188476562,
0.08013916015625,
0.0377197265625,
-0.07373046875,
-0.03515625,
0.0223541259765625,
0.0260009765625,
-0.01241302490234375,
-0.0160675048828125,
0.0197906494140625,
0.01018524169921875,
-0.0391845703125,
0.04559326171875,
0.053619384765625,
0.01384735107421875,
0.012969970703125,
0.0105133056640625,
-0.054595947265625,
-0.00991058349609375,
0.011566162109375,
0.06268310546875,
-0.062347412109375,
-0.04718017578125,
-0.002105712890625,
-0.0179443359375,
-0.003833770751953125,
0.0113525390625,
-0.0268402099609375,
0.034393310546875,
0.0229339599609375,
0.033111572265625,
0.0037403106689453125,
-0.003631591796875,
0.035888671875,
-0.060089111328125,
0.006267547607421875,
0.0274200439453125,
0.0275421142578125,
-0.026519775390625,
-0.039215087890625,
0.04449462890625,
0.06683349609375,
-0.043731689453125,
-0.057952880859375,
-0.01316070556640625,
-0.06646728515625,
0.002765655517578125,
0.044891357421875,
0.033233642578125,
-0.03192138671875,
-0.0276947021484375,
-0.0372314453125,
-0.00833892822265625,
-0.00909423828125,
0.050537109375,
0.0782470703125,
-0.049285888671875,
0.00531005859375,
-0.06890869140625,
0.043731689453125,
-0.0160675048828125,
-0.0229339599609375,
-0.03228759765625,
0.025421142578125,
0.0233612060546875,
0.0291748046875,
0.040771484375,
0.009307861328125,
0.055267333984375,
0.020721435546875,
-0.01128387451171875,
0.017913818359375,
-0.0302581787109375,
-0.0019321441650390625,
-0.003841400146484375,
0.02056884765625,
-0.06805419921875
]
] |
schema_guided_dstc8 | 2023-01-25T14:43:36.000Z | [
"task_categories:text-generation",
"task_categories:fill-mask",
"task_categories:token-classification",
"task_categories:text-classification",
"task_ids:dialogue-modeling",
"task_ids:multi-class-classification",
"task_ids:parsing",
"annotations_creators:machine-generated",
"language_creators:crowdsourced",
"language_creators:machine-generated",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:en",
"license:cc-by-sa-4.0",
"arxiv:1909.05855",
"arxiv:2002.01359",
"region:us"
] | null | The Schema-Guided Dialogue dataset (SGD) was developed for the Dialogue State Tracking task of the Eights Dialogue Systems Technology Challenge (dstc8).
The SGD dataset consists of over 18k annotated multi-domain, task-oriented conversations between a human and a virtual assistant.
These conversations involve interactions with services and APIs spanning 17 domains, ranging from banks and events to media, calendar, travel, and weather.
For most of these domains, the SGD dataset contains multiple different APIs, many of which have overlapping functionalities but different interfaces,
which reflects common real-world scenarios. | @inproceedings{aaai/RastogiZSGK20,
author = {Abhinav Rastogi and
Xiaoxue Zang and
Srinivas Sunkara and
Raghav Gupta and
Pranav Khaitan},
title = {Towards Scalable Multi-Domain Conversational Agents: The Schema-Guided
Dialogue Dataset},
booktitle = {The Thirty-Fourth {AAAI} Conference on Artificial Intelligence, {AAAI}
2020, The Thirty-Second Innovative Applications of Artificial Intelligence
Conference, {IAAI} 2020, The Tenth {AAAI} Symposium on Educational
Advances in Artificial Intelligence, {EAAI} 2020, New York, NY, USA,
February 7-12, 2020},
pages = {8689--8696},
publisher = {{AAAI} Press},
year = {2020},
url = {https://aaai.org/ojs/index.php/AAAI/article/view/6394}
} | 7 | 986 | 2022-03-02T23:29:22 | ---
annotations_creators:
- machine-generated
language_creators:
- crowdsourced
- machine-generated
language:
- en
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- text-generation
- fill-mask
- token-classification
- text-classification
task_ids:
- dialogue-modeling
- multi-class-classification
- parsing
paperswithcode_id: sgd
pretty_name: Schema-Guided Dialogue
dataset_info:
- config_name: dialogues
features:
- name: dialogue_id
dtype: string
- name: services
sequence: string
- name: turns
sequence:
- name: speaker
dtype:
class_label:
names:
'0': USER
'1': SYSTEM
- name: utterance
dtype: string
- name: frames
sequence:
- name: service
dtype: string
- name: slots
sequence:
- name: slot
dtype: string
- name: start
dtype: int32
- name: exclusive_end
dtype: int32
- name: state
struct:
- name: active_intent
dtype: string
- name: requested_slots
sequence: string
- name: slot_values
sequence:
- name: slot_name
dtype: string
- name: slot_value_list
sequence: string
- name: actions
sequence:
- name: act
dtype:
class_label:
names:
'0': AFFIRM
'1': AFFIRM_INTENT
'2': CONFIRM
'3': GOODBYE
'4': INFORM
'5': INFORM_COUNT
'6': INFORM_INTENT
'7': NEGATE
'8': NEGATE_INTENT
'9': NOTIFY_FAILURE
'10': NOTIFY_SUCCESS
'11': OFFER
'12': OFFER_INTENT
'13': REQUEST
'14': REQUEST_ALTS
'15': REQ_MORE
'16': SELECT
'17': THANK_YOU
- name: slot
dtype: string
- name: canonical_values
sequence: string
- name: values
sequence: string
- name: service_results
sequence:
- name: service_results_list
sequence:
- name: service_slot_name
dtype: string
- name: service_canonical_value
dtype: string
- name: service_call
struct:
- name: method
dtype: string
- name: parameters
sequence:
- name: parameter_slot_name
dtype: string
- name: parameter_canonical_value
dtype: string
splits:
- name: train
num_bytes: 158452984
num_examples: 16142
- name: validation
num_bytes: 23553544
num_examples: 2482
- name: test
num_bytes: 41342956
num_examples: 4201
download_size: 617805368
dataset_size: 223349484
- config_name: schema
features:
- name: service_name
dtype: string
- name: description
dtype: string
- name: slots
sequence:
- name: name
dtype: string
- name: description
dtype: string
- name: is_categorical
dtype: bool
- name: possible_values
sequence: string
- name: intents
sequence:
- name: name
dtype: string
- name: description
dtype: string
- name: is_transactional
dtype: bool
- name: required_slots
sequence: string
- name: optional_slots
sequence:
- name: slot_name
dtype: string
- name: slot_value
dtype: string
- name: result_slots
sequence: string
splits:
- name: train
num_bytes: 31513
num_examples: 26
- name: validation
num_bytes: 18798
num_examples: 17
- name: test
num_bytes: 22487
num_examples: 21
download_size: 617805368
dataset_size: 72798
---
# Dataset Card for The Schema-Guided Dialogue Dataset
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Repository:** [Github repository for The Schema-Guided Dialogue Dataset](https://github.com/google-research-datasets/dstc8-schema-guided-dialogue)
- **Paper:** [Towards Scalable Multi-Domain Conversational Agents: The Schema-Guided Dialogue Dataset](https://arxiv.org/abs/1909.05855)
- **Point of Contact:** [abhirast@google.com](abhirast@google.com)
### Dataset Summary
The Schema-Guided Dialogue dataset (SGD) was developed for the Dialogue State Tracking task of the Eights Dialogue Systems Technology Challenge (dstc8).
The SGD dataset consists of over 18k annotated multi-domain, task-oriented conversations between a human and a virtual assistant. These conversations involve interactions with services and APIs spanning 17 domains, ranging from banks and events to media, calendar, travel, and weather. For most of these domains, the SGD dataset contains multiple different APIs, many of which have overlapping functionalities but different interfaces, which reflects common real-world scenarios.
### Supported Tasks and Leaderboards
This dataset is designed to serve as an effective test-bed for intent prediction, slot filling, state tracking (i.e., estimating the user's goal) and language generation, among other tasks for large-scale virtual assistants:
- **Generative dialogue modeling** or `dialogue-modeling`: the text of the dialogues can be used to train a sequence model on the utterances. Performance on this task is typically evaluated with delexicalized-[BLEU](https://huggingface.co/metrics/bleu), inform rate and request success.
- **Intent state tracking**, a `multi-class-classification` task: predict the belief state of the user side of the conversation, performance is measured by [F1](https://huggingface.co/metrics/f1).
- **Action prediction**, a `parsing` task: parse an utterance into the corresponding dialog acts for the system to use. [F1](https://huggingface.co/metrics/f1) is typically reported.
### Languages
The text in the dataset is in English (`en`).
## Dataset Structure
### Data Instances
- `dialogues` configuration (default): Each dialogue is represented as a sequence of turns, each containing a user or system utterance. The annotations for each turn are grouped into frames, where each frame corresponds to a single service. The annotations for user turns include the active intent, the dialogue state and slot spans for the different slots values mentioned in the turn. For system turns, we have the system actions representing the semantics of the system utterance. Each system action is represented using a dialogue act with optional parameters.
- `schema` configuration: In addition to the dialogues, for each service used in the dataset, a normalized representation of the interface exposed is provided as the schema. The schema contains details like the name of the service, the list of tasks supported by the service (intents) and the attributes of the entities used by the service (slots). The schema also contains natural language descriptions of the service, intents and slots which can be used for developing models which can condition their predictions on the schema.
### Data Fields
Each dialog instance has the following fields:
- `dialogue_id`: A unique identifier for a dialogue.
- `services`: A list of services present in the dialogue.
- `turns`: A list of annotated system or user utterances. Each turn consists of the following fields:
- `speaker`: The speaker for the turn. Either `USER` or `SYSTEM`.
- `utterance`: A string containing the natural language utterance.
- `frames`: A list of frames, each frame containing annotations for a single service and consists of the following fields:
- `service`: The name of the service corresponding to the frame. The slots and intents used in the following fields are taken from the schema of this service.
- `slots`: A list of slot spans in the utterance, only provided for non-categorical slots. Each slot span contains the following fields:
- `slot`: The name of the slot.
- `start`: The index of the starting character in the utterance corresponding to the slot value.
- `exclusive_end`: The index of the character just after the last character corresponding to the slot value in the utterance.
- `actions`: A list of actions corresponding to the system. Each action has the following fields:
- `act`: The type of action.
- `slot`: (optional) A slot argument for some of the actions.
- `values`: (optional) A list of values assigned to the slot. If the values list is non-empty, then the slot must be present.
- `canonical_values`: (optional) The values in their canonicalized form as used by the service. It is a list of strings of the same length as values.
- `service_call`: (system turns only, optional) The request sent to the service. It consists of the following fields:
- `method`: The name of the intent or function of the service or API being executed.
- `parameters`: A pair of lists of the same lengths: `parameter_slot_name` contains slot names and `parameter_canonical_value` contains the corresponding values in their canonicalized form.
- `service_results`: (system turns only, optional) A list of entities containing the results obtained from the service. It is only available for turns in which a service call is made. Each entity is represented as a pair of lists of the same length: `service_slot_name` contains slot names and `service_canonical_value` contains the corresponding canonical values.
- `state`: (user turns only) The dialogue state corresponding to the service. It consists of the following fields:
- `active_intent`: The intent corresponding to the service of the frame which is currently being fulfilled by the system. It takes the value "NONE" if none of the intents are active.
- `requested_slots`: A list of slots requested by the user in the current turn.
- `slot_values`: A pair of lists of the same lengths: `slot_name` contains slot names and `slot_value_list` contains the corresponding lists of strings. For categorical slots, this list contains a single value assigned to the slot. For non-categorical slots, all the values in this list are spoken variations of each other and are equivalent (e.g, "6 pm", "six in the evening", "evening at 6" etc.).
The mapping from the action ID and the action name is the following:
0: AFFIRM
1: AFFIRM_INTENT
2: CONFIRM
3: GOODBYE
4: INFORM
5: INFORM_COUNT
6: INFORM_INTENT
7: NEGATE
8: NEGATE_INTENT
9: NOTIFY_FAILURE
10: NOTIFY_SUCCESS
11: OFFER
12: OFFER_INTENT
13: REQUEST
14: REQUEST_ALTS
15: REQ_MORE
16: SELECT
17: THANK_YOU
### Data Splits
The dataset is split into a `train`, `validation`, and `test` split with the following sizes:
| | train | validation | test |
|---------------------|------:|-----------:|------:|
| Number of dialogues | 16142 | 2482 | 4201 |
| Number of turns | 48426 | 7446 | 12603 |
## Dataset Creation
### Curation Rationale
The data was collected by first using a dialogue simulator to generate dialogue outlines first and then paraphrasing them to obtain natural utterances. Using a dialogue simulator ensures the coverage of a large variety of dialogue flows by filtering out similar flows in the simulation phase to create a diverse dataset, and dialogues can be generated with their annotation, as opposed to a Wizard-of-Oz setup which is prone to manual annotation errors.
### Source Data
#### Initial Data Collection and Normalization
The dialogue outlines are first generated by a simulator. The dialogue simulator interacts with the services to generate dialogue outlines. It consists of two
agents playing the roles of the user and the system, interacting with each other using a finite set of actions specified through dialogue acts over a probabilistic automaton designed to capture varied dialogue trajectories. It is worth noting that the simulation automaton does not include any domain-specific constraints: all domain-specific constraints are encoded in the schema and scenario.
The dialogue paraphrasing framework then converts the outlines generated by the simulator into a natural conversation. Users may refer to the slot values in the dialogue acts in various different ways during the conversation, e.g., “los angeles” may be referred to as “LA” or “LAX”. To introduce these natural variations in the slot values, different slot values are replaced with a randomly selected variation while being kept consistent across user turns in a dialogue. The actions are then converted to pseudo-natural language utterances using a set of manually defined action-to-text templates, and the resulting utterances for the different actions in a turn are concatenated together.
Finally, the dialogue transformed by these steps is sent to the crowd workers to be reformulated into more natural language. One crowd worker is tasked with paraphrasing all utterances of a dialogue to ensure naturalness and coherence. The crowd workers are asked to exactly repeat the slot values in their paraphrases so that the span indices for the slots can be recovered via string matching.
#### Who are the source language producers?
The language structure is machine-generated, and the language realizations are produced by crowd workers. The dataset paper does not provide demographic information for the crowd workers.
### Annotations
#### Annotation process
The annotations are automatically obtained during the initial sampling process and by string matching after reformulation.
#### Who are the annotators?
[N/A]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
The dataset was created by a team of researchers working at Google Mountain View.
### Licensing Information
The dataset is released under CC BY-SA 4.0 license.
### Citation Information
For the DSCT8 task, please cite:
```
@article{corr/abs-2002-01359,
author = {Abhinav Rastogi and
Xiaoxue Zang and
Srinivas Sunkara and
Raghav Gupta and
Pranav Khaitan},
title = {Schema-Guided Dialogue State Tracking Task at {DSTC8}},
journal = {CoRR},
volume = {abs/2002.01359},
year = {2020},
url = {https://arxiv.org/abs/2002.01359},
archivePrefix = {arXiv},
eprint = {2002.01359}
}
```
For the initial release paper please cite:
```
@inproceedings{aaai/RastogiZSGK20,
author = {Abhinav Rastogi and
Xiaoxue Zang and
Srinivas Sunkara and
Raghav Gupta and
Pranav Khaitan},
title = {Towards Scalable Multi-Domain Conversational Agents: The Schema-Guided
Dialogue Dataset},
booktitle = {The Thirty-Fourth {AAAI} Conference on Artificial Intelligence, {AAAI}
2020, The Thirty-Second Innovative Applications of Artificial Intelligence
Conference, {IAAI} 2020, The Tenth {AAAI} Symposium on Educational
Advances in Artificial Intelligence, {EAAI} 2020, New York, NY, USA,
February 7-12, 2020},
pages = {8689--8696},
publisher = {{AAAI} Press},
year = {2020},
url = {https://aaai.org/ojs/index.php/AAAI/article/view/6394}
}
```
### Contributions
Thanks to [@yjernite](https://github.com/yjernite) for adding this dataset. | 16,671 | [
[
-0.03790283203125,
-0.06402587890625,
0.0299835205078125,
0.022979736328125,
-0.0035305023193359375,
-0.0074615478515625,
-0.01236724853515625,
-0.0140533447265625,
0.0305023193359375,
0.06939697265625,
-0.07244873046875,
-0.051544189453125,
-0.02825927734375,
0.00345611572265625,
-0.011871337890625,
0.07940673828125,
0.00203704833984375,
-0.000537872314453125,
-0.0141448974609375,
-0.0185546875,
-0.03082275390625,
-0.034698486328125,
-0.055877685546875,
-0.00925445556640625,
0.005657196044921875,
0.0311279296875,
0.04254150390625,
0.03753662109375,
0.0290985107421875,
0.032684326171875,
-0.017181396484375,
0.0297393798828125,
-0.034332275390625,
0.023193359375,
0.00116729736328125,
-0.025115966796875,
-0.05096435546875,
-0.0089874267578125,
0.0560302734375,
0.048736572265625,
-0.014251708984375,
0.00786590576171875,
-0.003871917724609375,
0.01497650146484375,
-0.013580322265625,
0.0484619140625,
-0.02020263671875,
-0.0014467239379882812,
-0.007110595703125,
-0.0146942138671875,
-0.0270538330078125,
-0.032623291015625,
0.0311279296875,
-0.07025146484375,
0.0039825439453125,
0.0153656005859375,
0.070556640625,
0.0242156982421875,
-0.0193939208984375,
-0.024627685546875,
-0.05340576171875,
0.060455322265625,
-0.0552978515625,
0.00896453857421875,
0.041229248046875,
0.025848388671875,
-0.0218963623046875,
-0.049163818359375,
-0.05487060546875,
-0.01360321044921875,
-0.0256500244140625,
0.00853729248046875,
-0.0107574462890625,
0.021148681640625,
0.0452880859375,
0.03839111328125,
-0.04449462890625,
-0.012847900390625,
-0.028961181640625,
-0.022247314453125,
0.0623779296875,
0.04620361328125,
0.0225067138671875,
-0.03790283203125,
-0.033966064453125,
-0.01554107666015625,
-0.03082275390625,
0.019256591796875,
0.013092041015625,
0.032470703125,
-0.03033447265625,
0.045074462890625,
-0.03515625,
0.05267333984375,
0.0201416015625,
-0.0279388427734375,
0.03155517578125,
-0.045135498046875,
-0.0259552001953125,
-0.000911712646484375,
0.084228515625,
0.037872314453125,
-0.01442718505859375,
-0.000820159912109375,
0.0010957717895507812,
-0.0009226799011230469,
0.019622802734375,
-0.045562744140625,
0.00818634033203125,
0.04058837890625,
-0.0212249755859375,
-0.014404296875,
-0.015777587890625,
-0.046539306640625,
-0.01372528076171875,
-0.0247955322265625,
0.0181427001953125,
-0.046478271484375,
-0.019287109375,
0.0018472671508789062,
-0.008941650390625,
0.026611328125,
0.0128021240234375,
-0.06927490234375,
0.0531005859375,
0.042724609375,
0.055755615234375,
-0.0209197998046875,
-0.0243682861328125,
-0.03668212890625,
0.00400543212890625,
-0.00041985511779785156,
0.057281494140625,
-0.036285400390625,
-0.047271728515625,
0.0017681121826171875,
0.033843994140625,
-0.021392822265625,
-0.0247955322265625,
0.06475830078125,
-0.024444580078125,
0.0281524658203125,
-0.0229949951171875,
-0.053070068359375,
-0.02899169921875,
0.01123046875,
-0.050506591796875,
0.08953857421875,
0.0178375244140625,
-0.029693603515625,
0.019073486328125,
-0.08258056640625,
-0.035552978515625,
0.01418304443359375,
-0.019561767578125,
-0.02667236328125,
-0.0193023681640625,
0.00963592529296875,
0.037109375,
-0.0236358642578125,
0.01013946533203125,
-0.0175018310546875,
-0.016815185546875,
0.0118408203125,
-0.01374053955078125,
0.073486328125,
0.013092041015625,
-0.022369384765625,
0.02178955078125,
-0.0595703125,
0.008453369140625,
0.005817413330078125,
-0.010833740234375,
-0.01151275634765625,
-0.00027060508728027344,
0.0071868896484375,
0.0111083984375,
0.0015535354614257812,
-0.041595458984375,
0.024444580078125,
-0.037811279296875,
0.041168212890625,
0.0460205078125,
0.0223846435546875,
0.04351806640625,
-0.01476287841796875,
0.0306243896484375,
0.0150146484375,
0.03314208984375,
-0.01503753662109375,
-0.050323486328125,
-0.0675048828125,
-0.0198211669921875,
0.0093994140625,
0.05718994140625,
-0.054840087890625,
0.05865478515625,
-0.0305938720703125,
-0.037628173828125,
-0.046356201171875,
-0.01236724853515625,
0.034637451171875,
0.0249481201171875,
0.022430419921875,
-0.03387451171875,
-0.031463623046875,
-0.07080078125,
0.0247650146484375,
-0.01514434814453125,
0.01267242431640625,
0.050384521484375,
0.027191162109375,
-0.024078369140625,
0.072265625,
-0.048248291015625,
-0.0221405029296875,
-0.023590087890625,
0.006496429443359375,
0.01019287109375,
0.032440185546875,
0.02374267578125,
-0.0587158203125,
-0.024169921875,
-0.0158233642578125,
-0.058746337890625,
-0.0031490325927734375,
-0.0197601318359375,
-0.0218963623046875,
0.01366424560546875,
0.014373779296875,
-0.060211181640625,
0.046051025390625,
0.032989501953125,
-0.034271240234375,
0.033050537109375,
0.0013093948364257812,
0.021697998046875,
-0.09222412109375,
-0.01308441162109375,
-0.003276824951171875,
0.0010519027709960938,
-0.0633544921875,
-0.025115966796875,
-0.0230560302734375,
-0.007843017578125,
-0.0204925537109375,
0.042816162109375,
-0.0164337158203125,
-0.019927978515625,
0.0011043548583984375,
0.019317626953125,
0.001068115234375,
0.06512451171875,
0.01666259765625,
0.06048583984375,
0.04888916015625,
-0.06964111328125,
0.03778076171875,
0.060333251953125,
-0.023529052734375,
0.050567626953125,
-0.056427001953125,
-0.002681732177734375,
0.002719879150390625,
0.030059814453125,
-0.08575439453125,
-0.0189056396484375,
0.04266357421875,
-0.0292205810546875,
0.00018858909606933594,
-0.0205230712890625,
-0.0258636474609375,
-0.01372528076171875,
0.005889892578125,
0.01299285888671875,
0.01418304443359375,
-0.01183319091796875,
0.0677490234375,
0.04412841796875,
-0.0240325927734375,
-0.0265960693359375,
-0.03546142578125,
-0.01165008544921875,
-0.01157379150390625,
-0.06939697265625,
0.038330078125,
-0.01468658447265625,
-0.0045013427734375,
-0.004550933837890625,
0.014251708984375,
0.0019140243530273438,
0.0020503997802734375,
0.046905517578125,
0.033050537109375,
-0.004581451416015625,
-0.0030918121337890625,
0.01174163818359375,
-0.026031494140625,
-0.002727508544921875,
-0.007080078125,
0.05975341796875,
-0.019287109375,
-0.0399169921875,
-0.0484619140625,
0.041595458984375,
0.04400634765625,
-0.022735595703125,
0.04779052734375,
0.04986572265625,
-0.0220794677734375,
0.007457733154296875,
-0.0350341796875,
-0.0186004638671875,
-0.034423828125,
0.015472412109375,
-0.0301513671875,
-0.05792236328125,
0.05694580078125,
0.01165008544921875,
0.0274810791015625,
0.037628173828125,
0.04742431640625,
0.0018377304077148438,
0.07501220703125,
0.0282135009765625,
-0.0005846023559570312,
0.037506103515625,
-0.045562744140625,
0.0258331298828125,
-0.07421875,
-0.021087646484375,
-0.0303955078125,
-0.0081024169921875,
-0.056304931640625,
-0.035491943359375,
0.0294647216796875,
-0.00733184814453125,
-0.0164794921875,
0.045654296875,
-0.038726806640625,
-0.0004391670227050781,
0.059844970703125,
-0.0175323486328125,
0.01568603515625,
-0.0005707740783691406,
-0.01177215576171875,
-0.0009336471557617188,
-0.043731689453125,
-0.04876708984375,
0.06988525390625,
0.01497650146484375,
0.041168212890625,
0.01134490966796875,
0.052093505859375,
0.018310546875,
0.004058837890625,
-0.063720703125,
0.060272216796875,
0.0124664306640625,
-0.040679931640625,
-0.0452880859375,
-0.032623291015625,
-0.06597900390625,
0.017791748046875,
-0.01363372802734375,
-0.06793212890625,
0.0223236083984375,
-0.005611419677734375,
-0.054107666015625,
-0.00583648681640625,
-0.058563232421875,
0.06640625,
-0.019073486328125,
-0.00675201416015625,
-0.003376007080078125,
-0.05120849609375,
0.00724029541015625,
0.042266845703125,
0.000270843505859375,
-0.00595855712890625,
0.022613525390625,
0.061737060546875,
-0.0272064208984375,
0.07275390625,
-0.0216217041015625,
0.0107421875,
0.02691650390625,
-0.006305694580078125,
0.041839599609375,
0.011322021484375,
0.01409912109375,
0.015716552734375,
0.015960693359375,
-0.01244354248046875,
-0.054168701171875,
0.042694091796875,
-0.05694580078125,
-0.026885986328125,
-0.034515380859375,
-0.030242919921875,
-0.0198516845703125,
0.01580810546875,
0.01010894775390625,
0.044097900390625,
-0.0254669189453125,
0.00298309326171875,
0.06475830078125,
-0.026611328125,
0.01363372802734375,
0.045623779296875,
-0.01499176025390625,
-0.03033447265625,
0.05780029296875,
0.009124755859375,
0.0299530029296875,
0.0220794677734375,
-0.01873779296875,
-0.0341796875,
-0.0190887451171875,
-0.05322265625,
0.0170440673828125,
-0.0345458984375,
0.0023250579833984375,
-0.058624267578125,
-0.030303955078125,
-0.041351318359375,
0.01490020751953125,
-0.022125244140625,
-0.037811279296875,
-0.0200653076171875,
-0.0193939208984375,
0.04449462890625,
0.03289794921875,
0.0008692741394042969,
0.03460693359375,
-0.045654296875,
0.026031494140625,
0.01396942138671875,
0.03216552734375,
-0.024932861328125,
-0.03131103515625,
-0.00833892822265625,
0.016571044921875,
-0.0310821533203125,
-0.04522705078125,
0.0167083740234375,
0.004909515380859375,
0.060272216796875,
0.0377197265625,
0.001789093017578125,
0.055816650390625,
-0.03759765625,
0.09075927734375,
0.006221771240234375,
-0.04949951171875,
0.04901123046875,
-0.01885986328125,
0.005069732666015625,
0.032958984375,
0.0225982666015625,
-0.07110595703125,
-0.0187225341796875,
-0.06781005859375,
-0.06353759765625,
0.08233642578125,
0.025238037109375,
0.00527191162109375,
-0.01102447509765625,
0.007320404052734375,
-0.0098876953125,
0.0087127685546875,
-0.034454345703125,
-0.05322265625,
-0.0164947509765625,
-0.01873779296875,
-0.002742767333984375,
-0.01023101806640625,
-0.039947509765625,
-0.010650634765625,
0.0582275390625,
-0.006877899169921875,
0.05816650390625,
0.0116729736328125,
0.00339508056640625,
0.0079193115234375,
0.0216217041015625,
0.055755615234375,
0.026885986328125,
-0.01442718505859375,
-0.032958984375,
0.01360321044921875,
-0.0309600830078125,
-0.0019483566284179688,
0.0159759521484375,
-0.0239105224609375,
-0.0005960464477539062,
0.0191192626953125,
0.10162353515625,
0.0232696533203125,
-0.045074462890625,
0.030029296875,
-0.0216827392578125,
-0.0166778564453125,
-0.04266357421875,
0.022430419921875,
-0.004566192626953125,
0.022247314453125,
0.00891876220703125,
-0.00206756591796875,
0.021820068359375,
-0.032501220703125,
0.0000050067901611328125,
0.0186614990234375,
-0.031402587890625,
-0.01229095458984375,
0.02154541015625,
0.018157958984375,
-0.04425048828125,
0.0394287109375,
-0.03167724609375,
-0.031463623046875,
0.024749755859375,
0.0200958251953125,
0.06597900390625,
-0.0125579833984375,
0.035491943359375,
0.025482177734375,
0.01160430908203125,
-0.00024390220642089844,
0.031280517578125,
-0.01508331298828125,
-0.065185546875,
-0.0253448486328125,
-0.0518798828125,
-0.0305633544921875,
0.0174713134765625,
-0.0660400390625,
0.0034656524658203125,
-0.027801513671875,
-0.03070068359375,
0.0121307373046875,
0.006954193115234375,
-0.05487060546875,
0.00501251220703125,
0.0011415481567382812,
0.0587158203125,
-0.0546875,
0.034637451171875,
0.045501708984375,
-0.050018310546875,
-0.0726318359375,
-0.024688720703125,
0.0096282958984375,
-0.050140380859375,
0.025604248046875,
-0.0157470703125,
-0.0003421306610107422,
-0.0236663818359375,
-0.0288543701171875,
-0.0677490234375,
0.0941162109375,
-0.003177642822265625,
-0.026336669921875,
-0.0042877197265625,
0.02850341796875,
0.0440673828125,
-0.049896240234375,
0.03302001953125,
0.06219482421875,
0.03369140625,
0.01009368896484375,
-0.0770263671875,
0.002826690673828125,
-0.02215576171875,
-0.0008082389831542969,
0.00045800209045410156,
-0.059661865234375,
0.045135498046875,
0.007411956787109375,
-0.01450347900390625,
0.0037479400634765625,
0.045684814453125,
0.0250244140625,
0.0182037353515625,
0.045379638671875,
0.045928955078125,
0.0631103515625,
-0.029144287109375,
0.07684326171875,
-0.0245819091796875,
0.022125244140625,
0.08050537109375,
-0.0178375244140625,
0.051055908203125,
0.024444580078125,
-0.0143890380859375,
0.03387451171875,
0.04620361328125,
0.0071258544921875,
0.042449951171875,
-0.005153656005859375,
-0.01300048828125,
-0.016937255859375,
-0.007717132568359375,
-0.0236358642578125,
0.0474853515625,
0.054901123046875,
-0.025146484375,
0.0102081298828125,
-0.00003248453140258789,
0.0033111572265625,
-0.0258331298828125,
-0.002376556396484375,
0.0841064453125,
-0.00537872314453125,
-0.06732177734375,
0.04425048828125,
-0.007480621337890625,
0.028106689453125,
-0.05303955078125,
-0.0091400146484375,
-0.0178070068359375,
0.00514984130859375,
-0.01544952392578125,
-0.0654296875,
0.0185089111328125,
-0.0138092041015625,
-0.0262603759765625,
-0.0170135498046875,
0.02655029296875,
-0.039306640625,
-0.0291748046875,
0.01220703125,
0.0195770263671875,
0.020477294921875,
0.018951416015625,
-0.0684814453125,
0.02105712890625,
0.013275146484375,
-0.017730712890625,
0.013671875,
0.03399658203125,
-0.00838470458984375,
0.06365966796875,
0.039764404296875,
0.0032939910888671875,
0.0016422271728515625,
0.0183258056640625,
0.06915283203125,
-0.046234130859375,
-0.044708251953125,
-0.0235595703125,
0.051422119140625,
-0.0361328125,
-0.044921875,
0.049957275390625,
0.0380859375,
0.06439208984375,
0.0123443603515625,
0.06951904296875,
-0.0252227783203125,
0.05914306640625,
-0.035308837890625,
0.03228759765625,
-0.0243988037109375,
0.0294647216796875,
-0.0251617431640625,
-0.0546875,
0.013427734375,
0.06268310546875,
-0.041168212890625,
-0.00272369384765625,
0.03680419921875,
0.080810546875,
-0.00225830078125,
0.039337158203125,
0.0029125213623046875,
0.020599365234375,
0.025665283203125,
0.0243682861328125,
0.05023193359375,
-0.05023193359375,
0.03692626953125,
-0.01312255859375,
-0.026641845703125,
-0.022613525390625,
-0.0286712646484375,
-0.055450439453125,
-0.0731201171875,
-0.0193634033203125,
-0.03839111328125,
-0.01061248779296875,
0.073486328125,
0.060882568359375,
-0.07080078125,
-0.029083251953125,
0.017822265625,
0.00234222412109375,
-0.039459228515625,
-0.0217132568359375,
0.0247344970703125,
-0.0163116455078125,
-0.055511474609375,
0.0256805419921875,
0.0294952392578125,
-0.00543975830078125,
-0.0283203125,
-0.02606201171875,
-0.0114898681640625,
0.004665374755859375,
0.05291748046875,
0.024505615234375,
-0.0667724609375,
-0.0202789306640625,
0.006565093994140625,
-0.00785064697265625,
-0.0034236907958984375,
0.04833984375,
-0.031219482421875,
0.0276947021484375,
0.0159759521484375,
0.027740478515625,
0.061981201171875,
-0.002666473388671875,
0.038360595703125,
-0.044891357421875,
0.004123687744140625,
0.0198822021484375,
0.0234832763671875,
0.01806640625,
-0.034515380859375,
0.035919189453125,
0.005634307861328125,
-0.04400634765625,
-0.0584716796875,
0.022918701171875,
-0.102294921875,
0.017669677734375,
0.09820556640625,
-0.016204833984375,
-0.01483917236328125,
-0.02783203125,
-0.02960205078125,
0.004730224609375,
-0.05718994140625,
0.03668212890625,
0.0606689453125,
-0.0264892578125,
-0.004863739013671875,
-0.034393310546875,
0.07025146484375,
0.01593017578125,
-0.058563232421875,
0.0092010498046875,
0.03948974609375,
0.0168609619140625,
0.03192138671875,
0.0677490234375,
-0.00815582275390625,
0.0095367431640625,
-0.01024627685546875,
-0.003326416015625,
0.0160369873046875,
-0.01142120361328125,
-0.00021088123321533203,
-0.01160430908203125,
-0.02301025390625,
-0.014434814453125
]
] |
lhoestq/test | 2022-07-01T15:26:34.000Z | [
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:n<1K",
"source_datasets:original",
"language:en",
"license:mit",
"region:us"
] | lhoestq | This is a test dataset. | \ | 0 | 986 | 2022-03-02T23:29:22 | ---
type: test
annotations_creators:
- expert-generated
language_creators:
- found
language:
- en
license:
- mit
multilinguality:
- monolingual
size_categories:
- n<1K
source_datasets:
- original
task_categories:
- other-test
task_ids:
- other-test
paperswithcode_id: null
pretty_name: Test Dataset
---
This is a test dataset | 326 | [
[
-0.01317596435546875,
-0.0360107421875,
-0.0103607177734375,
0.0075836181640625,
-0.006694793701171875,
-0.0060882568359375,
0.0164794921875,
0.0165557861328125,
-0.0014057159423828125,
0.047882080078125,
-0.06195068359375,
-0.021392822265625,
-0.0177764892578125,
0.007022857666015625,
-0.07086181640625,
0.079833984375,
-0.01201629638671875,
0.0169525146484375,
-0.0239410400390625,
-0.032745361328125,
-0.06329345703125,
-0.01425933837890625,
-0.057769775390625,
0.01027679443359375,
0.01174163818359375,
0.0625,
0.0638427734375,
0.040771484375,
0.043182373046875,
0.0126953125,
0.0277252197265625,
-0.02374267578125,
-0.043304443359375,
0.01296234130859375,
0.00743865966796875,
-0.045928955078125,
0.002910614013671875,
0.0161895751953125,
0.042938232421875,
0.04638671875,
0.0124969482421875,
0.0274505615234375,
-0.029998779296875,
0.040496826171875,
-0.031280517578125,
0.017425537109375,
-0.0158843994140625,
0.0183563232421875,
-0.0211181640625,
0.0107421875,
-0.0044708251953125,
-0.03729248046875,
-0.01430511474609375,
-0.03338623046875,
0.050811767578125,
0.039703369140625,
0.08056640625,
0.016082763671875,
-0.04425048828125,
0.01285552978515625,
-0.044708251953125,
0.053070068359375,
-0.0251312255859375,
0.042205810546875,
0.04998779296875,
0.045074462890625,
-0.0086822509765625,
-0.03662109375,
-0.0438232421875,
-0.0120086669921875,
0.0161590576171875,
0.01401519775390625,
-0.007587432861328125,
-0.030792236328125,
0.033599853515625,
0.060577392578125,
-0.07305908203125,
-0.013458251953125,
-0.053924560546875,
-0.005886077880859375,
0.057281494140625,
0.031219482421875,
0.0280303955078125,
0.00608062744140625,
-0.026885986328125,
-0.03411865234375,
-0.046539306640625,
-0.00787353515625,
0.02947998046875,
0.050140380859375,
-0.017547607421875,
0.083251953125,
-0.00757598876953125,
0.061676025390625,
-0.017181396484375,
0.0102386474609375,
0.049713134765625,
-0.0305633544921875,
-0.042266845703125,
0.02899169921875,
0.01070404052734375,
0.037811279296875,
0.05804443359375,
0.01538848876953125,
-0.0107574462890625,
0.020416259765625,
-0.0024204254150390625,
-0.050079345703125,
-0.0416259765625,
0.01910400390625,
-0.034912109375,
-0.021881103515625,
0.0233612060546875,
-0.049407958984375,
-0.0212860107421875,
-0.03179931640625,
0.01300811767578125,
-0.036773681640625,
-0.0220947265625,
0.0200042724609375,
-0.0260009765625,
0.0132904052734375,
-0.0200042724609375,
-0.032989501953125,
0.05511474609375,
0.0245208740234375,
0.04815673828125,
-0.00241851806640625,
-0.0206451416015625,
-0.0291900634765625,
-0.0006403923034667969,
-0.03717041015625,
0.038909912109375,
-0.0204620361328125,
-0.049224853515625,
-0.016204833984375,
0.0438232421875,
-0.015716552734375,
-0.04730224609375,
0.0263671875,
-0.03680419921875,
0.0196075439453125,
-0.03216552734375,
-0.03692626953125,
-0.01152801513671875,
0.00946044921875,
-0.070556640625,
0.1104736328125,
0.056182861328125,
-0.050262451171875,
0.048980712890625,
-0.04290771484375,
-0.030517578125,
0.01262664794921875,
-0.0260009765625,
-0.052520751953125,
-0.0157318115234375,
-0.024169921875,
0.0095062255859375,
-0.01898193359375,
0.0015974044799804688,
-0.039031982421875,
-0.04400634765625,
0.01309967041015625,
0.0034389495849609375,
0.057220458984375,
0.020843505859375,
-0.021514892578125,
-0.02557373046875,
-0.0791015625,
0.019805908203125,
0.017669677734375,
-0.018524169921875,
-0.0211639404296875,
-0.007648468017578125,
0.0142974853515625,
0.00928497314453125,
-0.022216796875,
-0.06365966796875,
0.0274810791015625,
-0.00144195556640625,
-0.0118560791015625,
0.0543212890625,
0.019378662109375,
-0.0020046234130859375,
-0.037811279296875,
0.04217529296875,
0.0300445556640625,
0.00843048095703125,
0.04052734375,
-0.035430908203125,
-0.049224853515625,
-0.00868988037109375,
0.045074462890625,
0.054962158203125,
-0.029022216796875,
0.04412841796875,
-0.0101165771484375,
-0.0216522216796875,
-0.0156402587890625,
-0.003536224365234375,
0.0092620849609375,
0.02520751953125,
-0.004680633544921875,
-0.016998291015625,
-0.052825927734375,
-0.08544921875,
0.019134521484375,
-0.0140228271484375,
-0.0291900634765625,
0.004261016845703125,
0.048248291015625,
-0.01319122314453125,
0.060821533203125,
-0.064453125,
-0.0087738037109375,
-0.00957489013671875,
-0.0220794677734375,
0.04046630859375,
0.049041748046875,
0.055023193359375,
-0.062744140625,
-0.022796630859375,
-0.031005859375,
-0.04248046875,
0.0004177093505859375,
0.00439453125,
-0.0140228271484375,
-0.0216217041015625,
-0.007843017578125,
-0.0036449432373046875,
0.0694580078125,
0.0498046875,
-0.05694580078125,
0.0265655517578125,
-0.00289154052734375,
0.034149169921875,
-0.064697265625,
0.0184783935546875,
-0.0164947509765625,
-0.008636474609375,
-0.00807952880859375,
-0.04046630859375,
0.00832366943359375,
-0.0309295654296875,
-0.026336669921875,
0.0361328125,
-0.01488494873046875,
-0.0284881591796875,
-0.00679779052734375,
-0.033538818359375,
0.00312042236328125,
-0.00414276123046875,
-0.034332275390625,
0.07843017578125,
0.061126708984375,
-0.05108642578125,
0.05126953125,
0.05108642578125,
-0.031768798828125,
0.05889892578125,
-0.043914794921875,
-0.0026531219482421875,
-0.008636474609375,
-0.00504302978515625,
-0.0858154296875,
-0.0455322265625,
0.017425537109375,
-0.01117706298828125,
-0.030120849609375,
0.0160675048828125,
-0.046112060546875,
-0.045196533203125,
-0.01383209228515625,
0.01453399658203125,
0.042510986328125,
-0.046783447265625,
0.00595855712890625,
0.0169677734375,
0.00928497314453125,
-0.0258331298828125,
-0.08056640625,
-0.0167083740234375,
-0.0213623046875,
-0.03802490234375,
-0.003971099853515625,
-0.020965576171875,
-0.036285400390625,
0.010772705078125,
0.00576019287109375,
-0.050445556640625,
0.0021209716796875,
0.05072021484375,
0.027801513671875,
-0.0208740234375,
0.038970947265625,
-0.0308837890625,
0.0077667236328125,
0.006710052490234375,
0.0089874267578125,
0.0229034423828125,
0.00635528564453125,
-0.01861572265625,
-0.0168304443359375,
0.025177001953125,
0.00047516822814941406,
0.0165252685546875,
0.040985107421875,
0.0011701583862304688,
-0.037689208984375,
-0.03948974609375,
0.002292633056640625,
-0.004550933837890625,
-0.031036376953125,
0.0200042724609375,
-0.044708251953125,
-0.018524169921875,
0.04248046875,
0.01342010498046875,
0.003414154052734375,
0.0301513671875,
0.020416259765625,
-0.00945281982421875,
0.056732177734375,
0.027618408203125,
-0.016510009765625,
0.0101318359375,
-0.040985107421875,
0.01418304443359375,
-0.023162841796875,
-0.01084136962890625,
-0.047943115234375,
-0.01532745361328125,
-0.0369873046875,
0.007724761962890625,
-0.003459930419921875,
-0.0200653076171875,
-0.038848876953125,
0.0264892578125,
-0.0252532958984375,
0.046539306640625,
0.05389404296875,
0.034912109375,
0.00782012939453125,
-0.0182952880859375,
-0.005779266357421875,
-0.005817413330078125,
-0.0026035308837890625,
-0.02532958984375,
0.09783935546875,
-0.005062103271484375,
0.056121826171875,
-0.00004029273986816406,
-0.00397491455078125,
0.049896240234375,
0.0065155029296875,
-0.042266845703125,
0.024932861328125,
-0.0236053466796875,
-0.07403564453125,
-0.021026611328125,
-0.00737762451171875,
-0.0880126953125,
-0.0229949951171875,
0.005596160888671875,
-0.007595062255859375,
0.01322174072265625,
-0.0033245086669921875,
-0.005615234375,
0.0244903564453125,
-0.0401611328125,
0.057220458984375,
0.00411224365234375,
0.0014514923095703125,
0.037506103515625,
-0.023773193359375,
0.02093505859375,
0.0016193389892578125,
-0.003047943115234375,
-0.0247802734375,
0.009735107421875,
0.07965087890625,
-0.0269775390625,
0.0264434814453125,
-0.02490234375,
0.036590576171875,
0.0267333984375,
0.0022106170654296875,
0.02093505859375,
0.00823211669921875,
-0.0274505615234375,
-0.035980224609375,
0.0021495819091796875,
-0.06396484375,
-0.019805908203125,
0.03814697265625,
-0.038177490234375,
0.0135650634765625,
-0.04852294921875,
-0.0462646484375,
-0.0242156982421875,
0.0115203857421875,
0.0017223358154296875,
0.060699462890625,
-0.02081298828125,
0.035797119140625,
0.06292724609375,
0.017822265625,
0.01557159423828125,
0.0304718017578125,
-0.0254058837890625,
-0.008453369140625,
0.031494140625,
0.0055999755859375,
0.01219940185546875,
-0.026641845703125,
0.0171356201171875,
-0.0290069580078125,
-0.031646728515625,
-0.025543212890625,
0.00023663043975830078,
-0.05364990234375,
-0.01898193359375,
-0.0009908676147460938,
-0.02484130859375,
-0.038909912109375,
-0.005718231201171875,
-0.01062774658203125,
-0.0306396484375,
-0.00582122802734375,
-0.04608154296875,
0.04376220703125,
0.049530029296875,
-0.0164642333984375,
0.0406494140625,
-0.0264892578125,
0.01401519775390625,
0.0304718017578125,
0.03155517578125,
-0.04388427734375,
-0.01519012451171875,
-0.0159759521484375,
-0.003536224365234375,
-0.0210113525390625,
-0.061309814453125,
0.0244598388671875,
0.01059722900390625,
0.03759765625,
0.024871826171875,
0.00807952880859375,
0.0256195068359375,
-0.00769805908203125,
0.058685302734375,
-0.00897216796875,
-0.0484619140625,
0.0465087890625,
-0.04266357421875,
0.00940704345703125,
0.08404541015625,
0.0457763671875,
-0.033172607421875,
-0.006481170654296875,
-0.08282470703125,
-0.026336669921875,
0.03228759765625,
0.0176239013671875,
-0.023590087890625,
0.025421142578125,
0.03778076171875,
0.01174163818359375,
0.019012451171875,
-0.0310211181640625,
-0.047943115234375,
0.005008697509765625,
-0.037811279296875,
-0.0247039794921875,
-0.0011796951293945312,
-0.03167724609375,
-0.0242767333984375,
0.0279541015625,
-0.0005660057067871094,
0.0108795166015625,
0.002643585205078125,
0.020172119140625,
-0.0116424560546875,
-0.005962371826171875,
0.0170440673828125,
0.054046630859375,
-0.059539794921875,
-0.0008244514465332031,
0.0285797119140625,
-0.06231689453125,
0.0296783447265625,
0.001987457275390625,
-0.004138946533203125,
0.01531982421875,
0.03369140625,
0.042266845703125,
0.0144195556640625,
-0.0184326171875,
0.04290771484375,
-0.025238037109375,
-0.0428466796875,
-0.033050537109375,
0.03118896484375,
-0.02557373046875,
-0.01342010498046875,
0.0247039794921875,
0.00972747802734375,
0.0280303955078125,
-0.041412353515625,
0.0592041015625,
-0.00628662109375,
-0.037841796875,
-0.0138397216796875,
0.036651611328125,
0.005153656005859375,
-0.01224517822265625,
0.09002685546875,
-0.004428863525390625,
-0.02490234375,
0.08416748046875,
0.032257080078125,
0.0176239013671875,
-0.0115203857421875,
0.0171966552734375,
0.035614013671875,
0.01226806640625,
0.0015344619750976562,
0.082275390625,
0.03729248046875,
-0.0416259765625,
-0.002101898193359375,
-0.0198822021484375,
-0.039764404296875,
0.035552978515625,
-0.07501220703125,
0.032135009765625,
-0.01541900634765625,
0.00766754150390625,
0.001667022705078125,
0.0265960693359375,
-0.05438232421875,
0.0732421875,
-0.0343017578125,
0.0811767578125,
-0.108642578125,
0.057098388671875,
0.029296875,
0.0063629150390625,
-0.05523681640625,
-0.0239715576171875,
-0.0026569366455078125,
-0.07122802734375,
0.0625,
0.0150604248046875,
0.05316162109375,
-0.01209259033203125,
-0.04937744140625,
-0.06549072265625,
0.06561279296875,
-0.0021686553955078125,
-0.027801513671875,
0.044464111328125,
0.0302734375,
0.0159759521484375,
-0.01407623291015625,
0.01123046875,
0.054412841796875,
0.0562744140625,
0.00978851318359375,
-0.0323486328125,
0.0008134841918945312,
-0.0240020751953125,
-0.007572174072265625,
0.01824951171875,
-0.034912109375,
0.09564208984375,
0.00787353515625,
-0.0100250244140625,
-0.0144805908203125,
0.0421142578125,
0.044097900390625,
0.02459716796875,
0.07647705078125,
0.049957275390625,
0.04815673828125,
-0.025360107421875,
0.08221435546875,
0.01177215576171875,
0.041107177734375,
0.076904296875,
-0.043548583984375,
0.044525146484375,
0.0262603759765625,
-0.0230712890625,
0.00927734375,
0.084716796875,
-0.043670654296875,
0.05194091796875,
0.07177734375,
0.006282806396484375,
-0.002162933349609375,
-0.00017118453979492188,
-0.06463623046875,
0.03240966796875,
-0.01082611083984375,
-0.014556884765625,
-0.0228118896484375,
0.0010671615600585938,
-0.001735687255859375,
-0.0121917724609375,
-0.00795745849609375,
0.01361846923828125,
-0.0247650146484375,
-0.0165863037109375,
0.01194000244140625,
-0.03814697265625,
0.001964569091796875,
-0.03692626953125,
-0.0124359130859375,
-0.0187530517578125,
0.0382080078125,
-0.003795623779296875,
-0.07891845703125,
0.031982421875,
-0.020355224609375,
-0.01904296875,
0.01108551025390625,
0.053863525390625,
-0.01488494873046875,
-0.073974609375,
0.0014715194702148438,
0.0202178955078125,
0.029541015625,
0.01328277587890625,
-0.0557861328125,
0.007259368896484375,
-0.0010356903076171875,
-0.026641845703125,
-0.0022678375244140625,
0.0081787109375,
-0.007122039794921875,
0.038604736328125,
0.03314208984375,
0.0262908935546875,
0.0113067626953125,
0.01372528076171875,
0.061737060546875,
-0.0635986328125,
-0.033966064453125,
-0.020751953125,
0.02545166015625,
-0.024383544921875,
-0.06964111328125,
0.07037353515625,
0.09912109375,
0.06500244140625,
-0.01053619384765625,
0.06402587890625,
-0.00888824462890625,
0.0638427734375,
-0.0204925537109375,
0.0222930908203125,
-0.01373291015625,
-0.047637939453125,
0.016998291015625,
-0.039215087890625,
-0.01496124267578125,
0.017242431640625,
-0.00012683868408203125,
0.004680633544921875,
0.06304931640625,
0.05450439453125,
-0.019256591796875,
0.0509033203125,
0.01177215576171875,
0.0096282958984375,
0.01419830322265625,
0.037628173828125,
0.06280517578125,
-0.07305908203125,
0.0104827880859375,
-0.055419921875,
-0.0251007080078125,
-0.0024204254150390625,
-0.04632568359375,
-0.06622314453125,
-0.043304443359375,
-0.01898193359375,
-0.046661376953125,
0.013763427734375,
0.03570556640625,
0.07171630859375,
-0.08636474609375,
-0.03619384765625,
-0.0108184814453125,
-0.02325439453125,
-0.0240631103515625,
-0.0170135498046875,
0.03839111328125,
0.021575927734375,
-0.040008544921875,
0.01247406005859375,
-0.03167724609375,
0.021453857421875,
-0.0012044906616210938,
0.0194854736328125,
-0.028656005859375,
-0.014068603515625,
-0.0091400146484375,
0.007450103759765625,
0.01461029052734375,
-0.0333251953125,
-0.0020351409912109375,
0.00147247314453125,
0.0112762451171875,
0.039306640625,
-0.0282745361328125,
0.0199432373046875,
0.042022705078125,
0.032440185546875,
0.046142578125,
0.0029354095458984375,
0.040985107421875,
-0.048553466796875,
0.02362060546875,
0.0030078887939453125,
0.023040771484375,
-0.00409698486328125,
-0.052764892578125,
0.07476806640625,
0.0193328857421875,
-0.049835205078125,
-0.06695556640625,
-0.024627685546875,
-0.0863037109375,
0.0087127685546875,
0.062042236328125,
0.003772735595703125,
-0.0548095703125,
-0.0225830078125,
-0.01220703125,
0.01206207275390625,
-0.021759033203125,
0.047027587890625,
0.049835205078125,
-0.0262908935546875,
0.01456451416015625,
-0.05572509765625,
0.02728271484375,
0.01108551025390625,
-0.0870361328125,
-0.0204620361328125,
0.01361846923828125,
0.0439453125,
-0.020843505859375,
0.030120849609375,
0.0155029296875,
0.0170745849609375,
0.0266571044921875,
0.004108428955078125,
-0.01427459716796875,
-0.022613525390625,
-0.01059722900390625,
0.0007891654968261719,
-0.034332275390625,
-0.07366943359375
]
] |
silk-road/ChatHaruhi-from-RoleLLM | 2023-10-20T12:27:24.000Z | [
"license:cc-by-4.0",
"region:us"
] | silk-road | null | null | 0 | 986 | 2023-10-20T08:39:56 | ---
license: cc-by-4.0
---
Adapt English Role in RoleBench into ChatHaruhi format
only using profiles part in [ZenMoore/RoleBench](https://huggingface.co/datasets/ZenMoore/RoleBench)
Great thanks to on authors of RoleLLM!
usage:
```python
# if you pip installed chatharuhi it should be
# from chatharuhi import ChatHaruhi
from ChatHaruhi import ChatHaruhi
chatbot = ChatHaruhi( role_from_hf = 'silk-road/ChatHaruhi-from-RoleLLM/Sherlock Holmes', \
llm = 'openai',
embedding = 'bge_en')
response = chatbot.chat(role='Police Chief', text = 'Oh no, there has been another murder')
print(response)
```
The output should like this:
```
Sherlock Holmes: "Ah, another murder case, you say? Fascinating. Pray, do provide me with the details, Constable."
```
if you chat with bot in English, embedding = 'bge_en'
if in Chinese, embedding = 'luotuo_openai' ( or default )
More detail information see our github https://github.com/LC1332/Chat-Haruhi-Suzumiya
95 Roles contains in this dataset:
Role | Movie | 中文 | How-to-call-in-ChatHaruhi
---|---|---|---
HAL 9000 | 2001-A-Space-Odyssey | 《2001太空漫游》中的HAL 9000电脑 | silk-road/ChatHaruhi-from-RoleLLM/HAL 9000
Colonel Nathan R. Jessep | A-Few-Good-Men | 《好汉两三个》中的内森·R·杰瑟普上校 | silk-road/ChatHaruhi-from-RoleLLM/Colonel Nathan R. Jessep
Antonio Salieri | Amadeus | 《阿玛迪斯》中的安东尼奥·萨列里 | silk-road/ChatHaruhi-from-RoleLLM/Antonio Salieri
Stifler | American-Pie | 《美国派》中的斯蒂夫勒 | silk-road/ChatHaruhi-from-RoleLLM/Stifler
Paul Vitti | Analyze-That | 《心理分析那件事》中的保罗·维蒂 | silk-road/ChatHaruhi-from-RoleLLM/Paul Vitti
Alvy Singer | Annie-Hall | 《安妮·霍尔》中的阿尔维·辛格 | silk-road/ChatHaruhi-from-RoleLLM/Alvy Singer
Violet Weston | August-Osage-County | 《奥塞奇郡的八月》中的紫罗兰·韦斯顿 | silk-road/ChatHaruhi-from-RoleLLM/Violet Weston
Willie Soke | Bad-Santa | 《坏圣诞老人》中的威利·索克 | silk-road/ChatHaruhi-from-RoleLLM/Willie Soke
Gaston | Beauty-and-the-Beast | 《美女与野兽》中的加斯顿 | silk-road/ChatHaruhi-from-RoleLLM/Gaston
The Dude | Big-Lebowski,-The | 《大勒布斯基》中的“大佬” | silk-road/ChatHaruhi-from-RoleLLM/The Dude
Murphy MacManus | Boondock-Saints,-The | 《天使之城》中的墨菲·麦克马纳斯 | silk-road/ChatHaruhi-from-RoleLLM/Murphy MacManus
Paul Conroy | Buried | 《活埋》中的保罗·康罗伊 | silk-road/ChatHaruhi-from-RoleLLM/Paul Conroy
Truman Capote | Capote | 《卡波特》中的杜鲁门·卡波特 | silk-road/ChatHaruhi-from-RoleLLM/Truman Capote
Mater | Cars-2 | 《赛车总动员2》中的玛特 | silk-road/ChatHaruhi-from-RoleLLM/Mater
Andrew Detmer | Chronicle | 《编年史》中的安德鲁·德特默 | silk-road/ChatHaruhi-from-RoleLLM/Andrew Detmer
Coriolanus | Coriolanus | 《科里奥兰纳斯》中的主角 | silk-road/ChatHaruhi-from-RoleLLM/Coriolanus
Benjamin Button | Curious-Case-of-Benjamin-Button,-The | 《本杰明·巴顿奇事》中的本杰明·巴顿 | silk-road/ChatHaruhi-from-RoleLLM/Benjamin Button
John Keating | Dead-Poets-Society | 《死亡诗社》中的约翰·基廷 | silk-road/ChatHaruhi-from-RoleLLM/John Keating
Wade Wilson | Deadpool | 《死侍》中的韦德·威尔逊 | silk-road/ChatHaruhi-from-RoleLLM/Wade Wilson
Jim Morrison | Doors,-The | 《门》中的吉姆·莫里森 | silk-road/ChatHaruhi-from-RoleLLM/Jim Morrison
Queen Elizabeth I | Elizabeth-The-Golden-Age | 《伊丽莎白:黄金时代》中的伊丽莎白一世女王 | silk-road/ChatHaruhi-from-RoleLLM/Queen Elizabeth I
Jeff Spicoli | Fast-Times-at-Ridgemont-High | 《瑞奇蒙特高中时光》中的杰夫·斯皮科利 | silk-road/ChatHaruhi-from-RoleLLM/Jeff Spicoli
Fred Flintstone | Flintstones,-The | 《石头家族》中的弗雷德·弗林斯通 | silk-road/ChatHaruhi-from-RoleLLM/Fred Flintstone
Freddy Krueger | Freddy-vs.-Jason | 《弗雷迪对杰森》中的弗雷迪·克鲁格 | silk-road/ChatHaruhi-from-RoleLLM/Freddy Krueger
Tyrion Lannister | Game_of_Thrones | 《权力的游戏》中的提利昂·兰尼斯特 | silk-road/ChatHaruhi-from-RoleLLM/Tyrion Lannister
James Brown | Get-on-Up | 《起身舞蹈》中的詹姆斯·布朗 | silk-road/ChatHaruhi-from-RoleLLM/James Brown
Walt Kowalski | Gran-Torino | 《老无所依》中的沃尔特·科瓦尔斯基 | silk-road/ChatHaruhi-from-RoleLLM/Walt Kowalski
John Coffey | Green-Mile,-The | 《绿里奇迹》中的约翰·科菲 | silk-road/ChatHaruhi-from-RoleLLM/John Coffey
Theodore Twombly | Her | 《她》中的西奥多·特温布利 | silk-road/ChatHaruhi-from-RoleLLM/Theodore Twombly
Gregory House | House-M.D. | 《豪斯医生》中的格雷戈里·豪斯 | silk-road/ChatHaruhi-from-RoleLLM/Gregory House
Sonny | I,-Robot | 《我,机器人》中的桑尼 | silk-road/ChatHaruhi-from-RoleLLM/Sonny
Colonel Hans Landa | Inglourious-Basterds | 《无耻混蛋》中的汉斯·兰达上校 | silk-road/ChatHaruhi-from-RoleLLM/Colonel Hans Landa
Judge Dredd | Judge-Dredd | 《德莱德法官》中的法官德莱德 | silk-road/ChatHaruhi-from-RoleLLM/Judge Dredd
Juno MacGuff | Juno | 《朱诺》中的朱诺·麦克夫 | silk-road/ChatHaruhi-from-RoleLLM/Juno MacGuff
Po | Kung-Fu-Panda | 《功夫熊猫》中的阿宝 | silk-road/ChatHaruhi-from-RoleLLM/Po
Professor G.H. Dorr | Ladykillers,-The | 《夫人杀手》中的G.H.多尔教授 | silk-road/ChatHaruhi-from-RoleLLM/Professor G.H. Dorr
Fletcher Reede | Liar-Liar | 《撒谎的男人》中的弗莱彻·里德 | silk-road/ChatHaruhi-from-RoleLLM/Fletcher Reede
Abraham Lincoln | Lincoln | 《林肯》中的亚伯拉罕·林肯 | silk-road/ChatHaruhi-from-RoleLLM/Abraham Lincoln
Frank T.J. Mackey | Magnolia | 《木兰花》中的弗兰克 T.J. 麦凯 | silk-road/ChatHaruhi-from-RoleLLM/Frank T.J. Mackey
Malcolm X | Malcolm-X | 《马尔科姆X》中的马尔科姆X | silk-road/ChatHaruhi-from-RoleLLM/Malcolm X
Leonard Shelby | Memento | 《记忆碎片》中的伦纳德·谢尔比 | silk-road/ChatHaruhi-from-RoleLLM/Leonard Shelby
Harvey Milk | Milk | 《牛奶》中的哈维·牛奶 | silk-road/ChatHaruhi-from-RoleLLM/Harvey Milk
Randle McMurphy | One-Flew-Over-the-Cuckoo's-Nest | 《飞越疯人院》中的兰德尔·麦克默菲 | silk-road/ChatHaruhi-from-RoleLLM/Randle McMurphy
Jack Sparrow | Pirates-of-the-Caribbean-Dead-Man's-Chest | 《加勒比海盗》中的杰克·斯派洛船长 | silk-road/ChatHaruhi-from-RoleLLM/Jack Sparrow
John Dillinger | Public-Enemies | 《公敌》中的约翰·迪林格 | silk-road/ChatHaruhi-from-RoleLLM/John Dillinger
Lestat de Lioncourt | Queen-of-the-Damned | 《诅咒女王》中的莱斯塔特·德·莱昂科特 | silk-road/ChatHaruhi-from-RoleLLM/Lestat de Lioncourt
Tyler Hawkins | Remember-Me | 《记得我》中的泰勒·霍金斯 | silk-road/ChatHaruhi-from-RoleLLM/Tyler Hawkins
Caesar | Rise-of-the-Planet-of-the-Apes | 《猩球崛起》中的凯撒 | silk-road/ChatHaruhi-from-RoleLLM/Caesar
Jack | Room | 《房间》中的杰克 | silk-road/ChatHaruhi-from-RoleLLM/Jack
James Carter | Rush-Hour-2 | 《尖峰时刻2》中的詹姆斯·卡特 | silk-road/ChatHaruhi-from-RoleLLM/James Carter
Jigsaw | Saw | 《电锯惊魂》中的拼图杀手 | silk-road/ChatHaruhi-from-RoleLLM/Jigsaw
John Doe | Se7en | 《七宗罪》中的约翰·多 | silk-road/ChatHaruhi-from-RoleLLM/John Doe
Jackie Moon | Semi-Pro | 《半职业球员》中的杰基·月亮 | silk-road/ChatHaruhi-from-RoleLLM/Jackie Moon
Sherlock Holmes | Sherlock-Holmes | 《夏洛克·福尔摩斯》中的夏洛克·福尔摩斯 | silk-road/ChatHaruhi-from-RoleLLM/Sherlock Holmes
Shrek | Shrek | 《史莱克》中的史莱克 | silk-road/ChatHaruhi-from-RoleLLM/Shrek
Pat Solitano | Silver-Linings-Playbook | 《乌云背后的幸福线》中的帕特·索利塔诺 | silk-road/ChatHaruhi-from-RoleLLM/Pat Solitano
Karl Childers | Sling-Blade | 《刀锯》中的卡尔·柴尔德斯 | silk-road/ChatHaruhi-from-RoleLLM/Karl Childers
Peter Parker | Spider-Man | 《蜘蛛侠》中的彼得·帕克 | silk-road/ChatHaruhi-from-RoleLLM/Peter Parker
Bruno Antony | Strangers-on-a-Train | 《列车上的陌生人》中的布鲁诺·安东尼 | silk-road/ChatHaruhi-from-RoleLLM/Bruno Antony
Seth | Superbad | 《超级糟糕》中的塞思 | silk-road/ChatHaruhi-from-RoleLLM/Seth
Caden Cotard | Synecdoche,-New-York | 《纽约奇缘》中的卡登·科塔德 | silk-road/ChatHaruhi-from-RoleLLM/Caden Cotard
Travis Bickle | Taxi-Driver | 《出租车司机》中的特拉维斯·比克尔 | silk-road/ChatHaruhi-from-RoleLLM/Travis Bickle
Stanley Ipkiss | Mask,-The | 《面具》中的斯坦利·伊普基斯 | silk-road/ChatHaruhi-from-RoleLLM/Stanley Ipkiss
Lyn Cassady | Men-Who-Stare-at-Goats,-The | 《盯羊的男人》中的林恩·卡萨迪 | silk-road/ChatHaruhi-from-RoleLLM/Lyn Cassady
Michael Scott | The_Office | 《办公室》中的迈克尔·斯科特 | silk-road/ChatHaruhi-from-RoleLLM/Michael Scott
Robert Angier | Prestige,-The | 《名望》中的罗伯特·安吉尔 | silk-road/ChatHaruhi-from-RoleLLM/Robert Angier
Rachel Lang | The-Rage-Carrie-2 | 《瑞秋的愤怒:凯丽2》中的瑞秋·朗 | silk-road/ChatHaruhi-from-RoleLLM/Rachel Lang
Dr. Frank-N-Furter | Rocky-Horror-Picture-Show,-The | 《洛奇恐怖秀》中的弗兰克·N·福特医生 | silk-road/ChatHaruhi-from-RoleLLM/Dr. Frank-N-Furter
Jack Torrance | Shining,-The | 《闪灵》中的杰克·托兰斯 | silk-road/ChatHaruhi-from-RoleLLM/Jack Torrance
Tom Ripley | Talented-Mr.-Ripley,-The | 《天才雷普利》中的汤姆·雷普利 | silk-road/ChatHaruhi-from-RoleLLM/Tom Ripley
D_Artagnan | Three-Musketeers,-The | 《三剑客》中的达达尼昂 | silk-road/ChatHaruhi-from-RoleLLM/D_Artagnan
Stephen Hawking | Theory-of-Everything,-The | 《万物理论》中的斯蒂芬·霍金 | silk-road/ChatHaruhi-from-RoleLLM/Stephen Hawking
Thor | Thor-Ragnarok | 《雷神:诸神黄昏》中的雷神索尔 | silk-road/ChatHaruhi-from-RoleLLM/Thor
James Bond | Tomorrow-Never-Dies | 《明日帝国》中的詹姆斯·邦德 | silk-road/ChatHaruhi-from-RoleLLM/James Bond
Mark Renton | Trainspotting | 《迷幻列车》中的马克·伦顿 | silk-road/ChatHaruhi-from-RoleLLM/Mark Renton
Tugg Speedman | Tropic-Thunder | 《热带惊雷》中的塔格·斯皮德曼 | silk-road/ChatHaruhi-from-RoleLLM/Tugg Speedman
David Aames | Vanilla-Sky | 《香草天空》中的大卫·艾姆斯 | silk-road/ChatHaruhi-from-RoleLLM/David Aames
Rorschach | Watchmen | 《守望者》中的罗夏克 | silk-road/ChatHaruhi-from-RoleLLM/Rorschach
Jordan Belfort | Wolf-of-Wall-Street,-The | 《华尔街之狼》中的乔丹·贝尔福特 | silk-road/ChatHaruhi-from-RoleLLM/Jordan Belfort
Logan | X-Men-Origins-Wolverine | 《X战警:金刚狼》中的洛根 | silk-road/ChatHaruhi-from-RoleLLM/Logan
Judy Hoops | Zootopia | 《疯狂动物城》中的朱迪·胡普斯 | silk-road/ChatHaruhi-from-RoleLLM/Judy Hoops
Doctor Who | Doctor_Who | 《神秘博士》中的博士 | silk-road/ChatHaruhi-from-RoleLLM/Doctor Who
Blair Waldorf | Gossip_Girl | 《绯闻女孩》中的布莱尔·沃尔多夫 | silk-road/ChatHaruhi-from-RoleLLM/Blair Waldorf
Raylan Givens | Justified | 《正当防卫》中的雷兰·吉文斯 | silk-road/ChatHaruhi-from-RoleLLM/Raylan Givens
Mary Sibley | Salem | 《塞勒姆》中的玛丽·西布利 | silk-road/ChatHaruhi-from-RoleLLM/Mary Sibley
Lucifer Morningstar | Lucifer | 《路西法》中的路西法·晨星 | silk-road/ChatHaruhi-from-RoleLLM/Lucifer Morningstar
Sheldon Cooper | The_Big_Bang_Theory | 《生活大爆炸》中的谢尔顿·库珀 | silk-road/ChatHaruhi-from-RoleLLM/Sheldon Cooper
Twilight Sparkle | My_Little_Pony__Friendship_is_Magic | 《我的小马驹:友谊之魔》中的暮光星辉 | silk-road/ChatHaruhi-from-RoleLLM/Twilight Sparkle
Oliver Queen | Arrow | 《绿箭侠》中的奥利弗·皇后 | silk-road/ChatHaruhi-from-RoleLLM/Oliver Queen
Leroy Jethro Gibbs | NCIS | 《海军罪案调查处》中的利洛伊·杰斯罗·吉布斯 | silk-road/ChatHaruhi-from-RoleLLM/Leroy Jethro Gibbs
Angel | Angel | 《天使》中的天使 | silk-road/ChatHaruhi-from-RoleLLM/Angel
Klaus Mikaelson | The_Originals | 《始祖家族》中的克劳斯·米卡尔森 | silk-road/ChatHaruhi-from-RoleLLM/Klaus Mikaelson
Queen Catherine | Reign | 《王权》中的凯瑟琳女王 | silk-road/ChatHaruhi-from-RoleLLM/Queen Catherine
Dr. Hannibal Lecter | Hannibal | 《汉尼拔》中的汉尼拔·莱克特医生 | silk-road/ChatHaruhi-from-RoleLLM/Dr. Hannibal Lecter
Coach Eric Taylor | Friday_Night_Lights | 《星期五之光》中的教练埃里克·泰勒 | silk-road/ChatHaruhi-from-RoleLLM/Coach Eric Taylor
| 10,630 | [
[
-0.0254669189453125,
-0.02655029296875,
0.0013971328735351562,
0.00319671630859375,
-0.01520538330078125,
-0.007007598876953125,
0.005413055419921875,
-0.03790283203125,
0.054534912109375,
0.0143585205078125,
-0.040985107421875,
0.004520416259765625,
-0.032379150390625,
0.00775146484375,
-0.021881103515625,
0.07501220703125,
0.004337310791015625,
0.00751495361328125,
0.01091766357421875,
0.01238250732421875,
-0.0188140869140625,
0.004299163818359375,
-0.023406982421875,
-0.0194549560546875,
0.0223236083984375,
0.0305328369140625,
0.059356689453125,
0.041290283203125,
0.0450439453125,
0.01654052734375,
0.0189208984375,
0.0203857421875,
-0.0390625,
-0.01605224609375,
-0.0093841552734375,
-0.0222015380859375,
-0.03192138671875,
0.00948333740234375,
0.04742431640625,
0.035736083984375,
-0.00012767314910888672,
0.026123046875,
0.011444091796875,
0.034088134765625,
-0.035186767578125,
0.0044403076171875,
-0.0031890869140625,
0.01861572265625,
-0.0177154541015625,
-0.0231475830078125,
-0.0225372314453125,
-0.0204620361328125,
-0.017242431640625,
-0.05523681640625,
-0.015777587890625,
-0.001811981201171875,
0.12078857421875,
-0.02862548828125,
-0.054840087890625,
0.01317596435546875,
-0.0494384765625,
0.08551025390625,
-0.03497314453125,
0.0025157928466796875,
0.019805908203125,
0.0310211181640625,
-0.024932861328125,
-0.06622314453125,
-0.052703857421875,
-0.00516510009765625,
-0.03485107421875,
0.05853271484375,
-0.001956939697265625,
-0.0193328857421875,
0.0090789794921875,
0.052276611328125,
-0.042724609375,
-0.0404052734375,
-0.057891845703125,
-0.005657196044921875,
0.04522705078125,
0.01812744140625,
0.055938720703125,
-0.041900634765625,
-0.032135009765625,
-0.0009918212890625,
-0.040435791015625,
0.025634765625,
-0.0006976127624511719,
-0.019012451171875,
-0.037933349609375,
0.0210418701171875,
0.0186004638671875,
0.034912109375,
0.026397705078125,
-0.01776123046875,
0.003719329833984375,
-0.052642822265625,
-0.0166473388671875,
-0.017333984375,
0.056671142578125,
0.05133056640625,
0.01336669921875,
0.0006680488586425781,
0.01849365234375,
0.009796142578125,
-0.01367950439453125,
-0.054779052734375,
-0.02288818359375,
0.02655029296875,
-0.050384521484375,
-0.01332855224609375,
0.02886962890625,
-0.060028076171875,
-0.027374267578125,
0.0220794677734375,
0.021759033203125,
-0.0322265625,
-0.032073974609375,
-0.01367950439453125,
-0.036895751953125,
0.046142578125,
0.02337646484375,
-0.045196533203125,
0.0084075927734375,
0.02020263671875,
0.0596923828125,
0.0017442703247070312,
-0.042510986328125,
-0.0269927978515625,
0.06781005859375,
-0.04852294921875,
0.0293426513671875,
-0.0245513916015625,
-0.0302581787109375,
-0.022430419921875,
0.04833984375,
-0.0258331298828125,
-0.00553131103515625,
0.042022705078125,
0.0016641616821289062,
0.01023101806640625,
-0.0167083740234375,
-0.0012340545654296875,
-0.01268768310546875,
0.0167388916015625,
-0.055511474609375,
0.0216522216796875,
0.00341796875,
-0.06494140625,
0.0021114349365234375,
-0.01493072509765625,
-0.05511474609375,
-0.02978515625,
-0.03118896484375,
-0.01641845703125,
-0.033416748046875,
0.0083465576171875,
0.004486083984375,
-0.03460693359375,
-0.01041412353515625,
-0.001918792724609375,
-0.060821533203125,
0.0214691162109375,
-0.011505126953125,
0.09381103515625,
0.031494140625,
-0.0279541015625,
-0.0030517578125,
-0.045379638671875,
-0.017608642578125,
0.032562255859375,
-0.01044464111328125,
0.0122528076171875,
-0.0030689239501953125,
0.0123443603515625,
0.007781982421875,
0.038787841796875,
-0.0216522216796875,
-0.01413726806640625,
-0.036712646484375,
0.0362548828125,
0.08428955078125,
0.027435302734375,
0.00307464599609375,
-0.087158203125,
0.0440673828125,
0.0288238525390625,
0.0305633544921875,
-0.0135498046875,
-0.0457763671875,
-0.0980224609375,
0.0178985595703125,
0.004547119140625,
0.05810546875,
-0.035675048828125,
0.0305633544921875,
-0.0080718994140625,
-0.0692138671875,
-0.038360595703125,
-0.0159912109375,
0.01036834716796875,
-0.001491546630859375,
0.0160064697265625,
-0.032470703125,
-0.046630859375,
-0.047393798828125,
-0.025604248046875,
-0.038482666015625,
0.0014047622680664062,
0.045074462890625,
0.00017893314361572266,
-0.0193939208984375,
0.03594970703125,
-0.039215087890625,
-0.05853271484375,
-0.01291656494140625,
-0.024871826171875,
0.05401611328125,
0.040374755859375,
0.03558349609375,
-0.038665771484375,
-0.036346435546875,
0.028411865234375,
-0.049591064453125,
0.0443115234375,
-0.01910400390625,
-0.035430908203125,
0.00839996337890625,
-0.0011777877807617188,
-0.034515380859375,
0.0163726806640625,
0.030242919921875,
-0.0173492431640625,
0.046875,
-0.0272064208984375,
0.048248291015625,
-0.09295654296875,
0.004077911376953125,
-0.005954742431640625,
0.01126861572265625,
-0.04376220703125,
0.0263519287109375,
-0.025909423828125,
0.00365447998046875,
-0.0157928466796875,
0.044525146484375,
-0.035430908203125,
0.03167724609375,
0.01502227783203125,
0.0450439453125,
0.00951385498046875,
0.047088623046875,
-0.02569580078125,
0.0292205810546875,
0.03594970703125,
-0.045257568359375,
0.05072021484375,
0.0257720947265625,
-0.0274505615234375,
0.01177215576171875,
-0.0313720703125,
-0.0086822509765625,
-0.004695892333984375,
0.015655517578125,
-0.07611083984375,
-0.0223846435546875,
0.03326416015625,
-0.04290771484375,
-0.00672149658203125,
-0.01776123046875,
-0.0134429931640625,
-0.0389404296875,
-0.04327392578125,
0.0135498046875,
0.054779052734375,
-0.00872039794921875,
0.046478271484375,
0.0258636474609375,
0.01605224609375,
-0.042327880859375,
-0.044525146484375,
-0.0034351348876953125,
-0.0164947509765625,
-0.062255859375,
0.01551055908203125,
-0.011993408203125,
-0.0054779052734375,
-0.0241241455078125,
-0.026458740234375,
-0.0203857421875,
0.01163482666015625,
0.018768310546875,
0.0164031982421875,
-0.0029087066650390625,
-0.035888671875,
0.004611968994140625,
0.004367828369140625,
-0.0061492919921875,
0.023956298828125,
0.039276123046875,
-0.0037212371826171875,
-0.005413055419921875,
-0.053253173828125,
0.0223388671875,
0.0406494140625,
-0.0178375244140625,
0.0018205642700195312,
0.074462890625,
-0.021392822265625,
0.027984619140625,
-0.0022678375244140625,
-0.0201873779296875,
-0.035186767578125,
0.01282501220703125,
-0.029693603515625,
-0.0266876220703125,
0.0277099609375,
0.00251007080078125,
0.004459381103515625,
0.052093505859375,
0.0147552490234375,
-0.00814056396484375,
0.070556640625,
0.040924072265625,
-0.03070068359375,
0.034698486328125,
-0.051025390625,
0.018829345703125,
-0.0489501953125,
-0.01555633544921875,
-0.0119781494140625,
-0.035614013671875,
-0.078125,
-0.03839111328125,
0.048095703125,
0.0247650146484375,
-0.035125732421875,
0.023956298828125,
-0.031280517578125,
0.006305694580078125,
0.02618408203125,
0.021728515625,
0.0304718017578125,
-0.0061187744140625,
0.017425537109375,
0.0263519287109375,
-0.02813720703125,
-0.038330078125,
0.064208984375,
0.023101806640625,
0.057220458984375,
0.0423583984375,
0.02593994140625,
0.00750732421875,
-0.022430419921875,
-0.01178741455078125,
0.0562744140625,
-0.03118896484375,
-0.04705810546875,
-0.0262908935546875,
-0.01113128662109375,
-0.08349609375,
-0.00969696044921875,
0.01203155517578125,
-0.065673828125,
0.034149169921875,
-0.0157928466796875,
-0.04046630859375,
0.0008072853088378906,
-0.0217437744140625,
0.06329345703125,
-0.00917816162109375,
-0.02960205078125,
-0.039215087890625,
-0.059967041015625,
0.041900634765625,
0.0085906982421875,
0.0236968994140625,
-0.01398468017578125,
0.006877899169921875,
0.0687255859375,
-0.0328369140625,
0.03082275390625,
-0.0012664794921875,
-0.005168914794921875,
0.037322998046875,
0.0190887451171875,
0.05010986328125,
0.035797119140625,
-0.0006575584411621094,
0.024627685546875,
0.034912109375,
-0.03155517578125,
-0.0187225341796875,
0.0672607421875,
-0.07098388671875,
-0.06622314453125,
-0.063232421875,
-0.0199737548828125,
0.029510498046875,
0.0188446044921875,
0.0460205078125,
0.035552978515625,
0.00873565673828125,
-0.00447845458984375,
-0.00951385498046875,
-0.018890380859375,
0.040008544921875,
0.016754150390625,
-0.020233154296875,
-0.03466796875,
0.08477783203125,
0.01493072509765625,
0.0145721435546875,
0.02117919921875,
0.0232391357421875,
0.005950927734375,
-0.0007009506225585938,
-0.0465087890625,
0.035400390625,
-0.038177490234375,
0.01364898681640625,
-0.0423583984375,
-0.036102294921875,
-0.041107177734375,
-0.006137847900390625,
0.017364501953125,
-0.0238189697265625,
-0.023345947265625,
0.008026123046875,
0.05291748046875,
0.041015625,
-0.0093841552734375,
-0.01494598388671875,
-0.0499267578125,
0.01824951171875,
0.0200653076171875,
0.005313873291015625,
0.0177154541015625,
-0.042327880859375,
-0.052001953125,
0.008270263671875,
-0.04833984375,
-0.056549072265625,
0.01488494873046875,
0.027862548828125,
0.0289459228515625,
0.055511474609375,
0.0205078125,
0.0770263671875,
-0.024078369140625,
0.09967041015625,
0.0203857421875,
-0.052520751953125,
0.041412353515625,
-0.0499267578125,
-0.0225677490234375,
0.014984130859375,
0.0290069580078125,
-0.06951904296875,
-0.050079345703125,
-0.036651611328125,
-0.044586181640625,
0.08135986328125,
0.01776123046875,
0.0092926025390625,
0.0011911392211914062,
-0.0287322998046875,
-0.0035800933837890625,
0.01020050048828125,
-0.06903076171875,
-0.060760498046875,
-0.035247802734375,
0.0019330978393554688,
-0.0063323974609375,
0.00739288330078125,
-0.0160064697265625,
-0.036865234375,
0.053680419921875,
0.0284423828125,
0.0300445556640625,
0.044677734375,
0.004009246826171875,
-0.0355224609375,
0.00797271728515625,
0.0173187255859375,
0.072021484375,
-0.029144287109375,
0.01384735107421875,
0.00487518310546875,
-0.060791015625,
0.00688934326171875,
-0.00817108154296875,
-0.0110931396484375,
0.015838623046875,
0.023529052734375,
0.045440673828125,
-0.0171966552734375,
-0.06103515625,
0.046173095703125,
0.0222015380859375,
0.053436279296875,
-0.056396484375,
0.02471923828125,
-0.0189666748046875,
0.031829833984375,
0.026031494140625,
-0.0186614990234375,
0.01824951171875,
-0.0748291015625,
0.0266876220703125,
0.0005278587341308594,
-0.034637451171875,
-0.00415802001953125,
0.05718994140625,
-0.005138397216796875,
-0.0108184814453125,
0.01497650146484375,
-0.0218048095703125,
-0.0200042724609375,
0.052825927734375,
0.034698486328125,
0.0550537109375,
-0.05865478515625,
0.0235748291015625,
0.0511474609375,
0.0302276611328125,
0.0318603515625,
0.0261993408203125,
0.0207061767578125,
-0.033660888671875,
-0.01514434814453125,
-0.0272216796875,
-0.01050567626953125,
0.0267486572265625,
-0.017333984375,
0.035614013671875,
-0.052398681640625,
0.007007598876953125,
-0.0264892578125,
0.0211029052734375,
0.004425048828125,
0.005809783935546875,
-0.02655029296875,
0.044158935546875,
-0.051727294921875,
0.06988525390625,
0.035125732421875,
-0.0628662109375,
-0.06475830078125,
0.030792236328125,
-0.0158233642578125,
-0.038330078125,
0.024932861328125,
0.0029888153076171875,
0.0150604248046875,
0.018035888671875,
-0.00611114501953125,
-0.058319091796875,
0.1014404296875,
-0.002155303955078125,
-0.00136566162109375,
0.0029048919677734375,
-0.006084442138671875,
0.0261993408203125,
-0.01320648193359375,
0.051544189453125,
0.055023193359375,
0.0499267578125,
-0.0014371871948242188,
-0.0755615234375,
0.018524169921875,
-0.05682373046875,
-0.0181884765625,
-0.007511138916015625,
-0.08544921875,
0.0928955078125,
-0.0184326171875,
-0.0438232421875,
0.045379638671875,
0.047393798828125,
0.038238525390625,
0.0193023681640625,
0.048431396484375,
-0.00036597251892089844,
0.035858154296875,
-0.0109405517578125,
0.06744384765625,
-0.029449462890625,
0.01364898681640625,
0.0277862548828125,
0.00010436773300170898,
0.03717041015625,
0.007396697998046875,
-0.03839111328125,
0.050384521484375,
0.07305908203125,
-0.025665283203125,
0.033905029296875,
0.012939453125,
-0.007740020751953125,
-0.0032901763916015625,
-0.02166748046875,
-0.043670654296875,
0.015838623046875,
-0.01026153564453125,
-0.006053924560546875,
0.007595062255859375,
-0.016937255859375,
0.016510009765625,
-0.005767822265625,
-0.017913818359375,
0.042755126953125,
0.0168914794921875,
-0.032928466796875,
0.07135009765625,
0.0037746429443359375,
0.041290283203125,
-0.044403076171875,
-0.0150299072265625,
-0.0316162109375,
0.0092620849609375,
-0.019287109375,
-0.03948974609375,
-0.0210418701171875,
-0.029693603515625,
-0.03192138671875,
0.0290069580078125,
0.0257568359375,
-0.037139892578125,
-0.037628173828125,
0.028076171875,
-0.0136871337890625,
0.05377197265625,
0.04095458984375,
-0.04986572265625,
-0.0123291015625,
0.0274810791015625,
-0.01323699951171875,
0.0176239013671875,
0.028778076171875,
0.0110015869140625,
0.03662109375,
0.0279998779296875,
0.01629638671875,
0.000013768672943115234,
-0.013336181640625,
0.0330810546875,
-0.06890869140625,
-0.046630859375,
-0.042572021484375,
0.038177490234375,
-0.020538330078125,
-0.01395416259765625,
0.07916259765625,
0.0477294921875,
0.05828857421875,
-0.030792236328125,
0.05718994140625,
-0.0129241943359375,
0.0263824462890625,
-0.02838134765625,
0.08258056640625,
-0.06719970703125,
0.00321197509765625,
-0.0589599609375,
-0.034912109375,
0.0208740234375,
0.04736328125,
0.00873565673828125,
0.016815185546875,
0.04827880859375,
0.05810546875,
0.00745391845703125,
0.0004031658172607422,
0.01898193359375,
0.035888671875,
0.0250244140625,
0.09259033203125,
0.0706787109375,
-0.08392333984375,
0.05242919921875,
-0.025146484375,
-0.005893707275390625,
-0.042694091796875,
-0.033935546875,
-0.04559326171875,
-0.041961669921875,
-0.025390625,
-0.043975830078125,
-0.02569580078125,
0.057342529296875,
0.03253173828125,
-0.0479736328125,
-0.08135986328125,
0.0191497802734375,
0.046356201171875,
-0.0572509765625,
-0.0208740234375,
0.0494384765625,
0.0198822021484375,
-0.07427978515625,
0.044769287109375,
0.02947998046875,
0.009979248046875,
-0.0083465576171875,
-0.019287109375,
-0.0235748291015625,
0.02972412109375,
0.0275726318359375,
0.0173187255859375,
-0.04925537109375,
-0.01496124267578125,
-0.01157379150390625,
-0.0021228790283203125,
-0.01087188720703125,
0.01776123046875,
-0.0268096923828125,
0.01444244384765625,
0.045654296875,
-0.0115509033203125,
0.033172607421875,
-0.0239105224609375,
0.034942626953125,
-0.0201263427734375,
0.01290130615234375,
-0.00522613525390625,
0.04315185546875,
-0.02349853515625,
-0.038909912109375,
0.054718017578125,
0.03369140625,
-0.051300048828125,
-0.07342529296875,
0.01364898681640625,
-0.10723876953125,
-0.025390625,
0.08001708984375,
0.00093841552734375,
-0.026458740234375,
-0.0160369873046875,
-0.017333984375,
0.044586181640625,
-0.01085662841796875,
0.042449951171875,
0.0372314453125,
-0.006275177001953125,
-0.0162811279296875,
-0.0312347412109375,
0.04119873046875,
0.007511138916015625,
-0.042694091796875,
0.010833740234375,
0.0212249755859375,
0.00077056884765625,
0.035125732421875,
0.04400634765625,
-0.0171661376953125,
0.033843994140625,
-0.0196075439453125,
-0.0081329345703125,
0.0204315185546875,
-0.0182037353515625,
0.0150299072265625,
-0.0182037353515625,
0.0013074874877929688,
-0.029510498046875
]
] |
augtoma/usmle_step_1 | 2023-08-11T21:25:08.000Z | [
"region:us"
] | augtoma | null | null | 0 | 984 | 2023-08-11T21:24:50 | ---
configs:
- config_name: default
data_files:
- split: test
path: data/test-*
dataset_info:
features:
- name: question
dtype: string
- name: options
struct:
- name: A
dtype: string
- name: B
dtype: string
- name: C
dtype: string
- name: D
dtype: string
- name: E
dtype: string
- name: F
dtype: string
- name: G
dtype: string
- name: H
dtype: string
- name: I
dtype: string
- name: answer
dtype: string
- name: answer_idx
dtype: string
splits:
- name: test
num_bytes: 80576
num_examples: 94
download_size: 60551
dataset_size: 80576
---
# Dataset Card for "usmle_self_eval_step1"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 852 | [
[
-0.02618408203125,
-0.0249176025390625,
0.020111083984375,
0.0204315185546875,
-0.01396942138671875,
0.004314422607421875,
0.036285400390625,
0.0130462646484375,
0.039764404296875,
0.0390625,
-0.06005859375,
-0.06146240234375,
-0.0305328369140625,
-0.0028896331787109375,
-0.0249481201171875,
0.083984375,
-0.005016326904296875,
0.0171661376953125,
-0.03729248046875,
0.0016088485717773438,
-0.01763916015625,
-0.033416748046875,
-0.053955078125,
-0.03143310546875,
0.055908203125,
0.04443359375,
0.015228271484375,
0.0185546875,
0.0621337890625,
0.011322021484375,
0.025665283203125,
-0.040069580078125,
-0.0235595703125,
-0.005413055419921875,
-0.02392578125,
-0.032257080078125,
-0.0830078125,
0.0290374755859375,
0.033935546875,
0.0236663818359375,
-0.0274810791015625,
0.062225341796875,
-0.010284423828125,
0.056182861328125,
-0.030609130859375,
0.0223541259765625,
0.0048980712890625,
0.00537109375,
-0.0308990478515625,
-0.0181427001953125,
0.007152557373046875,
-0.0214080810546875,
-0.00630950927734375,
-0.0457763671875,
0.00638580322265625,
-0.008453369140625,
0.037841796875,
0.03656005859375,
-0.00159454345703125,
-0.005428314208984375,
-0.019989013671875,
0.01102447509765625,
-0.038299560546875,
0.01971435546875,
0.052276611328125,
0.028289794921875,
-0.0018987655639648438,
-0.0703125,
-0.0244903564453125,
-0.005924224853515625,
-0.01107025146484375,
0.00909423828125,
0.0038890838623046875,
0.0051422119140625,
0.031524658203125,
0.040557861328125,
-0.051361083984375,
-0.0171661376953125,
-0.049957275390625,
-0.022918701171875,
0.060943603515625,
0.01727294921875,
0.0233154296875,
-0.00540924072265625,
-0.035980224609375,
-0.0177764892578125,
-0.043121337890625,
-0.004016876220703125,
0.0173187255859375,
0.01038360595703125,
-0.054595947265625,
0.02301025390625,
0.0008368492126464844,
0.027069091796875,
0.0023174285888671875,
0.0338134765625,
0.037200927734375,
-0.029876708984375,
-0.0202484130859375,
0.0004470348358154297,
0.050811767578125,
0.0102386474609375,
0.0023345947265625,
0.0135650634765625,
-0.0179290771484375,
-0.01070404052734375,
0.0304107666015625,
-0.0899658203125,
-0.047332763671875,
0.038665771484375,
-0.04754638671875,
-0.0210723876953125,
0.028533935546875,
-0.0714111328125,
-0.024932861328125,
-0.019134521484375,
0.042572021484375,
0.0042572021484375,
-0.037078857421875,
-0.0159912109375,
-0.024383544921875,
0.020904541015625,
-0.0040740966796875,
-0.058441162109375,
0.0450439453125,
0.042388916015625,
0.03289794921875,
0.00287628173828125,
-0.04150390625,
-0.04638671875,
-0.01546478271484375,
-0.01201629638671875,
0.053070068359375,
-0.039764404296875,
-0.034820556640625,
-0.01557159423828125,
0.01544952392578125,
0.00508880615234375,
-0.01383209228515625,
0.0478515625,
-0.016448974609375,
-0.0020656585693359375,
-0.0396728515625,
-0.042694091796875,
0.00555419921875,
0.01399993896484375,
-0.056304931640625,
0.09149169921875,
0.047393798828125,
-0.0316162109375,
0.02435302734375,
-0.10546875,
-0.019561767578125,
0.0299530029296875,
-0.009368896484375,
-0.0294036865234375,
0.01250457763671875,
-0.0110015869140625,
0.053192138671875,
-0.01030731201171875,
0.0178375244140625,
-0.024810791015625,
-0.022735595703125,
-0.000904083251953125,
-0.01206207275390625,
0.06878662109375,
0.0270233154296875,
0.0051422119140625,
0.0109405517578125,
-0.0772705078125,
-0.009490966796875,
0.022796630859375,
-0.003925323486328125,
-0.02130126953125,
-0.034210205078125,
0.0218963623046875,
-0.00411224365234375,
0.0390625,
-0.031890869140625,
0.043792724609375,
0.01430511474609375,
-0.0197601318359375,
0.054718017578125,
0.00936126708984375,
0.0211639404296875,
-0.00572967529296875,
0.054901123046875,
-0.00197601318359375,
0.038665771484375,
-0.005870819091796875,
-0.0167083740234375,
-0.0308990478515625,
0.008056640625,
0.04931640625,
0.050750732421875,
-0.0294036865234375,
0.0467529296875,
0.0153656005859375,
-0.05145263671875,
-0.038482666015625,
0.0176849365234375,
0.034515380859375,
0.0186767578125,
0.037139892578125,
-0.0413818359375,
-0.04339599609375,
-0.0556640625,
0.0139007568359375,
-0.008636474609375,
-0.0117034912109375,
0.0148468017578125,
0.06927490234375,
-0.02508544921875,
0.0487060546875,
-0.047088623046875,
-0.02191162109375,
-0.00536346435546875,
-0.0017518997192382812,
0.0199432373046875,
0.0625,
0.052032470703125,
-0.042938232421875,
-0.039642333984375,
-0.042144775390625,
-0.04302978515625,
-0.021484375,
-0.006694793701171875,
-0.03778076171875,
-0.009429931640625,
0.01461029052734375,
-0.01318359375,
0.056732177734375,
0.058685302734375,
-0.06787109375,
0.0012426376342773438,
-0.01129150390625,
0.028350830078125,
-0.0921630859375,
0.0158538818359375,
0.0023593902587890625,
-0.01309967041015625,
-0.046142578125,
0.0080413818359375,
0.0160369873046875,
0.00920867919921875,
-0.005893707275390625,
0.04583740234375,
-0.023193359375,
-0.006694793701171875,
-0.003917694091796875,
-0.0107574462890625,
-0.001544952392578125,
0.01800537109375,
0.001567840576171875,
0.061798095703125,
0.0777587890625,
-0.027740478515625,
0.047393798828125,
0.03631591796875,
0.01534271240234375,
0.061981201171875,
-0.044219970703125,
0.022979736328125,
0.000690460205078125,
0.0204010009765625,
-0.04412841796875,
-0.033538818359375,
0.039215087890625,
-0.0163116455078125,
0.057159423828125,
-0.02508544921875,
-0.0241546630859375,
-0.05316162109375,
-0.038665771484375,
0.049530029296875,
0.038604736328125,
-0.062744140625,
0.0222930908203125,
0.04608154296875,
0.004749298095703125,
-0.013824462890625,
-0.0491943359375,
0.0086822509765625,
-0.0177001953125,
-0.0028400421142578125,
0.0109710693359375,
-0.036285400390625,
0.0025482177734375,
-0.0287933349609375,
0.01361083984375,
-0.0238189697265625,
-0.00292205810546875,
0.0223846435546875,
0.02435302734375,
-0.01422882080078125,
0.021881103515625,
-0.009033203125,
-0.052276611328125,
0.0276947021484375,
-0.007740020751953125,
0.0287628173828125,
-0.00565338134765625,
-0.023956298828125,
-0.037445068359375,
0.0303802490234375,
0.0048828125,
-0.0183868408203125,
0.0280303955078125,
0.0654296875,
-0.036773681640625,
-0.0172576904296875,
-0.0335693359375,
-0.013824462890625,
-0.03289794921875,
0.003566741943359375,
-0.0229339599609375,
-0.02484130859375,
0.02276611328125,
-0.0001245737075805664,
-0.0124359130859375,
0.05523681640625,
0.036529541015625,
0.00045871734619140625,
0.035858154296875,
0.03924560546875,
-0.0255889892578125,
0.0154571533203125,
-0.0305633544921875,
-0.016021728515625,
-0.06683349609375,
-0.020355224609375,
-0.0249786376953125,
-0.026031494140625,
-0.042816162109375,
-0.044342041015625,
0.0079498291015625,
0.0038394927978515625,
-0.006336212158203125,
0.046356201171875,
-0.06414794921875,
0.035064697265625,
0.04534912109375,
0.004825592041015625,
-0.00470733642578125,
-0.014739990234375,
0.01514434814453125,
0.0150146484375,
-0.046722412109375,
-0.0233154296875,
0.09979248046875,
0.040191650390625,
0.08343505859375,
-0.00548553466796875,
0.091064453125,
0.0243988037109375,
0.040618896484375,
-0.02227783203125,
0.0277099609375,
0.001422882080078125,
-0.0455322265625,
-0.0273895263671875,
-0.0150146484375,
-0.055694580078125,
-0.0292205810546875,
-0.009735107421875,
-0.0247039794921875,
0.01241302490234375,
0.0246734619140625,
-0.00478363037109375,
0.0096588134765625,
-0.04156494140625,
0.08709716796875,
-0.01666259765625,
-0.0140838623046875,
-0.010284423828125,
-0.047698974609375,
0.0037975311279296875,
0.0064239501953125,
0.00026154518127441406,
-0.0092315673828125,
-0.0053253173828125,
0.066650390625,
-0.036285400390625,
0.07281494140625,
-0.048583984375,
-0.01174163818359375,
0.028961181640625,
-0.0144500732421875,
0.0191497802734375,
0.0380859375,
0.007633209228515625,
0.02740478515625,
0.0245819091796875,
-0.038177490234375,
-0.027191162109375,
0.046905517578125,
-0.0211334228515625,
-0.0032444000244140625,
-0.03936767578125,
-0.018463134765625,
0.0023040771484375,
0.01043701171875,
0.0087890625,
0.055328369140625,
-0.04412841796875,
-0.0180206298828125,
0.040374755859375,
0.01806640625,
0.033935546875,
0.03692626953125,
-0.0272216796875,
-0.018280029296875,
0.0751953125,
0.0031871795654296875,
-0.01324462890625,
0.0175628662109375,
0.035797119140625,
-0.029144287109375,
-0.0308685302734375,
-0.04644775390625,
0.004241943359375,
-0.041168212890625,
-0.039337158203125,
-0.006988525390625,
-0.030029296875,
-0.0201263427734375,
-0.00832366943359375,
-0.0355224609375,
-0.04620361328125,
-0.04266357421875,
-0.041107177734375,
0.060943603515625,
0.072998046875,
-0.05133056640625,
0.0089263916015625,
-0.06756591796875,
0.031585693359375,
0.0093994140625,
0.07989501953125,
-0.0330810546875,
-0.0285186767578125,
-0.02032470703125,
-0.01629638671875,
-0.00298309326171875,
-0.0447998046875,
-0.01152801513671875,
0.011749267578125,
0.0555419921875,
0.0211334228515625,
-0.0057525634765625,
0.040771484375,
-0.03009033203125,
0.058685302734375,
0.011322021484375,
-0.05340576171875,
0.06671142578125,
-0.007350921630859375,
0.0192413330078125,
0.07025146484375,
0.045379638671875,
-0.0213623046875,
-0.006893157958984375,
-0.072265625,
-0.03704833984375,
0.02435302734375,
0.0150909423828125,
0.019012451171875,
0.0015439987182617188,
0.05059814453125,
0.01491546630859375,
0.00598907470703125,
-0.056427001953125,
-0.076904296875,
-0.01058197021484375,
-0.02032470703125,
0.005222320556640625,
-0.035675048828125,
-0.0189361572265625,
-0.052154541015625,
0.05657958984375,
-0.0089263916015625,
0.00970458984375,
0.0270538330078125,
0.024871826171875,
-0.01261138916015625,
0.01141357421875,
0.027862548828125,
0.05035400390625,
-0.027069091796875,
-0.003131866455078125,
0.01123046875,
-0.043243408203125,
-0.0076751708984375,
0.041717529296875,
0.007450103759765625,
-0.0201416015625,
0.034637451171875,
0.0379638671875,
-0.01020050048828125,
-0.00833892822265625,
0.03411865234375,
-0.0209197998046875,
-0.024566650390625,
-0.0323486328125,
0.0236358642578125,
-0.0055999755859375,
0.007114410400390625,
0.00980377197265625,
-0.0126953125,
0.039459228515625,
-0.02471923828125,
0.04290771484375,
0.01763916015625,
-0.046783447265625,
-0.038665771484375,
0.04302978515625,
0.03448486328125,
-0.0426025390625,
0.029754638671875,
-0.0255889892578125,
-0.0295867919921875,
0.041168212890625,
0.03790283203125,
0.06988525390625,
-0.053558349609375,
0.03497314453125,
0.058380126953125,
0.007457733154296875,
0.0200347900390625,
0.059417724609375,
-0.03118896484375,
-0.02593994140625,
0.007213592529296875,
-0.05169677734375,
-0.01450347900390625,
-0.0099029541015625,
-0.0703125,
0.0094146728515625,
-0.03521728515625,
0.01024627685546875,
-0.0217132568359375,
0.0103759765625,
-0.056610107421875,
0.025970458984375,
0.021453857421875,
0.10125732421875,
-0.052947998046875,
0.06024169921875,
0.046234130859375,
-0.0399169921875,
-0.054595947265625,
-0.01323699951171875,
0.0035839080810546875,
-0.056060791015625,
-0.003875732421875,
0.005584716796875,
0.018218994140625,
-0.001224517822265625,
-0.0638427734375,
-0.053680419921875,
0.10198974609375,
-0.01557159423828125,
-0.041961669921875,
0.037078857421875,
-0.002716064453125,
0.037384033203125,
-0.03924560546875,
0.0189208984375,
0.064208984375,
0.0540771484375,
0.0103912353515625,
-0.05291748046875,
0.01184844970703125,
-0.032470703125,
-0.01499176025390625,
0.0296630859375,
-0.044403076171875,
0.0221405029296875,
-0.0128631591796875,
0.00323486328125,
-0.002899169921875,
0.036773681640625,
-0.006725311279296875,
0.028717041015625,
0.033233642578125,
0.042572021484375,
0.0570068359375,
-0.0037975311279296875,
0.07708740234375,
-0.0088653564453125,
0.049774169921875,
0.08123779296875,
-0.004299163818359375,
0.047271728515625,
0.0411376953125,
-0.040130615234375,
0.031280517578125,
0.040374755859375,
-0.04266357421875,
0.022430419921875,
0.021484375,
-0.01506805419921875,
-0.0172119140625,
0.010345458984375,
-0.042236328125,
0.032928466796875,
0.0281982421875,
-0.034210205078125,
-0.007640838623046875,
-0.0222930908203125,
-0.0020809173583984375,
-0.0162353515625,
-0.0302276611328125,
0.061920166015625,
0.0011920928955078125,
-0.0246734619140625,
-0.00013184547424316406,
-0.030517578125,
0.01195526123046875,
-0.055511474609375,
-0.047393798828125,
-0.006748199462890625,
-0.004852294921875,
-0.03436279296875,
-0.07769775390625,
0.04022216796875,
-0.0167083740234375,
-0.004940032958984375,
-0.0118560791015625,
0.05035400390625,
-0.031463623046875,
-0.06732177734375,
0.031341552734375,
0.0223846435546875,
0.0213623046875,
0.01129913330078125,
-0.08984375,
-0.00554656982421875,
-0.004638671875,
-0.03790283203125,
0.019744873046875,
-0.0101776123046875,
0.021881103515625,
0.03851318359375,
0.042816162109375,
-0.0104217529296875,
-0.0242767333984375,
0.04156494140625,
0.063720703125,
-0.061065673828125,
-0.0219268798828125,
-0.05743408203125,
0.06951904296875,
-0.0199127197265625,
-0.03790283203125,
0.03570556640625,
0.06787109375,
0.04766845703125,
-0.00841522216796875,
0.050048828125,
-0.0293731689453125,
0.034698486328125,
-0.03570556640625,
0.0615234375,
-0.04144287109375,
0.0019969940185546875,
-0.00955963134765625,
-0.049591064453125,
-0.0350341796875,
0.05694580078125,
0.031890869140625,
0.0081939697265625,
0.0499267578125,
0.06884765625,
-0.01042938232421875,
0.004207611083984375,
0.0271759033203125,
0.0248870849609375,
0.006374359130859375,
0.0173797607421875,
0.0227203369140625,
-0.05035400390625,
-0.0029811859130859375,
-0.032958984375,
-0.0445556640625,
0.023529052734375,
-0.0718994140625,
-0.082275390625,
-0.05426025390625,
-0.03662109375,
-0.035125732421875,
-0.0226593017578125,
0.08502197265625,
0.05084228515625,
-0.08013916015625,
-0.01404571533203125,
-0.0091552734375,
0.01151275634765625,
0.0124969482421875,
-0.01023101806640625,
0.038665771484375,
-0.012420654296875,
-0.042877197265625,
0.00921630859375,
0.022064208984375,
0.0101776123046875,
-0.036865234375,
-0.00797271728515625,
-0.0087738037109375,
0.004024505615234375,
0.0156402587890625,
0.0218505859375,
-0.0254058837890625,
-0.0237579345703125,
-0.045166015625,
-0.00543975830078125,
0.0220947265625,
0.07061767578125,
-0.040283203125,
0.0257568359375,
0.01904296875,
0.013916015625,
0.0380859375,
0.009796142578125,
0.043853759765625,
-0.05047607421875,
-0.01273345947265625,
-0.00848388671875,
0.04071044921875,
0.0079803466796875,
-0.04150390625,
0.07867431640625,
0.0022068023681640625,
-0.052215576171875,
-0.02423095703125,
-0.0034313201904296875,
-0.0858154296875,
0.018463134765625,
0.061798095703125,
-0.005062103271484375,
-0.032012939453125,
0.001644134521484375,
-0.02581787109375,
0.0010242462158203125,
-0.040191650390625,
0.03521728515625,
0.037506103515625,
-0.01242828369140625,
-0.0117034912109375,
-0.020355224609375,
0.06304931640625,
-0.01837158203125,
-0.1011962890625,
0.006343841552734375,
0.028533935546875,
0.0261688232421875,
0.02056884765625,
0.0762939453125,
-0.004978179931640625,
0.0309295654296875,
0.0273284912109375,
0.02294921875,
-0.01151275634765625,
-0.033843994140625,
-0.041961669921875,
-0.01947021484375,
-0.01364898681640625,
-0.0228729248046875
]
] |
svhn | 2023-01-25T14:45:04.000Z | [
"task_categories:image-classification",
"task_categories:object-detection",
"annotations_creators:machine-generated",
"annotations_creators:expert-generated",
"language_creators:machine-generated",
"multilinguality:monolingual",
"size_categories:100K<n<1M",
"source_datasets:original",
"language:en",
"license:other",
"region:us"
] | null | SVHN is a real-world image dataset for developing machine learning and object recognition algorithms with minimal requirement on data preprocessing and formatting.
It can be seen as similar in flavor to MNIST (e.g., the images are of small cropped digits), but incorporates an order of magnitude more labeled data (over 600,000 digit images)
and comes from a significantly harder, unsolved, real world problem (recognizing digits and numbers in natural scene images). SVHN is obtained from house numbers in Google Street View images. | @article{netzer2011reading,
title={Reading digits in natural images with unsupervised feature learning},
author={Netzer, Yuval and Wang, Tao and Coates, Adam and Bissacco, Alessandro and Wu, Bo and Ng, Andrew Y},
year={2011}
} | 9 | 982 | 2022-03-02T23:29:22 | ---
annotations_creators:
- machine-generated
- expert-generated
language_creators:
- machine-generated
language:
- en
license:
- other
multilinguality:
- monolingual
size_categories:
- 100K<n<1M
source_datasets:
- original
task_categories:
- image-classification
- object-detection
task_ids: []
paperswithcode_id: svhn
pretty_name: Street View House Numbers
dataset_info:
- config_name: full_numbers
features:
- name: image
dtype: image
- name: digits
sequence:
- name: bbox
sequence: int32
length: 4
- name: label
dtype:
class_label:
names:
'0': '0'
'1': '1'
'2': '2'
'3': '3'
'4': '4'
'5': '5'
'6': '6'
'7': '7'
'8': '8'
'9': '9'
splits:
- name: train
num_bytes: 390404309
num_examples: 33402
- name: test
num_bytes: 271503052
num_examples: 13068
- name: extra
num_bytes: 1868720340
num_examples: 202353
download_size: 2636187279
dataset_size: 2530627701
- config_name: cropped_digits
features:
- name: image
dtype: image
- name: label
dtype:
class_label:
names:
'0': '0'
'1': '1'
'2': '2'
'3': '3'
'4': '4'
'5': '5'
'6': '6'
'7': '7'
'8': '8'
'9': '9'
splits:
- name: train
num_bytes: 128364360
num_examples: 73257
- name: test
num_bytes: 44464040
num_examples: 26032
- name: extra
num_bytes: 967853504
num_examples: 531131
download_size: 1575594780
dataset_size: 1140681904
---
# Dataset Card for Street View House Numbers
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** http://ufldl.stanford.edu/housenumbers
- **Repository:**
- **Paper:** [Reading Digits in Natural Images with Unsupervised Feature Learning](http://ufldl.stanford.edu/housenumbers/nips2011_housenumbers.pdf)
- **Leaderboard:** https://paperswithcode.com/sota/image-classification-on-svhn
- **Point of Contact:** streetviewhousenumbers@gmail.com
### Dataset Summary
SVHN is a real-world image dataset for developing machine learning and object recognition algorithms with minimal requirement on data preprocessing and formatting. It can be seen as similar in flavor to MNIST (e.g., the images are of small cropped digits), but incorporates an order of magnitude more labeled data (over 600,000 digit images) and comes from a significantly harder, unsolved, real world problem (recognizing digits and numbers in natural scene images). SVHN is obtained from house numbers in Google Street View images. The dataset comes in two formats:
1. Original images with character level bounding boxes.
2. MNIST-like 32-by-32 images centered around a single character (many of the images do contain some distractors at the sides).
### Supported Tasks and Leaderboards
- `object-detection`: The dataset can be used to train a model for digit detection.
- `image-classification`: The dataset can be used to train a model for Image Classification where the task is to predict a correct digit on the image. The leaderboard for this task is available at:
https://paperswithcode.com/sota/image-classification-on-svhn
### Languages
English
## Dataset Structure
### Data Instances
#### full_numbers
The original, variable-resolution, color house-number images with character level bounding boxes.
```
{
'image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=98x48 at 0x259E3F01780>,
'digits': {
'bbox': [
[36, 7, 13, 32],
[50, 7, 12, 32]
],
'label': [6, 9]
}
}
```
#### cropped_digits
Character level ground truth in an MNIST-like format. All digits have been resized to a fixed resolution of 32-by-32 pixels. The original character bounding boxes are extended in the appropriate dimension to become square windows, so that resizing them to 32-by-32 pixels does not introduce aspect ratio distortions. Nevertheless this preprocessing introduces some distracting digits to the sides of the digit of interest.
```
{
'image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=32x32 at 0x25A89494780>,
'label': 1
}
```
### Data Fields
#### full_numbers
- `image`: A `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`
- `digits`: a dictionary containing digits' bounding boxes and labels
- `bbox`: a list of bounding boxes (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format) corresponding to the digits present on the image
- `label`: a list of integers between 0 and 9 representing the digit.
#### cropped_digits
- `image`: A `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`
- `digit`: an integer between 0 and 9 representing the digit.
### Data Splits
#### full_numbers
The data is split into training, test and extra set. The training set contains 33402 images, test set 13068 and the extra set 202353 images.
#### cropped_digits
The data is split into training, test and extra set. The training set contains 73257 images, test set 26032 and the extra set 531131 images.
The extra set can be used as extra training data. The extra set was obtained in a similar manner to the training and test set, but with the increased detection threshold in order to generate this large amount of labeled data. The SVHN extra subset is thus somewhat biased toward less difficult detections, and is thus easier than SVHN train/SVHN test.
## Dataset Creation
### Curation Rationale
From the paper:
> As mentioned above, the venerable MNIST dataset has been a valuable goal post for researchers seeking to build better learning systems whose benchmark performance could be expected to translate into improved performance on realistic applications. However, computers have now reached essentially human levels of performance on this problem—a testament to progress in machine learning and computer vision. The Street View House Numbers (SVHN) digit database that we provide can be seen as similar in flavor to MNIST (e.g., the images are of small cropped characters), but the SVHN dataset incorporates an order of magnitude more labeled data and comes from a significantly harder, unsolved, real world problem. Here the gap between human performance and state of the art feature representations is significant. Going forward, we expect that this dataset may fulfill a similar role for modern feature learning algorithms: it provides a new and difficult benchmark where increased performance can be expected to translate into tangible gains on a realistic application.
### Source Data
#### Initial Data Collection and Normalization
From the paper:
> The SVHN dataset was obtained from a large number of Street View images using a combination
of automated algorithms and the Amazon Mechanical Turk (AMT) framework, which was
used to localize and transcribe the single digits. We downloaded a very large set of images from
urban areas in various countries.
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
From the paper:
> From these randomly selected images, the house-number patches were extracted using a dedicated sliding window house-numbers detector using a low threshold on the detector’s confidence score in order to get a varied, unbiased dataset of house-number signs. These low precision detections were screened and transcribed by AMT workers.
#### Who are the annotators?
The AMT workers.
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu and Andrew Y. Ng
### Licensing Information
Non-commerical use only.
### Citation Information
```
@article{netzer2011reading,
title={Reading digits in natural images with unsupervised feature learning},
author={Netzer, Yuval and Wang, Tao and Coates, Adam and Bissacco, Alessandro and Wu, Bo and Ng, Andrew Y},
year={2011}
}
```
### Contributions
Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset. | 10,132 | [
[
-0.048492431640625,
-0.02752685546875,
0.007503509521484375,
-0.0086212158203125,
-0.04486083984375,
-0.0016460418701171875,
-0.005489349365234375,
-0.044158935546875,
0.0244293212890625,
0.050323486328125,
-0.031463623046875,
-0.0650634765625,
-0.034515380859375,
0.0182037353515625,
0.004032135009765625,
0.0518798828125,
0.016204833984375,
0.004070281982421875,
-0.01316070556640625,
-0.0145263671875,
-0.0040435791015625,
-0.042144775390625,
-0.0040130615234375,
0.005008697509765625,
0.0159149169921875,
0.044189453125,
0.05633544921875,
0.09210205078125,
0.060699462890625,
0.0236053466796875,
0.00655364990234375,
0.01507568359375,
-0.0165863037109375,
-0.0195159912109375,
0.0156097412109375,
-0.0160369873046875,
-0.032257080078125,
-0.007633209228515625,
0.036773681640625,
0.040771484375,
0.00909423828125,
0.03125,
-0.01316070556640625,
0.07122802734375,
-0.0372314453125,
0.02569580078125,
-0.0367431640625,
-0.00794219970703125,
-0.032623291015625,
-0.01264190673828125,
-0.0162353515625,
-0.031707763671875,
-0.00263214111328125,
-0.04095458984375,
0.039337158203125,
-0.0025615692138671875,
0.0760498046875,
0.01421356201171875,
-0.0175018310546875,
-0.01959228515625,
-0.0239410400390625,
0.043487548828125,
-0.054901123046875,
0.018310546875,
0.05242919921875,
0.0238800048828125,
0.0007195472717285156,
-0.042755126953125,
-0.039093017578125,
-0.00862884521484375,
0.00445556640625,
0.005374908447265625,
0.010589599609375,
-0.0167999267578125,
0.057647705078125,
0.03240966796875,
-0.04364013671875,
-0.0250091552734375,
-0.053466796875,
-0.01788330078125,
0.07769775390625,
0.0200347900390625,
0.0059661865234375,
-0.0367431640625,
-0.0167236328125,
-0.032989501953125,
-0.0394287109375,
0.0218505859375,
0.031219482421875,
0.0230712890625,
-0.013458251953125,
0.02862548828125,
-0.015380859375,
0.056121826171875,
-0.006847381591796875,
-0.015777587890625,
0.0572509765625,
-0.023406982421875,
-0.0281829833984375,
0.0196685791015625,
0.05450439453125,
0.032135009765625,
0.0266876220703125,
0.0286712646484375,
0.0017004013061523438,
0.0034332275390625,
0.0181732177734375,
-0.065185546875,
-0.036376953125,
0.006320953369140625,
-0.043182373046875,
-0.0418701171875,
0.039794921875,
-0.057037353515625,
-0.0222320556640625,
-0.0270233154296875,
0.00341033935546875,
-0.0234832763671875,
-0.01104736328125,
0.0037746429443359375,
-0.01351165771484375,
0.03485107421875,
0.03216552734375,
-0.06561279296875,
0.011016845703125,
0.0307464599609375,
0.039093017578125,
0.0112457275390625,
-0.0167388916015625,
-0.0081024169921875,
-0.0232391357421875,
-0.045928955078125,
0.04071044921875,
-0.0299835205078125,
-0.040496826171875,
-0.026885986328125,
0.0223846435546875,
0.011474609375,
-0.05316162109375,
0.030914306640625,
-0.0307769775390625,
-0.0081634521484375,
-0.0289764404296875,
-0.0102386474609375,
-0.0193328857421875,
0.0166473388671875,
-0.05963134765625,
0.1015625,
0.0227203369140625,
-0.06646728515625,
0.0218505859375,
-0.02276611328125,
-0.041015625,
0.0140228271484375,
-0.006084442138671875,
-0.055938720703125,
0.00807952880859375,
0.0276031494140625,
0.0426025390625,
-0.0126190185546875,
0.0289306640625,
-0.02618408203125,
-0.04461669921875,
0.005645751953125,
-0.031097412109375,
0.08843994140625,
0.01708984375,
-0.03436279296875,
-0.01385498046875,
-0.08538818359375,
-0.0038967132568359375,
0.02642822265625,
-0.0217132568359375,
-0.02923583984375,
-0.0247650146484375,
-0.00012493133544921875,
0.0167694091796875,
0.01364898681640625,
-0.03680419921875,
0.0040435791015625,
-0.01459503173828125,
0.0131072998046875,
0.048736572265625,
-0.005054473876953125,
0.0225677490234375,
-0.0250396728515625,
0.0223388671875,
0.01535797119140625,
0.01052093505859375,
-0.043487548828125,
-0.053680419921875,
-0.056732177734375,
-0.0174102783203125,
0.037078857421875,
0.04986572265625,
-0.06463623046875,
0.06463623046875,
-0.04034423828125,
-0.045684814453125,
-0.05126953125,
-0.007366180419921875,
0.01435089111328125,
0.03448486328125,
0.020965576171875,
-0.042999267578125,
-0.053497314453125,
-0.061676025390625,
0.023193359375,
0.01374053955078125,
0.00014638900756835938,
0.04736328125,
0.05364990234375,
-0.004291534423828125,
0.061737060546875,
-0.0472412109375,
-0.00734710693359375,
0.00013744831085205078,
-0.007282257080078125,
0.023681640625,
0.035675048828125,
0.038299560546875,
-0.07977294921875,
-0.056610107421875,
-0.007625579833984375,
-0.060302734375,
0.0116729736328125,
-0.003849029541015625,
0.0009493827819824219,
0.01470947265625,
0.015533447265625,
-0.019683837890625,
0.07879638671875,
0.0187530517578125,
-0.011932373046875,
0.046142578125,
-0.014373779296875,
0.01161956787109375,
-0.09027099609375,
0.0019683837890625,
0.0272216796875,
-0.019073486328125,
-0.047821044921875,
-0.0152130126953125,
0.0157318115234375,
-0.0089569091796875,
-0.030181884765625,
0.0141448974609375,
-0.03363037109375,
-0.0296478271484375,
0.012176513671875,
-0.0192108154296875,
0.00237274169921875,
0.05914306640625,
0.0252838134765625,
0.058990478515625,
0.034881591796875,
-0.032257080078125,
0.025360107421875,
0.0112152099609375,
-0.054473876953125,
0.0294952392578125,
-0.037139892578125,
0.020172119140625,
-0.0205841064453125,
0.01537322998046875,
-0.07659912109375,
-0.0194091796875,
0.0401611328125,
-0.048004150390625,
0.0099945068359375,
-0.01364898681640625,
-0.03955078125,
-0.04364013671875,
-0.048065185546875,
0.0220794677734375,
0.038055419921875,
-0.0352783203125,
0.02508544921875,
0.03448486328125,
0.004413604736328125,
-0.0262908935546875,
-0.0304718017578125,
0.006488800048828125,
-0.01111602783203125,
-0.04656982421875,
0.02435302734375,
0.0071868896484375,
-0.02032470703125,
-0.004375457763671875,
0.01145172119140625,
-0.00896453857421875,
0.004245758056640625,
0.03460693359375,
0.042877197265625,
-0.0170135498046875,
-0.00261688232421875,
-0.0251617431640625,
-0.02313232421875,
0.00319671630859375,
0.002361297607421875,
0.035491943359375,
-0.00815582275390625,
-0.0223388671875,
-0.0294647216796875,
0.01390838623046875,
0.052642822265625,
-0.023193359375,
0.020263671875,
0.04449462890625,
-0.0360107421875,
0.014312744140625,
-0.0225982666015625,
0.00035190582275390625,
-0.03448486328125,
0.01511383056640625,
-0.048553466796875,
-0.032440185546875,
0.048004150390625,
0.00954437255859375,
-0.005138397216796875,
0.048187255859375,
0.0277252197265625,
-0.016571044921875,
0.070068359375,
0.0207977294921875,
-0.00894927978515625,
0.038543701171875,
-0.0579833984375,
0.00927734375,
-0.07611083984375,
-0.030120849609375,
-0.037078857421875,
-0.022247314453125,
-0.0450439453125,
-0.0496826171875,
0.00705718994140625,
-0.0021419525146484375,
-0.01471710205078125,
0.04840087890625,
-0.070556640625,
0.024566650390625,
0.052581787109375,
0.02862548828125,
0.00940704345703125,
0.0168914794921875,
0.0017728805541992188,
-0.03076171875,
-0.034912109375,
-0.033355712890625,
0.08251953125,
0.03515625,
0.047943115234375,
-0.0156402587890625,
0.049468994140625,
0.0217132568359375,
0.018096923828125,
-0.06231689453125,
0.043487548828125,
-0.0295867919921875,
-0.038177490234375,
-0.033203125,
-0.018280029296875,
-0.0731201171875,
0.0225830078125,
-0.0098114013671875,
-0.050628662109375,
0.058685302734375,
-0.004978179931640625,
-0.026702880859375,
0.031951904296875,
-0.041107177734375,
0.05731201171875,
-0.0276947021484375,
-0.0189971923828125,
0.0144500732421875,
-0.073974609375,
0.01824951171875,
0.003787994384765625,
0.01837158203125,
-0.01806640625,
0.035980224609375,
0.05718994140625,
-0.049346923828125,
0.0706787109375,
-0.0250091552734375,
0.0081024169921875,
0.033416748046875,
-0.022918701171875,
0.042236328125,
-0.01297760009765625,
-0.0032405853271484375,
0.040802001953125,
-0.003536224365234375,
-0.0199127197265625,
-0.030303955078125,
0.0258941650390625,
-0.05255126953125,
-0.0222320556640625,
-0.03802490234375,
-0.0224151611328125,
0.0211944580078125,
0.00504302978515625,
0.04833984375,
0.058380126953125,
0.00830078125,
0.0298919677734375,
0.059783935546875,
-0.005260467529296875,
0.019134521484375,
0.005298614501953125,
0.000888824462890625,
-0.054962158203125,
0.08929443359375,
0.034454345703125,
-0.015838623046875,
0.0210723876953125,
0.01010894775390625,
-0.028533935546875,
-0.024200439453125,
-0.0478515625,
-0.0011148452758789062,
-0.05035400390625,
-0.01739501953125,
-0.029266357421875,
-0.03131103515625,
-0.043914794921875,
-0.016632080078125,
-0.00800323486328125,
-0.0201873779296875,
-0.03564453125,
-0.004886627197265625,
0.03045654296875,
0.033935546875,
-0.00928497314453125,
0.01224517822265625,
-0.0572509765625,
0.0318603515625,
0.0280609130859375,
0.01152801513671875,
0.0083465576171875,
-0.0294647216796875,
-0.032012939453125,
0.0140228271484375,
-0.004787445068359375,
-0.053802490234375,
0.0325927734375,
-0.01329803466796875,
0.0250396728515625,
0.03143310546875,
0.0295867919921875,
0.058990478515625,
-0.018463134765625,
0.052398681640625,
0.00445556640625,
-0.0538330078125,
0.0400390625,
-0.029022216796875,
0.0276336669921875,
0.056549072265625,
0.0136871337890625,
-0.034881591796875,
0.01465606689453125,
-0.07525634765625,
-0.07147216796875,
0.0611572265625,
0.0036487579345703125,
-0.001697540283203125,
0.00777435302734375,
0.01541900634765625,
-0.00547027587890625,
0.0225067138671875,
-0.033538818359375,
-0.03155517578125,
-0.0380859375,
-0.0271759033203125,
0.0013151168823242188,
-0.02227783203125,
0.004222869873046875,
-0.06011962890625,
0.03582763671875,
-0.00911712646484375,
0.0293121337890625,
0.0274658203125,
-0.0168609619140625,
0.0051422119140625,
-0.0064239501953125,
0.054046630859375,
0.042449951171875,
-0.03057861328125,
0.01145172119140625,
0.01546478271484375,
-0.07171630859375,
0.004016876220703125,
0.0009608268737792969,
-0.0183258056640625,
0.0088043212890625,
0.0390625,
0.07525634765625,
0.0016984939575195312,
-0.0244293212890625,
0.037353515625,
0.0049591064453125,
-0.050445556640625,
-0.03399658203125,
0.0038967132568359375,
-0.03118896484375,
-0.0014171600341796875,
0.0472412109375,
0.0191192626953125,
0.01157379150390625,
-0.0311431884765625,
0.031463623046875,
0.00440216064453125,
-0.0418701171875,
-0.0213623046875,
0.029052734375,
0.010498046875,
-0.05548095703125,
0.0672607421875,
-0.0259246826171875,
-0.059112548828125,
0.0936279296875,
0.02484130859375,
0.061370849609375,
-0.0024776458740234375,
0.0222320556640625,
0.04681396484375,
0.024322509765625,
0.0012636184692382812,
0.03607177734375,
-0.0298919677734375,
-0.06903076171875,
-0.004779815673828125,
-0.0279083251953125,
-0.0166778564453125,
0.01282501220703125,
-0.0653076171875,
0.0181732177734375,
-0.053070068359375,
-0.01145172119140625,
0.00722503662109375,
0.02545166015625,
-0.06231689453125,
0.0294952392578125,
0.01025390625,
0.092529296875,
-0.06512451171875,
0.07293701171875,
0.05902099609375,
-0.0078277587890625,
-0.0628662109375,
-0.0002830028533935547,
0.0006909370422363281,
-0.072021484375,
0.04534912109375,
0.039947509765625,
0.01494598388671875,
0.0129241943359375,
-0.05657958984375,
-0.047210693359375,
0.08746337890625,
-0.00262451171875,
-0.042694091796875,
0.0171966552734375,
0.008636474609375,
0.03314208984375,
-0.03717041015625,
-0.0036869049072265625,
0.047393798828125,
0.04388427734375,
0.0347900390625,
-0.03955078125,
0.00742340087890625,
-0.036376953125,
0.0116729736328125,
0.0222625732421875,
-0.035064697265625,
0.046173095703125,
-0.0247650146484375,
-0.0031108856201171875,
-0.00814056396484375,
0.0198211669921875,
0.028228759765625,
0.034515380859375,
0.041595458984375,
0.0672607421875,
0.05462646484375,
-0.0193023681640625,
0.06060791015625,
-0.0174560546875,
0.03167724609375,
0.072021484375,
-0.005138397216796875,
0.057342529296875,
0.0190887451171875,
-0.03826904296875,
0.0178070068359375,
0.078369140625,
-0.04071044921875,
0.059417724609375,
0.0278778076171875,
0.00670623779296875,
-0.02081298828125,
0.0007181167602539062,
-0.030609130859375,
0.048187255859375,
0.030303955078125,
-0.02557373046875,
-0.00751495361328125,
0.00200653076171875,
-0.0138702392578125,
-0.01580810546875,
-0.0174102783203125,
0.057647705078125,
-0.00628662109375,
-0.0216064453125,
0.0321044921875,
-0.00229644775390625,
0.04656982421875,
-0.0274200439453125,
-0.021392822265625,
-0.003726959228515625,
-0.0014772415161132812,
-0.0247650146484375,
-0.06390380859375,
0.0273284912109375,
-0.0199737548828125,
-0.0171661376953125,
-0.00766754150390625,
0.068603515625,
-0.0210723876953125,
-0.06036376953125,
-0.00934600830078125,
-0.0025691986083984375,
0.035858154296875,
-0.007049560546875,
-0.060089111328125,
0.01800537109375,
0.0257720947265625,
-0.0096435546875,
0.0084991455078125,
0.034332275390625,
-0.0175933837890625,
0.0176544189453125,
0.0748291015625,
0.004512786865234375,
-0.007534027099609375,
-0.00444793701171875,
0.066162109375,
-0.0660400390625,
-0.03875732421875,
-0.06219482421875,
0.0577392578125,
-0.0302276611328125,
-0.0279083251953125,
0.054962158203125,
0.06427001953125,
0.068359375,
-0.0012235641479492188,
0.059600830078125,
-0.0101470947265625,
0.0258026123046875,
-0.0170440673828125,
0.03472900390625,
-0.0251312255859375,
0.022735595703125,
-0.0191802978515625,
-0.06353759765625,
-0.035736083984375,
0.07958984375,
-0.029052734375,
-0.00838470458984375,
0.017364501953125,
0.06103515625,
0.006710052490234375,
0.0016117095947265625,
0.0279693603515625,
-0.01861572265625,
0.00131988525390625,
0.033599853515625,
0.047576904296875,
-0.0654296875,
0.0242462158203125,
-0.0472412109375,
-0.0131072998046875,
-0.04486083984375,
-0.047882080078125,
-0.06768798828125,
-0.0557861328125,
-0.0248870849609375,
-0.0218658447265625,
-0.0081024169921875,
0.06353759765625,
0.07110595703125,
-0.06658935546875,
-0.009796142578125,
0.0162200927734375,
0.0277862548828125,
-0.0118408203125,
-0.0188446044921875,
0.04833984375,
0.033447265625,
-0.03887939453125,
-0.005374908447265625,
0.0278472900390625,
0.03192138671875,
-0.0131072998046875,
-0.00811767578125,
0.0015811920166015625,
-0.026885986328125,
0.031097412109375,
0.0262451171875,
-0.036865234375,
-0.00696563720703125,
0.0121002197265625,
-0.023468017578125,
0.041473388671875,
0.060028076171875,
-0.06390380859375,
0.04254150390625,
0.0501708984375,
0.033599853515625,
0.051849365234375,
0.02471923828125,
0.00440216064453125,
-0.04608154296875,
0.0126190185546875,
0.0003879070281982422,
0.01605224609375,
0.03375244140625,
-0.055450439453125,
0.041259765625,
0.034881591796875,
-0.0230560302734375,
-0.055145263671875,
-0.00868988037109375,
-0.06817626953125,
-0.01398468017578125,
0.06475830078125,
-0.00276947021484375,
-0.0411376953125,
-0.035247802734375,
-0.0243682861328125,
-0.0003287792205810547,
-0.043121337890625,
0.04547119140625,
0.044952392578125,
0.00763702392578125,
-0.03424072265625,
-0.035247802734375,
0.03814697265625,
-0.0306396484375,
-0.05401611328125,
-0.001922607421875,
0.0283355712890625,
0.00989532470703125,
0.036529541015625,
0.07208251953125,
-0.014434814453125,
0.0205841064453125,
0.01491546630859375,
0.008941650390625,
-0.0253753662109375,
-0.035064697265625,
-0.033203125,
-0.0037479400634765625,
-0.0204010009765625,
-0.047210693359375
]
] |
BeIR/dbpedia-entity-qrels | 2022-10-23T06:07:36.000Z | [
"task_categories:text-retrieval",
"task_ids:entity-linking-retrieval",
"task_ids:fact-checking-retrieval",
"multilinguality:monolingual",
"language:en",
"license:cc-by-sa-4.0",
"region:us"
] | BeIR | null | null | 0 | 980 | 2022-06-05T17:27:22 | ---
annotations_creators: []
language_creators: []
language:
- en
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
paperswithcode_id: beir
pretty_name: BEIR Benchmark
size_categories:
msmarco:
- 1M<n<10M
trec-covid:
- 100k<n<1M
nfcorpus:
- 1K<n<10K
nq:
- 1M<n<10M
hotpotqa:
- 1M<n<10M
fiqa:
- 10K<n<100K
arguana:
- 1K<n<10K
touche-2020:
- 100K<n<1M
cqadupstack:
- 100K<n<1M
quora:
- 100K<n<1M
dbpedia:
- 1M<n<10M
scidocs:
- 10K<n<100K
fever:
- 1M<n<10M
climate-fever:
- 1M<n<10M
scifact:
- 1K<n<10K
source_datasets: []
task_categories:
- text-retrieval
- zero-shot-retrieval
- information-retrieval
- zero-shot-information-retrieval
task_ids:
- passage-retrieval
- entity-linking-retrieval
- fact-checking-retrieval
- tweet-retrieval
- citation-prediction-retrieval
- duplication-question-retrieval
- argument-retrieval
- news-retrieval
- biomedical-information-retrieval
- question-answering-retrieval
---
# Dataset Card for BEIR Benchmark
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://github.com/UKPLab/beir
- **Repository:** https://github.com/UKPLab/beir
- **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
- **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
- **Point of Contact:** nandan.thakur@uwaterloo.ca
### Dataset Summary
BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks:
- Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
- Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
- Bio-Medical IR: [TREC-COVID](https://ir.nist.gov/covidSubmit/index.html), [BioASQ](http://bioasq.org), [NFCorpus](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/)
- News Retrieval: [TREC-NEWS](https://trec.nist.gov/data/news2019.html), [Robust04](https://trec.nist.gov/data/robust/04.guidelines.html)
- Argument Retrieval: [Touche-2020](https://webis.de/events/touche-20/shared-task-1.html), [ArguAna](tp://argumentation.bplaced.net/arguana/data)
- Duplicate Question Retrieval: [Quora](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs), [CqaDupstack](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/)
- Citation-Prediction: [SCIDOCS](https://allenai.org/data/scidocs)
- Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
- Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
All these datasets have been preprocessed and can be used for your experiments.
```python
```
### Supported Tasks and Leaderboards
The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia.
The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/).
### Languages
All tasks are in English (`en`).
## Dataset Structure
All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format:
- `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}`
- `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}`
- `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1`
### Data Instances
A high level example of any beir dataset:
```python
corpus = {
"doc1" : {
"title": "Albert Einstein",
"text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
its influence on the philosophy of science. He is best known to the general public for his mass–energy \
equivalence formula E = mc2, which has been dubbed 'the world's most famous equation'. He received the 1921 \
Nobel Prize in Physics 'for his services to theoretical physics, and especially for his discovery of the law \
of the photoelectric effect', a pivotal step in the development of quantum theory."
},
"doc2" : {
"title": "", # Keep title an empty string if not present
"text": "Wheat beer is a top-fermented beer which is brewed with a large proportion of wheat relative to the amount of \
malted barley. The two main varieties are German Weißbier and Belgian witbier; other types include Lambic (made\
with wild yeast), Berliner Weisse (a cloudy, sour beer), and Gose (a sour, salty beer)."
},
}
queries = {
"q1" : "Who developed the mass-energy equivalence formula?",
"q2" : "Which beer is brewed with a large proportion of wheat?"
}
qrels = {
"q1" : {"doc1": 1},
"q2" : {"doc2": 1},
}
```
### Data Fields
Examples from all configurations have the following features:
### Corpus
- `corpus`: a `dict` feature representing the document title and passage text, made up of:
- `_id`: a `string` feature representing the unique document id
- `title`: a `string` feature, denoting the title of the document.
- `text`: a `string` feature, denoting the text of the document.
### Queries
- `queries`: a `dict` feature representing the query, made up of:
- `_id`: a `string` feature representing the unique query id
- `text`: a `string` feature, denoting the text of the query.
### Qrels
- `qrels`: a `dict` feature representing the query document relevance judgements, made up of:
- `_id`: a `string` feature representing the query id
- `_id`: a `string` feature, denoting the document id.
- `score`: a `int32` feature, denoting the relevance judgement between query and document.
### Data Splits
| Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
| -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:|
| MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` |
| TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` |
| NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` |
| BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
| NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` |
| HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` |
| FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` |
| Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
| TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
| ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` |
| Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` |
| CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` |
| Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` |
| DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` |
| SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` |
| FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` |
| Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` |
| SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` |
| Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
## Dataset Creation
### Curation Rationale
[Needs More Information]
### Source Data
#### Initial Data Collection and Normalization
[Needs More Information]
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
[Needs More Information]
#### Who are the annotators?
[Needs More Information]
### Personal and Sensitive Information
[Needs More Information]
## Considerations for Using the Data
### Social Impact of Dataset
[Needs More Information]
### Discussion of Biases
[Needs More Information]
### Other Known Limitations
[Needs More Information]
## Additional Information
### Dataset Curators
[Needs More Information]
### Licensing Information
[Needs More Information]
### Citation Information
Cite as:
```
@inproceedings{
thakur2021beir,
title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych},
booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
year={2021},
url={https://openreview.net/forum?id=wCu6T5xFjeJ}
}
```
### Contributions
Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset. | 13,988 | [
[
-0.039642333984375,
-0.03985595703125,
0.0109710693359375,
0.0036602020263671875,
0.0042266845703125,
0.00008726119995117188,
-0.0081939697265625,
-0.0188751220703125,
0.021697998046875,
0.00597381591796875,
-0.034332275390625,
-0.0545654296875,
-0.0263824462890625,
0.01541900634765625,
-0.022796630859375,
0.07403564453125,
0.0010614395141601562,
0.004459381103515625,
-0.0185394287109375,
-0.02777099609375,
-0.006092071533203125,
-0.03399658203125,
-0.038330078125,
-0.022064208984375,
0.034576416015625,
0.030120849609375,
0.03216552734375,
0.037017822265625,
0.06512451171875,
0.0196533203125,
-0.01287841796875,
0.01464080810546875,
-0.03204345703125,
-0.0086822509765625,
-0.0189971923828125,
-0.0254669189453125,
-0.025634765625,
-0.00321197509765625,
0.053375244140625,
0.036834716796875,
-0.00373077392578125,
0.0288238525390625,
0.005950927734375,
0.058013916015625,
-0.033782958984375,
0.00879669189453125,
-0.040679931640625,
-0.007904052734375,
-0.027618408203125,
-0.009124755859375,
-0.00628662109375,
-0.01433563232421875,
-0.0025424957275390625,
-0.049591064453125,
0.033447265625,
0.0185089111328125,
0.09039306640625,
0.0113677978515625,
-0.02587890625,
-0.01453399658203125,
-0.032501220703125,
0.064453125,
-0.049774169921875,
0.03662109375,
0.038726806640625,
0.0190582275390625,
-0.01071929931640625,
-0.062347412109375,
-0.04241943359375,
-0.007137298583984375,
-0.027679443359375,
0.034912109375,
-0.01197052001953125,
-0.0263824462890625,
0.026947021484375,
0.0316162109375,
-0.0655517578125,
-0.01200103759765625,
-0.036468505859375,
-0.01514434814453125,
0.0584716796875,
0.0227813720703125,
0.002437591552734375,
-0.0306549072265625,
-0.02392578125,
-0.032928466796875,
-0.031219482421875,
0.020477294921875,
0.01561737060546875,
0.0218353271484375,
-0.025115966796875,
0.0304412841796875,
-0.034332275390625,
0.03765869140625,
0.006542205810546875,
-0.00783538818359375,
0.049072265625,
-0.061920166015625,
-0.00380706787109375,
-0.00878143310546875,
0.0770263671875,
0.0309600830078125,
-0.0303192138671875,
-0.004314422607421875,
-0.00433349609375,
-0.0203704833984375,
0.0004706382751464844,
-0.0648193359375,
-0.0115814208984375,
0.044830322265625,
-0.033782958984375,
-0.0015478134155273438,
0.02337646484375,
-0.07415771484375,
-0.00548553466796875,
0.000675201416015625,
0.0300445556640625,
-0.0396728515625,
-0.0120849609375,
0.001857757568359375,
-0.04345703125,
0.0261688232421875,
-0.0006074905395507812,
-0.04742431640625,
0.0239715576171875,
0.03399658203125,
0.061004638671875,
-0.00315093994140625,
-0.0199432373046875,
-0.0253143310546875,
0.0109710693359375,
-0.01088714599609375,
0.04986572265625,
-0.024200439453125,
-0.030792236328125,
-0.0107574462890625,
0.0115203857421875,
-0.0025691986083984375,
-0.025604248046875,
0.07049560546875,
-0.02960205078125,
0.03411865234375,
-0.059906005859375,
-0.031280517578125,
-0.008209228515625,
0.0259246826171875,
-0.052764892578125,
0.09661865234375,
0.0201416015625,
-0.08331298828125,
0.0221099853515625,
-0.06890869140625,
-0.032745361328125,
0.0007481575012207031,
-0.00858306884765625,
-0.034637451171875,
-0.0269012451171875,
0.0173187255859375,
0.03216552734375,
-0.04730224609375,
0.0097503662109375,
-0.0121307373046875,
-0.0164642333984375,
0.0137786865234375,
0.0025157928466796875,
0.07513427734375,
0.029449462890625,
-0.026275634765625,
-0.01233673095703125,
-0.0657958984375,
0.0014276504516601562,
0.023834228515625,
-0.0296783447265625,
-0.01287841796875,
-0.0032901763916015625,
0.014312744140625,
0.00890350341796875,
0.02227783203125,
-0.03936767578125,
0.0003254413604736328,
-0.0230560302734375,
0.03778076171875,
0.020263671875,
0.010955810546875,
0.0179290771484375,
-0.0533447265625,
0.020111083984375,
0.01020050048828125,
0.0260467529296875,
0.005207061767578125,
-0.03350830078125,
-0.038177490234375,
-0.022003173828125,
0.0266571044921875,
0.048492431640625,
-0.041290283203125,
0.0465087890625,
-0.03900146484375,
-0.07025146484375,
-0.043121337890625,
0.00550079345703125,
0.033843994140625,
0.057647705078125,
0.04644775390625,
-0.006504058837890625,
-0.039398193359375,
-0.0694580078125,
-0.01378631591796875,
-0.0163116455078125,
0.008575439453125,
0.03619384765625,
0.06671142578125,
-0.008880615234375,
0.055450439453125,
-0.04473876953125,
-0.0218353271484375,
-0.0081634521484375,
0.0036754608154296875,
0.0380859375,
0.04742431640625,
0.04937744140625,
-0.08599853515625,
-0.035614013671875,
-0.0025997161865234375,
-0.05889892578125,
0.0005497932434082031,
0.005008697509765625,
-0.0146026611328125,
0.01436614990234375,
0.033447265625,
-0.0445556640625,
0.02471923828125,
0.00980377197265625,
-0.02001953125,
0.0288848876953125,
-0.01013946533203125,
0.041259765625,
-0.09332275390625,
0.044647216796875,
0.0109100341796875,
0.0110015869140625,
-0.040740966796875,
0.005462646484375,
0.00934600830078125,
0.01548004150390625,
-0.03289794921875,
0.051849365234375,
-0.03228759765625,
0.00579071044921875,
0.0240936279296875,
0.002750396728515625,
0.0167236328125,
0.02471923828125,
-0.01494598388671875,
0.0584716796875,
0.036834716796875,
-0.049102783203125,
0.0243682861328125,
0.032379150390625,
-0.024017333984375,
0.0277862548828125,
-0.0521240234375,
-0.00844573974609375,
-0.007259368896484375,
0.0190887451171875,
-0.07244873046875,
-0.0210723876953125,
0.017669677734375,
-0.0491943359375,
0.0169525146484375,
-0.01045989990234375,
-0.0556640625,
-0.047119140625,
-0.040618896484375,
0.01515960693359375,
0.0372314453125,
-0.026397705078125,
0.036834716796875,
0.026214599609375,
0.009307861328125,
-0.059326171875,
-0.054779052734375,
-0.0139923095703125,
-0.01971435546875,
-0.053192138671875,
0.05059814453125,
-0.0226287841796875,
-0.020721435546875,
0.0137176513671875,
-0.005084991455078125,
-0.00461578369140625,
0.00577545166015625,
0.018402099609375,
0.0217437744140625,
-0.007740020751953125,
0.006542205810546875,
-0.01108551025390625,
0.0134735107421875,
-0.009002685546875,
0.005245208740234375,
0.0433349609375,
-0.0277252197265625,
-0.009765625,
-0.027008056640625,
0.023040771484375,
0.041961669921875,
-0.0254974365234375,
0.0533447265625,
0.06365966796875,
-0.02667236328125,
0.01401519775390625,
-0.041046142578125,
-0.01100921630859375,
-0.03369140625,
0.0181121826171875,
-0.0296173095703125,
-0.045867919921875,
0.055908203125,
0.0110321044921875,
0.01203155517578125,
0.072021484375,
0.034912109375,
-0.01447296142578125,
0.05596923828125,
0.01458740234375,
-0.0052642822265625,
0.034820556640625,
-0.050994873046875,
-0.0037517547607421875,
-0.06256103515625,
-0.038116455078125,
-0.06878662109375,
-0.01528167724609375,
-0.0521240234375,
-0.0290679931640625,
0.035186767578125,
0.01233673095703125,
-0.034149169921875,
0.02899169921875,
-0.051788330078125,
0.01152801513671875,
0.055419921875,
0.00738525390625,
-0.0020465850830078125,
0.0002498626708984375,
-0.0200347900390625,
0.012725830078125,
-0.060760498046875,
-0.0208282470703125,
0.09173583984375,
0.0048828125,
0.037750244140625,
0.01271820068359375,
0.06011962890625,
0.0219573974609375,
0.0007829666137695312,
-0.0249481201171875,
0.0419921875,
-0.01226806640625,
-0.07568359375,
-0.017974853515625,
-0.041046142578125,
-0.08673095703125,
0.009002685546875,
-0.031341552734375,
-0.05267333984375,
0.0250244140625,
0.0029850006103515625,
-0.021392822265625,
0.018463134765625,
-0.057464599609375,
0.059783935546875,
-0.0253753662109375,
-0.0540771484375,
-0.00501251220703125,
-0.06365966796875,
0.01390838623046875,
0.0019521713256835938,
0.0259857177734375,
-0.0022430419921875,
-0.004619598388671875,
0.079345703125,
-0.03216552734375,
0.031005859375,
-0.01233673095703125,
0.03424072265625,
0.0303955078125,
-0.0264434814453125,
0.03863525390625,
0.007740020751953125,
-0.03717041015625,
0.0267791748046875,
0.03338623046875,
-0.044525146484375,
-0.0242767333984375,
0.054107666015625,
-0.0582275390625,
-0.0333251953125,
-0.05181884765625,
-0.035736083984375,
-0.00275421142578125,
0.025726318359375,
0.03778076171875,
0.033294677734375,
-0.021148681640625,
0.0284271240234375,
0.042327880859375,
-0.0252227783203125,
0.027435302734375,
0.04180908203125,
-0.0028839111328125,
-0.045745849609375,
0.058135986328125,
0.0215606689453125,
-0.0106353759765625,
0.05133056640625,
0.0198822021484375,
-0.0343017578125,
-0.04473876953125,
-0.02178955078125,
0.020050048828125,
-0.041839599609375,
-0.033294677734375,
-0.056243896484375,
-0.02044677734375,
-0.055419921875,
0.00061798095703125,
-0.01119232177734375,
-0.019256591796875,
-0.0279083251953125,
-0.00643157958984375,
0.04632568359375,
0.025146484375,
-0.030181884765625,
0.0097808837890625,
-0.06134033203125,
0.02862548828125,
-0.00550079345703125,
0.01555633544921875,
-0.015777587890625,
-0.0340576171875,
-0.02911376953125,
0.0105438232421875,
-0.025177001953125,
-0.04766845703125,
0.0293426513671875,
0.0147247314453125,
0.05889892578125,
0.017364501953125,
0.0155029296875,
0.050689697265625,
-0.01049041748046875,
0.07879638671875,
0.01451873779296875,
-0.042266845703125,
0.0462646484375,
-0.02911376953125,
0.0181121826171875,
0.0633544921875,
0.051116943359375,
-0.029876708984375,
-0.01105499267578125,
-0.057861328125,
-0.07659912109375,
0.049896240234375,
0.0271148681640625,
-0.01708984375,
-0.0039520263671875,
0.01959228515625,
0.004329681396484375,
0.0080413818359375,
-0.0292816162109375,
-0.05133056640625,
-0.026275634765625,
-0.020111083984375,
-0.005893707275390625,
0.001865386962890625,
-0.0281982421875,
-0.04229736328125,
0.0697021484375,
0.00836181640625,
0.031890869140625,
0.046600341796875,
-0.0017557144165039062,
0.003509521484375,
0.021942138671875,
0.0308380126953125,
0.047637939453125,
-0.048736572265625,
-0.0012388229370117188,
0.0115966796875,
-0.0428466796875,
-0.01494598388671875,
0.037841796875,
-0.01470184326171875,
0.003452301025390625,
0.0246124267578125,
0.0352783203125,
-0.003978729248046875,
-0.050262451171875,
0.030120849609375,
-0.01082611083984375,
-0.036468505859375,
-0.0240020751953125,
0.0101470947265625,
0.0119476318359375,
0.0202789306640625,
0.045196533203125,
-0.006855010986328125,
0.017974853515625,
-0.045989990234375,
0.021240234375,
0.03167724609375,
-0.007266998291015625,
-0.0174713134765625,
0.053985595703125,
-0.0011997222900390625,
-0.00844573974609375,
0.035797119140625,
-0.0293426513671875,
-0.035369873046875,
0.055633544921875,
0.0194854736328125,
0.03668212890625,
0.002300262451171875,
0.01224517822265625,
0.058807373046875,
0.0227813720703125,
-0.01153564453125,
0.04351806640625,
0.00659942626953125,
-0.043792724609375,
0.0084228515625,
-0.046112060546875,
-0.0211639404296875,
0.019134521484375,
-0.054107666015625,
0.01690673828125,
-0.0271759033203125,
-0.027679443359375,
0.02667236328125,
0.0408935546875,
-0.08013916015625,
0.0178680419921875,
-0.01369476318359375,
0.080078125,
-0.050750732421875,
0.049591064453125,
0.062103271484375,
-0.0538330078125,
-0.0570068359375,
-0.012176513671875,
-0.00420379638671875,
-0.043182373046875,
0.040740966796875,
-0.00470733642578125,
0.0165557861328125,
-0.00658416748046875,
-0.04522705078125,
-0.076416015625,
0.10992431640625,
0.006626129150390625,
-0.038116455078125,
0.016143798828125,
0.0078277587890625,
0.048004150390625,
-0.01071929931640625,
0.033294677734375,
0.03607177734375,
0.05145263671875,
0.007610321044921875,
-0.05712890625,
0.0116424560546875,
-0.041229248046875,
-0.0277862548828125,
0.01458740234375,
-0.0821533203125,
0.060577392578125,
0.0011758804321289062,
-0.0113372802734375,
-0.008331298828125,
0.042327880859375,
0.015838623046875,
0.056915283203125,
0.0171661376953125,
0.0657958984375,
0.07000732421875,
-0.014556884765625,
0.08319091796875,
-0.034637451171875,
0.035980224609375,
0.0670166015625,
-0.017974853515625,
0.060882568359375,
0.0268402099609375,
-0.0312347412109375,
0.03033447265625,
0.053009033203125,
-0.028167724609375,
0.047515869140625,
0.005527496337890625,
0.001312255859375,
0.0012607574462890625,
-0.0106658935546875,
-0.051666259765625,
0.0289459228515625,
0.02734375,
-0.01611328125,
-0.00768280029296875,
-0.01800537109375,
0.004817962646484375,
-0.00933837890625,
-0.01708984375,
0.0472412109375,
-0.0124664306640625,
-0.0419921875,
0.058563232421875,
-0.001628875732421875,
0.050628662109375,
-0.05450439453125,
0.01422882080078125,
-0.0303192138671875,
-0.001461029052734375,
-0.03076171875,
-0.06256103515625,
0.0203704833984375,
0.0023136138916015625,
-0.0293731689453125,
0.0012941360473632812,
0.045684814453125,
-0.01036834716796875,
-0.0428466796875,
0.0166015625,
0.04541015625,
0.027374267578125,
0.0120391845703125,
-0.0731201171875,
0.00212860107421875,
-0.0013256072998046875,
-0.026275634765625,
0.0260467529296875,
0.028228759765625,
0.00736236572265625,
0.043182373046875,
0.05841064453125,
-0.0011510848999023438,
0.002651214599609375,
-0.0136260986328125,
0.06756591796875,
-0.0697021484375,
-0.021820068359375,
-0.043121337890625,
0.031341552734375,
-0.0265655517578125,
-0.03363037109375,
0.061920166015625,
0.084716796875,
0.06866455078125,
0.01021575927734375,
0.06591796875,
-0.037567138671875,
0.046905517578125,
-0.0238189697265625,
0.0633544921875,
-0.06982421875,
0.005779266357421875,
-0.0092926025390625,
-0.038299560546875,
-0.0125885009765625,
0.023223876953125,
-0.0208892822265625,
0.004703521728515625,
0.0545654296875,
0.076904296875,
0.0023365020751953125,
-0.0108642578125,
0.004299163818359375,
0.020538330078125,
0.019317626953125,
0.030792236328125,
0.035400390625,
-0.061004638671875,
0.049957275390625,
-0.0330810546875,
0.000017881393432617188,
-0.0294952392578125,
-0.049560546875,
-0.05462646484375,
-0.0728759765625,
-0.030670166015625,
-0.042755126953125,
0.009918212890625,
0.07489013671875,
0.051971435546875,
-0.06878662109375,
-0.0074462890625,
0.007419586181640625,
0.01345062255859375,
-0.0281219482421875,
-0.0204925537109375,
0.0555419921875,
-0.002819061279296875,
-0.045013427734375,
0.0113372802734375,
-0.0007672309875488281,
-0.0028076171875,
0.0179443359375,
-0.008209228515625,
-0.042327880859375,
0.003002166748046875,
0.036102294921875,
0.035186767578125,
-0.03741455078125,
-0.004642486572265625,
0.004848480224609375,
-0.0194549560546875,
0.021728515625,
0.017974853515625,
-0.047088623046875,
0.01004791259765625,
0.057769775390625,
0.037078857421875,
0.050689697265625,
0.006008148193359375,
-0.004810333251953125,
-0.03656005859375,
-0.00531768798828125,
0.0178070068359375,
0.02923583984375,
0.029266357421875,
-0.0294342041015625,
0.058563232421875,
0.0259552001953125,
-0.0408935546875,
-0.065673828125,
-0.0250091552734375,
-0.11383056640625,
-0.0178070068359375,
0.0919189453125,
0.00017142295837402344,
-0.026123046875,
-0.002597808837890625,
-0.00399017333984375,
0.0308990478515625,
-0.053375244140625,
0.0458984375,
0.044677734375,
-0.01285552978515625,
0.01201629638671875,
-0.045440673828125,
0.033294677734375,
0.0188446044921875,
-0.06622314453125,
-0.0159759521484375,
0.0207061767578125,
0.0338134765625,
0.022552490234375,
0.0419921875,
-0.01561737060546875,
0.00426483154296875,
0.010223388671875,
0.006622314453125,
-0.0114288330078125,
0.0036334991455078125,
-0.005489349365234375,
0.017059326171875,
-0.0173187255859375,
-0.016937255859375
]
] |
cardiffnlp/super_tweeteval | 2023-11-02T09:42:14.000Z | [
"task_categories:text-classification",
"task_categories:token-classification",
"task_categories:question-answering",
"task_categories:other",
"task_ids:topic-classification",
"task_ids:named-entity-recognition",
"task_ids:abstractive-qa",
"annotations_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:n<50K",
"source_datasets:extended|other",
"language:en",
"license:unknown",
"super_tweet_eval",
"tweet_eval",
"natural language understanding",
"arxiv:2310.14757",
"arxiv:2210.01108",
"region:us"
] | cardiffnlp | TBA | TBA | 1 | 977 | 2023-05-16T14:33:16 | ---
annotations_creators:
- expert-generated
language:
- en
license:
- unknown
multilinguality:
- monolingual
size_categories:
- n<50K
source_datasets:
- extended|other
task_categories:
- text-classification
- token-classification
- question-answering
- other
task_ids:
- topic-classification
- named-entity-recognition
- abstractive-qa
pretty_name: SuperTweetEval
tags:
- super_tweet_eval
- tweet_eval
- natural language understanding
---
# SuperTweetEval
# Dataset Card for "super_tweeteval"
### Dataset Summary
This is the oficial repository for SuperTweetEval, a unified benchmark of 12 heterogeneous NLP tasks.
More details on the task and an evaluation of language models can be found on the [reference paper](https://arxiv.org/abs/2310.14757), published in EMNLP 2023 (Findings).
### Data Splits
All tasks provide custom training, validation and test splits.
| **task** | **dataset** | **load dataset** | **description** | **number of instances** |
|----------------------------|----------------|------------------|------------------------------------|-------------------------|
| Topic Classification | TWEETTOPIC | tweet_topic | multi-label classification | 4,585 / 573 / 1,679 |
| NER | TWEETNER7 | tweet_ner7 | sequence labeling | 4,616 / 576 / 2,807 |
| Question Answering | TWEETQA | tweet_qa | generation | 9,489 / 1,086 / 1,203 |
| Question Generation | TWEETQG | tweet_qg | generation | 9,489 / 1,086 / 1,203 |
| Intimacy Analysis | TWEETINTIMACY | tweet_intimacy | regression on a single text | 1,191 / 396 / 396 |
| Tweet Similarity | TWEETSIM | tweet_similarity | regression on two texts | 450 / 100 / 450 |
| Meaning Shift Detection | TEMPOWIC | tempo_wic | binary classification on two texts | 1,427 / 395 / 1,472 |
| Hate Speech Detection | TWEETHATE | tweet_hate | multi-class classification | 5,019 / 716 / 1,433 |
| Emoji Classification | TWEETEMOJI100 | tweet_emoji | multi-class classification | 50,000 / 5,000 / 50,000 |
| Sentiment Classification | TWEETSENTIMENT | tweet_sentiment | ABSA on a five-pointscale | 26,632 / 4,000 / 12,379 |
| Name Entity Disambiguation | TWEETNERD | tweet_nerd | binary classification | 20,164 / 4,100 / 20,075 |
| Emotion Classification | TWEETEMOTION | tweet_emotion | multi-label classification | 6,838 / 886 / 3,259 |
## Dataset Structure
### Data Fields
The data fields are unified among all splits.
In the following we present the information contained in each of the datasets.
#### tweet_topic
- `text`: a `string` feature.
- `gold_label_list`: a list of `string` feature.
- `date`: a `string` feature.
#### tweet_ner7
- `text`: a `string` feature.
- `text_tokenized`: a list of `string` feature.
- `gold_label_sequence`: a list of `string` feature.
- `date`: a `string` feature.
- `entities`: a list of `dictionary` feature containing `{"entity": "string", "type": "string"}`.
#### tweet_qa
- `text`: a `string` feature.
- `gold_label_str`: a `string` feature.
- `context`: a `string` feature.
#### tweet_qg
- `text`: a `string` feature.
- `gold_label_str`: a `string` feature.
- `context`: a `string` feature.
#### tweet_intimacy
- `text`: a `string` feature.
- `gold_score`: a `float` feature.
#### tweet_similarity
- `text_1`: a `string` feature.
- `text_2`: a `string` feature.
- `gold_score`: a `float` feature.
#### tempo_wic
- `gold_label_binary`: a `int` feature.
- `target`: a `string` feature.
- `text_1`: a `string` feature.
- `text_tokenized_1`: a list of `string` feature.
- `token_idx_1`: a `int` feature.
- `date_1`: a `string` feature.
- `text_2`: a `string` feature.
- `text_tokenized_2`: a list of `string` feature.
- `token_idx_2`: a `int` feature.
- `date_2`: a `string` feature.
#### tweet_hate
- `gold_label`: a `int` feature.
- `text`: a `string` feature.
#### tweet_emoji
- `gold_label`: a `int` feature.
- `text`: a `string` feature.
#### tweet_sentiment
- `gold_label`: a `int` feature.
- `text`: a `string` feature.
- `target`: a `string` feature.
#### tweet_nerd
- `gold_label_binary`: a `int` feature.
- `target`: a `string` feature.
- `text`: a `string` feature.
- `definition`: a `string` feature.
- `text_start`: a `int` feature.
- `text_end`: a `int` feature.
- `date`: a `string` feature.
#### tweet_emotion
- `text`: a `string` feature.
- `gold_label_list`: a list of `string` feature.
## Evaluation Metrics
- __tweet_ner7:__ ```macro-F1```
- __tweet_emotion:__ ```macro-F1```
- __tweet_qg:__ ```METEOR```
- __tweet_nerd:__ ```accuracy```
- __tweet_sentiment:__ <code>1 - MAE<sup>M</sup> (MAE<sup>M</sup>: Macro Averaged Mean Absolute Error )</code>
- __tempo_wic:__ ```accuracy```
- __tweet_emoji:__ ``` accuracy at top 5 ```
- __tweet_intimacy:__ ```spearman correlation```
- __tweet_qa:__ ```answer-F1```
- __tweet_topic:__ ```macro-F1```
- __tweet_hate:__ ```combined-F1 (micro-F1 for hate/not-hate & macro-F1 for hate speech subclasses)```
- __tweet_similarity:__ ```spearman correlation```
## Citation Information
### Main reference paper
Please cite the [reference paper](https://arxiv.org/abs/2310.14757) if you use this benchmark.
```bibtex
@inproceedings{antypas2023supertweeteval,
title={SuperTweetEval: A Challenging, Unified and Heterogeneous Benchmark for Social Media NLP Research},
author={Dimosthenis Antypas and Asahi Ushio and Francesco Barbieri and Leonardo Neves and Kiamehr Rezaee and Luis Espinosa-Anke and Jiaxin Pei and Jose Camacho-Collados},
booktitle={Findings of the Association for Computational Linguistics: EMNLP 2023},
year={2023}
}
```
### References of individual datasets
In addition to the main reference paper, please cite the individual task datasets included in SuperTweetEval if you use them.
- TweetTopic
```
@inproceedings{antypas-etal-2022-twitter,
title = "{T}witter Topic Classification",
author = "Antypas, Dimosthenis and
Ushio, Asahi and
Camacho-Collados, Jose and
Silva, Vitor and
Neves, Leonardo and
Barbieri, Francesco",
booktitle = "Proceedings of the 29th International Conference on Computational Linguistics",
month = oct,
year = "2022",
address = "Gyeongju, Republic of Korea",
publisher = "International Committee on Computational Linguistics",
url = "https://aclanthology.org/2022.coling-1.299",
pages = "3386--3400",
abstract = "Social media platforms host discussions about a wide variety of topics that arise everyday. Making sense of all the content and organising it into categories is an arduous task. A common way to deal with this issue is relying on topic modeling, but topics discovered using this technique are difficult to interpret and can differ from corpus to corpus. In this paper, we present a new task based on tweet topic classification and release two associated datasets. Given a wide range of topics covering the most important discussion points in social media, we provide training and testing data from recent time periods that can be used to evaluate tweet classification models. Moreover, we perform a quantitative evaluation and analysis of current general- and domain-specific language models on the task, which provide more insights on the challenges and nature of the task.",
}
```
- TweetNER7
```
@inproceedings{ushio-etal-2022-named,
title = "Named Entity Recognition in {T}witter: A Dataset and Analysis on Short-Term Temporal Shifts",
author = "Ushio, Asahi and
Barbieri, Francesco and
Sousa, Vitor and
Neves, Leonardo and
Camacho-Collados, Jose",
booktitle = "Proceedings of the 2nd Conference of the Asia-Pacific Chapter of the Association for Computational Linguistics and the 12th International Joint Conference on Natural Language Processing (Volume 1: Long Papers)",
month = nov,
year = "2022",
address = "Online only",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2022.aacl-main.25",
pages = "309--319",
abstract = "Recent progress in language model pre-training has led to important improvements in Named Entity Recognition (NER). Nonetheless, this progress has been mainly tested in well-formatted documents such as news, Wikipedia, or scientific articles. In social media the landscape is different, in which it adds another layer of complexity due to its noisy and dynamic nature. In this paper, we focus on NER in Twitter, one of the largest social media platforms, and construct a new NER dataset, TweetNER7, which contains seven entity types annotated over 11,382 tweets from September 2019 to August 2021. The dataset was constructed by carefully distributing the tweets over time and taking representative trends as a basis. Along with the dataset, we provide a set of language model baselines and perform an analysis on the language model performance on the task, especially analyzing the impact of different time periods. In particular, we focus on three important temporal aspects in our analysis: short-term degradation of NER models over time, strategies to fine-tune a language model over different periods, and self-labeling as an alternative to lack of recently-labeled data. TweetNER7 is released publicly (https://huggingface.co/datasets/tner/tweetner7) along with the models fine-tuned on it (NER models have been integrated into TweetNLP and can be found at https://github.com/asahi417/tner/tree/master/examples/tweetner7{\_}paper).",
}
```
- TweetQA
```
@inproceedings{xiong2019tweetqa,
title={TweetQA: A Social Media Focused Question Answering Dataset},
author={Xiong, Wenhan and Wu, Jiawei and Wang, Hong and Kulkarni, Vivek and Yu, Mo and Guo, Xiaoxiao and Chang, Shiyu and Wang, William Yang},
booktitle={Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics},
year={2019}
}
```
- TweetIntimacy
```
@misc{pei2023semeval,
title={SemEval 2023 Task 9: Multilingual Tweet Intimacy Analysis},
author={Jiaxin Pei and Vítor Silva and Maarten Bos and Yozon Liu and Leonardo Neves and David Jurgens and Francesco Barbieri},
year={2023},
eprint={2210.01108},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
```
- Tweet Similarity
```
N/A
```
- TempoWiC
```
@inproceedings{loureiro-etal-2022-tempowic,
title = "{T}empo{W}i{C}: An Evaluation Benchmark for Detecting Meaning Shift in Social Media",
author = "Loureiro, Daniel and
D{'}Souza, Aminette and
Muhajab, Areej Nasser and
White, Isabella A. and
Wong, Gabriel and
Espinosa-Anke, Luis and
Neves, Leonardo and
Barbieri, Francesco and
Camacho-Collados, Jose",
booktitle = "Proceedings of the 29th International Conference on Computational Linguistics",
month = oct,
year = "2022",
address = "Gyeongju, Republic of Korea",
publisher = "International Committee on Computational Linguistics",
url = "https://aclanthology.org/2022.coling-1.296",
pages = "3353--3359",
abstract = "Language evolves over time, and word meaning changes accordingly. This is especially true in social media, since its dynamic nature leads to faster semantic shifts, making it challenging for NLP models to deal with new content and trends. However, the number of datasets and models that specifically address the dynamic nature of these social platforms is scarce. To bridge this gap, we present TempoWiC, a new benchmark especially aimed at accelerating research in social media-based meaning shift. Our results show that TempoWiC is a challenging benchmark, even for recently-released language models specialized in social media.",
}
```
- TweetHate
```
@inproceedings{sachdeva-etal-2022-measuring,
title = "The Measuring Hate Speech Corpus: Leveraging Rasch Measurement Theory for Data Perspectivism",
author = "Sachdeva, Pratik and
Barreto, Renata and
Bacon, Geoff and
Sahn, Alexander and
von Vacano, Claudia and
Kennedy, Chris",
booktitle = "Proceedings of the 1st Workshop on Perspectivist Approaches to NLP @LREC2022",
month = jun,
year = "2022",
address = "Marseille, France",
publisher = "European Language Resources Association",
url = "https://aclanthology.org/2022.nlperspectives-1.11",
pages = "83--94",
abstract = "We introduce the Measuring Hate Speech corpus, a dataset created to measure hate speech while adjusting for annotators{'} perspectives. It consists of 50,070 social media comments spanning YouTube, Reddit, and Twitter, labeled by 11,143 annotators recruited from Amazon Mechanical Turk. Each observation includes 10 ordinal labels: sentiment, disrespect, insult, attacking/defending, humiliation, inferior/superior status, dehumanization, violence, genocide, and a 3-valued hate speech benchmark label. The labels are aggregated using faceted Rasch measurement theory (RMT) into a continuous score that measures each comment{'}s location on a hate speech spectrum. The annotation experimental design assigned comments to multiple annotators in order to yield a linked network, allowing annotator disagreement (perspective) to be statistically summarized. Annotators{'} labeling strictness was estimated during the RMT scaling, projecting their perspective onto a linear measure that was adjusted for the hate speech score. Models that incorporate this annotator perspective parameter as an auxiliary input can generate label- and score-level predictions conditional on annotator perspective. The corpus includes the identity group targets of each comment (8 groups, 42 subgroups) and annotator demographics (6 groups, 40 subgroups), facilitating analyses of interactions between annotator- and comment-level identities, i.e. identity-related annotator perspective.",
}
```
- TweetEmoji
```
N/A
```
- TweetSentiment
```
@inproceedings{rosenthal-etal-2017-semeval,
title = "{S}em{E}val-2017 Task 4: Sentiment Analysis in {T}witter",
author = "Rosenthal, Sara and
Farra, Noura and
Nakov, Preslav",
booktitle = "Proceedings of the 11th International Workshop on Semantic Evaluation ({S}em{E}val-2017)",
month = aug,
year = "2017",
address = "Vancouver, Canada",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/S17-2088",
doi = "10.18653/v1/S17-2088",
pages = "502--518",
abstract = "This paper describes the fifth year of the Sentiment Analysis in Twitter task. SemEval-2017 Task 4 continues with a rerun of the subtasks of SemEval-2016 Task 4, which include identifying the overall sentiment of the tweet, sentiment towards a topic with classification on a two-point and on a five-point ordinal scale, and quantification of the distribution of sentiment towards a topic across a number of tweets: again on a two-point and on a five-point ordinal scale. Compared to 2016, we made two changes: (i) we introduced a new language, Arabic, for all subtasks, and (ii) we made available information from the profiles of the Twitter users who posted the target tweets. The task continues to be very popular, with a total of 48 teams participating this year.",
}
```
- TweetNERD
```
@article{mishra2022tweetnerd,
title={TweetNERD--End to End Entity Linking Benchmark for Tweets},
author={Mishra, Shubhanshu and Saini, Aman and Makki, Raheleh and Mehta, Sneha and Haghighi, Aria and Mollahosseini, Ali},
journal={arXiv preprint arXiv:2210.08129},
year={2022}
}
```
- TweetEmotion
```
@inproceedings{mohammad-etal-2018-semeval,
title = "{S}em{E}val-2018 Task 1: Affect in Tweets",
author = "Mohammad, Saif and
Bravo-Marquez, Felipe and
Salameh, Mohammad and
Kiritchenko, Svetlana",
booktitle = "Proceedings of the 12th International Workshop on Semantic Evaluation",
month = jun,
year = "2018",
address = "New Orleans, Louisiana",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/S18-1001",
doi = "10.18653/v1/S18-1001",
pages = "1--17",
abstract = "We present the SemEval-2018 Task 1: Affect in Tweets, which includes an array of subtasks on inferring the affectual state of a person from their tweet. For each task, we created labeled data from English, Arabic, and Spanish tweets. The individual tasks are: 1. emotion intensity regression, 2. emotion intensity ordinal classification, 3. valence (sentiment) regression, 4. valence ordinal classification, and 5. emotion classification. Seventy-five teams (about 200 team members) participated in the shared task. We summarize the methods, resources, and tools used by the participating teams, with a focus on the techniques and resources that are particularly useful. We also analyze systems for consistent bias towards a particular race or gender. The data is made freely available to further improve our understanding of how people convey emotions through language.",
}
``` | 17,304 | [
[
-0.024200439453125,
-0.055389404296875,
0.01849365234375,
0.0284576416015625,
-0.0168304443359375,
0.029266357421875,
-0.0289459228515625,
-0.0223846435546875,
0.037200927734375,
0.004505157470703125,
-0.04815673828125,
-0.06353759765625,
-0.0576171875,
0.0015287399291992188,
-0.03350830078125,
0.06573486328125,
-0.0020427703857421875,
-0.02685546875,
0.0231781005859375,
-0.0136871337890625,
-0.0070343017578125,
-0.0390625,
-0.03216552734375,
-0.00439453125,
0.039459228515625,
0.0263519287109375,
0.04583740234375,
0.03179931640625,
0.038818359375,
0.0231475830078125,
-0.01277923583984375,
0.0128326416015625,
-0.031494140625,
-0.005435943603515625,
-0.017181396484375,
-0.007289886474609375,
-0.030303955078125,
0.0031070709228515625,
0.041046142578125,
0.04046630859375,
0.0038547515869140625,
0.0298919677734375,
0.002559661865234375,
0.022369384765625,
-0.03460693359375,
0.0131072998046875,
-0.0482177734375,
-0.01038360595703125,
-0.0188446044921875,
-0.0166168212890625,
0.00582122802734375,
-0.04205322265625,
0.0086822509765625,
-0.028564453125,
0.014129638671875,
0.0014133453369140625,
0.09954833984375,
0.002532958984375,
-0.0122222900390625,
-0.0084686279296875,
-0.028167724609375,
0.07281494140625,
-0.0576171875,
0.0230255126953125,
0.02978515625,
0.00992584228515625,
0.008392333984375,
-0.053924560546875,
-0.051666259765625,
0.017791748046875,
-0.00699615478515625,
0.01459503173828125,
-0.0173187255859375,
-0.0165557861328125,
0.00555419921875,
0.016021728515625,
-0.032928466796875,
-0.00731658935546875,
-0.01702880859375,
-0.00567626953125,
0.0582275390625,
-0.00138092041015625,
0.027862548828125,
-0.031768798828125,
-0.0035457611083984375,
0.0021953582763671875,
-0.015655517578125,
-0.01030731201171875,
-0.003936767578125,
0.034423828125,
-0.037078857421875,
0.041107177734375,
-0.00930023193359375,
0.0157928466796875,
-0.0040130615234375,
-0.004810333251953125,
0.052337646484375,
-0.038116455078125,
-0.0196685791015625,
-0.021636962890625,
0.09027099609375,
0.046783447265625,
0.01715087890625,
-0.01116180419921875,
-0.00942230224609375,
0.0005955696105957031,
0.00125885009765625,
-0.058197021484375,
-0.01471710205078125,
0.04144287109375,
-0.031402587890625,
-0.031005859375,
0.00641632080078125,
-0.0584716796875,
-0.01788330078125,
0.0001766681671142578,
0.0300750732421875,
-0.045654296875,
-0.03857421875,
-0.00846099853515625,
-0.01491546630859375,
0.0020923614501953125,
0.0199737548828125,
-0.0576171875,
0.003589630126953125,
0.05865478515625,
0.07086181640625,
0.004367828369140625,
-0.0290374755859375,
-0.002964019775390625,
0.0009627342224121094,
-0.026519775390625,
0.0595703125,
-0.032958984375,
-0.00726318359375,
0.00621795654296875,
0.004856109619140625,
-0.01309967041015625,
-0.0152435302734375,
0.04864501953125,
-0.017608642578125,
0.018890380859375,
-0.036102294921875,
-0.043548583984375,
-0.0002092123031616211,
0.0253448486328125,
-0.03485107421875,
0.0841064453125,
0.013397216796875,
-0.0897216796875,
0.035888671875,
-0.064208984375,
-0.02227783203125,
0.002643585205078125,
-0.0177459716796875,
-0.0225982666015625,
-0.01267242431640625,
0.023468017578125,
0.06658935546875,
-0.04052734375,
0.0206298828125,
-0.0193939208984375,
-0.013458251953125,
0.01558685302734375,
-0.0041046142578125,
0.07525634765625,
0.01387786865234375,
-0.0261383056640625,
0.00867462158203125,
-0.047515869140625,
0.0036487579345703125,
0.02093505859375,
-0.00960540771484375,
-0.01297760009765625,
-0.00577545166015625,
0.028564453125,
0.033447265625,
0.01174163818359375,
-0.054168701171875,
0.003650665283203125,
-0.0290374755859375,
0.049713134765625,
0.046875,
0.02435302734375,
0.021331787109375,
-0.033111572265625,
0.016815185546875,
-0.002689361572265625,
0.01055145263671875,
0.014984130859375,
-0.04437255859375,
-0.040802001953125,
-0.0165252685546875,
0.0263824462890625,
0.050140380859375,
-0.0555419921875,
0.059783935546875,
-0.048675537109375,
-0.0572509765625,
-0.042724609375,
-0.00144195556640625,
0.0230712890625,
0.0240020751953125,
0.03607177734375,
0.01739501953125,
-0.060028076171875,
-0.0533447265625,
-0.0205535888671875,
-0.0242156982421875,
0.01068115234375,
0.026336669921875,
0.051971435546875,
-0.019195556640625,
0.069580078125,
-0.03375244140625,
-0.002777099609375,
-0.0296478271484375,
0.0162353515625,
0.020782470703125,
0.031585693359375,
0.051971435546875,
-0.076416015625,
-0.05035400390625,
-0.01233673095703125,
-0.062469482421875,
-0.01537322998046875,
0.0015840530395507812,
-0.0104827880859375,
0.0228271484375,
0.042816162109375,
-0.051055908203125,
0.0292510986328125,
0.03338623046875,
-0.030303955078125,
0.0220947265625,
0.0181427001953125,
0.0253448486328125,
-0.1119384765625,
0.000392913818359375,
0.01519775390625,
0.00959014892578125,
-0.05462646484375,
-0.0244140625,
0.000576019287109375,
0.029632568359375,
-0.039031982421875,
0.04473876953125,
-0.0138092041015625,
0.021331787109375,
0.006206512451171875,
0.0013780593872070312,
-0.0231170654296875,
0.0307159423828125,
-0.00905609130859375,
0.04327392578125,
0.0521240234375,
-0.0271759033203125,
0.0196075439453125,
0.016571044921875,
-0.026336669921875,
0.0234375,
-0.052093505859375,
-0.0010833740234375,
0.0016870498657226562,
0.0168609619140625,
-0.0819091796875,
-0.0177459716796875,
0.0281219482421875,
-0.0714111328125,
0.01160430908203125,
-0.00971221923828125,
-0.0692138671875,
-0.037506103515625,
-0.035675048828125,
0.0121612548828125,
0.02862548828125,
-0.0233154296875,
0.0401611328125,
0.03607177734375,
0.0027618408203125,
-0.041717529296875,
-0.064208984375,
0.00988006591796875,
-0.018280029296875,
-0.051849365234375,
0.040069580078125,
0.00312042236328125,
-0.01611328125,
0.0199432373046875,
-0.0090484619140625,
0.0006570816040039062,
0.0085296630859375,
0.0240936279296875,
0.01120758056640625,
0.0063018798828125,
0.0184173583984375,
-0.01374053955078125,
0.0120849609375,
-0.0113983154296875,
-0.0241241455078125,
0.060150146484375,
-0.0159759521484375,
0.006244659423828125,
-0.0298919677734375,
0.0227813720703125,
0.0207672119140625,
-0.0031986236572265625,
0.07989501953125,
0.0731201171875,
-0.044097900390625,
-0.00501251220703125,
-0.046905517578125,
-0.0023517608642578125,
-0.0328369140625,
0.033111572265625,
-0.03094482421875,
-0.07513427734375,
0.048004150390625,
0.0164642333984375,
0.0236663818359375,
0.070068359375,
0.05084228515625,
-0.0137176513671875,
0.059173583984375,
0.0298919677734375,
-0.019195556640625,
0.039215087890625,
-0.05804443359375,
0.0196380615234375,
-0.036285400390625,
-0.01319122314453125,
-0.04559326171875,
-0.016693115234375,
-0.08026123046875,
-0.03363037109375,
-0.006702423095703125,
0.004619598388671875,
-0.034027099609375,
0.045928955078125,
-0.031951904296875,
0.0142974853515625,
0.0374755859375,
0.0040740966796875,
-0.0181427001953125,
-0.0007429122924804688,
-0.00495147705078125,
-0.006885528564453125,
-0.047088623046875,
-0.03466796875,
0.0755615234375,
0.0294189453125,
0.031768798828125,
0.006450653076171875,
0.07061767578125,
0.0140228271484375,
0.019195556640625,
-0.034515380859375,
0.05694580078125,
-0.0243988037109375,
-0.0408935546875,
-0.027984619140625,
-0.0477294921875,
-0.06121826171875,
0.0069427490234375,
-0.025421142578125,
-0.0810546875,
0.0059814453125,
-0.0186614990234375,
-0.0124053955078125,
0.042266845703125,
-0.051849365234375,
0.055877685546875,
-0.0013418197631835938,
-0.0150299072265625,
-0.0028247833251953125,
-0.05609130859375,
0.01065826416015625,
-0.00873565673828125,
0.035491943359375,
-0.033966064453125,
-0.019561767578125,
0.07977294921875,
-0.030517578125,
0.0518798828125,
-0.005298614501953125,
0.0027408599853515625,
0.018157958984375,
-0.0133819580078125,
0.0095672607421875,
0.0052337646484375,
-0.0072021484375,
0.0272216796875,
-0.0016489028930664062,
-0.0300140380859375,
-0.0308380126953125,
0.061065673828125,
-0.06829833984375,
-0.021240234375,
-0.031494140625,
-0.0298919677734375,
-0.021087646484375,
0.0196075439453125,
0.04266357421875,
0.0215301513671875,
-0.0074615478515625,
0.02264404296875,
0.0239715576171875,
-0.017303466796875,
0.043212890625,
0.010986328125,
-0.0015134811401367188,
-0.04132080078125,
0.0662841796875,
0.027496337890625,
0.00551605224609375,
0.04718017578125,
0.01561737060546875,
-0.022186279296875,
-0.034423828125,
0.0005974769592285156,
0.0211944580078125,
-0.040130615234375,
-0.0235443115234375,
-0.0745849609375,
-0.032867431640625,
-0.056182861328125,
-0.004985809326171875,
-0.0299835205078125,
-0.046630859375,
-0.03363037109375,
-0.0169677734375,
0.050567626953125,
0.0295257568359375,
-0.0207061767578125,
0.0079498291015625,
-0.05950927734375,
0.0307159423828125,
0.00394439697265625,
0.0296478271484375,
-0.0115814208984375,
-0.04541015625,
-0.0216522216796875,
0.009979248046875,
-0.01232147216796875,
-0.055450439453125,
0.033935546875,
0.023468017578125,
0.03387451171875,
0.0140228271484375,
0.00937652587890625,
0.03619384765625,
-0.025146484375,
0.07244873046875,
0.02239990234375,
-0.062744140625,
0.051177978515625,
-0.0333251953125,
0.0177764892578125,
0.046112060546875,
0.0374755859375,
-0.0548095703125,
-0.04656982421875,
-0.0721435546875,
-0.0843505859375,
0.0587158203125,
0.046112060546875,
0.01296234130859375,
-0.0212249755859375,
0.004726409912109375,
-0.0180511474609375,
0.021575927734375,
-0.032928466796875,
-0.05712890625,
-0.0242767333984375,
-0.02984619140625,
-0.01157379150390625,
-0.0134735107421875,
-0.0015993118286132812,
-0.0297393798828125,
0.054901123046875,
0.015716552734375,
0.0435791015625,
-0.0027065277099609375,
0.000820159912109375,
0.0020904541015625,
0.0186920166015625,
0.025665283203125,
0.049896240234375,
-0.045654296875,
0.00518035888671875,
0.0106658935546875,
-0.0396728515625,
-0.00873565673828125,
0.0280303955078125,
-0.0055694580078125,
0.0126953125,
0.044769287109375,
0.043243408203125,
0.00780487060546875,
-0.02337646484375,
0.03887939453125,
-0.010040283203125,
-0.043731689453125,
-0.00888824462890625,
-0.00867462158203125,
0.0111846923828125,
0.021514892578125,
0.050811767578125,
0.0019130706787109375,
-0.011199951171875,
-0.0430908203125,
0.020294189453125,
0.0025730133056640625,
-0.02740478515625,
-0.034912109375,
0.038787841796875,
-0.00661468505859375,
-0.0294189453125,
0.013153076171875,
-0.03314208984375,
-0.0653076171875,
0.03857421875,
0.0090179443359375,
0.0958251953125,
-0.01019287109375,
0.01837158203125,
0.03570556640625,
0.032012939453125,
0.0005445480346679688,
0.051788330078125,
0.01251983642578125,
-0.07562255859375,
-0.0200653076171875,
-0.04443359375,
-0.010467529296875,
0.0165557861328125,
-0.0179443359375,
0.00804901123046875,
-0.040283203125,
-0.0251007080078125,
0.0323486328125,
0.0166015625,
-0.056793212890625,
0.0248565673828125,
-0.0007920265197753906,
0.069580078125,
-0.06878662109375,
0.056243896484375,
0.071533203125,
-0.0418701171875,
-0.07330322265625,
0.0227203369140625,
0.0021724700927734375,
-0.031585693359375,
0.051116943359375,
0.0152130126953125,
0.014739990234375,
0.00046706199645996094,
-0.06640625,
-0.0606689453125,
0.0792236328125,
0.0012121200561523438,
-0.00788116455078125,
0.0098724365234375,
0.0112457275390625,
0.049468994140625,
-0.0257110595703125,
0.033294677734375,
0.0487060546875,
0.0266265869140625,
0.0161895751953125,
-0.08221435546875,
0.01331329345703125,
-0.0478515625,
0.00014138221740722656,
0.010894775390625,
-0.06243896484375,
0.06878662109375,
0.0010404586791992188,
-0.0249481201171875,
-0.031402587890625,
0.0528564453125,
0.0263519287109375,
0.01837158203125,
0.0419921875,
0.041168212890625,
0.038665771484375,
-0.0283355712890625,
0.065673828125,
-0.0242156982421875,
0.05047607421875,
0.0667724609375,
0.00887298583984375,
0.06622314453125,
0.0257415771484375,
-0.031158447265625,
0.0164642333984375,
0.05462646484375,
0.00426483154296875,
0.04132080078125,
-0.002803802490234375,
0.0019140243530273438,
-0.006317138671875,
-0.0233154296875,
-0.031005859375,
0.019073486328125,
0.036956787109375,
-0.016571044921875,
-0.01169586181640625,
-0.00969696044921875,
0.01837158203125,
-0.007221221923828125,
-0.0152587890625,
0.0546875,
0.0031642913818359375,
-0.0238494873046875,
0.05657958984375,
0.0034923553466796875,
0.07464599609375,
-0.020477294921875,
0.01898193359375,
-0.00958251953125,
0.00545501708984375,
-0.025054931640625,
-0.0799560546875,
0.0260162353515625,
0.005733489990234375,
-0.0004818439483642578,
-0.0184326171875,
0.04931640625,
-0.0266876220703125,
-0.044219970703125,
0.0341796875,
0.0311737060546875,
0.00019252300262451172,
-0.01123809814453125,
-0.08251953125,
0.0081634521484375,
0.00592803955078125,
-0.0343017578125,
-0.002902984619140625,
0.051025390625,
0.009918212890625,
0.0521240234375,
0.033599853515625,
0.005031585693359375,
0.011260986328125,
0.0229034423828125,
0.07843017578125,
-0.06085205078125,
-0.030853271484375,
-0.06573486328125,
0.029449462890625,
-0.02093505859375,
-0.02825927734375,
0.06549072265625,
0.044189453125,
0.0538330078125,
0.0135040283203125,
0.07537841796875,
-0.045989990234375,
0.0767822265625,
-0.0122528076171875,
0.044769287109375,
-0.0587158203125,
0.016876220703125,
-0.05084228515625,
-0.0499267578125,
-0.0293121337890625,
0.036712646484375,
-0.035003662109375,
0.017303466796875,
0.05035400390625,
0.061248779296875,
-0.002536773681640625,
0.004230499267578125,
0.0005555152893066406,
0.0300140380859375,
0.0295867919921875,
0.037322998046875,
0.054168701171875,
-0.047393798828125,
0.040985107421875,
-0.049835205078125,
-0.00850677490234375,
-0.0225982666015625,
-0.05572509765625,
-0.07708740234375,
-0.06842041015625,
-0.033843994140625,
-0.053253173828125,
0.002864837646484375,
0.09478759765625,
0.038787841796875,
-0.07763671875,
-0.007366180419921875,
-0.01026153564453125,
0.0111846923828125,
-0.00247955322265625,
-0.0232391357421875,
0.06060791015625,
-0.0115509033203125,
-0.044769287109375,
-0.008026123046875,
0.0051116943359375,
-0.0021839141845703125,
0.019378662109375,
0.00519561767578125,
-0.052886962890625,
0.00966644287109375,
0.04156494140625,
0.0072021484375,
-0.04949951171875,
-0.0216522216796875,
0.01151275634765625,
-0.01910400390625,
0.0014715194702148438,
0.01486968994140625,
-0.018524169921875,
-0.005802154541015625,
0.058929443359375,
0.032562255859375,
0.037750244140625,
0.004444122314453125,
0.004604339599609375,
-0.052978515625,
-0.0032939910888671875,
0.023712158203125,
0.02008056640625,
0.030487060546875,
-0.006351470947265625,
0.048675537109375,
0.02850341796875,
-0.032928466796875,
-0.0628662109375,
-0.0186004638671875,
-0.08502197265625,
-0.0174713134765625,
0.10308837890625,
0.003597259521484375,
-0.01471710205078125,
-0.0065765380859375,
-0.0024394989013671875,
0.0301971435546875,
-0.05853271484375,
0.05133056640625,
0.050750732421875,
0.0170745849609375,
-0.01751708984375,
-0.043853759765625,
0.043365478515625,
0.0097198486328125,
-0.060028076171875,
-0.0036678314208984375,
-0.0005135536193847656,
0.025787353515625,
0.02545166015625,
0.059173583984375,
0.00653076171875,
0.01152801513671875,
-0.0136566162109375,
0.0090484619140625,
0.019073486328125,
-0.0033283233642578125,
0.0015401840209960938,
0.00545501708984375,
-0.0300140380859375,
-0.027496337890625
]
] |
lamini/taylor_swift | 2023-07-24T03:47:45.000Z | [
"region:us"
] | lamini | null | null | 1 | 970 | 2023-07-24T03:47:42 | ---
dataset_info:
features:
- name: question
dtype: string
- name: answer
dtype: string
- name: input_ids
sequence: int32
- name: attention_mask
sequence: int8
- name: labels
sequence: int64
splits:
- name: train
num_bytes: 850749.3
num_examples: 783
- name: test
num_bytes: 94527.7
num_examples: 87
download_size: 303257
dataset_size: 945277.0
---
# Dataset Card for "taylor_swift"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 573 | [
[
-0.0308837890625,
-0.02166748046875,
0.0014753341674804688,
0.0208282470703125,
-0.01038360595703125,
-0.0011014938354492188,
0.0189666748046875,
-0.017333984375,
0.060882568359375,
0.03497314453125,
-0.073486328125,
-0.052764892578125,
-0.03643798828125,
-0.01201629638671875,
-0.04217529296875,
0.0927734375,
0.0220947265625,
0.00432586669921875,
-0.0205230712890625,
-0.01245880126953125,
-0.0343017578125,
-0.04052734375,
-0.037506103515625,
-0.020233154296875,
0.07489013671875,
0.0501708984375,
0.0249786376953125,
0.0167694091796875,
0.0758056640625,
0.01329803466796875,
-0.01377105712890625,
-0.0257415771484375,
-0.0299224853515625,
0.006778717041015625,
-0.0185699462890625,
-0.02618408203125,
-0.06671142578125,
0.010040283203125,
0.047088623046875,
0.0236968994140625,
-0.0171356201171875,
0.070068359375,
-0.0258331298828125,
0.06146240234375,
-0.0014667510986328125,
0.024810791015625,
-0.028411865234375,
0.00012791156768798828,
-0.03875732421875,
0.0085601806640625,
0.02569580078125,
-0.051422119140625,
0.000736236572265625,
-0.055450439453125,
0.0218963623046875,
0.00939178466796875,
0.054168701171875,
0.0146026611328125,
0.0015382766723632812,
-0.0193634033203125,
-0.033721923828125,
0.0119476318359375,
-0.00469970703125,
0.0234222412109375,
0.033416748046875,
0.041259765625,
0.005161285400390625,
-0.048675537109375,
-0.028778076171875,
0.005229949951171875,
-0.0012311935424804688,
0.01181793212890625,
0.0151214599609375,
0.0028076171875,
0.04498291015625,
0.054443359375,
-0.0262603759765625,
-0.0257415771484375,
-0.03564453125,
-0.032745361328125,
0.057586669921875,
-0.00012600421905517578,
0.03363037109375,
-0.02093505859375,
-0.002841949462890625,
-0.013641357421875,
-0.030731201171875,
0.0157012939453125,
0.0305023193359375,
0.04827880859375,
-0.0770263671875,
0.057159423828125,
0.0016994476318359375,
0.030609130859375,
0.004772186279296875,
0.03155517578125,
0.05206298828125,
-0.0257415771484375,
-0.012664794921875,
-0.004619598388671875,
0.0242919921875,
0.01244354248046875,
0.02667236328125,
0.010162353515625,
-0.007602691650390625,
-0.01332855224609375,
0.0019235610961914062,
-0.0830078125,
-0.04290771484375,
0.0223236083984375,
-0.057647705078125,
-0.01085662841796875,
0.024322509765625,
-0.06915283203125,
-0.038330078125,
-0.02642822265625,
0.0108795166015625,
0.0186920166015625,
-0.04608154296875,
-0.031494140625,
-0.043426513671875,
0.005161285400390625,
-0.006732940673828125,
-0.05584716796875,
0.0095367431640625,
0.03790283203125,
0.037139892578125,
0.029327392578125,
-0.01496124267578125,
-0.059844970703125,
-0.0013942718505859375,
-0.002750396728515625,
0.054779052734375,
-0.038970947265625,
-0.0276336669921875,
0.00485992431640625,
0.037017822265625,
0.00836181640625,
-0.019439697265625,
0.07550048828125,
-0.0189056396484375,
-0.0229339599609375,
-0.0662841796875,
-0.032073974609375,
0.004199981689453125,
0.0162353515625,
-0.0777587890625,
0.05841064453125,
0.0279693603515625,
-0.044403076171875,
0.0305023193359375,
-0.0767822265625,
-0.034271240234375,
0.0333251953125,
0.003940582275390625,
-0.040283203125,
0.0270538330078125,
-0.005859375,
0.0386962890625,
-0.01105499267578125,
0.034454345703125,
-0.05828857421875,
-0.006622314453125,
0.00308990478515625,
0.024932861328125,
0.056793212890625,
0.0194091796875,
0.043304443359375,
0,
-0.077392578125,
-0.013427734375,
0.0175933837890625,
-0.010772705078125,
-0.01430511474609375,
-0.025115966796875,
0.035552978515625,
-0.01177215576171875,
0.01326751708984375,
-0.0400390625,
0.023468017578125,
0.0142822265625,
0.01277923583984375,
0.0307464599609375,
-0.00019276142120361328,
0.02734375,
-0.03912353515625,
0.0394287109375,
-0.0193023681640625,
0.0325927734375,
-0.0101165771484375,
-0.035003662109375,
-0.0267181396484375,
0.0059814453125,
0.055877685546875,
0.048797607421875,
-0.0265350341796875,
0.035247802734375,
0.01387786865234375,
-0.042266845703125,
-0.028961181640625,
-0.0018587112426757812,
0.01343536376953125,
0.03973388671875,
0.027313232421875,
-0.0239105224609375,
-0.06646728515625,
-0.04656982421875,
-0.0006041526794433594,
-0.0228424072265625,
0.005283355712890625,
0.03759765625,
0.0606689453125,
-0.023162841796875,
0.05267333984375,
-0.027069091796875,
-0.0323486328125,
0.0010671615600585938,
-0.0125732421875,
0.027679443359375,
0.0672607421875,
0.06512451171875,
-0.06365966796875,
-0.01279449462890625,
-0.034881591796875,
-0.0240478515625,
-0.0153045654296875,
0.004337310791015625,
-0.042816162109375,
-0.0252532958984375,
-0.00522613525390625,
-0.02606201171875,
0.047271728515625,
0.06475830078125,
-0.04638671875,
0.018402099609375,
0.014434814453125,
0.029083251953125,
-0.077392578125,
0.0199432373046875,
0.01071929931640625,
-0.005130767822265625,
-0.042327880859375,
-0.00441741943359375,
0.00867462158203125,
-0.0161590576171875,
-0.00036334991455078125,
0.0460205078125,
-0.0224456787109375,
-0.0168609619140625,
0.0124053955078125,
-0.001194000244140625,
-0.00182342529296875,
0.00804901123046875,
0.01419830322265625,
0.036041259765625,
0.06915283203125,
-0.0213623046875,
0.059051513671875,
0.06292724609375,
-0.0032100677490234375,
0.07177734375,
-0.0596923828125,
0.005641937255859375,
-0.007434844970703125,
0.0088043212890625,
-0.049163818359375,
-0.051055908203125,
0.02899169921875,
-0.043975830078125,
0.0229034423828125,
-0.05609130859375,
-0.0335693359375,
-0.0706787109375,
-0.005352020263671875,
0.0390625,
0.049285888671875,
-0.051788330078125,
0.033355712890625,
0.055633544921875,
-0.0223541259765625,
0.0029315948486328125,
-0.080078125,
0.004192352294921875,
-0.017181396484375,
-0.022186279296875,
0.035247802734375,
-0.032196044921875,
-0.005859375,
-0.0195465087890625,
0.023101806640625,
-0.025115966796875,
-0.0219879150390625,
0.033172607421875,
0.018463134765625,
-0.0019330978393554688,
0.050933837890625,
0.004180908203125,
-0.0216522216796875,
-0.000010013580322265625,
0.00173187255859375,
0.01029205322265625,
0.0004837512969970703,
-0.01312255859375,
-0.0537109375,
0.0335693359375,
0.0149993896484375,
-0.0036563873291015625,
0.0257415771484375,
0.05816650390625,
-0.0367431640625,
-0.00247955322265625,
-0.04302978515625,
-0.0111846923828125,
-0.0280914306640625,
-0.0021343231201171875,
-0.025390625,
-0.04266357421875,
0.0634765625,
0.01102447509765625,
-0.006092071533203125,
0.044891357421875,
0.03765869140625,
-0.006023406982421875,
0.042449951171875,
0.0501708984375,
-0.0272674560546875,
0.04461669921875,
-0.016693115234375,
-0.0235748291015625,
-0.048583984375,
-0.03643798828125,
-0.06304931640625,
-0.034820556640625,
-0.04998779296875,
-0.017242431640625,
-0.020233154296875,
-0.0016269683837890625,
-0.034759521484375,
0.0494384765625,
-0.05841064453125,
0.0200958251953125,
0.049835205078125,
0.01345062255859375,
0.0011415481567382812,
-0.0107574462890625,
0.026824951171875,
0.0235443115234375,
-0.0396728515625,
-0.0016918182373046875,
0.07513427734375,
0.033447265625,
0.07269287109375,
0.00698089599609375,
0.05340576171875,
0.0211334228515625,
0.0239715576171875,
-0.02752685546875,
0.01512908935546875,
-0.0033550262451171875,
-0.0570068359375,
-0.017822265625,
-0.0164947509765625,
-0.032623291015625,
-0.04095458984375,
-0.0246124267578125,
-0.00588226318359375,
0.03314208984375,
0.040191650390625,
-0.0192718505859375,
0.01473236083984375,
-0.0548095703125,
0.05828857421875,
-0.00533294677734375,
0.00559234619140625,
0.004024505615234375,
-0.042999267578125,
0.008880615234375,
0.01071929931640625,
0.0171661376953125,
-0.0263214111328125,
0.003009796142578125,
0.06744384765625,
-0.036956787109375,
0.06671142578125,
-0.055572509765625,
0.0012426376342773438,
0.02386474609375,
-0.0288543701171875,
0.036956787109375,
0.040740966796875,
-0.01343536376953125,
0.008941650390625,
0.00121307373046875,
-0.0300750732421875,
-0.01123809814453125,
0.052337646484375,
-0.0296478271484375,
0.0114898681640625,
-0.0017070770263671875,
-0.0406494140625,
-0.00592803955078125,
0.0091094970703125,
0.0103607177734375,
0.056304931640625,
-0.025299072265625,
-0.004253387451171875,
0.042022705078125,
0.01279449462890625,
0.0302734375,
0.00441741943359375,
-0.0177459716796875,
-0.043548583984375,
0.051788330078125,
0.014984130859375,
-0.02789306640625,
0.01132965087890625,
0.0298614501953125,
-0.03802490234375,
-0.046722412109375,
-0.033233642578125,
0.0214080810546875,
-0.0184478759765625,
-0.031005859375,
-0.0192718505859375,
-0.0172271728515625,
-0.038970947265625,
-0.0091705322265625,
-0.00795745849609375,
-0.0482177734375,
-0.056488037109375,
-0.0341796875,
0.0833740234375,
0.04144287109375,
-0.03338623046875,
0.043243408203125,
-0.0721435546875,
0.043731689453125,
0.019012451171875,
0.076171875,
-0.01849365234375,
-0.0440673828125,
-0.016876220703125,
-0.002002716064453125,
0.01451873779296875,
-0.03662109375,
-0.00923919677734375,
0.0271148681640625,
0.047454833984375,
0.0119476318359375,
0.0007238388061523438,
0.06719970703125,
-0.01287078857421875,
0.0435791015625,
0.023193359375,
-0.053863525390625,
0.065185546875,
-0.024017333984375,
0.0107269287109375,
0.07818603515625,
0.01337432861328125,
-0.031280517578125,
-0.0002689361572265625,
-0.060089111328125,
-0.0224456787109375,
0.037506103515625,
0.0090789794921875,
0.0292510986328125,
0.0145263671875,
0.039581298828125,
0.005035400390625,
0.0352783203125,
-0.0654296875,
-0.03875732421875,
-0.0179595947265625,
-0.024322509765625,
0.013031005859375,
-0.039947509765625,
-0.01377105712890625,
-0.051727294921875,
0.039093017578125,
-0.0007753372192382812,
0.0140228271484375,
0.015411376953125,
0.016143798828125,
-0.012939453125,
-0.01389312744140625,
0.0260009765625,
0.0294342041015625,
-0.0234375,
-0.03131103515625,
-0.01232147216796875,
-0.0379638671875,
-0.0274810791015625,
0.05072021484375,
-0.00907135009765625,
-0.007411956787109375,
0.045806884765625,
0.053802490234375,
-0.0246734619140625,
-0.024078369140625,
0.0290374755859375,
-0.0158538818359375,
-0.03326416015625,
-0.03253173828125,
0.0077972412109375,
0.006954193115234375,
0.023773193359375,
0.01387786865234375,
0.002605438232421875,
0.01184844970703125,
-0.0340576171875,
0.0379638671875,
0.0145721435546875,
-0.060821533203125,
-0.042877197265625,
0.03814697265625,
0.04852294921875,
-0.0540771484375,
0.048919677734375,
0.0049591064453125,
-0.0256805419921875,
0.06005859375,
0.017181396484375,
0.0501708984375,
-0.034332275390625,
0.03289794921875,
0.0491943359375,
0.00433349609375,
-0.0026035308837890625,
0.069580078125,
-0.035003662109375,
-0.031585693359375,
-0.00675201416015625,
-0.03619384765625,
-0.01422882080078125,
-0.02386474609375,
-0.07012939453125,
0.0214080810546875,
-0.03314208984375,
-0.0303497314453125,
-0.0048065185546875,
0.0096893310546875,
-0.058013916015625,
0.01483917236328125,
0.005268096923828125,
0.10528564453125,
-0.06787109375,
0.051177978515625,
0.04046630859375,
-0.033782958984375,
-0.0660400390625,
-0.01641845703125,
0.003997802734375,
-0.055572509765625,
0.0164642333984375,
0.00615692138671875,
0.03314208984375,
-0.01093292236328125,
-0.049896240234375,
-0.05438232421875,
0.08123779296875,
0.002353668212890625,
-0.08636474609375,
0.0177764892578125,
-0.019012451171875,
0.0285797119140625,
-0.041412353515625,
0.0230255126953125,
0.049652099609375,
0.06719970703125,
0.0452880859375,
-0.04962158203125,
-0.01282501220703125,
-0.0257110595703125,
-0.009368896484375,
0.02178955078125,
-0.045074462890625,
0.0220947265625,
-0.0303955078125,
-0.000052928924560546875,
0.0248260498046875,
0.04449462890625,
0.01421356201171875,
0.033935546875,
0.0268402099609375,
0.0460205078125,
0.07916259765625,
-0.032379150390625,
0.06341552734375,
0.004093170166015625,
0.041595458984375,
0.086669921875,
-0.0140380859375,
0.01363372802734375,
0.0303497314453125,
-0.0157470703125,
0.021636962890625,
0.05230712890625,
-0.0499267578125,
0.032562255859375,
0.0308380126953125,
0.0031795501708984375,
-0.00676727294921875,
-0.016265869140625,
-0.051239013671875,
0.0000050067901611328125,
0.00799560546875,
-0.046142578125,
0.00783538818359375,
0.0116424560546875,
-0.00745391845703125,
-0.0007033348083496094,
-0.05029296875,
0.0521240234375,
-0.0051116943359375,
-0.0186767578125,
-0.006591796875,
-0.051177978515625,
0.0228271484375,
-0.03167724609375,
-0.0224456787109375,
-0.004985809326171875,
-0.0148162841796875,
-0.0367431640625,
-0.07537841796875,
0.05072021484375,
-0.00251007080078125,
-0.0341796875,
-0.010528564453125,
0.04473876953125,
-0.039886474609375,
-0.08038330078125,
0.0238494873046875,
0.013214111328125,
0.00677490234375,
0.01161956787109375,
-0.09503173828125,
0.0194091796875,
-0.005886077880859375,
-0.01343536376953125,
-0.0088653564453125,
0.009918212890625,
0.0175628662109375,
0.049652099609375,
0.042633056640625,
0.0195465087890625,
-0.03045654296875,
0.06329345703125,
0.0625,
-0.059600830078125,
-0.029327392578125,
-0.0401611328125,
0.0654296875,
-0.02813720703125,
-0.0379638671875,
0.032928466796875,
0.05889892578125,
0.05035400390625,
-0.003513336181640625,
0.049468994140625,
-0.039794921875,
0.0784912109375,
-0.0221710205078125,
0.042724609375,
-0.0343017578125,
-0.008697509765625,
-0.031707763671875,
-0.03924560546875,
-0.05670166015625,
0.027801513671875,
0.014984130859375,
0.00527191162109375,
0.022796630859375,
0.067138671875,
0.0020275115966796875,
0.02239990234375,
-0.00328826904296875,
0.00428009033203125,
0.0067596435546875,
0.01482391357421875,
0.0482177734375,
-0.0289306640625,
0.021942138671875,
-0.0134735107421875,
-0.036468505859375,
0.005313873291015625,
-0.079833984375,
-0.0819091796875,
-0.055572509765625,
-0.03802490234375,
-0.024932861328125,
-0.0108795166015625,
0.058349609375,
0.078369140625,
-0.0740966796875,
-0.0091552734375,
-0.00897216796875,
0.040802001953125,
0.0032520294189453125,
-0.0061492919921875,
0.035552978515625,
0.016876220703125,
-0.04620361328125,
-0.0164947509765625,
-0.0086517333984375,
0.04058837890625,
0.002063751220703125,
0.0111541748046875,
0.01493072509765625,
-0.01029205322265625,
0.0241546630859375,
0.030029296875,
-0.0191497802734375,
-0.02850341796875,
-0.029144287109375,
0.0214691162109375,
0.00806427001953125,
0.07666015625,
-0.036346435546875,
-0.0017528533935546875,
0.045806884765625,
0.0167694091796875,
0.034881591796875,
0.03265380859375,
0.020538330078125,
-0.030303955078125,
0.00807952880859375,
0.00986480712890625,
0.0306549072265625,
0.01454925537109375,
-0.0421142578125,
0.050994873046875,
0.0246734619140625,
-0.0540771484375,
-0.055023193359375,
0.00881195068359375,
-0.0955810546875,
0.02386474609375,
0.05181884765625,
0.01528167724609375,
-0.02239990234375,
-0.006717681884765625,
-0.02008056640625,
0.004573822021484375,
-0.07098388671875,
0.0195159912109375,
0.031494140625,
0.00426483154296875,
-0.023040771484375,
-0.0165557861328125,
0.05230712890625,
-0.043853759765625,
-0.07183837890625,
0.01373291015625,
0.032073974609375,
0.01242828369140625,
0.00688934326171875,
0.054046630859375,
-0.01349639892578125,
0.0166778564453125,
0.004627227783203125,
0.032928466796875,
-0.02117919921875,
-0.049346923828125,
-0.02587890625,
0.00830841064453125,
-0.0229339599609375,
-0.0275726318359375
]
] |
wider_face | 2023-01-25T15:02:08.000Z | [
"task_categories:object-detection",
"task_ids:face-detection",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:extended|other-wider",
"language:en",
"license:cc-by-nc-nd-4.0",
"arxiv:1511.06523",
"region:us"
] | null | WIDER FACE dataset is a face detection benchmark dataset, of which images are
selected from the publicly available WIDER dataset. We choose 32,203 images and
label 393,703 faces with a high degree of variability in scale, pose and
occlusion as depicted in the sample images. WIDER FACE dataset is organized
based on 61 event classes. For each event class, we randomly select 40%/10%/50%
data as training, validation and testing sets. We adopt the same evaluation
metric employed in the PASCAL VOC dataset. Similar to MALF and Caltech datasets,
we do not release bounding box ground truth for the test images. Users are
required to submit final prediction files, which we shall proceed to evaluate. | @inproceedings{yang2016wider,
Author = {Yang, Shuo and Luo, Ping and Loy, Chen Change and Tang, Xiaoou},
Booktitle = {IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
Title = {WIDER FACE: A Face Detection Benchmark},
Year = {2016}} | 13 | 968 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- found
language:
- en
license:
- cc-by-nc-nd-4.0
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- extended|other-wider
task_categories:
- object-detection
task_ids:
- face-detection
paperswithcode_id: wider-face-1
pretty_name: WIDER FACE
dataset_info:
features:
- name: image
dtype: image
- name: faces
sequence:
- name: bbox
sequence: float32
length: 4
- name: blur
dtype:
class_label:
names:
'0': clear
'1': normal
'2': heavy
- name: expression
dtype:
class_label:
names:
'0': typical
'1': exaggerate
- name: illumination
dtype:
class_label:
names:
'0': normal
'1': 'exaggerate '
- name: occlusion
dtype:
class_label:
names:
'0': 'no'
'1': partial
'2': heavy
- name: pose
dtype:
class_label:
names:
'0': typical
'1': atypical
- name: invalid
dtype: bool
splits:
- name: train
num_bytes: 12049881
num_examples: 12880
- name: test
num_bytes: 3761103
num_examples: 16097
- name: validation
num_bytes: 2998735
num_examples: 3226
download_size: 3676086479
dataset_size: 18809719
---
# Dataset Card for WIDER FACE
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** http://shuoyang1213.me/WIDERFACE/index.html
- **Repository:**
- **Paper:** [WIDER FACE: A Face Detection Benchmark](https://arxiv.org/abs/1511.06523)
- **Leaderboard:** http://shuoyang1213.me/WIDERFACE/WiderFace_Results.html
- **Point of Contact:** shuoyang.1213@gmail.com
### Dataset Summary
WIDER FACE dataset is a face detection benchmark dataset, of which images are
selected from the publicly available WIDER dataset. We choose 32,203 images and
label 393,703 faces with a high degree of variability in scale, pose and
occlusion as depicted in the sample images. WIDER FACE dataset is organized
based on 61 event classes. For each event class, we randomly select 40%/10%/50%
data as training, validation and testing sets. We adopt the same evaluation
metric employed in the PASCAL VOC dataset. Similar to MALF and Caltech datasets,
we do not release bounding box ground truth for the test images. Users are
required to submit final prediction files, which we shall proceed to evaluate.
### Supported Tasks and Leaderboards
- `face-detection`: The dataset can be used to train a model for Face Detection. More information on evaluating the model's performance can be found [here](http://shuoyang1213.me/WIDERFACE/WiderFace_Results.html).
### Languages
English
## Dataset Structure
### Data Instances
A data point comprises an image and its face annotations.
```
{
'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=1024x755 at 0x19FA12186D8>, 'faces': {
'bbox': [
[178.0, 238.0, 55.0, 73.0],
[248.0, 235.0, 59.0, 73.0],
[363.0, 157.0, 59.0, 73.0],
[468.0, 153.0, 53.0, 72.0],
[629.0, 110.0, 56.0, 81.0],
[745.0, 138.0, 55.0, 77.0]
],
'blur': [2, 2, 2, 2, 2, 2],
'expression': [0, 0, 0, 0, 0, 0],
'illumination': [0, 0, 0, 0, 0, 0],
'occlusion': [1, 2, 1, 2, 1, 2],
'pose': [0, 0, 0, 0, 0, 0],
'invalid': [False, False, False, False, False, False]
}
}
```
### Data Fields
- `image`: A `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`
- `faces`: a dictionary of face attributes for the faces present on the image
- `bbox`: the bounding box of each face (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
- `blur`: the blur level of each face, with possible values including `clear` (0), `normal` (1) and `heavy`
- `expression`: the facial expression of each face, with possible values including `typical` (0) and `exaggerate` (1)
- `illumination`: the lightning condition of each face, with possible values including `normal` (0) and `exaggerate` (1)
- `occlusion`: the level of occlusion of each face, with possible values including `no` (0), `partial` (1) and `heavy` (2)
- `pose`: the pose of each face, with possible values including `typical` (0) and `atypical` (1)
- `invalid`: whether the image is valid or invalid.
### Data Splits
The data is split into training, validation and testing set. WIDER FACE dataset is organized
based on 61 event classes. For each event class, 40%/10%/50%
data is randomly selected as training, validation and testing sets. The training set contains 12880 images, the validation set 3226 images and test set 16097 images.
## Dataset Creation
### Curation Rationale
The curators state that the current face detection datasets typically contain a few thousand faces, with limited variations in pose, scale, facial expression, occlusion, and background clutters,
making it difficult to assess for real world performance. They argue that the limitations of datasets have partially contributed to the failure of some algorithms in coping
with heavy occlusion, small scale, and atypical pose.
### Source Data
#### Initial Data Collection and Normalization
WIDER FACE dataset is a subset of the WIDER dataset.
The images in WIDER were collected in the following three steps: 1) Event categories
were defined and chosen following the Large Scale Ontology for Multimedia (LSCOM) [22], which provides around 1000 concepts relevant to video event analysis. 2) Images
are retrieved using search engines like Google and Bing. For
each category, 1000-3000 images were collected. 3) The
data were cleaned by manually examining all the images
and filtering out images without human face. Then, similar
images in each event category were removed to ensure large
diversity in face appearance. A total of 32203 images are
eventually included in the WIDER FACE dataset.
#### Who are the source language producers?
The images are selected from publicly available WIDER dataset.
### Annotations
#### Annotation process
The curators label the bounding boxes for all
the recognizable faces in the WIDER FACE dataset. The
bounding box is required to tightly contain the forehead,
chin, and cheek.. If a face is occluded, they still label it with a bounding box but with an estimation on the scale of occlusion. Similar to the PASCAL VOC dataset [6], they assign an ’Ignore’ flag to the face
which is very difficult to be recognized due to low resolution and small scale (10 pixels or less). After annotating
the face bounding boxes, they further annotate the following
attributes: pose (typical, atypical) and occlusion level (partial, heavy). Each annotation is labeled by one annotator
and cross-checked by two different people.
#### Who are the annotators?
Shuo Yang, Ping Luo, Chen Change Loy and Xiaoou Tang.
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
Shuo Yang, Ping Luo, Chen Change Loy and Xiaoou Tang
### Licensing Information
[Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)](https://creativecommons.org/licenses/by-nc-nd/4.0/).
### Citation Information
```
@inproceedings{yang2016wider,
Author = {Yang, Shuo and Luo, Ping and Loy, Chen Change and Tang, Xiaoou},
Booktitle = {IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
Title = {WIDER FACE: A Face Detection Benchmark},
Year = {2016}}
```
### Contributions
Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset. | 9,318 | [
[
-0.0556640625,
-0.04150390625,
0.00948333740234375,
0.01326751708984375,
-0.0171661376953125,
-0.0176239013671875,
-0.003021240234375,
-0.055694580078125,
0.026031494140625,
0.043731689453125,
-0.055633544921875,
-0.052886962890625,
-0.039276123046875,
-0.00383758544921875,
-0.006046295166015625,
0.05670166015625,
-0.004199981689453125,
-0.01319122314453125,
-0.0108795166015625,
-0.03009033203125,
-0.03863525390625,
-0.01119232177734375,
-0.046051025390625,
-0.0014657974243164062,
0.01319122314453125,
0.026031494140625,
0.0545654296875,
0.0335693359375,
0.0399169921875,
0.0221710205078125,
-0.01522064208984375,
0.01171875,
-0.035675048828125,
-0.026092529296875,
-0.00650787353515625,
-0.0286407470703125,
-0.0330810546875,
0.004669189453125,
0.0478515625,
0.0360107421875,
0.005077362060546875,
0.01352691650390625,
-0.01419830322265625,
0.0704345703125,
-0.052642822265625,
0.014373779296875,
-0.0289306640625,
0.02667236328125,
-0.046600341796875,
0.01552581787109375,
-0.0091705322265625,
-0.018218994140625,
-0.003604888916015625,
-0.039581298828125,
0.018951416015625,
0.000045180320739746094,
0.0657958984375,
-0.004665374755859375,
-0.0164031982421875,
0.002544403076171875,
-0.0290985107421875,
0.04669189453125,
-0.03692626953125,
0.0289459228515625,
0.0213165283203125,
0.054779052734375,
0.0038738250732421875,
-0.06561279296875,
-0.0562744140625,
0.00677490234375,
0.00022363662719726562,
0.0088348388671875,
-0.01160430908203125,
-0.01128387451171875,
0.045318603515625,
0.038848876953125,
-0.0390625,
-0.006008148193359375,
-0.034088134765625,
-0.0311737060546875,
0.075439453125,
0.0163421630859375,
0.042816162109375,
-0.004718780517578125,
-0.01053619384765625,
-0.020538330078125,
-0.044281005859375,
0.0276031494140625,
0.02435302734375,
0.0135650634765625,
-0.047637939453125,
0.0418701171875,
-0.04095458984375,
0.044525146484375,
-0.00043392181396484375,
-0.0230712890625,
0.055816650390625,
-0.020050048828125,
-0.023101806640625,
-0.005367279052734375,
0.056884765625,
0.040985107421875,
0.031982421875,
0.02679443359375,
0.00440216064453125,
-0.00885009765625,
-0.011688232421875,
-0.09405517578125,
-0.01416015625,
0.01995849609375,
-0.052459716796875,
-0.0190887451171875,
0.020843505859375,
-0.0662841796875,
-0.0277252197265625,
-0.023651123046875,
0.025634765625,
-0.0198211669921875,
-0.0258941650390625,
-0.00505828857421875,
-0.0086822509765625,
0.04327392578125,
0.033416748046875,
-0.037567138671875,
0.01424407958984375,
0.016357421875,
0.060943603515625,
-0.013885498046875,
-0.00832366943359375,
-0.03887939453125,
-0.0171661376953125,
-0.0198974609375,
0.05133056640625,
-0.0287628173828125,
-0.019500732421875,
0.0092315673828125,
0.036651611328125,
0.0012636184692382812,
-0.0460205078125,
0.049774169921875,
-0.027130126953125,
0.01213836669921875,
-0.026519775390625,
-0.009033203125,
-0.01406097412109375,
0.01422882080078125,
-0.057769775390625,
0.070068359375,
0.01062774658203125,
-0.0621337890625,
0.02630615234375,
-0.0278472900390625,
-0.02960205078125,
0.0121612548828125,
-0.037628173828125,
-0.06329345703125,
0.00234222412109375,
0.050933837890625,
0.042755126953125,
-0.0095367431640625,
0.01514434814453125,
-0.036163330078125,
-0.01526641845703125,
0.003147125244140625,
-0.01062774658203125,
0.09674072265625,
0.0110931396484375,
-0.03570556640625,
0.0010833740234375,
-0.05401611328125,
-0.01361083984375,
0.031982421875,
0.003978729248046875,
0.0136566162109375,
-0.0158538818359375,
0.0184173583984375,
0.02728271484375,
0.003078460693359375,
-0.033538818359375,
0.0112457275390625,
-0.011810302734375,
0.016815185546875,
0.04779052734375,
0.0016632080078125,
0.01308441162109375,
-0.01399993896484375,
0.0304718017578125,
0.01654052734375,
0.038909912109375,
-0.01849365234375,
-0.0594482421875,
-0.03826904296875,
-0.030914306640625,
0.006740570068359375,
0.025238037109375,
-0.05267333984375,
0.03265380859375,
-0.01739501953125,
-0.0279541015625,
-0.01374053955078125,
0.003078460693359375,
0.019287109375,
0.02685546875,
0.02056884765625,
-0.0509033203125,
-0.043914794921875,
-0.0816650390625,
0.0025997161865234375,
0.019683837890625,
0.006427764892578125,
0.0430908203125,
0.064208984375,
-0.0232086181640625,
0.070068359375,
-0.042572021484375,
-0.049285888671875,
-0.01226043701171875,
-0.0205841064453125,
0.0184783935546875,
0.03179931640625,
0.054412841796875,
-0.08355712890625,
-0.055572509765625,
-0.0221405029296875,
-0.06390380859375,
0.003055572509765625,
0.0086669921875,
-0.0100860595703125,
0.022918701171875,
0.044769287109375,
-0.026214599609375,
0.06256103515625,
0.02496337890625,
-0.013916015625,
0.05426025390625,
0.01776123046875,
0.0123443603515625,
-0.057342529296875,
0.01320648193359375,
0.006374359130859375,
-0.0176239013671875,
-0.05072021484375,
0.0014400482177734375,
0.01038360595703125,
-0.0168914794921875,
-0.055145263671875,
0.04852294921875,
-0.0413818359375,
-0.0126190185546875,
-0.006275177001953125,
0.003582000732421875,
0.006626129150390625,
0.03533935546875,
0.01480865478515625,
0.04229736328125,
0.06707763671875,
-0.0408935546875,
0.036163330078125,
0.0281524658203125,
-0.04437255859375,
0.07666015625,
-0.04461669921875,
-0.0093994140625,
-0.0224151611328125,
0.0401611328125,
-0.068115234375,
-0.045196533203125,
0.02288818359375,
-0.042236328125,
0.028717041015625,
-0.004230499267578125,
-0.0291290283203125,
-0.04840087890625,
-0.040771484375,
0.040985107421875,
0.037567138671875,
-0.055908203125,
0.050018310546875,
0.032073974609375,
0.016754150390625,
-0.038909912109375,
-0.06072998046875,
-0.0033130645751953125,
-0.0159454345703125,
-0.0738525390625,
0.04083251953125,
-0.00495147705078125,
-0.01441192626953125,
-0.01026153564453125,
0.003726959228515625,
0.0092620849609375,
-0.0258636474609375,
0.027313232421875,
0.01666259765625,
-0.01258087158203125,
-0.0135040283203125,
-0.023834228515625,
0.0107421875,
-0.01123046875,
0.007030487060546875,
0.041473388671875,
-0.0095367431640625,
-0.033172607421875,
-0.0657958984375,
0.018798828125,
0.028900146484375,
-0.0168914794921875,
0.057525634765625,
0.07958984375,
-0.052886962890625,
0.01107025146484375,
-0.05694580078125,
-0.0007734298706054688,
-0.036651611328125,
0.0171966552734375,
-0.037750244140625,
-0.040679931640625,
0.08294677734375,
0.01220703125,
-0.0146484375,
0.06640625,
0.047515869140625,
0.017974853515625,
0.08416748046875,
0.0433349609375,
-0.0234527587890625,
0.04296875,
-0.044281005859375,
-0.00878143310546875,
-0.0733642578125,
-0.047576904296875,
-0.0189056396484375,
-0.0285797119140625,
-0.0513916015625,
-0.03521728515625,
0.0181427001953125,
0.01093292236328125,
-0.026092529296875,
0.0203094482421875,
-0.049896240234375,
0.0264434814453125,
0.033111572265625,
0.0276336669921875,
0.0015354156494140625,
0.00649261474609375,
0.012237548828125,
-0.0093231201171875,
-0.0175628662109375,
0.0067596435546875,
0.0802001953125,
0.032440185546875,
0.041046142578125,
0.0024929046630859375,
0.0386962890625,
0.0026988983154296875,
0.0180206298828125,
-0.0278778076171875,
0.033538818359375,
-0.0026874542236328125,
-0.0703125,
-0.0189666748046875,
-0.026519775390625,
-0.06842041015625,
0.0180511474609375,
-0.0158538818359375,
-0.08013916015625,
0.048553466796875,
-0.015167236328125,
-0.0238189697265625,
0.0244598388671875,
-0.040496826171875,
0.07366943359375,
-0.0144500732421875,
-0.0281524658203125,
0.01107025146484375,
-0.07257080078125,
0.039031982421875,
0.01482391357421875,
0.0238800048828125,
-0.02294921875,
0.017608642578125,
0.06793212890625,
-0.035888671875,
0.06353759765625,
-0.036102294921875,
0.00759124755859375,
0.0484619140625,
-0.026092529296875,
0.042205810546875,
0.0168914794921875,
0.0156707763671875,
0.0285797119140625,
-0.01534271240234375,
-0.0208587646484375,
-0.0234832763671875,
0.04132080078125,
-0.0513916015625,
-0.0225067138671875,
-0.027435302734375,
-0.0250396728515625,
0.005950927734375,
0.01459503173828125,
0.040313720703125,
0.045318603515625,
-0.0142364501953125,
0.0251007080078125,
0.054229736328125,
-0.055023193359375,
0.0171966552734375,
0.010345458984375,
-0.032470703125,
-0.048187255859375,
0.05816650390625,
0.00948333740234375,
0.015838623046875,
0.0221099853515625,
0.004974365234375,
-0.0229034423828125,
-0.01517486572265625,
-0.033660888671875,
0.0233154296875,
-0.050079345703125,
-0.022552490234375,
-0.043914794921875,
-0.035003662109375,
-0.06329345703125,
-0.00859832763671875,
-0.027679443359375,
-0.016204833984375,
-0.01541900634765625,
0.01025390625,
0.0293426513671875,
0.01392364501953125,
-0.020294189453125,
0.0241546630859375,
-0.006290435791015625,
0.041168212890625,
0.03228759765625,
0.038848876953125,
-0.009307861328125,
-0.04150390625,
-0.0036163330078125,
0.0007352828979492188,
-0.034637451171875,
-0.051513671875,
0.031585693359375,
0.0157012939453125,
0.0438232421875,
0.041168212890625,
-0.0030460357666015625,
0.05279541015625,
-0.02325439453125,
0.05462646484375,
0.025238037109375,
-0.0545654296875,
0.05670166015625,
-0.021636962890625,
0.0213165283203125,
0.050689697265625,
0.027587890625,
-0.0404052734375,
0.0013971328735351562,
-0.06396484375,
-0.05999755859375,
0.06982421875,
0.023529052734375,
-0.0018415451049804688,
0.031402587890625,
0.0205078125,
-0.013397216796875,
0.0170440673828125,
-0.07171630859375,
-0.050384521484375,
-0.01800537109375,
-0.01192474365234375,
-0.01253509521484375,
-0.0007748603820800781,
-0.0162353515625,
-0.041168212890625,
0.03924560546875,
-0.01280975341796875,
0.04351806640625,
0.020050048828125,
-0.007274627685546875,
0.0045166015625,
-0.027557373046875,
0.039764404296875,
0.0361328125,
-0.02734375,
-0.013214111328125,
0.0164031982421875,
-0.04608154296875,
-0.0321044921875,
0.020660400390625,
-0.0011968612670898438,
-0.007965087890625,
0.033782958984375,
0.063720703125,
-0.025970458984375,
-0.045501708984375,
0.06610107421875,
-0.0054168701171875,
-0.0304412841796875,
-0.0338134765625,
-0.0015888214111328125,
-0.01532745361328125,
0.034698486328125,
0.042327880859375,
-0.012969970703125,
0.0247344970703125,
-0.05743408203125,
0.0250701904296875,
0.044464111328125,
-0.033782958984375,
-0.007015228271484375,
0.045074462890625,
-0.002437591552734375,
-0.0170440673828125,
0.042144775390625,
-0.0216064453125,
-0.047698974609375,
0.0802001953125,
0.01096343994140625,
0.053009033203125,
-0.0162811279296875,
0.013519287109375,
0.0517578125,
0.028656005859375,
-0.0030307769775390625,
0.0159149169921875,
-0.0021953582763671875,
-0.0570068359375,
-0.014251708984375,
-0.03692626953125,
-0.0099334716796875,
0.042816162109375,
-0.040283203125,
0.03265380859375,
-0.02783203125,
0.00238037109375,
0.01259613037109375,
0.021697998046875,
-0.083740234375,
0.03839111328125,
0.027008056640625,
0.073486328125,
-0.06884765625,
0.036712646484375,
0.0226287841796875,
-0.0433349609375,
-0.054473876953125,
-0.00658416748046875,
0.02740478515625,
-0.07763671875,
0.04620361328125,
0.0634765625,
0.029815673828125,
-0.0224151611328125,
-0.0645751953125,
-0.05621337890625,
0.09942626953125,
0.0182647705078125,
-0.03240966796875,
0.022003173828125,
0.0143280029296875,
0.026031494140625,
-0.039886474609375,
0.029693603515625,
0.042144775390625,
0.035614013671875,
0.02813720703125,
-0.0567626953125,
0.0149993896484375,
-0.0219573974609375,
0.0187225341796875,
-0.0032367706298828125,
-0.056060791015625,
0.061798095703125,
-0.01334381103515625,
-0.0219268798828125,
-0.0061492919921875,
0.044464111328125,
0.0174102783203125,
0.0382080078125,
0.036224365234375,
0.055755615234375,
0.031402587890625,
-0.0093994140625,
0.07452392578125,
0.01053619384765625,
0.0254364013671875,
0.054931640625,
-0.001613616943359375,
0.0394287109375,
0.01326751708984375,
-0.0311279296875,
0.036163330078125,
0.059326171875,
-0.01509857177734375,
0.051971435546875,
0.0181121826171875,
-0.0037517547607421875,
-0.0059814453125,
-0.00901031494140625,
-0.05963134765625,
0.033233642578125,
0.028472900390625,
-0.0268096923828125,
-0.01120758056640625,
0.0216827392578125,
-0.00986480712890625,
-0.0201416015625,
-0.035064697265625,
0.04302978515625,
-0.00482940673828125,
-0.026885986328125,
0.0382080078125,
-0.005146026611328125,
0.053436279296875,
-0.01849365234375,
0.0115509033203125,
-0.0226898193359375,
0.0222320556640625,
-0.04034423828125,
-0.06439208984375,
0.02862548828125,
-0.0216827392578125,
0.00830841064453125,
0.016143798828125,
0.060333251953125,
-0.01418304443359375,
-0.04827880859375,
0.0169830322265625,
0.00843048095703125,
0.025787353515625,
-0.0239410400390625,
-0.07037353515625,
0.033111572265625,
0.01145172119140625,
-0.03802490234375,
0.0218505859375,
0.03173828125,
-0.007099151611328125,
0.0273284912109375,
0.0279541015625,
-0.00826263427734375,
-0.005596160888671875,
0.0265350341796875,
0.06793212890625,
-0.033538818359375,
-0.02642822265625,
-0.046722412109375,
0.057708740234375,
-0.040679931640625,
-0.024627685546875,
0.0445556640625,
0.04998779296875,
0.08209228515625,
0.01125335693359375,
0.04095458984375,
-0.0284423828125,
0.01473236083984375,
-0.029754638671875,
0.0285491943359375,
-0.06439208984375,
-0.0084075927734375,
-0.035400390625,
-0.06890869140625,
-0.038299560546875,
0.061614990234375,
-0.0212554931640625,
0.024658203125,
0.021759033203125,
0.06634521484375,
-0.006195068359375,
-0.0024394989013671875,
0.01201629638671875,
-0.0022983551025390625,
0.0281219482421875,
0.045806884765625,
0.031829833984375,
-0.057952880859375,
0.0297393798828125,
-0.03692626953125,
-0.0321044921875,
-0.043182373046875,
-0.060028076171875,
-0.08135986328125,
-0.051971435546875,
-0.045166015625,
-0.0292816162109375,
-0.00885009765625,
0.02581787109375,
0.06817626953125,
-0.06683349609375,
0.0013484954833984375,
-0.003566741943359375,
-0.0005254745483398438,
-0.01922607421875,
-0.0205841064453125,
0.03887939453125,
0.0076141357421875,
-0.0472412109375,
-0.0207366943359375,
0.005619049072265625,
0.003421783447265625,
-0.01446533203125,
-0.00806427001953125,
-0.0075225830078125,
-0.0169830322265625,
0.045257568359375,
0.0390625,
-0.039581298828125,
-0.0262298583984375,
-0.021240234375,
0.004852294921875,
0.0159912109375,
0.035797119140625,
-0.0430908203125,
0.035888671875,
0.03485107421875,
0.0308380126953125,
0.0765380859375,
-0.0081024169921875,
-0.001495361328125,
-0.054595947265625,
0.021636962890625,
-0.00621795654296875,
0.029296875,
0.03546142578125,
-0.036163330078125,
0.04681396484375,
0.036712646484375,
-0.0328369140625,
-0.067138671875,
0.0217742919921875,
-0.0855712890625,
-0.0156097412109375,
0.08453369140625,
0.012908935546875,
-0.019989013671875,
0.00801849365234375,
-0.0130157470703125,
0.01299285888671875,
-0.017425537109375,
0.033233642578125,
0.042388916015625,
-0.023651123046875,
-0.0299835205078125,
-0.0516357421875,
0.04632568359375,
-0.0115814208984375,
-0.06817626953125,
-0.021759033203125,
0.03759765625,
0.0250396728515625,
0.03253173828125,
0.06280517578125,
-0.03106689453125,
0.0203399658203125,
0.0042266845703125,
0.0250396728515625,
-0.00006002187728881836,
-0.02838134765625,
-0.0234832763671875,
0.002819061279296875,
-0.02764892578125,
-0.016998291015625
]
] |
cfilt/iitb-english-hindi | 2022-04-26T13:50:22.000Z | [
"region:us"
] | cfilt | null | null | 11 | 968 | 2022-03-02T23:29:22 | <p align="center"><img src="https://huggingface.co/datasets/cfilt/HiNER-collapsed/raw/main/cfilt-dark-vec.png" alt="Computation for Indian Language Technology Logo" width="150" height="150"/></p>
# IITB-English-Hindi Parallel Corpus
[](https://creativecommons.org/licenses/by-nc/4.0/)
[](https://twitter.com/cfiltnlp)
[](https://twitter.com/PeopleCentredAI)
## About
The IIT Bombay English-Hindi corpus contains parallel corpus for English-Hindi as well as monolingual Hindi corpus collected from a variety of existing sources and corpora developed at the Center for Indian Language Technology, IIT Bombay over the years. This page describes the corpus. This corpus has been used at the Workshop on Asian Language Translation Shared Task since 2016 the Hindi-to-English and English-to-Hindi languages pairs and as a pivot language pair for the Hindi-to-Japanese and Japanese-to-Hindi language pairs.
The complete details of this corpus are available at [this URL](https://www.cfilt.iitb.ac.in/iitb_parallel/). We also provide this parallel corpus via browser download from the same URL. We also provide a monolingual Hindi corpus on the same URL.
### Recent Updates
* Version 3.1 - December 2021 - Added 49,400 sentence pairs to the parallel corpus.
* Version 3.0 - August 2020 - Added ~47,000 sentence pairs to the parallel corpus.
## Usage
We provide a notebook that shows how to import the IITB English-Hindi Parallel Corpus from the HuggingFace datasets repository. The notebook also shows how to segment the corpus using BPE tokenization which can be used to train an English-Hindi MT System.
[https://github.com/cfiltnlp/IITB-English-Hindi-PC](https://github.com/cfiltnlp/IITB-English-Hindi-PC)
## Other
You can find a catalogue of other English-Hindi and other Indian language parallel corpora here: [Indic NLP Catalog](https://github.com/indicnlpweb/indicnlp_catalog)
## Maintainer(s)
[Diptesh Kanojia](https://dipteshkanojia.github.io)<br/>
Shivam Mhasker<br/>
## Citation
If you use this corpus or its derivate resources for your research, kindly cite it as follows:
Anoop Kunchukuttan, Pratik Mehta, Pushpak Bhattacharyya. The IIT Bombay English-Hindi Parallel Corpus. Language Resources and Evaluation Conference. 2018.
### BiBTeX Citation
```latex
@inproceedings{kunchukuttan-etal-2018-iit,
title = "The {IIT} {B}ombay {E}nglish-{H}indi Parallel Corpus",
author = "Kunchukuttan, Anoop and
Mehta, Pratik and
Bhattacharyya, Pushpak",
booktitle = "Proceedings of the Eleventh International Conference on Language Resources and Evaluation ({LREC} 2018)",
month = may,
year = "2018",
address = "Miyazaki, Japan",
publisher = "European Language Resources Association (ELRA)",
url = "https://aclanthology.org/L18-1548",
}
```
| 3,113 | [
[
-0.0400390625,
-0.039642333984375,
0.005039215087890625,
0.041778564453125,
-0.019378662109375,
0.0316162109375,
-0.0418701171875,
-0.043914794921875,
0.04180908203125,
-0.0004940032958984375,
-0.0294189453125,
-0.0204925537109375,
-0.0423583984375,
0.0347900390625,
-0.0175933837890625,
0.04156494140625,
-0.0198516845703125,
0.00974273681640625,
-0.017059326171875,
-0.035369873046875,
-0.02313232421875,
-0.033416748046875,
-0.0458984375,
0.0061492919921875,
0.007450103759765625,
0.044219970703125,
0.046783447265625,
0.042022705078125,
0.04681396484375,
0.0266876220703125,
0.0092010498046875,
0.0029354095458984375,
-0.0142974853515625,
-0.00756072998046875,
-0.0186309814453125,
-0.0212249755859375,
-0.01418304443359375,
-0.0099334716796875,
0.07427978515625,
0.045745849609375,
0.00205230712890625,
0.0015459060668945312,
0.0216217041015625,
0.052825927734375,
-0.0286865234375,
0.0272216796875,
-0.0197906494140625,
-0.017608642578125,
-0.06158447265625,
0.007701873779296875,
-0.0168609619140625,
-0.029937744140625,
-0.026458740234375,
-0.037872314453125,
0.0016412734985351562,
0.01406097412109375,
0.09234619140625,
0.003849029541015625,
0.002262115478515625,
-0.00392913818359375,
-0.041046142578125,
0.063720703125,
-0.03656005859375,
0.043487548828125,
0.025177001953125,
0.031280517578125,
0.0138397216796875,
-0.041046142578125,
-0.0628662109375,
-0.01273345947265625,
-0.03143310546875,
0.026885986328125,
0.006534576416015625,
-0.0275421142578125,
0.005268096923828125,
0.034393310546875,
-0.04278564453125,
0.00237274169921875,
-0.06201171875,
-0.005870819091796875,
0.032989501953125,
0.002262115478515625,
0.053924560546875,
-0.0293121337890625,
-0.0380859375,
-0.0308074951171875,
-0.038970947265625,
-0.0011148452758789062,
0.0301055908203125,
0.0289764404296875,
-0.056640625,
0.052276611328125,
-0.0032958984375,
0.04180908203125,
0.01064300537109375,
-0.004833221435546875,
0.04449462890625,
-0.05694580078125,
0.0032958984375,
0.0031681060791015625,
0.089599609375,
0.01226806640625,
0.021697998046875,
-0.006870269775390625,
0.026824951171875,
0.01169586181640625,
-0.007656097412109375,
-0.04205322265625,
0.0196533203125,
0.0035266876220703125,
-0.019378662109375,
0.0191650390625,
0.005725860595703125,
-0.0843505859375,
-0.00860595703125,
-0.0283355712890625,
-0.0090484619140625,
-0.06097412109375,
-0.049285888671875,
-0.01000213623046875,
0.002166748046875,
0.04010009765625,
-0.01432037353515625,
-0.0606689453125,
0.0277862548828125,
0.042938232421875,
0.06878662109375,
-0.025299072265625,
-0.047119140625,
-0.002506256103515625,
0.021270751953125,
0.01007843017578125,
0.059539794921875,
-0.045562744140625,
-0.036041259765625,
-0.00875091552734375,
0.00530242919921875,
-0.031890869140625,
-0.0377197265625,
0.07171630859375,
-0.0050506591796875,
0.0141754150390625,
-0.0206756591796875,
-0.0181884765625,
0.001888275146484375,
0.007808685302734375,
-0.02960205078125,
0.064453125,
-0.00027370452880859375,
-0.08154296875,
-0.0006384849548339844,
-0.043914794921875,
-0.0257720947265625,
0.01050567626953125,
-0.036773681640625,
-0.0201873779296875,
-0.02166748046875,
0.027313232421875,
0.019012451171875,
-0.04010009765625,
0.0126495361328125,
-0.0233612060546875,
-0.0098419189453125,
-0.018341064453125,
-0.00212860107421875,
0.07537841796875,
0.03302001953125,
-0.01467132568359375,
-0.003475189208984375,
-0.055419921875,
-0.011016845703125,
0.019287109375,
-0.009918212890625,
-0.026123046875,
-0.0196380615234375,
0.00653839111328125,
0.00662994384765625,
0.0282440185546875,
-0.06622314453125,
-0.00494384765625,
-0.03680419921875,
0.005096435546875,
0.04132080078125,
-0.0235748291015625,
0.030242919921875,
-0.0230865478515625,
0.04083251953125,
0.01181793212890625,
0.0123291015625,
0.00408172607421875,
-0.0361328125,
-0.05841064453125,
-0.03375244140625,
0.016754150390625,
0.056396484375,
-0.056243896484375,
0.007366180419921875,
-0.041229248046875,
-0.04754638671875,
-0.060211181640625,
0.00035190582275390625,
0.040313720703125,
0.0401611328125,
0.0396728515625,
-0.026031494140625,
-0.049346923828125,
-0.0745849609375,
-0.03656005859375,
-0.006366729736328125,
0.0243377685546875,
-0.00180816650390625,
0.006526947021484375,
-0.0020427703857421875,
0.059539794921875,
-0.031646728515625,
-0.02410888671875,
-0.018463134765625,
-0.003387451171875,
0.007785797119140625,
0.05804443359375,
0.037078857421875,
-0.072509765625,
-0.08526611328125,
0.00817108154296875,
-0.058349609375,
-0.0277099609375,
-0.003360748291015625,
-0.034271240234375,
0.0286712646484375,
0.04718017578125,
-0.051971435546875,
0.027679443359375,
0.03753662109375,
-0.0252685546875,
0.0438232421875,
0.006504058837890625,
0.0168304443359375,
-0.1126708984375,
0.0184478759765625,
0.007232666015625,
-0.00641632080078125,
-0.022003173828125,
0.021087646484375,
-0.0007181167602539062,
-0.0027618408203125,
-0.0185394287109375,
0.07171630859375,
-0.04339599609375,
0.0113067626953125,
0.0033779144287109375,
0.0219573974609375,
-0.020050048828125,
0.039306640625,
-0.0098876953125,
0.0687255859375,
0.039520263671875,
-0.01849365234375,
0.00823974609375,
0.029083251953125,
-0.0170440673828125,
0.04583740234375,
-0.040863037109375,
-0.01007843017578125,
-0.0031490325927734375,
-0.007137298583984375,
-0.053802490234375,
-0.01263427734375,
0.036163330078125,
-0.0423583984375,
0.0517578125,
0.019317626953125,
-0.056060791015625,
-0.01548004150390625,
-0.03790283203125,
0.0394287109375,
0.031768798828125,
-0.0267486572265625,
0.02777099609375,
0.0330810546875,
-0.0285491943359375,
-0.0401611328125,
-0.061004638671875,
-0.004749298095703125,
-0.00955963134765625,
-0.0396728515625,
0.0263671875,
-0.0191650390625,
-0.0243682861328125,
0.021697998046875,
-0.0009360313415527344,
-0.002262115478515625,
-0.036651611328125,
0.02166748046875,
0.022186279296875,
-0.019012451171875,
-0.01702880859375,
0.0111541748046875,
-0.0201873779296875,
-0.0223388671875,
0.006755828857421875,
0.052886962890625,
-0.028839111328125,
-0.02850341796875,
-0.0386962890625,
0.05218505859375,
0.040618896484375,
-0.016326904296875,
0.0645751953125,
0.06573486328125,
-0.0247955322265625,
0.042694091796875,
-0.0552978515625,
0.01166534423828125,
-0.03131103515625,
0.017913818359375,
-0.0380859375,
-0.049285888671875,
0.03411865234375,
0.001247406005859375,
-0.013427734375,
0.06671142578125,
0.05682373046875,
0.0178375244140625,
0.04150390625,
0.055267333984375,
-0.010284423828125,
0.019012451171875,
-0.00040650367736816406,
0.033233642578125,
-0.07196044921875,
-0.03179931640625,
-0.053985595703125,
-0.0023593902587890625,
-0.06976318359375,
-0.035552978515625,
0.0235443115234375,
0.02813720703125,
-0.0195159912109375,
0.041351318359375,
-0.051971435546875,
0.0216522216796875,
0.038604736328125,
-0.00226593017578125,
0.0253448486328125,
0.01483917236328125,
-0.0411376953125,
-0.0200653076171875,
-0.019439697265625,
-0.0272064208984375,
0.05560302734375,
0.0193328857421875,
0.0144500732421875,
0.023681640625,
0.052764892578125,
-0.018280029296875,
0.0165252685546875,
-0.0187225341796875,
0.05303955078125,
-0.0224456787109375,
-0.04949951171875,
0.0001690387725830078,
-0.01800537109375,
-0.06396484375,
0.00772857666015625,
0.003398895263671875,
-0.0526123046875,
0.023223876953125,
-0.021881103515625,
-0.0012788772583007812,
0.0182647705078125,
-0.08203125,
0.048065185546875,
-0.0013904571533203125,
-0.03948974609375,
-0.030670166015625,
-0.04595947265625,
0.0226593017578125,
0.001171112060546875,
0.0233154296875,
-0.00943756103515625,
-0.012603759765625,
0.0567626953125,
-0.049285888671875,
0.056121826171875,
-0.0031566619873046875,
0.04058837890625,
0.0225372314453125,
-0.01641845703125,
0.006763458251953125,
0.00548553466796875,
-0.0200958251953125,
0.0284423828125,
0.007450103759765625,
-0.06378173828125,
-0.0125579833984375,
0.07720947265625,
-0.0670166015625,
-0.04754638671875,
-0.053863525390625,
-0.03509521484375,
-0.0233612060546875,
0.033843994140625,
0.01245880126953125,
0.005054473876953125,
0.01629638671875,
0.0113067626953125,
0.00296783447265625,
-0.02734375,
0.04315185546875,
0.017669677734375,
-0.006969451904296875,
-0.0311126708984375,
0.050933837890625,
0.004940032958984375,
0.0100555419921875,
0.040130615234375,
0.020965576171875,
-0.0272064208984375,
-0.020904541015625,
-0.04315185546875,
0.052215576171875,
-0.03814697265625,
-0.0163421630859375,
-0.05120849609375,
-0.0298004150390625,
-0.04248046875,
-0.01468658447265625,
-0.0157623291015625,
-0.03857421875,
-0.0016889572143554688,
-0.009002685546875,
0.050079345703125,
0.0301513671875,
-0.024078369140625,
0.007595062255859375,
-0.051971435546875,
0.0136566162109375,
-0.00870513916015625,
0.032958984375,
0.0009794235229492188,
-0.023956298828125,
-0.01751708984375,
-0.00502777099609375,
-0.022674560546875,
-0.04815673828125,
0.034515380859375,
0.0016193389892578125,
0.03955078125,
-0.0169219970703125,
-0.010223388671875,
0.06463623046875,
-0.0253753662109375,
0.05596923828125,
0.035797119140625,
-0.04779052734375,
0.018096923828125,
-0.02703857421875,
0.0487060546875,
0.06298828125,
0.060577392578125,
-0.020843505859375,
-0.03814697265625,
-0.032318115234375,
-0.0758056640625,
0.05511474609375,
0.018951416015625,
0.0014591217041015625,
0.0008296966552734375,
0.01416015625,
0.01323699951171875,
-0.00052642822265625,
-0.0526123046875,
-0.040618896484375,
-0.014801025390625,
-0.0419921875,
0.004573822021484375,
-0.01617431640625,
0.0106964111328125,
-0.041900634765625,
0.045135498046875,
0.0226593017578125,
0.02484130859375,
0.028839111328125,
0.00627899169921875,
0.004909515380859375,
0.022979736328125,
0.03857421875,
0.041290283203125,
-0.0091400146484375,
-0.01039886474609375,
-0.00036835670471191406,
-0.0672607421875,
-0.0190582275390625,
0.042877197265625,
-0.01104736328125,
0.0069427490234375,
0.0097808837890625,
0.0556640625,
-0.004077911376953125,
-0.03753662109375,
0.017120361328125,
0.005771636962890625,
0.01036834716796875,
-0.03363037109375,
-0.035186767578125,
0.0302581787109375,
0.011474609375,
0.022613525390625,
0.01561737060546875,
-0.012237548828125,
-0.038848876953125,
0.00846099853515625,
0.00305938720703125,
-0.0149383544921875,
-0.0250244140625,
0.046905517578125,
0.003253936767578125,
-0.0153656005859375,
0.0272064208984375,
-0.03631591796875,
-0.037078857421875,
0.0237579345703125,
0.041534423828125,
0.0701904296875,
-0.0245513916015625,
-0.004505157470703125,
0.06646728515625,
0.017242431640625,
0.01049041748046875,
0.0275421142578125,
0.005298614501953125,
-0.020782470703125,
-0.03387451171875,
-0.084228515625,
-0.011474609375,
-0.002010345458984375,
-0.02569580078125,
0.04522705078125,
-0.036407470703125,
0.0220794677734375,
0.00616455078125,
0.00249481201171875,
-0.047149658203125,
-0.007404327392578125,
0.0046234130859375,
0.056243896484375,
-0.03802490234375,
0.0772705078125,
0.06304931640625,
-0.07177734375,
-0.07403564453125,
0.01107025146484375,
0.0002841949462890625,
-0.06207275390625,
0.044281005859375,
-0.0035343170166015625,
-0.005096435546875,
-0.00727081298828125,
-0.00910186767578125,
-0.07220458984375,
0.0728759765625,
0.021759033203125,
-0.04412841796875,
0.004695892333984375,
0.033111572265625,
0.05224609375,
-0.013946533203125,
0.0311431884765625,
0.01953125,
0.043731689453125,
0.0027179718017578125,
-0.094970703125,
0.0253143310546875,
-0.039764404296875,
-0.0014829635620117188,
0.0238037109375,
-0.080322265625,
0.0595703125,
0.010009765625,
-0.0293121337890625,
0.005840301513671875,
0.051544189453125,
0.030914306640625,
0.0185699462890625,
0.02392578125,
0.058624267578125,
0.014251708984375,
-0.005680084228515625,
0.085693359375,
-0.02813720703125,
0.0152740478515625,
0.07440185546875,
-0.0009703636169433594,
0.0831298828125,
0.053314208984375,
-0.036224365234375,
0.0499267578125,
0.021697998046875,
0.01195526123046875,
0.0343017578125,
0.0003960132598876953,
-0.00809478759765625,
0.0185089111328125,
-0.023651123046875,
-0.038421630859375,
0.0240325927734375,
0.03466796875,
0.0053863525390625,
-0.02850341796875,
0.005275726318359375,
0.03375244140625,
0.043609619140625,
-0.00423431396484375,
0.025604248046875,
0.02691650390625,
-0.056640625,
0.06353759765625,
-0.004650115966796875,
0.0682373046875,
-0.04693603515625,
0.0118865966796875,
-0.01812744140625,
0.021728515625,
-0.0244140625,
-0.06024169921875,
0.068359375,
0.012786865234375,
-0.00812530517578125,
-0.0188446044921875,
0.037567138671875,
-0.037750244140625,
-0.05194091796875,
0.03790283203125,
0.029571533203125,
0.01971435546875,
0.028900146484375,
-0.06024169921875,
0.02520751953125,
0.002902984619140625,
-0.007015228271484375,
0.0423583984375,
0.01329803466796875,
-0.0107879638671875,
0.016754150390625,
0.0401611328125,
0.0160980224609375,
0.0221099853515625,
-0.0085296630859375,
0.0482177734375,
-0.05352783203125,
-0.01861572265625,
-0.0606689453125,
0.035858154296875,
-0.0300140380859375,
-0.01088714599609375,
0.06982421875,
0.060546875,
0.09490966796875,
-0.006046295166015625,
0.05462646484375,
-0.040008544921875,
0.073974609375,
-0.0208892822265625,
0.04681396484375,
-0.0523681640625,
0.01473236083984375,
-0.00919342041015625,
-0.05474853515625,
-0.029541015625,
0.01235198974609375,
-0.0182952880859375,
-0.0037708282470703125,
0.07806396484375,
0.058837890625,
-0.016571044921875,
-0.006198883056640625,
-0.006412506103515625,
0.039642333984375,
-0.0046234130859375,
0.0406494140625,
0.027923583984375,
-0.041046142578125,
0.0447998046875,
-0.043304443359375,
-0.021240234375,
0.00106048583984375,
-0.047698974609375,
-0.03814697265625,
-0.07861328125,
-0.0240325927734375,
-0.0278167724609375,
-0.00603485107421875,
0.062744140625,
0.0175323486328125,
-0.0699462890625,
-0.04315185546875,
-0.00957489013671875,
0.003139495849609375,
0.0024013519287109375,
-0.0210113525390625,
0.0537109375,
-0.0140228271484375,
-0.09234619140625,
0.013427734375,
0.032989501953125,
-0.00809478759765625,
0.0007395744323730469,
-0.00270843505859375,
-0.0689697265625,
-0.0137481689453125,
0.0282135009765625,
0.058624267578125,
-0.0440673828125,
0.003936767578125,
-0.004791259765625,
-0.01849365234375,
0.0177001953125,
0.0275421142578125,
-0.04351806640625,
0.026336669921875,
0.056060791015625,
0.04730224609375,
0.02874755859375,
-0.01401519775390625,
0.02447509765625,
-0.041290283203125,
0.04083251953125,
0.0013246536254882812,
0.0267181396484375,
0.0462646484375,
-0.0262298583984375,
0.046356201171875,
0.032501220703125,
-0.025787353515625,
-0.06689453125,
-0.0017871856689453125,
-0.1004638671875,
-0.00933837890625,
0.08941650390625,
0.0009479522705078125,
-0.0255584716796875,
-0.001316070556640625,
-0.01190948486328125,
0.036407470703125,
-0.0262298583984375,
0.0310516357421875,
0.051116943359375,
-0.00598907470703125,
-0.0066375732421875,
-0.04595947265625,
0.0318603515625,
0.04949951171875,
-0.055816650390625,
-0.01287078857421875,
-0.006366729736328125,
0.00615692138671875,
0.048431396484375,
0.060882568359375,
-0.04425048828125,
-0.00775909423828125,
-0.0025577545166015625,
0.005096435546875,
0.00994110107421875,
0.00975799560546875,
-0.01424407958984375,
0.001651763916015625,
-0.00386810302734375,
-0.031646728515625
]
] |
ybelkada/football-dataset | 2023-01-17T11:47:41.000Z | [
"region:us"
] | ybelkada | null | null | 0 | 966 | 2023-01-17T11:46:21 | ---
dataset_info:
features:
- name: image
dtype: image
- name: text
dtype: string
splits:
- name: train
num_bytes: 2073622.0
num_examples: 6
download_size: 2074835
dataset_size: 2073622.0
---
# Dataset Card for "football-dataset"
Dummy dataset of 6 football players with a caption that can be used to fine-tune any Image Captioning model. | 371 | [
[
-0.032012939453125,
0.0008606910705566406,
-0.01332855224609375,
0.01157379150390625,
-0.046356201171875,
0.0306243896484375,
0.0278472900390625,
-0.01412200927734375,
0.02191162109375,
0.04541015625,
-0.06781005859375,
-0.026611328125,
-0.015777587890625,
0.035003662109375,
-0.02911376953125,
0.07843017578125,
0.0343017578125,
0.016357421875,
-0.0284423828125,
-0.0168304443359375,
-0.064453125,
-0.0106658935546875,
-0.038116455078125,
-0.03973388671875,
0.04302978515625,
0.065185546875,
0.0836181640625,
0.06494140625,
0.057342529296875,
0.0179443359375,
0.03375244140625,
-0.003002166748046875,
-0.041229248046875,
-0.01251220703125,
-0.021728515625,
-0.042694091796875,
-0.03582763671875,
0.00823974609375,
0.0389404296875,
0.011932373046875,
0.0212554931640625,
0.0139312744140625,
-0.05413818359375,
0.03857421875,
-0.006740570068359375,
0.022308349609375,
-0.04229736328125,
0.00478363037109375,
0.0008444786071777344,
-0.02838134765625,
-0.0024700164794921875,
-0.0125732421875,
-0.00434112548828125,
-0.06195068359375,
0.054779052734375,
0.03045654296875,
0.08160400390625,
0.02911376953125,
-0.01190185546875,
0.026947021484375,
-0.0269927978515625,
0.034942626953125,
-0.028472900390625,
-0.015106201171875,
0.01763916015625,
0.067138671875,
0.007785797119140625,
-0.004901885986328125,
-0.02392578125,
0.0066986083984375,
-0.03570556640625,
0.037322998046875,
0.0282745361328125,
0.0107574462890625,
0.059051513671875,
0.063720703125,
-0.0188446044921875,
-0.0025482177734375,
-0.062225341796875,
0.00980377197265625,
0.08251953125,
0.0141448974609375,
0.0243988037109375,
0.00736236572265625,
-0.03057861328125,
-0.019012451171875,
-0.0308380126953125,
-0.032470703125,
0.039215087890625,
0.0256195068359375,
-0.034576416015625,
0.042083740234375,
-0.0264434814453125,
0.03485107421875,
0.0003464221954345703,
0.00875091552734375,
0.0297393798828125,
0.004848480224609375,
-0.033111572265625,
0.00949859619140625,
0.032562255859375,
0.04046630859375,
0.060577392578125,
-0.01971435546875,
-0.054931640625,
0.0161285400390625,
0.0275421142578125,
-0.05816650390625,
-0.0555419921875,
0.036712646484375,
-0.021209716796875,
-0.036529541015625,
0.03167724609375,
-0.0574951171875,
-0.03350830078125,
-0.01444244384765625,
0.03240966796875,
-0.007785797119140625,
-0.006839752197265625,
0.0048828125,
-0.056793212890625,
0.033843994140625,
0.00130462646484375,
-0.05450439453125,
0.034454345703125,
0.017852783203125,
0.01995849609375,
-0.00682830810546875,
-0.013916015625,
-0.023101806640625,
0.0273895263671875,
-0.0462646484375,
0.07513427734375,
-0.036773681640625,
-0.024322509765625,
0.01132965087890625,
0.0252838134765625,
0.0098419189453125,
-0.0252685546875,
0.04180908203125,
-0.027618408203125,
-0.004413604736328125,
-0.048797607421875,
-0.04833984375,
-0.005207061767578125,
0.00830841064453125,
-0.09197998046875,
0.061370849609375,
0.0078887939453125,
-0.031982421875,
0.06292724609375,
-0.0648193359375,
-0.0394287109375,
0.050872802734375,
-0.0181884765625,
-0.05023193359375,
0.037322998046875,
0.0139312744140625,
0.0472412109375,
0.004428863525390625,
0.001476287841796875,
-0.007297515869140625,
-0.047454833984375,
0.032318115234375,
-0.01198577880859375,
0.0265960693359375,
0.008941650390625,
0.0105743408203125,
-0.0083160400390625,
-0.0665283203125,
-0.00970458984375,
0.0172882080078125,
-0.0120391845703125,
0.0157928466796875,
0.0033702850341796875,
0.022247314453125,
0.01302337646484375,
-0.00392913818359375,
-0.0406494140625,
0.0296173095703125,
0.005870819091796875,
0.0002512931823730469,
0.0276947021484375,
-0.002475738525390625,
0.014495849609375,
-0.06585693359375,
0.0213165283203125,
0.027862548828125,
0.0250244140625,
-0.0194091796875,
-0.01134490966796875,
-0.045318603515625,
-0.0325927734375,
0.05767822265625,
0.0312042236328125,
-0.05633544921875,
0.0406494140625,
-0.034423828125,
-0.025177001953125,
-0.039215087890625,
-0.006511688232421875,
0.017364501953125,
0.009674072265625,
0.034454345703125,
-0.0012941360473632812,
-0.0157928466796875,
-0.11065673828125,
0.00939178466796875,
0.0031261444091796875,
0.0024127960205078125,
0.0263671875,
0.055267333984375,
0.0219268798828125,
0.050537109375,
-0.04315185546875,
-0.06719970703125,
-0.005916595458984375,
-0.007770538330078125,
0.033477783203125,
0.058502197265625,
0.05255126953125,
-0.06549072265625,
-0.025421142578125,
-0.018218994140625,
-0.039337158203125,
0.002696990966796875,
-0.032562255859375,
-0.006290435791015625,
0.005329132080078125,
0.0256500244140625,
-0.03460693359375,
0.03643798828125,
0.01678466796875,
-0.0291748046875,
0.017974853515625,
-0.0269927978515625,
0.02532958984375,
-0.04864501953125,
0.006885528564453125,
0.0146331787109375,
-0.00583648681640625,
-0.034942626953125,
-0.00025391578674316406,
0.01050567626953125,
-0.01271820068359375,
-0.0180816650390625,
0.04205322265625,
-0.0706787109375,
-0.0117034912109375,
-0.01812744140625,
-0.0195465087890625,
-0.01447296142578125,
0.0163726806640625,
0.04107666015625,
0.061981201171875,
0.0533447265625,
-0.015716552734375,
0.0439453125,
0.027862548828125,
-0.017120361328125,
0.090087890625,
-0.056304931640625,
-0.006137847900390625,
-0.039093017578125,
0.00027680397033691406,
-0.085693359375,
-0.08563232421875,
0.00897216796875,
-0.0211181640625,
0.0237884521484375,
-0.016143798828125,
-0.0675048828125,
-0.0482177734375,
-0.0159759521484375,
0.04656982421875,
0.037200927734375,
-0.03985595703125,
0.033935546875,
0.014556884765625,
0.03729248046875,
-0.0126953125,
-0.03521728515625,
-0.002044677734375,
-0.036651611328125,
-0.0147857666015625,
0.03350830078125,
-0.01251220703125,
0.02362060546875,
-0.004138946533203125,
-0.0109100341796875,
-0.0306243896484375,
-0.011566162109375,
0.03076171875,
0.0237274169921875,
-0.0089111328125,
0.042510986328125,
0.01336669921875,
-0.00909423828125,
-0.004520416259765625,
0.039520263671875,
0.005916595458984375,
-0.004734039306640625,
0.0253143310546875,
-0.03326416015625,
0.0312042236328125,
0.009307861328125,
0.01110076904296875,
0.048126220703125,
0.0210723876953125,
-0.039520263671875,
-0.034149169921875,
-0.0345458984375,
-0.0413818359375,
-0.0300140380859375,
0.003986358642578125,
-0.062286376953125,
-0.007572174072265625,
0.05023193359375,
0.0249481201171875,
0.00846099853515625,
0.040924072265625,
-0.0024700164794921875,
-0.022613525390625,
0.0462646484375,
0.009033203125,
-0.01213836669921875,
-0.006866455078125,
-0.019134521484375,
-0.037139892578125,
-0.004306793212890625,
-0.03271484375,
-0.0228729248046875,
-0.063720703125,
-0.01349639892578125,
-0.002384185791015625,
-0.017364501953125,
0.0164794921875,
-0.0168304443359375,
0.032989501953125,
-0.0545654296875,
0.0980224609375,
0.036956787109375,
0.02935791015625,
-0.0012426376342773438,
0.0100555419921875,
0.021484375,
0.004547119140625,
-0.059478759765625,
-0.01392364501953125,
0.05377197265625,
0.016693115234375,
0.06488037109375,
0.008819580078125,
0.033843994140625,
0.06036376953125,
0.023834228515625,
-0.0572509765625,
0.043914794921875,
-0.024627685546875,
-0.10540771484375,
-0.03411865234375,
0.003978729248046875,
-0.07098388671875,
-0.0192108154296875,
-0.0521240234375,
-0.03387451171875,
0.01934814453125,
0.03460693359375,
-0.032562255859375,
-0.0036487579345703125,
-0.032501220703125,
0.0611572265625,
-0.022796630859375,
-0.010009765625,
0.0013608932495117188,
-0.04815673828125,
0.005245208740234375,
0.00588226318359375,
-0.017547607421875,
-0.0316162109375,
-0.0084381103515625,
0.044677734375,
-0.019439697265625,
0.05755615234375,
-0.0184783935546875,
0.0179290771484375,
0.007755279541015625,
-0.01727294921875,
0.002838134765625,
0.006378173828125,
0.0162506103515625,
0.00774383544921875,
0.028472900390625,
-0.054840087890625,
-0.011505126953125,
0.035400390625,
-0.0396728515625,
-0.0247039794921875,
-0.038238525390625,
-0.0511474609375,
-0.005115509033203125,
-0.00482177734375,
0.03485107421875,
0.045745849609375,
-0.014373779296875,
0.02117919921875,
0.03448486328125,
-0.006458282470703125,
0.035308837890625,
0.0190582275390625,
0.0002503395080566406,
-0.03948974609375,
0.06646728515625,
0.01390838623046875,
-0.0067596435546875,
0.023651123046875,
0.008392333984375,
-0.033172607421875,
-0.01934814453125,
-0.0262451171875,
0.049407958984375,
-0.03717041015625,
-0.0447998046875,
0.0128936767578125,
-0.022705078125,
0.0010309219360351562,
-0.01168060302734375,
-0.00771331787109375,
-0.0257568359375,
-0.03875732421875,
-0.014068603515625,
0.045318603515625,
0.0469970703125,
-0.00601959228515625,
0.0745849609375,
-0.049102783203125,
0.04547119140625,
0.012908935546875,
0.06329345703125,
-0.05047607421875,
-0.034423828125,
-0.005512237548828125,
-0.0219573974609375,
0.0089111328125,
-0.06353759765625,
0.0123443603515625,
0.034637451171875,
0.0462646484375,
0.04803466796875,
0.004180908203125,
0.026458740234375,
-0.0172271728515625,
0.037689208984375,
0.0207672119140625,
-0.04119873046875,
0.0306854248046875,
-0.0615234375,
0.01280975341796875,
0.05224609375,
0.0310211181640625,
0.00391387939453125,
0.0252532958984375,
-0.0704345703125,
-0.01136016845703125,
0.0535888671875,
0.0146331787109375,
0.0160369873046875,
0.0034236907958984375,
0.0258331298828125,
0.0195465087890625,
0.0262451171875,
-0.04052734375,
-0.0266265869140625,
-0.017120361328125,
-0.0188446044921875,
-0.005092620849609375,
-0.027130126953125,
-0.01953125,
-0.040313720703125,
0.051971435546875,
-0.0270233154296875,
0.0254669189453125,
-0.00514984130859375,
0.00621795654296875,
0.003520965576171875,
-0.01441192626953125,
0.036865234375,
0.0416259765625,
-0.04071044921875,
-0.029754638671875,
-0.00200653076171875,
-0.00289154052734375,
-0.0050506591796875,
0.00865936279296875,
-0.0145416259765625,
0.0330810546875,
0.01248931884765625,
0.04864501953125,
0.02581787109375,
-0.0237579345703125,
0.02978515625,
0.00373077392578125,
-0.059478759765625,
-0.0280303955078125,
0.0278167724609375,
-0.02447509765625,
-0.01025390625,
0.0147552490234375,
0.0006666183471679688,
0.006988525390625,
-0.030242919921875,
0.0264892578125,
0.0209808349609375,
-0.06365966796875,
-0.0188751220703125,
0.054351806640625,
0.033782958984375,
-0.0340576171875,
0.048980712890625,
0.0285491943359375,
-0.0213470458984375,
0.0626220703125,
0.01357269287109375,
0.0147552490234375,
-0.0254974365234375,
0.0555419921875,
0.03887939453125,
0.013641357421875,
-0.034454345703125,
0.04345703125,
0.015625,
-0.060211181640625,
-0.0025653839111328125,
-0.0203857421875,
0.00778961181640625,
0.03485107421875,
-0.06500244140625,
0.0269927978515625,
-0.035491943359375,
-0.01438140869140625,
0.029388427734375,
0.0179595947265625,
-0.07666015625,
0.055877685546875,
-0.0033245086669921875,
0.09857177734375,
-0.07275390625,
0.067138671875,
0.06671142578125,
-0.056488037109375,
-0.034454345703125,
-0.02374267578125,
-0.01788330078125,
-0.048828125,
0.032501220703125,
0.0243988037109375,
0.047393798828125,
0.006191253662109375,
-0.08355712890625,
-0.01520538330078125,
0.0494384765625,
0.0035266876220703125,
-0.0323486328125,
0.0271759033203125,
0.0310211181640625,
0.04046630859375,
-0.05206298828125,
0.0182647705078125,
0.0599365234375,
0.0494384765625,
0.033447265625,
-0.021728515625,
-0.012054443359375,
-0.0118408203125,
-0.0091094970703125,
-0.00771331787109375,
-0.061614990234375,
0.03863525390625,
-0.0054473876953125,
-0.0168304443359375,
0.037750244140625,
0.051361083984375,
0.004741668701171875,
-0.014892578125,
0.039581298828125,
0.01560211181640625,
0.0362548828125,
-0.0394287109375,
0.06793212890625,
0.004917144775390625,
0.0107879638671875,
0.0733642578125,
0.005710601806640625,
0.0267486572265625,
0.03778076171875,
0.0158843994140625,
-0.01404571533203125,
0.033935546875,
-0.05767822265625,
0.03558349609375,
0.04693603515625,
-0.005611419677734375,
-0.06622314453125,
-0.0024585723876953125,
-0.00608062744140625,
0.0223388671875,
0.017181396484375,
-0.03515625,
-0.0006470680236816406,
-0.039093017578125,
-0.0230865478515625,
0.02691650390625,
-0.0298919677734375,
0.065185546875,
-0.01058197021484375,
-0.03607177734375,
0.0116729736328125,
-0.033843994140625,
0.0233306884765625,
-0.0254669189453125,
-0.036651611328125,
-0.03741455078125,
0.003818511962890625,
-0.0263214111328125,
-0.07623291015625,
0.005031585693359375,
-0.03582763671875,
-0.0269012451171875,
0.0204620361328125,
0.051239013671875,
-0.0297393798828125,
-0.0885009765625,
-0.0093536376953125,
0.005764007568359375,
0.046783447265625,
0.00006788969039916992,
-0.06964111328125,
0.0033092498779296875,
-0.0209808349609375,
0.03240966796875,
-0.0007872581481933594,
0.0274810791015625,
0.01263427734375,
0.05633544921875,
0.016815185546875,
0.0303497314453125,
-0.00713348388671875,
0.0201416015625,
0.043487548828125,
-0.046905517578125,
-0.01244354248046875,
-0.033935546875,
0.055511474609375,
-0.056304931640625,
-0.037841796875,
0.02947998046875,
0.08050537109375,
0.0275421142578125,
-0.06121826171875,
0.05364990234375,
0.00849151611328125,
0.03271484375,
-0.0261077880859375,
0.0533447265625,
-0.0345458984375,
-0.004566192626953125,
-0.003757476806640625,
-0.060821533203125,
-0.038360595703125,
0.0499267578125,
0.01517486572265625,
-0.0022106170654296875,
0.028778076171875,
0.0548095703125,
-0.0323486328125,
0.0165557861328125,
0.05706787109375,
-0.01018524169921875,
-0.018524169921875,
0.024749755859375,
0.036865234375,
-0.048553466796875,
0.0265960693359375,
-0.01079559326171875,
-0.008453369140625,
-0.0034198760986328125,
-0.07794189453125,
-0.133544921875,
-0.02252197265625,
-0.0537109375,
-0.010101318359375,
0.0302886962890625,
0.032745361328125,
0.0728759765625,
-0.08099365234375,
-0.01238250732421875,
0.032318115234375,
-0.006732940673828125,
-0.022613525390625,
-0.01230621337890625,
0.0239410400390625,
0.000051140785217285156,
-0.046661376953125,
-0.001300811767578125,
-0.021728515625,
0.0212554931640625,
-0.005985260009765625,
-0.001552581787109375,
-0.0023822784423828125,
0.012237548828125,
0.00543975830078125,
0.0277252197265625,
-0.02496337890625,
-0.040130615234375,
-0.03778076171875,
0.019866943359375,
0.0216064453125,
0.045318603515625,
-0.0496826171875,
0.003963470458984375,
0.0101470947265625,
0.0273284912109375,
0.0130462646484375,
0.054840087890625,
0.03692626953125,
-0.080810546875,
0.00107574462890625,
0.0007562637329101562,
0.00894927978515625,
0.01273345947265625,
-0.0216064453125,
0.0640869140625,
0.0216827392578125,
-0.0223388671875,
-0.041656494140625,
-0.021575927734375,
-0.09600830078125,
-0.01111602783203125,
0.0716552734375,
0.01708984375,
-0.01708984375,
-0.00844573974609375,
-0.0268096923828125,
-0.0188751220703125,
-0.0653076171875,
0.0484619140625,
0.0322265625,
0.0340576171875,
-0.037322998046875,
-0.0225677490234375,
0.05810546875,
-0.01123809814453125,
-0.08062744140625,
-0.0107879638671875,
0.05352783203125,
0.0148773193359375,
-0.01219940185546875,
0.023284912109375,
0.0003807544708251953,
0.0226898193359375,
0.0293121337890625,
0.0016508102416992188,
-0.02850341796875,
-0.0599365234375,
0.0007882118225097656,
-0.0013608932495117188,
-0.0438232421875,
-0.036346435546875
]
] |
roszcz/maestro-v1-sustain | 2023-04-23T13:35:49.000Z | [
"region:us"
] | roszcz | null | null | 0 | 965 | 2023-02-28T20:38:48 | ---
dataset_info:
features:
- name: notes
struct:
- name: duration
sequence: float64
- name: end
sequence: float64
- name: pitch
sequence: int64
- name: start
sequence: float64
- name: velocity
sequence: int64
- name: composer
dtype: string
- name: title
dtype: string
- name: year
dtype: int64
- name: midi_filename
dtype: string
splits:
- name: test
num_bytes: 29686362
num_examples: 177
- name: validation
num_bytes: 25599834
num_examples: 137
- name: train
num_bytes: 226534277
num_examples: 962
download_size: 87287914
dataset_size: 281820473
---
# Dataset Card for "maestro-v1-sustain"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 842 | [
[
-0.046905517578125,
-0.0219879150390625,
0.0029010772705078125,
0.0274658203125,
-0.0102081298828125,
0.0015544891357421875,
0.0230255126953125,
0.00018227100372314453,
0.07342529296875,
0.035736083984375,
-0.080078125,
-0.036346435546875,
-0.0273895263671875,
-0.0180511474609375,
-0.01465606689453125,
0.086669921875,
0.0130615234375,
0.00968170166015625,
-0.035797119140625,
-0.00891876220703125,
-0.048126220703125,
-0.01788330078125,
-0.049896240234375,
-0.0380859375,
0.06402587890625,
0.06072998046875,
0.0267333984375,
0.0225982666015625,
0.049957275390625,
0.01297760009765625,
-0.01169586181640625,
-0.0145721435546875,
-0.04248046875,
0.01398468017578125,
-0.0082855224609375,
-0.018707275390625,
-0.08624267578125,
0.0056915283203125,
0.05364990234375,
0.031829833984375,
-0.0171966552734375,
0.049346923828125,
-0.01715087890625,
0.07916259765625,
-0.0118255615234375,
0.034698486328125,
-0.0169830322265625,
0.0007085800170898438,
-0.05413818359375,
-0.01312255859375,
0.02593994140625,
-0.03497314453125,
0.001796722412109375,
-0.07708740234375,
-0.010009765625,
-0.00058746337890625,
0.058746337890625,
0.03155517578125,
0.01143646240234375,
0.02569580078125,
-0.0308380126953125,
0.004184722900390625,
-0.0015239715576171875,
0.0139312744140625,
0.05780029296875,
0.0540771484375,
0.01548004150390625,
-0.038604736328125,
-0.0235137939453125,
0.0119476318359375,
0.0019464492797851562,
0.03607177734375,
0.0081024169921875,
-0.0007276535034179688,
0.026214599609375,
0.05279541015625,
-0.029022216796875,
0.00043320655822753906,
-0.06890869140625,
-0.01058197021484375,
0.04034423828125,
0.0186920166015625,
0.003421783447265625,
0.0004703998565673828,
-0.0202484130859375,
-0.00814056396484375,
-0.056488037109375,
0.005245208740234375,
0.036346435546875,
0.0104522705078125,
-0.0670166015625,
0.03839111328125,
-0.005657196044921875,
0.0372314453125,
0.0282440185546875,
0.030303955078125,
0.0426025390625,
-0.03387451171875,
-0.0159912109375,
0.0117645263671875,
0.007572174072265625,
0.026763916015625,
0.0033130645751953125,
0.007251739501953125,
0.00007843971252441406,
-0.00455474853515625,
0.0418701171875,
-0.058135986328125,
-0.058074951171875,
0.024749755859375,
-0.0416259765625,
-0.0244903564453125,
0.03717041015625,
-0.06097412109375,
-0.0286102294921875,
-0.03466796875,
0.0235595703125,
0.01425933837890625,
-0.05523681640625,
0.006320953369140625,
-0.0411376953125,
0.04058837890625,
0.010223388671875,
-0.05694580078125,
0.04345703125,
0.051849365234375,
0.04388427734375,
0.0006961822509765625,
-0.0155029296875,
-0.040435791015625,
0.0037994384765625,
0.004302978515625,
0.064453125,
-0.01934814453125,
-0.04266357421875,
-0.0028781890869140625,
0.0282745361328125,
0.0005564689636230469,
-0.039215087890625,
0.08465576171875,
-0.02752685546875,
-0.00609588623046875,
-0.058074951171875,
-0.034759521484375,
-0.0096588134765625,
0.0296173095703125,
-0.07659912109375,
0.07476806640625,
0.03564453125,
-0.047149658203125,
0.035064697265625,
-0.0843505859375,
-0.035064697265625,
0.039825439453125,
0.0078277587890625,
-0.053375244140625,
0.018463134765625,
-0.01247406005859375,
0.0260467529296875,
-0.006435394287109375,
0.0093231201171875,
-0.045867919921875,
-0.005596160888671875,
-0.005847930908203125,
-0.0003349781036376953,
0.0623779296875,
0.0115509033203125,
0.031768798828125,
0.016265869140625,
-0.06573486328125,
-0.00949859619140625,
0.01105499267578125,
-0.006542205810546875,
-0.0086669921875,
-0.006801605224609375,
0.022247314453125,
-0.007030487060546875,
0.0262603759765625,
-0.0307769775390625,
0.0489501953125,
0.00766754150390625,
-0.00643157958984375,
0.059234619140625,
0.01213836669921875,
0.0140228271484375,
-0.054046630859375,
0.05084228515625,
-0.0111083984375,
0.043182373046875,
-0.001819610595703125,
-0.01497650146484375,
-0.045684814453125,
-0.009857177734375,
0.0304412841796875,
0.053619384765625,
-0.037872314453125,
0.04248046875,
-0.01043701171875,
-0.0615234375,
-0.03826904296875,
0.00937652587890625,
0.0162811279296875,
0.0364990234375,
0.031341552734375,
-0.032196044921875,
-0.0634765625,
-0.06951904296875,
0.029449462890625,
0.0018529891967773438,
0.01232147216796875,
0.0224761962890625,
0.0401611328125,
-0.020477294921875,
0.056549072265625,
-0.042510986328125,
-0.0308990478515625,
-0.004459381103515625,
-0.03155517578125,
0.037139892578125,
0.0645751953125,
0.0733642578125,
-0.05377197265625,
-0.0218048095703125,
-0.031280517578125,
-0.040008544921875,
-0.0174713134765625,
0.0244140625,
-0.035186767578125,
-0.0198516845703125,
0.007061004638671875,
-0.0255889892578125,
0.02001953125,
0.064208984375,
-0.04351806640625,
0.025604248046875,
-0.00798797607421875,
0.0142822265625,
-0.07708740234375,
0.031036376953125,
-0.003448486328125,
-0.01522064208984375,
-0.031036376953125,
-0.0038928985595703125,
-0.00994110107421875,
-0.0028209686279296875,
-0.0083160400390625,
0.031829833984375,
-0.01483154296875,
0.002178192138671875,
-0.007762908935546875,
-0.005764007568359375,
-0.01247406005859375,
0.0108184814453125,
0.01035308837890625,
0.036895751953125,
0.0931396484375,
-0.04266357421875,
0.052886962890625,
0.04241943359375,
-0.0030364990234375,
0.0938720703125,
-0.09332275390625,
-0.0011425018310546875,
-0.01300048828125,
0.00641632080078125,
-0.059814453125,
-0.044281005859375,
0.042694091796875,
-0.0290985107421875,
0.044525146484375,
-0.0382080078125,
-0.04644775390625,
-0.052642822265625,
-0.0286102294921875,
0.03704833984375,
0.044097900390625,
-0.0496826171875,
0.01641845703125,
0.06488037109375,
-0.00789642333984375,
0.0246124267578125,
-0.048583984375,
-0.00628662109375,
-0.025054931640625,
-0.027313232421875,
0.0251312255859375,
-0.04119873046875,
-0.00627899169921875,
-0.027313232421875,
0.0006799697875976562,
-0.0012950897216796875,
0.0194244384765625,
0.04693603515625,
0.02569580078125,
-0.0013828277587890625,
0.030914306640625,
0.0210113525390625,
-0.064208984375,
0.005062103271484375,
-0.03082275390625,
0.0176544189453125,
-0.0007076263427734375,
-0.0114593505859375,
-0.0419921875,
0.0247039794921875,
0.03192138671875,
-0.01442718505859375,
0.0340576171875,
0.049957275390625,
-0.028472900390625,
0.00643157958984375,
-0.02447509765625,
-0.002590179443359375,
-0.0382080078125,
-0.0168304443359375,
-0.00799560546875,
-0.032073974609375,
0.038665771484375,
-0.01031494140625,
-0.0044708251953125,
0.06854248046875,
0.037933349609375,
-0.01209259033203125,
0.0291748046875,
0.03076171875,
-0.04266357421875,
0.037872314453125,
-0.03302001953125,
-0.041168212890625,
-0.0516357421875,
-0.034637451171875,
-0.03857421875,
-0.045623779296875,
-0.03338623046875,
-0.0108795166015625,
0.041168212890625,
0.006771087646484375,
-0.0254364013671875,
0.04083251953125,
-0.052825927734375,
0.0221099853515625,
0.057647705078125,
0.0199127197265625,
-0.01641845703125,
-0.011138916015625,
0.030181884765625,
0.01544189453125,
-0.054290771484375,
-0.0069122314453125,
0.076171875,
0.0227813720703125,
0.0667724609375,
0.0232086181640625,
0.04876708984375,
0.0282440185546875,
0.0168914794921875,
-0.0225830078125,
0.0201873779296875,
0.006977081298828125,
-0.043060302734375,
-0.0024852752685546875,
-0.0004684925079345703,
-0.05999755859375,
-0.02667236328125,
-0.03125,
-0.0042724609375,
0.0054168701171875,
0.040771484375,
-0.0003592967987060547,
0.005130767822265625,
-0.03570556640625,
0.0838623046875,
-0.0150146484375,
-0.0177001953125,
-0.007709503173828125,
-0.051910400390625,
0.0027904510498046875,
0.0156402587890625,
-0.01476287841796875,
0.00940704345703125,
0.001338958740234375,
0.05419921875,
-0.04278564453125,
0.0692138671875,
-0.0557861328125,
-0.0034160614013671875,
0.0218048095703125,
-0.0249176025390625,
0.0303955078125,
0.035186767578125,
-0.00881195068359375,
-0.0030345916748046875,
-0.0026569366455078125,
-0.04608154296875,
-0.007030487060546875,
0.049957275390625,
-0.035980224609375,
-0.0037078857421875,
-0.0086669921875,
-0.008056640625,
0.00019860267639160156,
0.00971221923828125,
0.018280029296875,
0.03887939453125,
-0.03411865234375,
0.01001739501953125,
0.07122802734375,
0.0278167724609375,
0.0106201171875,
0.03216552734375,
-0.016693115234375,
-0.042205810546875,
0.0677490234375,
0.01861572265625,
-0.01071929931640625,
0.017303466796875,
0.0258941650390625,
-0.011566162109375,
-0.0323486328125,
-0.04345703125,
-0.0038661956787109375,
-0.00714111328125,
-0.0340576171875,
-0.0164337158203125,
-0.0022983551025390625,
-0.0175018310546875,
-0.0257415771484375,
-0.0283203125,
-0.0419921875,
-0.049346923828125,
-0.052520751953125,
0.09033203125,
0.033966064453125,
-0.0404052734375,
0.0367431640625,
-0.058013916015625,
0.0369873046875,
0.010467529296875,
0.0780029296875,
-0.026702880859375,
-0.034515380859375,
-0.02801513671875,
-0.0128173828125,
-0.007640838623046875,
-0.04144287109375,
-0.0224151611328125,
0.020111083984375,
0.071044921875,
0.037994384765625,
-0.01340484619140625,
0.03753662109375,
-0.01450347900390625,
0.062255859375,
0.00852203369140625,
-0.047882080078125,
0.0684814453125,
-0.039825439453125,
0.03314208984375,
0.0810546875,
0.03179931640625,
-0.026824951171875,
0.00482177734375,
-0.06536865234375,
-0.04638671875,
0.0282745361328125,
0.0000998377799987793,
0.00786590576171875,
0.00640106201171875,
0.0290374755859375,
0.021820068359375,
0.0283355712890625,
-0.046051025390625,
-0.0728759765625,
-0.0272369384765625,
-0.007061004638671875,
-0.004375457763671875,
-0.0231475830078125,
-0.0179595947265625,
-0.059967041015625,
0.052276611328125,
-0.0003085136413574219,
0.0225067138671875,
0.0121612548828125,
0.0268707275390625,
-0.011474609375,
-0.0233001708984375,
0.049102783203125,
0.0239715576171875,
-0.01727294921875,
-0.016326904296875,
-0.00966644287109375,
-0.02850341796875,
-0.025421142578125,
0.039581298828125,
-0.01512908935546875,
-0.01528167724609375,
0.0300140380859375,
0.053070068359375,
-0.0029087066650390625,
-0.01849365234375,
0.026336669921875,
0.016021728515625,
-0.031890869140625,
-0.037353515625,
0.01279449462890625,
0.00711822509765625,
0.0221405029296875,
-0.003322601318359375,
0.0108489990234375,
0.0137786865234375,
-0.022857666015625,
0.0249786376953125,
0.0109100341796875,
-0.05517578125,
-0.049407958984375,
0.060302734375,
0.031494140625,
-0.026275634765625,
0.0400390625,
-0.0234527587890625,
-0.041778564453125,
0.039825439453125,
0.0160675048828125,
0.06512451171875,
-0.017822265625,
0.0281524658203125,
0.04010009765625,
0.01258087158203125,
-0.00719451904296875,
0.06683349609375,
-0.040802001953125,
-0.01558685302734375,
0.01201629638671875,
-0.01430511474609375,
-0.0180816650390625,
-0.044952392578125,
-0.0684814453125,
0.0170745849609375,
-0.04046630859375,
-0.0066375732421875,
-0.01812744140625,
0.0161895751953125,
-0.053741455078125,
-0.00939178466796875,
-0.00728607177734375,
0.10302734375,
-0.052886962890625,
0.0653076171875,
0.041656494140625,
-0.0374755859375,
-0.0343017578125,
-0.035003662109375,
0.0180511474609375,
-0.046539306640625,
0.0179443359375,
-0.00423431396484375,
0.01416778564453125,
-0.00807952880859375,
-0.0657958984375,
-0.047332763671875,
0.10418701171875,
0.0017900466918945312,
-0.04681396484375,
0.052734375,
-0.043060302734375,
0.04071044921875,
-0.0101776123046875,
-0.00989532470703125,
0.01910400390625,
0.08551025390625,
0.010772705078125,
-0.06036376953125,
-0.01690673828125,
-0.044281005859375,
-0.0303192138671875,
0.03448486328125,
-0.052825927734375,
0.03076171875,
0.0010137557983398438,
0.0035552978515625,
0.02093505859375,
0.039031982421875,
0.01287841796875,
0.027313232421875,
0.019866943359375,
0.059661865234375,
0.070556640625,
-0.0215911865234375,
0.08892822265625,
-0.0150909423828125,
0.036834716796875,
0.08087158203125,
-0.010040283203125,
0.01296234130859375,
0.030548095703125,
-0.0126953125,
0.019073486328125,
0.038604736328125,
-0.05743408203125,
0.0408935546875,
0.03668212890625,
-0.01250457763671875,
-0.01499176025390625,
-0.001140594482421875,
-0.057220458984375,
0.01058197021484375,
0.0132904052734375,
-0.03570556640625,
0.006496429443359375,
0.007030487060546875,
0.003082275390625,
-0.013763427734375,
-0.06256103515625,
0.053070068359375,
-0.0201873779296875,
-0.033843994140625,
0.007080078125,
-0.0210723876953125,
0.0271453857421875,
-0.06585693359375,
-0.019439697265625,
-0.0062103271484375,
0.005329132080078125,
-0.033660888671875,
-0.06683349609375,
0.043487548828125,
-0.03070068359375,
-0.039276123046875,
-0.027496337890625,
0.05059814453125,
-0.0266571044921875,
-0.061309814453125,
0.00542449951171875,
0.0218048095703125,
0.005695343017578125,
0.007602691650390625,
-0.061248779296875,
0.01384735107421875,
-0.031280517578125,
-0.00794219970703125,
0.006305694580078125,
-0.00160980224609375,
0.033294677734375,
0.04193115234375,
0.0232696533203125,
-0.000009000301361083984,
-0.0214385986328125,
0.01953125,
0.07073974609375,
-0.034942626953125,
-0.01910400390625,
-0.033111572265625,
0.054840087890625,
-0.0247802734375,
-0.061431884765625,
0.053924560546875,
0.0684814453125,
0.060028076171875,
-0.0176849365234375,
0.0406494140625,
-0.0206146240234375,
0.044189453125,
-0.03240966796875,
0.052215576171875,
-0.03619384765625,
-0.006221771240234375,
-0.021270751953125,
-0.034454345703125,
-0.045989990234375,
0.037628173828125,
0.0225067138671875,
-0.006103515625,
0.000022709369659423828,
0.055145263671875,
-0.016845703125,
0.006313323974609375,
-0.0022563934326171875,
0.01123809814453125,
-0.004383087158203125,
0.01171112060546875,
0.0109100341796875,
-0.034820556640625,
-0.00974273681640625,
0.00843048095703125,
-0.0250396728515625,
-0.00482940673828125,
-0.05340576171875,
-0.05316162109375,
-0.04248046875,
-0.041046142578125,
-0.02880859375,
-0.007781982421875,
0.06451416015625,
0.07159423828125,
-0.042236328125,
-0.008819580078125,
-0.0181884765625,
0.032562255859375,
-0.034515380859375,
-0.0105743408203125,
0.0369873046875,
0.020904541015625,
-0.02935791015625,
0.01415252685546875,
0.01495361328125,
0.013946533203125,
-0.0311279296875,
-0.0138702392578125,
0.002002716064453125,
-0.0123443603515625,
0.0328369140625,
0.04571533203125,
0.0005726814270019531,
-0.0256195068359375,
-0.0224151611328125,
0.026611328125,
0.008697509765625,
0.06683349609375,
-0.058135986328125,
0.0233001708984375,
0.0399169921875,
0.0253143310546875,
0.036773681640625,
-0.00504302978515625,
0.0307159423828125,
-0.045166015625,
-0.0177154541015625,
-0.01007843017578125,
0.040924072265625,
-0.00958251953125,
-0.0169830322265625,
0.06036376953125,
0.0361328125,
-0.040313720703125,
-0.027984619140625,
0.0251922607421875,
-0.1300048828125,
0.0256805419921875,
0.045867919921875,
0.00830078125,
-0.002849578857421875,
-0.0014162063598632812,
-0.046722412109375,
-0.0072479248046875,
-0.042877197265625,
0.01904296875,
0.027099609375,
0.01523590087890625,
-0.0233306884765625,
-0.015655517578125,
0.03314208984375,
-0.0278778076171875,
-0.08636474609375,
-0.00041103363037109375,
0.04364013671875,
0.007709503173828125,
0.00464630126953125,
0.046173095703125,
-0.020965576171875,
0.0247344970703125,
0.017303466796875,
-0.0027980804443359375,
-0.039459228515625,
-0.0416259765625,
-0.0257415771484375,
0.0167388916015625,
-0.018035888671875,
-0.0357666015625
]
] |
pragmeval | 2023-06-01T14:59:54.000Z | [
"task_categories:text-classification",
"task_ids:multi-class-classification",
"annotations_creators:found",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"size_categories:1K<n<10K",
"size_categories:n<1K",
"source_datasets:original",
"language:en",
"license:unknown",
"region:us"
] | null | Evaluation of language understanding with a 11 datasets benchmark focusing on discourse and pragmatics | @misc{sileo2019discoursebased,
title={Discourse-Based Evaluation of Language Understanding},
author={Damien Sileo and Tim Van-de-Cruys and Camille Pradel and Philippe Muller},
year={2019},
eprint={1907.08672},
archivePrefix={arXiv},
primaryClass={cs.CL}
} | 3 | 963 | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- found
language:
- en
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
- 1K<n<10K
- n<1K
source_datasets:
- original
task_categories:
- text-classification
task_ids:
- multi-class-classification
pretty_name: pragmeval
dataset_info:
- config_name: verifiability
features:
- name: sentence
dtype: string
- name: label
dtype:
class_label:
names:
'0': experiential
'1': unverifiable
'2': non-experiential
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 592520
num_examples: 5712
- name: validation
num_bytes: 65215
num_examples: 634
- name: test
num_bytes: 251799
num_examples: 2424
download_size: 5330724
dataset_size: 909534
- config_name: emobank-arousal
features:
- name: sentence
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 567660
num_examples: 5470
- name: validation
num_bytes: 71221
num_examples: 684
- name: test
num_bytes: 69276
num_examples: 683
download_size: 5330724
dataset_size: 708157
- config_name: switchboard
features:
- name: sentence
dtype: string
- name: label
dtype:
class_label:
names:
'0': Response Acknowledgement
'1': Uninterpretable
'2': Or-Clause
'3': Reject
'4': Statement-non-opinion
'5': 3rd-party-talk
'6': Repeat-phrase
'7': Hold Before Answer/Agreement
'8': Signal-non-understanding
'9': Offers, Options Commits
'10': Agree/Accept
'11': Dispreferred Answers
'12': Hedge
'13': Action-directive
'14': Tag-Question
'15': Self-talk
'16': Yes-No-Question
'17': Rhetorical-Question
'18': No Answers
'19': Open-Question
'20': Conventional-closing
'21': Other Answers
'22': Acknowledge (Backchannel)
'23': Wh-Question
'24': Declarative Wh-Question
'25': Thanking
'26': Yes Answers
'27': Affirmative Non-yes Answers
'28': Declarative Yes-No-Question
'29': Backchannel in Question Form
'30': Apology
'31': Downplayer
'32': Conventional-opening
'33': Collaborative Completion
'34': Summarize/Reformulate
'35': Negative Non-no Answers
'36': Statement-opinion
'37': Appreciation
'38': Other
'39': Quotation
'40': Maybe/Accept-part
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 1021220
num_examples: 18930
- name: validation
num_bytes: 116058
num_examples: 2113
- name: test
num_bytes: 34013
num_examples: 649
download_size: 5330724
dataset_size: 1171291
- config_name: persuasiveness-eloquence
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 153946
num_examples: 725
- name: validation
num_bytes: 19376
num_examples: 91
- name: test
num_bytes: 18379
num_examples: 90
download_size: 5330724
dataset_size: 191701
- config_name: mrda
features:
- name: sentence
dtype: string
- name: label
dtype:
class_label:
names:
'0': Declarative-Question
'1': Statement
'2': Reject
'3': Or-Clause
'4': 3rd-party-talk
'5': Continuer
'6': Hold Before Answer/Agreement
'7': Assessment/Appreciation
'8': Signal-non-understanding
'9': Floor Holder
'10': Sympathy
'11': Dispreferred Answers
'12': Reformulate/Summarize
'13': Exclamation
'14': Interrupted/Abandoned/Uninterpretable
'15': Expansions of y/n Answers
'16': Action-directive
'17': Tag-Question
'18': Accept
'19': Rhetorical-question Continue
'20': Self-talk
'21': Rhetorical-Question
'22': Yes-No-question
'23': Open-Question
'24': Rising Tone
'25': Other Answers
'26': Commit
'27': Wh-Question
'28': Repeat
'29': Follow Me
'30': Thanking
'31': Offer
'32': About-task
'33': Reject-part
'34': Affirmative Non-yes Answers
'35': Apology
'36': Downplayer
'37': Humorous Material
'38': Accept-part
'39': Collaborative Completion
'40': Mimic Other
'41': Understanding Check
'42': Misspeak Self-Correction
'43': Or-Question
'44': Topic Change
'45': Negative Non-no Answers
'46': Floor Grabber
'47': Correct-misspeaking
'48': Maybe
'49': Acknowledge-answer
'50': Defending/Explanation
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 963913
num_examples: 14484
- name: validation
num_bytes: 111813
num_examples: 1630
- name: test
num_bytes: 419797
num_examples: 6459
download_size: 5330724
dataset_size: 1495523
- config_name: gum
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': preparation
'1': evaluation
'2': circumstance
'3': solutionhood
'4': justify
'5': result
'6': evidence
'7': purpose
'8': concession
'9': elaboration
'10': background
'11': condition
'12': cause
'13': restatement
'14': motivation
'15': antithesis
'16': no_relation
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 270401
num_examples: 1700
- name: validation
num_bytes: 35405
num_examples: 259
- name: test
num_bytes: 40334
num_examples: 248
download_size: 5330724
dataset_size: 346140
- config_name: emergent
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': observing
'1': for
'2': against
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 313257
num_examples: 2076
- name: validation
num_bytes: 38948
num_examples: 259
- name: test
num_bytes: 38842
num_examples: 259
download_size: 5330724
dataset_size: 391047
- config_name: persuasiveness-relevance
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 153158
num_examples: 725
- name: validation
num_bytes: 19663
num_examples: 91
- name: test
num_bytes: 18880
num_examples: 90
download_size: 5330724
dataset_size: 191701
- config_name: persuasiveness-specificity
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 106594
num_examples: 504
- name: validation
num_bytes: 13766
num_examples: 62
- name: test
num_bytes: 12712
num_examples: 62
download_size: 5330724
dataset_size: 133072
- config_name: persuasiveness-strength
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 79679
num_examples: 371
- name: validation
num_bytes: 10052
num_examples: 46
- name: test
num_bytes: 10225
num_examples: 46
download_size: 5330724
dataset_size: 99956
- config_name: emobank-dominance
features:
- name: sentence
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 660303
num_examples: 6392
- name: validation
num_bytes: 86802
num_examples: 798
- name: test
num_bytes: 83319
num_examples: 798
download_size: 5330724
dataset_size: 830424
- config_name: squinky-implicature
features:
- name: sentence
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 471552
num_examples: 3724
- name: validation
num_bytes: 58087
num_examples: 465
- name: test
num_bytes: 56549
num_examples: 465
download_size: 5330724
dataset_size: 586188
- config_name: sarcasm
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': notsarc
'1': sarc
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 2177332
num_examples: 3754
- name: validation
num_bytes: 257834
num_examples: 469
- name: test
num_bytes: 269724
num_examples: 469
download_size: 5330724
dataset_size: 2704890
- config_name: squinky-formality
features:
- name: sentence
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 459721
num_examples: 3622
- name: validation
num_bytes: 59921
num_examples: 453
- name: test
num_bytes: 58242
num_examples: 452
download_size: 5330724
dataset_size: 577884
- config_name: stac
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': Comment
'1': Contrast
'2': Q_Elab
'3': Parallel
'4': Explanation
'5': Narration
'6': Continuation
'7': Result
'8': Acknowledgement
'9': Alternation
'10': Question_answer_pair
'11': Correction
'12': Clarification_question
'13': Conditional
'14': Sequence
'15': Elaboration
'16': Background
'17': no_relation
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 645969
num_examples: 11230
- name: validation
num_bytes: 71400
num_examples: 1247
- name: test
num_bytes: 70451
num_examples: 1304
download_size: 5330724
dataset_size: 787820
- config_name: pdtb
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': Synchrony
'1': Contrast
'2': Asynchronous
'3': Conjunction
'4': List
'5': Condition
'6': Pragmatic concession
'7': Restatement
'8': Pragmatic cause
'9': Alternative
'10': Pragmatic condition
'11': Pragmatic contrast
'12': Instantiation
'13': Exception
'14': Cause
'15': Concession
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 2968638
num_examples: 12907
- name: validation
num_bytes: 276997
num_examples: 1204
- name: test
num_bytes: 235851
num_examples: 1085
download_size: 5330724
dataset_size: 3481486
- config_name: persuasiveness-premisetype
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': testimony
'1': warrant
'2': invented_instance
'3': common_knowledge
'4': statistics
'5': analogy
'6': definition
'7': real_example
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 122631
num_examples: 566
- name: validation
num_bytes: 15920
num_examples: 71
- name: test
num_bytes: 14395
num_examples: 70
download_size: 5330724
dataset_size: 152946
- config_name: squinky-informativeness
features:
- name: sentence
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 464855
num_examples: 3719
- name: validation
num_bytes: 60447
num_examples: 465
- name: test
num_bytes: 56872
num_examples: 464
download_size: 5330724
dataset_size: 582174
- config_name: persuasiveness-claimtype
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: label
dtype:
class_label:
names:
'0': Value
'1': Fact
'2': Policy
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 31259
num_examples: 160
- name: validation
num_bytes: 3803
num_examples: 20
- name: test
num_bytes: 3717
num_examples: 19
download_size: 5330724
dataset_size: 38779
- config_name: emobank-valence
features:
- name: sentence
dtype: string
- name: label
dtype:
class_label:
names:
'0': low
'1': high
- name: idx
dtype: int32
splits:
- name: train
num_bytes: 539652
num_examples: 5150
- name: validation
num_bytes: 62809
num_examples: 644
- name: test
num_bytes: 66178
num_examples: 643
download_size: 5330724
dataset_size: 668639
config_names:
- emergent
- emobank-arousal
- emobank-dominance
- emobank-valence
- gum
- mrda
- pdtb
- persuasiveness-claimtype
- persuasiveness-eloquence
- persuasiveness-premisetype
- persuasiveness-relevance
- persuasiveness-specificity
- persuasiveness-strength
- sarcasm
- squinky-formality
- squinky-implicature
- squinky-informativeness
- stac
- switchboard
- verifiability
---
# Dataset Card for pragmeval
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:**
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
[More Information Needed]
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
[More Information Needed]
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Contributions
Thanks to [@sileod](https://github.com/sileod) for adding this dataset. | 17,069 | [
[
-0.0305023193359375,
-0.03179931640625,
0.006168365478515625,
0.0208892822265625,
-0.030364990234375,
0.00601959228515625,
-0.016876220703125,
-0.0180816650390625,
0.040985107421875,
0.0406494140625,
-0.059722900390625,
-0.07305908203125,
-0.04644775390625,
0.0031452178955078125,
-0.00513458251953125,
0.087646484375,
-0.007244110107421875,
-0.0033435821533203125,
-0.0196990966796875,
-0.01558685302734375,
-0.038848876953125,
-0.032470703125,
-0.025360107421875,
-0.01419830322265625,
0.03057861328125,
0.06573486328125,
0.0416259765625,
0.050689697265625,
0.055755615234375,
0.020416259765625,
-0.00487518310546875,
0.00926971435546875,
-0.045745849609375,
-0.01306915283203125,
-0.0201263427734375,
-0.00844573974609375,
-0.0616455078125,
0.0050201416015625,
0.057373046875,
0.035552978515625,
-0.0057373046875,
0.062744140625,
0.005970001220703125,
0.0390625,
-0.036895751953125,
0.05169677734375,
-0.0196075439453125,
-0.007633209228515625,
-0.03875732421875,
-0.007564544677734375,
-0.005153656005859375,
-0.04058837890625,
-0.01019287109375,
-0.050048828125,
0.006031036376953125,
0.00007683038711547852,
0.07373046875,
-0.00005131959915161133,
-0.0189361572265625,
-0.0158843994140625,
-0.03466796875,
0.04644775390625,
-0.04571533203125,
0.002166748046875,
0.04840087890625,
0.026824951171875,
0.001956939697265625,
-0.084716796875,
-0.0335693359375,
0.024658203125,
-0.013427734375,
0.0215911865234375,
-0.00461578369140625,
-0.008880615234375,
0.03472900390625,
0.031829833984375,
-0.039215087890625,
-0.02972412109375,
-0.053375244140625,
-0.0245361328125,
0.0733642578125,
0.0234527587890625,
0.00922393798828125,
-0.01480865478515625,
-0.007904052734375,
-0.02008056640625,
-0.03265380859375,
-0.0025997161865234375,
0.032623291015625,
0.024169921875,
-0.035614013671875,
0.038360595703125,
-0.0092315673828125,
0.050933837890625,
-0.0194244384765625,
-0.015869140625,
0.05474853515625,
-0.054473876953125,
0.0036067962646484375,
0.0017681121826171875,
0.03985595703125,
0.03759765625,
0.003986358642578125,
0.021087646484375,
-0.00606536865234375,
-0.01461029052734375,
0.010467529296875,
-0.06390380859375,
-0.033111572265625,
0.034637451171875,
-0.04815673828125,
-0.0194854736328125,
0.0308837890625,
-0.080078125,
-0.017547607421875,
-0.026611328125,
0.010162353515625,
-0.00815582275390625,
-0.0300445556640625,
-0.01258087158203125,
-0.014862060546875,
0.036041259765625,
0.01067352294921875,
-0.0347900390625,
0.02044677734375,
0.04193115234375,
0.053375244140625,
-0.0006465911865234375,
-0.0221710205078125,
-0.0230712890625,
0.0171356201171875,
-0.006221771240234375,
0.057525634765625,
-0.033416748046875,
-0.0445556640625,
0.007236480712890625,
0.032318115234375,
-0.00019872188568115234,
-0.0196990966796875,
0.07794189453125,
-0.002887725830078125,
0.017364501953125,
-0.04547119140625,
-0.0287933349609375,
-0.0119476318359375,
0.018524169921875,
-0.057098388671875,
0.0845947265625,
0.005481719970703125,
-0.06866455078125,
0.031341552734375,
-0.07379150390625,
-0.03277587890625,
0.02734375,
-0.01470947265625,
-0.0487060546875,
-0.022125244140625,
-0.005107879638671875,
0.03558349609375,
-0.0290985107421875,
0.0240020751953125,
-0.0158538818359375,
-0.0194854736328125,
-0.0018606185913085938,
-0.004634857177734375,
0.07867431640625,
0.028656005859375,
-0.01123046875,
0.021697998046875,
-0.07574462890625,
0.0015439987182617188,
0.0338134765625,
-0.0177154541015625,
-0.0042877197265625,
-0.01178741455078125,
0.03399658203125,
0.009033203125,
0.03790283203125,
-0.020538330078125,
0.010284423828125,
-0.0004494190216064453,
0.031341552734375,
0.050140380859375,
0.0284576416015625,
0.0207061767578125,
-0.037322998046875,
0.04107666015625,
0.0097198486328125,
0.032623291015625,
-0.0009355545043945312,
-0.04998779296875,
-0.04058837890625,
-0.02655029296875,
0.02789306640625,
0.049041748046875,
-0.035552978515625,
0.0557861328125,
-0.033233642578125,
-0.062408447265625,
-0.033111572265625,
0.0056610107421875,
0.01666259765625,
0.0411376953125,
0.0196533203125,
-0.0303497314453125,
-0.0562744140625,
-0.0638427734375,
0.00543212890625,
-0.0167388916015625,
0.0191192626953125,
0.03753662109375,
0.07122802734375,
-0.00951385498046875,
0.06304931640625,
-0.051666259765625,
-0.0145416259765625,
-0.01535797119140625,
0.012176513671875,
0.0239410400390625,
0.04473876953125,
0.03131103515625,
-0.07220458984375,
-0.0220947265625,
-0.0297698974609375,
-0.039947509765625,
-0.022613525390625,
-0.0001245737075805664,
-0.0205230712890625,
-0.01270294189453125,
0.001556396484375,
-0.01451873779296875,
0.047515869140625,
0.03900146484375,
-0.052337646484375,
0.045166015625,
0.0002868175506591797,
0.01513671875,
-0.0946044921875,
0.032501220703125,
0.00039958953857421875,
-0.0010433197021484375,
-0.04644775390625,
-0.01019287109375,
0.001338958740234375,
-0.0139617919921875,
-0.0377197265625,
0.048980712890625,
-0.0257110595703125,
0.00455474853515625,
0.00628662109375,
-0.0026092529296875,
0.01314544677734375,
0.018280029296875,
-0.003589630126953125,
0.06317138671875,
0.044189453125,
-0.03924560546875,
0.031524658203125,
0.039794921875,
-0.0199737548828125,
0.055023193359375,
-0.060699462890625,
-0.00446319580078125,
-0.0213775634765625,
0.024749755859375,
-0.0784912109375,
-0.037689208984375,
0.041412353515625,
-0.04815673828125,
0.01554107666015625,
-0.007404327392578125,
-0.056549072265625,
-0.0301361083984375,
-0.029449462890625,
0.0204010009765625,
0.029449462890625,
-0.0135955810546875,
0.0298004150390625,
0.060333251953125,
-0.00045609474182128906,
-0.021087646484375,
-0.058197021484375,
0.00835418701171875,
-0.02374267578125,
-0.0518798828125,
0.038330078125,
-0.02191162109375,
-0.0121002197265625,
-0.00173187255859375,
0.0206146240234375,
-0.017791748046875,
0.00452423095703125,
0.0252838134765625,
0.012298583984375,
0.006969451904296875,
0.0024623870849609375,
-0.0209808349609375,
-0.00566864013671875,
-0.003353118896484375,
-0.0070343017578125,
0.02606201171875,
-0.0117645263671875,
-0.022430419921875,
-0.021026611328125,
0.0261688232421875,
0.016265869140625,
-0.0308837890625,
0.053009033203125,
0.0780029296875,
-0.0335693359375,
0.004924774169921875,
-0.035064697265625,
-0.01251983642578125,
-0.0282440185546875,
0.0098876953125,
-0.0136871337890625,
-0.050079345703125,
0.07525634765625,
-0.005828857421875,
0.019561767578125,
0.049041748046875,
0.050079345703125,
0.0093994140625,
0.0472412109375,
0.0258026123046875,
-0.0028629302978515625,
0.04510498046875,
-0.0347900390625,
-0.0034389495849609375,
-0.0504150390625,
-0.03131103515625,
-0.051422119140625,
-0.02813720703125,
-0.055633544921875,
-0.0380859375,
0.0005831718444824219,
-0.0001544952392578125,
-0.02642822265625,
0.0362548828125,
-0.055938720703125,
0.0258331298828125,
0.057281494140625,
-0.000362396240234375,
-0.00289154052734375,
-0.0031757354736328125,
0.004978179931640625,
-0.00677490234375,
-0.053741455078125,
-0.043365478515625,
0.07366943359375,
0.035430908203125,
0.029296875,
0.005161285400390625,
0.06646728515625,
0.01483154296875,
0.01214599609375,
-0.0277099609375,
0.04998779296875,
-0.003383636474609375,
-0.0587158203125,
-0.01451873779296875,
-0.020782470703125,
-0.06805419921875,
-0.0073089599609375,
-0.0127716064453125,
-0.043914794921875,
0.04425048828125,
0.00872039794921875,
-0.00897216796875,
0.01093292236328125,
-0.060546875,
0.0804443359375,
-0.00787353515625,
-0.039886474609375,
0.010345458984375,
-0.062408447265625,
0.01200103759765625,
0.0093536376953125,
0.033599853515625,
-0.015838623046875,
-0.0091094970703125,
0.0850830078125,
-0.038848876953125,
0.07806396484375,
-0.0294952392578125,
0.014434814453125,
0.0467529296875,
-0.0277862548828125,
0.041778564453125,
0.0142669677734375,
-0.0036373138427734375,
0.030120849609375,
0.0023174285888671875,
-0.038116455078125,
-0.019500732421875,
0.040802001953125,
-0.05133056640625,
-0.018646240234375,
-0.0435791015625,
-0.0194244384765625,
0.00582122802734375,
0.0289459228515625,
0.00974273681640625,
0.013153076171875,
-0.01116943359375,
0.03009033203125,
0.0423583984375,
-0.005161285400390625,
0.012298583984375,
0.020843505859375,
0.00439453125,
-0.058074951171875,
0.06903076171875,
0.037200927734375,
-0.006855010986328125,
0.0065155029296875,
0.0097503662109375,
-0.0281829833984375,
-0.02777099609375,
-0.0190277099609375,
0.018096923828125,
-0.0550537109375,
-0.015350341796875,
-0.01477813720703125,
-0.016082763671875,
-0.050445556640625,
-0.001956939697265625,
-0.0026760101318359375,
-0.032562255859375,
-0.036590576171875,
-0.0231475830078125,
0.045745849609375,
0.0187530517578125,
-0.03375244140625,
0.02191162109375,
-0.059112548828125,
0.00646209716796875,
0.005771636962890625,
0.039520263671875,
-0.0185394287109375,
-0.032867431640625,
-0.0263824462890625,
-0.0014486312866210938,
-0.0172882080078125,
-0.07177734375,
0.0215606689453125,
0.01244354248046875,
0.06524658203125,
0.0123748779296875,
0.013153076171875,
0.051849365234375,
-0.0139617919921875,
0.0823974609375,
0.0027923583984375,
-0.041412353515625,
0.060089111328125,
-0.036712646484375,
0.0295867919921875,
0.0703125,
0.02093505859375,
-0.03155517578125,
0.00783538818359375,
-0.07672119140625,
-0.08740234375,
0.048583984375,
0.02197265625,
0.00814056396484375,
-0.01035308837890625,
0.013916015625,
-0.02191162109375,
0.0235748291015625,
-0.055206298828125,
-0.04986572265625,
-0.028106689453125,
-0.0187530517578125,
0.0089569091796875,
-0.032928466796875,
-0.039398193359375,
-0.034423828125,
0.0562744140625,
0.004970550537109375,
0.0219268798828125,
0.0150146484375,
0.012969970703125,
-0.0015497207641601562,
0.01259613037109375,
0.0501708984375,
0.072509765625,
-0.027069091796875,
-0.0070037841796875,
0.00827789306640625,
-0.054779052734375,
-0.01271820068359375,
0.01528167724609375,
-0.01531219482421875,
0.004421234130859375,
0.03643798828125,
0.06292724609375,
0.00698089599609375,
-0.036529541015625,
0.04644775390625,
0.00010222196578979492,
-0.033050537109375,
-0.05462646484375,
-0.013946533203125,
-0.0031223297119140625,
0.0099639892578125,
0.0256195068359375,
-0.0208282470703125,
0.004985809326171875,
-0.032470703125,
0.035400390625,
-0.003360748291015625,
-0.0252532958984375,
-0.018096923828125,
0.0377197265625,
0.0197296142578125,
-0.027557373046875,
0.019622802734375,
-0.0215911865234375,
-0.018341064453125,
0.0531005859375,
0.0195770263671875,
0.05987548828125,
-0.0127716064453125,
0.026824951171875,
0.05462646484375,
0.028289794921875,
0.0004963874816894531,
0.0648193359375,
-0.004276275634765625,
-0.037078857421875,
-0.019744873046875,
-0.03985595703125,
-0.0198822021484375,
0.0034313201904296875,
-0.05413818359375,
0.03717041015625,
-0.042327880859375,
-0.0266571044921875,
-0.01165771484375,
0.0212249755859375,
-0.06329345703125,
0.023773193359375,
-0.005626678466796875,
0.0755615234375,
-0.07464599609375,
0.053863525390625,
0.0732421875,
-0.060089111328125,
-0.06060791015625,
-0.01477813720703125,
0.0096282958984375,
-0.0467529296875,
0.037994384765625,
-0.00983428955078125,
0.035400390625,
-0.000293731689453125,
-0.055206298828125,
-0.05511474609375,
0.11383056640625,
0.00235748291015625,
-0.0232696533203125,
0.021453857421875,
0.006175994873046875,
0.033233642578125,
-0.0283355712890625,
0.013458251953125,
0.041748046875,
0.06658935546875,
0.03790283203125,
-0.045745849609375,
0.00856781005859375,
-0.02850341796875,
-0.007781982421875,
0.005035400390625,
-0.056549072265625,
0.0504150390625,
0.01105499267578125,
-0.01187896728515625,
-0.03692626953125,
0.04345703125,
0.03680419921875,
0.0280914306640625,
0.0260772705078125,
0.050140380859375,
0.058380126953125,
-0.0196990966796875,
0.06207275390625,
-0.032958984375,
0.0267486572265625,
0.08563232421875,
-0.01102447509765625,
0.04962158203125,
0.0274658203125,
-0.0251617431640625,
0.024078369140625,
0.059722900390625,
-0.0290069580078125,
0.027099609375,
0.0172576904296875,
-0.0021533966064453125,
-0.007244110107421875,
-0.029937744140625,
-0.042083740234375,
0.0290985107421875,
0.03424072265625,
-0.03826904296875,
-0.0136566162109375,
-0.0216064453125,
0.01416015625,
-0.0002701282501220703,
-0.034698486328125,
0.0626220703125,
-0.011749267578125,
-0.022918701171875,
0.01397705078125,
-0.000011980533599853516,
0.0270538330078125,
-0.05078125,
-0.0196533203125,
-0.006927490234375,
-0.00258636474609375,
-0.034454345703125,
-0.0792236328125,
0.0452880859375,
-0.0037250518798828125,
-0.025970458984375,
-0.0186614990234375,
0.0703125,
-0.024505615234375,
-0.064453125,
-0.001415252685546875,
0.01922607421875,
0.0180511474609375,
0.02197265625,
-0.080810546875,
0.0220947265625,
0.0020160675048828125,
-0.0221405029296875,
0.017730712890625,
0.032745361328125,
-0.0078582763671875,
0.0236968994140625,
0.048248291015625,
0.0281829833984375,
-0.00821685791015625,
0.0178680419921875,
0.064697265625,
-0.04156494140625,
-0.04156494140625,
-0.039703369140625,
0.064697265625,
-0.040435791015625,
-0.03570556640625,
0.06097412109375,
0.05322265625,
0.06341552734375,
0.006061553955078125,
0.059326171875,
-0.0340576171875,
0.0501708984375,
-0.0121002197265625,
0.056793212890625,
-0.036590576171875,
-0.0051422119140625,
-0.0293731689453125,
-0.059234619140625,
-0.035491943359375,
0.05474853515625,
-0.03851318359375,
0.004486083984375,
0.02789306640625,
0.063232421875,
0.00933837890625,
0.005859375,
0.0081939697265625,
0.01322174072265625,
0.0211639404296875,
0.015380859375,
0.0179595947265625,
-0.04498291015625,
0.04925537109375,
-0.030364990234375,
-0.020111083984375,
-0.0113525390625,
-0.079345703125,
-0.04998779296875,
-0.07037353515625,
-0.044586181640625,
-0.040863037109375,
0.003055572509765625,
0.0670166015625,
0.049407958984375,
-0.07574462890625,
-0.024261474609375,
0.007678985595703125,
0.013824462890625,
-0.006900787353515625,
-0.0207672119140625,
0.03448486328125,
0.00940704345703125,
-0.039764404296875,
-0.0160980224609375,
0.004680633544921875,
0.0005097389221191406,
-0.016204833984375,
-0.0128326416015625,
-0.0369873046875,
-0.01299285888671875,
0.027099609375,
0.032440185546875,
-0.0293731689453125,
-0.0162506103515625,
-0.0181732177734375,
0.009307861328125,
-0.0013132095336914062,
0.040496826171875,
-0.0128936767578125,
0.0305633544921875,
0.06597900390625,
0.0263824462890625,
0.02972412109375,
0.01372528076171875,
0.01477813720703125,
-0.06378173828125,
0.0186309814453125,
0.0274658203125,
0.0274505615234375,
0.0184173583984375,
-0.0302581787109375,
0.057586669921875,
0.0313720703125,
-0.05230712890625,
-0.058807373046875,
-0.0018014907836914062,
-0.07293701171875,
-0.0037899017333984375,
0.091552734375,
-0.01299285888671875,
-0.032867431640625,
-0.0179595947265625,
-0.024688720703125,
0.02142333984375,
-0.04510498046875,
0.023895263671875,
0.0740966796875,
0.01447296142578125,
-0.015045166015625,
-0.045440673828125,
0.03515625,
-0.014923095703125,
-0.06915283203125,
0.0035686492919921875,
0.046905517578125,
0.00429534912109375,
0.019927978515625,
0.0616455078125,
-0.03009033203125,
0.01163482666015625,
0.006252288818359375,
0.0191802978515625,
-0.0135955810546875,
-0.0183563232421875,
-0.01197052001953125,
0.004558563232421875,
0.0012903213500976562,
-0.020782470703125
]
] |
jondurbin/airoboros-3.1 | 2023-10-13T08:22:45.000Z | [
"license:apache-2.0",
"region:us"
] | jondurbin | null | null | 12 | 962 | 2023-10-10T11:01:33 | ---
license: apache-2.0
---
## Overview
This dataset is a continuation of the airoboros datasets, with the following updates:
* More MathJSON, now ~17k items - math questions, prefixed with __"Create a MathJSON solution to the following:"__, which then outputs a JSON between __`<mathjson>`__ and __`</mathjson>`__ tags, which can be parsed and passed to a deterministic library to perform calculations.
* Log information extraction.
* Anonymization, e.g. removing names, IP addresses, and/or dates from text.
* Chat introspection - multi-turn chats that have random questions injected asking about the character's descriptions, the setting of the chat, or things previously said, to make sure the model uses the system prompt and or chat history.
* Multi-step instructions with acknowledgement (see below)
Some of the MathJSON data was adapted from https://huggingface.co/datasets/meta-math/MetaMathQA
## Format
The format is now in ShareGPT format, to better accomodate the OS ecosystem fine-tuning tooling.
## MathJSON
As we all know, math is really difficult for LLMs, especially floating point operations, trig functions, factorials, and several-digit numbers.
Instead of sending millions and millions of examples to the LLM for fine-tuning, I've created a new category `mathjson` which simply presents the solution to the problem as a JSON string that can be evaluated by traditional computation.
The dataset has roughly 4k samples, as a proof of concept. This can be expanded fairly easily, now that the fine-tuned models have a basic understanding of how to represent the problems.
For example:
```
Create a MathJSON solution to the following: Calculate the area of a circle with radius of 17.2456cm. Include your reasoning. [/INST]
```
```
The area (A) of a circle is given by the formula A = πr², where r is the radius of the circle. Since the radius is given in centimeters, we need to convert it to meters first. We know that 1 meter equals 100 centimeters. Therefore, we can represent the radius as: r = 17.2456 cm * 100/1.
Once we have the radius in meters, we can calculate the area of the circle using the formula A = πr².
Solution as MathJSON:
<mathjson>
[
"Multiply",
"Pi",
[
"Power",
17.2456,
2
]
]
</mathjson>
```
Simply extract the JSON string between the mathjson tags, and evaluate it with https://cortexjs.io/compute-engine/ or my ultra-hacky limited-functionality python version of it https://github.com/jondurbin/airoboros/blob/mathjson/airoboros/mathjson.py
## Multi-step instructions with acknowledgement
I don't know how useful this is, really, but I thought I'd add it just in case. Example:
```
{
"conversations": [
{
"value": "You are a helpful, unbiased, uncensored assistant.",
"from": "system"
},
{
"value": "I'm going to set some rules for our conversation. Please respond with \"OK\" to each rule.",
"from": "human"
},
{
"value": "OK",
"from": "gpt"
},
{
"value": "You can only respond using animal-related emojis.",
"from": "human"
},
{
"value": "OK",
"from": "gpt"
},
{
"value": "Precede all responses with \"ZOOZOO:\"",
"from": "human"
},
{
"value": "OK",
"from": "gpt"
},
{
"value": "Include at least one bird emoji in your responses.",
"from": "human"
},
{
"value": "OK",
"from": "gpt"
},
{
"value": "Describe a trip to a safari park.",
"from": "human"
},
{
"value": "ZOOZOO: \ud83e\udd81\ud83d\udc2f\ud83e\udd93\ud83e\udd92\ud83d\udc18\ud83d\udc0d\ud83c\udf33\ud83c\udf32\u2600\ufe0f\ud83d\ude90\ud83e\udd85\ud83d\udcf8\ud83e\udd29",
"from": "gpt"
}
]
}
``` | 3,765 | [
[
-0.040283203125,
-0.06787109375,
0.01641845703125,
0.00495147705078125,
-0.0122528076171875,
-0.0028209686279296875,
-0.023468017578125,
-0.0194854736328125,
0.05181884765625,
0.040679931640625,
-0.05645751953125,
-0.03363037109375,
-0.039215087890625,
0.0175323486328125,
0.004611968994140625,
0.07928466796875,
0.00031638145446777344,
-0.02386474609375,
-0.0051422119140625,
-0.00484466552734375,
-0.0196075439453125,
-0.050079345703125,
-0.042388916015625,
0.00409698486328125,
0.038970947265625,
0.026519775390625,
0.058563232421875,
0.0535888671875,
0.057464599609375,
0.027740478515625,
-0.029266357421875,
0.0285491943359375,
-0.02020263671875,
-0.0174560546875,
0.019134521484375,
-0.00975799560546875,
-0.044830322265625,
0.004863739013671875,
0.00859832763671875,
0.0694580078125,
-0.0246429443359375,
0.0105438232421875,
-0.0220947265625,
0.04754638671875,
-0.0439453125,
0.020111083984375,
-0.037261962890625,
0.01552581787109375,
0.0165252685546875,
-0.0119781494140625,
0.0041351318359375,
-0.0216064453125,
-0.004245758056640625,
-0.090576171875,
-0.0101165771484375,
0.0159454345703125,
0.0740966796875,
-0.0014781951904296875,
-0.02166748046875,
-0.046630859375,
-0.02679443359375,
0.062286376953125,
-0.055816650390625,
0.0257110595703125,
0.04339599609375,
0.027496337890625,
-0.0272216796875,
-0.040008544921875,
-0.0423583984375,
-0.007251739501953125,
-0.018524169921875,
0.03387451171875,
-0.037872314453125,
-0.01702880859375,
0.0242919921875,
0.0159912109375,
-0.035919189453125,
-0.03466796875,
-0.0297088623046875,
-0.00875091552734375,
0.05548095703125,
0.0249786376953125,
0.01806640625,
-0.0204620361328125,
0.01445770263671875,
-0.01129150390625,
-0.035491943359375,
0.018829345703125,
0.02490234375,
0.0224761962890625,
-0.0277252197265625,
0.0535888671875,
-0.03662109375,
0.053497314453125,
0.005985260009765625,
-0.0009317398071289062,
0.017791748046875,
-0.041656494140625,
-0.0207672119140625,
-0.0281829833984375,
0.0782470703125,
0.038055419921875,
0.022064208984375,
0.0110321044921875,
0.007701873779296875,
-0.0165863037109375,
0.0144195556640625,
-0.05718994140625,
-0.034271240234375,
0.01262664794921875,
-0.0280609130859375,
-0.033721923828125,
0.0006613731384277344,
-0.045623779296875,
-0.01462554931640625,
-0.01476287841796875,
0.018310546875,
-0.0184783935546875,
-0.03021240234375,
0.01419830322265625,
-0.008636474609375,
-0.0163421630859375,
0.0445556640625,
-0.07623291015625,
0.0355224609375,
0.0465087890625,
0.0550537109375,
0.03851318359375,
-0.00016117095947265625,
-0.006023406982421875,
-0.0178070068359375,
-0.03448486328125,
0.0469970703125,
-0.0498046875,
-0.02227783203125,
-0.013336181640625,
0.012969970703125,
-0.0001385211944580078,
-0.03204345703125,
0.0233154296875,
-0.020782470703125,
0.0240478515625,
-0.01514434814453125,
-0.024627685546875,
-0.0224456787109375,
0.029083251953125,
-0.040679931640625,
0.057861328125,
0.0196533203125,
-0.055938720703125,
-0.004772186279296875,
-0.0731201171875,
-0.029510498046875,
-0.01342010498046875,
-0.0099029541015625,
-0.037109375,
0.00531768798828125,
0.046722412109375,
0.02923583984375,
-0.0179443359375,
-0.01351165771484375,
-0.042877197265625,
-0.0159912109375,
0.055267333984375,
-0.01535797119140625,
0.0753173828125,
0.0305023193359375,
0.007076263427734375,
-0.00690460205078125,
-0.048370361328125,
-0.00009864568710327148,
0.0199737548828125,
-0.01267242431640625,
-0.01110076904296875,
-0.01447296142578125,
-0.00445556640625,
0.0113677978515625,
0.0229339599609375,
-0.03857421875,
0.026458740234375,
-0.029815673828125,
0.0482177734375,
0.04669189453125,
0.005062103271484375,
0.036865234375,
-0.030853271484375,
0.039215087890625,
-0.004085540771484375,
0.0259246826171875,
-0.0250701904296875,
-0.040069580078125,
-0.055908203125,
-0.0215301513671875,
-0.0054473876953125,
0.03436279296875,
-0.044647216796875,
0.06414794921875,
-0.0262298583984375,
-0.038177490234375,
-0.03533935546875,
0.01128387451171875,
0.0164337158203125,
0.03192138671875,
0.01274871826171875,
0.0009069442749023438,
-0.04766845703125,
-0.043609619140625,
-0.011932373046875,
-0.015350341796875,
0.00004214048385620117,
0.0609130859375,
0.040985107421875,
-0.00848388671875,
0.06744384765625,
-0.05767822265625,
-0.0108184814453125,
-0.0014944076538085938,
-0.01450347900390625,
0.051025390625,
0.0244140625,
0.036224365234375,
-0.058746337890625,
-0.033966064453125,
0.0214996337890625,
-0.0712890625,
-0.009552001953125,
0.006320953369140625,
-0.019805908203125,
-0.01448822021484375,
0.0214691162109375,
-0.05511474609375,
0.034881591796875,
0.039581298828125,
-0.04315185546875,
0.00881195068359375,
0.005512237548828125,
0.0286407470703125,
-0.09149169921875,
-0.0007824897766113281,
-0.00594329833984375,
-0.004116058349609375,
-0.039947509765625,
-0.00847625732421875,
-0.01085662841796875,
-0.01654052734375,
-0.031829833984375,
0.03485107421875,
-0.0212860107421875,
0.0121917724609375,
-0.00850677490234375,
0.014862060546875,
0.00949859619140625,
0.045166015625,
-0.01505279541015625,
0.048614501953125,
0.04473876953125,
-0.039398193359375,
0.04473876953125,
0.0175323486328125,
-0.00040912628173828125,
0.03173828125,
-0.046630859375,
0.0196990966796875,
-0.0032672882080078125,
0.0266876220703125,
-0.08135986328125,
-0.028472900390625,
0.050140380859375,
-0.0692138671875,
-0.0175018310546875,
-0.04412841796875,
-0.0286407470703125,
-0.03753662109375,
-0.029510498046875,
0.0323486328125,
0.0328369140625,
-0.042755126953125,
0.057861328125,
0.029754638671875,
-0.01023101806640625,
-0.040771484375,
-0.042999267578125,
0.0105438232421875,
-0.02032470703125,
-0.058380126953125,
-0.0080718994140625,
-0.0257415771484375,
-0.020172119140625,
0.00304412841796875,
0.0025424957275390625,
-0.01499176025390625,
0.0295257568359375,
0.03643798828125,
0.017547607421875,
0.000308990478515625,
-0.0124969482421875,
0.00699615478515625,
0.0027942657470703125,
0.00684356689453125,
-0.016632080078125,
0.0501708984375,
-0.02349853515625,
-0.01183319091796875,
-0.04052734375,
0.0204620361328125,
0.03204345703125,
-0.005252838134765625,
0.0289154052734375,
0.032470703125,
-0.043060302734375,
0.02587890625,
-0.0255584716796875,
-0.02410888671875,
-0.04339599609375,
0.0074615478515625,
-0.04046630859375,
-0.078125,
0.057220458984375,
0.0007367134094238281,
0.0163726806640625,
0.04541015625,
0.032623291015625,
-0.0243682861328125,
0.08978271484375,
0.0162200927734375,
0.0030574798583984375,
0.0404052734375,
-0.038970947265625,
0.0251922607421875,
-0.06439208984375,
-0.024688720703125,
-0.0340576171875,
-0.0048675537109375,
-0.042999267578125,
-0.0200347900390625,
0.015625,
0.03564453125,
-0.012298583984375,
0.051544189453125,
-0.058380126953125,
0.0439453125,
0.0159149169921875,
0.0027141571044921875,
0.0048828125,
0.01442718505859375,
0.01708984375,
-0.004299163818359375,
-0.058868408203125,
-0.0222930908203125,
0.0933837890625,
0.0157318115234375,
0.06536865234375,
0.0275421142578125,
0.054412841796875,
0.007297515869140625,
0.0406494140625,
-0.054534912109375,
0.038848876953125,
-0.007526397705078125,
-0.05389404296875,
-0.01275634765625,
-0.054779052734375,
-0.0888671875,
0.021331787109375,
-0.0263519287109375,
-0.0638427734375,
-0.01132965087890625,
0.0012254714965820312,
-0.03350830078125,
0.009002685546875,
-0.045806884765625,
0.04083251953125,
-0.016326904296875,
0.0021610260009765625,
-0.00012886524200439453,
-0.02325439453125,
0.0175933837890625,
-0.004528045654296875,
0.043548583984375,
-0.031585693359375,
0.0001385211944580078,
0.07421875,
-0.053680419921875,
0.058502197265625,
0.0017614364624023438,
0.0081024169921875,
0.043060302734375,
0.0085601806640625,
0.023834228515625,
0.043792724609375,
0.009735107421875,
0.0323486328125,
0.006450653076171875,
-0.0157012939453125,
-0.057464599609375,
0.05670166015625,
-0.08404541015625,
-0.0248260498046875,
-0.0218963623046875,
-0.03192138671875,
0.0129852294921875,
0.019866943359375,
0.01215362548828125,
0.032928466796875,
0.006374359130859375,
0.01520538330078125,
0.0167694091796875,
-0.0106048583984375,
0.0401611328125,
0.0540771484375,
-0.029266357421875,
-0.07672119140625,
0.053436279296875,
0.0007371902465820312,
-0.022705078125,
0.032440185546875,
0.03802490234375,
-0.023681640625,
-0.0088958740234375,
-0.039031982421875,
0.019134521484375,
-0.03765869140625,
-0.038970947265625,
-0.056060791015625,
-0.0127716064453125,
-0.059356689453125,
-0.032684326171875,
-0.0274810791015625,
-0.05133056640625,
-0.0286407470703125,
0.006908416748046875,
0.06463623046875,
0.050384521484375,
-0.01296234130859375,
0.0439453125,
-0.051971435546875,
0.027923583984375,
0.01007080078125,
0.01171875,
-0.017669677734375,
-0.04595947265625,
-0.03179931640625,
0.0300445556640625,
-0.02349853515625,
-0.0323486328125,
0.0300750732421875,
0.00457763671875,
0.0254669189453125,
0.032989501953125,
-0.0034580230712890625,
0.07122802734375,
-0.033782958984375,
0.057464599609375,
0.046112060546875,
-0.0743408203125,
0.06256103515625,
-0.031768798828125,
0.00244140625,
0.025665283203125,
0.02093505859375,
-0.060821533203125,
-0.034332275390625,
-0.0640869140625,
-0.05255126953125,
0.06146240234375,
0.05291748046875,
0.0252532958984375,
-0.01432037353515625,
0.038177490234375,
-0.01239776611328125,
0.01074981689453125,
-0.04644775390625,
-0.027008056640625,
-0.0285186767578125,
-0.0294952392578125,
0.0096435546875,
0.02166748046875,
-0.0411376953125,
-0.04498291015625,
0.0277099609375,
-0.01242828369140625,
0.045166015625,
0.004611968994140625,
0.00823211669921875,
-0.0117340087890625,
0.00365447998046875,
0.047393798828125,
0.04522705078125,
-0.0240325927734375,
0.00490570068359375,
0.0213470458984375,
-0.033935546875,
-0.006259918212890625,
0.01221466064453125,
0.00708770751953125,
-0.01065826416015625,
0.041717529296875,
0.043060302734375,
-0.000823974609375,
-0.043548583984375,
0.04498291015625,
-0.028472900390625,
-0.0265045166015625,
-0.045684814453125,
0.017242431640625,
0.0019283294677734375,
0.005733489990234375,
0.0299530029296875,
0.0066986083984375,
0.0010290145874023438,
-0.033111572265625,
0.0104217529296875,
0.0233154296875,
-0.01441192626953125,
-0.02850341796875,
0.038055419921875,
0.0186309814453125,
-0.04827880859375,
0.0369873046875,
-0.0120086669921875,
-0.0450439453125,
0.07269287109375,
0.0343017578125,
0.0487060546875,
0.01424407958984375,
-0.0028228759765625,
0.04437255859375,
0.0284271240234375,
0.01430511474609375,
0.0361328125,
-0.00994873046875,
-0.0673828125,
-0.0195770263671875,
-0.031463623046875,
-0.0249481201171875,
0.0066680908203125,
-0.04644775390625,
0.006908416748046875,
-0.07080078125,
-0.024078369140625,
0.0231781005859375,
0.0202484130859375,
-0.05902099609375,
0.0247344970703125,
-0.003353118896484375,
0.047119140625,
-0.06256103515625,
0.03717041015625,
0.071044921875,
-0.032257080078125,
-0.07672119140625,
-0.031280517578125,
0.0008573532104492188,
-0.0732421875,
0.029388427734375,
0.016632080078125,
-0.0091552734375,
-0.014404296875,
-0.058563232421875,
-0.07305908203125,
0.085693359375,
0.00151824951171875,
-0.040985107421875,
0.0369873046875,
0.012481689453125,
0.039581298828125,
-0.045806884765625,
0.06292724609375,
0.01629638671875,
0.0206298828125,
0.002666473388671875,
-0.060028076171875,
0.010589599609375,
-0.049591064453125,
-0.00978851318359375,
0.0175323486328125,
-0.07135009765625,
0.06500244140625,
-0.0098419189453125,
0.0018873214721679688,
0.0024623870849609375,
0.045562744140625,
0.015655517578125,
0.034393310546875,
0.05078125,
0.053009033203125,
0.0491943359375,
-0.02081298828125,
0.05926513671875,
-0.038909912109375,
0.060943603515625,
0.042755126953125,
0.005458831787109375,
0.048858642578125,
0.0291595458984375,
-0.0308837890625,
0.0257720947265625,
0.051666259765625,
-0.0107269287109375,
0.0247039794921875,
0.01544189453125,
-0.01222991943359375,
-0.01049041748046875,
-0.011993408203125,
-0.0310516357421875,
0.042999267578125,
0.035888671875,
-0.00909423828125,
0.0032176971435546875,
-0.00370025634765625,
0.0248870849609375,
-0.00675201416015625,
-0.006305694580078125,
0.0615234375,
-0.0003883838653564453,
-0.029296875,
0.04730224609375,
-0.007549285888671875,
0.052642822265625,
-0.03509521484375,
-0.0095672607421875,
-0.037872314453125,
0.002590179443359375,
-0.0279693603515625,
-0.06329345703125,
0.0169677734375,
0.00669097900390625,
0.001682281494140625,
0.0026226043701171875,
0.0343017578125,
-0.01824951171875,
-0.05718994140625,
0.0161285400390625,
0.012298583984375,
0.0302276611328125,
0.0009489059448242188,
-0.0643310546875,
0.0272216796875,
0.0017690658569335938,
-0.020904541015625,
-0.006656646728515625,
0.043548583984375,
0.021881103515625,
0.058074951171875,
0.06982421875,
-0.0007443428039550781,
0.0038394927978515625,
0.0007343292236328125,
0.08306884765625,
-0.0672607421875,
-0.0279998779296875,
-0.054229736328125,
0.0280609130859375,
-0.01690673828125,
-0.041961669921875,
0.05712890625,
0.05438232421875,
0.058349609375,
-0.0011129379272460938,
0.05389404296875,
-0.0261077880859375,
0.0241851806640625,
-0.035797119140625,
0.051116943359375,
-0.068603515625,
0.0266265869140625,
-0.0143280029296875,
-0.053192138671875,
-0.03179931640625,
0.07177734375,
-0.0037212371826171875,
0.017059326171875,
0.04034423828125,
0.07073974609375,
-0.0062255859375,
0.003414154052734375,
0.021331787109375,
-0.01136016845703125,
0.037261962890625,
0.06048583984375,
0.0753173828125,
-0.0582275390625,
0.061767578125,
-0.056976318359375,
-0.01611328125,
-0.0303955078125,
-0.03765869140625,
-0.076416015625,
-0.0260772705078125,
-0.031646728515625,
-0.04315185546875,
-0.0156707763671875,
0.0770263671875,
0.07391357421875,
-0.060546875,
-0.018310546875,
-0.009307861328125,
0.01442718505859375,
-0.015594482421875,
-0.0211181640625,
0.0218505859375,
0.006206512451171875,
-0.045623779296875,
0.02093505859375,
0.0115509033203125,
0.01071929931640625,
0.0211029052734375,
-0.01097869873046875,
0.00823211669921875,
0.01306915283203125,
0.038726806640625,
0.020904541015625,
-0.05230712890625,
-0.029327392578125,
0.0179290771484375,
-0.0078125,
0.003818511962890625,
0.06048583984375,
-0.032806396484375,
0.0289459228515625,
0.01953125,
0.032318115234375,
0.040863037109375,
-0.00893402099609375,
0.0007557868957519531,
-0.044097900390625,
0.01457977294921875,
0.012969970703125,
0.02386474609375,
0.0195770263671875,
-0.033294677734375,
0.049224853515625,
0.0303955078125,
-0.033721923828125,
-0.040435791015625,
0.0016565322875976562,
-0.103759765625,
-0.016021728515625,
0.0809326171875,
-0.014892578125,
-0.025848388671875,
-0.0013484954833984375,
-0.02093505859375,
0.0142364501953125,
-0.0517578125,
0.06671142578125,
0.055938720703125,
-0.02587890625,
-0.0168609619140625,
-0.01177978515625,
0.0167236328125,
0.02825927734375,
-0.0802001953125,
0.00516510009765625,
0.020843505859375,
0.0304107666015625,
0.031463623046875,
0.05670166015625,
-0.0010271072387695312,
0.01505279541015625,
0.017333984375,
0.004146575927734375,
-0.01861572265625,
-0.01247406005859375,
-0.0244293212890625,
-0.0146484375,
-0.0206298828125,
-0.0212860107421875
]
] |
castorini/mr-tydi-corpus | 2022-10-12T20:25:51.000Z | [
"task_categories:text-retrieval",
"multilinguality:multilingual",
"language:ar",
"language:bn",
"language:en",
"language:fi",
"language:id",
"language:ja",
"language:ko",
"language:ru",
"language:sw",
"language:te",
"language:th",
"license:apache-2.0",
"region:us"
] | castorini | null | null | 2 | 961 | 2022-03-02T23:29:22 | ---
language:
- ar
- bn
- en
- fi
- id
- fi
- ja
- ko
- ru
- sw
- te
- th
multilinguality:
- multilingual
task_categories:
- text-retrieval
license: apache-2.0
---
# Dataset Summary
Mr. TyDi is a multi-lingual benchmark dataset built on TyDi, covering eleven typologically diverse languages. It is designed for monolingual retrieval, specifically to evaluate ranking with learned dense representations.
This dataset stores documents of Mr. TyDi. To access the queries and judgments, please refer to [castorini/mr-tydi](https://huggingface.co/datasets/castorini/mr-tydi).
# Dataset Structure
The only configuration here is the `language`. As all three folds (train, dev and test) share the same corpus, there is only one fold 'train' under each language, unlike [castorini/mr-tydi](https://huggingface.co/datasets/castorini/mr-tydi).
An example of document data entry looks as follows:
```
{
'docid': '25#0',
'title': 'Autism',
'text': 'Autism is a developmental disorder characterized by difficulties with social interaction and communication, ...'
}
```
# Load Dataset
An example to load the dataset:
```
language = 'english'
dataset = load_dataset('castorini/mr-tydi-corpus', language, 'train')
```
# Citation Information
```
@article{mrtydi,
title={{Mr. TyDi}: A Multi-lingual Benchmark for Dense Retrieval},
author={Xinyu Zhang and Xueguang Ma and Peng Shi and Jimmy Lin},
year={2021},
journal={arXiv:2108.08787},
}
``` | 1,499 | [
[
-0.031951904296875,
-0.02276611328125,
-0.0007033348083496094,
0.0163726806640625,
-0.0068359375,
0.0111236572265625,
-0.0292510986328125,
-0.017364501953125,
0.037750244140625,
0.026824951171875,
-0.0305023193359375,
-0.062469482421875,
-0.028656005859375,
0.0243988037109375,
-0.01311492919921875,
0.0689697265625,
-0.00647735595703125,
0.00504302978515625,
0.005218505859375,
-0.057647705078125,
0.002033233642578125,
-0.0419921875,
-0.0435791015625,
-0.00201416015625,
0.045318603515625,
0.055816650390625,
0.038787841796875,
0.040069580078125,
0.01549530029296875,
0.02166748046875,
0.004062652587890625,
0.0230865478515625,
-0.042388916015625,
0.0094146728515625,
-0.01263427734375,
-0.033111572265625,
-0.039093017578125,
0.006076812744140625,
0.07232666015625,
0.0604248046875,
0.0005664825439453125,
0.009429931640625,
-0.00421905517578125,
0.0653076171875,
-0.046905517578125,
0.0024013519287109375,
-0.0153656005859375,
-0.007122039794921875,
-0.04290771484375,
-0.00821685791015625,
-0.0297088623046875,
-0.04083251953125,
0.0096893310546875,
-0.04425048828125,
0.0210418701171875,
-0.0010404586791992188,
0.0836181640625,
-0.003143310546875,
-0.050537109375,
0.002040863037109375,
-0.0167999267578125,
0.0650634765625,
-0.0252227783203125,
0.0258026123046875,
0.04034423828125,
0.03125,
0.0111083984375,
-0.0215911865234375,
-0.0260162353515625,
0.01186370849609375,
-0.01216888427734375,
-0.0003407001495361328,
0.03533935546875,
-0.01169586181640625,
0.0116729736328125,
0.032745361328125,
-0.06683349609375,
-0.01274871826171875,
-0.026275634765625,
-0.006557464599609375,
0.053955078125,
-0.0019121170043945312,
0.0096282958984375,
-0.04644775390625,
-0.0147552490234375,
-0.05340576171875,
-0.037994384765625,
-0.0105743408203125,
0.03753662109375,
0.04217529296875,
-0.0290985107421875,
0.04510498046875,
-0.0210113525390625,
0.0538330078125,
-0.0202484130859375,
-0.01445770263671875,
0.066650390625,
-0.0394287109375,
-0.009765625,
-0.0048675537109375,
0.0714111328125,
0.012451171875,
0.052459716796875,
-0.01349639892578125,
0.01088714599609375,
-0.018829345703125,
0.006809234619140625,
-0.049407958984375,
0.0014486312866210938,
0.0213165283203125,
-0.0396728515625,
-0.03759765625,
0.0225982666015625,
-0.09375,
-0.01922607421875,
0.00479888916015625,
0.008392333984375,
-0.041961669921875,
-0.04736328125,
-0.01012420654296875,
-0.01255035400390625,
0.0190277099609375,
-0.0189361572265625,
-0.0653076171875,
0.026397705078125,
0.029876708984375,
0.051971435546875,
-0.01093292236328125,
-0.05413818359375,
-0.0242767333984375,
0.01163482666015625,
-0.034454345703125,
0.06500244140625,
-0.04296875,
-0.03741455078125,
0.020111083984375,
0.01284027099609375,
-0.055419921875,
-0.055511474609375,
0.059417724609375,
-0.033538818359375,
0.046661376953125,
-0.03753662109375,
-0.020721435546875,
-0.0249786376953125,
0.033050537109375,
-0.055816650390625,
0.07635498046875,
0.037139892578125,
-0.061248779296875,
0.043731689453125,
-0.04913330078125,
-0.037811279296875,
-0.003170013427734375,
-0.0162811279296875,
-0.0284423828125,
-0.0198974609375,
0.006069183349609375,
0.004642486572265625,
-0.019805908203125,
0.0161285400390625,
-0.0416259765625,
-0.00199127197265625,
-0.006988525390625,
-0.01267242431640625,
0.0704345703125,
0.0215606689453125,
-0.001705169677734375,
0.003936767578125,
-0.08599853515625,
0.03173828125,
0.007396697998046875,
-0.041778564453125,
-0.04241943359375,
-0.006710052490234375,
0.03802490234375,
0.0127410888671875,
0.01800537109375,
-0.0372314453125,
0.031524658203125,
-0.01306915283203125,
0.0209808349609375,
0.04150390625,
0.0061492919921875,
0.0105743408203125,
-0.037628173828125,
0.0396728515625,
-0.0014200210571289062,
-0.00592803955078125,
0.001941680908203125,
-0.0224609375,
-0.059295654296875,
-0.010162353515625,
0.05145263671875,
0.046875,
-0.05657958984375,
0.0089111328125,
-0.05120849609375,
-0.0186920166015625,
-0.059814453125,
0.009735107421875,
0.045989990234375,
0.0250701904296875,
0.0266571044921875,
0.0021839141845703125,
-0.039581298828125,
-0.0770263671875,
-0.00186920166015625,
-0.0211944580078125,
0.0205078125,
0.0321044921875,
0.04644775390625,
-0.010955810546875,
0.046051025390625,
-0.01751708984375,
-0.039093017578125,
-0.0113067626953125,
0.0292510986328125,
0.021453857421875,
0.0411376953125,
0.05877685546875,
-0.0704345703125,
-0.039154052734375,
0.00011348724365234375,
-0.073486328125,
-0.00872039794921875,
0.004970550537109375,
-0.0225067138671875,
0.03912353515625,
0.015960693359375,
-0.0251007080078125,
0.0104522705078125,
0.03497314453125,
-0.042510986328125,
0.043670654296875,
-0.010955810546875,
0.0545654296875,
-0.1072998046875,
0.017486572265625,
-0.023101806640625,
0.0005846023559570312,
-0.020721435546875,
0.00823974609375,
0.02362060546875,
0.0012483596801757812,
-0.0220947265625,
0.034698486328125,
-0.0233612060546875,
-0.0180511474609375,
0.0198211669921875,
0.0010347366333007812,
0.0167083740234375,
0.037567138671875,
0.006572723388671875,
0.07916259765625,
0.040771484375,
-0.038909912109375,
0.00952911376953125,
0.035369873046875,
-0.038330078125,
0.058349609375,
-0.044036865234375,
-0.0116424560546875,
0.01055908203125,
-0.01479339599609375,
-0.049530029296875,
-0.02191162109375,
0.0066070556640625,
-0.02777099609375,
0.035064697265625,
-0.026947021484375,
-0.06414794921875,
-0.0210113525390625,
-0.035888671875,
0.05487060546875,
-0.010894775390625,
-0.0281524658203125,
0.0238800048828125,
0.0361328125,
0.0035552978515625,
-0.046844482421875,
-0.044708251953125,
0.01035308837890625,
-0.025482177734375,
-0.06292724609375,
0.0251007080078125,
-0.0241546630859375,
-0.01282501220703125,
0.01050567626953125,
0.00681304931640625,
-0.030517578125,
-0.0197906494140625,
0.0005164146423339844,
0.013671875,
-0.02923583984375,
0.0189056396484375,
-0.0011377334594726562,
-0.0036563873291015625,
-0.0203399658203125,
-0.0028228759765625,
0.04852294921875,
-0.01146697998046875,
-0.00807952880859375,
-0.0016393661499023438,
0.03997802734375,
0.062469482421875,
-0.0275115966796875,
0.0577392578125,
0.042633056640625,
-0.0246124267578125,
-0.003780364990234375,
-0.040008544921875,
0.03363037109375,
-0.0308990478515625,
0.01025390625,
-0.0738525390625,
-0.028717041015625,
0.049346923828125,
0.03253173828125,
-0.0131072998046875,
0.049652099609375,
0.0167388916015625,
0.01169586181640625,
0.053375244140625,
0.0296173095703125,
-0.0225830078125,
0.0268402099609375,
-0.054046630859375,
-0.0261077880859375,
-0.0704345703125,
-0.0279541015625,
-0.05975341796875,
-0.01197052001953125,
-0.062225341796875,
-0.0161590576171875,
0.019500732421875,
-0.00576019287109375,
-0.0253143310546875,
0.04156494140625,
-0.01922607421875,
0.0253448486328125,
0.042938232421875,
0.0037403106689453125,
0.0210418701171875,
0.0008573532104492188,
-0.0264739990234375,
0.00522613525390625,
-0.055633544921875,
-0.0267333984375,
0.1141357421875,
-0.0017023086547851562,
0.051300048828125,
0.0243072509765625,
0.05999755859375,
0.01052093505859375,
0.0015039443969726562,
-0.0362548828125,
0.037841796875,
-0.02294921875,
-0.06011962890625,
-0.006923675537109375,
-0.0445556640625,
-0.074462890625,
0.0292816162109375,
-0.0036449432373046875,
-0.031402587890625,
0.051300048828125,
-0.035125732421875,
-0.0018320083618164062,
0.01885986328125,
-0.07281494140625,
0.07733154296875,
-0.019927978515625,
-0.030731201171875,
-0.0178985595703125,
-0.031585693359375,
0.018280029296875,
-0.0023212432861328125,
0.02593994140625,
-0.0007910728454589844,
0.001861572265625,
0.09014892578125,
-0.026031494140625,
0.0285797119140625,
-0.01056671142578125,
0.01149749755859375,
-0.0024356842041015625,
0.0016355514526367188,
0.004192352294921875,
0.0163116455078125,
-0.034820556640625,
0.010711669921875,
0.02728271484375,
-0.047332763671875,
-0.015960693359375,
0.07196044921875,
-0.06671142578125,
-0.01149749755859375,
-0.054290771484375,
-0.047210693359375,
-0.018310546875,
0.049591064453125,
0.024200439453125,
0.055908203125,
-0.03106689453125,
0.01165771484375,
0.05419921875,
-0.0193328857421875,
0.0256500244140625,
0.048919677734375,
-0.00891876220703125,
-0.03857421875,
0.06707763671875,
0.016326904296875,
0.00785064697265625,
0.040069580078125,
-0.017913818359375,
-0.0180206298828125,
-0.027374267578125,
-0.033172607421875,
0.042327880859375,
-0.045379638671875,
-0.009918212890625,
-0.048431396484375,
-0.01239776611328125,
-0.057159423828125,
0.01531219482421875,
-0.02886962890625,
-0.03564453125,
-0.0095672607421875,
-0.00556182861328125,
0.0170440673828125,
0.047210693359375,
-0.0070037841796875,
-0.01215362548828125,
-0.03070068359375,
0.04052734375,
0.014190673828125,
0.0606689453125,
-0.0268402099609375,
-0.0223236083984375,
-0.0263671875,
0.004436492919921875,
-0.000659942626953125,
-0.0465087890625,
0.032989501953125,
0.035369873046875,
0.0404052734375,
0.04168701171875,
0.00994873046875,
0.061676025390625,
-0.032867431640625,
0.037139892578125,
-0.023040771484375,
-0.03179931640625,
0.042236328125,
-0.0294952392578125,
0.0152740478515625,
0.07891845703125,
0.030548095703125,
-0.036773681640625,
-0.0018825531005859375,
-0.0411376953125,
-0.060760498046875,
0.06707763671875,
0.00916290283203125,
-0.03070068359375,
-0.005420684814453125,
-0.0158233642578125,
0.01238250732421875,
0.0166473388671875,
-0.03521728515625,
-0.04315185546875,
-0.02020263671875,
-0.012603759765625,
-0.026031494140625,
-0.04034423828125,
-0.0321044921875,
-0.01263427734375,
0.05352783203125,
0.0014410018920898438,
0.019500732421875,
0.016876220703125,
-0.01983642578125,
-0.01235198974609375,
0.026092529296875,
0.040069580078125,
0.0411376953125,
-0.060760498046875,
-0.0028400421142578125,
-0.01983642578125,
-0.0265045166015625,
-0.0096588134765625,
0.02777099609375,
0.00669097900390625,
0.01230621337890625,
0.037322998046875,
0.037139892578125,
0.0286865234375,
-0.052734375,
0.0258331298828125,
-0.006694793701171875,
-0.035430908203125,
-0.03350830078125,
-0.01123046875,
-0.02044677734375,
0.00888824462890625,
0.03607177734375,
0.00199127197265625,
0.0026683807373046875,
-0.034637451171875,
0.0258026123046875,
0.0179443359375,
-0.00518798828125,
-0.0144500732421875,
0.039093017578125,
-0.00017583370208740234,
-0.004947662353515625,
0.053619384765625,
-0.024139404296875,
-0.0325927734375,
0.035491943359375,
0.016876220703125,
0.057647705078125,
-0.00506591796875,
0.035308837890625,
0.0380859375,
0.026092529296875,
0.01091766357421875,
0.03912353515625,
-0.006305694580078125,
-0.056884765625,
-0.00421905517578125,
-0.053009033203125,
-0.0197906494140625,
0.01953125,
-0.060943603515625,
0.0247650146484375,
0.002437591552734375,
0.00804901123046875,
0.0088653564453125,
0.0305938720703125,
-0.047393798828125,
0.004329681396484375,
-0.0038928985595703125,
0.08721923828125,
-0.060516357421875,
0.0821533203125,
0.0621337890625,
-0.055419921875,
-0.03363037109375,
-0.0143585205078125,
-0.00708770751953125,
-0.056243896484375,
0.035003662109375,
0.00791168212890625,
0.0166168212890625,
-0.00872039794921875,
-0.01201629638671875,
-0.064453125,
0.06988525390625,
0.01056671142578125,
0.001983642578125,
-0.00803375244140625,
0.01274871826171875,
0.03790283203125,
-0.038665771484375,
0.01922607421875,
0.041412353515625,
0.05389404296875,
-0.01299285888671875,
-0.07061767578125,
-0.0197906494140625,
-0.064453125,
-0.0033931732177734375,
0.0079498291015625,
-0.05218505859375,
0.06329345703125,
-0.01171112060546875,
-0.0199127197265625,
0.008331298828125,
0.017425537109375,
0.016387939453125,
0.0231475830078125,
0.0289154052734375,
0.06842041015625,
0.054473876953125,
-0.0162811279296875,
0.09027099609375,
-0.0279541015625,
0.028289794921875,
0.0771484375,
-0.00786590576171875,
0.052276611328125,
0.0236968994140625,
-0.0183258056640625,
0.05712890625,
0.0611572265625,
0.0013875961303710938,
0.04901123046875,
-0.01535797119140625,
0.0010738372802734375,
-0.0014753341674804688,
-0.01126861572265625,
-0.059814453125,
0.0181732177734375,
0.024139404296875,
-0.017974853515625,
-0.0248870849609375,
0.01160430908203125,
-0.00024628639221191406,
0.006580352783203125,
-0.0010461807250976562,
0.04071044921875,
-0.020233154296875,
-0.0460205078125,
0.08111572265625,
-0.01090240478515625,
0.041961669921875,
-0.048004150390625,
0.01140594482421875,
-0.02923583984375,
0.00791168212890625,
-0.0199432373046875,
-0.047393798828125,
0.0151824951171875,
-0.0157623291015625,
-0.036712646484375,
-0.0147247314453125,
0.0175018310546875,
-0.05316162109375,
-0.042022705078125,
0.0297698974609375,
0.047821044921875,
0.0143280029296875,
0.01116180419921875,
-0.05609130859375,
0.0102081298828125,
-0.00020229816436767578,
-0.0277557373046875,
0.034332275390625,
0.03387451171875,
0.00010210275650024414,
0.05810546875,
0.02850341796875,
0.017242431640625,
0.007904052734375,
0.02978515625,
0.0572509765625,
-0.053985595703125,
-0.031005859375,
-0.0162811279296875,
0.004665374755859375,
-0.0155029296875,
-0.041534423828125,
0.04852294921875,
0.0721435546875,
0.06964111328125,
-0.0010728836059570312,
0.056915283203125,
-0.035736083984375,
0.06427001953125,
-0.02362060546875,
0.06341552734375,
-0.05877685546875,
0.0002799034118652344,
-0.0200042724609375,
-0.05865478515625,
-0.00978851318359375,
0.03125,
-0.0154571533203125,
0.01479339599609375,
0.0775146484375,
0.05889892578125,
-0.00885009765625,
-0.01556396484375,
0.0112152099609375,
0.0229949951171875,
-0.0004324913024902344,
0.04840087890625,
0.00799560546875,
-0.053131103515625,
0.05792236328125,
-0.033935546875,
-0.0165863037109375,
-0.006122589111328125,
-0.03759765625,
-0.06787109375,
-0.0697021484375,
-0.0214996337890625,
-0.035888671875,
0.01349639892578125,
0.05487060546875,
0.0645751953125,
-0.08514404296875,
-0.044921875,
0.015167236328125,
0.0294342041015625,
-0.0218353271484375,
-0.0264739990234375,
0.0513916015625,
-0.036712646484375,
-0.07244873046875,
0.047393798828125,
-0.00687408447265625,
-0.0155181884765625,
0.0019140243530273438,
-0.0057830810546875,
-0.05255126953125,
-0.02789306640625,
0.0311737060546875,
0.033935546875,
-0.014190673828125,
-0.007122039794921875,
-0.0134429931640625,
-0.011138916015625,
0.01099395751953125,
0.033050537109375,
-0.06146240234375,
0.044036865234375,
0.04248046875,
0.0279541015625,
0.035125732421875,
-0.0011806488037109375,
0.035980224609375,
-0.049652099609375,
0.0136566162109375,
-0.00809478759765625,
0.028533935546875,
0.0241241455078125,
-0.0005965232849121094,
0.064453125,
0.0309600830078125,
-0.033416748046875,
-0.06182861328125,
-0.00022554397583007812,
-0.0880126953125,
-0.01549530029296875,
0.0863037109375,
0.0013628005981445312,
-0.0151214599609375,
-0.0184783935546875,
0.004413604736328125,
0.01514434814453125,
-0.05743408203125,
0.052276611328125,
0.0626220703125,
0.014678955078125,
-0.00719451904296875,
-0.04840087890625,
0.036651611328125,
0.027099609375,
-0.040008544921875,
-0.005367279052734375,
0.019500732421875,
0.0234832763671875,
0.0191192626953125,
0.043182373046875,
-0.0281524658203125,
0.0084686279296875,
-0.0106964111328125,
0.004787445068359375,
-0.006496429443359375,
-0.027313232421875,
-0.014007568359375,
0.033477783203125,
-0.01305389404296875,
-0.0287017822265625
]
] |
aqua_rat | 2022-11-18T18:20:44.000Z | [
"task_categories:question-answering",
"task_ids:multiple-choice-qa",
"annotations_creators:crowdsourced",
"language_creators:crowdsourced",
"language_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:en",
"license:apache-2.0",
"arxiv:1705.04146",
"region:us"
] | null | A large-scale dataset consisting of approximately 100,000 algebraic word problems.
The solution to each question is explained step-by-step using natural language.
This data is used to train a program generation model that learns to generate the explanation,
while generating the program that solves the question. | @InProceedings{ACL,
title = {Program induction by rationale generation: Learning to solve and explain algebraic word problems},
authors={Ling, Wang and Yogatama, Dani and Dyer, Chris and Blunsom, Phil},
year={2017}
} | 9 | 956 | 2022-03-02T23:29:22 | ---
annotations_creators:
- crowdsourced
language_creators:
- crowdsourced
- expert-generated
language:
- en
license:
- apache-2.0
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- question-answering
task_ids:
- multiple-choice-qa
paperswithcode_id: aqua-rat
pretty_name: Algebra Question Answering with Rationales
dataset_info:
- config_name: raw
features:
- name: question
dtype: string
- name: options
sequence: string
- name: rationale
dtype: string
- name: correct
dtype: string
splits:
- name: train
num_bytes: 42333259
num_examples: 97467
- name: test
num_bytes: 116779
num_examples: 254
- name: validation
num_bytes: 118636
num_examples: 254
download_size: 47833135
dataset_size: 42568674
- config_name: tokenized
features:
- name: question
dtype: string
- name: options
sequence: string
- name: rationale
dtype: string
- name: correct
dtype: string
splits:
- name: train
num_bytes: 46493843
num_examples: 97467
- name: test
num_bytes: 126283
num_examples: 254
- name: validation
num_bytes: 128873
num_examples: 254
download_size: 52003894
dataset_size: 46748999
---
# Dataset Card for AQUA-RAT
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://github.com/deepmind/AQuA](https://github.com/deepmind/AQuA)
- **Repository:** [https://github.com/deepmind/AQuA](https://github.com/deepmind/AQuA)
- **Paper:** [https://arxiv.org/pdf/1705.04146.pdf](https://arxiv.org/pdf/1705.04146.pdf)
### Dataset Summary
A large-scale dataset consisting of approximately 100,000 algebraic word problems.
The solution to each question is explained step-by-step using natural language.
This data is used to train a program generation model that learns to generate the explanation,
while generating the program that solves the question.
### Supported Tasks and Leaderboards
### Languages
en
## Dataset Structure
### Data Instances
```
{
"question": "A grocery sells a bag of ice for $1.25, and makes 20% profit. If it sells 500 bags of ice, how much total profit does it make?",
"options": ["A)125", "B)150", "C)225", "D)250", "E)275"],
"rationale": "Profit per bag = 1.25 * 0.20 = 0.25\nTotal profit = 500 * 0.25 = 125\nAnswer is A.",
"correct": "A"
}
```
### Data Fields
- `question` : (str) A natural language definition of the problem to solve
- `options` : (list(str)) 5 possible options (A, B, C, D and E), among which one is correct
- `rationale` : (str) A natural language description of the solution to the problem
- `correct` : (str) The correct option
### Data Splits
| | Train | Valid | Test |
| ----- | ------ | ----- | ---- |
| Examples | 97467 | 254 | 254 |
## Dataset Creation
### Curation Rationale
[Needs More Information]
### Source Data
#### Initial Data Collection and Normalization
[Needs More Information]
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
[Needs More Information]
#### Who are the annotators?
[Needs More Information]
### Personal and Sensitive Information
[Needs More Information]
## Considerations for Using the Data
### Social Impact of Dataset
[Needs More Information]
### Discussion of Biases
[Needs More Information]
### Other Known Limitations
[Needs More Information]
## Additional Information
### Dataset Curators
[Needs More Information]
### Licensing Information
Copyright 2017 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
### Citation Information
```
@article{ling2017program,
title={Program induction by rationale generation: Learning to solve and explain algebraic word problems},
author={Ling, Wang and Yogatama, Dani and Dyer, Chris and Blunsom, Phil},
journal={ACL},
year={2017}
}
```
### Contributions
Thanks to [@arkhalid](https://github.com/arkhalid) for adding this dataset. | 5,526 | [
[
-0.036651611328125,
-0.0543212890625,
0.0162200927734375,
0.0268096923828125,
-0.0093231201171875,
0.0077362060546875,
-0.023223876953125,
-0.02471923828125,
0.01328277587890625,
0.0299530029296875,
-0.066650390625,
-0.057952880859375,
-0.04248046875,
0.0233306884765625,
0.0045166015625,
0.07122802734375,
-0.0223236083984375,
0.0012912750244140625,
-0.0215606689453125,
-0.005031585693359375,
-0.037017822265625,
-0.01282501220703125,
-0.044830322265625,
-0.031768798828125,
0.0197906494140625,
0.043853759765625,
0.05010986328125,
0.056488037109375,
0.045379638671875,
0.0235443115234375,
0.005336761474609375,
0.0072784423828125,
-0.03778076171875,
-0.0030231475830078125,
0.00023293495178222656,
-0.032073974609375,
-0.026458740234375,
0.00762939453125,
0.035247802734375,
0.046417236328125,
-0.0011987686157226562,
0.04473876953125,
0.010650634765625,
0.06463623046875,
-0.037200927734375,
0.0621337890625,
-0.032501220703125,
0.00872039794921875,
-0.007404327392578125,
-0.014434814453125,
-0.009735107421875,
-0.0267791748046875,
-0.00738525390625,
-0.07232666015625,
-0.006710052490234375,
0.002941131591796875,
0.07354736328125,
0.0249786376953125,
-0.01088714599609375,
-0.034759521484375,
-0.050201416015625,
0.06512451171875,
-0.04315185546875,
-0.0086517333984375,
0.035064697265625,
0.01654052734375,
-0.0157318115234375,
-0.049041748046875,
-0.057647705078125,
0.00339508056640625,
-0.0007371902465820312,
0.0194549560546875,
-0.0223388671875,
-0.00689697265625,
0.03558349609375,
0.02923583984375,
-0.041290283203125,
-0.02850341796875,
-0.045745849609375,
-0.006122589111328125,
0.07513427734375,
0.02044677734375,
0.036529541015625,
-0.014068603515625,
-0.01517486572265625,
-0.026824951171875,
-0.0372314453125,
0.0144500732421875,
0.0255279541015625,
0.0298919677734375,
-0.031219482421875,
0.062225341796875,
-0.01418304443359375,
0.03472900390625,
-0.0106201171875,
-0.01169586181640625,
0.04388427734375,
-0.023406982421875,
-0.0050201416015625,
0.009979248046875,
0.06011962890625,
0.031005859375,
0.022796630859375,
0.01666259765625,
-0.00666046142578125,
-0.00292205810546875,
-0.004177093505859375,
-0.05157470703125,
-0.0280303955078125,
0.0399169921875,
-0.036102294921875,
-0.02276611328125,
-0.00914764404296875,
-0.05877685546875,
-0.007328033447265625,
-0.0364990234375,
0.042999267578125,
-0.031890869140625,
-0.020599365234375,
0.0141143798828125,
-0.0223388671875,
0.0345458984375,
-0.0033206939697265625,
-0.04254150390625,
0.032379150390625,
0.040679931640625,
0.054962158203125,
0.005313873291015625,
-0.012908935546875,
-0.01116943359375,
0.014801025390625,
-0.014007568359375,
0.050048828125,
-0.03375244140625,
-0.032989501953125,
-0.004016876220703125,
-0.0031909942626953125,
-0.00882720947265625,
-0.0245819091796875,
0.036041259765625,
-0.02557373046875,
0.03765869140625,
-0.03857421875,
-0.051055908203125,
-0.0116119384765625,
0.0121002197265625,
-0.052703857421875,
0.07489013671875,
0.0086822509765625,
-0.0728759765625,
0.00917816162109375,
-0.091064453125,
-0.02630615234375,
0.0239105224609375,
-0.01470947265625,
-0.032623291015625,
-0.0270843505859375,
0.005771636962890625,
0.008514404296875,
-0.0222930908203125,
0.0146942138671875,
-0.01441192626953125,
-0.01061248779296875,
0.01233673095703125,
-0.0171661376953125,
0.10565185546875,
0.0283660888671875,
-0.031524658203125,
0.007442474365234375,
-0.06475830078125,
0.0118865966796875,
0.037200927734375,
-0.031524658203125,
-0.0087890625,
-0.00353240966796875,
0.0011548995971679688,
0.00732421875,
0.041046142578125,
-0.034637451171875,
0.01837158203125,
-0.01132965087890625,
0.0285797119140625,
0.04705810546875,
0.0106353759765625,
0.0184326171875,
-0.0233001708984375,
0.048126220703125,
-0.0027904510498046875,
0.026397705078125,
0.01003265380859375,
-0.056610107421875,
-0.055877685546875,
-0.01497650146484375,
0.023193359375,
0.07122802734375,
-0.06390380859375,
0.0543212890625,
-0.02069091796875,
-0.040252685546875,
-0.04248046875,
0.0163116455078125,
0.0309906005859375,
0.0438232421875,
0.043731689453125,
0.003902435302734375,
-0.037200927734375,
-0.07342529296875,
0.00023055076599121094,
-0.0069732666015625,
0.0034656524658203125,
0.041595458984375,
0.06475830078125,
-0.007049560546875,
0.0716552734375,
-0.07098388671875,
-0.016998291015625,
-0.032989501953125,
0.02392578125,
0.030059814453125,
0.0479736328125,
0.02557373046875,
-0.062408447265625,
-0.040679931640625,
-0.028594970703125,
-0.05322265625,
-0.0070343017578125,
-0.0005674362182617188,
-0.025848388671875,
0.006717681884765625,
0.0240936279296875,
-0.056976318359375,
0.04486083984375,
0.0286865234375,
-0.0345458984375,
0.0460205078125,
-0.01381683349609375,
-0.006252288818359375,
-0.10321044921875,
0.0235137939453125,
0.001476287841796875,
0.0267181396484375,
-0.0438232421875,
-0.0020618438720703125,
-0.01171112060546875,
-0.0019893646240234375,
-0.01953125,
0.033477783203125,
-0.02789306640625,
0.01812744140625,
0.0081787109375,
-0.0018339157104492188,
-0.0031375885009765625,
0.0418701171875,
-0.0084075927734375,
0.059661865234375,
0.04815673828125,
-0.046844482421875,
0.034515380859375,
0.033294677734375,
-0.0162506103515625,
0.016876220703125,
-0.06683349609375,
0.00214385986328125,
-0.0267791748046875,
0.00978851318359375,
-0.0765380859375,
-0.020233154296875,
0.04290771484375,
-0.055755615234375,
0.022369384765625,
-0.00006097555160522461,
-0.03900146484375,
-0.0289154052734375,
-0.04302978515625,
0.0234375,
0.038055419921875,
-0.0111083984375,
0.04046630859375,
0.040679931640625,
-0.01358795166015625,
-0.047637939453125,
-0.051300048828125,
0.0022735595703125,
-0.01325225830078125,
-0.04986572265625,
0.0290985107421875,
-0.027374267578125,
-0.022003173828125,
0.0186004638671875,
0.01399993896484375,
-0.00298309326171875,
0.00537872314453125,
0.003444671630859375,
0.0242919921875,
-0.01380157470703125,
0.006561279296875,
-0.0021114349365234375,
-0.0196533203125,
0.022186279296875,
-0.00531768798828125,
0.046142578125,
-0.01824951171875,
-0.009002685546875,
-0.0187225341796875,
0.033782958984375,
0.0236358642578125,
-0.0220794677734375,
0.059051513671875,
0.048309326171875,
-0.040252685546875,
-0.00691986083984375,
-0.0109100341796875,
-0.002071380615234375,
-0.036163330078125,
0.01800537109375,
-0.0175933837890625,
-0.032501220703125,
0.058074951171875,
0.013427734375,
0.0100250244140625,
0.0684814453125,
0.032379150390625,
0.0074615478515625,
0.080810546875,
0.034515380859375,
-0.010406494140625,
0.0218353271484375,
-0.056488037109375,
0.0221405029296875,
-0.05914306640625,
-0.03643798828125,
-0.051605224609375,
-0.0292510986328125,
-0.0618896484375,
-0.0193023681640625,
0.01110076904296875,
0.01549530029296875,
-0.0305938720703125,
0.0251617431640625,
-0.049530029296875,
0.036376953125,
0.055023193359375,
-0.006206512451171875,
0.0036525726318359375,
0.0087890625,
-0.023956298828125,
-0.0009469985961914062,
-0.0528564453125,
-0.03948974609375,
0.07568359375,
0.0245819091796875,
0.0311279296875,
0.013275146484375,
0.06256103515625,
0.005809783935546875,
0.0243377685546875,
-0.044921875,
0.046783447265625,
-0.00122833251953125,
-0.060089111328125,
-0.0401611328125,
-0.036895751953125,
-0.08349609375,
-0.01050567626953125,
-0.022003173828125,
-0.0562744140625,
0.0168914794921875,
0.00817108154296875,
-0.031402587890625,
0.018646240234375,
-0.05462646484375,
0.0703125,
-0.02532958984375,
-0.030303955078125,
-0.005970001220703125,
-0.050750732421875,
0.020660400390625,
0.02081298828125,
0.033782958984375,
-0.014190673828125,
-0.001331329345703125,
0.06903076171875,
-0.045318603515625,
0.059783935546875,
-0.02020263671875,
0.0086669921875,
0.037353515625,
-0.01715087890625,
0.019500732421875,
0.0080108642578125,
0.01055908203125,
0.01263427734375,
-0.005252838134765625,
-0.0291748046875,
-0.0294036865234375,
0.041168212890625,
-0.07354736328125,
-0.0302734375,
-0.04583740234375,
-0.045684814453125,
-0.00032329559326171875,
0.03271484375,
0.0171661376953125,
0.017303466796875,
0.02020263671875,
0.017852783203125,
0.0538330078125,
-0.04290771484375,
0.0180816650390625,
0.024627685546875,
-0.01427459716796875,
-0.049652099609375,
0.080078125,
0.018585205078125,
0.0027904510498046875,
0.031005859375,
0.0191497802734375,
-0.0261688232421875,
-0.0245513916015625,
-0.02508544921875,
0.01519775390625,
-0.05340576171875,
-0.0222015380859375,
-0.035491943359375,
-0.031982421875,
-0.02960205078125,
0.0043182373046875,
-0.00862884521484375,
-0.0330810546875,
-0.032562255859375,
-0.006656646728515625,
0.051483154296875,
0.042327880859375,
-0.0259552001953125,
-0.0004208087921142578,
-0.047515869140625,
0.034088134765625,
0.0291290283203125,
0.036102294921875,
-0.0003745555877685547,
-0.01216888427734375,
-0.010223388671875,
0.0278472900390625,
-0.031036376953125,
-0.0650634765625,
0.032745361328125,
0.006740570068359375,
0.04730224609375,
0.01297760009765625,
0.01212310791015625,
0.049652099609375,
-0.01806640625,
0.07354736328125,
0.00476837158203125,
-0.05609130859375,
0.0504150390625,
-0.0228729248046875,
0.02911376953125,
0.05517578125,
0.0452880859375,
-0.02899169921875,
-0.009918212890625,
-0.06280517578125,
-0.09375,
0.052215576171875,
0.0389404296875,
0.00728607177734375,
-0.0117645263671875,
0.0218048095703125,
-0.0160980224609375,
0.018829345703125,
-0.0611572265625,
-0.06207275390625,
-0.0180206298828125,
-0.038360595703125,
0.005859375,
-0.006336212158203125,
-0.0135650634765625,
-0.044677734375,
0.06756591796875,
0.00372314453125,
0.037506103515625,
0.013458251953125,
0.0027370452880859375,
-0.00861358642578125,
0.0110015869140625,
0.04937744140625,
0.0443115234375,
-0.0308074951171875,
-0.002170562744140625,
0.00266265869140625,
-0.058441162109375,
-0.0177459716796875,
0.027923583984375,
-0.0274810791015625,
-0.0101165771484375,
0.0361328125,
0.0460205078125,
-0.004581451416015625,
-0.0457763671875,
0.0253448486328125,
-0.0159759521484375,
-0.03143310546875,
-0.050628662109375,
0.005420684814453125,
0.0171966552734375,
0.00702667236328125,
0.0440673828125,
-0.003261566162109375,
0.01256561279296875,
-0.030242919921875,
0.0070343017578125,
0.0261383056640625,
-0.0172576904296875,
-0.0024013519287109375,
0.03851318359375,
0.002460479736328125,
-0.0382080078125,
0.0611572265625,
-0.032745361328125,
-0.0455322265625,
0.06097412109375,
0.030914306640625,
0.06683349609375,
0.00787353515625,
0.0249786376953125,
0.052886962890625,
0.026519775390625,
0.0087738037109375,
0.06610107421875,
-0.006275177001953125,
-0.06793212890625,
-0.0309906005859375,
-0.039825439453125,
-0.0176849365234375,
0.031585693359375,
-0.057586669921875,
0.009552001953125,
-0.034759521484375,
-0.01018524169921875,
0.0074615478515625,
0.032745361328125,
-0.05987548828125,
0.00594329833984375,
0.01116180419921875,
0.07916259765625,
-0.06134033203125,
0.037994384765625,
0.05841064453125,
-0.06500244140625,
-0.0880126953125,
-0.016845703125,
-0.006427764892578125,
-0.06640625,
0.04278564453125,
0.002010345458984375,
0.005584716796875,
-0.003208160400390625,
-0.07525634765625,
-0.0787353515625,
0.101318359375,
0.01415252685546875,
-0.0149383544921875,
0.021697998046875,
0.0308837890625,
0.039276123046875,
-0.040679931640625,
0.006046295166015625,
0.036956787109375,
0.05474853515625,
0.01209259033203125,
-0.04180908203125,
0.007205963134765625,
-0.0506591796875,
-0.0027828216552734375,
0.0028133392333984375,
-0.035919189453125,
0.060211181640625,
-0.017303466796875,
-0.01251983642578125,
-0.01727294921875,
0.032806396484375,
0.045318603515625,
0.0243682861328125,
0.02813720703125,
0.050201416015625,
0.05865478515625,
-0.0100860595703125,
0.083740234375,
-0.05322265625,
0.036163330078125,
0.0804443359375,
-0.001361846923828125,
0.06390380859375,
0.0310516357421875,
-0.0350341796875,
0.04803466796875,
0.04132080078125,
-0.0167388916015625,
0.035491943359375,
0.033050537109375,
-0.004367828369140625,
-0.01120758056640625,
-0.01139068603515625,
-0.0352783203125,
0.0176849365234375,
0.032867431640625,
-0.026885986328125,
-0.0100555419921875,
-0.029296875,
0.00833892822265625,
-0.01265716552734375,
-0.025604248046875,
0.048614501953125,
0.0013294219970703125,
-0.0364990234375,
0.034942626953125,
-0.0035076141357421875,
0.0293426513671875,
-0.04339599609375,
-0.029327392578125,
-0.00954437255859375,
0.010528564453125,
-0.0251312255859375,
-0.07861328125,
0.0165252685546875,
-0.00632476806640625,
-0.01605224609375,
-0.00632476806640625,
0.050933837890625,
-0.035308837890625,
-0.06756591796875,
0.002655029296875,
0.0255126953125,
0.0133819580078125,
0.0251922607421875,
-0.084228515625,
0.0012035369873046875,
0.00972747802734375,
-0.0253143310546875,
-0.0008258819580078125,
0.03375244140625,
0.00833892822265625,
0.056549072265625,
0.0501708984375,
0.0084381103515625,
0.0002486705780029297,
0.005443572998046875,
0.06341552734375,
-0.042938232421875,
-0.0222930908203125,
-0.05426025390625,
0.05523681640625,
-0.02972412109375,
-0.0377197265625,
0.054351806640625,
0.060638427734375,
0.06793212890625,
-0.00858306884765625,
0.06903076171875,
-0.020477294921875,
0.028778076171875,
-0.0286102294921875,
0.049102783203125,
-0.031982421875,
0.0201263427734375,
-0.0213470458984375,
-0.0584716796875,
-0.02752685546875,
0.070068359375,
-0.031219482421875,
0.01416015625,
0.038726806640625,
0.056549072265625,
0.01580810546875,
0.00750732421875,
-0.0181121826171875,
0.02490234375,
0.013946533203125,
0.040802001953125,
0.0382080078125,
-0.04339599609375,
0.04730224609375,
-0.04150390625,
-0.0188140869140625,
0.0023193359375,
-0.06524658203125,
-0.047454833984375,
-0.048980712890625,
-0.04583740234375,
-0.035369873046875,
-0.014862060546875,
0.08843994140625,
0.019439697265625,
-0.075439453125,
-0.0254669189453125,
-0.01332855224609375,
0.0242462158203125,
-0.022003173828125,
-0.02569580078125,
0.04205322265625,
-0.01503753662109375,
-0.022125244140625,
-0.0183563232421875,
0.01010894775390625,
0.005550384521484375,
-0.02105712890625,
-0.0198211669921875,
-0.030609130859375,
0.005336761474609375,
0.034942626953125,
0.031494140625,
-0.029571533203125,
-0.01494598388671875,
0.005615234375,
0.00464630126953125,
0.004459381103515625,
0.026611328125,
-0.0306396484375,
0.0185699462890625,
0.0400390625,
0.020599365234375,
0.035064697265625,
-0.013671875,
0.027557373046875,
-0.03741455078125,
-0.0172119140625,
0.01407623291015625,
0.0286865234375,
0.0182647705078125,
-0.0299530029296875,
0.033782958984375,
0.01224517822265625,
-0.031982421875,
-0.0477294921875,
0.003353118896484375,
-0.07177734375,
-0.0213623046875,
0.09759521484375,
0.0006632804870605469,
-0.038726806640625,
-0.0192108154296875,
-0.0187225341796875,
0.0259857177734375,
-0.04229736328125,
0.05804443359375,
0.059783935546875,
-0.0125274658203125,
0.005096435546875,
-0.038238525390625,
0.0440673828125,
-0.00524139404296875,
-0.061279296875,
-0.0003371238708496094,
0.0287017822265625,
0.0296173095703125,
0.0413818359375,
0.03741455078125,
-0.0158538818359375,
0.0032100677490234375,
0.005657196044921875,
0.0259552001953125,
-0.0087127685546875,
-0.003582000732421875,
-0.01561737060546875,
0.0033702850341796875,
-0.0005846023559570312,
-0.0159149169921875
]
] |
llm-lens/vocab_tags | 2023-06-29T02:50:09.000Z | [
"region:us"
] | llm-lens | null | null | 1 | 954 | 2023-06-29T02:50:05 | ---
dataset_info:
features:
- name: prompt_descriptions
dtype: string
splits:
- name: train
num_bytes: 346971
num_examples: 22131
download_size: 298971
dataset_size: 346971
---
# Dataset Card for "vocab_tags"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 365 | [
[
-0.0418701171875,
-0.0212860107421875,
0.0019016265869140625,
0.009521484375,
-0.0297698974609375,
0.009521484375,
0.01540374755859375,
-0.01198577880859375,
0.06396484375,
0.038238525390625,
-0.04974365234375,
-0.06744384765625,
-0.04522705078125,
-0.0209503173828125,
-0.02484130859375,
0.08917236328125,
0.008758544921875,
0.005901336669921875,
-0.03656005859375,
-0.010833740234375,
-0.041748046875,
-0.047119140625,
-0.0364990234375,
-0.0360107421875,
0.06842041015625,
0.0328369140625,
0.0190582275390625,
0.033447265625,
0.059722900390625,
0.005924224853515625,
-0.00467681884765625,
0.0009288787841796875,
-0.0170135498046875,
-0.0003304481506347656,
-0.03167724609375,
-0.037109375,
-0.08123779296875,
-0.0033740997314453125,
0.02923583984375,
0.02728271484375,
-0.0242919921875,
0.053985595703125,
-0.0156707763671875,
0.038909912109375,
-0.019500732421875,
0.035400390625,
-0.028717041015625,
-0.0174560546875,
-0.0555419921875,
-0.0300445556640625,
0.015289306640625,
-0.02313232421875,
-0.006412506103515625,
-0.06036376953125,
0.01200103759765625,
-0.01074981689453125,
0.07177734375,
0.0197601318359375,
-0.0053558349609375,
-0.0201263427734375,
-0.019989013671875,
0.00222015380859375,
-0.01270294189453125,
0.01611328125,
0.059173583984375,
0.0187835693359375,
-0.0019207000732421875,
-0.0645751953125,
-0.044586181640625,
0.0216522216796875,
0.01050567626953125,
0.0195770263671875,
-0.005031585693359375,
0.00580596923828125,
0.033233642578125,
0.034210205078125,
-0.0343017578125,
-0.01470184326171875,
-0.04180908203125,
-0.031829833984375,
0.0440673828125,
0.0128631591796875,
0.0267486572265625,
-0.0268707275390625,
-0.005275726318359375,
-0.0221710205078125,
-0.0301513671875,
-0.00437164306640625,
0.02423095703125,
0.0251312255859375,
-0.0628662109375,
0.0626220703125,
0.0016431808471679688,
0.0390625,
-0.0152587890625,
0.0267181396484375,
0.05078125,
-0.039215087890625,
0.001598358154296875,
-0.0118865966796875,
0.0167694091796875,
0.03643798828125,
0.02020263671875,
0.0009527206420898438,
0.00481414794921875,
0.02825927734375,
0.0140838623046875,
-0.05596923828125,
-0.06390380859375,
0.025115966796875,
-0.035064697265625,
-0.01212310791015625,
0.01555633544921875,
-0.062103271484375,
-0.038726806640625,
-0.0222320556640625,
0.021209716796875,
-0.0034618377685546875,
-0.044586181640625,
-0.00492095947265625,
-0.07586669921875,
0.040771484375,
-0.0013570785522460938,
-0.04290771484375,
0.0218353271484375,
0.059112548828125,
0.0567626953125,
0.024200439453125,
-0.0159912109375,
-0.048004150390625,
0.0125579833984375,
0.0029048919677734375,
0.08837890625,
-0.05609130859375,
-0.03704833984375,
0.005252838134765625,
0.0188140869140625,
0.010650634765625,
-0.016265869140625,
0.06732177734375,
-0.0200347900390625,
-0.01238250732421875,
-0.06298828125,
-0.038848876953125,
-0.006511688232421875,
0.030242919921875,
-0.06488037109375,
0.08624267578125,
0.0111541748046875,
-0.053802490234375,
0.034881591796875,
-0.07965087890625,
-0.026519775390625,
0.05645751953125,
-0.0125579833984375,
-0.01381683349609375,
0.01033782958984375,
-0.007289886474609375,
0.04345703125,
-0.00435638427734375,
0.01617431640625,
-0.05096435546875,
-0.006801605224609375,
0.0142364501953125,
0.01381683349609375,
0.052398681640625,
0.006099700927734375,
0.0298919677734375,
0.0037097930908203125,
-0.056884765625,
-0.0113677978515625,
0.0160064697265625,
-0.019378662109375,
-0.031768798828125,
-0.0013303756713867188,
0.03387451171875,
-0.0117340087890625,
0.0177154541015625,
-0.025238037109375,
0.048492431640625,
-0.0066986083984375,
0.0082244873046875,
0.04766845703125,
0.0116424560546875,
0.0185546875,
-0.03387451171875,
0.04901123046875,
-0.00817108154296875,
0.0028133392333984375,
-0.001132965087890625,
-0.0369873046875,
-0.050445556640625,
-0.01025390625,
0.052032470703125,
0.042999267578125,
-0.06414794921875,
0.053680419921875,
-0.0032634735107421875,
-0.06402587890625,
-0.034881591796875,
-0.0009355545043945312,
0.0162811279296875,
0.0189361572265625,
0.0253143310546875,
-0.04681396484375,
-0.049896240234375,
-0.0298614501953125,
0.00965118408203125,
-0.01264190673828125,
0.014923095703125,
0.02923583984375,
0.06298828125,
-0.0291748046875,
0.05303955078125,
-0.050994873046875,
-0.04150390625,
0.004985809326171875,
-0.007175445556640625,
0.008209228515625,
0.035369873046875,
0.062255859375,
-0.058929443359375,
-0.0166168212890625,
-0.0282135009765625,
-0.0103607177734375,
-0.0228271484375,
0.0276947021484375,
-0.042205810546875,
-0.005588531494140625,
0.01465606689453125,
-0.042083740234375,
0.039642333984375,
0.070556640625,
-0.040771484375,
0.00974273681640625,
0.0116119384765625,
-0.015838623046875,
-0.10552978515625,
0.0265960693359375,
0.004756927490234375,
-0.01352691650390625,
-0.024200439453125,
-0.005458831787109375,
-0.007106781005859375,
-0.0018062591552734375,
0.0017480850219726562,
0.0604248046875,
-0.025726318359375,
-0.00013625621795654297,
-0.012298583984375,
0.01373291015625,
0.00798797607421875,
0.0095062255859375,
0.0186767578125,
0.0362548828125,
0.08392333984375,
-0.04345703125,
0.06072998046875,
0.044036865234375,
0.00992584228515625,
0.063232421875,
-0.058013916015625,
0.004688262939453125,
-0.01332855224609375,
0.0309906005859375,
-0.059661865234375,
-0.05224609375,
0.04644775390625,
-0.05059814453125,
0.016815185546875,
-0.0462646484375,
-0.04998779296875,
-0.04425048828125,
-0.029937744140625,
0.03271484375,
0.036529541015625,
-0.050323486328125,
0.037567138671875,
0.0760498046875,
0.0017805099487304688,
-0.0144500732421875,
-0.055999755859375,
0.00919342041015625,
-0.01406097412109375,
0.004840850830078125,
0.035125732421875,
-0.029571533203125,
0.01222991943359375,
-0.006839752197265625,
0.0192108154296875,
-0.011383056640625,
-0.00357818603515625,
0.032623291015625,
0.006435394287109375,
0.0046844482421875,
0.0557861328125,
0.0036525726318359375,
-0.042755126953125,
0.007106781005859375,
-0.0108184814453125,
0.054107666015625,
-0.004596710205078125,
-0.00738525390625,
-0.02117919921875,
0.021575927734375,
-0.003498077392578125,
-0.0390625,
0.02813720703125,
0.08612060546875,
-0.0509033203125,
-0.020660400390625,
-0.026519775390625,
0.005107879638671875,
-0.030975341796875,
0.00873565673828125,
-0.018157958984375,
-0.04803466796875,
0.0399169921875,
-0.0074920654296875,
-0.007171630859375,
0.0501708984375,
0.063232421875,
-0.0169830322265625,
0.0290069580078125,
0.047393798828125,
-0.013519287109375,
0.031341552734375,
-0.0205841064453125,
-0.0099945068359375,
-0.05645751953125,
-0.0276947021484375,
-0.052490234375,
-0.0198974609375,
-0.06298828125,
-0.0487060546875,
-0.005687713623046875,
0.01025390625,
0.016998291015625,
0.041351318359375,
-0.07061767578125,
0.020782470703125,
0.04779052734375,
-0.0004737377166748047,
-0.01015472412109375,
-0.00553131103515625,
0.0216217041015625,
0.028228759765625,
-0.051788330078125,
-0.0268707275390625,
0.07904052734375,
0.0311126708984375,
0.06524658203125,
0.0186309814453125,
0.05816650390625,
0.018096923828125,
0.019622802734375,
-0.053955078125,
0.032073974609375,
-0.007350921630859375,
-0.050628662109375,
0.005863189697265625,
0.0021381378173828125,
-0.06298828125,
-0.031280517578125,
-0.022918701171875,
-0.0286407470703125,
0.0265960693359375,
0.0386962890625,
0.0015134811401367188,
0.00872802734375,
-0.053741455078125,
0.060516357421875,
-0.00373077392578125,
0.01412200927734375,
-0.0038852691650390625,
-0.030426025390625,
-0.0146484375,
0.0192718505859375,
-0.006168365478515625,
-0.02752685546875,
-0.0205535888671875,
0.0758056640625,
-0.013031005859375,
0.08709716796875,
-0.03997802734375,
0.0035991668701171875,
0.0204010009765625,
-0.0239715576171875,
0.0058135986328125,
0.0312347412109375,
0.00402069091796875,
0.02069091796875,
0.02593994140625,
-0.0333251953125,
0.005767822265625,
0.045135498046875,
-0.0281219482421875,
0.0194244384765625,
-0.040618896484375,
-0.0170135498046875,
0.0023899078369140625,
0.02911376953125,
0.0205230712890625,
0.0455322265625,
-0.0307769775390625,
0.00010907649993896484,
0.048004150390625,
0.01461029052734375,
0.0261077880859375,
0.00766754150390625,
-0.0178375244140625,
-0.0280914306640625,
0.07708740234375,
0.01898193359375,
-0.038543701171875,
0.0240478515625,
0.0198211669921875,
-0.0197906494140625,
-0.0308380126953125,
-0.0222320556640625,
0.0268402099609375,
-0.040374755859375,
-0.046875,
-0.03338623046875,
-0.0106048583984375,
-0.039215087890625,
-0.00440216064453125,
-0.0099945068359375,
-0.031768798828125,
-0.048858642578125,
-0.039642333984375,
0.08642578125,
0.0357666015625,
-0.036956787109375,
0.04022216796875,
-0.06390380859375,
0.043914794921875,
-0.004638671875,
0.0802001953125,
-0.0178070068359375,
-0.0191650390625,
-0.0227203369140625,
-0.0096893310546875,
0.0030117034912109375,
-0.0426025390625,
-0.00402069091796875,
0.0237579345703125,
0.045623779296875,
0.004772186279296875,
-0.005680084228515625,
0.047332763671875,
-0.010711669921875,
0.05145263671875,
0.005794525146484375,
-0.05694580078125,
0.04473876953125,
-0.0288238525390625,
0.0225067138671875,
0.046051025390625,
0.03912353515625,
-0.043121337890625,
0.020477294921875,
-0.06097412109375,
-0.0521240234375,
0.031890869140625,
-0.003936767578125,
0.039703369140625,
-0.00437164306640625,
0.039459228515625,
-0.000026166439056396484,
0.026519775390625,
-0.055023193359375,
-0.048858642578125,
-0.0098876953125,
-0.0263519287109375,
0.006412506103515625,
-0.0333251953125,
-0.023590087890625,
-0.043853759765625,
0.043975830078125,
-0.0198822021484375,
0.0302886962890625,
0.01200103759765625,
0.0196990966796875,
0.00978851318359375,
-0.01238250732421875,
0.02154541015625,
0.035797119140625,
-0.0188751220703125,
-0.00264739990234375,
-0.01345062255859375,
-0.03350830078125,
-0.043060302734375,
0.035125732421875,
0.01364898681640625,
-0.0006928443908691406,
0.039276123046875,
0.057220458984375,
-0.049285888671875,
-0.0290985107421875,
0.030975341796875,
-0.01296234130859375,
-0.0179443359375,
-0.05023193359375,
0.021820068359375,
0.031280517578125,
0.0056610107421875,
-0.0087738037109375,
-0.01141357421875,
0.01467132568359375,
-0.0282745361328125,
0.0259246826171875,
0.0162200927734375,
-0.047637939453125,
-0.044708251953125,
0.01788330078125,
0.0465087890625,
-0.04571533203125,
0.0309295654296875,
-0.013214111328125,
-0.04083251953125,
0.03192138671875,
0.00673675537109375,
0.050048828125,
-0.0137481689453125,
0.032928466796875,
0.0230712890625,
0.0190887451171875,
0.0201568603515625,
0.0673828125,
-0.0391845703125,
-0.055145263671875,
0.001079559326171875,
-0.041107177734375,
-0.021575927734375,
-0.01514434814453125,
-0.0673828125,
0.028839111328125,
-0.03692626953125,
-0.0455322265625,
0.0228118896484375,
0.00238800048828125,
-0.06646728515625,
0.0170745849609375,
0.019683837890625,
0.093505859375,
-0.056121826171875,
0.06396484375,
0.0701904296875,
-0.03887939453125,
-0.038726806640625,
-0.0010423660278320312,
-0.00231170654296875,
-0.05841064453125,
-0.0009794235229492188,
0.002704620361328125,
0.01209259033203125,
-0.006786346435546875,
-0.06475830078125,
-0.04339599609375,
0.07171630859375,
-0.00738525390625,
-0.035186767578125,
0.005767822265625,
-0.011383056640625,
0.050262451171875,
-0.01360321044921875,
0.0012969970703125,
0.03741455078125,
0.053375244140625,
0.002910614013671875,
-0.05474853515625,
-0.01343536376953125,
-0.043975830078125,
-0.0153350830078125,
0.02984619140625,
-0.045257568359375,
0.01000213623046875,
0.006107330322265625,
-0.007720947265625,
-0.003131866455078125,
0.040740966796875,
-0.005275726318359375,
0.0290374755859375,
0.0153656005859375,
0.048431396484375,
0.07110595703125,
-0.02752685546875,
0.07177734375,
0.0023860931396484375,
0.034423828125,
0.08685302734375,
-0.0139617919921875,
0.04095458984375,
0.04718017578125,
0.002086639404296875,
0.01517486572265625,
0.036163330078125,
-0.04962158203125,
0.0149993896484375,
0.0279541015625,
-0.003875732421875,
-0.019927978515625,
-0.0389404296875,
-0.045318603515625,
0.0330810546875,
0.050994873046875,
-0.0218353271484375,
0.0008649826049804688,
-0.005321502685546875,
0.011627197265625,
-0.00791168212890625,
-0.0272064208984375,
0.066650390625,
0.01044464111328125,
-0.01187896728515625,
0.00023603439331054688,
-0.0032939910888671875,
0.03912353515625,
-0.046539306640625,
-0.03173828125,
0.0123748779296875,
0.0013446807861328125,
-0.036712646484375,
-0.09857177734375,
0.050384521484375,
-0.0104522705078125,
-0.01495361328125,
0.0059661865234375,
0.06329345703125,
-0.029937744140625,
-0.051849365234375,
0.0360107421875,
0.0172882080078125,
0.01198577880859375,
0.0130462646484375,
-0.083740234375,
0.01465606689453125,
-0.01873779296875,
-0.00641632080078125,
-0.00795745849609375,
0.00888824462890625,
0.005565643310546875,
0.044830322265625,
0.047393798828125,
0.01666259765625,
-0.0196075439453125,
0.032867431640625,
0.07745361328125,
-0.04876708984375,
-0.0298614501953125,
-0.032257080078125,
0.05108642578125,
-0.025665283203125,
-0.05157470703125,
0.03680419921875,
0.050048828125,
0.085693359375,
0.00261688232421875,
0.06182861328125,
-0.0399169921875,
0.04766845703125,
-0.02777099609375,
0.053619384765625,
-0.036407470703125,
-0.0191497802734375,
-0.017730712890625,
-0.05316162109375,
-0.05126953125,
0.034027099609375,
0.0172271728515625,
-0.005825042724609375,
0.0236053466796875,
0.06573486328125,
-0.005260467529296875,
-0.02069091796875,
-0.01064300537109375,
0.0106048583984375,
0.024749755859375,
0.00582122802734375,
0.02288818359375,
-0.0304107666015625,
0.00909423828125,
-0.01390838623046875,
-0.027008056640625,
0.0012197494506835938,
-0.072998046875,
-0.08154296875,
-0.0728759765625,
-0.0413818359375,
-0.045562744140625,
-0.0112762451171875,
0.06292724609375,
0.056884765625,
-0.05126953125,
-0.01274871826171875,
0.01268768310546875,
0.017059326171875,
0.00791168212890625,
-0.010467529296875,
0.040283203125,
0.030487060546875,
-0.034393310546875,
-0.023284912109375,
0.00473785400390625,
0.0152130126953125,
-0.00252532958984375,
0.011810302734375,
-0.00893402099609375,
0.01369476318359375,
0.029266357421875,
0.02239990234375,
-0.0198211669921875,
-0.0224609375,
-0.037628173828125,
0.00583648681640625,
0.00547027587890625,
0.057281494140625,
-0.0311279296875,
0.0265960693359375,
0.05328369140625,
0.0263824462890625,
0.0367431640625,
0.00948333740234375,
0.0244903564453125,
-0.049041748046875,
0.0011777877807617188,
0.008148193359375,
0.0259246826171875,
0.01285552978515625,
-0.0213470458984375,
0.048797607421875,
0.0303192138671875,
-0.0234375,
-0.05401611328125,
0.0153350830078125,
-0.1270751953125,
0.020355224609375,
0.0716552734375,
0.0172576904296875,
-0.032867431640625,
-0.01177978515625,
-0.038177490234375,
0.02642822265625,
-0.050537109375,
0.01739501953125,
0.045623779296875,
0.01512908935546875,
-0.00904083251953125,
-0.0091094970703125,
0.05596923828125,
-0.02532958984375,
-0.07928466796875,
0.01513671875,
0.025665283203125,
0.01067352294921875,
0.01384735107421875,
0.06890869140625,
-0.0088653564453125,
0.015045166015625,
0.01200103759765625,
0.043426513671875,
-0.013580322265625,
-0.03240966796875,
-0.0228118896484375,
-0.0081634521484375,
-0.00038170814514160156,
-0.0288238525390625
]
] |
laugustyniak/abusive-clauses-pl | 2023-03-29T10:46:49.000Z | [
"task_categories:text-classification",
"annotations_creators:hired_annotators",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:10<n<10K",
"language:pl",
"license:cc-by-nc-sa-4.0",
"region:us"
] | laugustyniak | null | @InProceedings{AbusiveClauses:dataset,
title = {AbusiveClauses},
author={},
year={2022}
} | 5 | 952 | 2022-03-02T23:29:22 | ---
annotations_creators:
- hired_annotators
language_creators:
- found
language:
- pl
license:
- cc-by-nc-sa-4.0
multilinguality:
- monolingual
size_categories:
- 10<n<10K
task_categories:
- text-classification
task_ids:
- text-classification
pretty_name: Polish-Abusive-Clauses
---
# PAC - Polish Abusive Clauses Dataset
''I have read and agree to the terms and conditions'' is one of the biggest lies on the Internet. Consumers rarely read the contracts they are required to accept. We conclude agreements over the Internet daily. But do we know the content of these agreements? Do we check potential unfair statements? On the Internet, we probably skip most of the Terms and Conditions. However, we must remember that we have concluded many more contracts. Imagine that we want to buy a house, a car, send our kids to the nursery, open a bank account, or many more. In all these situations, you will need to conclude the contract, but there is a high probability that you will not read the entire agreement with proper understanding. European consumer law aims to prevent businesses from using so-called ''unfair contractual terms'' in their unilaterally drafted contracts, requiring consumers to accept.
Our dataset treats ''unfair contractual term'' as the equivalent of an abusive clause. It could be defined as a clause that is unilaterally imposed by one of the contract's parties, unequally affecting the other, or creating a situation of imbalance between the duties and rights of the parties.
On the EU and at the national such as the Polish levels, agencies cannot check possible agreements by hand. Hence, we took the first step to evaluate the possibility of accelerating this process. We created a dataset and machine learning models to automate potentially abusive clauses detection partially. Consumer protection organizations and agencies can use these resources to make their work more effective and efficient. Moreover, consumers can automatically analyze contracts and understand what they agree upon.
## Tasks (input, output and metrics)
Abusive Clauses Detection
**Input** ('*text'* column): text of agreement
**Output** ('*label'* column): binary label (`BEZPIECZNE_POSTANOWIENIE_UMOWNE`: correct agreement statement, `KLAUZULA_ABUZYWNA`: abusive clause)
**Domain**: legal agreement
**Measurements**: Accuracy, F1 Macro
**Example***:*
Input: *`Wszelka korespondencja wysyłana przez Pożyczkodawcę na adres zamieszkania podany w umowie oraz na e-mail zostaje uznana za skutecznie doręczoną. Zmiana adresu e-mail oraz adresu zamieszkania musi być dostarczona do Pożyczkodawcy osobiście`*
Input (translated by DeepL): *`All correspondence sent by the Lender to the residential address provided in the agreement and to the e-mail address shall be deemed effectively delivered. Change of e-mail address and residential address must be delivered to the Lender in person`*
Output: `KLAUZULA_ABUZYWNA` (abusive clause)
## Data splits
| Subset | Cardinality (sentences) |
| ----------- | ----------------------: |
| train | 4284 |
| dev | 1519 |
| test | 3453 |
## Class distribution
`BEZPIECZNE_POSTANOWIENIE_UMOWNE` - means correct agreement statement.
`KLAUZULA_ABUZYWNA` informs us about abusive clause.
| Class | train | dev | test |
|:--------------------------------|--------:|-------------:|-------:|
| BEZPIECZNE_POSTANOWIENIE_UMOWNE | 0.5458 | 0.3002 | 0.6756 |
| KLAUZULA_ABUZYWNA | 0.4542 | 0.6998 | 0.3244 |
## License
[Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/)
## Citation
```bibtex
@inproceedings{NEURIPS2022_890b206e,
author = {Augustyniak, Lukasz and Tagowski, Kamil and Sawczyn, Albert and Janiak, Denis and Bartusiak, Roman and Szymczak, Adrian and Janz, Arkadiusz and Szyma\'{n}ski, Piotr and W\k{a}troba, Marcin and Morzy, Miko\l aj and Kajdanowicz, Tomasz and Piasecki, Maciej},
booktitle = {Advances in Neural Information Processing Systems},
editor = {S. Koyejo and S. Mohamed and A. Agarwal and D. Belgrave and K. Cho and A. Oh},
pages = {21805--21818},
publisher = {Curran Associates, Inc.},
title = {This is the way: designing and compiling LEPISZCZE, a comprehensive NLP benchmark for Polish},
url = {https://proceedings.neurips.cc/paper_files/paper/2022/file/890b206ebb79e550f3988cb8db936f42-Paper-Datasets_and_Benchmarks.pdf},
volume = {35},
year = {2022}
}
``` | 4,573 | [
[
-0.034881591796875,
-0.05987548828125,
0.039581298828125,
0.02008056640625,
-0.0271453857421875,
-0.0234832763671875,
-0.0035076141357421875,
-0.0546875,
0.0142059326171875,
0.041778564453125,
-0.035797119140625,
-0.053436279296875,
-0.061126708984375,
0.02679443359375,
-0.01454925537109375,
0.07745361328125,
0.0107421875,
0.0095367431640625,
-0.0077972412109375,
-0.005977630615234375,
-0.0117034912109375,
-0.05560302734375,
-0.029876708984375,
-0.004055023193359375,
-0.0030918121337890625,
0.0113983154296875,
0.05279541015625,
0.0307464599609375,
0.04254150390625,
0.0297698974609375,
-0.0037994384765625,
0.007282257080078125,
-0.00986480712890625,
0.02069091796875,
-0.00293731689453125,
-0.017120361328125,
-0.049896240234375,
-0.00766754150390625,
0.0204925537109375,
0.04241943359375,
-0.0075836181640625,
0.007167816162109375,
0.003139495849609375,
0.05450439453125,
-0.05792236328125,
0.01776123046875,
-0.040802001953125,
0.0070648193359375,
-0.01297760009765625,
-0.013763427734375,
-0.036407470703125,
-0.0128326416015625,
-0.00980377197265625,
-0.057708740234375,
0.00389862060546875,
-0.007335662841796875,
0.08221435546875,
0.0230255126953125,
-0.027984619140625,
-0.031341552734375,
-0.0248260498046875,
0.043670654296875,
-0.07684326171875,
0.0228271484375,
0.048126220703125,
-0.002765655517578125,
-0.036834716796875,
-0.05084228515625,
-0.045074462890625,
-0.0148162841796875,
-0.0174713134765625,
0.02349853515625,
-0.03900146484375,
-0.007740020751953125,
0.03472900390625,
0.0007901191711425781,
-0.0274658203125,
0.0140533447265625,
-0.03204345703125,
-0.035491943359375,
0.06011962890625,
0.0190582275390625,
0.0129852294921875,
-0.0223541259765625,
-0.04400634765625,
0.005229949951171875,
-0.046722412109375,
0.006870269775390625,
0.05279541015625,
0.034088134765625,
-0.0170745849609375,
0.041656494140625,
-0.0159759521484375,
0.050140380859375,
-0.0015468597412109375,
-0.0035610198974609375,
0.057220458984375,
-0.034149169921875,
-0.0231475830078125,
-0.0032482147216796875,
0.08544921875,
0.03863525390625,
0.02545166015625,
-0.0033931732177734375,
-0.018585205078125,
0.0090789794921875,
0.0231475830078125,
-0.045989990234375,
-0.003376007080078125,
0.01233673095703125,
-0.0498046875,
-0.01947021484375,
0.00804901123046875,
-0.091552734375,
-0.023834228515625,
-0.01445770263671875,
0.01279449462890625,
-0.032196044921875,
-0.013397216796875,
0.019378662109375,
0.0006494522094726562,
0.0311126708984375,
-0.002288818359375,
-0.058685302734375,
0.06817626953125,
0.040679931640625,
0.039794921875,
0.01494598388671875,
-0.022552490234375,
-0.0272979736328125,
-0.0153350830078125,
-0.01428985595703125,
0.058349609375,
-0.035797119140625,
0.005863189697265625,
0.022705078125,
0.004718780517578125,
-0.00411224365234375,
-0.0330810546875,
0.05303955078125,
-0.034820556640625,
0.032501220703125,
-0.006847381591796875,
-0.031402587890625,
-0.00908660888671875,
0.00731658935546875,
-0.0243377685546875,
0.082763671875,
0.0017290115356445312,
-0.0538330078125,
0.031158447265625,
-0.05120849609375,
-0.0271453857421875,
-0.0113067626953125,
0.0160675048828125,
-0.051727294921875,
-0.00780487060546875,
0.019775390625,
0.026031494140625,
-0.0231170654296875,
0.0228118896484375,
-0.0487060546875,
-0.00965118408203125,
0.0290069580078125,
-0.02569580078125,
0.1170654296875,
0.036468505859375,
-0.050262451171875,
-0.005207061767578125,
-0.06451416015625,
-0.00870513916015625,
0.0163726806640625,
-0.0229949951171875,
-0.0179290771484375,
-0.00131988525390625,
0.0036163330078125,
0.051055908203125,
0.02679443359375,
-0.056976318359375,
0.01213836669921875,
-0.040252685546875,
0.0290985107421875,
0.06060791015625,
0.004558563232421875,
0.0226287841796875,
-0.004932403564453125,
0.031982421875,
-0.00861358642578125,
0.03875732421875,
0.02569580078125,
-0.040313720703125,
-0.04852294921875,
0.0021762847900390625,
0.0233917236328125,
0.0521240234375,
-0.039825439453125,
0.06597900390625,
-0.00887298583984375,
-0.024139404296875,
-0.033599853515625,
-0.0004954338073730469,
0.034759521484375,
0.03167724609375,
0.036590576171875,
-0.006465911865234375,
-0.05194091796875,
-0.07330322265625,
-0.0198211669921875,
-0.0177764892578125,
0.007335662841796875,
0.01364898681640625,
0.04559326171875,
0.011199951171875,
0.047454833984375,
-0.036346435546875,
-0.03912353515625,
-0.0086822509765625,
-0.0160064697265625,
0.031707763671875,
0.024139404296875,
0.0582275390625,
-0.05908203125,
-0.045196533203125,
-0.021484375,
-0.06414794921875,
-0.031707763671875,
-0.004810333251953125,
-0.01407623291015625,
0.0306243896484375,
0.04803466796875,
-0.041107177734375,
0.0224609375,
0.0137786865234375,
-0.08294677734375,
0.041473388671875,
-0.03271484375,
-0.004909515380859375,
-0.0643310546875,
0.009521484375,
-0.006183624267578125,
-0.022216796875,
-0.049835205078125,
0.010955810546875,
-0.01050567626953125,
0.00862884521484375,
-0.0491943359375,
0.0297698974609375,
-0.042022705078125,
-0.0229339599609375,
0.00666046142578125,
0.0187225341796875,
-0.0172882080078125,
0.061065673828125,
-0.021453857421875,
0.05572509765625,
0.048553466796875,
-0.04644775390625,
0.01537322998046875,
0.041839599609375,
-0.0200347900390625,
0.044921875,
-0.037750244140625,
-0.006275177001953125,
0.0025310516357421875,
-0.00042700767517089844,
-0.0548095703125,
0.01435089111328125,
0.07122802734375,
-0.044586181640625,
0.0017147064208984375,
-0.00719451904296875,
-0.0546875,
-0.0175933837890625,
-0.0270538330078125,
-0.0011272430419921875,
0.0364990234375,
-0.0283355712890625,
0.039825439453125,
0.052276611328125,
-0.00946807861328125,
-0.07421875,
-0.050506591796875,
0.0170745849609375,
-0.020721435546875,
-0.04425048828125,
0.0219573974609375,
-0.0018253326416015625,
-0.0340576171875,
0.0188446044921875,
0.01020050048828125,
-0.0172271728515625,
0.01934814453125,
0.0182342529296875,
0.026885986328125,
-0.003963470458984375,
0.0079193115234375,
-0.00315093994140625,
-0.019744873046875,
0.0244140625,
0.0005288124084472656,
0.060638427734375,
-0.01605224609375,
-0.00931549072265625,
-0.02783203125,
0.035858154296875,
0.0390625,
-0.009674072265625,
0.0452880859375,
0.0123748779296875,
-0.021514892578125,
-0.0000400543212890625,
-0.01552581787109375,
0.01146697998046875,
-0.034027099609375,
0.0139312744140625,
-0.0224609375,
-0.03167724609375,
0.056488037109375,
0.01119232177734375,
0.0103912353515625,
0.06939697265625,
0.046905517578125,
-0.00804901123046875,
0.06976318359375,
0.041107177734375,
0.006374359130859375,
0.039398193359375,
-0.0267181396484375,
0.011474609375,
-0.05035400390625,
-0.028106689453125,
-0.0567626953125,
-0.0234832763671875,
-0.06329345703125,
-0.0008387565612792969,
0.0015964508056640625,
0.0010423660278320312,
-0.0259246826171875,
0.0338134765625,
-0.041839599609375,
0.0290985107421875,
0.0262451171875,
0.012420654296875,
0.0164642333984375,
-0.00989532470703125,
-0.0276947021484375,
-0.00536346435546875,
-0.045623779296875,
-0.044891357421875,
0.08526611328125,
0.0210723876953125,
0.0243377685546875,
0.0247344970703125,
0.061492919921875,
0.035186767578125,
0.006061553955078125,
-0.064697265625,
0.056976318359375,
-0.0289306640625,
-0.038482666015625,
-0.0189056396484375,
-0.026123046875,
-0.1014404296875,
0.037506103515625,
-0.034912109375,
-0.06341552734375,
0.0567626953125,
-0.003322601318359375,
-0.0146026611328125,
0.0194549560546875,
-0.044403076171875,
0.058563232421875,
-0.0008263587951660156,
-0.032073974609375,
-0.00827789306640625,
-0.06402587890625,
0.0166168212890625,
0.01076507568359375,
0.0274810791015625,
-0.01904296875,
-0.0172882080078125,
0.07025146484375,
-0.06109619140625,
0.0772705078125,
-0.035614013671875,
0.004146575927734375,
0.0226287841796875,
-0.00937652587890625,
0.045654296875,
-0.010986328125,
-0.0191192626953125,
0.00885009765625,
-0.004207611083984375,
-0.035430908203125,
-0.019866943359375,
0.039581298828125,
-0.05377197265625,
-0.0181121826171875,
-0.0546875,
-0.024169921875,
-0.01007080078125,
0.046630859375,
0.0295257568359375,
0.02593994140625,
-0.0007228851318359375,
0.0015850067138671875,
0.03179931640625,
-0.01314544677734375,
0.03863525390625,
0.044891357421875,
-0.001209259033203125,
-0.0310821533203125,
0.038909912109375,
0.017242431640625,
0.01062774658203125,
-0.0004639625549316406,
0.0014781951904296875,
-0.03045654296875,
-0.06109619140625,
-0.0089874267578125,
0.028961181640625,
-0.06634521484375,
-0.0384521484375,
-0.054168701171875,
-0.0009279251098632812,
-0.0396728515625,
0.00579071044921875,
-0.01079559326171875,
-0.037017822265625,
-0.00411224365234375,
-0.0171356201171875,
0.0182037353515625,
0.053985595703125,
-0.0264434814453125,
0.0178070068359375,
-0.034576416015625,
0.0263824462890625,
-0.0028247833251953125,
0.039276123046875,
-0.0230560302734375,
-0.029815673828125,
0.0025196075439453125,
-0.0005841255187988281,
-0.020263671875,
-0.08258056640625,
0.045013427734375,
0.005352020263671875,
0.057373046875,
0.00986480712890625,
0.02978515625,
0.033172607421875,
-0.0229644775390625,
0.05804443359375,
0.00986480712890625,
-0.06878662109375,
0.026275634765625,
-0.0181427001953125,
-0.0021839141845703125,
0.0679931640625,
0.024169921875,
-0.031494140625,
-0.05145263671875,
-0.0810546875,
-0.07830810546875,
0.06591796875,
0.0174713134765625,
0.01093292236328125,
-0.006229400634765625,
0.0127105712890625,
-0.0005960464477539062,
0.00693511962890625,
-0.069580078125,
-0.04046630859375,
-0.0009284019470214844,
-0.00008362531661987305,
0.0184478759765625,
-0.031463623046875,
-0.01126861572265625,
-0.0191192626953125,
0.07708740234375,
0.00923919677734375,
0.037750244140625,
0.016265869140625,
-0.018890380859375,
0.001983642578125,
0.0274810791015625,
0.047119140625,
0.05682373046875,
-0.01250457763671875,
0.00782012939453125,
0.00742340087890625,
-0.04632568359375,
0.00850677490234375,
0.012176513671875,
-0.0262908935546875,
0.0057830810546875,
0.0291748046875,
0.06231689453125,
0.00870513916015625,
-0.03863525390625,
0.062744140625,
-0.01172637939453125,
-0.056304931640625,
-0.05126953125,
-0.01317596435546875,
-0.0195770263671875,
0.0174102783203125,
0.007740020751953125,
0.0255279541015625,
0.02349853515625,
-0.033172607421875,
0.02154541015625,
0.0106048583984375,
-0.0290374755859375,
-0.006877899169921875,
0.029541015625,
0.00025343894958496094,
-0.02777099609375,
0.0616455078125,
-0.032501220703125,
-0.044036865234375,
0.044708251953125,
0.052581787109375,
0.0584716796875,
-0.0023632049560546875,
0.025177001953125,
0.033721923828125,
0.0265350341796875,
0.00708770751953125,
0.050994873046875,
0.0037212371826171875,
-0.05767822265625,
-0.0197906494140625,
-0.041778564453125,
0.004894256591796875,
0.0160980224609375,
-0.05126953125,
0.0212860107421875,
-0.040924072265625,
-0.01507568359375,
0.00905609130859375,
0.006229400634765625,
-0.046234130859375,
0.00014269351959228516,
0.0030879974365234375,
0.07000732421875,
-0.0860595703125,
0.052398681640625,
0.035003662109375,
-0.039276123046875,
-0.041351318359375,
-0.004787445068359375,
-0.0007791519165039062,
-0.05853271484375,
0.041961669921875,
-0.01409912109375,
-0.01004791259765625,
-0.030029296875,
-0.041534423828125,
-0.06243896484375,
0.053741455078125,
0.04425048828125,
-0.037322998046875,
0.0165252685546875,
0.010528564453125,
0.06463623046875,
-0.01476287841796875,
-0.002292633056640625,
0.03900146484375,
0.046722412109375,
-0.0033092498779296875,
-0.049713134765625,
0.019317626953125,
-0.052734375,
-0.034210205078125,
0.037353515625,
-0.036651611328125,
0.06256103515625,
0.0016841888427734375,
-0.0157623291015625,
-0.005657196044921875,
0.0233917236328125,
-0.0020656585693359375,
0.0229034423828125,
0.041839599609375,
0.047637939453125,
0.051544189453125,
-0.0094451904296875,
0.08660888671875,
-0.01320648193359375,
0.037933349609375,
0.09521484375,
0.0034942626953125,
0.07183837890625,
0.038238525390625,
-0.039642333984375,
0.050201416015625,
0.033935546875,
-0.037994384765625,
0.041656494140625,
0.0075836181640625,
0.0025005340576171875,
-0.02398681640625,
0.0016803741455078125,
-0.0252685546875,
0.043548583984375,
0.0230712890625,
-0.0435791015625,
-0.0270538330078125,
-0.01336669921875,
0.0194091796875,
0.0224609375,
-0.00580596923828125,
0.0743408203125,
0.006923675537109375,
-0.03717041015625,
0.047637939453125,
-0.0078887939453125,
0.047607421875,
-0.0430908203125,
-0.004436492919921875,
-0.0050811767578125,
0.00908660888671875,
-0.025299072265625,
-0.06634521484375,
0.04119873046875,
0.0131072998046875,
-0.0057220458984375,
-0.02264404296875,
0.057830810546875,
-0.0032806396484375,
-0.0389404296875,
0.0465087890625,
0.022979736328125,
0.029022216796875,
0.0246734619140625,
-0.0833740234375,
-0.014129638671875,
-0.006679534912109375,
-0.0272979736328125,
0.02734375,
0.029693603515625,
-0.005672454833984375,
0.0305328369140625,
0.0479736328125,
0.0269622802734375,
0.01515960693359375,
-0.0027408599853515625,
0.06256103515625,
-0.045257568359375,
-0.052764892578125,
-0.06341552734375,
0.040496826171875,
-0.036865234375,
-0.043914794921875,
0.049713134765625,
0.04766845703125,
0.06219482421875,
0.01245880126953125,
0.041015625,
-0.022552490234375,
0.0243072509765625,
-0.036102294921875,
0.042144775390625,
-0.02569580078125,
0.0276641845703125,
-0.0196990966796875,
-0.08367919921875,
-0.044097900390625,
0.040679931640625,
-0.048675537109375,
0.00005048513412475586,
0.051849365234375,
0.042327880859375,
0.0008134841918945312,
-0.0194549560546875,
0.01374053955078125,
0.04034423828125,
0.02020263671875,
0.032073974609375,
0.04119873046875,
-0.05389404296875,
0.054656982421875,
-0.04217529296875,
-0.004032135009765625,
-0.00786590576171875,
-0.056976318359375,
-0.042236328125,
-0.038116455078125,
-0.01195526123046875,
-0.040771484375,
-0.0003204345703125,
0.0718994140625,
0.0256195068359375,
-0.07061767578125,
-0.023162841796875,
-0.01010894775390625,
0.005138397216796875,
-0.036102294921875,
-0.0197296142578125,
0.033905029296875,
-0.03863525390625,
-0.03692626953125,
0.01136016845703125,
0.005359649658203125,
-0.006744384765625,
0.00724029541015625,
-0.01016998291015625,
-0.03948974609375,
0.0013189315795898438,
0.037506103515625,
0.0186004638671875,
-0.048126220703125,
-0.004009246826171875,
-0.01178741455078125,
-0.022308349609375,
0.031097412109375,
0.04779052734375,
-0.044769287109375,
0.0278167724609375,
0.05291748046875,
0.0235137939453125,
0.035675048828125,
-0.0198822021484375,
0.0285491943359375,
-0.041351318359375,
0.0169525146484375,
0.0247650146484375,
0.050872802734375,
0.00833892822265625,
-0.04180908203125,
0.040679931640625,
0.003757476806640625,
-0.0307159423828125,
-0.05413818359375,
0.0018625259399414062,
-0.07269287109375,
-0.0487060546875,
0.07183837890625,
-0.0137176513671875,
-0.0238189697265625,
-0.0487060546875,
-0.0092010498046875,
0.010955810546875,
-0.043914794921875,
0.062225341796875,
0.046722412109375,
-0.0203857421875,
0.0178985595703125,
-0.048828125,
0.0452880859375,
0.0262908935546875,
-0.07269287109375,
0.0335693359375,
0.045867919921875,
0.0246734619140625,
0.0225982666015625,
0.057861328125,
-0.028717041015625,
0.026885986328125,
0.01617431640625,
-0.0004897117614746094,
-0.0177764892578125,
-0.003849029541015625,
-0.043060302734375,
0.018768310546875,
-0.01322174072265625,
-0.0124359130859375
]
] |
codah | 2023-01-25T14:28:20.000Z | [
"task_categories:question-answering",
"task_ids:multiple-choice-qa",
"annotations_creators:crowdsourced",
"language_creators:crowdsourced",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:en",
"license:unknown",
"region:us"
] | null | The COmmonsense Dataset Adversarially-authored by Humans (CODAH) is an evaluation set for commonsense question-answering in the sentence completion style of SWAG. As opposed to other automatically generated NLI datasets, CODAH is adversarially constructed by humans who can view feedback from a pre-trained model and use this information to design challenging commonsense questions. Our experimental results show that CODAH questions present a complementary extension to the SWAG dataset, testing additional modes of common sense. | @inproceedings{chen2019codah,
title={CODAH: An Adversarially-Authored Question Answering Dataset for Common Sense},
author={Chen, Michael and D'Arcy, Mike and Liu, Alisa and Fernandez, Jared and Downey, Doug},
booktitle={Proceedings of the 3rd Workshop on Evaluating Vector Space Representations for NLP},
pages={63--69},
year={2019}
} | 4 | 951 | 2022-03-02T23:29:22 | ---
annotations_creators:
- crowdsourced
language_creators:
- crowdsourced
language:
- en
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- question-answering
task_ids:
- multiple-choice-qa
paperswithcode_id: codah
pretty_name: COmmonsense Dataset Adversarially-authored by Humans
dataset_info:
- config_name: codah
features:
- name: id
dtype: int32
- name: question_category
dtype:
class_label:
names:
'0': Idioms
'1': Reference
'2': Polysemy
'3': Negation
'4': Quantitative
'5': Others
- name: question_propmt
dtype: string
- name: candidate_answers
sequence: string
- name: correct_answer_idx
dtype: int32
splits:
- name: train
num_bytes: 571208
num_examples: 2776
download_size: 485130
dataset_size: 571208
- config_name: fold_0
features:
- name: id
dtype: int32
- name: question_category
dtype:
class_label:
names:
'0': Idioms
'1': Reference
'2': Polysemy
'3': Negation
'4': Quantitative
'5': Others
- name: question_propmt
dtype: string
- name: candidate_answers
sequence: string
- name: correct_answer_idx
dtype: int32
splits:
- name: train
num_bytes: 344912
num_examples: 1665
- name: validation
num_bytes: 114211
num_examples: 556
- name: test
num_bytes: 112109
num_examples: 555
download_size: 485130
dataset_size: 571232
- config_name: fold_1
features:
- name: id
dtype: int32
- name: question_category
dtype:
class_label:
names:
'0': Idioms
'1': Reference
'2': Polysemy
'3': Negation
'4': Quantitative
'5': Others
- name: question_propmt
dtype: string
- name: candidate_answers
sequence: string
- name: correct_answer_idx
dtype: int32
splits:
- name: train
num_bytes: 340990
num_examples: 1665
- name: validation
num_bytes: 114211
num_examples: 556
- name: test
num_bytes: 116031
num_examples: 555
download_size: 485130
dataset_size: 571232
- config_name: fold_2
features:
- name: id
dtype: int32
- name: question_category
dtype:
class_label:
names:
'0': Idioms
'1': Reference
'2': Polysemy
'3': Negation
'4': Quantitative
'5': Others
- name: question_propmt
dtype: string
- name: candidate_answers
sequence: string
- name: correct_answer_idx
dtype: int32
splits:
- name: train
num_bytes: 342293
num_examples: 1665
- name: validation
num_bytes: 114211
num_examples: 556
- name: test
num_bytes: 114728
num_examples: 555
download_size: 485130
dataset_size: 571232
- config_name: fold_3
features:
- name: id
dtype: int32
- name: question_category
dtype:
class_label:
names:
'0': Idioms
'1': Reference
'2': Polysemy
'3': Negation
'4': Quantitative
'5': Others
- name: question_propmt
dtype: string
- name: candidate_answers
sequence: string
- name: correct_answer_idx
dtype: int32
splits:
- name: train
num_bytes: 342844
num_examples: 1665
- name: validation
num_bytes: 114211
num_examples: 556
- name: test
num_bytes: 114177
num_examples: 555
download_size: 485130
dataset_size: 571232
- config_name: fold_4
features:
- name: id
dtype: int32
- name: question_category
dtype:
class_label:
names:
'0': Idioms
'1': Reference
'2': Polysemy
'3': Negation
'4': Quantitative
'5': Others
- name: question_propmt
dtype: string
- name: candidate_answers
sequence: string
- name: correct_answer_idx
dtype: int32
splits:
- name: train
num_bytes: 342844
num_examples: 1665
- name: validation
num_bytes: 114177
num_examples: 555
- name: test
num_bytes: 114211
num_examples: 556
download_size: 485130
dataset_size: 571232
---
# Dataset Card for COmmonsense Dataset Adversarially-authored by Humans
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [Add homepage URL here if available (unless it's a GitHub repository)]()
- **Repository:** [If the dataset is hosted on github or has a github homepage, add URL here]()
- **Paper:** [If the dataset was introduced by a paper or there was a paper written describing the dataset, add URL here (landing page for Arxiv paper preferred)]()
- **Leaderboard:** [If the dataset supports an active leaderboard, add link here]()
- **Point of Contact:** [If known, name and email of at least one person the reader can contact for questions about the dataset.]()
### Dataset Summary
[More Information Needed]
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
[More Information Needed]
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
[More Information Needed]
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
[More Information Needed]
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Contributions
Thanks to [@patil-suraj](https://github.com/patil-suraj) for adding this dataset. | 7,225 | [
[
-0.03692626953125,
-0.033966064453125,
0.009552001953125,
0.00452423095703125,
-0.00957489013671875,
0.005580902099609375,
-0.017822265625,
-0.0213775634765625,
0.03155517578125,
0.04998779296875,
-0.04620361328125,
-0.07086181640625,
-0.050811767578125,
0.01053619384765625,
-0.016876220703125,
0.097412109375,
0.01027679443359375,
-0.010986328125,
-0.0206146240234375,
-0.0209808349609375,
-0.0142822265625,
-0.0357666015625,
-0.0309906005859375,
-0.019989013671875,
0.03948974609375,
0.041778564453125,
0.0633544921875,
0.07122802734375,
0.045684814453125,
0.02197265625,
-0.005523681640625,
0.0103912353515625,
-0.03704833984375,
-0.0182647705078125,
-0.022369384765625,
-0.0164794921875,
-0.054534912109375,
0.0063323974609375,
0.0428466796875,
0.05157470703125,
-0.00036334991455078125,
0.0406494140625,
0.006954193115234375,
0.055145263671875,
-0.041107177734375,
0.0297393798828125,
-0.0192108154296875,
-0.005275726318359375,
-0.040557861328125,
-0.0025844573974609375,
-0.01099395751953125,
-0.037811279296875,
-0.0144500732421875,
-0.06597900390625,
0.014984130859375,
0.00510406494140625,
0.0567626953125,
0.007175445556640625,
-0.018890380859375,
-0.0240936279296875,
-0.02783203125,
0.047027587890625,
-0.046966552734375,
-0.00092315673828125,
0.052978515625,
0.0224761962890625,
-0.006816864013671875,
-0.06475830078125,
-0.04217529296875,
0.007297515869140625,
-0.018646240234375,
0.01343536376953125,
-0.0167236328125,
-0.0167694091796875,
0.036590576171875,
0.027984619140625,
-0.0494384765625,
-0.019683837890625,
-0.0546875,
-0.019866943359375,
0.07818603515625,
0.0215911865234375,
0.01311492919921875,
-0.0274810791015625,
-0.00965118408203125,
-0.0269622802734375,
-0.025115966796875,
-0.006595611572265625,
0.050262451171875,
0.03289794921875,
-0.03387451171875,
0.046417236328125,
-0.017059326171875,
0.048736572265625,
-0.0221099853515625,
-0.00225830078125,
0.04827880859375,
-0.037811279296875,
0.00469207763671875,
-0.0036640167236328125,
0.053802490234375,
0.035369873046875,
0.005489349365234375,
-0.007343292236328125,
-0.0058746337890625,
-0.00836944580078125,
0.00604248046875,
-0.04681396484375,
-0.042327880859375,
0.0377197265625,
-0.05084228515625,
-0.0325927734375,
0.023284912109375,
-0.0894775390625,
-0.0394287109375,
-0.02325439453125,
0.01163482666015625,
-0.00601959228515625,
-0.0299072265625,
-0.0122528076171875,
-0.028564453125,
0.0100250244140625,
0.0053863525390625,
-0.051025390625,
0.042999267578125,
0.046783447265625,
0.060882568359375,
-0.0121307373046875,
-0.031402587890625,
-0.02471923828125,
0.022247314453125,
-0.005794525146484375,
0.043701171875,
-0.026611328125,
-0.0421142578125,
0.0005078315734863281,
0.02008056640625,
0.00868988037109375,
-0.01983642578125,
0.0648193359375,
-0.0216827392578125,
0.01454925537109375,
-0.0450439453125,
-0.024505615234375,
-0.009796142578125,
0.0297393798828125,
-0.0736083984375,
0.07891845703125,
0.0029850006103515625,
-0.0745849609375,
0.0161285400390625,
-0.0833740234375,
-0.039337158203125,
0.01309967041015625,
-0.00881195068359375,
-0.040771484375,
-0.0343017578125,
0.0080108642578125,
0.044952392578125,
-0.01486968994140625,
0.0162811279296875,
-0.027862548828125,
-0.0111541748046875,
0.0156707763671875,
-0.018035888671875,
0.0966796875,
0.03582763671875,
-0.00977325439453125,
0.00482940673828125,
-0.0770263671875,
-0.01129150390625,
0.029632568359375,
-0.0212249755859375,
-0.0162353515625,
-0.01120758056640625,
0.040191650390625,
-0.01490020751953125,
0.033599853515625,
-0.023284912109375,
0.022918701171875,
-0.00029206275939941406,
0.0310211181640625,
0.0518798828125,
0.0143585205078125,
0.0273284912109375,
-0.042083740234375,
0.028778076171875,
-0.0009613037109375,
0.02935791015625,
0.007221221923828125,
-0.0498046875,
-0.038421630859375,
-0.01149749755859375,
0.01934814453125,
0.05535888671875,
-0.042816162109375,
0.046417236328125,
-0.0300445556640625,
-0.051422119140625,
-0.0270538330078125,
0.01715087890625,
0.0297698974609375,
0.045684814453125,
0.02947998046875,
-0.01611328125,
-0.04400634765625,
-0.060882568359375,
-0.0025882720947265625,
-0.004180908203125,
0.01204681396484375,
0.040924072265625,
0.070068359375,
-0.0152740478515625,
0.055419921875,
-0.0625,
-0.0153350830078125,
-0.019866943359375,
0.0197296142578125,
0.027557373046875,
0.04296875,
0.0333251953125,
-0.08038330078125,
-0.025115966796875,
-0.017303466796875,
-0.05023193359375,
-0.004962921142578125,
-0.0028057098388671875,
-0.0176544189453125,
0.00798797607421875,
0.01788330078125,
-0.016815185546875,
0.036163330078125,
0.03619384765625,
-0.03521728515625,
0.031219482421875,
-0.0078125,
0.01309967041015625,
-0.10693359375,
0.038848876953125,
0.0068359375,
0.00911712646484375,
-0.038360595703125,
-0.0022258758544921875,
-0.0009503364562988281,
-0.01152801513671875,
-0.0297698974609375,
0.053009033203125,
-0.0258331298828125,
0.004550933837890625,
0.0120849609375,
0.004413604736328125,
0.0016880035400390625,
0.03216552734375,
-0.00424957275390625,
0.053924560546875,
0.037322998046875,
-0.03973388671875,
0.040252685546875,
0.03582763671875,
-0.0157012939453125,
0.045196533203125,
-0.057403564453125,
-0.0019207000732421875,
-0.0125885009765625,
0.01666259765625,
-0.065185546875,
-0.0521240234375,
0.04949951171875,
-0.050506591796875,
0.0104827880859375,
-0.01461029052734375,
-0.054168701171875,
-0.029876708984375,
-0.03106689453125,
0.0169525146484375,
0.0218505859375,
-0.0313720703125,
0.02813720703125,
0.0533447265625,
0.007293701171875,
-0.040679931640625,
-0.0699462890625,
0.018096923828125,
-0.0204010009765625,
-0.040802001953125,
0.0295257568359375,
-0.0229644775390625,
-0.0203704833984375,
0.01486968994140625,
0.039031982421875,
-0.01473236083984375,
0.01120758056640625,
0.0230560302734375,
0.01129913330078125,
0.01215362548828125,
0.004730224609375,
-0.0182647705078125,
-0.008056640625,
0.0024585723876953125,
0.004901885986328125,
0.016265869140625,
-0.00897979736328125,
-0.0147705078125,
-0.029632568359375,
0.0340576171875,
0.023223876953125,
-0.0170440673828125,
0.0406494140625,
0.0682373046875,
-0.03729248046875,
-0.0011491775512695312,
-0.021453857421875,
-0.00618743896484375,
-0.030517578125,
0.01727294921875,
-0.002410888671875,
-0.029083251953125,
0.06573486328125,
0.0077362060546875,
0.0137786865234375,
0.050567626953125,
0.036407470703125,
0.005985260009765625,
0.055267333984375,
0.02667236328125,
-0.022613525390625,
0.028411865234375,
-0.04583740234375,
-0.01390838623046875,
-0.0606689453125,
-0.0291595458984375,
-0.0494384765625,
-0.033111572265625,
-0.062042236328125,
-0.0173492431640625,
0.009765625,
-0.01004791259765625,
-0.02734375,
0.035430908203125,
-0.062286376953125,
0.037384033203125,
0.06439208984375,
0.0169677734375,
0.00881195068359375,
-0.003894805908203125,
0.01898193359375,
0.00911712646484375,
-0.045654296875,
-0.038848876953125,
0.09759521484375,
0.020965576171875,
0.0450439453125,
0.015716552734375,
0.0634765625,
0.04168701171875,
0.0105438232421875,
-0.02447509765625,
0.03973388671875,
-0.020263671875,
-0.07110595703125,
-0.02880859375,
-0.0277557373046875,
-0.07659912109375,
-0.0212249755859375,
-0.022552490234375,
-0.043212890625,
0.0330810546875,
0.01369476318359375,
-0.0204925537109375,
0.0193939208984375,
-0.053802490234375,
0.0733642578125,
-0.01358795166015625,
-0.033721923828125,
0.0132293701171875,
-0.0704345703125,
0.0178375244140625,
0.0173492431640625,
0.040252685546875,
0.0024700164794921875,
-0.01065826416015625,
0.08489990234375,
-0.032135009765625,
0.0833740234375,
-0.018096923828125,
0.02569580078125,
0.032806396484375,
-0.0252685546875,
0.045196533203125,
0.0140380859375,
-0.01177215576171875,
0.0214996337890625,
-0.0021762847900390625,
-0.04229736328125,
-0.0304412841796875,
0.05023193359375,
-0.07281494140625,
-0.01654052734375,
-0.04302978515625,
-0.037017822265625,
0.0071258544921875,
0.03277587890625,
0.0215606689453125,
0.028228759765625,
-0.01195526123046875,
0.02435302734375,
0.049774169921875,
-0.0079345703125,
0.019073486328125,
0.00830078125,
0.00691986083984375,
-0.060699462890625,
0.07421875,
0.028839111328125,
-0.00489044189453125,
0.018798828125,
0.018585205078125,
-0.030548095703125,
-0.0304412841796875,
-0.034210205078125,
0.0048828125,
-0.0615234375,
-0.01513671875,
-0.0369873046875,
-0.0147705078125,
-0.05401611328125,
-0.0161285400390625,
-0.0068359375,
-0.035552978515625,
-0.04400634765625,
-0.0109100341796875,
0.054351806640625,
0.0421142578125,
-0.040679931640625,
0.0180511474609375,
-0.0462646484375,
0.02630615234375,
0.01377105712890625,
0.031524658203125,
-0.0025539398193359375,
-0.02001953125,
-0.01898193359375,
0.0079193115234375,
-0.0161590576171875,
-0.056060791015625,
0.0229949951171875,
0.004901885986328125,
0.0618896484375,
0.0188446044921875,
0.02996826171875,
0.0291900634765625,
-0.004154205322265625,
0.07464599609375,
0.003265380859375,
-0.039825439453125,
0.04541015625,
-0.043548583984375,
0.01038360595703125,
0.06585693359375,
0.031463623046875,
-0.0311279296875,
0.006549835205078125,
-0.0633544921875,
-0.07275390625,
0.04656982421875,
0.0163421630859375,
0.0194549560546875,
-0.00576019287109375,
0.01953125,
-0.006771087646484375,
0.00522613525390625,
-0.060211181640625,
-0.05712890625,
-0.029876708984375,
-0.0170135498046875,
-0.0005865097045898438,
-0.0066680908203125,
-0.0439453125,
-0.019866943359375,
0.056427001953125,
0.004085540771484375,
0.006687164306640625,
0.010162353515625,
0.0137786865234375,
0.00156402587890625,
0.00897216796875,
0.03814697265625,
0.04522705078125,
-0.0268707275390625,
0.004627227783203125,
0.0018749237060546875,
-0.054534912109375,
-0.0172119140625,
0.022247314453125,
-0.016021728515625,
-0.01468658447265625,
0.039154052734375,
0.03961181640625,
0.0001061558723449707,
-0.0274810791015625,
0.047271728515625,
0.004817962646484375,
-0.02838134765625,
-0.045562744140625,
0.00453948974609375,
0.00087738037109375,
0.023681640625,
0.0275421142578125,
0.0061187744140625,
0.0238800048828125,
-0.035552978515625,
0.027618408203125,
0.00571441650390625,
-0.01306915283203125,
-0.0129241943359375,
0.054443359375,
0.0254669189453125,
-0.03173828125,
0.03839111328125,
-0.033599853515625,
-0.028289794921875,
0.060302734375,
0.01617431640625,
0.055877685546875,
0.00894927978515625,
0.0256805419921875,
0.048614501953125,
0.021484375,
-0.00768280029296875,
0.04248046875,
-0.0117950439453125,
-0.0430908203125,
0.0030765533447265625,
-0.0229339599609375,
-0.03271484375,
0.0152130126953125,
-0.0672607421875,
0.0269622802734375,
-0.041229248046875,
-0.01139068603515625,
0.00791168212890625,
0.031341552734375,
-0.05755615234375,
0.0194854736328125,
-0.003108978271484375,
0.06805419921875,
-0.07342529296875,
0.052154541015625,
0.052642822265625,
-0.06402587890625,
-0.0401611328125,
-0.013031005859375,
0.01629638671875,
-0.052642822265625,
0.0290374755859375,
-0.0164337158203125,
0.0294036865234375,
-0.0022029876708984375,
-0.067626953125,
-0.054840087890625,
0.10546875,
0.001628875732421875,
-0.01140594482421875,
0.01971435546875,
0.00916290283203125,
0.032806396484375,
-0.0168304443359375,
-0.0017547607421875,
0.0245819091796875,
0.06329345703125,
0.0210723876953125,
-0.027984619140625,
0.01502227783203125,
-0.04296875,
-0.01033782958984375,
-0.00304412841796875,
-0.050537109375,
0.059478759765625,
-0.007480621337890625,
-0.0072021484375,
-0.006805419921875,
0.03961181640625,
0.025177001953125,
0.038665771484375,
0.026123046875,
0.05377197265625,
0.0645751953125,
-0.00450897216796875,
0.0775146484375,
-0.01751708984375,
0.020904541015625,
0.0970458984375,
0.0077362060546875,
0.053009033203125,
0.0220184326171875,
-0.02923583984375,
0.0207061767578125,
0.054779052734375,
-0.038482666015625,
0.0310821533203125,
0.013580322265625,
0.00011175870895385742,
-0.003231048583984375,
-0.0251617431640625,
-0.046905517578125,
0.020294189453125,
0.0250396728515625,
-0.04052734375,
-0.005344390869140625,
-0.01488494873046875,
0.01293182373046875,
0.0166778564453125,
-0.0247344970703125,
0.05224609375,
-0.021148681640625,
-0.02362060546875,
0.01502227783203125,
-0.004787445068359375,
0.0390625,
-0.034881591796875,
-0.0102386474609375,
-0.01345062255859375,
0.0040130615234375,
-0.040771484375,
-0.0859375,
0.039031982421875,
0.0002605915069580078,
-0.035369873046875,
-0.0061492919921875,
0.045928955078125,
-0.019378662109375,
-0.05767822265625,
0.0010662078857421875,
0.01309967041015625,
0.0224456787109375,
0.0185699462890625,
-0.07476806640625,
0.0159454345703125,
-0.0011959075927734375,
-0.0278472900390625,
0.02081298828125,
0.03448486328125,
-0.0012493133544921875,
0.033477783203125,
0.060211181640625,
0.0203704833984375,
-0.01201629638671875,
0.00887298583984375,
0.07183837890625,
-0.04241943359375,
-0.03387451171875,
-0.034759521484375,
0.050384521484375,
-0.04132080078125,
-0.04376220703125,
0.051544189453125,
0.0615234375,
0.0712890625,
0.0049896240234375,
0.0845947265625,
-0.02996826171875,
0.049346923828125,
-0.0164031982421875,
0.082763671875,
-0.045196533203125,
0.0033969879150390625,
-0.0285186767578125,
-0.0511474609375,
-0.047271728515625,
0.0386962890625,
-0.025238037109375,
0.0035152435302734375,
0.0166778564453125,
0.0738525390625,
-0.00189208984375,
-0.0014324188232421875,
0.012847900390625,
0.0187835693359375,
0.0189056396484375,
0.022918701171875,
0.02056884765625,
-0.04827880859375,
0.0604248046875,
-0.04229736328125,
-0.0211944580078125,
-0.01006317138671875,
-0.0787353515625,
-0.067626953125,
-0.0718994140625,
-0.0350341796875,
-0.037994384765625,
0.0083770751953125,
0.0592041015625,
0.047027587890625,
-0.07373046875,
-0.0167694091796875,
-0.002262115478515625,
0.0182342529296875,
-0.004573822021484375,
-0.02093505859375,
0.052276611328125,
0.01554107666015625,
-0.049346923828125,
-0.0130157470703125,
-0.01087188720703125,
-0.0007371902465820312,
-0.02197265625,
-0.02264404296875,
-0.028839111328125,
-0.0176849365234375,
0.01351165771484375,
0.043914794921875,
-0.0350341796875,
-0.0115509033203125,
-0.01361083984375,
-0.005863189697265625,
-0.0135955810546875,
0.031951904296875,
-0.0226898193359375,
0.036865234375,
0.051727294921875,
0.034332275390625,
0.0195159912109375,
0.0025081634521484375,
0.01197052001953125,
-0.04833984375,
0.00818634033203125,
0.0160064697265625,
0.0219879150390625,
0.02752685546875,
-0.050567626953125,
0.059814453125,
0.0280303955078125,
-0.05126953125,
-0.054534912109375,
-0.005046844482421875,
-0.085693359375,
-0.0144805908203125,
0.09417724609375,
-0.009063720703125,
-0.0259857177734375,
-0.0243072509765625,
-0.017669677734375,
0.025787353515625,
-0.052825927734375,
0.045745849609375,
0.054779052734375,
0.0060577392578125,
-0.00033974647521972656,
-0.033355712890625,
0.036956787109375,
-0.0289306640625,
-0.07501220703125,
0.0161590576171875,
0.030670166015625,
0.006000518798828125,
0.0268096923828125,
0.0439453125,
-0.0194244384765625,
0.0136566162109375,
0.018310546875,
0.0140380859375,
-0.03173828125,
-0.0162506103515625,
-0.004726409912109375,
0.0038852691650390625,
-0.0131378173828125,
-0.0228424072265625
]
] |
nielsr/docvqa_1200_examples_donut | 2022-08-05T16:39:23.000Z | [
"region:us"
] | nielsr | null | null | 2 | 949 | 2022-08-05T15:13:40 | Entry not found | 15 | [
[
-0.02142333984375,
-0.01495361328125,
0.05718994140625,
0.0288238525390625,
-0.035064697265625,
0.046539306640625,
0.052520751953125,
0.005062103271484375,
0.0513916015625,
0.016998291015625,
-0.052093505859375,
-0.014984130859375,
-0.060394287109375,
0.03790283203125,
-0.0264892578125,
0.038421630859375,
-0.0095977783203125,
-0.00711822509765625,
0.01873779296875,
-0.01837158203125,
-0.03582763671875,
-0.0244903564453125,
-0.0789794921875,
0.004055023193359375,
0.035308837890625,
0.049346923828125,
0.05035400390625,
0.0242767333984375,
0.042694091796875,
0.0260772705078125,
-0.015380859375,
0.03204345703125,
-0.0027446746826171875,
0.00015556812286376953,
-0.0233917236328125,
-0.03662109375,
-0.018951416015625,
0.00502777099609375,
0.07275390625,
0.064208984375,
-0.018890380859375,
0.003520965576171875,
-0.0203399658203125,
0.02197265625,
-0.032958984375,
0.0202484130859375,
-0.0014934539794921875,
0.01081085205078125,
-0.046722412109375,
-0.0367431640625,
0.000835418701171875,
-0.048828125,
0.01190185546875,
-0.0457763671875,
0.054840087890625,
0.0123291015625,
0.0765380859375,
0.00984954833984375,
-0.0306854248046875,
-0.054168701171875,
-0.043426513671875,
0.037872314453125,
-0.0216827392578125,
0.0263214111328125,
0.046600341796875,
-0.0032253265380859375,
-0.06512451171875,
-0.044769287109375,
-0.0308074951171875,
0.0194091796875,
0.0234832763671875,
-0.0226593017578125,
-0.0116119384765625,
-0.020294189453125,
0.01049041748046875,
0.008514404296875,
-0.0321044921875,
-0.036773681640625,
-0.036285400390625,
-0.02630615234375,
0.0411376953125,
0.023101806640625,
0.0161285400390625,
-0.01251983642578125,
-0.02142333984375,
0.005847930908203125,
-0.02764892578125,
0.0225830078125,
0.04205322265625,
0.04718017578125,
-0.038543701171875,
0.03717041015625,
-0.0032939910888671875,
0.049346923828125,
0.007602691650390625,
-0.018218994140625,
0.0275115966796875,
-0.009765625,
0.0036678314208984375,
0.028045654296875,
0.0209197998046875,
0.018829345703125,
-0.021728515625,
0.01348114013671875,
-0.021331787109375,
-0.0202484130859375,
-0.01483917236328125,
-0.0195770263671875,
-0.023834228515625,
0.03643798828125,
-0.021942138671875,
-0.028411865234375,
0.07586669921875,
-0.02783203125,
-0.048492431640625,
0.0219879150390625,
0.0269622802734375,
-0.006587982177734375,
-0.0246429443359375,
-0.0034542083740234375,
-0.05609130859375,
-0.0005054473876953125,
0.049713134765625,
-0.047760009765625,
0.0223541259765625,
0.031402587890625,
0.0491943359375,
0.01305389404296875,
-0.00927734375,
-0.0285186767578125,
0.0197296142578125,
-0.057464599609375,
0.041961669921875,
-0.013336181640625,
-0.066650390625,
0.007389068603515625,
0.059539794921875,
-0.0250701904296875,
-0.0802001953125,
0.07037353515625,
-0.04571533203125,
0.010650634765625,
-0.044921875,
-0.0097198486328125,
-0.004718780517578125,
-0.00031113624572753906,
-0.040435791015625,
0.05023193359375,
0.0389404296875,
-0.033172607421875,
0.01421356201171875,
-0.0172576904296875,
-0.025970458984375,
0.0257720947265625,
-0.00528717041015625,
-0.01448822021484375,
0.04736328125,
-0.04412841796875,
-0.0178985595703125,
0.01953125,
0.0157012939453125,
-0.0236968994140625,
-0.0526123046875,
0.00560760498046875,
-0.0038547515869140625,
0.10296630859375,
-0.00258636474609375,
-0.0238037109375,
-0.045074462890625,
-0.076416015625,
-0.004673004150390625,
0.045684814453125,
-0.061004638671875,
-0.01849365234375,
-0.0030841827392578125,
-0.0173797607421875,
0.005954742431640625,
0.049041748046875,
-0.07427978515625,
0.0187530517578125,
-0.003398895263671875,
-0.01519012451171875,
0.054840087890625,
0.0102386474609375,
0.0164031982421875,
0.0099334716796875,
0.0285186767578125,
0.035003662109375,
0.00737762451171875,
0.045318603515625,
-0.023040771484375,
-0.0643310546875,
0.040863037109375,
0.016754150390625,
0.053924560546875,
-0.03314208984375,
0.017791748046875,
0.0179290771484375,
-0.0226287841796875,
-0.037750244140625,
-0.0205841064453125,
0.005970001220703125,
0.0099334716796875,
0.007396697998046875,
-0.037933349609375,
-0.04364013671875,
-0.06427001953125,
-0.0090179443359375,
-0.0286102294921875,
-0.023712158203125,
0.013916015625,
0.0384521484375,
-0.0794677734375,
0.0274200439453125,
-0.051116943359375,
-0.04669189453125,
-0.00070953369140625,
-0.0128326416015625,
0.050079345703125,
0.0286865234375,
0.033416748046875,
-0.042449951171875,
-0.037628173828125,
-0.0148773193359375,
-0.06854248046875,
-0.0088348388671875,
0.0164642333984375,
0.0203094482421875,
-0.0088958740234375,
-0.0181884765625,
-0.032318115234375,
0.0537109375,
0.009765625,
-0.0357666015625,
0.034637451171875,
-0.0200347900390625,
0.01142120361328125,
-0.042327880859375,
-0.004596710205078125,
-0.043914794921875,
-0.0000712275505065918,
-0.0239410400390625,
-0.038055419921875,
0.00982666015625,
0.004673004150390625,
-0.01064300537109375,
0.01910400390625,
-0.060333251953125,
-0.00007289648056030273,
-0.04937744140625,
0.025177001953125,
0.004238128662109375,
-0.020904541015625,
-0.0011682510375976562,
0.06634521484375,
0.0516357421875,
-0.0254974365234375,
0.047882080078125,
0.029449462890625,
0.01263427734375,
0.05059814453125,
-0.012420654296875,
0.01093292236328125,
-0.034820556640625,
-0.00807952880859375,
-0.058990478515625,
-0.07281494140625,
0.048553466796875,
-0.040557861328125,
0.02423095703125,
-0.028411865234375,
0.0172119140625,
-0.0458984375,
-0.0025501251220703125,
0.03192138671875,
-0.0039520263671875,
-0.045562744140625,
0.03472900390625,
0.0301055908203125,
-0.0134124755859375,
-0.04388427734375,
-0.03515625,
0.026153564453125,
0.040863037109375,
-0.01085662841796875,
0.004566192626953125,
0.0099334716796875,
-0.036102294921875,
-0.0027256011962890625,
-0.02569580078125,
-0.0303802490234375,
0.0036296844482421875,
0.00864410400390625,
-0.00036525726318359375,
-0.02685546875,
-0.005741119384765625,
-0.0238037109375,
-0.03094482421875,
0.01453399658203125,
0.019989013671875,
-0.002742767333984375,
-0.028289794921875,
-0.0240020751953125,
-0.05889892578125,
0.044525146484375,
0.035614013671875,
0.0034942626953125,
0.05010986328125,
0.01114654541015625,
-0.053192138671875,
-0.00897216796875,
-0.01168060302734375,
0.017913818359375,
-0.037078857421875,
0.0092010498046875,
-0.0008668899536132812,
-0.00418853759765625,
0.0174713134765625,
0.016876220703125,
-0.028564453125,
0.06158447265625,
-0.017333984375,
-0.0238189697265625,
0.052825927734375,
0.03961181640625,
0.03289794921875,
0.01094818115234375,
-0.00296783447265625,
0.059783935546875,
-0.07940673828125,
-0.043548583984375,
-0.0491943359375,
-0.01053619384765625,
-0.0288543701171875,
-0.002132415771484375,
0.041534423828125,
0.0192413330078125,
-0.00885772705078125,
0.03155517578125,
-0.0347900390625,
0.02362060546875,
0.06707763671875,
0.0236968994140625,
0.0228118896484375,
-0.05023193359375,
-0.016693115234375,
-0.00928497314453125,
-0.06634521484375,
-0.0174713134765625,
0.058837890625,
0.01509857177734375,
0.056060791015625,
0.03973388671875,
0.0450439453125,
0.00905609130859375,
0.0167694091796875,
-0.020294189453125,
0.0260009765625,
0.029083251953125,
-0.069091796875,
-0.028350830078125,
0.0014123916625976562,
-0.06439208984375,
-0.00945281982421875,
-0.0023097991943359375,
-0.02825927734375,
0.05096435546875,
0.00001621246337890625,
-0.0270538330078125,
0.05126953125,
-0.0301971435546875,
0.050201416015625,
-0.02972412109375,
-0.0017986297607421875,
0.031158447265625,
-0.046905517578125,
0.0310516357421875,
0.00855255126953125,
0.041168212890625,
-0.0010528564453125,
-0.0027217864990234375,
0.047119140625,
-0.060577392578125,
0.0168914794921875,
-0.0421142578125,
0.01483917236328125,
0.01611328125,
0.03424072265625,
0.039581298828125,
0.02899169921875,
0.006717681884765625,
-0.015899658203125,
0.002716064453125,
-0.0546875,
-0.01396942138671875,
0.046295166015625,
-0.047698974609375,
-0.045562744140625,
-0.08203125,
0.009613037109375,
0.018157958984375,
0.02587890625,
0.052825927734375,
0.03790283203125,
0.0085601806640625,
0.045196533203125,
0.06561279296875,
-0.004543304443359375,
0.06085205078125,
0.0214385986328125,
0.006092071533203125,
-0.014556884765625,
0.046661376953125,
0.0176544189453125,
-0.0163726806640625,
-0.007904052734375,
0.01389312744140625,
-0.00732421875,
-0.039276123046875,
-0.033172607421875,
0.024566650390625,
-0.044677734375,
-0.01213836669921875,
-0.041412353515625,
-0.04010009765625,
-0.033905029296875,
0.0045928955078125,
-0.047454833984375,
0.0159149169921875,
-0.051422119140625,
-0.007049560546875,
0.002857208251953125,
0.06494140625,
-0.0390625,
0.03851318359375,
-0.07452392578125,
0.0128173828125,
-0.00527191162109375,
0.052581787109375,
0.014190673828125,
-0.048736572265625,
-0.0263824462890625,
-0.007659912109375,
-0.02471923828125,
-0.090087890625,
0.014190673828125,
-0.0163116455078125,
0.01534271240234375,
0.040771484375,
0.00926971435546875,
0.034881591796875,
-0.0227813720703125,
0.046600341796875,
-0.0037975311279296875,
-0.046875,
0.0526123046875,
-0.03338623046875,
0.032958984375,
0.0648193359375,
0.035400390625,
-0.052978515625,
0.0023746490478515625,
-0.069091796875,
-0.039886474609375,
0.0254974365234375,
0.0079193115234375,
-0.0023937225341796875,
-0.044219970703125,
-0.0035762786865234375,
-0.010711669921875,
0.040069580078125,
-0.0689697265625,
-0.052154541015625,
0.0171051025390625,
0.035064697265625,
0.005401611328125,
-0.037506103515625,
0.0138397216796875,
-0.0361328125,
0.0706787109375,
0.02996826171875,
0.021728515625,
0.0557861328125,
0.0308380126953125,
-0.0253753662109375,
0.006130218505859375,
0.05084228515625,
0.04425048828125,
-0.0347900390625,
-0.01934814453125,
-0.005855560302734375,
-0.060577392578125,
0.003936767578125,
0.007411956787109375,
-0.0008912086486816406,
0.06024169921875,
0.0384521484375,
0.0168304443359375,
0.02996826171875,
-0.0482177734375,
0.05877685546875,
-0.00989532470703125,
-0.00823974609375,
-0.07080078125,
0.01291656494140625,
-0.0159149169921875,
0.033233642578125,
0.0667724609375,
0.0347900390625,
-0.0031642913818359375,
-0.05401611328125,
-0.0009369850158691406,
0.04608154296875,
-0.04705810546875,
-0.0115814208984375,
0.062744140625,
0.0255584716796875,
-0.0859375,
0.07342529296875,
-0.03570556640625,
-0.037200927734375,
0.060546875,
0.03466796875,
0.07452392578125,
-0.0293426513671875,
0.00003081560134887695,
0.0176544189453125,
0.0274200439453125,
0.0360107421875,
0.0721435546875,
0.0286407470703125,
-0.052642822265625,
0.05859375,
-0.0164031982421875,
-0.0267486572265625,
-0.0035648345947265625,
-0.0284271240234375,
0.01119232177734375,
-0.02923583984375,
-0.007114410400390625,
-0.0228271484375,
0.018951416015625,
-0.046875,
0.028411865234375,
-0.005550384521484375,
0.05743408203125,
-0.0567626953125,
0.03131103515625,
0.042144775390625,
-0.022125244140625,
-0.056396484375,
-0.017364501953125,
-0.00762176513671875,
-0.04241943359375,
0.0200347900390625,
-0.030242919921875,
0.0029392242431640625,
0.006404876708984375,
-0.0430908203125,
-0.078125,
0.060333251953125,
-0.042449951171875,
-0.0184783935546875,
0.013580322265625,
-0.007625579833984375,
0.0191497802734375,
-0.016754150390625,
0.0007257461547851562,
0.0277862548828125,
0.0496826171875,
0.0188751220703125,
-0.05126953125,
-0.0245208740234375,
0.00009232759475708008,
-0.0295562744140625,
0.05035400390625,
-0.039825439453125,
0.07861328125,
-0.036895751953125,
-0.003948211669921875,
0.029449462890625,
0.0163726806640625,
0.01395416259765625,
0.04400634765625,
0.0095672607421875,
0.04827880859375,
0.071044921875,
-0.0270538330078125,
0.0584716796875,
0.01751708984375,
0.031463623046875,
0.048004150390625,
-0.04302978515625,
0.049835205078125,
0.02105712890625,
-0.037689208984375,
0.061248779296875,
0.085693359375,
-0.01041412353515625,
0.0535888671875,
0.0034084320068359375,
-0.07171630859375,
0.0216217041015625,
-0.01374053955078125,
-0.049957275390625,
0.0208892822265625,
0.0126190185546875,
-0.045928955078125,
-0.038299560546875,
-0.015960693359375,
-0.023651123046875,
-0.007659912109375,
-0.0506591796875,
0.04461669921875,
-0.0011453628540039062,
-0.033905029296875,
0.01251220703125,
0.01910400390625,
0.01149749755859375,
-0.0347900390625,
-0.0019464492797851562,
-0.01515960693359375,
0.0176544189453125,
-0.03765869140625,
-0.03472900390625,
0.0379638671875,
-0.02154541015625,
-0.035430908203125,
0.01204681396484375,
0.050628662109375,
-0.01123046875,
-0.02996826171875,
0.0215301513671875,
0.04620361328125,
0.0110321044921875,
0.0281982421875,
-0.0155792236328125,
0.0162506103515625,
-0.005329132080078125,
-0.0044403076171875,
0.01837158203125,
0.0228729248046875,
0.0148773193359375,
0.0295562744140625,
0.028717041015625,
-0.0012340545654296875,
-0.00710296630859375,
-0.0254058837890625,
0.027374267578125,
-0.06329345703125,
-0.03790283203125,
-0.041839599609375,
0.0181732177734375,
-0.0015535354614257812,
-0.07183837890625,
0.0274810791015625,
0.0955810546875,
0.0687255859375,
-0.031585693359375,
0.07086181640625,
-0.01446533203125,
0.06365966796875,
0.0275726318359375,
0.03594970703125,
-0.03997802734375,
0.0025539398193359375,
-0.0289459228515625,
-0.0714111328125,
-0.02374267578125,
0.0301666259765625,
-0.0015287399291992188,
-0.0227813720703125,
0.057891845703125,
0.039031982421875,
-0.0222015380859375,
-0.00782012939453125,
0.0031948089599609375,
-0.0019931793212890625,
-0.00821685791015625,
0.03411865234375,
0.050750732421875,
-0.06201171875,
-0.007076263427734375,
-0.01432037353515625,
-0.0423583984375,
-0.03350830078125,
-0.06390380859375,
-0.00856781005859375,
-0.01062774658203125,
0.0023365020751953125,
-0.03759765625,
0.00015866756439208984,
0.0802001953125,
0.037689208984375,
-0.07373046875,
-0.035186767578125,
0.0223846435546875,
0.0260162353515625,
-0.012420654296875,
-0.01605224609375,
0.0197906494140625,
0.01019287109375,
-0.039215087890625,
0.045654296875,
0.0537109375,
0.01389312744140625,
0.0130157470703125,
0.01055908203125,
-0.05462646484375,
-0.00989532470703125,
0.0115509033203125,
0.062744140625,
-0.0623779296875,
-0.0472412109375,
-0.0021190643310546875,
-0.0180206298828125,
-0.0038356781005859375,
0.0113525390625,
-0.0269012451171875,
0.034423828125,
0.0229644775390625,
0.03314208984375,
0.003719329833984375,
-0.00362396240234375,
0.035888671875,
-0.06011962890625,
0.006259918212890625,
0.0274200439453125,
0.02752685546875,
-0.0265655517578125,
-0.039215087890625,
0.044586181640625,
0.06683349609375,
-0.043731689453125,
-0.0579833984375,
-0.0131683349609375,
-0.06646728515625,
0.0027980804443359375,
0.04486083984375,
0.03326416015625,
-0.031890869140625,
-0.027679443359375,
-0.037261962890625,
-0.00832366943359375,
-0.0090484619140625,
0.050567626953125,
0.07830810546875,
-0.04931640625,
0.00530242919921875,
-0.06890869140625,
0.04376220703125,
-0.0160675048828125,
-0.0229339599609375,
-0.0322265625,
0.0254364013671875,
0.0233917236328125,
0.02923583984375,
0.040771484375,
0.00934600830078125,
0.0552978515625,
0.020721435546875,
-0.01129150390625,
0.017913818359375,
-0.030242919921875,
-0.0019140243530273438,
-0.0038604736328125,
0.02056884765625,
-0.068115234375
]
] |
Amod/mental_health_counseling_conversations | 2023-07-20T19:00:46.000Z | [
"task_categories:conversational",
"task_categories:text-generation",
"task_categories:question-answering",
"task_ids:sentiment-classification",
"task_ids:language-modeling",
"task_ids:open-domain-qa",
"annotations_creators:no-annotation",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:en",
"license:openrail",
"region:us"
] | Amod | null | null | 28 | 949 | 2023-06-22T12:52:50 | ---
annotations_creators:
- no-annotation
language_creators:
- found
language:
- en
license: openrail
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- conversational
- text-generation
- question-answering
task_ids:
- sentiment-classification
- language-modeling
- open-domain-qa
---
# Amod/mental_health_counseling_conversations
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-instances)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
## Dataset Description
- **Homepage:**
- **Repository:**
- **Paper:** Bertagnolli, Nicolas (2020). Counsel chat: Bootstrapping high-quality therapy data. Towards Data Science. https://towardsdatascience.com/counsel-chat
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
This dataset is a collection of questions and answers sourced from two online counseling and therapy platforms. The questions cover a wide range of mental health topics, and the answers are provided by qualified psychologists. The dataset is intended to be used for fine-tuning language models to improve their ability to provide mental health advice.
### Supported Tasks and Leaderboards
The dataset supports the task of text generation, particularly for generating advice or suggestions in response to a mental health-related question.
### Languages
The text in the dataset is in English.
## Dataset Structure
### Data Instances
A data instance includes a 'Context' and a 'Response'. 'Context' contains the question asked by a user, and 'Response' contains the corresponding answer provided by a psychologist.
### Data Fields
- 'Context': a string containing the question asked by a user
- 'Response': a string containing the corresponding answer provided by a psychologist
### Data Splits
The dataset has no predefined splits. Users can create their own splits as needed.
## Dataset Creation
### Curation Rationale
This dataset was created to aid in the development of AI models that can provide mental health advice or guidance. The raw data was meticulously cleaned to only include the conversations.
### Source Data
The data was sourced from two online counseling and therapy platforms. The raw data can be found [here](https://github.com/nbertagnolli/counsel-chat/tree/master/data).
### Annotations
The dataset does not contain any additional annotations.
### Personal and Sensitive Information
The dataset may contain sensitive information related to mental health. All data was anonymized and no personally identifiable information is included. | 3,015 | [
[
-0.034515380859375,
-0.0670166015625,
0.034454345703125,
0.027984619140625,
-0.005512237548828125,
0.0055694580078125,
-0.025115966796875,
-0.020233154296875,
0.028656005859375,
0.0322265625,
-0.08282470703125,
-0.06976318359375,
-0.040008544921875,
0.00577545166015625,
-0.01023101806640625,
0.08740234375,
0.004161834716796875,
0.012115478515625,
-0.01236724853515625,
-0.00399017333984375,
-0.043975830078125,
-0.03436279296875,
-0.07421875,
-0.01441192626953125,
0.0186920166015625,
0.042083740234375,
0.042633056640625,
0.04644775390625,
0.037353515625,
0.0177764892578125,
0.000453948974609375,
0.0156402587890625,
-0.0538330078125,
0.00890350341796875,
-0.007457733154296875,
-0.0182342529296875,
-0.069580078125,
0.021514892578125,
0.005931854248046875,
0.050384521484375,
-0.037689208984375,
0.024749755859375,
0.0019063949584960938,
0.036376953125,
-0.036285400390625,
0.03375244140625,
-0.035797119140625,
0.01320648193359375,
-0.0041656494140625,
-0.0160064697265625,
-0.01009368896484375,
-0.027313232421875,
-0.0005311965942382812,
-0.046875,
0.01800537109375,
0.002696990966796875,
0.043701171875,
0.0133056640625,
-0.03936767578125,
-0.015869140625,
-0.046234130859375,
0.04742431640625,
-0.059661865234375,
-0.0020465850830078125,
0.07830810546875,
0.03460693359375,
-0.0157623291015625,
-0.05084228515625,
-0.0265350341796875,
0.02667236328125,
-0.02691650390625,
0.0135498046875,
-0.038543701171875,
-0.00035500526428222656,
0.033660888671875,
0.03179931640625,
-0.036346435546875,
-0.0128173828125,
-0.05682373046875,
-0.0225372314453125,
0.07177734375,
0.042694091796875,
0.004665374755859375,
-0.00698089599609375,
0.005535125732421875,
0.0015211105346679688,
-0.02117919921875,
0.0029201507568359375,
0.008544921875,
0.023681640625,
-0.034454345703125,
0.050537109375,
-0.0074310302734375,
0.04095458984375,
0.01049041748046875,
-0.034454345703125,
0.0143280029296875,
-0.047515869140625,
-0.0088348388671875,
0.009521484375,
0.0709228515625,
0.07244873046875,
0.0064697265625,
0.0016527175903320312,
0.0151824951171875,
-0.006107330322265625,
0.0360107421875,
-0.055267333984375,
-0.032745361328125,
0.040863037109375,
-0.04498291015625,
-0.0163726806640625,
-0.0178985595703125,
-0.06634521484375,
-0.0277099609375,
-0.0250244140625,
-0.007755279541015625,
-0.03656005859375,
-0.01904296875,
0.00041937828063964844,
0.00691986083984375,
-0.0033092498779296875,
0.01534271240234375,
-0.047943115234375,
0.04656982421875,
0.02490234375,
0.054656982421875,
-0.01090240478515625,
-0.0003063678741455078,
-0.0106353759765625,
0.005290985107421875,
-0.0076751708984375,
0.047637939453125,
-0.0250244140625,
-0.043243408203125,
0.0061798095703125,
0.0281982421875,
-0.0025882720947265625,
-0.023223876953125,
0.052154541015625,
0.0005135536193847656,
0.06494140625,
-0.0389404296875,
-0.05718994140625,
-0.00402069091796875,
0.021514892578125,
-0.0271453857421875,
0.0687255859375,
0.02764892578125,
-0.07672119140625,
0.0244903564453125,
-0.0670166015625,
-0.0270843505859375,
0.0021686553955078125,
-0.017730712890625,
-0.025665283203125,
-0.0276336669921875,
0.021881103515625,
0.03228759765625,
-0.040283203125,
0.0279998779296875,
-0.036041259765625,
-0.021759033203125,
0.019134521484375,
-0.031463623046875,
0.07080078125,
0.01323699951171875,
-0.00426483154296875,
0.01479339599609375,
-0.07843017578125,
0.001262664794921875,
0.00562286376953125,
-0.01154327392578125,
-0.024993896484375,
-0.003692626953125,
0.022064208984375,
0.028411865234375,
0.00402069091796875,
-0.057769775390625,
0.006633758544921875,
-0.0233917236328125,
0.03387451171875,
0.03375244140625,
0.03790283203125,
-0.00911712646484375,
-0.0323486328125,
0.046783447265625,
0.0181427001953125,
0.01525115966796875,
0.01055145263671875,
-0.04864501953125,
-0.0284423828125,
-0.044708251953125,
-0.019561767578125,
0.050811767578125,
-0.04345703125,
0.0721435546875,
-0.00855255126953125,
-0.04315185546875,
-0.06683349609375,
0.006877899169921875,
0.034881591796875,
0.058319091796875,
0.04888916015625,
-0.01629638671875,
-0.043731689453125,
-0.0721435546875,
0.003597259521484375,
-0.0009055137634277344,
-0.0026760101318359375,
0.039215087890625,
0.032745361328125,
-0.0213775634765625,
0.0748291015625,
-0.0625,
-0.029388427734375,
-0.0162200927734375,
0.006168365478515625,
0.01528167724609375,
0.03790283203125,
0.02532958984375,
-0.035736083984375,
-0.040679931640625,
-0.03179931640625,
-0.0594482421875,
-0.01171875,
-0.0051727294921875,
-0.032012939453125,
-0.01392364501953125,
0.013427734375,
-0.0390625,
0.0487060546875,
0.0146942138671875,
-0.053070068359375,
0.033203125,
-0.01300811767578125,
0.0200958251953125,
-0.1170654296875,
0.01154327392578125,
-0.002185821533203125,
-0.0074310302734375,
-0.054962158203125,
-0.053924560546875,
-0.0268096923828125,
0.003261566162109375,
-0.01439666748046875,
0.0248260498046875,
0.00666046142578125,
0.024566650390625,
-0.0004870891571044922,
0.002216339111328125,
-0.00974273681640625,
0.04595947265625,
-0.0197906494140625,
0.06463623046875,
0.050537109375,
-0.02838134765625,
0.039703369140625,
0.065185546875,
-0.0003452301025390625,
0.07293701171875,
-0.045013427734375,
0.0150604248046875,
0.00015366077423095703,
0.0186004638671875,
-0.06536865234375,
-0.03466796875,
0.04278564453125,
-0.0157928466796875,
0.0014791488647460938,
0.00240325927734375,
-0.027679443359375,
-0.019378662109375,
-0.03070068359375,
0.02490234375,
-0.00443267822265625,
0.004009246826171875,
-0.0160064697265625,
0.040008544921875,
-0.0207061767578125,
-0.0341796875,
-0.04180908203125,
0.0050048828125,
-0.0309295654296875,
-0.0300140380859375,
0.032989501953125,
-0.01232147216796875,
-0.0182647705078125,
0.019805908203125,
0.0161590576171875,
-0.00395965576171875,
-0.0014142990112304688,
0.0276336669921875,
0.0248565673828125,
-0.00769805908203125,
0.0232696533203125,
0.02008056640625,
-0.00864410400390625,
0.0215301513671875,
0.0010166168212890625,
0.045654296875,
-0.005908966064453125,
-0.03814697265625,
-0.038848876953125,
0.0517578125,
0.02874755859375,
-0.005702972412109375,
0.08831787109375,
0.048614501953125,
-0.045074462890625,
0.0170135498046875,
-0.035003662109375,
-0.0218658447265625,
-0.030792236328125,
0.0244598388671875,
-0.0008997917175292969,
-0.0633544921875,
0.05023193359375,
0.0292205810546875,
0.0161285400390625,
0.0311279296875,
0.05047607421875,
-0.00928497314453125,
0.08465576171875,
0.0291595458984375,
-0.0040130615234375,
0.0165863037109375,
-0.0214996337890625,
0.03607177734375,
-0.05316162109375,
-0.018035888671875,
-0.015045166015625,
-0.033660888671875,
-0.059112548828125,
-0.00942230224609375,
0.0124969482421875,
-0.006084442138671875,
-0.036376953125,
0.0208587646484375,
-0.04296875,
-0.0084686279296875,
0.039031982421875,
0.019012451171875,
0.02740478515625,
-0.01070404052734375,
0.0013322830200195312,
-0.032073974609375,
-0.0377197265625,
-0.05120849609375,
0.08837890625,
0.02435302734375,
0.048126220703125,
-0.0037021636962890625,
0.03375244140625,
0.01922607421875,
0.0200042724609375,
-0.0589599609375,
0.040313720703125,
0.0154571533203125,
-0.053497314453125,
-0.0260162353515625,
-0.0362548828125,
-0.090087890625,
0.003955841064453125,
-0.017730712890625,
-0.08203125,
0.022247314453125,
-0.0045013427734375,
-0.02520751953125,
0.0109710693359375,
-0.03485107421875,
0.072265625,
-0.0021800994873046875,
-0.004180908203125,
-0.01284027099609375,
-0.059783935546875,
0.0350341796875,
-0.01141357421875,
0.0070648193359375,
-0.0246734619140625,
0.0163726806640625,
0.08441162109375,
-0.038055419921875,
0.050811767578125,
-0.007537841796875,
0.00830078125,
0.0164031982421875,
-0.0159454345703125,
-0.0066680908203125,
0.01617431640625,
0.005191802978515625,
-0.024322509765625,
0.055908203125,
-0.02838134765625,
-0.05072021484375,
0.03131103515625,
-0.06329345703125,
-0.032470703125,
-0.01491546630859375,
-0.05487060546875,
-0.049774169921875,
0.01123809814453125,
0.022979736328125,
0.037811279296875,
-0.003086090087890625,
0.02362060546875,
0.01763916015625,
-0.0240020751953125,
-0.00848388671875,
0.042938232421875,
-0.01611328125,
-0.045989990234375,
0.041351318359375,
0.0142364501953125,
0.0029964447021484375,
-0.0222015380859375,
-0.0014972686767578125,
-0.0228271484375,
-0.006317138671875,
0.01018524169921875,
0.029388427734375,
-0.049224853515625,
-0.0177001953125,
-0.03216552734375,
-0.0288238525390625,
-0.048309326171875,
0.013702392578125,
-0.01654052734375,
-0.0259552001953125,
-0.0236663818359375,
-0.044281005859375,
0.05718994140625,
0.03790283203125,
0.00024390220642089844,
0.0284423828125,
-0.053955078125,
0.0053863525390625,
-0.0041656494140625,
0.0289306640625,
-0.0028896331787109375,
-0.0115966796875,
-0.0262908935546875,
0.029449462890625,
-0.045928955078125,
-0.08282470703125,
0.040191650390625,
0.01861572265625,
0.041412353515625,
0.036834716796875,
0.02911376953125,
0.07135009765625,
0.00007480382919311523,
0.055694580078125,
0.0005869865417480469,
-0.02423095703125,
0.061309814453125,
-0.03521728515625,
0.01470947265625,
0.076904296875,
0.04498291015625,
-0.06005859375,
-0.036773681640625,
-0.0682373046875,
-0.058990478515625,
0.07879638671875,
0.03875732421875,
0.005702972412109375,
-0.007232666015625,
0.0298919677734375,
-0.00004494190216064453,
0.03802490234375,
-0.035797119140625,
-0.04986572265625,
-0.00518798828125,
-0.038543701171875,
0.0052642822265625,
-0.006130218505859375,
-0.059356689453125,
-0.03961181640625,
0.060791015625,
0.0004749298095703125,
0.05889892578125,
0.0186767578125,
0.02978515625,
-0.0180206298828125,
0.03302001953125,
0.0253448486328125,
0.041168212890625,
-0.03125,
0.00453948974609375,
0.00592803955078125,
-0.05413818359375,
0.0093994140625,
0.00838470458984375,
0.01354217529296875,
-0.01531219482421875,
0.03436279296875,
0.06549072265625,
-0.0026798248291015625,
-0.040069580078125,
0.0244598388671875,
-0.0300140380859375,
-0.025604248046875,
-0.0169219970703125,
0.00850677490234375,
-0.000009655952453613281,
0.0156402587890625,
0.0156707763671875,
-0.0159759521484375,
0.0117645263671875,
-0.0399169921875,
0.025726318359375,
0.00264739990234375,
-0.041595458984375,
-0.02105712890625,
0.033660888671875,
-0.01306915283203125,
-0.042724609375,
0.07110595703125,
-0.00875091552734375,
-0.0040740966796875,
0.018951416015625,
0.0418701171875,
0.050384521484375,
0.0157623291015625,
0.0247802734375,
0.0311279296875,
-0.00937652587890625,
0.01318359375,
0.05120849609375,
-0.004070281982421875,
-0.0552978515625,
-0.004390716552734375,
-0.030914306640625,
-0.0244293212890625,
0.042572021484375,
-0.0904541015625,
0.01276397705078125,
-0.0280303955078125,
-0.049774169921875,
-0.0201263427734375,
0.018280029296875,
-0.045379638671875,
0.00916290283203125,
-0.00626373291015625,
0.0740966796875,
-0.06640625,
0.051361083984375,
0.056427001953125,
-0.037139892578125,
-0.06634521484375,
-0.0073699951171875,
0.02130126953125,
-0.03045654296875,
-0.013671875,
0.00577545166015625,
0.0179443359375,
-0.01012420654296875,
-0.04412841796875,
-0.056060791015625,
0.09588623046875,
0.04302978515625,
0.0014896392822265625,
-0.0081939697265625,
0.023590087890625,
0.06683349609375,
-0.0455322265625,
0.0223846435546875,
0.056610107421875,
0.0333251953125,
0.0162200927734375,
-0.0648193359375,
0.0152740478515625,
-0.045654296875,
-0.0169677734375,
-0.02490234375,
-0.027191162109375,
0.0361328125,
0.0093536376953125,
-0.01110076904296875,
-0.0084686279296875,
0.0347900390625,
0.037139892578125,
0.0212554931640625,
0.0185546875,
0.038909912109375,
0.07305908203125,
-0.004917144775390625,
0.060577392578125,
-0.0484619140625,
0.03802490234375,
0.10003662109375,
-0.001129150390625,
0.04705810546875,
0.02606201171875,
-0.0300140380859375,
0.0266265869140625,
0.07177734375,
-0.0220184326171875,
0.036468505859375,
-0.006809234619140625,
-0.00018489360809326172,
0.0016021728515625,
-0.0225067138671875,
-0.0295867919921875,
0.025115966796875,
0.0411376953125,
-0.03302001953125,
-0.0108795166015625,
0.0023021697998046875,
0.0266265869140625,
-0.01219940185546875,
0.00736236572265625,
0.060455322265625,
0.00751495361328125,
-0.042510986328125,
0.034759521484375,
-0.0024929046630859375,
0.0178985595703125,
-0.044281005859375,
-0.0035419464111328125,
-0.0194091796875,
0.01444244384765625,
-0.0279083251953125,
-0.07049560546875,
0.0447998046875,
0.007541656494140625,
-0.0083770751953125,
-0.0246429443359375,
0.040679931640625,
-0.04168701171875,
-0.0577392578125,
0.01406097412109375,
0.059356689453125,
0.0206451416015625,
0.020965576171875,
-0.06561279296875,
-0.0289764404296875,
-0.00911712646484375,
-0.0194854736328125,
0.027099609375,
0.0284423828125,
-0.0006670951843261719,
0.051544189453125,
0.032989501953125,
0.029266357421875,
-0.0166015625,
0.0004134178161621094,
0.06591796875,
-0.039825439453125,
-0.0294189453125,
-0.045654296875,
0.033447265625,
-0.031463623046875,
-0.0455322265625,
0.0650634765625,
0.043212890625,
0.038909912109375,
0.0223541259765625,
0.043487548828125,
-0.02325439453125,
0.062255859375,
-0.00421142578125,
0.065185546875,
-0.034210205078125,
0.0207672119140625,
-0.020416259765625,
-0.043182373046875,
-0.011962890625,
0.055816650390625,
-0.0372314453125,
0.00208282470703125,
0.04736328125,
0.072021484375,
0.0031795501708984375,
0.029754638671875,
0.005985260009765625,
0.029541015625,
0.038482666015625,
0.02386474609375,
0.031158447265625,
-0.03131103515625,
0.0200347900390625,
-0.040313720703125,
-0.0022716522216796875,
0.022247314453125,
-0.035888671875,
-0.059234619140625,
-0.054656982421875,
-0.03948974609375,
-0.031463623046875,
-0.0098114013671875,
0.0999755859375,
0.0447998046875,
-0.08673095703125,
-0.0279541015625,
0.004547119140625,
-0.0058746337890625,
-0.0228118896484375,
-0.0183258056640625,
0.024261474609375,
-0.006877899169921875,
-0.0203094482421875,
0.01548004150390625,
0.0011816024780273438,
-0.0037364959716796875,
-0.026580810546875,
0.0079803466796875,
-0.03173828125,
-0.006870269775390625,
0.0233612060546875,
0.0041351318359375,
-0.0361328125,
-0.0113525390625,
-0.004619598388671875,
-0.0157318115234375,
0.024261474609375,
0.03021240234375,
-0.034210205078125,
0.0309600830078125,
0.011962890625,
0.0233306884765625,
0.03350830078125,
0.01528167724609375,
0.054351806640625,
-0.0577392578125,
-0.0029582977294921875,
0.0115814208984375,
0.021820068359375,
0.0230865478515625,
-0.05291748046875,
0.044036865234375,
0.0140533447265625,
-0.0236358642578125,
-0.05670166015625,
-0.0240020751953125,
-0.0634765625,
0.0016498565673828125,
0.07794189453125,
-0.03668212890625,
-0.0022411346435546875,
-0.0347900390625,
-0.044281005859375,
0.027587890625,
-0.04852294921875,
0.0635986328125,
0.07611083984375,
-0.0438232421875,
-0.01267242431640625,
-0.045074462890625,
0.055755615234375,
-0.007122039794921875,
-0.0782470703125,
0.01593017578125,
0.0259552001953125,
0.01232147216796875,
-0.0010843276977539062,
0.057769775390625,
-0.007038116455078125,
-0.002124786376953125,
-0.017547607421875,
-0.023162841796875,
0.0004181861877441406,
0.005413055419921875,
-0.0179290771484375,
0.0035648345947265625,
-0.0178680419921875,
0.00031185150146484375
]
] |
squadshifts | 2023-04-05T13:40:47.000Z | [
"task_categories:question-answering",
"task_ids:extractive-qa",
"annotations_creators:crowdsourced",
"language_creators:crowdsourced",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:en",
"license:cc-by-4.0",
"region:us"
] | null | null | @InProceedings{pmlr-v119-miller20a,
title = {The Effect of Natural Distribution Shift on Question Answering Models},
author = {Miller, John and Krauth, Karl and Recht, Benjamin and Schmidt, Ludwig},
booktitle = {Proceedings of the 37th International Conference on Machine Learning},
pages = {6905--6916},
year = {2020},
editor = {III, Hal Daumé and Singh, Aarti},
volume = {119},
series = {Proceedings of Machine Learning Research},
month = {13--18 Jul},
publisher = {PMLR},
pdf = {http://proceedings.mlr.press/v119/miller20a/miller20a.pdf},
url = {https://proceedings.mlr.press/v119/miller20a.html},
} | 3 | 946 | 2022-03-02T23:29:22 | ---
annotations_creators:
- crowdsourced
language:
- en
language_creators:
- crowdsourced
- found
license:
- cc-by-4.0
multilinguality:
- monolingual
pretty_name: SQuAD-shifts
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- question-answering
task_ids:
- extractive-qa
paperswithcode_id: squad-shifts
dataset_info:
- config_name: new_wiki
features:
- name: id
dtype: string
- name: title
dtype: string
- name: context
dtype: string
- name: question
dtype: string
- name: answers
sequence:
- name: text
dtype: string
- name: answer_start
dtype: int32
splits:
- name: test
num_bytes: 7865203
num_examples: 7938
download_size: 16505623
dataset_size: 7865203
- config_name: nyt
features:
- name: id
dtype: string
- name: title
dtype: string
- name: context
dtype: string
- name: question
dtype: string
- name: answers
sequence:
- name: text
dtype: string
- name: answer_start
dtype: int32
splits:
- name: test
num_bytes: 10792550
num_examples: 10065
download_size: 16505623
dataset_size: 10792550
- config_name: reddit
features:
- name: id
dtype: string
- name: title
dtype: string
- name: context
dtype: string
- name: question
dtype: string
- name: answers
sequence:
- name: text
dtype: string
- name: answer_start
dtype: int32
splits:
- name: test
num_bytes: 9473946
num_examples: 9803
download_size: 16505623
dataset_size: 9473946
- config_name: amazon
features:
- name: id
dtype: string
- name: title
dtype: string
- name: context
dtype: string
- name: question
dtype: string
- name: answers
sequence:
- name: text
dtype: string
- name: answer_start
dtype: int32
splits:
- name: test
num_bytes: 9445004
num_examples: 9885
download_size: 16505623
dataset_size: 9445004
---
# Dataset Card for "squadshifts"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://modestyachts.github.io/squadshifts-website/index.html](https://modestyachts.github.io/squadshifts-website/index.html)
- **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of downloaded dataset files:** 66.02 MB
- **Size of the generated dataset:** 37.56 MB
- **Total amount of disk used:** 103.58 MB
### Dataset Summary
SquadShifts consists of four new test sets for the Stanford Question Answering Dataset (SQuAD) from four different domains: Wikipedia articles, New York \
Times articles, Reddit comments, and Amazon product reviews. Each dataset was generated using the same data generating pipeline, Amazon Mechanical Turk interface, and data cleaning code as the original SQuAD v1.1 dataset. The "new-wikipedia" dataset measures overfitting on the original SQuAD v1.1 dataset. The "new-york-times", "reddit", and "amazon" datasets measure robustness to natural distribution shifts. We encourage SQuAD model developers to also evaluate their methods on these new datasets!
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Dataset Structure
### Data Instances
#### amazon
- **Size of downloaded dataset files:** 16.50 MB
- **Size of the generated dataset:** 9.44 MB
- **Total amount of disk used:** 25.94 MB
An example of 'test' looks as follows.
```
{
"answers": {
"answer_start": [25],
"text": ["amazon"]
},
"context": "This is a paragraph from amazon.",
"id": "090909",
"question": "Where is this paragraph from?",
"title": "amazon dummy data"
}
```
#### new_wiki
- **Size of downloaded dataset files:** 16.50 MB
- **Size of the generated dataset:** 7.86 MB
- **Total amount of disk used:** 24.37 MB
An example of 'test' looks as follows.
```
{
"answers": {
"answer_start": [25],
"text": ["wikipedia"]
},
"context": "This is a paragraph from wikipedia.",
"id": "090909",
"question": "Where is this paragraph from?",
"title": "new_wiki dummy data"
}
```
#### nyt
- **Size of downloaded dataset files:** 16.50 MB
- **Size of the generated dataset:** 10.79 MB
- **Total amount of disk used:** 27.29 MB
An example of 'test' looks as follows.
```
{
"answers": {
"answer_start": [25],
"text": ["new york times"]
},
"context": "This is a paragraph from new york times.",
"id": "090909",
"question": "Where is this paragraph from?",
"title": "nyt dummy data"
}
```
#### reddit
- **Size of downloaded dataset files:** 16.50 MB
- **Size of the generated dataset:** 9.47 MB
- **Total amount of disk used:** 25.97 MB
An example of 'test' looks as follows.
```
{
"answers": {
"answer_start": [25],
"text": ["reddit"]
},
"context": "This is a paragraph from reddit.",
"id": "090909",
"question": "Where is this paragraph from?",
"title": "reddit dummy data"
}
```
### Data Fields
The data fields are the same among all splits.
#### amazon
- `id`: a `string` feature.
- `title`: a `string` feature.
- `context`: a `string` feature.
- `question`: a `string` feature.
- `answers`: a dictionary feature containing:
- `text`: a `string` feature.
- `answer_start`: a `int32` feature.
#### new_wiki
- `id`: a `string` feature.
- `title`: a `string` feature.
- `context`: a `string` feature.
- `question`: a `string` feature.
- `answers`: a dictionary feature containing:
- `text`: a `string` feature.
- `answer_start`: a `int32` feature.
#### nyt
- `id`: a `string` feature.
- `title`: a `string` feature.
- `context`: a `string` feature.
- `question`: a `string` feature.
- `answers`: a dictionary feature containing:
- `text`: a `string` feature.
- `answer_start`: a `int32` feature.
#### reddit
- `id`: a `string` feature.
- `title`: a `string` feature.
- `context`: a `string` feature.
- `question`: a `string` feature.
- `answers`: a dictionary feature containing:
- `text`: a `string` feature.
- `answer_start`: a `int32` feature.
### Data Splits
| name |test |
|--------|----:|
|amazon | 9885|
|new_wiki| 7938|
|nyt |10065|
|reddit | 9803|
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
All the datasets are distributed under the [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/legalcode) license.
### Citation Information
```
@InProceedings{pmlr-v119-miller20a,
title = {The Effect of Natural Distribution Shift on Question Answering Models},
author = {Miller, John and Krauth, Karl and Recht, Benjamin and Schmidt, Ludwig},
booktitle = {Proceedings of the 37th International Conference on Machine Learning},
pages = {6905--6916},
year = {2020},
editor = {III, Hal Daumé and Singh, Aarti},
volume = {119},
series = {Proceedings of Machine Learning Research},
month = {13--18 Jul},
publisher = {PMLR},
pdf = {http://proceedings.mlr.press/v119/miller20a/miller20a.pdf},
url = {https://proceedings.mlr.press/v119/miller20a.html},
}
```
### Contributions
Thanks to [@thomwolf](https://github.com/thomwolf), [@lewtun](https://github.com/lewtun), [@millerjohnp](https://github.com/millerjohnp), [@albertvillanova](https://github.com/albertvillanova) for adding this dataset. | 10,676 | [
[
-0.051300048828125,
-0.059844970703125,
0.0103302001953125,
0.01300048828125,
-0.010589599609375,
0.0095977783203125,
-0.0186920166015625,
-0.036712646484375,
0.046234130859375,
0.03289794921875,
-0.08099365234375,
-0.056549072265625,
-0.033538818359375,
0.023040771484375,
-0.032257080078125,
0.098388671875,
-0.005706787109375,
-0.0278167724609375,
-0.022369384765625,
-0.0122222900390625,
-0.0252532958984375,
-0.0217742919921875,
-0.0191650390625,
-0.007110595703125,
0.038116455078125,
0.04010009765625,
0.051116943359375,
0.0703125,
0.05853271484375,
0.021087646484375,
0.0087127685546875,
0.004283905029296875,
-0.0428466796875,
-0.00675201416015625,
0.005077362060546875,
-0.0203094482421875,
-0.0278167724609375,
0.0196685791015625,
0.03594970703125,
0.0355224609375,
-0.0098724365234375,
0.042724609375,
-0.0114593505859375,
0.064453125,
-0.027862548828125,
0.0234832763671875,
-0.03363037109375,
-0.00743865966796875,
-0.01248931884765625,
-0.005062103271484375,
0.00785064697265625,
-0.034454345703125,
0.0067901611328125,
-0.0648193359375,
0.035125732421875,
0.0011930465698242188,
0.061309814453125,
0.0189208984375,
-0.005489349365234375,
-0.0196380615234375,
-0.03265380859375,
0.05181884765625,
-0.046905517578125,
0.005458831787109375,
0.04547119140625,
0.022705078125,
0.0011272430419921875,
-0.042633056640625,
-0.056304931640625,
0.0165252685546875,
-0.0193939208984375,
0.020050048828125,
-0.0124053955078125,
-0.033233642578125,
0.019744873046875,
0.032501220703125,
-0.05499267578125,
-0.018157958984375,
-0.052215576171875,
-0.007007598876953125,
0.09356689453125,
0.01611328125,
0.018280029296875,
-0.0304412841796875,
-0.0115509033203125,
-0.0258026123046875,
-0.031646728515625,
0.0001672506332397461,
0.03472900390625,
0.03875732421875,
-0.057403564453125,
0.054290771484375,
-0.0191650390625,
0.0404052734375,
0.0029735565185546875,
0.01114654541015625,
0.0487060546875,
-0.057037353515625,
-0.004764556884765625,
-0.0120391845703125,
0.06988525390625,
0.058258056640625,
0.004589080810546875,
0.0019512176513671875,
0.0139312744140625,
-0.0072021484375,
0.01239776611328125,
-0.0499267578125,
-0.0229339599609375,
0.04937744140625,
-0.043975830078125,
-0.0369873046875,
0.01873779296875,
-0.0816650390625,
-0.0238800048828125,
-0.008636474609375,
0.003673553466796875,
-0.0220947265625,
-0.0293121337890625,
0.00933837890625,
-0.0318603515625,
0.0186767578125,
0.01788330078125,
-0.04248046875,
0.0182037353515625,
0.038909912109375,
0.056060791015625,
-0.0099334716796875,
-0.029876708984375,
-0.003932952880859375,
-0.0041961669921875,
0.00099945068359375,
0.06640625,
-0.02398681640625,
-0.0207672119140625,
0.00439453125,
0.03759765625,
-0.0008130073547363281,
-0.022369384765625,
0.047393798828125,
-0.01611328125,
0.031005859375,
-0.054412841796875,
-0.040252685546875,
0.0009908676147460938,
0.0256500244140625,
-0.06060791015625,
0.089111328125,
0.0266265869140625,
-0.0633544921875,
0.0261993408203125,
-0.0625,
-0.032379150390625,
0.00685882568359375,
0.00969696044921875,
-0.0276947021484375,
-0.02423095703125,
0.00988006591796875,
0.04034423828125,
-0.031585693359375,
0.00738525390625,
-0.025054931640625,
-0.01535797119140625,
0.0232391357421875,
0.00391387939453125,
0.09649658203125,
0.00608062744140625,
-0.00785064697265625,
-0.0009741783142089844,
-0.08258056640625,
-0.0004868507385253906,
0.0269775390625,
-0.0231475830078125,
-0.0005230903625488281,
-0.00382232666015625,
0.0289306640625,
0.01352691650390625,
0.01849365234375,
-0.042633056640625,
0.0182037353515625,
-0.00762176513671875,
0.051788330078125,
0.0458984375,
0.01045989990234375,
0.0299224853515625,
-0.049041748046875,
0.030242919921875,
0.006580352783203125,
0.023193359375,
0.0009965896606445312,
-0.0445556640625,
-0.037628173828125,
-0.00876617431640625,
0.01390838623046875,
0.052978515625,
-0.038299560546875,
0.0777587890625,
-0.027618408203125,
-0.05950927734375,
-0.04449462890625,
0.013336181640625,
0.01104736328125,
0.044097900390625,
0.042694091796875,
-0.0084075927734375,
-0.05523681640625,
-0.066162109375,
0.0155487060546875,
-0.02020263671875,
-0.0020732879638671875,
0.0277557373046875,
0.07598876953125,
-0.0140533447265625,
0.07232666015625,
-0.0576171875,
-0.01380157470703125,
-0.0289306640625,
-0.0062408447265625,
0.0144195556640625,
0.0484619140625,
0.049072265625,
-0.063720703125,
-0.030242919921875,
-0.0243072509765625,
-0.05072021484375,
-0.0078277587890625,
-0.0013895034790039062,
-0.0247650146484375,
0.00778961181640625,
0.026397705078125,
-0.0648193359375,
0.0294342041015625,
0.029388427734375,
-0.0411376953125,
0.034454345703125,
-0.00246429443359375,
0.014984130859375,
-0.09320068359375,
0.01399993896484375,
0.01032257080078125,
0.006969451904296875,
-0.0333251953125,
-0.01454925537109375,
0.0008449554443359375,
0.0029544830322265625,
-0.0249786376953125,
0.03985595703125,
-0.015777587890625,
0.014801025390625,
0.01727294921875,
0.01409149169921875,
0.0074462890625,
0.037445068359375,
-0.0180816650390625,
0.053863525390625,
0.0340576171875,
-0.036285400390625,
0.0418701171875,
0.04400634765625,
-0.0229034423828125,
0.046234130859375,
-0.0621337890625,
0.0015659332275390625,
-0.025909423828125,
0.0347900390625,
-0.078369140625,
-0.04449462890625,
0.034942626953125,
-0.04595947265625,
0.0078887939453125,
-0.0023975372314453125,
-0.046234130859375,
-0.046783447265625,
-0.050537109375,
0.011749267578125,
0.036468505859375,
-0.0126800537109375,
0.01282501220703125,
0.05133056640625,
0.00981903076171875,
-0.0232391357421875,
-0.06854248046875,
-0.0113677978515625,
-0.01488494873046875,
-0.0523681640625,
0.043426513671875,
-0.038848876953125,
-0.017608642578125,
0.0179443359375,
0.0157928466796875,
-0.01161956787109375,
-0.008819580078125,
0.00792694091796875,
0.0147705078125,
0.004535675048828125,
0.01160430908203125,
-0.01319122314453125,
0.0008335113525390625,
-0.0019178390502929688,
0.0033664703369140625,
0.035064697265625,
-0.007007598876953125,
0.000225067138671875,
-0.0338134765625,
0.0304412841796875,
0.025848388671875,
-0.00923919677734375,
0.0567626953125,
0.054443359375,
-0.0181121826171875,
0.0006732940673828125,
-0.041290283203125,
-0.014373779296875,
-0.03155517578125,
0.0204925537109375,
0.013458251953125,
-0.050262451171875,
0.0684814453125,
0.036407470703125,
0.027252197265625,
0.064453125,
0.033416748046875,
-0.02880859375,
0.054718017578125,
0.0208740234375,
-0.0147857666015625,
0.038970947265625,
-0.0404052734375,
-0.01502227783203125,
-0.044769287109375,
-0.024383544921875,
-0.054656982421875,
-0.049957275390625,
-0.06744384765625,
-0.03192138671875,
0.00388336181640625,
-0.00977325439453125,
-0.0301513671875,
0.04034423828125,
-0.06011962890625,
0.040679931640625,
0.037628173828125,
0.0178680419921875,
-0.006378173828125,
-0.0021648406982421875,
0.03240966796875,
0.006076812744140625,
-0.043609619140625,
-0.0167694091796875,
0.094970703125,
0.01442718505859375,
0.0273284912109375,
-0.0033702850341796875,
0.04803466796875,
0.0269317626953125,
-0.005168914794921875,
-0.0308837890625,
0.048492431640625,
-0.004505157470703125,
-0.057830810546875,
-0.023040771484375,
-0.0391845703125,
-0.0697021484375,
-0.0186920166015625,
-0.0265655517578125,
-0.03961181640625,
0.0225372314453125,
-0.004974365234375,
-0.01544189453125,
0.0121002197265625,
-0.064697265625,
0.06219482421875,
-0.0036296844482421875,
-0.016448974609375,
0.003509521484375,
-0.07904052734375,
0.012176513671875,
0.0181884765625,
0.027313232421875,
-0.0241241455078125,
-0.0014562606811523438,
0.08135986328125,
-0.04888916015625,
0.06353759765625,
-0.022979736328125,
0.019683837890625,
0.033355712890625,
-0.0278167724609375,
0.0272064208984375,
0.00836181640625,
-0.01399993896484375,
0.02996826171875,
0.0091552734375,
-0.03997802734375,
-0.03814697265625,
0.041900634765625,
-0.059722900390625,
-0.00782012939453125,
-0.020843505859375,
-0.053466796875,
-0.0038909912109375,
0.0218963623046875,
0.030426025390625,
0.0131988525390625,
-0.0102081298828125,
0.026397705078125,
0.0498046875,
-0.025421142578125,
0.021240234375,
0.030059814453125,
-0.0027618408203125,
-0.039703369140625,
0.0537109375,
0.0283660888671875,
-0.004329681396484375,
0.0221099853515625,
0.013885498046875,
-0.015625,
-0.0257110595703125,
-0.038299560546875,
0.01538848876953125,
-0.032135009765625,
-0.03155517578125,
-0.042327880859375,
-0.023590087890625,
-0.04168701171875,
-0.0134124755859375,
-0.01611328125,
-0.052703857421875,
-0.02655029296875,
-0.0270233154296875,
0.07073974609375,
0.0428466796875,
-0.0180816650390625,
0.020660400390625,
-0.04248046875,
0.0190887451171875,
0.00296783447265625,
0.029998779296875,
-0.0254364013671875,
-0.019989013671875,
-0.0203857421875,
0.0232391357421875,
-0.0140228271484375,
-0.05316162109375,
0.01959228515625,
0.0038547515869140625,
0.0270538330078125,
-0.0018901824951171875,
0.0157928466796875,
0.053375244140625,
-0.0121917724609375,
0.0732421875,
-0.0041961669921875,
-0.0322265625,
0.05316162109375,
-0.045654296875,
0.0301513671875,
0.070556640625,
0.023590087890625,
-0.0265960693359375,
-0.025146484375,
-0.0611572265625,
-0.06561279296875,
0.061370849609375,
0.033294677734375,
0.019195556640625,
-0.012908935546875,
0.03466796875,
-0.0010280609130859375,
0.0263519287109375,
-0.0433349609375,
-0.053253173828125,
-0.0168304443359375,
-0.0250701904296875,
-0.0008764266967773438,
-0.004413604736328125,
-0.0189666748046875,
-0.05419921875,
0.05560302734375,
0.00778961181640625,
0.03857421875,
0.017608642578125,
0.004535675048828125,
-0.0121612548828125,
-0.0011444091796875,
0.040924072265625,
0.04119873046875,
-0.03314208984375,
-0.0127410888671875,
-0.003299713134765625,
-0.0579833984375,
-0.01500701904296875,
0.0313720703125,
-0.0270538330078125,
-0.0025615692138671875,
0.03436279296875,
0.040435791015625,
0.01488494873046875,
-0.041748046875,
0.034454345703125,
-0.015960693359375,
-0.0355224609375,
-0.0237884521484375,
0.006732940673828125,
-0.0005083084106445312,
0.0177764892578125,
0.0259552001953125,
0.00550079345703125,
-0.007343292236328125,
-0.03985595703125,
0.016937255859375,
0.018798828125,
-0.01212310791015625,
-0.0276947021484375,
0.032073974609375,
0.0033435821533203125,
-0.022735595703125,
0.05029296875,
-0.019775390625,
-0.0301971435546875,
0.06463623046875,
0.015625,
0.05169677734375,
0.0057525634765625,
0.034454345703125,
0.04534912109375,
0.03033447265625,
0.0005488395690917969,
0.035888671875,
-0.00835418701171875,
-0.060302734375,
0.005573272705078125,
-0.03948974609375,
-0.00925445556640625,
0.011260986328125,
-0.046539306640625,
0.022064208984375,
-0.03460693359375,
-0.0034923553466796875,
0.01025390625,
0.030426025390625,
-0.0679931640625,
0.00933837890625,
-0.0305328369140625,
0.07965087890625,
-0.0595703125,
0.0308380126953125,
0.0450439453125,
-0.0511474609375,
-0.052215576171875,
-0.00974273681640625,
0.01568603515625,
-0.05645751953125,
0.0160675048828125,
0.00711822509765625,
0.036529541015625,
-0.0015392303466796875,
-0.0693359375,
-0.058929443359375,
0.09356689453125,
0.0184783935546875,
-0.0200958251953125,
0.00324249267578125,
0.0204620361328125,
0.049163818359375,
-0.0220184326171875,
0.0189971923828125,
0.0513916015625,
0.05206298828125,
0.0138397216796875,
-0.042144775390625,
0.006549835205078125,
-0.048614501953125,
-0.028717041015625,
0.002651214599609375,
-0.05975341796875,
0.05609130859375,
0.0005340576171875,
-0.005580902099609375,
-0.017730712890625,
0.03271484375,
0.0177764892578125,
0.017303466796875,
0.02862548828125,
0.0511474609375,
0.068359375,
-0.019378662109375,
0.0909423828125,
-0.025848388671875,
0.037567138671875,
0.06683349609375,
-0.01081085205078125,
0.058441162109375,
0.0269317626953125,
-0.03515625,
0.03424072265625,
0.048309326171875,
-0.029388427734375,
0.03363037109375,
0.003376007080078125,
0.007251739501953125,
0.00734710693359375,
-0.004100799560546875,
-0.04205322265625,
0.0242156982421875,
0.01129150390625,
-0.0256500244140625,
-0.0161895751953125,
-0.01093292236328125,
0.0122528076171875,
-0.01151275634765625,
-0.00936126708984375,
0.06231689453125,
-0.0236358642578125,
-0.03265380859375,
0.037139892578125,
-0.017486572265625,
0.05047607421875,
-0.049713134765625,
0.00606536865234375,
-0.0235137939453125,
0.0022106170654296875,
-0.036224365234375,
-0.08197021484375,
0.051025390625,
0.00034356117248535156,
-0.039642333984375,
-0.0281829833984375,
0.0487060546875,
-0.0276947021484375,
-0.06964111328125,
0.007320404052734375,
0.034820556640625,
0.00923919677734375,
0.0189361572265625,
-0.079345703125,
0.023284912109375,
-0.0005555152893066406,
-0.037139892578125,
0.0233001708984375,
0.02655029296875,
0.01611328125,
0.038330078125,
0.049072265625,
-0.0001678466796875,
-0.0013380050659179688,
-0.00634002685546875,
0.060089111328125,
-0.04974365234375,
-0.027679443359375,
-0.04876708984375,
0.05218505859375,
-0.0270538330078125,
-0.042510986328125,
0.054840087890625,
0.05780029296875,
0.07489013671875,
-0.00499725341796875,
0.064697265625,
-0.0479736328125,
0.05389404296875,
-0.0182342529296875,
0.06854248046875,
-0.052398681640625,
0.0089111328125,
-0.033233642578125,
-0.050750732421875,
-0.0283660888671875,
0.0506591796875,
-0.01544189453125,
0.003414154052734375,
0.03216552734375,
0.07159423828125,
0.0008306503295898438,
0.0251922607421875,
-0.0164031982421875,
0.0208282470703125,
0.011383056640625,
0.0291290283203125,
0.027069091796875,
-0.052886962890625,
0.043792724609375,
-0.046142578125,
-0.00972747802734375,
0.005245208740234375,
-0.05877685546875,
-0.06085205078125,
-0.07720947265625,
-0.0450439453125,
-0.03973388671875,
-0.00475311279296875,
0.0743408203125,
0.05499267578125,
-0.063720703125,
-0.02020263671875,
-0.0269317626953125,
0.0175628662109375,
-0.01006317138671875,
-0.026397705078125,
0.0357666015625,
0.01126861572265625,
-0.03436279296875,
0.003997802734375,
-0.0012989044189453125,
-0.0013523101806640625,
-0.00826263427734375,
0.005664825439453125,
-0.033477783203125,
-0.009765625,
0.03802490234375,
0.0227203369140625,
-0.018798828125,
-0.017425537109375,
0.003448486328125,
0.006103515625,
0.0163726806640625,
0.03558349609375,
-0.046295166015625,
0.000789642333984375,
0.052825927734375,
0.02899169921875,
0.037933349609375,
0.002071380615234375,
0.020172119140625,
-0.0526123046875,
0.0107879638671875,
0.0034389495849609375,
0.016326904296875,
0.022857666015625,
-0.03753662109375,
0.05487060546875,
0.021728515625,
-0.040618896484375,
-0.06610107421875,
-0.01001739501953125,
-0.0889892578125,
-0.010711669921875,
0.08184814453125,
0.01087188720703125,
-0.034637451171875,
-0.01068115234375,
-0.01244354248046875,
0.01052093505859375,
-0.0428466796875,
0.054443359375,
0.06329345703125,
0.0004780292510986328,
-0.00864410400390625,
-0.047882080078125,
0.03948974609375,
-0.01065826416015625,
-0.08697509765625,
0.0240631103515625,
0.038299560546875,
0.02691650390625,
0.0162353515625,
0.05029296875,
-0.01088714599609375,
0.00797271728515625,
-0.006656646728515625,
-0.006557464599609375,
-0.01116180419921875,
-0.005443572998046875,
-0.0082855224609375,
0.00652313232421875,
-0.054901123046875,
-0.007843017578125
]
] |
shunk031/DrawBench | 2023-09-27T13:13:31.000Z | [
"task_categories:text-to-image",
"annotations_creators:crowdsourced",
"multilinguality:monolingual",
"size_categories:n<1K",
"source_datasets:original",
"language:en",
"license:unknown",
"arxiv:2205.11487",
"region:us"
] | shunk031 | DrawBench is a comprehensive and challenging set of prompts that support the evaluation and comparison of text-to-image models. This benchmark contains 11 categories of prompts, testing different capabilities of models such as the ability to faithfully render different colors, numbers of objects, spatial relations, text in the scene, and unusual interactions between objects.\ | @article{saharia2022photorealistic,
title={Photorealistic text-to-image diffusion models with deep language understanding},
author={Saharia, Chitwan and Chan, William and Saxena, Saurabh and Li, Lala and Whang, Jay and Denton, Emily L and Ghasemipour, Kamyar and Gontijo Lopes, Raphael and Karagol Ayan, Burcu and Salimans, Tim and others},
journal={Advances in Neural Information Processing Systems},
volume={35},
pages={36479--36494},
year={2022}
} | 1 | 945 | 2023-09-27T13:10:40 | ---
annotations_creators:
- crowdsourced
language:
- en
language_creators: []
license:
- unknown
multilinguality:
- monolingual
pretty_name: DrawBench
size_categories:
- n<1K
source_datasets:
- original
tags: []
task_categories:
- text-to-image
task_ids: []
---
# Dataset Card for DrawBench
## Table of Contents
- [Dataset Card Creation Guide](#dataset-card-creation-guide)
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
- [Who are the source language producers?](#who-are-the-source-language-producers)
- [Annotations](#annotations)
- [Annotation process](#annotation-process)
- [Who are the annotators?](#who-are-the-annotators)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://imagen.research.google/
- **Repository:** https://github.com/shunk031/huggingface-datasets_DrawBench
- **Paper:** https://arxiv.org/abs/2205.11487
### Dataset Summary
[More Information Needed]
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
The language data in DrawBench is in English (BCP-47 en-US).
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
[More Information Needed]
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
[More Information Needed]
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
```bibtex
@article{saharia2022photorealistic,
title={Photorealistic text-to-image diffusion models with deep language understanding},
author={Saharia, Chitwan and Chan, William and Saxena, Saurabh and Li, Lala and Whang, Jay and Denton, Emily L and Ghasemipour, Kamyar and Gontijo Lopes, Raphael and Karagol Ayan, Burcu and Salimans, Tim and others},
journal={Advances in Neural Information Processing Systems},
volume={35},
pages={36479--36494},
year={2022}
}
```
### Contributions
Thanks to Google Research, Brain Team for creating this dataset.
| 3,737 | [
[
-0.046295166015625,
-0.054779052734375,
0.0131988525390625,
0.0221099853515625,
-0.02178955078125,
0.004756927490234375,
-0.0277099609375,
-0.0426025390625,
0.041229248046875,
0.04022216796875,
-0.06402587890625,
-0.072265625,
-0.05023193359375,
-0.006500244140625,
-0.020233154296875,
0.07196044921875,
-0.0158843994140625,
-0.01418304443359375,
-0.00423431396484375,
-0.0186920166015625,
-0.0247650146484375,
-0.0171966552734375,
-0.03753662109375,
-0.026092529296875,
0.024871826171875,
0.0439453125,
0.0484619140625,
0.053131103515625,
0.027679443359375,
0.022308349609375,
-0.0108795166015625,
-0.0096893310546875,
-0.04730224609375,
-0.0139617919921875,
-0.01016998291015625,
-0.0219879150390625,
-0.033111572265625,
0.01094818115234375,
0.0350341796875,
0.059967041015625,
-0.00007814168930053711,
0.033782958984375,
0.0056915283203125,
0.06109619140625,
-0.0259552001953125,
0.043792724609375,
-0.0167236328125,
0.01154327392578125,
-0.0428466796875,
0.01125335693359375,
-0.0165863037109375,
-0.032684326171875,
-0.0023326873779296875,
-0.04510498046875,
0.022674560546875,
0.0018701553344726562,
0.07366943359375,
-0.0026874542236328125,
-0.01238250732421875,
-0.006816864013671875,
-0.023834228515625,
0.042755126953125,
-0.04815673828125,
0.0119171142578125,
0.03631591796875,
0.01983642578125,
-0.0029087066650390625,
-0.06927490234375,
-0.052459716796875,
0.01922607421875,
-0.006420135498046875,
0.0229949951171875,
-0.00982666015625,
-0.004669189453125,
0.04638671875,
0.03460693359375,
-0.0416259765625,
-0.007904052734375,
-0.044952392578125,
-0.0200347900390625,
0.06781005859375,
0.01239776611328125,
0.0355224609375,
-0.026824951171875,
-0.0079498291015625,
-0.0277862548828125,
-0.034881591796875,
-0.0007104873657226562,
0.040679931640625,
0.0244293212890625,
-0.05926513671875,
0.046661376953125,
-0.00780487060546875,
0.0548095703125,
0.00634765625,
0.00804901123046875,
0.044097900390625,
-0.03338623046875,
0.00905609130859375,
-0.0103607177734375,
0.063232421875,
0.0396728515625,
0.02008056640625,
-0.0013589859008789062,
0.01123046875,
-0.00800323486328125,
-0.00894927978515625,
-0.0723876953125,
-0.036102294921875,
0.02728271484375,
-0.049224853515625,
-0.0251617431640625,
0.005035400390625,
-0.08941650390625,
-0.034820556640625,
-0.023468017578125,
0.0008206367492675781,
-0.0147705078125,
-0.036468505859375,
-0.00156402587890625,
-0.0234832763671875,
0.031646728515625,
0.0106353759765625,
-0.058135986328125,
0.02911376953125,
0.0184783935546875,
0.05908203125,
-0.01806640625,
-0.0185699462890625,
-0.0037899017333984375,
0.001178741455078125,
-0.0189971923828125,
0.0484619140625,
-0.026580810546875,
-0.033538818359375,
-0.003246307373046875,
0.02435302734375,
-0.0028133392333984375,
-0.02630615234375,
0.050506591796875,
-0.01361846923828125,
0.03131103515625,
-0.037933349609375,
-0.04095458984375,
-0.0239410400390625,
-0.0029754638671875,
-0.07061767578125,
0.09600830078125,
0.01373291015625,
-0.078369140625,
0.0235748291015625,
-0.0540771484375,
-0.0257415771484375,
0.006500244140625,
-0.02337646484375,
-0.027130126953125,
-0.0086669921875,
0.00365447998046875,
0.043426513671875,
-0.0262603759765625,
0.007129669189453125,
-0.038177490234375,
-0.014892578125,
0.00047779083251953125,
0.0089111328125,
0.0924072265625,
0.013214111328125,
-0.041748046875,
0.007114410400390625,
-0.06512451171875,
0.0071258544921875,
0.0307769775390625,
-0.007442474365234375,
0.0057525634765625,
-0.002864837646484375,
0.03448486328125,
0.0257720947265625,
0.01641845703125,
-0.03753662109375,
0.0007643699645996094,
-0.022796630859375,
0.0178680419921875,
0.051300048828125,
0.002262115478515625,
0.0271148681640625,
-0.01032257080078125,
0.036712646484375,
0.009918212890625,
0.0045166015625,
0.0013523101806640625,
-0.043121337890625,
-0.05810546875,
-0.017425537109375,
0.022705078125,
0.04876708984375,
-0.052978515625,
0.0543212890625,
-0.0186309814453125,
-0.052398681640625,
-0.031646728515625,
0.0175018310546875,
0.0233306884765625,
0.040069580078125,
0.020263671875,
-0.041748046875,
-0.039764404296875,
-0.0633544921875,
0.00675201416015625,
0.0035076141357421875,
0.015838623046875,
0.037109375,
0.055328369140625,
-0.006435394287109375,
0.063232421875,
-0.058013916015625,
-0.00237274169921875,
-0.03900146484375,
0.007419586181640625,
0.0193328857421875,
0.04144287109375,
0.061798095703125,
-0.054229736328125,
-0.040802001953125,
-0.01392364501953125,
-0.060516357421875,
-0.01444244384765625,
0.00849151611328125,
-0.034942626953125,
0.01338958740234375,
0.030242919921875,
-0.0361328125,
0.05340576171875,
0.048492431640625,
-0.04620361328125,
0.042144775390625,
0.01062774658203125,
-0.00299072265625,
-0.10321044921875,
0.02117919921875,
0.01125335693359375,
0.0050201416015625,
-0.032135009765625,
-0.005123138427734375,
-0.0025348663330078125,
-0.0158843994140625,
-0.02496337890625,
0.072021484375,
-0.037017822265625,
0.00797271728515625,
-0.00634765625,
0.026031494140625,
0.00505828857421875,
0.040985107421875,
0.005115509033203125,
0.040924072265625,
0.059356689453125,
-0.028656005859375,
0.039886474609375,
0.03668212890625,
-0.0338134765625,
0.0537109375,
-0.0653076171875,
0.004589080810546875,
-0.0272064208984375,
0.0192108154296875,
-0.08642578125,
-0.035858154296875,
0.03570556640625,
-0.04052734375,
0.03375244140625,
-0.00868988037109375,
-0.05609130859375,
-0.041748046875,
-0.0294952392578125,
0.0095672607421875,
0.032470703125,
-0.03448486328125,
0.033416748046875,
0.045074462890625,
-0.00807952880859375,
-0.0305633544921875,
-0.074951171875,
-0.001399993896484375,
-0.012298583984375,
-0.05908203125,
0.038055419921875,
-0.022308349609375,
0.000039696693420410156,
0.003047943115234375,
0.0159912109375,
-0.0113983154296875,
-0.00348663330078125,
0.0206756591796875,
0.01467132568359375,
0.004634857177734375,
-0.0024127960205078125,
-0.0026092529296875,
-0.004474639892578125,
0.00267791748046875,
0.0015077590942382812,
0.0292816162109375,
0.00797271728515625,
-0.019073486328125,
-0.0289764404296875,
0.0243072509765625,
0.0106964111328125,
-0.0099029541015625,
0.05010986328125,
0.0762939453125,
-0.0281524658203125,
-0.004772186279296875,
-0.04071044921875,
-0.0182037353515625,
-0.03271484375,
0.0244140625,
-0.0169677734375,
-0.0499267578125,
0.08428955078125,
-0.0034656524658203125,
0.01125335693359375,
0.049072265625,
0.036102294921875,
0.004245758056640625,
0.0595703125,
0.053375244140625,
-0.01543426513671875,
0.055999755859375,
-0.043121337890625,
-0.0083465576171875,
-0.06353759765625,
-0.0228729248046875,
-0.0389404296875,
-0.04876708984375,
-0.0582275390625,
-0.03656005859375,
-0.01186370849609375,
0.00492095947265625,
-0.01727294921875,
0.03704833984375,
-0.039398193359375,
0.04150390625,
0.045806884765625,
0.0209503173828125,
-0.0082855224609375,
0.01361846923828125,
-0.02459716796875,
-0.01436614990234375,
-0.04290771484375,
-0.0259857177734375,
0.07843017578125,
0.016815185546875,
0.047943115234375,
-0.0008368492126464844,
0.05419921875,
-0.0030670166015625,
0.0067901611328125,
-0.03204345703125,
0.0540771484375,
-0.01506805419921875,
-0.06463623046875,
-0.016937255859375,
-0.02410888671875,
-0.07568359375,
-0.00012314319610595703,
-0.01331329345703125,
-0.0704345703125,
0.0400390625,
0.00658416748046875,
0.0008897781372070312,
0.0246429443359375,
-0.0614013671875,
0.08819580078125,
-0.008544921875,
-0.044342041015625,
-0.0039043426513671875,
-0.06793212890625,
0.019500732421875,
0.0234222412109375,
0.0175018310546875,
-0.0223236083984375,
-0.0000502467155456543,
0.07135009765625,
-0.030120849609375,
0.0916748046875,
-0.0296173095703125,
0.01103973388671875,
0.03668212890625,
-0.01280975341796875,
0.031982421875,
-0.010986328125,
-0.0169830322265625,
0.021728515625,
-0.016357421875,
-0.03485107421875,
-0.0333251953125,
0.0460205078125,
-0.050201416015625,
-0.0082550048828125,
-0.0204620361328125,
-0.0231475830078125,
0.00107574462890625,
0.03277587890625,
0.02532958984375,
0.0198974609375,
-0.0161590576171875,
0.0229339599609375,
0.043487548828125,
-0.02685546875,
0.024505615234375,
0.015380859375,
-0.0201416015625,
-0.0467529296875,
0.06317138671875,
0.0244140625,
0.00408935546875,
0.0008864402770996094,
0.00559234619140625,
-0.028228759765625,
-0.01702880859375,
-0.044921875,
0.027313232421875,
-0.0584716796875,
-0.004138946533203125,
-0.0304412841796875,
-0.0160675048828125,
-0.0195770263671875,
-0.007678985595703125,
-0.00962066650390625,
-0.04443359375,
-0.0307769775390625,
-0.0292205810546875,
0.047119140625,
0.0229949951171875,
-0.0175323486328125,
0.0179901123046875,
-0.0322265625,
0.0277252197265625,
0.0007700920104980469,
0.051727294921875,
0.002834320068359375,
-0.0283966064453125,
-0.0287322998046875,
0.0016155242919921875,
-0.026397705078125,
-0.06781005859375,
0.0163726806640625,
0.0091552734375,
0.058685302734375,
0.01007080078125,
-0.0030384063720703125,
0.044097900390625,
-0.0165557861328125,
0.06353759765625,
0.014068603515625,
-0.051300048828125,
0.05267333984375,
-0.032379150390625,
0.0287017822265625,
0.053802490234375,
0.0293426513671875,
-0.0394287109375,
-0.009002685546875,
-0.06439208984375,
-0.083251953125,
0.063720703125,
0.012237548828125,
0.0234222412109375,
-0.001300811767578125,
0.023223876953125,
-0.00734710693359375,
0.01445770263671875,
-0.06585693359375,
-0.0538330078125,
-0.01824951171875,
-0.0296783447265625,
0.00237274169921875,
-0.01155853271484375,
-0.022369384765625,
-0.04150390625,
0.039703369140625,
-0.0067138671875,
0.0205078125,
-0.000591278076171875,
0.0030193328857421875,
-0.00591278076171875,
-0.003971099853515625,
0.024383544921875,
0.034881591796875,
-0.011566162109375,
-0.0118255615234375,
-0.0001461505889892578,
-0.0467529296875,
-0.0119171142578125,
0.0343017578125,
-0.02642822265625,
0.001300811767578125,
0.0234832763671875,
0.079345703125,
0.0146942138671875,
-0.034820556640625,
0.036590576171875,
0.0024871826171875,
-0.0293731689453125,
-0.0293426513671875,
-0.00730133056640625,
0.015045166015625,
0.01522064208984375,
0.007381439208984375,
-0.01291656494140625,
0.01146697998046875,
-0.0301513671875,
0.0167236328125,
0.01506805419921875,
-0.0220489501953125,
-0.0256195068359375,
0.05316162109375,
0.0239715576171875,
0.0024566650390625,
0.03985595703125,
-0.013580322265625,
-0.01386260986328125,
0.055572509765625,
0.0212860107421875,
0.07635498046875,
-0.0004737377166748047,
0.0266265869140625,
0.05694580078125,
0.0165557861328125,
-0.0007748603820800781,
0.057464599609375,
-0.0022106170654296875,
-0.052001953125,
-0.02593994140625,
-0.033782958984375,
-0.0204620361328125,
0.0003261566162109375,
-0.046783447265625,
0.02911376953125,
-0.043060302734375,
-0.0223541259765625,
0.007617950439453125,
0.0165557861328125,
-0.06475830078125,
0.009857177734375,
0.005306243896484375,
0.0723876953125,
-0.06268310546875,
0.04388427734375,
0.052001953125,
-0.058929443359375,
-0.06134033203125,
-0.01317596435546875,
0.0243988037109375,
-0.04583740234375,
0.04559326171875,
0.0038738250732421875,
0.0179901123046875,
0.0008053779602050781,
-0.06512451171875,
-0.060760498046875,
0.0916748046875,
0.029449462890625,
-0.01232147216796875,
0.0177154541015625,
0.0051116943359375,
0.04351806640625,
-0.01493072509765625,
0.019500732421875,
0.03582763671875,
0.04852294921875,
0.0273590087890625,
-0.04290771484375,
0.0181732177734375,
-0.04632568359375,
0.003826141357421875,
0.0005192756652832031,
-0.0562744140625,
0.04901123046875,
-0.0144805908203125,
-0.0256805419921875,
-0.01132965087890625,
0.045989990234375,
0.0231475830078125,
0.00977325439453125,
0.0194854736328125,
0.056488037109375,
0.054901123046875,
-0.025054931640625,
0.07952880859375,
-0.0308837890625,
0.0224151611328125,
0.09039306640625,
-0.0023746490478515625,
0.0540771484375,
0.01268768310546875,
-0.02972412109375,
0.05487060546875,
0.058929443359375,
-0.014312744140625,
0.0185394287109375,
0.031463623046875,
0.00505828857421875,
-0.0019235610961914062,
-0.01263427734375,
-0.040283203125,
0.02435302734375,
0.0288848876953125,
-0.03704833984375,
-0.01253509521484375,
-0.00969696044921875,
0.01947021484375,
0.0029468536376953125,
-0.0064697265625,
0.055633544921875,
-0.0029621124267578125,
-0.0164947509765625,
0.029144287109375,
-0.008087158203125,
0.042205810546875,
-0.04827880859375,
-0.00557708740234375,
-0.0191192626953125,
0.000029921531677246094,
-0.03485107421875,
-0.09039306640625,
0.0225677490234375,
-0.00858306884765625,
-0.027618408203125,
-0.01520538330078125,
0.050811767578125,
-0.039886474609375,
-0.0577392578125,
0.025848388671875,
0.0355224609375,
0.01512908935546875,
0.0150604248046875,
-0.08197021484375,
0.025421142578125,
0.004596710205078125,
-0.043060302734375,
0.0126953125,
0.04168701171875,
-0.0034427642822265625,
0.037750244140625,
0.0304718017578125,
0.01174163818359375,
0.00899505615234375,
0.0240325927734375,
0.06793212890625,
-0.055633544921875,
-0.0262298583984375,
-0.03802490234375,
0.0611572265625,
-0.04302978515625,
-0.023223876953125,
0.06463623046875,
0.054107666015625,
0.07330322265625,
-0.005229949951171875,
0.068359375,
-0.03875732421875,
0.04986572265625,
-0.021087646484375,
0.05908203125,
-0.03692626953125,
-0.01538848876953125,
-0.054443359375,
-0.0654296875,
-0.0287322998046875,
0.05731201171875,
-0.0247955322265625,
0.026885986328125,
0.0390625,
0.06182861328125,
-0.0006437301635742188,
-0.0031375885009765625,
-0.00557708740234375,
0.022552490234375,
0.007537841796875,
0.020843505859375,
0.01390838623046875,
-0.03961181640625,
0.036865234375,
-0.05023193359375,
-0.01358795166015625,
-0.00018715858459472656,
-0.06842041015625,
-0.0706787109375,
-0.0594482421875,
-0.046051025390625,
-0.029388427734375,
-0.0147552490234375,
0.0528564453125,
0.054229736328125,
-0.068359375,
-0.036773681640625,
-0.0027751922607421875,
0.01355743408203125,
-0.01373291015625,
-0.022308349609375,
0.048614501953125,
0.004489898681640625,
-0.0584716796875,
-0.0138092041015625,
0.0004742145538330078,
0.025390625,
-0.01271820068359375,
-0.006175994873046875,
-0.0157012939453125,
-0.01409912109375,
0.037994384765625,
0.040740966796875,
-0.03656005859375,
-0.006885528564453125,
-0.01123046875,
-0.0002155303955078125,
-0.0048980712890625,
0.027496337890625,
-0.0301971435546875,
0.048583984375,
0.055938720703125,
0.030120849609375,
0.0562744140625,
-0.007678985595703125,
0.0247039794921875,
-0.064697265625,
0.036590576171875,
-0.0018301010131835938,
0.03173828125,
0.02630615234375,
-0.0188446044921875,
0.06634521484375,
0.02655029296875,
-0.0258331298828125,
-0.03814697265625,
0.007610321044921875,
-0.08599853515625,
-0.0037860870361328125,
0.07513427734375,
-0.006000518798828125,
-0.02313232421875,
-0.00550079345703125,
-0.032684326171875,
0.0168914794921875,
-0.0277252197265625,
0.041229248046875,
0.07476806640625,
-0.006320953369140625,
-0.030548095703125,
-0.048309326171875,
0.0413818359375,
-0.00623321533203125,
-0.0828857421875,
0.01280975341796875,
0.059478759765625,
0.01270294189453125,
0.014007568359375,
0.056976318359375,
-0.0297698974609375,
0.01023101806640625,
0.00858306884765625,
0.037994384765625,
0.007366180419921875,
-0.002532958984375,
0.002933502197265625,
-0.0155487060546875,
-0.007904052734375,
-0.006343841552734375
]
] |
DFKI-SLT/few-nerd | 2023-06-21T09:59:09.000Z | [
"task_categories:token-classification",
"task_ids:named-entity-recognition",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:100K<n<1M",
"source_datasets:extended|wikipedia",
"language:en",
"license:cc-by-sa-4.0",
"structure-prediction",
"region:us"
] | DFKI-SLT | Few-NERD is a large-scale, fine-grained manually annotated named entity recognition dataset,
which contains 8 coarse-grained types, 66 fine-grained types, 188,200 sentences, 491,711 entities
and 4,601,223 tokens. Three benchmark tasks are built, one is supervised: Few-NERD (SUP) and the
other two are few-shot: Few-NERD (INTRA) and Few-NERD (INTER). | @inproceedings{ding2021few,
title={Few-NERD: A Few-Shot Named Entity Recognition Dataset},
author={Ding, Ning and Xu, Guangwei and Chen, Yulin, and Wang, Xiaobin and Han, Xu and Xie,
Pengjun and Zheng, Hai-Tao and Liu, Zhiyuan},
booktitle={ACL-IJCNLP},
year={2021}
} | 12 | 937 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- found
language:
- en
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
size_categories:
- 100K<n<1M
source_datasets:
- extended|wikipedia
task_categories:
- token-classification
task_ids:
- named-entity-recognition
paperswithcode_id: few-nerd
pretty_name: Few-NERD
tags:
- structure-prediction
---
# Dataset Card for "Few-NERD"
## Table of Contents
- [Dataset Description](
#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://ningding97.github.io/fewnerd/](https://ningding97.github.io/fewnerd/)
- **Repository:** [https://github.com/thunlp/Few-NERD](https://github.com/thunlp/Few-NERD)
- **Paper:** [https://aclanthology.org/2021.acl-long.248/](https://aclanthology.org/2021.acl-long.248/)
- **Point of Contact:** See [https://ningding97.github.io/fewnerd/](https://ningding97.github.io/fewnerd/)
### Dataset Summary
This script is for loading the Few-NERD dataset from https://ningding97.github.io/fewnerd/.
Few-NERD is a large-scale, fine-grained manually annotated named entity recognition dataset, which contains 8 coarse-grained types, 66 fine-grained types, 188,200 sentences, 491,711 entities, and 4,601,223 tokens. Three benchmark tasks are built, one is supervised (Few-NERD (SUP)) and the other two are few-shot (Few-NERD (INTRA) and Few-NERD (INTER)).
NER tags use the `IO` tagging scheme. The original data uses a 2-column CoNLL-style format, with empty lines to separate sentences. DOCSTART information is not provided since the sentences are randomly ordered.
For more details see https://ningding97.github.io/fewnerd/ and https://aclanthology.org/2021.acl-long.248/.
### Supported Tasks and Leaderboards
- **Tasks:** Named Entity Recognition, Few-shot NER
- **Leaderboards:**
- https://ningding97.github.io/fewnerd/
- named-entity-recognition:https://paperswithcode.com/sota/named-entity-recognition-on-few-nerd-sup
- other-few-shot-ner:https://paperswithcode.com/sota/few-shot-ner-on-few-nerd-intra
- other-few-shot-ner:https://paperswithcode.com/sota/few-shot-ner-on-few-nerd-inter
### Languages
English
## Dataset Structure
### Data Instances
- **Size of downloaded dataset files:**
- `super`: 14.6 MB
- `intra`: 11.4 MB
- `inter`: 11.5 MB
- **Size of the generated dataset:**
- `super`: 116.9 MB
- `intra`: 106.2 MB
- `inter`: 106.2 MB
- **Total amount of disk used:** 366.8 MB
An example of 'train' looks as follows.
```json
{
'id': '1',
'tokens': ['It', 'starred', 'Hicks', "'s", 'wife', ',', 'Ellaline', 'Terriss', 'and', 'Edmund', 'Payne', '.'],
'ner_tags': [0, 0, 7, 0, 0, 0, 7, 7, 0, 7, 7, 0],
'fine_ner_tags': [0, 0, 51, 0, 0, 0, 50, 50, 0, 50, 50, 0]
}
```
### Data Fields
The data fields are the same among all splits.
- `id`: a `string` feature.
- `tokens`: a `list` of `string` features.
- `ner_tags`: a `list` of classification labels, with possible values including `O` (0), `art` (1), `building` (2), `event` (3), `location` (4), `organization` (5), `other`(6), `person` (7), `product` (8)
- `fine_ner_tags`: a `list` of fine-grained classification labels, with possible values including `O` (0), `art-broadcastprogram` (1), `art-film` (2), ...
### Data Splits
| Task | Train | Dev | Test |
| ----- | ------ | ----- | ---- |
| SUP | 131767 | 18824 | 37648 |
| INTRA | 99519 | 19358 | 44059 |
| INTER | 130112 | 18817 | 14007 |
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[CC BY-SA 4.0 license](https://creativecommons.org/licenses/by-sa/4.0/)
### Citation Information
```
@inproceedings{ding-etal-2021-nerd,
title = "Few-{NERD}: A Few-shot Named Entity Recognition Dataset",
author = "Ding, Ning and
Xu, Guangwei and
Chen, Yulin and
Wang, Xiaobin and
Han, Xu and
Xie, Pengjun and
Zheng, Haitao and
Liu, Zhiyuan",
booktitle = "Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers)",
month = aug,
year = "2021",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2021.acl-long.248",
doi = "10.18653/v1/2021.acl-long.248",
pages = "3198--3213",
}
```
### Contributions | 7,128 | [
[
-0.05523681640625,
-0.043914794921875,
0.0178680419921875,
-0.002445220947265625,
-0.008087158203125,
-0.007686614990234375,
-0.0306549072265625,
-0.03839111328125,
0.05596923828125,
0.031646728515625,
-0.05426025390625,
-0.06451416015625,
-0.039215087890625,
0.024871826171875,
-0.01526641845703125,
0.0921630859375,
0.01007843017578125,
-0.009490966796875,
-0.00919342041015625,
-0.016448974609375,
-0.0169219970703125,
-0.0266571044921875,
-0.035736083984375,
-0.0188751220703125,
0.030670166015625,
0.053741455078125,
0.0305938720703125,
0.056549072265625,
0.05352783203125,
0.0178985595703125,
-0.001453399658203125,
0.0021686553955078125,
-0.038177490234375,
-0.0172119140625,
0.005184173583984375,
-0.020965576171875,
-0.0440673828125,
-0.00005692243576049805,
0.04718017578125,
0.040557861328125,
0.00858306884765625,
0.0335693359375,
0.0019292831420898438,
0.05450439453125,
-0.02496337890625,
0.03314208984375,
-0.025146484375,
-0.00867462158203125,
-0.047576904296875,
0.01456451416015625,
-0.007415771484375,
-0.0207366943359375,
-0.0000762939453125,
-0.066162109375,
0.0124359130859375,
0.0062255859375,
0.07733154296875,
0.017974853515625,
0.0010309219360351562,
-0.007640838623046875,
-0.0199432373046875,
0.04425048828125,
-0.06011962890625,
0.015472412109375,
0.0511474609375,
0.014068603515625,
-0.0147552490234375,
-0.055908203125,
-0.059051513671875,
0.01068878173828125,
-0.01483917236328125,
0.005035400390625,
-0.00858306884765625,
-0.0201873779296875,
0.04107666015625,
0.0260009765625,
-0.046356201171875,
0.0078277587890625,
-0.0286865234375,
-0.0030002593994140625,
0.076171875,
0.0204010009765625,
0.0179290771484375,
-0.05035400390625,
-0.005016326904296875,
-0.0198822021484375,
-0.032318115234375,
0.0033512115478515625,
0.032989501953125,
0.054473876953125,
-0.055816650390625,
0.041534423828125,
-0.028289794921875,
0.035675048828125,
-0.0003066062927246094,
-0.00994873046875,
0.056976318359375,
-0.043914794921875,
-0.00867462158203125,
-0.0006399154663085938,
0.08233642578125,
0.03619384765625,
0.0022296905517578125,
0.0151824951171875,
0.0006961822509765625,
0.00007069110870361328,
-0.0112762451171875,
-0.06195068359375,
-0.044647216796875,
0.0301666259765625,
-0.04022216796875,
-0.023223876953125,
0.0011501312255859375,
-0.086669921875,
-0.029083251953125,
-0.00926971435546875,
0.016693115234375,
-0.03033447265625,
-0.0263671875,
-0.00502777099609375,
-0.01085662841796875,
0.0168914794921875,
0.008758544921875,
-0.055389404296875,
0.033905029296875,
0.042388916015625,
0.05963134765625,
-0.0106201171875,
-0.0263519287109375,
-0.021759033203125,
-0.021392822265625,
-0.004711151123046875,
0.0556640625,
-0.026611328125,
-0.0241241455078125,
-0.024078369140625,
0.0200653076171875,
-0.004974365234375,
-0.0189361572265625,
0.053253173828125,
-0.01495361328125,
0.013275146484375,
-0.035247802734375,
-0.04071044921875,
-0.0035858154296875,
0.035125732421875,
-0.0595703125,
0.08929443359375,
0.01277923583984375,
-0.07952880859375,
0.0284271240234375,
-0.06884765625,
-0.024749755859375,
0.02313232421875,
-0.01331329345703125,
-0.041107177734375,
-0.026336669921875,
0.011871337890625,
0.041717529296875,
-0.031402587890625,
0.0080718994140625,
-0.0275421142578125,
-0.0136260986328125,
0.00687408447265625,
0.01116180419921875,
0.08892822265625,
0.0006284713745117188,
-0.0146026611328125,
-0.0037631988525390625,
-0.07684326171875,
-0.00008887052536010742,
0.040435791015625,
-0.01473236083984375,
-0.01473236083984375,
-0.019500732421875,
0.030670166015625,
0.0114593505859375,
0.012542724609375,
-0.033660888671875,
0.032958984375,
-0.0231475830078125,
0.0302581787109375,
0.04522705078125,
0.01065826416015625,
0.034942626953125,
-0.02252197265625,
0.0292205810546875,
-0.004436492919921875,
0.01666259765625,
0.0038928985595703125,
-0.045074462890625,
-0.056640625,
-0.0282440185546875,
0.039581298828125,
0.035614013671875,
-0.052734375,
0.04583740234375,
-0.046173095703125,
-0.05523681640625,
-0.04266357421875,
0.01165771484375,
0.0185089111328125,
0.039764404296875,
0.041717529296875,
-0.030242919921875,
-0.0604248046875,
-0.0576171875,
0.01419830322265625,
-0.00926971435546875,
0.018524169921875,
0.04217529296875,
0.06951904296875,
-0.0245208740234375,
0.06689453125,
-0.053924560546875,
-0.04449462890625,
-0.023681640625,
-0.00788116455078125,
0.033447265625,
0.047943115234375,
0.04248046875,
-0.05194091796875,
-0.042327880859375,
-0.012176513671875,
-0.055999755859375,
0.004833221435546875,
0.0010137557983398438,
-0.00955963134765625,
0.0083465576171875,
0.0198974609375,
-0.0556640625,
0.0254058837890625,
0.0267181396484375,
-0.0254669189453125,
0.031585693359375,
0.0164794921875,
-0.003307342529296875,
-0.0816650390625,
0.016845703125,
0.0078277587890625,
0.0014181137084960938,
-0.045257568359375,
-0.006801605224609375,
-0.01345062255859375,
0.00891876220703125,
-0.0301971435546875,
0.054779052734375,
-0.0286102294921875,
0.00727081298828125,
0.010498046875,
0.01361846923828125,
-0.00414276123046875,
0.034515380859375,
-0.00893402099609375,
0.036773681640625,
0.0633544921875,
-0.044708251953125,
0.0161285400390625,
0.040771484375,
-0.0194091796875,
0.039306640625,
-0.03863525390625,
0.0159912109375,
-0.01490020751953125,
0.0218048095703125,
-0.050628662109375,
-0.044891357421875,
0.046112060546875,
-0.04498291015625,
0.030487060546875,
-0.036895751953125,
-0.050567626953125,
-0.03253173828125,
-0.0384521484375,
0.01543426513671875,
0.0212860107421875,
-0.0250701904296875,
0.03668212890625,
0.049835205078125,
0.00215911865234375,
-0.02435302734375,
-0.0626220703125,
0.0025196075439453125,
-0.01287078857421875,
-0.04302978515625,
0.031768798828125,
-0.01181793212890625,
-0.00689697265625,
0.018310546875,
0.0056915283203125,
0.0015058517456054688,
0.003345489501953125,
0.02227783203125,
0.02374267578125,
-0.01087188720703125,
0.0037384033203125,
-0.018218994140625,
-0.0217437744140625,
-0.0095062255859375,
-0.0199737548828125,
0.038421630859375,
-0.01244354248046875,
-0.00644683837890625,
-0.029937744140625,
0.0098419189453125,
0.01428985595703125,
-0.0099945068359375,
0.042938232421875,
0.06414794921875,
-0.0374755859375,
-0.0021820068359375,
-0.0278167724609375,
-0.015960693359375,
-0.0279388427734375,
0.0142974853515625,
-0.019683837890625,
-0.056060791015625,
0.052734375,
0.0193634033203125,
0.005764007568359375,
0.06292724609375,
0.030181884765625,
-0.00922393798828125,
0.0445556640625,
0.032073974609375,
-0.0163421630859375,
0.03802490234375,
-0.063720703125,
0.0016956329345703125,
-0.060394287109375,
-0.0227508544921875,
-0.053436279296875,
-0.040435791015625,
-0.079833984375,
-0.0307769775390625,
0.00414276123046875,
-0.00007385015487670898,
-0.01235198974609375,
0.041015625,
-0.055389404296875,
0.036651611328125,
0.03997802734375,
0.000598907470703125,
0.0012073516845703125,
-0.0119476318359375,
0.002796173095703125,
-0.006168365478515625,
-0.04620361328125,
-0.035919189453125,
0.0953369140625,
0.0204010009765625,
0.038970947265625,
0.00560760498046875,
0.08587646484375,
0.011871337890625,
-0.0020236968994140625,
-0.04656982421875,
0.051788330078125,
-0.0242156982421875,
-0.054901123046875,
-0.022735595703125,
-0.033050537109375,
-0.070068359375,
-0.005329132080078125,
-0.036376953125,
-0.06463623046875,
0.044647216796875,
0.0022106170654296875,
-0.0229949951171875,
0.01519775390625,
-0.056396484375,
0.07257080078125,
-0.0153656005859375,
-0.0255889892578125,
0.01056671142578125,
-0.07244873046875,
0.021270751953125,
0.006015777587890625,
0.0228271484375,
-0.0260009765625,
0.012786865234375,
0.09222412109375,
-0.03680419921875,
0.06597900390625,
-0.0246124267578125,
0.0411376953125,
0.0289764404296875,
-0.01332855224609375,
0.039581298828125,
0.01134490966796875,
-0.00737762451171875,
0.04620361328125,
0.002079010009765625,
-0.0243682861328125,
-0.02557373046875,
0.061492919921875,
-0.0587158203125,
-0.00678253173828125,
-0.03631591796875,
-0.02227783203125,
0.0079498291015625,
0.0445556640625,
0.030731201171875,
0.00804901123046875,
-0.004268646240234375,
0.01171875,
0.047882080078125,
-0.004100799560546875,
0.0242156982421875,
0.003780364990234375,
-0.012420654296875,
-0.0457763671875,
0.076171875,
0.0252685546875,
-0.0124969482421875,
0.0227203369140625,
0.00812530517578125,
-0.0079193115234375,
-0.035125732421875,
-0.038818359375,
0.021331787109375,
-0.047271728515625,
-0.0300750732421875,
-0.0628662109375,
-0.01181793212890625,
-0.04547119140625,
0.004913330078125,
-0.025543212890625,
-0.04931640625,
-0.04443359375,
-0.0177001953125,
0.057037353515625,
0.033660888671875,
-0.0206756591796875,
0.0179595947265625,
-0.0400390625,
0.03485107421875,
0.0016031265258789062,
0.0283203125,
-0.0092926025390625,
-0.027008056640625,
-0.02508544921875,
-0.005458831787109375,
-0.007312774658203125,
-0.0509033203125,
0.02996826171875,
0.00867462158203125,
0.03839111328125,
0.010955810546875,
0.00733184814453125,
0.04876708984375,
-0.01380157470703125,
0.066650390625,
0.004894256591796875,
-0.0469970703125,
0.037994384765625,
-0.0186767578125,
0.01500701904296875,
0.07696533203125,
0.0328369140625,
-0.031829833984375,
0.0015659332275390625,
-0.06866455078125,
-0.072021484375,
0.07403564453125,
0.0208587646484375,
-0.0007963180541992188,
-0.002986907958984375,
0.012451171875,
-0.0028705596923828125,
0.00513458251953125,
-0.053253173828125,
-0.05914306640625,
-0.0233917236328125,
-0.0243988037109375,
0.0002841949462890625,
-0.007110595703125,
-0.0113677978515625,
-0.0295867919921875,
0.06854248046875,
-0.0154876708984375,
0.0242156982421875,
0.0143890380859375,
-0.0094146728515625,
0.0043792724609375,
0.0177001953125,
0.0245208740234375,
0.011474609375,
-0.0240020751953125,
0.00376129150390625,
0.007354736328125,
-0.0511474609375,
-0.01551055908203125,
0.03277587890625,
-0.026580810546875,
0.0007281303405761719,
0.0290374755859375,
0.058929443359375,
0.0032176971435546875,
-0.024505615234375,
0.0333251953125,
-0.007083892822265625,
-0.02056884765625,
-0.021484375,
0.004108428955078125,
0.0039215087890625,
0.0173187255859375,
0.0189971923828125,
0.00391387939453125,
0.01454925537109375,
-0.02484130859375,
0.017913818359375,
0.01337432861328125,
-0.01505279541015625,
-0.0262603759765625,
0.031768798828125,
0.0033473968505859375,
-0.01702880859375,
0.05316162109375,
-0.050201416015625,
-0.035797119140625,
0.049591064453125,
0.01430511474609375,
0.07049560546875,
0.018157958984375,
0.005512237548828125,
0.05780029296875,
0.028839111328125,
-0.00582122802734375,
0.033172607421875,
-0.0017652511596679688,
-0.06195068359375,
-0.00627899169921875,
-0.04058837890625,
-0.00795745849609375,
0.01084136962890625,
-0.042266845703125,
0.043731689453125,
-0.0528564453125,
-0.030364990234375,
0.02667236328125,
0.032257080078125,
-0.07415771484375,
0.005462646484375,
0.007617950439453125,
0.0643310546875,
-0.07275390625,
0.04864501953125,
0.060150146484375,
-0.062255859375,
-0.066650390625,
-0.0078582763671875,
0.02667236328125,
-0.03314208984375,
0.035675048828125,
0.007495880126953125,
0.027862548828125,
0.006023406982421875,
-0.0599365234375,
-0.0692138671875,
0.08734130859375,
0.00991058349609375,
-0.039398193359375,
0.005992889404296875,
-0.002559661865234375,
0.0419921875,
-0.0256805419921875,
0.018707275390625,
0.052581787109375,
0.0518798828125,
0.00002294778823852539,
-0.062469482421875,
0.00830078125,
-0.039306640625,
-0.0193328857421875,
0.0160675048828125,
-0.057037353515625,
0.053863525390625,
-0.0164337158203125,
-0.0151824951171875,
-0.0230255126953125,
0.034820556640625,
0.028778076171875,
0.0340576171875,
0.0235137939453125,
0.06744384765625,
0.06854248046875,
-0.01910400390625,
0.074462890625,
-0.00775909423828125,
0.03912353515625,
0.0955810546875,
-0.0069122314453125,
0.05401611328125,
0.0262451171875,
-0.033203125,
0.041015625,
0.04852294921875,
-0.0297088623046875,
0.031951904296875,
0.0019273757934570312,
0.01068878173828125,
-0.005954742431640625,
-0.021331787109375,
-0.032989501953125,
0.0328369140625,
0.02227783203125,
-0.01512908935546875,
-0.0020294189453125,
-0.0093536376953125,
0.0111846923828125,
-0.013824462890625,
-0.00966644287109375,
0.06390380859375,
0.00850677490234375,
-0.00946044921875,
0.040924072265625,
-0.004695892333984375,
0.060272216796875,
-0.03118896484375,
-0.001377105712890625,
-0.01279449462890625,
-0.0033588409423828125,
-0.05523681640625,
-0.06591796875,
0.01346588134765625,
0.00604248046875,
-0.030242919921875,
-0.0040130615234375,
0.057159423828125,
-0.01263427734375,
-0.045196533203125,
0.013275146484375,
0.0185089111328125,
0.0340576171875,
0.0226898193359375,
-0.0711669921875,
0.0177154541015625,
0.0033092498779296875,
-0.026611328125,
0.02484130859375,
0.027618408203125,
-0.0116424560546875,
0.03717041015625,
0.059814453125,
0.0082244873046875,
0.0020580291748046875,
0.0168914794921875,
0.06793212890625,
-0.056365966796875,
-0.03240966796875,
-0.054718017578125,
0.04864501953125,
-0.0151519775390625,
-0.033966064453125,
0.05780029296875,
0.0650634765625,
0.085693359375,
0.00743865966796875,
0.056640625,
-0.049835205078125,
0.038055419921875,
-0.0236968994140625,
0.05230712890625,
-0.04766845703125,
0.01129913330078125,
-0.04229736328125,
-0.053253173828125,
-0.040008544921875,
0.0462646484375,
-0.02313232421875,
0.00862884521484375,
0.03619384765625,
0.0675048828125,
-0.00196075439453125,
0.0036163330078125,
-0.0097503662109375,
0.026763916015625,
0.01290130615234375,
0.0303802490234375,
0.028350830078125,
-0.056610107421875,
0.0299530029296875,
-0.043426513671875,
0.0011577606201171875,
-0.0225982666015625,
-0.05718994140625,
-0.052642822265625,
-0.05316162109375,
-0.0482177734375,
-0.0350341796875,
-0.012420654296875,
0.09088134765625,
0.0548095703125,
-0.06976318359375,
-0.0121917724609375,
-0.003414154052734375,
0.0212249755859375,
-0.0102691650390625,
-0.0228271484375,
0.038238525390625,
0.0121612548828125,
-0.045379638671875,
0.012786865234375,
0.006687164306640625,
-0.0002760887145996094,
-0.001895904541015625,
-0.012451171875,
-0.03509521484375,
-0.03338623046875,
0.031585693359375,
0.035430908203125,
-0.031951904296875,
-0.0016222000122070312,
0.002323150634765625,
-0.00801849365234375,
0.0158843994140625,
0.023773193359375,
-0.050201416015625,
0.0218353271484375,
0.0533447265625,
0.037933349609375,
0.058441162109375,
-0.00867462158203125,
-0.0182647705078125,
-0.053253173828125,
0.0037021636962890625,
0.0208587646484375,
0.0273895263671875,
0.038665771484375,
-0.034759521484375,
0.0626220703125,
0.0295867919921875,
-0.032073974609375,
-0.0711669921875,
-0.01531219482421875,
-0.09185791015625,
0.0029392242431640625,
0.08441162109375,
0.00005137920379638672,
-0.025604248046875,
-0.00502777099609375,
0.00029730796813964844,
0.011138916015625,
-0.05303955078125,
0.024688720703125,
0.045623779296875,
-0.01320648193359375,
-0.00896453857421875,
-0.039215087890625,
0.03558349609375,
-0.00432586669921875,
-0.074951171875,
-0.002170562744140625,
0.038055419921875,
0.0294189453125,
0.0323486328125,
0.065185546875,
-0.009124755859375,
0.004032135009765625,
0.00568389892578125,
0.0300445556640625,
-0.007686614990234375,
-0.0190887451171875,
-0.031829833984375,
-0.0097503662109375,
-0.0072479248046875,
-0.01239776611328125
]
] |
llm-lens/descriptors-text-davinci-003 | 2023-06-29T02:39:27.000Z | [
"region:us"
] | llm-lens | null | null | 0 | 935 | 2023-06-29T02:38:48 | ---
dataset_info:
features:
- name: vocab
dtype: string
- name: descriptions
sequence: string
- name: prompt_descriptions
sequence: string
splits:
- name: birdsnap
num_bytes: 322488
num_examples: 500
- name: caltech101
num_bytes: 56880
num_examples: 102
- name: cifar100
num_bytes: 54081
num_examples: 100
- name: coco
num_bytes: 45186
num_examples: 80
- name: dtd
num_bytes: 25204
num_examples: 47
- name: fgvc
num_bytes: 74126
num_examples: 100
- name: food101
num_bytes: 58525
num_examples: 101
- name: full
num_bytes: 3000578
num_examples: 4951
- name: imagenet21k
num_bytes: 604897
num_examples: 998
- name: lvis
num_bytes: 679195
num_examples: 1198
- name: oxfordflowers
num_bytes: 58560
num_examples: 102
- name: oxfordpets
num_bytes: 22322
num_examples: 37
- name: stanfordcars
num_bytes: 157786
num_examples: 196
- name: sun397
num_bytes: 243017
num_examples: 362
- name: visualgenome
num_bytes: 1092697
num_examples: 1913
download_size: 3257945
dataset_size: 6495542
---
# Dataset Card for "descriptors-text-davinci-003"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | 1,339 | [
[
-0.0384521484375,
-0.0195465087890625,
0.0306854248046875,
-0.0003609657287597656,
-0.0196685791015625,
-0.0084991455078125,
0.0204620361328125,
-0.011627197265625,
0.052703857421875,
0.0251922607421875,
-0.05450439453125,
-0.0489501953125,
-0.060272216796875,
0.0021514892578125,
-0.03851318359375,
0.08538818359375,
-0.0003457069396972656,
0.0003342628479003906,
-0.00916290283203125,
-0.00626373291015625,
-0.0101776123046875,
-0.036224365234375,
-0.04241943359375,
-0.01023101806640625,
0.07379150390625,
0.045623779296875,
0.027862548828125,
0.057342529296875,
0.07379150390625,
0.01043701171875,
-0.01092529296875,
-0.01456451416015625,
-0.013671875,
0.006603240966796875,
-0.026947021484375,
-0.0208740234375,
-0.08380126953125,
0.00949859619140625,
0.05047607421875,
0.030303955078125,
-0.0020923614501953125,
0.048858642578125,
-0.01776123046875,
0.060302734375,
-0.03228759765625,
0.04376220703125,
-0.0254669189453125,
-0.008087158203125,
-0.055908203125,
-0.0092315673828125,
0.008514404296875,
-0.022125244140625,
0.00746917724609375,
-0.07220458984375,
0.0186004638671875,
-0.011688232421875,
0.0621337890625,
0.017059326171875,
-0.0119781494140625,
-0.0196533203125,
-0.031494140625,
0.0201568603515625,
-0.007480621337890625,
-0.005435943603515625,
0.056732177734375,
0.027252197265625,
0.0148773193359375,
-0.046661376953125,
-0.0592041015625,
0.0149993896484375,
-0.005466461181640625,
0.008514404296875,
0.0038909912109375,
-0.009735107421875,
0.03802490234375,
0.052490234375,
-0.0226593017578125,
-0.01294708251953125,
-0.03759765625,
-0.0174102783203125,
0.053070068359375,
0.0206451416015625,
0.0229034423828125,
-0.004657745361328125,
-0.005191802978515625,
-0.025146484375,
-0.0216827392578125,
-0.02117919921875,
0.0194091796875,
0.0205230712890625,
-0.057373046875,
0.041229248046875,
0.0006628036499023438,
0.04510498046875,
0.0114288330078125,
0.034423828125,
0.051971435546875,
-0.020751953125,
0.00014841556549072266,
0.0017576217651367188,
0.035858154296875,
0.039459228515625,
0.0301666259765625,
0.0197296142578125,
0.012237548828125,
0.007904052734375,
0.0049285888671875,
-0.0811767578125,
-0.052490234375,
0.0100555419921875,
-0.03363037109375,
-0.03179931640625,
0.029632568359375,
-0.07427978515625,
-0.04833984375,
-0.0157928466796875,
0.00033354759216308594,
0.006259918212890625,
-0.046722412109375,
-0.00586700439453125,
-0.0589599609375,
0.0185546875,
0.0182952880859375,
-0.0899658203125,
0.01343536376953125,
0.03143310546875,
0.03985595703125,
0.0040435791015625,
-0.01104736328125,
-0.035888671875,
0.0323486328125,
-0.00485992431640625,
0.056793212890625,
-0.050750732421875,
-0.0213623046875,
-0.004604339599609375,
0.032806396484375,
0.0059967041015625,
-0.01165771484375,
0.06475830078125,
-0.02008056640625,
-0.003032684326171875,
-0.043365478515625,
-0.03765869140625,
-0.00569915771484375,
0.0203857421875,
-0.091064453125,
0.061309814453125,
0.0282745361328125,
-0.06884765625,
0.039306640625,
-0.08892822265625,
-0.0236663818359375,
0.0526123046875,
-0.02587890625,
-0.029449462890625,
0.004062652587890625,
-0.014923095703125,
0.045013427734375,
-0.0089569091796875,
0.0170135498046875,
-0.05206298828125,
-0.0272064208984375,
0.016357421875,
0.0003521442413330078,
0.058837890625,
0.02349853515625,
0.0065460205078125,
-0.01242828369140625,
-0.076904296875,
-0.023406982421875,
0.035919189453125,
0.00778961181640625,
-0.041534423828125,
-0.02288818359375,
0.0261383056640625,
-0.0237884521484375,
0.02117919921875,
-0.033782958984375,
0.036285400390625,
0.00765228271484375,
-0.0010385513305664062,
0.045867919921875,
-0.0015153884887695312,
0.032012939453125,
-0.020843505859375,
0.0340576171875,
0.0101776123046875,
0.00508880615234375,
-0.00829315185546875,
-0.033355712890625,
-0.050384521484375,
-0.01197052001953125,
0.032012939453125,
0.05059814453125,
-0.049468994140625,
0.043792724609375,
-0.002254486083984375,
-0.04791259765625,
-0.00919342041015625,
-0.011138916015625,
0.022735595703125,
0.018035888671875,
0.01194000244140625,
-0.023956298828125,
-0.038055419921875,
-0.048431396484375,
0.0116729736328125,
-0.02923583984375,
-0.0026035308837890625,
0.016143798828125,
0.059478759765625,
-0.031585693359375,
0.03387451171875,
-0.06597900390625,
-0.040771484375,
0.01325225830078125,
-0.0178375244140625,
0.01462554931640625,
0.0439453125,
0.076416015625,
-0.06964111328125,
-0.025238037109375,
-0.0302734375,
-0.0404052734375,
-0.005832672119140625,
0.0211334228515625,
-0.0268402099609375,
-0.0099945068359375,
0.004589080810546875,
-0.00299835205078125,
0.060272216796875,
0.04949951171875,
-0.05401611328125,
-0.01039886474609375,
-0.0004849433898925781,
0.0295257568359375,
-0.10076904296875,
0.0185546875,
0.00762939453125,
0.006072998046875,
-0.038330078125,
-0.0108489990234375,
0.01186370849609375,
0.01453399658203125,
-0.0022754669189453125,
0.057220458984375,
-0.01739501953125,
0.0195465087890625,
-0.00176239013671875,
0.01386260986328125,
0.010467529296875,
0.01226043701171875,
0.0303497314453125,
0.0419921875,
0.06787109375,
-0.039154052734375,
0.0682373046875,
0.058807373046875,
0.0020771026611328125,
0.06964111328125,
-0.04547119140625,
-0.00047326087951660156,
-0.016876220703125,
0.004486083984375,
-0.053375244140625,
-0.054229736328125,
0.050140380859375,
-0.0233001708984375,
0.02142333984375,
-0.03265380859375,
-0.043731689453125,
-0.042999267578125,
-0.0206146240234375,
0.06536865234375,
0.0273284912109375,
-0.040618896484375,
0.017425537109375,
0.056793212890625,
-0.005908966064453125,
0.001934051513671875,
-0.088623046875,
0.010223388671875,
-0.02899169921875,
0.003147125244140625,
0.047454833984375,
-0.032196044921875,
-0.007610321044921875,
-0.03192138671875,
0.03387451171875,
-0.0310821533203125,
-0.00130462646484375,
0.036285400390625,
0.01343536376953125,
0.01317596435546875,
0.038909912109375,
-0.000125885009765625,
-0.05364990234375,
-0.0079345703125,
0.004596710205078125,
0.0040283203125,
-0.005420684814453125,
-0.010833740234375,
-0.0472412109375,
0.02679443359375,
0.0240936279296875,
-0.005718231201171875,
0.0260772705078125,
0.06689453125,
-0.042999267578125,
0.01029205322265625,
-0.019622802734375,
-0.004730224609375,
-0.0274810791015625,
0.008575439453125,
-0.035186767578125,
-0.039459228515625,
0.0340576171875,
0.00623321533203125,
-0.0263824462890625,
0.061370849609375,
0.06182861328125,
0.0031642913818359375,
0.0311126708984375,
0.0482177734375,
-0.005031585693359375,
0.053192138671875,
-0.0188446044921875,
-0.028564453125,
-0.0537109375,
-0.021148681640625,
-0.034027099609375,
-0.0156097412109375,
-0.058013916015625,
-0.0190277099609375,
-0.009002685546875,
-0.00673675537109375,
-0.00820159912109375,
0.0645751953125,
-0.076904296875,
0.0306549072265625,
0.05322265625,
0.0021228790283203125,
0.0166168212890625,
-0.0011339187622070312,
0.01290130615234375,
0.0090789794921875,
-0.0181884765625,
-0.0472412109375,
0.0804443359375,
0.034942626953125,
0.061004638671875,
0.02886962890625,
0.057586669921875,
0.028778076171875,
0.00606536865234375,
-0.02001953125,
0.0290069580078125,
-0.018402099609375,
-0.061187744140625,
-0.00893402099609375,
-0.0031452178955078125,
-0.05364990234375,
-0.045745849609375,
-0.0157318115234375,
-0.03424072265625,
0.041748046875,
0.0220947265625,
-0.016021728515625,
0.0109100341796875,
-0.047698974609375,
0.0736083984375,
-0.007312774658203125,
0.00034046173095703125,
0.0015659332275390625,
-0.034942626953125,
-0.004184722900390625,
-0.0018701553344726562,
-0.0015735626220703125,
-0.033477783203125,
-0.0185546875,
0.0677490234375,
-0.0126495361328125,
0.07012939453125,
-0.03631591796875,
-0.0235595703125,
0.01036834716796875,
-0.015899658203125,
0.0006551742553710938,
0.0404052734375,
-0.027557373046875,
0.0157928466796875,
0.038665771484375,
-0.036712646484375,
-0.0135345458984375,
0.0491943359375,
-0.03094482421875,
0.020660400390625,
-0.05340576171875,
-0.0229339599609375,
0.019927978515625,
0.0193328857421875,
0.0183563232421875,
0.05572509765625,
-0.039459228515625,
-0.0186614990234375,
0.045562744140625,
0.01678466796875,
0.039306640625,
0.03094482421875,
-0.01279449462890625,
-0.039520263671875,
0.06536865234375,
0.0005083084106445312,
-0.014495849609375,
0.032318115234375,
0.0207672119140625,
-0.012939453125,
-0.037689208984375,
-0.0579833984375,
-0.0004456043243408203,
-0.0325927734375,
-0.0257415771484375,
-0.020721435546875,
-0.01678466796875,
-0.0306243896484375,
-0.0030956268310546875,
0.0005931854248046875,
-0.05059814453125,
-0.06756591796875,
-0.03826904296875,
0.092041015625,
0.0557861328125,
-0.0276336669921875,
0.033905029296875,
-0.0579833984375,
0.055633544921875,
0.01119232177734375,
0.07110595703125,
-0.027862548828125,
-0.037506103515625,
-0.0255889892578125,
0.0076904296875,
-0.00519561767578125,
-0.03973388671875,
-0.0016698837280273438,
0.0236358642578125,
0.03326416015625,
0.026275634765625,
0.01486968994140625,
0.04644775390625,
-0.0201416015625,
0.0428466796875,
0.00501251220703125,
-0.044830322265625,
0.056671142578125,
-0.0389404296875,
0.0300750732421875,
0.07666015625,
0.03350830078125,
-0.02264404296875,
0.00455474853515625,
-0.0479736328125,
-0.03179931640625,
0.0443115234375,
0.014984130859375,
0.0243682861328125,
-0.019775390625,
0.047088623046875,
0.0087890625,
0.01189422607421875,
-0.05462646484375,
-0.056976318359375,
0.0027790069580078125,
-0.040618896484375,
0.01413726806640625,
-0.048980712890625,
-0.0159912109375,
-0.0518798828125,
0.040863037109375,
-0.0115966796875,
0.0258941650390625,
0.015228271484375,
0.01546478271484375,
0.0034313201904296875,
-0.01036834716796875,
0.033050537109375,
0.0302886962890625,
-0.0318603515625,
-0.004047393798828125,
-0.021820068359375,
-0.059722900390625,
-0.006671905517578125,
0.044921875,
-0.0101318359375,
-0.01364898681640625,
0.0340576171875,
0.045989990234375,
-0.041290283203125,
-0.0178375244140625,
0.04180908203125,
-0.030609130859375,
-0.02569580078125,
-0.058441162109375,
0.01143646240234375,
-0.004894256591796875,
0.0116119384765625,
0.01525115966796875,
-0.0126800537109375,
0.0343017578125,
-0.0233612060546875,
0.0391845703125,
0.00002014636993408203,
-0.05224609375,
-0.030181884765625,
0.0335693359375,
0.045257568359375,
-0.02764892578125,
0.038299560546875,
-0.0226593017578125,
-0.0237884521484375,
0.039306640625,
0.005947113037109375,
0.06488037109375,
-0.006649017333984375,
0.025238037109375,
0.035400390625,
-0.00832366943359375,
0.0183258056640625,
0.051361083984375,
-0.0307769775390625,
-0.049285888671875,
0.01207733154296875,
-0.03936767578125,
-0.018951416015625,
-0.03912353515625,
-0.0723876953125,
0.030181884765625,
-0.037841796875,
-0.0298004150390625,
0.0179595947265625,
0.01122283935546875,
-0.04974365234375,
0.0205230712890625,
0.02447509765625,
0.07452392578125,
-0.058074951171875,
0.06964111328125,
0.04638671875,
-0.04754638671875,
-0.0217132568359375,
-0.00824737548828125,
0.01026153564453125,
-0.053375244140625,
0.025848388671875,
0.017242431640625,
0.0211944580078125,
-0.0019817352294921875,
-0.037567138671875,
-0.041748046875,
0.0899658203125,
0.0064239501953125,
-0.0638427734375,
0.005634307861328125,
-0.003711700439453125,
0.035888671875,
-0.031768798828125,
0.034942626953125,
0.0428466796875,
0.0621337890625,
0.0222320556640625,
-0.050689697265625,
0.004711151123046875,
-0.03826904296875,
-0.01122283935546875,
0.0203857421875,
-0.036590576171875,
0.0078277587890625,
-0.01114654541015625,
-0.01727294921875,
0.034423828125,
0.0305938720703125,
-0.0003294944763183594,
0.036407470703125,
0.027252197265625,
0.053955078125,
0.057037353515625,
-0.03045654296875,
0.058074951171875,
-0.0009617805480957031,
0.0262603759765625,
0.07830810546875,
-0.018402099609375,
0.02301025390625,
0.039215087890625,
-0.01373291015625,
0.042694091796875,
0.04229736328125,
-0.055419921875,
0.044769287109375,
0.030120849609375,
-0.0205841064453125,
-0.003269195556640625,
-0.018524169921875,
-0.03887939453125,
0.0265960693359375,
0.03045654296875,
-0.050323486328125,
0.0079193115234375,
-0.00035262107849121094,
-0.0013914108276367188,
0.0173797607421875,
-0.024993896484375,
0.07666015625,
-0.004932403564453125,
-0.0087127685546875,
0.00951385498046875,
-0.0201416015625,
0.023223876953125,
-0.0328369140625,
-0.035125732421875,
0.01146697998046875,
0.032073974609375,
-0.024169921875,
-0.083251953125,
0.0557861328125,
-0.009033203125,
-0.036285400390625,
-0.0210723876953125,
0.0277252197265625,
-0.038787841796875,
-0.07012939453125,
0.030487060546875,
0.00481414794921875,
0.018768310546875,
0.0054779052734375,
-0.07928466796875,
0.0206756591796875,
-0.01206207275390625,
0.0018739700317382812,
0.004665374755859375,
0.035675048828125,
0.0038051605224609375,
0.03143310546875,
0.023101806640625,
-0.007781982421875,
-0.042144775390625,
0.040252685546875,
0.057373046875,
-0.06988525390625,
-0.006420135498046875,
-0.06622314453125,
0.046234130859375,
-0.0301666259765625,
-0.0404052734375,
0.044952392578125,
0.055633544921875,
0.062255859375,
-0.010223388671875,
0.048583984375,
-0.03375244140625,
0.05194091796875,
-0.00870513916015625,
0.055084228515625,
-0.0245513916015625,
-0.0139617919921875,
-0.049224853515625,
-0.048065185546875,
-0.06280517578125,
0.037567138671875,
0.01282501220703125,
-0.00020265579223632812,
0.037811279296875,
0.05450439453125,
0.0077056884765625,
-0.00015926361083984375,
0.0020198822021484375,
-0.003185272216796875,
0.01480865478515625,
0.0303192138671875,
0.028961181640625,
-0.054290771484375,
0.0145721435546875,
-0.01126861572265625,
-0.05389404296875,
0.005672454833984375,
-0.09161376953125,
-0.0782470703125,
-0.07391357421875,
-0.0545654296875,
-0.028350830078125,
-0.01068878173828125,
0.036224365234375,
0.05548095703125,
-0.07427978515625,
-0.006717681884765625,
-0.008514404296875,
0.01561737060546875,
0.005847930908203125,
-0.00690460205078125,
0.036956787109375,
0.03948974609375,
-0.06317138671875,
-0.0242156982421875,
0.004547119140625,
0.048126220703125,
-0.007579803466796875,
0.007049560546875,
-0.0192108154296875,
-0.0181884765625,
0.0166015625,
0.013153076171875,
-0.0203094482421875,
-0.01107025146484375,
-0.03399658203125,
-0.0031108856201171875,
-0.01064300537109375,
0.054962158203125,
-0.0396728515625,
0.0257415771484375,
0.035003662109375,
0.0190277099609375,
0.04107666015625,
0.0048980712890625,
0.04339599609375,
-0.0230255126953125,
0.0201568603515625,
-0.00907135009765625,
0.0254364013671875,
0.0203857421875,
-0.0303497314453125,
0.06005859375,
0.0287017822265625,
-0.033935546875,
-0.03497314453125,
0.019622802734375,
-0.1021728515625,
0.0257415771484375,
0.06903076171875,
0.006053924560546875,
-0.023956298828125,
-0.002040863037109375,
-0.03314208984375,
0.0064849853515625,
-0.052490234375,
0.01470947265625,
0.03814697265625,
0.0244293212890625,
-0.010711669921875,
-0.0028820037841796875,
0.051361083984375,
-0.0301666259765625,
-0.057708740234375,
0.0286407470703125,
0.035430908203125,
0.003955841064453125,
0.024810791015625,
0.060882568359375,
-0.0224609375,
0.00803375244140625,
0.00614166259765625,
0.02142333984375,
-0.0128021240234375,
-0.0404052734375,
-0.027740478515625,
-0.02667236328125,
0.00006490945816040039,
-0.04254150390625
]
] |
liar | 2023-01-25T14:34:21.000Z | [
"task_categories:text-classification",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:en",
"license:unknown",
"fake-news-detection",
"arxiv:1705.00648",
"region:us"
] | null | LIAR is a dataset for fake news detection with 12.8K human labeled short statements from politifact.com's API, and each statement is evaluated by a politifact.com editor for its truthfulness. The distribution of labels in the LIAR dataset is relatively well-balanced: except for 1,050 pants-fire cases, the instances for all other labels range from 2,063 to 2,638. In each case, the labeler provides a lengthy analysis report to ground each judgment. | @inproceedings{wang-2017-liar,
title = "{``}Liar, Liar Pants on Fire{''}: A New Benchmark Dataset for Fake News Detection",
author = "Wang, William Yang",
booktitle = "Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers)",
month = jul,
year = "2017",
address = "Vancouver, Canada",
publisher = "Association for Computational Linguistics",
url = "https://www.aclweb.org/anthology/P17-2067",
doi = "10.18653/v1/P17-2067",
pages = "422--426",
abstract = "Automatic fake news detection is a challenging problem in deception detection, and it has tremendous real-world political and social impacts. However, statistical approaches to combating fake news has been dramatically limited by the lack of labeled benchmark datasets. In this paper, we present LIAR: a new, publicly available dataset for fake news detection. We collected a decade-long, 12.8K manually labeled short statements in various contexts from PolitiFact.com, which provides detailed analysis report and links to source documents for each case. This dataset can be used for fact-checking research as well. Notably, this new dataset is an order of magnitude larger than previously largest public fake news datasets of similar type. Empirically, we investigate automatic fake news detection based on surface-level linguistic patterns. We have designed a novel, hybrid convolutional neural network to integrate meta-data with text. We show that this hybrid approach can improve a text-only deep learning model.",
} | 6 | 934 | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- found
language:
- en
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- text-classification
task_ids: []
paperswithcode_id: liar
pretty_name: LIAR
tags:
- fake-news-detection
dataset_info:
features:
- name: id
dtype: string
- name: label
dtype:
class_label:
names:
'0': 'false'
'1': half-true
'2': mostly-true
'3': 'true'
'4': barely-true
'5': pants-fire
- name: statement
dtype: string
- name: subject
dtype: string
- name: speaker
dtype: string
- name: job_title
dtype: string
- name: state_info
dtype: string
- name: party_affiliation
dtype: string
- name: barely_true_counts
dtype: float32
- name: false_counts
dtype: float32
- name: half_true_counts
dtype: float32
- name: mostly_true_counts
dtype: float32
- name: pants_on_fire_counts
dtype: float32
- name: context
dtype: string
splits:
- name: train
num_bytes: 2730651
num_examples: 10269
- name: test
num_bytes: 341414
num_examples: 1283
- name: validation
num_bytes: 341592
num_examples: 1284
download_size: 1013571
dataset_size: 3413657
train-eval-index:
- config: default
task: text-classification
task_id: multi_class_classification
splits:
train_split: train
eval_split: test
col_mapping:
statement: text
label: target
metrics:
- type: accuracy
name: Accuracy
- type: f1
name: F1 macro
args:
average: macro
- type: f1
name: F1 micro
args:
average: micro
- type: f1
name: F1 weighted
args:
average: weighted
- type: precision
name: Precision macro
args:
average: macro
- type: precision
name: Precision micro
args:
average: micro
- type: precision
name: Precision weighted
args:
average: weighted
- type: recall
name: Recall macro
args:
average: macro
- type: recall
name: Recall micro
args:
average: micro
- type: recall
name: Recall weighted
args:
average: weighted
---
# Dataset Card for [Dataset Name]
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** https://sites.cs.ucsb.edu/~william/
- **Repository:**
- **Paper:** https://arxiv.org/abs/1705.00648
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
LIAR is a dataset for fake news detection with 12.8K human labeled short statements from politifact.com's API, and each statement is evaluated by a politifact.com editor for its truthfulness. The distribution of labels in the LIAR dataset is relatively well-balanced: except for 1,050 pants-fire cases, the instances for all other labels range from 2,063 to 2,638. In each case, the labeler provides a lengthy analysis report to ground each judgment.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
English.
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
[More Information Needed]
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
[More Information Needed]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
[More Information Needed]
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[More Information Needed]
### Citation Information
[More Information Needed]
### Contributions
Thanks to [@hugoabonizio](https://github.com/hugoabonizio) for adding this dataset. | 5,159 | [
[
-0.0258331298828125,
-0.03778076171875,
0.0200042724609375,
0.01751708984375,
-0.0068359375,
0.0149993896484375,
-0.01447296142578125,
-0.021270751953125,
0.0292816162109375,
0.040130615234375,
-0.055450439453125,
-0.07666015625,
-0.05352783203125,
0.004913330078125,
-0.018096923828125,
0.0989990234375,
0.00890350341796875,
-0.006641387939453125,
-0.01340484619140625,
-0.0188446044921875,
-0.0252227783203125,
-0.039093017578125,
-0.017120361328125,
-0.01186370849609375,
0.0321044921875,
0.055511474609375,
0.06109619140625,
0.060699462890625,
0.03485107421875,
0.0185699462890625,
0.0020294189453125,
0.0067596435546875,
-0.05010986328125,
-0.0188446044921875,
-0.0172271728515625,
-0.02142333984375,
-0.047271728515625,
0.0303497314453125,
0.040679931640625,
0.048828125,
0.0002894401550292969,
0.06170654296875,
0.00182342529296875,
0.046234130859375,
-0.044677734375,
0.042449951171875,
-0.01776123046875,
-0.003734588623046875,
-0.02569580078125,
0.0081329345703125,
-0.0220184326171875,
-0.05230712890625,
-0.0019445419311523438,
-0.047149658203125,
0.017364501953125,
0.0011281967163085938,
0.06427001953125,
0.00896453857421875,
-0.0214080810546875,
-0.026458740234375,
-0.04229736328125,
0.050689697265625,
-0.055389404296875,
-0.0028591156005859375,
0.046356201171875,
0.0233001708984375,
0.01320648193359375,
-0.06817626953125,
-0.0426025390625,
0.0181121826171875,
-0.0184326171875,
0.01593017578125,
-0.01190185546875,
-0.0235748291015625,
0.041107177734375,
0.02923583984375,
-0.040618896484375,
-0.0150146484375,
-0.0426025390625,
-0.0294647216796875,
0.0645751953125,
0.0180206298828125,
0.005191802978515625,
-0.036102294921875,
-0.00750732421875,
-0.01824951171875,
-0.030120849609375,
0.0028247833251953125,
0.045623779296875,
0.030303955078125,
-0.047149658203125,
0.058563232421875,
-0.020477294921875,
0.03485107421875,
-0.01087188720703125,
-0.018218994140625,
0.058197021484375,
-0.047454833984375,
0.0026035308837890625,
0.001972198486328125,
0.054351806640625,
0.045623779296875,
0.002170562744140625,
0.01374053955078125,
-0.005016326904296875,
0.01000213623046875,
-0.002155303955078125,
-0.05621337890625,
-0.0283050537109375,
0.03424072265625,
-0.056304931640625,
-0.037567138671875,
0.022674560546875,
-0.07440185546875,
-0.0238800048828125,
-0.025238037109375,
0.01410675048828125,
-0.00736236572265625,
-0.0190582275390625,
-0.00725555419921875,
-0.020233154296875,
0.0197296142578125,
-0.0006613731384277344,
-0.0305633544921875,
0.029571533203125,
0.041046142578125,
0.055023193359375,
-0.007732391357421875,
-0.0033092498779296875,
-0.020843505859375,
0.0166473388671875,
-0.01166534423828125,
0.044647216796875,
-0.031524658203125,
-0.0238037109375,
0.01274871826171875,
0.02197265625,
0.01251220703125,
-0.02276611328125,
0.0703125,
-0.01105499267578125,
0.043701171875,
-0.056884765625,
-0.041046142578125,
-0.01425933837890625,
0.013916015625,
-0.06817626953125,
0.08929443359375,
0.00762939453125,
-0.06298828125,
0.0245513916015625,
-0.0675048828125,
-0.026458740234375,
0.00473785400390625,
-0.0142669677734375,
-0.0494384765625,
-0.0261993408203125,
0.00902557373046875,
0.03857421875,
-0.02325439453125,
0.0275115966796875,
-0.0147552490234375,
-0.014678955078125,
0.0196685791015625,
-0.023895263671875,
0.1016845703125,
0.0131072998046875,
-0.03350830078125,
0.0027923583984375,
-0.07000732421875,
-0.00479888916015625,
0.0187530517578125,
-0.0175323486328125,
0.00199127197265625,
-0.002727508544921875,
0.022064208984375,
0.01274871826171875,
0.03082275390625,
-0.030426025390625,
0.00937652587890625,
-0.003940582275390625,
0.021575927734375,
0.05377197265625,
0.00782012939453125,
0.0252685546875,
-0.03857421875,
0.025543212890625,
0.00595855712890625,
0.03790283203125,
0.006519317626953125,
-0.05267333984375,
-0.06103515625,
-0.01331329345703125,
0.0283203125,
0.0567626953125,
-0.046844482421875,
0.05926513671875,
-0.034271240234375,
-0.044647216796875,
-0.0364990234375,
-0.0008249282836914062,
0.03472900390625,
0.039794921875,
0.0269012451171875,
-0.01534271240234375,
-0.04632568359375,
-0.0736083984375,
-0.002346038818359375,
-0.0165863037109375,
0.00836181640625,
0.03594970703125,
0.07025146484375,
0.0006842613220214844,
0.07012939453125,
-0.0540771484375,
-0.021331787109375,
-0.020416259765625,
0.01027679443359375,
0.031005859375,
0.026153564453125,
0.0447998046875,
-0.07611083984375,
-0.040985107421875,
-0.03485107421875,
-0.055023193359375,
-0.0159454345703125,
-0.0035915374755859375,
-0.013946533203125,
0.01407623291015625,
0.007965087890625,
-0.027130126953125,
0.05126953125,
0.046661376953125,
-0.054779052734375,
0.049041748046875,
0.016082763671875,
0.0073089599609375,
-0.08551025390625,
0.01041412353515625,
0.0008320808410644531,
-0.005794525146484375,
-0.043670654296875,
-0.0311431884765625,
-0.00551605224609375,
0.001739501953125,
-0.03070068359375,
0.04058837890625,
-0.01959228515625,
-0.0014219284057617188,
0.007556915283203125,
0.003971099853515625,
0.01062774658203125,
0.031890869140625,
-0.0164031982421875,
0.045684814453125,
0.048004150390625,
-0.034027099609375,
0.040130615234375,
0.037750244140625,
-0.0283050537109375,
0.04046630859375,
-0.054229736328125,
-0.0007123947143554688,
-0.020416259765625,
0.0254974365234375,
-0.07232666015625,
-0.036651611328125,
0.054595947265625,
-0.048614501953125,
-0.00848388671875,
-0.00684356689453125,
-0.059295654296875,
-0.032257080078125,
-0.03387451171875,
0.00382232666015625,
0.0304718017578125,
-0.020904541015625,
0.029937744140625,
0.04742431640625,
0.004940032958984375,
-0.043426513671875,
-0.0577392578125,
0.00171661376953125,
-0.01104736328125,
-0.03643798828125,
0.032989501953125,
-0.02569580078125,
-0.016998291015625,
0.0167694091796875,
0.0103912353515625,
-0.004688262939453125,
-0.01181793212890625,
0.025726318359375,
0.0210113525390625,
-0.0034942626953125,
0.001483917236328125,
-0.0158233642578125,
-0.004192352294921875,
0.00390625,
0.0010652542114257812,
0.0258636474609375,
-0.01338958740234375,
-0.016876220703125,
-0.03729248046875,
0.0308990478515625,
0.0183258056640625,
-0.00817108154296875,
0.06915283203125,
0.06524658203125,
-0.02740478515625,
0.0028896331787109375,
-0.043212890625,
-0.014404296875,
-0.031829833984375,
0.0096893310546875,
-0.0033206939697265625,
-0.03448486328125,
0.060943603515625,
0.015289306640625,
0.01232147216796875,
0.04376220703125,
0.044921875,
0.0035495758056640625,
0.056182861328125,
0.04071044921875,
-0.0240631103515625,
0.0269927978515625,
-0.041900634765625,
0.003734588623046875,
-0.034454345703125,
-0.032501220703125,
-0.04534912109375,
-0.034393310546875,
-0.0606689453125,
-0.037078857421875,
0.00203704833984375,
-0.010589599609375,
-0.0219268798828125,
0.0290679931640625,
-0.048187255859375,
0.03564453125,
0.05914306640625,
0.01244354248046875,
0.01328277587890625,
-0.0012826919555664062,
0.00707244873046875,
-0.006866455078125,
-0.050140380859375,
-0.04913330078125,
0.0889892578125,
0.0301971435546875,
0.027740478515625,
0.01375579833984375,
0.042755126953125,
0.031463623046875,
0.0237274169921875,
-0.035125732421875,
0.048248291015625,
-0.0188140869140625,
-0.0687255859375,
-0.02642822265625,
-0.02569580078125,
-0.052947998046875,
-0.01294708251953125,
-0.0228424072265625,
-0.034088134765625,
0.037750244140625,
0.0073394775390625,
-0.013214111328125,
0.01552581787109375,
-0.050811767578125,
0.06689453125,
-0.00806427001953125,
-0.01837158203125,
0.00601959228515625,
-0.0634765625,
0.00806427001953125,
0.01033782958984375,
0.037567138671875,
-0.024932861328125,
-0.0051422119140625,
0.0770263671875,
-0.024810791015625,
0.0928955078125,
-0.0177764892578125,
0.0214080810546875,
0.033721923828125,
-0.032562255859375,
0.041412353515625,
0.005161285400390625,
-0.0118255615234375,
0.0286407470703125,
-0.010101318359375,
-0.029815673828125,
-0.0289154052734375,
0.03564453125,
-0.0576171875,
-0.01132965087890625,
-0.042816162109375,
-0.0333251953125,
0.007274627685546875,
0.025146484375,
0.024627685546875,
0.021728515625,
-0.01091766357421875,
0.033294677734375,
0.046142578125,
-0.0205230712890625,
0.0192718505859375,
0.036468505859375,
-0.00672149658203125,
-0.0465087890625,
0.064453125,
0.039031982421875,
0.0024433135986328125,
0.00848388671875,
0.01041412353515625,
-0.0256500244140625,
-0.014251708984375,
-0.00750732421875,
0.022216796875,
-0.05419921875,
-0.018463134765625,
-0.0290985107421875,
-0.027557373046875,
-0.0513916015625,
0.005901336669921875,
-0.01849365234375,
-0.04010009765625,
-0.0321044921875,
-0.02899169921875,
0.0433349609375,
0.04046630859375,
-0.031890869140625,
0.0252227783203125,
-0.0311279296875,
0.040740966796875,
0.00963592529296875,
0.04095458984375,
-0.02117919921875,
-0.0307769775390625,
-0.0241546630859375,
0.018524169921875,
-0.02984619140625,
-0.0758056640625,
0.0248565673828125,
0.01323699951171875,
0.056793212890625,
0.01340484619140625,
0.025360107421875,
0.0298004150390625,
-0.018646240234375,
0.0802001953125,
0.0011806488037109375,
-0.046295166015625,
0.046905517578125,
-0.033447265625,
0.00878143310546875,
0.048248291015625,
0.046112060546875,
-0.034454345703125,
-0.00949859619140625,
-0.069580078125,
-0.07220458984375,
0.052490234375,
0.03436279296875,
0.01221466064453125,
-0.007274627685546875,
0.0194549560546875,
0.0006895065307617188,
0.0240020751953125,
-0.07611083984375,
-0.0828857421875,
-0.0268096923828125,
-0.0268096923828125,
-0.0002294778823852539,
-0.0279541015625,
-0.03680419921875,
-0.033721923828125,
0.0604248046875,
-0.0013723373413085938,
0.0252685546875,
-0.0009765625,
0.01291656494140625,
0.005603790283203125,
0.006656646728515625,
0.027099609375,
0.0557861328125,
-0.017486572265625,
-0.0088958740234375,
-0.0081634521484375,
-0.04644775390625,
-0.0118408203125,
0.00977325439453125,
-0.03472900390625,
0.013702392578125,
0.022064208984375,
0.06756591796875,
0.004375457763671875,
-0.0289154052734375,
0.05902099609375,
0.0024280548095703125,
-0.0272369384765625,
-0.0552978515625,
-0.00957489013671875,
-0.0036602020263671875,
0.021636962890625,
0.03387451171875,
-0.0068511962890625,
0.01393890380859375,
-0.040130615234375,
0.029144287109375,
0.00862884521484375,
-0.0164337158203125,
-0.0178375244140625,
0.04083251953125,
0.012786865234375,
-0.0264129638671875,
0.040618896484375,
-0.0168304443359375,
-0.0294189453125,
0.04998779296875,
0.017913818359375,
0.048431396484375,
-0.004791259765625,
0.056884765625,
0.042449951171875,
0.03680419921875,
-0.013763427734375,
0.0478515625,
0.014434814453125,
-0.054351806640625,
-0.0246429443359375,
-0.032257080078125,
-0.0225830078125,
0.0207977294921875,
-0.061309814453125,
0.0311737060546875,
-0.037078857421875,
-0.028045654296875,
0.006160736083984375,
0.02001953125,
-0.067138671875,
0.0188140869140625,
0.007343292236328125,
0.06536865234375,
-0.0828857421875,
0.0439453125,
0.034027099609375,
-0.0523681640625,
-0.05517578125,
-0.0110931396484375,
0.02593994140625,
-0.040252685546875,
0.0294189453125,
0.0020236968994140625,
0.0360107421875,
-0.012115478515625,
-0.0709228515625,
-0.06890869140625,
0.09173583984375,
0.02398681640625,
-0.01739501953125,
0.0105743408203125,
0.035858154296875,
0.03778076171875,
-0.039031982421875,
0.0024394989013671875,
0.046783447265625,
0.059600830078125,
0.0099945068359375,
-0.0465087890625,
0.0089111328125,
-0.025970458984375,
-0.01468658447265625,
-0.0185699462890625,
-0.053070068359375,
0.057586669921875,
-0.002536773681640625,
-0.0146636962890625,
-0.017486572265625,
0.0479736328125,
0.02044677734375,
0.032318115234375,
0.0261993408203125,
0.041595458984375,
0.06488037109375,
-0.021331787109375,
0.07318115234375,
-0.0220184326171875,
0.031341552734375,
0.09771728515625,
0.0085906982421875,
0.05126953125,
0.016021728515625,
-0.0186004638671875,
0.047698974609375,
0.0428466796875,
-0.031890869140625,
0.03314208984375,
0.0006361007690429688,
0.0015964508056640625,
-0.005023956298828125,
-0.029144287109375,
-0.032318115234375,
0.03167724609375,
0.03167724609375,
-0.0404052734375,
-0.0019178390502929688,
-0.0093536376953125,
0.018707275390625,
0.0026302337646484375,
-0.021484375,
0.04693603515625,
-0.01190185546875,
-0.0166473388671875,
0.0184173583984375,
-0.01175689697265625,
0.035064697265625,
-0.029998779296875,
-0.01200103759765625,
-0.0109405517578125,
-0.00695037841796875,
-0.036651611328125,
-0.086181640625,
0.0292205810546875,
-0.005298614501953125,
-0.04400634765625,
-0.0225982666015625,
0.046295166015625,
-0.031402587890625,
-0.0606689453125,
0.007801055908203125,
0.0272674560546875,
0.0143890380859375,
0.01267242431640625,
-0.07623291015625,
0.0281829833984375,
0.00897979736328125,
-0.0297088623046875,
0.00305938720703125,
0.0290069580078125,
-0.0012969970703125,
0.037567138671875,
0.051666259765625,
0.014801025390625,
0.007724761962890625,
0.0195465087890625,
0.06610107421875,
-0.0419921875,
-0.0309295654296875,
-0.03619384765625,
0.06085205078125,
-0.04437255859375,
-0.0260467529296875,
0.065673828125,
0.05914306640625,
0.06781005859375,
0.0011072158813476562,
0.07806396484375,
-0.038787841796875,
0.070556640625,
-0.01323699951171875,
0.05865478515625,
-0.023529052734375,
0.0108795166015625,
-0.0273284912109375,
-0.06927490234375,
-0.0224456787109375,
0.04962158203125,
-0.034942626953125,
0.00539398193359375,
0.029388427734375,
0.06341552734375,
0.005908966064453125,
0.002338409423828125,
0.004314422607421875,
0.04534912109375,
0.01678466796875,
0.01074981689453125,
0.02020263671875,
-0.055755615234375,
0.055938720703125,
-0.047210693359375,
-0.018707275390625,
-0.006778717041015625,
-0.07379150390625,
-0.061004638671875,
-0.060333251953125,
-0.0494384765625,
-0.0460205078125,
0.00194549560546875,
0.054901123046875,
0.047271728515625,
-0.0751953125,
-0.0194244384765625,
0.02349853515625,
0.019500732421875,
-0.011627197265625,
-0.0229034423828125,
0.0396728515625,
0.017822265625,
-0.0467529296875,
-0.0139312744140625,
-0.006847381591796875,
-0.0026397705078125,
-0.0186614990234375,
-0.01412200927734375,
-0.0194244384765625,
-0.00278472900390625,
0.037506103515625,
0.024688720703125,
-0.043548583984375,
-0.032257080078125,
-0.001712799072265625,
-0.005657196044921875,
-0.00490570068359375,
0.0294189453125,
-0.0401611328125,
0.01375579833984375,
0.044219970703125,
0.013824462890625,
0.0292816162109375,
0.006526947021484375,
0.01390838623046875,
-0.067138671875,
0.00896453857421875,
0.0177459716796875,
0.0103302001953125,
0.028076171875,
-0.037353515625,
0.05474853515625,
0.0290985107421875,
-0.038848876953125,
-0.064453125,
-0.002368927001953125,
-0.08331298828125,
-0.007965087890625,
0.10040283203125,
0.0024814605712890625,
-0.017425537109375,
-0.03057861328125,
-0.0088348388671875,
0.0218505859375,
-0.046661376953125,
0.0513916015625,
0.0675048828125,
0.004993438720703125,
-0.006984710693359375,
-0.05279541015625,
0.045318603515625,
-0.020660400390625,
-0.067138671875,
0.005962371826171875,
0.044647216796875,
0.0211181640625,
0.0258636474609375,
0.055511474609375,
-0.0165557861328125,
0.0075531005859375,
0.0011606216430664062,
0.0052337646484375,
0.0005559921264648438,
-0.0267486572265625,
0.01094818115234375,
0.004974365234375,
-0.0306396484375,
-0.0133209228515625
]
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.