id
stringlengths
2
115
author
stringlengths
2
42
last_modified
timestamp[us, tz=UTC]
downloads
int64
0
8.87M
likes
int64
0
3.84k
paperswithcode_id
stringlengths
2
45
tags
list
lastModified
timestamp[us, tz=UTC]
createdAt
stringlengths
24
24
key
stringclasses
1 value
created
timestamp[us]
card
stringlengths
1
1.01M
embedding
list
library_name
stringclasses
21 values
pipeline_tag
stringclasses
27 values
mask_token
null
card_data
null
widget_data
null
model_index
null
config
null
transformers_info
null
spaces
null
safetensors
null
transformersInfo
null
modelId
stringlengths
5
111
embeddings
list
NbAiLab/norne
NbAiLab
2022-11-07T12:41:46Z
233
3
null
[ "task_categories:token-classification", "task_ids:named-entity-recognition", "task_ids:part-of-speech", "annotations_creators:expert-generated", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:no", "license:other", "structure-prediction", "arxiv:1911.12146", "region:us" ]
2022-11-07T12:41:46Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - crowdsourced language: - 'no' license: - other multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - token-classification task_ids: - named-entity-recognition - part-of-speech tags: - structure-prediction --- # Dataset Card for NorNE: Norwegian Named Entities ## 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-instances) - [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) ## Dataset Description - **Homepage:** [NorNE](https://github.com/ltgoslo/norne/) - **Repository:** [Github](https://github.com/ltgoslo/norne/) - **Paper:** https://arxiv.org/abs/1911.12146 - **Leaderboard:** - **Point of Contact:** ### Dataset Summary NorNE is a manually annotated corpus of named entities which extends the annotation of the existing Norwegian Dependency Treebank. Comprising both of the official standards of written Norwegian (Bokmål and Nynorsk), the corpus contains around 600,000 tokens and annotates a rich set of entity types including persons,organizations, locations, geo-political entities, products, and events, in addition to a class corresponding to nominals derived from names. ### Supported Tasks and Leaderboards NorNE ads named entity annotations on top of the Norwegian Dependency Treebank. ### Languages Both Norwegian Bokmål (`bokmaal`) and Nynorsk (`nynorsk`) are supported as different configs in this dataset. An extra config for the combined languages is also included (`combined`). See the Annotation section for details on accessing reduced tag sets for the NER feature. ## Dataset Structure Each entry contains text sentences, their language, identifiers, tokens, lemmas, and corresponding NER and POS tag lists. ### Data Instances An example of the `train` split of the `bokmaal` config. ```python {'idx': '000001', 'lang': 'bokmaal', 'lemmas': ['lam', 'og', 'piggvar', 'på', 'bryllupsmeny'], 'ner_tags': [0, 0, 0, 0, 0], 'pos_tags': [0, 9, 0, 5, 0], 'text': 'Lam og piggvar på bryllupsmenyen', 'tokens': ['Lam', 'og', 'piggvar', 'på', 'bryllupsmenyen']} ``` ### Data Fields Each entry is annotated with the next fields: - `idx` (`int`), text (sentence) identifier from the NorNE dataset - `lang` (`str`), language variety, either `bokmaal`, `nynorsk` or `combined` - `text` (`str`), plain text - `tokens` (`List[str]`), list of tokens extracted from `text` - `lemmas` (`List[str]`), list of lemmas extracted from `tokens` - `ner_tags` (`List[int]`), list of numeric NER tags for each token in `tokens` - `pos_tags` (`List[int]`), list of numeric PoS tags for each token in `tokens` An example DataFrame obtained from the dataset: <table class="dataframe" border="1"> <thead> <tr style="text-align: right;"> <th></th> <th>idx</th> <th>lang</th> <th>text</th> <th>tokens</th> <th>lemmas</th> <th>ner_tags</th> <th>pos_tags</th> </tr> </thead> <tbody> <tr> <th>0</th> <td>000001</td> <td>bokmaal</td> <td>Lam og piggvar på bryllupsmenyen</td> <td>[Lam, og, piggvar, på, bryllupsmenyen]</td> <td>[lam, og, piggvar, på, bryllupsmeny]</td> <td>[0, 0, 0, 0, 0]</td> <td>[0, 9, 0, 5, 0]</td> </tr> <tr> <th>1</th> <td>000002</td> <td>bokmaal</td> <td>Kamskjell, piggvar og lammefilet sto på menyen...</td> <td>[Kamskjell, ,, piggvar, og, lammefilet, sto, p...</td> <td>[kamskjell, $,, piggvar, og, lammefilet, stå, ...</td> <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]</td> <td>[0, 1, 0, 9, 0, 15, 2, 0, 2, 8, 6, 0, 1]</td> </tr> <tr> <th>2</th> <td>000003</td> <td>bokmaal</td> <td>Og til dessert: Parfait à la Mette-Marit.</td> <td>[Og, til, dessert, :, Parfait, à, la, Mette-Ma...</td> <td>[og, til, dessert, $:, Parfait, à, la, Mette-M...</td> <td>[0, 0, 0, 0, 7, 8, 8, 8, 0]</td> <td>[9, 2, 0, 1, 10, 12, 12, 10, 1]</td> </tr> </tbody> </table> ### Data Splits There are three splits: `train`, `validation` and `test`. | Config | Split | Total | | :---------|-------------:|-------:| | `bokmaal` | `train` | 15696 | | `bokmaal` | `validation` | 2410 | | `bokmaal` | `test` | 1939 | | `nynorsk` | `train` | 14174 | | `nynorsk` | `validation` | 1890 | | `nynorsk` | `test` | 1511 | | `combined`| `test` | 29870 | | `combined`| `validation` | 4300 | | `combined`| `test` | 3450 | ## Dataset Creation ### Curation Rationale 1. A _name_ in this context is close to [Saul Kripke's definition of a name](https://en.wikipedia.org/wiki/Saul_Kripke#Naming_and_Necessity), in that a name has a unique reference and its meaning is constant (there are exceptions in the annotations, e.g. "Regjeringen" (en. "Government")). 2. It is the usage of a name that determines the entity type, not the default/literal sense of the name, 3. If there is an ambiguity in the type/sense of a name, then the the default/literal sense of the name is chosen (following [Markert and Nissim, 2002](http://www.lrec-conf.org/proceedings/lrec2002/pdf/11.pdf)). For more details, see the "Annotation Guidelines.pdf" distributed with the corpus. ### Source Data Data was collected using blogs and newspapers in Norwegian, as well as parliament speeches and governamental reports. #### Initial Data Collection and Normalization The texts in the Norwegian Dependency Treebank (NDT) are manually annotated with morphological features, syntactic functions and hierarchical structure. The formalism used for the syntactic annotation is dependency grammar. The treebanks consists of two parts, one part in Norwegian Bokmål (`nob`) and one part in Norwegian Nynorsk (`nno`). Both parts contain around 300.000 tokens, and are a mix of different non-fictional genres. See the [NDT webpage](https://www.nb.no/sprakbanken/show?serial=sbr-10) for more details. ### Annotations The following types of entities are annotated: - **Person (`PER`):** Real or fictional characters and animals - **Organization (`ORG`):** Any collection of people, such as firms, institutions, organizations, music groups, sports teams, unions, political parties etc. - **Location (`LOC`):** Geographical places, buildings and facilities - **Geo-political entity (`GPE`):** Geographical regions defined by political and/or social groups. A GPE entity subsumes and does not distinguish between a nation, its region, its government, or its people - **Product (`PROD`):** Artificially produced entities are regarded products. This may include more abstract entities, such as speeches, radio shows, programming languages, contracts, laws and ideas. - **Event (`EVT`):** Festivals, cultural events, sports events, weather phenomena, wars, etc. Events are bounded in time and space. - **Derived (`DRV`):** Words (and phrases?) that are dervied from a name, but not a name in themselves. They typically contain a full name and are capitalized, but are not proper nouns. Examples (fictive) are "Brann-treneren" ("the Brann coach") or "Oslo-mannen" ("the man from Oslo"). - **Miscellaneous (`MISC`):** Names that do not belong in the other categories. Examples are animals species and names of medical conditions. Entities that are manufactured or produced are of type Products, whereas thing naturally or spontaneously occurring are of type Miscellaneous. Furthermore, all `GPE` entities are additionally sub-categorized as being either `ORG` or `LOC`, with the two annotation levels separated by an underscore: - `GPE_LOC`: Geo-political entity, with a locative sense (e.g. "John lives in _Spain_") - `GPE_ORG`: Geo-political entity, with an organisation sense (e.g. "_Spain_ declined to meet with Belgium") The two special types `GPE_LOC` and `GPE_ORG` can easily be altered depending on the task, choosing either the more general `GPE` tag or the more specific `LOC`/`ORG` tags, conflating them with the other annotations of the same type. This means that the following sets of entity types can be derived: - 7 types, deleting `_GPE`: **`ORG`**, **`LOC`**, `PER`, `PROD`, `EVT`, `DRV`, `MISC` - 8 types, deleting `LOC_` and `ORG_`: **`ORG`**, **`LOC`**, **`GPE`**, `PER`, `PROD`, `EVT`, `DRV`, `MISC` - 9 types, keeping all types: **`ORG`**, **`LOC`**, **`GPE_LOC`**, **`GPE_ORG`**, `PER`, `PROD`, `EVT`, `DRV`, `MISC` The class distribution is as follows, broken down across the data splits of the UD version of NDT, and sorted by total counts (i.e. the number of examples, not tokens within the spans of the annotatons): | Type | Train | Dev | Test | Total | | :--------|-------:|-------:|-------:|-------:| | `PER` | 4033 | 607 | 560 | 5200 | | `ORG` | 2828 | 400 | 283 | 3511 | | `GPE_LOC`| 2132 | 258 | 257 | 2647 | | `PROD` | 671 | 162 | 71 | 904 | | `LOC` | 613 | 109 | 103 | 825 | | `GPE_ORG`| 388 | 55 | 50 | 493 | | `DRV` | 519 | 77 | 48 | 644 | | `EVT` | 131 | 9 | 5 | 145 | | `MISC` | 8 | 0 | 0 | 0 | To access these reduce versions of the dataset, you can use the configs `bokmaal-7`, `nynorsk-7`, `combined-7` for the NER tag set with 7 tags ( **`ORG`**, **`LOC`**, `PER`, `PROD`, `EVT`, `DRV`, `MISC`), and `bokmaal-8`, `nynorsk-8`, `combined-8` for the NER tag set with 8 tags (`LOC_` and `ORG_`: **`ORG`**, **`LOC`**, **`GPE`**, `PER`, `PROD`, `EVT`, `DRV`, `MISC`). By default, the full set (9 tags) will be used. ## Additional Information ### Dataset Curators NorNE was created as a collaboration between [Schibsted Media Group](https://schibsted.com/), [Språkbanken](https://www.nb.no/forskning/sprakbanken/) at the [National Library of Norway](https://www.nb.no) and the [Language Technology Group](https://www.mn.uio.no/ifi/english/research/groups/ltg/) at the University of Oslo. NorNE was added to Huggingface Datasets by the AI-Lab at the National Library of Norway. ### Licensing Information The NorNE corpus is published under the same [license](https://github.com/ltgoslo/norne/blob/master/LICENSE_NDT.txt) as the Norwegian Dependency Treebank ### Citation Information This dataset is described in the paper _NorNE: Annotating Named Entities for Norwegian_ by Fredrik Jørgensen, Tobias Aasmoe, Anne-Stine Ruud Husevåg, Lilja Øvrelid, and Erik Velldal, accepted for LREC 2020 and available as pre-print here: https://arxiv.org/abs/1911.12146.
[ -0.6387306451797485, -0.6518113613128662, 0.11350595206022263, 0.11249830573797226, -0.2888241112232208, -0.20059603452682495, -0.3129284679889679, -0.4048379957675934, 0.5660877227783203, 0.5122496485710144, -0.4497538208961487, -0.8244559168815613, -0.5782524347305298, 0.4265771806240082, -0.07303325831890106, 1.2192349433898926, -0.2884799838066101, -0.10702082514762878, 0.05800110474228859, -0.39716586470603943, -0.24986523389816284, -0.6947337985038757, -0.5245631337165833, -0.24464549124240875, 0.731341540813446, 0.3507755696773529, 0.44256269931793213, 0.5628864765167236, 0.4659033715724945, 0.25214582681655884, -0.3899661600589752, 0.085392065346241, -0.24496906995773315, -0.038988810032606125, -0.17952854931354523, -0.3406011760234833, -0.6585479974746704, -0.05432279035449028, 0.7324976325035095, 0.8435319662094116, 0.03139583021402359, 0.3726477026939392, 0.11215950548648834, 0.7101102471351624, -0.4975493252277374, 0.4141613245010376, -0.21831399202346802, 0.0065857660956680775, -0.3065202832221985, 0.096028171479702, -0.13087405264377594, -0.5095505118370056, 0.11258075386285782, -0.7372342944145203, 0.08673460781574249, 0.020978160202503204, 1.3531750440597534, 0.06647256016731262, -0.4127778112888336, -0.272350013256073, -0.30891430377960205, 0.8337804079055786, -0.7565290927886963, 0.3466165363788605, 0.42532041668891907, 0.027972979471087456, -0.31670135259628296, -0.6082620620727539, -0.6761075258255005, 0.00040055319550447166, -0.5054000020027161, 0.22761620581150055, -0.009186821058392525, -0.1348840594291687, 0.4648202061653137, 0.25270015001296997, -0.5677736401557922, -0.05498240888118744, -0.38941991329193115, -0.10313383489847183, 0.7813764810562134, 0.14516757428646088, 0.39253246784210205, -0.679988443851471, -0.4771800637245178, -0.12076704204082489, -0.4550030827522278, 0.07465527206659317, 0.3896508514881134, 0.6230884194374084, -0.5029343962669373, 0.7403038740158081, -0.22272974252700806, 0.6561864018440247, -0.0033627329394221306, -0.23689471185207367, 0.6977902054786682, -0.5696297883987427, -0.3856225311756134, 0.13816288113594055, 0.8974451422691345, 0.465525358915329, 0.2578693926334381, -0.012680411338806152, -0.17419569194316864, 0.11761059612035751, -0.19952329993247986, -0.7100445628166199, -0.4965459406375885, 0.20025664567947388, -0.42316025495529175, -0.22527511417865753, 0.16719184815883636, -1.0470576286315918, -0.10023988783359528, -0.2778927683830261, 0.2642742395401001, -0.37462759017944336, -0.5235138535499573, -0.021680302917957306, -0.2642139494419098, 0.30413949489593506, 0.06941919028759003, -0.6847089529037476, 0.24456746876239777, 0.4585632383823395, 0.6260464191436768, -0.12122388929128647, -0.2832145094871521, -0.20479726791381836, 0.0422530360519886, -0.3541172444820404, 0.7901908755302429, -0.4228353202342987, -0.3970775604248047, -0.13828769326210022, 0.28435736894607544, -0.22203269600868225, -0.42315438389778137, 0.743138313293457, -0.3016048073768616, 0.4089348018169403, -0.5524091720581055, -0.5968431234359741, -0.47358250617980957, 0.3147616684436798, -0.772301971912384, 1.1238116025924683, 0.3161247968673706, -1.0000135898590088, 0.8038297891616821, -0.91629558801651, -0.3358598053455353, 0.12630197405815125, -0.19239506125450134, -0.24807609617710114, -0.17481078207492828, 0.2001534104347229, 0.495004266500473, -0.26852646470069885, 0.2783343493938446, -0.07640261203050613, 0.12078320235013962, -0.03524031862616539, 0.11344651877880096, 1.063701868057251, 0.022079117596149445, -0.26158297061920166, -0.07743926346302032, -1.0396385192871094, 0.012224138714373112, 0.16248323023319244, -0.6278589367866516, -0.4013148844242096, -0.27280139923095703, 0.29295584559440613, 0.20729218423366547, 0.020167378708720207, -0.5588499307632446, 0.2015519142150879, -0.5539045929908752, 0.3852686882019043, 0.5690212249755859, 0.28558748960494995, 0.4309665262699127, -0.2971036732196808, 0.4646209180355072, 0.24229636788368225, 0.06663837283849716, 0.09756185859441757, -0.6322689056396484, -0.6822134256362915, -0.28687331080436707, 0.9243489503860474, 0.6260388493537903, -0.6944417953491211, 0.7339223623275757, -0.5542787313461304, -0.4619969427585602, -0.2873707711696625, -0.15679818391799927, 0.3023659884929657, 0.670815646648407, 0.328760027885437, -0.3095261752605438, -0.8535575866699219, -1.0355141162872314, -0.018288424238562584, -0.18834444880485535, 0.269187867641449, 0.44842708110809326, 1.0323528051376343, -0.05876598134636879, 0.9439213275909424, -0.3275763988494873, -0.3531576991081238, -0.17938737571239471, 0.02085772529244423, 0.6865280866622925, 0.6145987510681152, 0.7099906802177429, -0.9834427237510681, -0.6375102996826172, 0.00639021210372448, -0.7018687725067139, -0.021101301535964012, 0.08510182052850723, -0.13268421590328217, 0.6032932996749878, 0.1676754355430603, -0.558363139629364, 0.6317254304885864, 0.36163994669914246, -0.6959559321403503, 0.7079320549964905, 0.01422501914203167, 0.01354493759572506, -1.054243564605713, 0.2539200484752655, -0.19872714579105377, 0.015601844526827335, -0.6292023062705994, -0.1824028640985489, -0.21559500694274902, 0.27958276867866516, -0.43805012106895447, 0.8425614833831787, -0.36753663420677185, 0.12505866587162018, 0.2129528671503067, 0.21120791137218475, 0.09064822643995285, 0.5175755620002747, 0.03116113319993019, 0.4692250192165375, 0.6227625012397766, -0.6002914905548096, 0.3155936896800995, 0.5061146020889282, -0.4566592276096344, 0.759665846824646, -0.4453529715538025, -0.2548004984855652, -0.32764849066734314, 0.21061627566814423, -0.8895893692970276, -0.3820381164550781, 0.5437237620353699, -0.44046273827552795, 0.23890241980552673, -0.3247794806957245, -0.8206045627593994, -0.19878607988357544, -0.10423307120800018, 0.22917689383029938, 0.3228520154953003, -0.29357293248176575, 0.7817513942718506, 0.40720316767692566, -0.02562049776315689, -0.5499213337898254, -0.9172524213790894, 0.08152643591165543, -0.37857964634895325, -0.7076063752174377, 0.2776152193546295, 0.08428239077329636, -0.2158510982990265, 0.45649340748786926, -0.13186709582805634, -0.1424887627363205, 0.05044626444578171, 0.2959769666194916, 0.2317764163017273, -0.31763750314712524, 0.1373092383146286, -0.3023604154586792, -0.1193762794137001, -0.07607028633356094, -0.28343847393989563, 0.6296523213386536, -0.01882880926132202, 0.1969389021396637, -0.31581732630729675, 0.3571091294288635, 0.2539270222187042, -0.13909554481506348, 0.9669321179389954, 0.5462580919265747, -0.44286635518074036, 0.013042856939136982, -0.4795569181442261, -0.057284027338027954, -0.33401674032211304, 0.10823462903499603, -0.480427086353302, -0.8188143372535706, 0.8161928057670593, 0.18321581184864044, 0.05818399041891098, 1.0211710929870605, 0.4170621335506439, -0.08637949079275131, 0.37770867347717285, 0.3504011929035187, 0.04980434849858284, 0.24870182573795319, -0.6088933348655701, 0.09711440652608871, -0.7590984106063843, -0.4908810555934906, -0.5586931705474854, -0.4627692997455597, -0.9140666127204895, -0.28784143924713135, 0.15486589074134827, 0.23175564408302307, -0.5550126433372498, 0.4352145195007324, -0.5603148341178894, 0.3518400192260742, 0.5441024899482727, -0.19757179915905, 0.051991406828165054, 0.02691575326025486, -0.40138718485832214, -0.018980519846081734, -0.8014876246452332, -0.6238219738006592, 1.0753297805786133, 0.17576079070568085, 0.36407485604286194, 0.08828532695770264, 0.9497526288032532, 0.06055157259106636, 0.19485746324062347, -0.34597572684288025, 0.6068077683448792, -0.19740931689739227, -0.8725005388259888, -0.3586197793483734, -0.5488153696060181, -1.118813395500183, 0.15430018305778503, -0.392884761095047, -0.9684414863586426, 0.6774726510047913, -0.008844953030347824, -0.41078469157218933, 0.4149514436721802, -0.6767486929893494, 0.9278175234794617, -0.1650841236114502, -0.11212299764156342, 0.27301761507987976, -0.7476050853729248, 0.15391166508197784, 0.05878403037786484, 0.3113693296909332, -0.2163839042186737, -0.10974788665771484, 1.1686584949493408, -0.3808838427066803, 0.846896231174469, -0.2226918786764145, 0.07680722326040268, 0.40669697523117065, 0.02460252121090889, 0.6140062212944031, -0.02622750960290432, -0.07730405032634735, 0.36613789200782776, 0.1702919453382492, -0.28602322936058044, -0.4692886769771576, 0.6145870685577393, -0.6754733324050903, -0.1826915591955185, -0.6027200818061829, -0.329257071018219, 0.25535848736763, 0.44591909646987915, 0.3553549349308014, 0.39880672097206116, 0.04228544980287552, 0.20532965660095215, 0.3852027654647827, -0.3869180977344513, 0.3420753479003906, 0.1989336907863617, -0.397284597158432, -0.7889919877052307, 0.7258891463279724, 0.5580897331237793, 0.028784088790416718, 0.30683016777038574, 0.09359195828437805, -0.4710976481437683, -0.43359625339508057, -0.18634185194969177, 0.3876210153102875, -0.7789508104324341, -0.23382602632045746, -0.7770453095436096, -0.16447286307811737, -0.39306509494781494, -0.09632095694541931, -0.10989857465028763, -0.7608903646469116, -0.3136111795902252, -0.3591141700744629, 0.5082748532295227, 0.6476802229881287, -0.27931249141693115, 0.14821408689022064, -0.38284066319465637, 0.25015994906425476, 0.05842269957065582, 0.5443884134292603, -0.128926083445549, -0.34611016511917114, 0.027180541306734085, -0.051663853228092194, -0.0320793054997921, -0.8764016032218933, 0.33877041935920715, 0.04601327329874039, 0.5191845893859863, 0.14191697537899017, -0.000814524304587394, 0.6459723114967346, -0.29028400778770447, 1.0132946968078613, 0.1933538168668747, -0.60760897397995, 0.46868860721588135, -0.2878999412059784, -0.0013643782585859299, 0.67034912109375, 0.32667529582977295, -0.7136645317077637, -0.09498780220746994, -1.0812697410583496, -1.2753489017486572, 0.8127148151397705, 0.42464885115623474, -0.07749918848276138, -0.17704784870147705, 0.39230969548225403, 0.06616050750017166, 0.29181167483329773, -0.8849382400512695, -0.7164311408996582, -0.18952931463718414, -0.02669653668999672, -0.08663235604763031, -0.3687342405319214, -0.21927034854888916, -0.34947121143341064, 0.9294285774230957, 0.30910077691078186, 0.19569741189479828, 0.43545034527778625, 0.09452524781227112, 0.10181286931037903, 0.24136221408843994, 0.6452650427818298, 0.617497980594635, -0.32113558053970337, 0.2329266220331192, 0.3143828213214874, -0.44203367829322815, -0.02314702235162258, 0.07033591717481613, -0.3579269349575043, 0.24712537229061127, 0.41798678040504456, 0.8261949419975281, 0.08629123866558075, -0.3520248532295227, 0.2348870038986206, 0.14205782115459442, -0.4548996090888977, -0.5433014035224915, -0.06457941234111786, 0.0036204245407134295, 0.19547224044799805, 0.16848652064800262, -0.10778018087148666, -0.14127838611602783, -0.34989234805107117, 0.22623367607593536, 0.12073156982660294, -0.18942968547344208, -0.2494606077671051, 0.5649251341819763, -0.05115663260221481, -0.2682258188724518, 0.470879465341568, -0.45970889925956726, -0.47237834334373474, 0.6942564845085144, 0.2607101798057556, 0.8153573274612427, 0.02154490351676941, 0.22516989707946777, 0.7098091244697571, 0.43404579162597656, -0.004678337834775448, 0.6941997408866882, 0.20628724992275238, -0.7470816373825073, -0.4108603000640869, -0.9565033316612244, 0.22098509967327118, 0.2858715057373047, -0.5126161575317383, 0.29851222038269043, -0.4013042747974396, -0.42845889925956726, 0.25560012459754944, 0.1220063790678978, -0.8624144196510315, 0.242208793759346, 0.21222686767578125, 1.024869441986084, -0.9782760143280029, 0.5272999405860901, 0.9856743216514587, -0.6301296949386597, -1.0503151416778564, -0.18796338140964508, -0.18475830554962158, -0.333181768655777, 1.0631272792816162, 0.017823677510023117, 0.5284548997879028, -0.15309837460517883, -0.3695874810218811, -1.1488338708877563, 1.0002262592315674, 0.13705001771450043, -0.3127939999103546, 0.08673867583274841, 0.26054030656814575, 0.6271257400512695, -0.42720353603363037, 0.2577573359012604, 0.6328169107437134, 0.9273881912231445, -0.0005856083589605987, -0.9610677361488342, 0.14101605117321014, -0.2607792913913727, -0.0074572390876710415, 0.4687768220901489, -0.6560268998146057, 0.9259254336357117, 0.19304488599300385, -0.28344371914863586, -0.3146683871746063, 0.4662029445171356, 0.2377689778804779, 0.1370868980884552, 0.477523535490036, 0.8752790093421936, 0.7431881427764893, -0.36914533376693726, 1.115355372428894, -0.19223468005657196, 0.5696927309036255, 1.0430715084075928, 0.004051009193062782, 0.5965908169746399, 0.4538852870464325, -0.3482018709182739, 0.6532785296440125, 0.7221938967704773, -0.23616310954093933, 0.552118182182312, 0.25384950637817383, 0.06218905746936798, -0.10875502228736877, -0.18226051330566406, -0.31211405992507935, 0.4351483881473541, 0.3422820270061493, -0.361699640750885, -0.47496503591537476, -0.13826605677604675, 0.4351291060447693, -0.14520035684108734, -0.291025310754776, 0.7899901270866394, 0.10976597666740417, -0.5261890888214111, 0.7191911935806274, -0.0957457572221756, 0.4242599606513977, -0.39348822832107544, -0.10328249633312225, -0.07001173496246338, -0.1200665831565857, -0.5225368738174438, -0.9776015877723694, 0.39873531460762024, -0.1043400764465332, -0.3514472246170044, -0.040965065360069275, 0.4264400005340576, -0.3562804162502289, -0.7661424279212952, 0.2568623721599579, 0.28293555974960327, 0.4126044511795044, 0.2199699580669403, -0.8022523522377014, -0.1462009847164154, 0.0665871873497963, -0.42147690057754517, 0.08637671917676926, 0.5926438570022583, -0.16990265250205994, 0.3356383144855499, 0.5764878988265991, 0.2962877154350281, 0.17929181456565857, -0.1054907888174057, 0.8295684456825256, -0.6491867899894714, -0.492570698261261, -0.9578685164451599, 0.7335453629493713, -0.1476716697216034, -0.45007309317588806, 0.8299314379692078, 0.8404196500778198, 0.9748684167861938, 0.028727533295750618, 0.8665656447410583, -0.5913156270980835, 0.4976804256439209, -0.3880263566970825, 0.5906592011451721, -0.5155230164527893, -0.049056652933359146, -0.24751503765583038, -1.0036653280258179, -0.609329104423523, 0.6232468485832214, -0.5912042260169983, 0.04099356755614281, 0.5936874747276306, 0.6166194081306458, -0.017253072932362556, -0.008205161429941654, -0.014405835419893265, 0.5483589768409729, 0.043519049882888794, 0.433604896068573, 0.4917389452457428, -0.4842328727245331, 0.38764744997024536, -0.4349723756313324, -0.04825121536850929, -0.15318123996257782, -1.0336850881576538, -0.9261736273765564, -0.7251982092857361, -0.5851271152496338, -0.5102154016494751, 0.018996739760041237, 1.0014532804489136, 0.5090007781982422, -1.1937898397445679, -0.10257673263549805, -0.008045502938330173, 0.22507670521736145, -0.191752091050148, -0.2596295177936554, 0.868050217628479, -0.14264410734176636, -0.4741378426551819, -0.04920957610011101, 0.2223358154296875, 0.08091187477111816, 0.21008703112602234, 0.0001276902767131105, -0.4348999857902527, -0.11236578971147537, 0.46760910749435425, 0.2120635211467743, -0.8199732303619385, -0.2600885331630707, -0.2511930465698242, 0.072231225669384, 0.3464701771736145, 0.21639780700206757, -0.6011542081832886, 0.34355679154396057, 0.6960486173629761, 0.18803299963474274, 0.3933899402618408, 0.13271646201610565, 0.01390120293945074, -0.7529597282409668, 0.1824951469898224, 0.3059283196926117, 0.3503040671348572, 0.1423109620809555, -0.30934083461761475, 0.705926775932312, 0.4080714285373688, -0.5331313610076904, -0.9905946850776672, -0.02436283603310585, -1.0205936431884766, -0.0023708802182227373, 1.2910404205322266, -0.108673594892025, -0.4755821228027344, -0.19205620884895325, -0.11320672929286957, 0.19848544895648956, -0.5626647472381592, 0.4668751358985901, 0.8593130707740784, -0.11174511909484863, 0.044734638184309006, -0.7900505661964417, 0.6240163445472717, 0.11817450076341629, -0.591749906539917, -0.010907777585089207, 0.22443518042564392, 0.5044243931770325, 0.4541531801223755, 0.6148767471313477, -0.23823441565036774, -0.023180309683084488, -0.06542766094207764, 0.44515374302864075, 0.14638911187648773, -0.15655790269374847, -0.11435085535049438, 0.19661100208759308, -0.3435591161251068, -0.16714371740818024 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ScandEval/angry-tweets-mini
ScandEval
2023-07-05T09:52:07Z
233
0
null
[ "task_categories:text-classification", "size_categories:1K<n<10K", "language:da", "license:cc-by-4.0", "region:us" ]
2023-07-05T09:52:07Z
2022-06-14T18:30:11.000Z
2022-06-14T18:30:11
--- license: cc-by-4.0 task_categories: - text-classification language: - da size_categories: - 1K<n<10K ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
s-nlp/paradetox
s-nlp
2023-09-08T08:59:53Z
232
7
null
[ "task_categories:text-generation", "language:en", "license:openrail++", "region:us" ]
2023-09-08T08:59:53Z
2022-05-19T17:12:06.000Z
2022-05-19T17:12:06
--- license: openrail++ task_categories: - text-generation language: - en --- # ParaDetox: Detoxification with Parallel Data (English) This repository contains information about Paradetox dataset -- the first parallel corpus for the detoxification task -- as well as models and evaluation methodology for the detoxification of English texts. The original paper ["ParaDetox: Detoxification with Parallel Data"](https://aclanthology.org/2022.acl-long.469/) was presented at ACL 2022 main conference. ## ParaDetox Collection Pipeline The ParaDetox Dataset collection was done via [Yandex.Toloka](https://toloka.yandex.com/) crowdsource platform. The collection was done in three steps: * *Task 1:* **Generation of Paraphrases**: The first crowdsourcing task asks users to eliminate toxicity in a given sentence while keeping the content. * *Task 2:* **Content Preservation Check**: We show users the generated paraphrases along with their original variants and ask them to indicate if they have close meanings. * *Task 3:* **Toxicity Check**: Finally, we check if the workers succeeded in removing toxicity. All these steps were done to ensure high quality of the data and make the process of collection automated. For more details please refer to the original paper. ## ParaDetox Dataset As a result, we get paraphrases for 11,939 toxic sentences (on average 1.66 paraphrases per sentence), 19,766 paraphrases total. In addition to all ParaDetox dataset, we also make public [samples](https://huggingface.co/datasets/s-nlp/en_non_detoxified) that were marked by annotators as "cannot rewrite" in *Task 1* of crowdsource pipeline. # Detoxification evaluation The automatic evaluation of the model were produced based on three parameters: * *style transfer accuracy* (**STA**): percentage of nontoxic outputs identified by a style classifier. We pretrained toxicity classifier on Jigsaw data and put it online in HuggingFace🤗 [repo](https://huggingface.co/SkolkovoInstitute/roberta_toxicity_classifier). * *content preservation* (**SIM**): cosine similarity between the embeddings of the original text and the output computed with the model of [Wieting et al. (2019)](https://aclanthology.org/P19-1427/). * *fluency* (**FL**): percentage of fluent sentences identified by a RoBERTa-based classifier of linguistic acceptability trained on the [CoLA dataset](https://nyu-mll.github.io/CoLA/). All code used for our experiments to evluate different detoxifcation models can be run via Colab notebook [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1xTqbx7IPF8bVL2bDCfQSDarA43mIPefE?usp=sharing) ## Detoxification model **New SOTA** for detoxification task -- BART (base) model trained on ParaDetox dataset -- we released online in HuggingFace🤗 repository [here](https://huggingface.co/SkolkovoInstitute/bart-base-detox). You can also check out our [demo](https://detoxifier.nlp.zhores.net/junction/) and telegram [bot](https://t.me/rudetoxifierbot). ## Citation ``` @inproceedings{logacheva-etal-2022-paradetox, title = "{P}ara{D}etox: Detoxification with Parallel Data", author = "Logacheva, Varvara and Dementieva, Daryna and Ustyantsev, Sergey and Moskovskiy, Daniil and Dale, David and Krotova, Irina and Semenov, Nikita and Panchenko, Alexander", booktitle = "Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)", month = may, year = "2022", address = "Dublin, Ireland", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2022.acl-long.469", pages = "6804--6818", abstract = "We present a novel pipeline for the collection of parallel data for the detoxification task. We collect non-toxic paraphrases for over 10,000 English toxic sentences. We also show that this pipeline can be used to distill a large existing corpus of paraphrases to get toxic-neutral sentence pairs. We release two parallel corpora which can be used for the training of detoxification models. To the best of our knowledge, these are the first parallel datasets for this task.We describe our pipeline in detail to make it fast to set up for a new language or domain, thus contributing to faster and easier development of new parallel resources.We train several detoxification models on the collected data and compare them with several baselines and state-of-the-art unsupervised approaches. We conduct both automatic and manual evaluations. All models trained on parallel data outperform the state-of-the-art unsupervised models by a large margin. This suggests that our novel datasets can boost the performance of detoxification systems.", } ``` ## Contacts If you find some issue, do not hesitate to add it to [Github Issues](https://github.com/skoltech-nlp/paradetox/issues). For any questions and get the TEST SET, please, contact: Daryna Dementieva (dardem96@gmail.com)
[ -0.09170810878276825, -0.43060240149497986, 0.6005584001541138, 0.2674691081047058, -0.13621945679187775, -0.10022176802158356, -0.07669363170862198, -0.07230816781520844, 0.18886439502239227, 0.6412947773933411, -0.30359145998954773, -0.9114304780960083, -0.4708574116230011, 0.4729233682155609, -0.5585694313049316, 1.1621983051300049, 0.1392727494239807, -0.07706957310438156, -0.18236126005649567, -0.22965708374977112, -0.18555708229541779, -0.33655479550361633, -0.6033790707588196, 0.05745623633265495, 0.7381583452224731, 0.4075321853160858, 0.5752725601196289, 0.6263500452041626, 0.19880983233451843, 0.25913912057876587, -0.08566033840179443, -0.24285100400447845, -0.5852545499801636, 0.11488975584506989, -0.503896176815033, -0.43995583057403564, 0.017243675887584686, -0.03953765332698822, 0.3375336527824402, 0.4852656424045563, -0.22881007194519043, 0.08620394021272659, 0.0944860503077507, 0.691650390625, -0.7055781483650208, 0.114281564950943, -0.7023538947105408, -0.12965911626815796, -0.4101564884185791, 0.19341403245925903, -0.32034337520599365, -0.286978155374527, -0.202379047870636, -0.6121697425842285, -0.05204913765192032, 0.03724924474954605, 0.8351132273674011, 0.3286908268928528, -0.3343791961669922, -0.1345760077238083, -0.3114464282989502, 0.8365864157676697, -0.7653701305389404, 0.3612961769104004, 0.2170446217060089, -0.026389949023723602, -0.0010707598412409425, -1.0126978158950806, -0.4088183343410492, -0.07341713458299637, 0.02560022473335266, 0.3575170338153839, -0.10317008197307587, -0.050027646124362946, 0.07908462733030319, 0.3448169231414795, -0.8434926867485046, -0.1003737598657608, -0.5422011017799377, -0.03560347855091095, 0.7146117687225342, 0.43111687898635864, 0.4852892756462097, -0.3438423275947571, -0.6845009922981262, -0.06499749422073364, -0.5592021942138672, -0.1788652241230011, 0.1697039157152176, 0.23776046931743622, -0.20830941200256348, 0.34276193380355835, -0.2766159474849701, -0.02057778649032116, -0.24509233236312866, 0.15620644390583038, 0.766789436340332, -0.6696227788925171, -0.21231532096862793, -0.19697949290275574, 1.1884676218032837, 0.4475175738334656, 0.15428921580314636, -0.26313892006874084, -0.026380391791462898, -0.0396285355091095, 0.286381334066391, -0.9342982172966003, -0.41242554783821106, 0.5167512893676758, -0.6480602622032166, -0.3693717420101166, -0.3416968286037445, -1.1061863899230957, -0.26519253849983215, -0.2758277952671051, 0.38742899894714355, -0.5416874885559082, -0.39459121227264404, 0.3835470974445343, -0.47894012928009033, -0.38598331809043884, 0.0331847220659256, -0.43037787079811096, 0.3453670144081116, 0.46418750286102295, 0.9392392635345459, -0.42375707626342773, -0.35233405232429504, -0.3358251452445984, 0.059383414685726166, 0.0307057723402977, 0.642550528049469, -0.45005008578300476, -0.07498238980770111, -0.19932720065116882, 0.24362024664878845, -0.3880337178707123, -0.9086356163024902, 0.8255910873413086, -0.23293037712574005, 0.07904072105884552, -0.3340875208377838, -0.37502142786979675, -0.1485646665096283, -0.062148116528987885, -0.556782603263855, 0.8813745975494385, -0.16510340571403503, -1.1468387842178345, -0.24358806014060974, -0.45728355646133423, -0.18013034760951996, -0.011251192539930344, 0.28071191906929016, -0.2865390181541443, -0.029103660956025124, 0.012341289781033993, 0.2199237048625946, -0.49973300099372864, 0.25895142555236816, -0.6262660026550293, -0.2503755986690521, -0.15905490517616272, -0.21263685822486877, 1.4383769035339355, 0.638258695602417, -0.26497799158096313, 0.11277148872613907, -0.6934038400650024, -0.1327921450138092, 0.059753142297267914, -0.22000248730182648, -0.5629458427429199, -0.15546759963035583, 0.45845967531204224, 0.6245478987693787, 0.14143610000610352, -0.5676153898239136, -0.38335999846458435, -0.32094043493270874, 0.5011916756629944, 0.6815574169158936, 0.30880093574523926, 0.047011151909828186, -0.5934926867485046, 0.44547003507614136, 0.19334599375724792, 0.35384535789489746, 0.08585143834352493, -0.5854107141494751, -0.4608546495437622, -0.22496557235717773, -0.033794697374105453, 0.9151074290275574, -0.7551555633544922, 0.4619014263153076, -0.3780125379562378, -0.8509863018989563, -0.1658150851726532, 0.15223492681980133, 0.5258825421333313, 0.4062404930591583, 0.6073689460754395, -0.28020724654197693, -0.4801091253757477, -0.8363347053527832, -0.2854538857936859, -0.17111121118068695, -0.09467014670372009, 0.09087391197681427, 0.6171881556510925, -0.12243456393480301, 0.5545009970664978, -0.4053899943828583, -0.09456245601177216, -0.002617676742374897, 0.09888578951358795, 0.13001757860183716, 0.35993340611457825, 0.5473054051399231, -0.5304575562477112, -0.6412283182144165, -0.21199087798595428, -0.9118381142616272, -0.42292290925979614, -0.1033749133348465, -0.41634252667427063, -0.33440327644348145, 0.42361390590667725, -0.5316013097763062, 0.034657083451747894, 0.3188338279724121, 0.02465636283159256, 0.7247022986412048, -0.06413741409778595, -0.0010456694290041924, -1.0822997093200684, 0.25559931993484497, 0.1433759331703186, -0.010858305729925632, -0.9038291573524475, 0.16360050439834595, 0.04853954166173935, -0.2198743224143982, -0.7493362426757812, 0.5199699401855469, -0.2390834540128708, 0.5483168959617615, -0.165678933262825, 0.0736735463142395, -0.014139777980744839, 0.49735695123672485, 0.21439175307750702, 0.5962390303611755, 0.7032718658447266, -0.3491136133670807, 0.14575810730457306, 0.359916627407074, -0.03033454529941082, 0.40377140045166016, -0.5821117162704468, -0.041592955589294434, -0.17632801830768585, 0.3999156057834625, -0.9017525911331177, -0.0505862683057785, 0.4431985020637512, 0.08505351096391678, -0.1680619865655899, 0.08282013237476349, -0.6937273740768433, -0.38302966952323914, -0.44354355335235596, 0.2601340115070343, 0.5636701583862305, -0.2730604112148285, -0.10195671766996384, 0.46634113788604736, -0.2891668677330017, -0.47747284173965454, -0.5209555625915527, 0.14090731739997864, -0.8108820915222168, -0.4243875741958618, 0.056070681661367416, -0.1775074005126953, -0.3593769073486328, -0.30097049474716187, -0.09240750968456268, -0.1392366886138916, -0.021601323038339615, 0.05274329334497452, -0.008227953687310219, 0.22399888932704926, 0.24762986600399017, 0.25060364603996277, -0.05455685406923294, 0.3466542959213257, -0.03673895075917244, 0.39313986897468567, -0.012818904593586922, 0.006203485187143087, -0.6903216242790222, 0.6382787823677063, 0.7614943385124207, -0.21066327393054962, 0.7076771855354309, 0.5267472863197327, -0.20152682065963745, 0.18150781095027924, -0.24624678492546082, -0.09707842022180557, -0.45764070749282837, 0.3333425223827362, -0.23045213520526886, -0.4496050775051117, 0.5076042413711548, -0.023131338879466057, 0.006803054828196764, 0.5001510977745056, 0.6209484338760376, 0.17412768304347992, 0.849622905254364, 0.025647882372140884, -0.053898777812719345, 0.22830714285373688, -0.15666769444942474, 0.08049546182155609, -0.5102853775024414, -0.11083802580833435, -0.6021941900253296, -0.1626616269350052, -0.48671212792396545, -0.5896166563034058, 0.50128573179245, 0.08157426118850708, -0.6744617819786072, 0.5588802695274353, -0.3968087434768677, 0.1610725224018097, 0.5645704865455627, 0.30690404772758484, 0.38302910327911377, -0.09253992885351181, -0.11457671225070953, -0.07100645452737808, -0.4579378068447113, -0.5562245845794678, 1.2232180833816528, 0.4005405604839325, 0.443779855966568, -0.1783706098794937, 1.0938448905944824, -0.039740826934576035, 0.27759167551994324, -0.1943797916173935, 0.7720440626144409, -0.4733804166316986, -0.7718552947044373, -0.03441813215613365, -0.37968379259109497, -0.8212530016899109, 0.12710632383823395, 0.11702580749988556, -0.7672656178474426, 0.4696991443634033, -0.2487209141254425, -0.21444573998451233, 0.3392460346221924, -0.8332631587982178, 0.9928792715072632, -0.10256603360176086, -0.5150870680809021, -0.22749768197536469, -0.9705464243888855, 0.5383904576301575, -0.3436143100261688, 0.4911939799785614, -0.3394554853439331, -0.1245073601603508, 0.8236156105995178, -0.5839293599128723, 0.6564129590988159, -0.3076992630958557, -0.09242461621761322, 0.3028382658958435, -0.24398227035999298, 0.5527489185333252, 0.05437605455517769, -0.38284406065940857, 0.5118580460548401, 0.25570905208587646, -0.3795372545719147, -0.2576567828655243, 0.6098513603210449, -0.5265801548957825, -0.5158551931381226, -0.1151985302567482, -0.6885449886322021, -0.08897576481103897, 0.2857128083705902, 0.3447396457195282, -0.005703894887119532, 0.13284221291542053, 0.07259571552276611, 0.4889756143093109, -0.6697366833686829, 0.20262674987316132, 0.020204361528158188, -0.1658855527639389, -0.45603394508361816, 1.039328694343567, -0.05629657581448555, 0.4188466966152191, 0.384731650352478, 0.3983694314956665, -0.3686726987361908, -0.6672539710998535, -0.15704384446144104, 0.43040552735328674, -0.5210589170455933, -0.11186941713094711, -0.998493492603302, -0.20246167480945587, -0.5161794424057007, 0.36434054374694824, -0.2701270282268524, -0.39969882369041443, -0.3273671865463257, -0.1258036494255066, 0.5003561973571777, 0.4714406430721283, -0.4083038866519928, 0.054186224937438965, -0.8392717838287354, 0.2564651370048523, -0.04523024708032608, -0.11466655135154724, -0.17844989895820618, -0.26747292280197144, -0.14085467159748077, 0.180538147687912, -0.4118255078792572, -1.1446248292922974, 0.6316120624542236, -0.003911634441465139, 0.6097173094749451, 0.41892674565315247, 0.41608521342277527, 0.6041796803474426, -0.4664281904697418, 0.8040820956230164, 0.1721857488155365, -0.6744428873062134, 0.5222653746604919, -0.5913710594177246, 0.0710986852645874, 0.795965850353241, 0.7856044769287109, -0.6828593611717224, -0.9941682815551758, -0.5881439447402954, -1.124037504196167, 0.5745054483413696, 0.645257294178009, 0.09889838844537735, -0.5340723395347595, 0.06398908793926239, 0.25436052680015564, 0.22827063500881195, -0.49152305722236633, -0.5382881760597229, -0.21797491610050201, -0.3749181926250458, 0.03186526894569397, -0.14057187736034393, -0.15623965859413147, -0.35037222504615784, 0.6889029741287231, 0.4677691161632538, 0.14610251784324646, -0.08032690733671188, -0.15619581937789917, 0.33012616634368896, 0.3366438150405884, 0.10477735847234726, 0.31741318106651306, -0.3113563656806946, 0.20441624522209167, 0.162483349442482, -0.6742252707481384, 0.25648775696754456, 0.14723147451877594, -0.098932646214962, -0.01461467333137989, -0.04521258547902107, 0.6489874720573425, 0.0020661277230829, -1.0020334720611572, 0.3650020956993103, 0.08076322823762894, -0.2797464430332184, -0.06273215264081955, 0.06150535121560097, 0.21751202642917633, 0.1499159187078476, 0.19964401423931122, 0.14892198145389557, 0.5386996865272522, -0.2990824282169342, 0.4938201308250427, 0.18582111597061157, -0.15244892239570618, -0.2852904796600342, 1.1583589315414429, 0.15857698023319244, 0.02356804721057415, 0.630624532699585, -0.36908280849456787, -0.10028588026762009, 0.3970140516757965, 0.41307979822158813, 1.022881269454956, -0.19141986966133118, 0.33187320828437805, 0.7602583169937134, 0.05487780272960663, -0.08318597823381424, 0.05108018219470978, 0.010504674166440964, -0.4152693748474121, -0.009602727368474007, -0.7546055316925049, 0.15882834792137146, 0.3780597448348999, -0.6238383650779724, 0.1308552473783493, -0.24883046746253967, 0.16424217820167542, -0.09319750219583511, -0.1540800929069519, -0.3500206470489502, 0.03615029528737068, 0.12013112008571625, 0.9453251361846924, -1.4904975891113281, 0.7109264135360718, 0.5803789496421814, -0.6698146462440491, -0.6291086077690125, 0.3263455033302307, 0.14470849931240082, -0.47526517510414124, 0.5937925577163696, 0.32453277707099915, 0.25668713450431824, 0.13758106529712677, -0.1906101405620575, -0.8967050909996033, 0.9747888445854187, 0.4909905195236206, -0.5721914172172546, -0.20736932754516602, 0.2594156563282013, 0.7174510359764099, 0.10012799501419067, 0.4720964729785919, 0.6403685808181763, 0.46945348381996155, -0.027425343170762062, -1.0248570442199707, 0.3354331851005554, -0.6011638045310974, 0.25155210494995117, -0.2639598250389099, -0.7008305191993713, 0.8330567479133606, 0.16220559179782867, -0.3095661699771881, 0.23224152624607086, 0.3033371567726135, 0.4298489987850189, 0.394437313079834, 0.6744890809059143, 1.0438685417175293, 0.7149693369865417, 0.309845507144928, 0.8588645458221436, -0.1880030632019043, 0.36638131737709045, 1.0914052724838257, -0.28985556960105896, 0.7408500909805298, 0.3860575556755066, -0.42413005232810974, 0.6945450305938721, 0.6307933926582336, 0.27187874913215637, 0.8536874651908875, 0.16997464001178741, -0.4510677456855774, -0.2630474269390106, -0.07933389395475388, -0.2640940845012665, 0.010828882455825806, 0.33562830090522766, -0.5409716367721558, -0.6773983240127563, 0.4718063175678253, 0.16855144500732422, 0.025925494730472565, -0.12148110568523407, 0.4448398947715759, 0.09804026782512665, -0.5988199710845947, 0.9499191641807556, -0.21960978209972382, 0.5439952611923218, -0.2199288010597229, 0.30975010991096497, -0.28163769841194153, 0.2176387459039688, -0.14552173018455505, -0.7493281960487366, 0.6601203083992004, -0.13473211228847504, -0.05033987760543823, -0.4732893109321594, 0.517098605632782, -0.4182084798812866, -0.3765665888786316, 0.4648672938346863, 0.4745517671108246, 0.7247151136398315, -0.3670600652694702, -1.0637598037719727, 0.0008520488627254963, 0.12239764630794525, -0.1170017346739769, 0.45212870836257935, 0.41517505049705505, -0.24787603318691254, 0.5319342017173767, 0.478799968957901, -0.014637389220297337, 0.25395771861076355, 0.047601837664842606, 0.7659463286399841, -0.40497443079948425, -0.20403924584388733, -0.5832531452178955, 0.6420449614524841, -0.07534864544868469, -0.15568479895591736, 0.9113989472389221, 1.0260907411575317, 0.7757837176322937, -0.2070053368806839, 0.7730267643928528, -0.10563090443611145, 0.64198899269104, -0.15533217787742615, 0.7695471048355103, -0.684485137462616, 0.18591032922267914, -0.4103407859802246, -0.5524651408195496, -0.16631795465946198, 0.2067534327507019, -0.3731250464916229, -0.10844278335571289, 1.0781257152557373, 1.1502827405929565, -0.1027912124991417, 0.03789176419377327, -0.017068762332201004, 0.41138893365859985, 0.0572279654443264, 0.7274779677391052, 0.4820406138896942, -0.5073034167289734, 0.7390346527099609, -0.6830472946166992, -0.1458093374967575, 0.11184906214475632, -0.4990623891353607, -0.6837754845619202, -0.8161963820457458, -0.5419510006904602, -0.44971272349357605, 0.310916930437088, 0.5961987972259521, 0.217634916305542, -0.8113236427307129, -0.3266071379184723, -0.6014489531517029, 0.08155197650194168, -0.5876125693321228, -0.25492408871650696, 0.3022472560405731, -0.5223991870880127, -0.9980101585388184, 0.29298675060272217, 0.14563648402690887, -0.38613608479499817, 0.13445834815502167, 0.12569737434387207, -0.5720086693763733, -0.04756053164601326, 0.40933942794799805, 0.22318066656589508, -0.514797031879425, -0.21252727508544922, -0.17459693551063538, -0.18320420384407043, 0.15745748579502106, 0.3101295828819275, -0.6802501678466797, 0.17383238673210144, 0.7914270758628845, 0.27188748121261597, 0.412288635969162, 0.08610426634550095, 0.21256543695926666, -0.5601444244384766, 0.062260232865810394, 0.14117273688316345, 0.16520798206329346, 0.09496842324733734, -0.1982644945383072, 0.4270910322666168, 0.6276867985725403, -0.5237272381782532, -0.8417400121688843, -0.023648573085665703, -1.0142959356307983, -0.3577674329280853, 1.5125852823257446, -0.3334357738494873, -0.308777391910553, -0.5791670083999634, -0.09984827786684036, 0.3412770926952362, -0.2793266475200653, 0.6661714911460876, 0.5379763841629028, 0.024713773280382156, -0.15360385179519653, -0.6717400550842285, 0.35111600160598755, 0.38453537225723267, -1.048230528831482, 0.37004798650741577, 0.42301392555236816, 0.8119472861289978, 0.11142409592866898, 0.7009387016296387, -0.2589869201183319, -0.012874363921582699, -0.05471530556678772, -0.007146335206925869, 0.204149067401886, -0.033107396215200424, -0.21459847688674927, 0.15952327847480774, -0.5045641660690308, -0.26705217361450195 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
patrickfrank1/chess-pgn-games
patrickfrank1
2022-09-02T14:07:22Z
232
1
null
[ "license:cc0-1.0", "region:us" ]
2022-09-02T14:07:22Z
2022-09-02T12:51:34.000Z
2022-09-02T12:51:34
--- license: cc0-1.0 ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
TigerResearch/tigerbot-alpaca-en-50k
TigerResearch
2023-05-31T01:56:04Z
232
1
null
[ "language:en", "license:apache-2.0", "region:us" ]
2023-05-31T01:56:04Z
2023-05-30T14:33:53.000Z
2023-05-30T14:33:53
--- license: apache-2.0 language: - en --- [Tigerbot](https://github.com/TigerResearch/TigerBot) 自有基于alpaca生成英文问答对 <p align="center" width="40%"> ## Usage ```python import datasets ds_sft = datasets.load_dataset('TigerResearch/tigerbot-alpaca-en-50k') ```
[ -0.4129043519496918, -0.5944029092788696, 0.004424228798598051, 0.4286971986293793, -0.5765930414199829, -0.15162315964698792, 0.07153547555208206, -0.28020617365837097, 0.9765855669975281, 0.47329169511795044, -0.6055602431297302, -0.6668300032615662, -0.3445602357387543, 0.30145034193992615, -0.25268641114234924, 1.0739046335220337, 0.19466760754585266, -0.056871842592954636, 0.45657333731651306, -0.41212791204452515, -0.3085023760795593, -0.22768326103687286, -0.9487429857254028, 0.04315406456589699, 0.501888632774353, 0.22331467270851135, 0.7766258120536804, 0.9062470197677612, 0.6174554228782654, 0.3133487403392792, 0.4267469644546509, 0.029253914952278137, 0.05362728610634804, -0.06942255049943924, -0.16121906042099, -0.6129003167152405, -0.3442324697971344, -0.016605323180556297, 0.44387078285217285, 0.5722882151603699, -0.3702279031276703, 0.28952717781066895, 0.137923464179039, 0.5337870121002197, -0.5812099575996399, 0.757418692111969, -0.4376980662345886, 0.07273975014686584, -0.5306721925735474, -0.1037713885307312, 0.09355626255273819, -0.7798373699188232, -0.06003154441714287, -1.2337850332260132, 0.17119532823562622, -0.12190773338079453, 1.0636752843856812, 0.23955440521240234, -0.48890697956085205, -0.5627292394638062, -0.1475028395652771, 0.8628836274147034, -0.5424578785896301, -0.0264239851385355, 0.7678241729736328, 0.624326229095459, -0.10527697205543518, -0.7726154923439026, -0.7144585251808167, -0.034855231642723083, -0.19815593957901, -0.04654991254210472, -0.2715117335319519, -0.2649584710597992, 0.2787925601005554, 0.24714988470077515, -0.5642775893211365, -0.19833308458328247, -0.3886525630950928, -0.24020172655582428, 0.6086599230766296, 0.005415336694568396, 0.5799371600151062, -0.20092076063156128, 0.07916267961263657, -0.4870830476284027, -0.09703885018825531, 0.1762259155511856, 0.34822070598602295, 0.7826785445213318, -0.19691364467144012, 0.5861743092536926, -0.7754057049751282, 0.5791158080101013, -0.45515015721321106, -0.239414781332016, 0.5261085629463196, 0.013660049065947533, -0.505367636680603, 0.0340183787047863, 0.7278295755386353, 0.30962038040161133, -0.10179424285888672, 0.42366713285446167, -0.35020455718040466, 0.10349522531032562, -0.2977263331413269, -0.5006792545318604, -0.3645322918891907, 0.24030651152133942, -0.7285241484642029, -0.22117294371128082, 0.5924466848373413, -1.2316288948059082, 0.0005040347459726036, 0.24667388200759888, 0.3293076455593109, -0.2648451328277588, -0.316794753074646, 0.2821180522441864, -0.02416108548641205, 0.43072813749313354, -0.04211293160915375, -0.9756559729576111, -0.0912712886929512, 0.6037890315055847, 0.8292300701141357, 0.3579556345939636, -0.2053321897983551, -0.3861449062824249, 0.15853388607501984, -0.14769834280014038, 0.5438902974128723, -0.3622967600822449, -0.6500505805015564, 0.25079137086868286, 0.5705890655517578, 0.05642836540937424, -0.28701460361480713, 0.8101180195808411, -0.5661918520927429, 0.23287147283554077, -0.333177387714386, 0.14556239545345306, -0.805692732334137, 0.11717557907104492, -1.1405705213546753, 0.9183894991874695, 0.15191587805747986, -0.6591607928276062, 0.21719157695770264, -0.8285674452781677, -0.6436381340026855, 0.25872424244880676, 0.028279399499297142, -0.532985270023346, -0.6082398891448975, 0.5195721983909607, 0.4700101613998413, 0.09190124273300171, 0.041017066687345505, -0.319728285074234, -0.20690932869911194, 0.23500195145606995, -0.16038528084754944, 1.3258366584777832, 0.4524751305580139, -0.12674054503440857, -0.14188843965530396, -0.7270101308822632, -0.15119153261184692, 0.564616858959198, -0.4442414343357086, -0.37381455302238464, -0.15235820412635803, 0.087961845099926, -0.263724148273468, 0.6569145321846008, -0.6612783670425415, 0.7662941217422485, -0.09529897570610046, 0.6175568103790283, 0.6045739650726318, -0.08156661689281464, 0.10521283745765686, -0.5404806733131409, 0.45263445377349854, -0.4746592044830322, 0.3466457426548004, -0.29239529371261597, -0.6459858417510986, -0.8982357978820801, -0.32267770171165466, 0.015822038054466248, 0.5512392520904541, -0.8782815337181091, 0.631280243396759, 0.004326151683926582, -0.7274070978164673, -0.6029743552207947, 0.04596244916319847, -0.08948466926813126, 0.1774466633796692, 0.5023724436759949, -0.33672410249710083, -0.8491459488868713, -0.8476743102073669, 0.09795739501714706, -0.325783371925354, -0.25986194610595703, 0.3677922189235687, 0.6748483180999756, -0.6222124695777893, 0.634532630443573, -0.9334359765052795, -0.5424888134002686, 0.0830109566450119, 0.056790389120578766, 0.7964218258857727, 0.6113479733467102, 0.6314439177513123, -0.8252346515655518, -0.4531199634075165, -0.21516811847686768, -0.6934968829154968, -0.014282545074820518, -0.0006892192177474499, -0.4002517759799957, 0.17318718135356903, 0.018289074301719666, -0.6306456923484802, 0.40403610467910767, 0.5206879377365112, -0.2202279269695282, 0.36239418387413025, 0.09367135912179947, 0.20345310866832733, -1.0615837574005127, 0.32106444239616394, 0.23704978823661804, 0.13152654469013214, 0.07547011226415634, 0.21785667538642883, -0.08267366141080856, 0.052623115479946136, -0.4293220639228821, 0.45784419775009155, -0.17196063697338104, -0.035263542085886, -0.037652477622032166, -0.04994815215468407, 0.22317007184028625, 0.5735649466514587, -0.0664793998003006, 0.8504226803779602, 0.48270511627197266, -0.6077165007591248, 1.0006911754608154, 0.6061221957206726, -0.38025444746017456, -0.10171404480934143, -0.48421940207481384, -0.12986436486244202, 0.30167433619499207, 0.5776111483573914, -0.5716841816902161, -0.3953457772731781, 0.5554137229919434, -0.3927817642688751, -0.17804375290870667, 0.19206610321998596, -0.434996098279953, -0.5643157958984375, -0.7409970164299011, 0.5291681289672852, 0.22160941362380981, -0.8142485022544861, 0.2454218715429306, 0.4492988884449005, -0.1195494681596756, -0.8086320757865906, -0.750048816204071, -0.06468132883310318, -0.10007593035697937, -0.1283322274684906, 0.039866626262664795, 0.13010334968566895, -0.1192794144153595, -0.13002367317676544, 0.3566148281097412, -0.014348902739584446, -0.1551520973443985, -0.01616849936544895, 0.44974154233932495, -0.38134080171585083, 0.05281553417444229, -0.21045875549316406, -0.06584090739488602, 0.15516848862171173, -0.02023610658943653, 0.6669278740882874, -0.24337993562221527, -0.21710042655467987, -0.7464492321014404, 0.02086733840405941, 0.31487733125686646, -0.17306770384311676, 0.617124617099762, 0.7055734395980835, -0.42819705605506897, 0.058204151690006256, -0.13094031810760498, -0.053900204598903656, -0.5056495666503906, 0.5017485618591309, -0.2619466483592987, -0.11820756644010544, 0.3892824649810791, 0.2396341860294342, -0.14001251757144928, 0.9460594654083252, 0.21606792509555817, -0.07903624325990677, 1.2222334146499634, 0.9701231122016907, -0.6271175146102905, 0.503147542476654, -0.6757116913795471, 0.013869548216462135, -0.7965309619903564, -0.5564364790916443, -0.9106864929199219, 0.019772203639149666, -0.9763789176940918, -0.29157790541648865, -0.08425571769475937, -0.08248818665742874, -0.44332724809646606, 0.5489232540130615, -1.1218887567520142, 0.15405449271202087, 0.9095146059989929, 0.41295886039733887, 0.13955208659172058, -0.09836728870868683, 0.21814008057117462, 0.2096322625875473, -0.3496514856815338, -0.5633605122566223, 1.0443906784057617, 0.262195348739624, 0.7158287167549133, 0.0868147760629654, 0.27286624908447266, 0.2598888874053955, 0.11660629510879517, -0.7713544368743896, 0.5893413424491882, -0.2212008535861969, -0.6063990592956543, -0.6224359273910522, -0.10178342461585999, -1.4185196161270142, -0.030492909252643585, -0.060871195048093796, -0.46580901741981506, 0.12022566050291061, -0.37815725803375244, -0.31296202540397644, 0.44273489713668823, -0.07961180806159973, 0.5257875919342041, -0.35944798588752747, 0.12391896545886993, 0.026955384761095047, -0.4279744029045105, 0.5058366656303406, -0.15314076840877533, 0.24752317368984222, -0.4237688481807709, -0.33269259333610535, 1.2908029556274414, -0.4609697461128235, 0.7602989077568054, -0.12520617246627808, -0.12894226610660553, 0.26019546389579773, -0.1718807816505432, 0.5318288207054138, 0.340591162443161, -0.22609113156795502, 0.34044206142425537, 0.04389258846640587, -0.8672183156013489, -0.12302486598491669, 0.6102807521820068, -0.7619116902351379, -0.4422692060470581, -0.798664391040802, -0.3125172555446625, 0.3069789707660675, 0.4476386308670044, 0.23386439681053162, -0.07738906145095825, -0.10755568742752075, 0.2032424509525299, 0.24456769227981567, -0.592809796333313, 0.5581933856010437, 0.545328676700592, -0.414252370595932, -0.6372072100639343, 1.2016657590866089, -0.10551753640174866, -0.6295922994613647, 0.493541955947876, 0.09255607426166534, -0.375457763671875, 0.037249378859996796, -0.19787727296352386, 0.4167328178882599, -0.563382089138031, -0.4087435007095337, -0.5916871428489685, -0.41721388697624207, -0.5659205317497253, -0.2196248173713684, 0.07358727604150772, -0.4068193733692169, -0.6281776428222656, -0.09656857699155807, 0.5931329727172852, 0.47585174441337585, -0.12246356904506683, 0.6254754066467285, -0.6926372647285461, 0.45321494340896606, 0.542838990688324, 0.183513343334198, -0.10056966543197632, -0.07736173272132874, -0.39265573024749756, 0.18013186752796173, -0.45375603437423706, -0.7883604168891907, 1.0165491104125977, 0.28933385014533997, 0.7612020969390869, 0.8433309197425842, 0.02221444807946682, 0.4394932687282562, 0.3094758987426758, 0.917759120464325, 0.25651684403419495, -0.9055196642875671, 1.1681437492370605, -0.5515540242195129, 0.13620851933956146, 0.3885546028614044, 0.5323480367660522, -0.5592065453529358, -0.15791994333267212, -0.5944812297821045, -0.9054573178291321, 0.7176756262779236, 0.17559856176376343, 0.2226303070783615, 0.2199016958475113, 0.05627400800585747, 0.49505165219306946, 0.12649871408939362, -0.7757612466812134, -0.4123278558254242, -0.6609037518501282, -0.266524076461792, -0.20441879332065582, -0.0277284923940897, -0.12625901401042938, -0.4197242856025696, 1.160400152206421, -0.27271077036857605, 0.08011675626039505, 0.004647737834602594, 0.1311800330877304, -0.10769158601760864, -0.24698123335838318, 0.4402191638946533, 0.31582823395729065, -0.4885665476322174, -0.10052856802940369, 0.13790757954120636, -0.7934922575950623, 0.002811331767588854, 0.22579997777938843, -0.1406538039445877, 0.2401551455259323, 0.5775783061981201, 0.4184001088142395, -0.3381642997264862, -0.572243332862854, 0.35930588841438293, -0.2283213585615158, 0.198298379778862, -0.3081687092781067, 0.1158042848110199, -0.15490366518497467, 0.25532281398773193, 0.9540896415710449, -0.30380934476852417, 0.23092049360275269, -0.5801146626472473, 0.25501906871795654, 0.3121466338634491, -0.25841858983039856, -0.07888073474168777, 0.7606701850891113, 0.36040574312210083, -0.3458811938762665, 0.9880121350288391, -0.08656401932239532, -0.6656507849693298, 1.2596451044082642, 0.30114567279815674, 0.8255476355552673, -0.2911869287490845, 0.36485740542411804, 0.7982969880104065, 0.5681169629096985, -0.2013438642024994, 0.3150402903556824, -0.08915712684392929, -0.6829081773757935, 0.0724121481180191, -0.8290091156959534, -0.7217330932617188, 0.6105976104736328, -0.895123302936554, 0.47943562269210815, -0.45508331060409546, -0.23078535497188568, 0.04783587530255318, 0.5727481842041016, -0.44817596673965454, 0.3988834023475647, -0.08114484697580338, 1.0446803569793701, -0.8683953881263733, 1.1371296644210815, 0.7868782877922058, -0.8092932105064392, -0.5206611752510071, -0.014115260913968086, -0.23646435141563416, -1.2612873315811157, 0.489228755235672, 0.5808170437812805, 0.35031118988990784, -0.32397711277008057, -0.7991729974746704, -1.023210883140564, 1.2855666875839233, 0.07661738991737366, -0.4391067922115326, 0.33628395199775696, 0.07953591644763947, 0.14167849719524384, -0.21331149339675903, 0.257569819688797, 0.5885864496231079, 0.7424272298812866, -0.4282435476779938, -0.7181903123855591, 0.21582236886024475, -0.5169378519058228, 0.13770607113838196, -0.15589332580566406, -1.1049294471740723, 1.0564078092575073, 0.026744946837425232, -0.10878504067659378, 0.09088525921106339, 0.9953822493553162, 0.5355492830276489, 0.516582190990448, 0.46184325218200684, 0.3523207902908325, 0.6854240298271179, -0.21718710660934448, 0.38661620020866394, -0.1962931752204895, 0.613060712814331, 0.4817189872264862, -0.026457225903868675, 0.5868015289306641, 0.3214668035507202, -0.6203613877296448, 0.6367338299751282, 1.0421754121780396, -0.6406642198562622, 0.7511836290359497, -0.181022509932518, -0.394979327917099, 0.26909443736076355, -0.14660970866680145, -0.5624105334281921, 0.4774356484413147, 0.4722776710987091, -0.41641491651535034, -0.08311265707015991, 0.1539192944765091, -0.037902723997831345, -0.12087836861610413, -0.28781795501708984, 0.481205016374588, 0.03985341265797615, -0.5632097125053406, 0.42214202880859375, 0.03380550444126129, 1.121700406074524, -0.6375381946563721, -0.23363445699214935, -0.40913039445877075, 0.10365705192089081, -0.21106864511966705, -1.0323765277862549, 0.33759093284606934, -0.24595724046230316, -0.09514928609132767, 0.37110260128974915, 0.5745151042938232, -0.23274743556976318, -0.6205480098724365, 0.34994006156921387, 0.08575629442930222, 0.34839317202568054, 0.06897129118442535, -1.1855307817459106, 0.08256057649850845, 0.47599032521247864, -0.5037828087806702, 0.06387926638126373, 0.1913469284772873, -0.08847060799598694, 1.0498985052108765, 1.0268962383270264, 0.25371187925338745, -0.28675687313079834, -0.49820664525032043, 0.8689809441566467, -0.8751547336578369, -0.8002845644950867, -0.6717943549156189, -0.14504152536392212, -0.012824338860809803, -0.30282074213027954, 0.6041743755340576, 0.9577538967132568, 0.940430760383606, 0.014275755733251572, 1.1815295219421387, -0.1458553820848465, 0.36211082339286804, -0.24041534960269928, 0.9469245076179504, -0.4407161772251129, -0.10334298014640808, -0.006710701156407595, -0.7269753813743591, -0.19589336216449738, 0.9300678372383118, 0.20764434337615967, 0.10094040632247925, 0.43785175681114197, 0.9693161845207214, -0.14649029076099396, 0.04672456905245781, 0.03311978280544281, 0.11291725933551788, 0.304942786693573, 0.6120824217796326, 0.3096347451210022, -0.5946245193481445, 0.6906936168670654, -0.9026111364364624, -0.31871676445007324, -0.7974852919578552, -0.6589305996894836, -0.4961041212081909, -0.668933093547821, -0.23504814505577087, -0.5543340444564819, -0.09099271893501282, 0.7495834231376648, 0.5335845947265625, -1.1134135723114014, -0.3732272982597351, 0.22697830200195312, 0.2341485172510147, -0.38381654024124146, -0.30234137177467346, 0.9974113702774048, 0.15416905283927917, -1.0054000616073608, 0.10598478466272354, -0.11246448755264282, 0.13837169110774994, -0.29400065541267395, 0.062022145837545395, -0.30176669359207153, 0.16631759703159332, 0.21661992371082306, 0.8027564883232117, -0.5642398595809937, 0.17678485810756683, -0.26771602034568787, -0.7228990197181702, 0.059449005872011185, 0.22519688308238983, -0.7891017198562622, 0.18946069478988647, 0.575931191444397, 0.05328672006726265, 0.2824566960334778, -0.12286638468503952, 0.39835190773010254, -0.4344417452812195, 0.49980270862579346, 0.011462192982435226, 0.6767080426216125, 0.3609669804573059, -0.6198083758354187, 0.9522388577461243, 0.2854281961917877, -0.4658351242542267, -0.752534806728363, -0.30633464455604553, -1.2328754663467407, -0.3451261818408966, 1.031957983970642, -0.011580072343349457, -0.6554882526397705, 0.05738577991724014, -0.5590839385986328, 0.9811365604400635, -0.8701984286308289, 0.9167625904083252, 0.2876489460468292, -0.09952356666326523, 0.30568426847457886, -0.8329649567604065, 0.46022361516952515, 0.17380359768867493, -0.7555226683616638, -0.5320693850517273, -0.329335480928421, 0.07877150177955627, 0.347537636756897, 0.4874371290206909, 0.32083800435066223, 0.16525569558143616, 0.102108895778656, 0.4715312123298645, -0.03767339512705803, 0.36751702427864075, -0.20825928449630737, -0.13311775028705597, -0.46000033617019653, -1.0049768686294556 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
shi3z/anthropic_hh_rlhf_japanese
shi3z
2023-06-29T01:19:09Z
232
9
null
[ "license:mit", "region:us" ]
2023-06-29T01:19:09Z
2023-06-29T00:07:38.000Z
2023-06-29T00:07:38
--- license: mit --- https://huggingface.co/datasets/Anthropic/hh-rlhf Japanese Translation
[ -0.37389400601387024, -0.8513153791427612, 0.36161118745803833, 0.3105812072753906, -0.43367525935173035, -0.09401389956474304, 0.0672091469168663, -0.8666285872459412, 0.8005080223083496, 0.7522828578948975, -1.3755205869674683, -0.8671518564224243, -0.4672643840312958, 0.28873464465141296, -0.05632028728723526, 1.0564712285995483, -0.3223108947277069, 0.19243866205215454, -0.26876863837242126, -0.6072366833686829, 0.17089641094207764, -0.0886475220322609, -0.5328112840652466, -0.663838267326355, 0.7136865854263306, 0.46509212255477905, 1.3316218852996826, 1.014107584953308, 0.8889577388763428, -0.04027118533849716, 0.4462546706199646, -0.3638826906681061, -0.38953354954719543, 0.08229866623878479, -0.020725315436720848, -0.21648502349853516, -0.8771417737007141, 0.07748190313577652, 0.7836489081382751, 0.8949118852615356, -0.44278520345687866, 0.3966832458972931, -0.31375861167907715, 0.7600775361061096, -0.18448399007320404, 0.3349247872829437, 0.35927614569664, 0.6309456825256348, -0.49549663066864014, 0.1314428448677063, 0.09307608008384705, -0.16498295962810516, -0.20952415466308594, -1.2663871049880981, -0.0014546862803399563, 0.5579299926757812, 1.0464284420013428, 0.4099215567111969, -0.5520936250686646, 0.2268090695142746, 0.0217494647949934, 0.5006210803985596, -0.48389264941215515, 0.48972243070602417, 1.0164172649383545, 0.36361590027809143, -0.4772908389568329, -0.45677632093429565, -0.41738027334213257, 0.12201867252588272, -0.34556958079338074, 0.3039098381996155, 0.22970765829086304, 0.012664039619266987, 0.5096586346626282, 0.7282450199127197, -0.7602550387382507, -0.33708304166793823, -0.12388023734092712, -0.5231906771659851, 1.0314241647720337, 0.22332292795181274, 1.1245801448822021, -0.6565943956375122, -0.08541680872440338, -0.5695820450782776, -0.7985266447067261, -0.30451327562332153, 0.12577281892299652, 0.5709031224250793, -1.0720362663269043, 0.7920981049537659, -0.28553506731987, 0.7241285443305969, -0.3527038097381592, -0.28388383984565735, 0.6997283697128296, -0.2442348748445511, 0.018019281327724457, -0.04748057574033737, 0.8338812589645386, 0.6184341311454773, 0.4107940196990967, 0.05542875826358795, -0.12506020069122314, -0.5017498731613159, -0.04464057460427284, -1.1997580528259277, -0.48982301354408264, -0.05273520573973656, -0.8305371999740601, -0.242376908659935, 0.09185409545898438, -1.0528415441513062, -0.19926439225673676, 0.058192942291498184, -0.16686919331550598, 0.01665748842060566, -0.5877026915550232, 0.02203614078462124, -0.14705319702625275, 0.1779743731021881, 0.008904744870960712, -0.4056152403354645, 0.35900285840034485, 0.37964561581611633, 0.863541305065155, -0.08070117235183716, -0.40960919857025146, -0.3740193843841553, -0.03493782505393028, -0.2296835482120514, 0.3042370676994324, -0.40302538871765137, -0.6749411821365356, 0.09807323664426804, 0.6698493957519531, 0.033724259585142136, -0.45690062642097473, 0.6835909485816956, -0.320128858089447, 0.18381080031394958, -0.5404626727104187, -0.18094921112060547, -0.089579738676548, 0.13259126245975494, -0.7946444153785706, 1.2560771703720093, 0.4762623906135559, -1.013349175453186, 0.18383952975273132, -0.6214449405670166, -0.5779268741607666, 0.14923237264156342, 0.10013338923454285, -0.8152758479118347, -0.2841988801956177, 0.13024809956550598, 0.2628360688686371, -0.21428091824054718, 0.0476706437766552, -1.0092861652374268, 0.28833237290382385, 0.2048538625240326, 0.2441641241312027, 0.8037203550338745, 0.45402684807777405, 0.1553942859172821, 0.33839091658592224, -0.7634764313697815, -0.35195058584213257, 0.6915937662124634, -0.06937748938798904, -0.4339486360549927, -0.4024512767791748, 0.512398898601532, 0.2652588486671448, 0.46013155579566956, -0.7745276093482971, 0.10690809786319733, -0.03726677596569061, 0.24346217513084412, 0.3117852807044983, 0.29274365305900574, 0.33233970403671265, -0.4830857515335083, 0.9964855909347534, -0.1023830845952034, 0.25391846895217896, -0.1310819536447525, -0.8409448862075806, -0.2449416220188141, -0.22300638258457184, -0.13976018130779266, 0.6331737041473389, -1.0615063905715942, 0.49807825684547424, 0.05737095698714256, -0.654521107673645, -0.5926963686943054, -0.10978862643241882, 0.5201185941696167, 0.5429449677467346, 0.3101082444190979, -0.24278029799461365, -0.5405422449111938, -0.7866079211235046, 0.1209687888622284, 0.009235145524144173, 0.22616387903690338, 0.4842338263988495, 0.7620429992675781, -0.4907979965209961, 0.6748705506324768, -0.5922097563743591, 0.04597478732466698, 0.2953258752822876, -0.21478064358234406, 0.474112868309021, 0.6486983299255371, 0.7368322014808655, -0.9367808103561401, -0.8344694972038269, 0.21692991256713867, -0.9999135732650757, -0.31628063321113586, 0.31456881761550903, -0.9575028419494629, -0.03354795649647713, 0.09069187939167023, -0.8137707114219666, 0.729310929775238, 0.7362551689147949, -0.616716742515564, 0.4352295696735382, 0.07564150542020798, 0.288941890001297, -1.4062535762786865, 0.7172840237617493, 0.11197660863399506, -1.0123413801193237, -0.1694595366716385, 0.8553520441055298, 0.38125038146972656, -0.43765777349472046, -0.5791780948638916, 0.8211960196495056, -0.6391890048980713, -0.310464471578598, -0.11152233183383942, 0.18042941391468048, -0.30754154920578003, 0.21754954755306244, 0.11731695383787155, 1.0301401615142822, 0.5017774701118469, -0.28578895330429077, 0.8347744345664978, 1.0705486536026, -0.14385096728801727, 0.6497668623924255, -0.8023661971092224, 0.046120256185531616, 0.10259491950273514, 0.7349776029586792, -0.6263290643692017, -1.0936634540557861, 0.8348498940467834, -0.5425044298171997, 0.03418807312846184, -0.06335733085870743, -0.38936302065849304, -0.6094793081283569, -0.33697307109832764, 0.7543942928314209, 0.5470148324966431, -0.6170654296875, 0.17677339911460876, 0.7110563516616821, -0.4171959459781647, -0.4593728482723236, -0.78449547290802, 0.19714118540287018, -0.3803092837333679, 0.025110995396971703, 0.3591577410697937, 0.019163429737091064, -0.11604483425617218, 0.18957865238189697, -0.07060597091913223, -0.06554847955703735, -0.06335094571113586, 0.3006003201007843, 0.6163296103477478, -0.30521315336227417, -0.3631921112537384, -0.12339954078197479, -0.10365920513868332, 0.31642216444015503, 0.19186976552009583, 0.3801197111606598, 0.296371191740036, -0.018642084673047066, -0.7369880676269531, 0.34909722208976746, 0.6958398222923279, 0.5010839700698853, 0.7317780256271362, 0.691489577293396, -0.7583374977111816, 0.5613895654678345, -0.13735227286815643, -0.22496791183948517, -0.26707687973976135, 0.18011289834976196, -0.6363183259963989, -0.5094012022018433, 0.9355857968330383, 0.3287016451358795, -0.5036439299583435, 0.9063339233398438, 0.19652484357357025, -0.0887727215886116, 1.2080022096633911, 0.634872555732727, -0.4648354947566986, 0.38985344767570496, 0.18544286489486694, -0.32000452280044556, -0.8069657683372498, -0.31050005555152893, -0.4012720286846161, -0.12234076112508774, -0.9135158061981201, -0.292616605758667, 0.29895150661468506, -0.11936059594154358, -0.352248877286911, 0.5238288640975952, -0.40962687134742737, 0.3802238404750824, 0.2744545638561249, 0.5119719505310059, 0.31226861476898193, 0.09353730827569962, 0.27161577343940735, -0.3463509976863861, -0.4804271161556244, 0.056395743042230606, 0.7427454590797424, 0.7436642050743103, 0.8651846647262573, 0.27930471301078796, 0.4541882872581482, 0.11705248802900314, 0.48808616399765015, -0.7972732782363892, 0.3882463276386261, -0.07330679148435593, -0.7828842401504517, -0.4008684456348419, -0.7476913332939148, -0.829458475112915, -0.06847670674324036, -0.47089362144470215, -0.07957881689071655, -0.09617945551872253, -0.06905783712863922, 0.1154191717505455, 0.07848287373781204, 0.03161395713686943, 0.9098109602928162, -0.056941986083984375, -0.34884878993034363, -0.33034220337867737, -1.135894775390625, 0.44697391986846924, 0.08886414766311646, 0.29193583130836487, -0.45804667472839355, -0.03795010596513748, 0.9809617400169373, -0.41351720690727234, 0.7462747097015381, -0.5178728699684143, -0.2765314280986786, -0.20551596581935883, -0.13746081292629242, 0.2725919783115387, 0.26613375544548035, -0.197177916765213, 0.3168177008628845, 0.1476331651210785, -0.708987295627594, -0.03827463462948799, 0.43675240874290466, -1.0909819602966309, -0.10444775968790054, -0.6536539196968079, -0.6035276055335999, 0.010404964908957481, 0.5506271719932556, 0.38210293650627136, 0.24368134140968323, -0.7123695611953735, 0.32022711634635925, 0.6639980673789978, -0.14869406819343567, 0.09634505212306976, 0.49291935563087463, -0.9783664345741272, -1.0468528270721436, 0.3583148419857025, -0.330559104681015, 0.06700609624385834, 0.6167856454849243, 0.5312138795852661, -0.668586254119873, 0.17235006392002106, -1.1140899658203125, 0.8179646134376526, -0.44824159145355225, -0.41955330967903137, -0.3802016079425812, -0.2028018981218338, -0.5945945978164673, 0.010705254971981049, -0.27224045991897583, -0.49131253361701965, -0.23523128032684326, -0.15065255761146545, 0.866141140460968, 0.5983138084411621, -0.11494381725788116, 0.4684901833534241, -0.8486489057540894, 0.8349385261535645, -0.33914273977279663, 0.45822179317474365, -0.6022574305534363, -0.6802773475646973, -0.5915703773498535, 0.2126440852880478, 0.199149489402771, -0.8222249746322632, 0.7515795230865479, 0.27845802903175354, 0.5871185064315796, -0.11535456776618958, -0.003579261014238, 1.0937752723693848, -0.2538706064224243, 0.4280775785446167, 0.6670887470245361, -0.7130259275436401, 0.7795636653900146, -0.820854127407074, 0.5213725566864014, 0.7434628009796143, 0.6369189023971558, -0.8443322777748108, 0.0990162193775177, -0.7403591871261597, -0.8287341594696045, 0.8181934952735901, -0.22783733904361725, -0.1581595540046692, 0.5382660627365112, 0.8786728978157043, 0.347322016954422, 0.23527631163597107, -0.7157741189002991, -0.5386589765548706, -0.31626537442207336, -0.6547353863716125, -0.24715964496135712, -0.034883059561252594, -0.24815857410430908, -0.4366057217121124, 0.8969905376434326, -0.23749954998493195, 0.0363839715719223, 0.24883174896240234, -0.06898543238639832, -0.816493570804596, -0.3466673791408539, 0.3539067208766937, 0.3976772129535675, -0.43791520595550537, -0.081657275557518, -0.15438826382160187, -0.7908443808555603, -0.1053864136338234, 0.21723572909832, -0.32684189081192017, -0.20659245550632477, 0.5647811889648438, 0.951215922832489, 0.30140745639801025, -0.39107367396354675, 0.20687532424926758, -0.020804421976208687, -0.10294564068317413, -0.6151906251907349, 0.055840492248535156, 0.10271137952804565, -0.2616609036922455, 0.22648607194423676, -0.2992745041847229, 0.23189100623130798, -0.7465074062347412, 0.5555922389030457, 0.009655658155679703, -0.3778899610042572, -0.5115236043930054, 0.5770418643951416, 0.5363765358924866, -0.33087053894996643, 1.0768976211547852, -0.23803439736366272, -0.2947072982788086, 0.5413342118263245, 0.7860246896743774, 0.9318565726280212, -0.6846967339515686, 0.378205269575119, 1.098320722579956, -0.14479176700115204, -0.1552036702632904, 0.317666232585907, -0.31034332513809204, -0.7802128195762634, -0.3119117021560669, -0.8281853795051575, -0.7831620573997498, 0.04789431393146515, -1.2805407047271729, 0.12391859292984009, -0.4145864248275757, -0.010533921420574188, -0.4530845582485199, 0.0046132514253258705, -0.4762173295021057, 0.3254562020301819, 0.04779201000928879, 1.085417628288269, -1.2170876264572144, 0.956744909286499, 1.1770782470703125, -0.4513256549835205, -0.607239305973053, 0.1572006344795227, 0.046859338879585266, -1.306248426437378, 0.034137919545173645, 0.022310858592391014, -0.04839225858449936, 0.14745186269283295, -0.6376503109931946, -1.0176901817321777, 1.0773882865905762, 0.29997849464416504, -0.6488532423973083, 0.15387989580631256, 0.008330355398356915, 0.3217110335826874, -0.36892497539520264, -0.1266876459121704, 0.8355745673179626, 0.9757314920425415, 0.007196568418294191, -0.9192612171173096, 0.19876737892627716, -0.7262088060379028, 0.021352315321564674, 0.33310943841934204, -0.5873607993125916, 0.3095305263996124, -0.049547404050827026, -0.34015464782714844, 0.12407954037189484, 0.9104387164115906, 0.4838215112686157, 0.690722644329071, 0.4386785328388214, 0.9205852150917053, 0.35611671209335327, -0.0015272683231160045, 1.1158710718154907, -0.12859752774238586, 0.5725803971290588, 1.0689135789871216, -0.25576865673065186, 0.8997141718864441, 0.557022213935852, -0.5086107850074768, 0.5707069039344788, 1.0371471643447876, 0.12128718942403793, 0.518557608127594, -0.1720786988735199, -0.15919606387615204, -0.01981414668262005, -0.5402460694313049, -0.5160701274871826, 0.37275826930999756, 0.5177178382873535, 0.18228846788406372, -0.09755848348140717, 0.32967713475227356, 0.4082860052585602, 0.32580262422561646, -0.18902920186519623, 0.8081712126731873, 0.4930262863636017, -0.7228333950042725, 0.3615722358226776, -0.19867496192455292, 0.6427906155586243, -0.5212915539741516, 0.06438623368740082, -0.16429942846298218, -0.03021886758506298, -0.37624403834342957, -1.2920610904693604, 0.8831067681312561, -0.17574304342269897, -0.17049792408943176, -0.4614269733428955, 0.8115578293800354, -0.7763733863830566, -0.39511120319366455, 0.4443821310997009, 0.6819077730178833, 0.3726441264152527, 0.3724343180656433, -1.3753373622894287, 0.22401496767997742, 0.37260279059410095, -0.4985940158367157, 0.24787570536136627, -0.22352191805839539, 0.009302041493356228, 0.7253943085670471, 0.39307138323783875, 0.24166038632392883, -0.41930001974105835, 0.2519441246986389, 0.12550996243953705, -1.0352150201797485, -0.786862850189209, -0.40273308753967285, 0.12164522707462311, -0.23607856035232544, -0.46361568570137024, 0.8388625383377075, 0.5987319350242615, 0.6493932604789734, -0.3461949825286865, 0.5571460723876953, -0.2889443039894104, 0.46348604559898376, -0.6197381019592285, 0.8240247368812561, -0.6153216361999512, -0.977141261100769, 0.10265426337718964, -0.8829253911972046, -0.5902721881866455, 0.9421334862709045, 0.17446856200695038, 0.0650254413485527, 0.9158093929290771, 0.8099006414413452, -0.3378875255584717, 0.019147951155900955, 0.18677468597888947, 0.284872829914093, -0.028352543711662292, 0.09888309985399246, 0.42504385113716125, -0.5368855595588684, -0.3239143490791321, -0.7830685377120972, -0.2700624465942383, -0.3576463460922241, -1.0070314407348633, -0.6336312294006348, -0.7303308248519897, -0.6324223279953003, -0.36712515354156494, -0.22568081319332123, 1.0647556781768799, 0.9142361283302307, -0.8723323345184326, -0.4227190911769867, -0.1336248368024826, -0.18394753336906433, -0.005686790682375431, -0.2851836681365967, 0.3499217629432678, 0.4708396792411804, -0.7418578863143921, 0.25534456968307495, 0.07482032477855682, 0.27515876293182373, -0.16125942766666412, -0.3141660988330841, 0.0004576372739393264, -0.3717028498649597, 0.21612849831581116, 0.582556426525116, -0.6290003061294556, -0.4121900498867035, -0.4076511263847351, -0.42691776156425476, -0.05511223524808884, 0.6431747674942017, -0.15624648332595825, 0.06045270711183548, 0.7416483163833618, 0.5591960549354553, 0.7637692093849182, 0.25670018792152405, 0.3795016407966614, -0.7392573952674866, 0.3845033347606659, -0.2768481969833374, 0.5677536725997925, 0.7271354794502258, -0.7141737937927246, 0.9656389355659485, 0.7413522005081177, -0.5661124587059021, -0.6770463585853577, 0.33281493186950684, -1.4191924333572388, 0.20095184445381165, 0.7872364521026611, -0.16061772406101227, -0.742780327796936, 0.2759802043437958, -0.2627013325691223, 0.7903853058815002, -0.5591951012611389, 0.5848797559738159, 0.7357761263847351, -0.0356234610080719, -0.607896089553833, -0.7843754291534424, 0.40736985206604004, 0.24939043819904327, -1.1528370380401611, 0.11405292898416519, 0.6078546643257141, 0.23781904578208923, 0.19244271516799927, 0.8347688913345337, -0.3886382281780243, 0.41747528314590454, 0.026334917172789574, 0.5833503603935242, 0.09579762071371078, -0.08663608878850937, -0.25924819707870483, -0.4018515646457672, -0.15594817698001862, -0.15520550310611725 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
philikai/spider_SQL_PALM_Prompt
philikai
2023-09-11T13:40:51Z
232
0
null
[ "license:mit", "region:us" ]
2023-09-11T13:40:51Z
2023-09-07T18:43:07.000Z
2023-09-07T18:43:07
--- license: mit --- Dataset for creating prompts for fine-tuning on Spider Dataset with Foreign and Primary Key Information as well as Schema information.
[ -0.5227136015892029, -0.20860764384269714, 0.14873820543289185, 0.19711433351039886, -0.2564198970794678, -0.148071750998497, -0.09210336953401566, 0.24537955224514008, 0.3281663656234741, 0.5395285487174988, -1.1277915239334106, -0.41688111424446106, -0.11086223274469376, 0.5122023820877075, -0.08020512014627457, 1.3341317176818848, 0.14761175215244293, -0.007939454168081284, 0.1784033328294754, -0.12909136712551117, -0.740907609462738, -0.07502912729978561, -0.8748977184295654, 0.12755851447582245, 0.8762365579605103, 1.431952714920044, 0.6550828218460083, 0.8987072706222534, 0.8860992193222046, 0.0668267235159874, -0.011753370054066181, 0.722560465335846, -0.3858731687068939, 0.5987687706947327, -1.1729986667633057, -0.3600050210952759, -0.09287227690219879, -0.12085747718811035, 0.5745347142219543, 0.8620196580886841, 0.3329099416732788, 0.8282845616340637, 0.03606315329670906, 0.7787763476371765, -0.7615939378738403, 0.1610756367444992, -0.7175878286361694, 0.21683551371097565, -0.4577470123767853, -0.9044827222824097, -0.16927185654640198, -0.3344109058380127, 0.10005326569080353, -1.0132514238357544, 0.5299274921417236, 0.23243877291679382, 1.060911774635315, 0.34736305475234985, -0.7548078298568726, -0.34067389369010925, -0.5236573219299316, 0.09733821451663971, 0.19681133329868317, 0.10052232444286346, 0.41882702708244324, 0.47185760736465454, -0.284216970205307, -0.5572515726089478, -0.3010835349559784, 0.13229991495609283, -0.14812050759792328, -0.0186767615377903, 0.17701581120491028, -0.2060994952917099, 0.5279356837272644, 0.6179319024085999, -0.4884926378726959, -0.12481455504894257, -0.6670037508010864, -0.10763770341873169, 0.6698723435401917, 1.1965739727020264, -0.05031528323888779, -0.07417123019695282, 0.16812235116958618, -0.27588075399398804, -0.9766758680343628, 0.17190691828727722, 0.5380925536155701, 1.1558713912963867, -0.27996233105659485, 0.6840909123420715, -1.035412311553955, 0.8179747462272644, 0.5943487882614136, 0.14938762784004211, 0.03457479551434517, -0.7343902587890625, 0.22695784270763397, -0.013412575237452984, 0.17332932353019714, 1.0677382946014404, 0.630669116973877, -0.26522648334503174, 0.19560670852661133, 0.25728631019592285, 0.21659362316131592, -0.8060643672943115, -0.6660394072532654, 0.2711373269557953, -0.5948633551597595, -0.1518070101737976, 0.1988636702299118, -0.9798762202262878, -1.0747727155685425, -0.9545072317123413, 0.14848628640174866, -0.17433038353919983, -0.2739337682723999, -0.03247467800974846, -0.6835687756538391, 0.326427698135376, 0.042168207466602325, -0.904589056968689, 0.5612261295318604, 0.300667405128479, 0.8348997831344604, -0.21142758429050446, -0.4001729190349579, -0.378099650144577, 0.5186583995819092, -0.5428438782691956, 0.7395833134651184, -0.4493122696876526, -0.46170109510421753, 0.0792936310172081, 0.7596644759178162, 0.22707530856132507, -0.32866841554641724, 0.12936802208423615, -0.27183660864830017, -0.024631980806589127, -0.7034894227981567, -0.30187147855758667, 0.0923602357506752, 0.21922852098941803, -0.6378828883171082, 0.8298770189285278, 0.34518441557884216, -0.9469497799873352, 0.9359619617462158, -0.8114076256752014, -0.560775876045227, 0.1378776729106903, 0.00869802851229906, -0.002957430435344577, 0.006878972053527832, 0.1770012229681015, 0.44973433017730713, -0.6171810626983643, -0.11308693140745163, -0.20353715121746063, -0.18669283390045166, -0.08367056399583817, 0.21912190318107605, 0.6420872211456299, 0.6618636846542358, -0.03153010830283165, 0.20445920526981354, -1.1497704982757568, -0.04732931777834892, 0.4171113073825836, -0.0072201574221253395, -0.18277885019779205, 0.020564161241054535, -0.28182390332221985, -0.10935916751623154, 0.4368729293346405, -0.2648719251155853, 0.6983789801597595, -0.127580925822258, 0.12446202337741852, 0.7644123435020447, 0.5968412160873413, 0.35662323236465454, -0.38515013456344604, 0.4945090711116791, 0.3312262296676636, 0.29439759254455566, -0.16256237030029297, -0.1791101098060608, -0.9760565161705017, 0.3396111726760864, 0.3367312550544739, 0.7859523296356201, -0.4590086340904236, 0.43627139925956726, -0.39436614513397217, -0.6239753365516663, -0.31717321276664734, 0.0743192657828331, 0.07827439904212952, 0.5289794206619263, 0.2136833369731903, 0.0009477385319769382, -0.5441441535949707, -1.1910264492034912, 0.11738020926713943, 0.5195459127426147, -0.14196409285068512, 0.5070937871932983, 0.6515763401985168, -0.012553073465824127, 1.179459810256958, -0.9490290880203247, -0.32718050479888916, 0.3387717604637146, -0.012036277912557125, 0.5616163611412048, 0.5618935823440552, 0.3514525890350342, -0.7446567416191101, -0.6239171624183655, -0.11329642683267593, -0.2685089707374573, 0.07740267366170883, 0.007056799251586199, -0.3010770082473755, -0.077695831656456, 0.16401560604572296, -0.5409274101257324, 0.40604060888290405, 0.2074689269065857, -0.7137272357940674, 0.5321120619773865, -0.1426866203546524, 0.7164623737335205, -1.7060596942901611, 0.43913742899894714, -0.08187344670295715, 0.08022762089967728, -0.25279566645622253, 0.029746349900960922, -0.04087812453508377, -0.4439712464809418, 0.10138546675443649, 0.443663090467453, -0.5664641857147217, -0.00212749931961298, -0.07206487655639648, 0.22767195105552673, -0.145164355635643, 0.26346448063850403, 0.15982510149478912, 1.2344975471496582, 0.8810227513313293, -0.8706411719322205, 0.6624776721000671, 0.3741411864757538, -0.15309123694896698, 0.982528805732727, -0.6273218393325806, 0.22757810354232788, 0.06369506567716599, -0.16868634521961212, -0.852622389793396, -0.8167107701301575, 0.5364158749580383, -0.29351702332496643, -0.05704305320978165, -0.5723636746406555, -0.75862056016922, -0.5614902377128601, -0.18882344663143158, 0.08090490102767944, -0.011438511312007904, -0.43810632824897766, -0.056912992149591446, 0.3111517131328583, -0.40101659297943115, -0.3483540713787079, -0.04613306373357773, 0.06563155353069305, -0.503884494304657, -0.5991852879524231, 0.20121587812900543, 0.05018796771764755, -0.06852660328149796, -0.30776238441467285, 0.0873429998755455, -0.2263486534357071, -0.09556303173303604, 0.5780001878738403, -0.06687162071466446, -0.10171336680650711, 0.49041226506233215, -0.004720626398921013, -0.5321413278579712, -0.18295599520206451, -0.10029332339763641, 0.6321138739585876, -0.07079768180847168, -0.02878289297223091, -0.3684619963169098, 0.788948118686676, 0.43546807765960693, -0.08860830962657928, 0.26697856187820435, 0.10939578711986542, -0.6113741397857666, -0.2339681088924408, 0.17119920253753662, -0.5838347673416138, -0.4697185456752777, -0.16294653713703156, -1.0989056825637817, -0.3341565430164337, 0.7583924531936646, -0.2510201632976532, -0.2757398188114166, 0.3738272488117218, 0.5955357551574707, 0.09156389534473419, 1.3992812633514404, 0.4534918963909149, -0.1710599958896637, 0.31514641642570496, -0.27253130078315735, -0.1402948647737503, -0.6104950308799744, 0.057674340903759, -0.9373588562011719, -0.2767537534236908, -0.6794090270996094, 0.11947460472583771, 0.17580005526542664, 0.1365732103586197, -0.925700306892395, 0.5251520872116089, -1.1701247692108154, 0.7791367769241333, 1.022204041481018, 0.5193251371383667, 0.01087100338190794, 0.14172644913196564, -0.3099483847618103, -0.019048094749450684, -0.5065485835075378, -0.36705708503723145, 1.2045551538467407, -0.09571636468172073, 0.9163717031478882, -0.1436598151922226, 0.15457534790039062, 0.4955088496208191, -0.4582245945930481, -0.406401127576828, 0.3358469307422638, -0.13303615152835846, -0.8183943629264832, -0.17835301160812378, 0.004222010727971792, -1.2209208011627197, -0.55632084608078, -0.15398071706295013, -0.7996945977210999, 0.47978365421295166, 0.42346084117889404, -0.5450536608695984, -0.25657397508621216, -0.3438367545604706, 0.8506291508674622, 0.21670910716056824, -0.22846871614456177, -0.18953800201416016, -0.9047331213951111, -0.1278541535139084, 0.40085530281066895, -0.5625792145729065, 0.02408282458782196, -0.19418427348136902, 0.595731258392334, -0.7076122760772705, 0.6467182636260986, -0.4425874948501587, 0.12180918455123901, 0.1497977077960968, 0.1097356379032135, 0.7382935285568237, 0.4159603714942932, -0.04664948955178261, -0.35881537199020386, 0.2117428183555603, 0.034178443253040314, -0.2376258224248886, 0.5644399523735046, -0.46456658840179443, -0.2602084279060364, -0.42091134190559387, -0.6069560050964355, -0.42914044857025146, -0.020664071664214134, 0.41558825969696045, 0.49702730774879456, 0.6127053499221802, 0.4677979648113251, 0.5809260606765747, 0.03301200270652771, -0.24999961256980896, 0.8253461122512817, 0.22530414164066315, -0.6027117967605591, 1.06843101978302, 0.16680413484573364, -0.1312510371208191, -0.15067794919013977, 0.1509130299091339, -0.18183232843875885, -0.23692229390144348, -0.6240664720535278, -0.16168071329593658, -0.7473839521408081, -0.6733946204185486, -0.08498970419168472, -0.06057579070329666, -0.550797700881958, -0.2056025117635727, 0.26962825655937195, -0.5297201871871948, -0.4503338932991028, 0.009329123422503471, 1.2830963134765625, 0.5227999687194824, -0.40449368953704834, 0.6885250210762024, -0.8372107744216919, 0.5745561718940735, 0.030269352719187737, 0.7478378415107727, -0.5468305945396423, -0.20444409549236298, -0.40556222200393677, 0.2769889831542969, -0.241798996925354, -1.1663382053375244, -0.21824078261852264, 0.19853967428207397, 0.32319971919059753, 0.5469521284103394, 0.0012798967072740197, 0.7755637168884277, -0.39478835463523865, 1.0268272161483765, -0.1903165876865387, -0.6434711217880249, 1.3791180849075317, -0.9660860300064087, 0.2787432074546814, 1.0351030826568604, 0.8258954882621765, -0.6235026121139526, -0.036276739090681076, -0.5775895118713379, -0.6542900800704956, 1.0214937925338745, -0.28576409816741943, -0.2195146530866623, 0.01132328063249588, 0.4400949776172638, 0.2150898575782776, 0.19587688148021698, -0.05548200011253357, -0.6571747064590454, 0.056043513119220734, -0.42542412877082825, 0.16618621349334717, 0.054374948143959045, -0.5481165051460266, -0.5960632562637329, 0.41181349754333496, -0.5587285757064819, -0.06421799212694168, 0.05941648781299591, 0.2071792036294937, -0.32316336035728455, -0.22468382120132446, 0.38063469529151917, 0.7772045731544495, -0.1265634447336197, -0.29977521300315857, 0.25024983286857605, -0.2331146001815796, 0.12943436205387115, 0.024824658408761024, -0.24882017076015472, -0.36348670721054077, -0.00025792367523536086, 0.44000139832496643, -0.25476858019828796, -0.3925248384475708, 0.129416823387146, 0.08475051820278168, 0.21508772671222687, -0.15687593817710876, 0.3482760787010193, -0.058240994811058044, -0.04602114483714104, 0.32613933086395264, -0.22397087514400482, 0.6761807799339294, -0.41096824407577515, 0.38963907957077026, 0.19581283628940582, -0.3216813802719116, 0.01891392096877098, 0.23525354266166687, 0.29013222455978394, -0.34356385469436646, 0.8644090294837952, -0.10932845622301102, -0.20472756028175354, 0.64186030626297, 0.3795737028121948, 0.5599032640457153, -0.18619804084300995, 0.28766003251075745, 0.6232907772064209, 0.17276158928871155, 0.5080949068069458, 0.901870846748352, -0.41990727186203003, -0.4745423495769501, 0.1935892403125763, -0.3890801668167114, -0.6537564992904663, 0.052016519010066986, -0.715562641620636, 0.7457455992698669, -0.6800057888031006, -0.3326469361782074, 0.023302718997001648, 0.45490777492523193, -0.9124362468719482, 0.6544128060340881, -0.18920479714870453, 1.36089026927948, -0.6455305218696594, 0.4324028491973877, 0.7905887961387634, -0.8906590938568115, -0.8302093744277954, -0.41700857877731323, -0.0660492330789566, -0.4383859932422638, 0.762619137763977, -0.03360060229897499, 0.006217771675437689, -0.08924843370914459, -0.6168645024299622, -1.0371026992797852, 1.0174063444137573, 0.17904871702194214, -0.5640716552734375, -0.11546792834997177, 0.5418019890785217, 0.24839286506175995, -0.407830148935318, 0.035859864205121994, 0.7951251268386841, 0.708092451095581, -0.4058288037776947, -0.941628098487854, 0.1340121626853943, -0.4256729781627655, -0.3798512816429138, 0.21949633955955505, -0.648664653301239, 0.9701645374298096, 0.0515458844602108, -0.4350893199443817, 0.06113409623503685, 0.428347647190094, 0.1678667962551117, 0.003921410068869591, 0.8262932896614075, 0.1687362641096115, 0.8495644927024841, -0.534137487411499, 0.8274833559989929, -1.01326322555542, -0.03383767232298851, 1.4183350801467896, -0.3244553208351135, 0.3403075039386749, 0.3791980743408203, -0.10170618444681168, 0.30312663316726685, 1.2245538234710693, -0.43393760919570923, 0.5947951078414917, 0.39592260122299194, 0.0998346209526062, -0.319828599691391, -0.41768530011177063, -0.6143074035644531, 0.30325719714164734, 0.6439128518104553, -0.4057063162326813, -0.46063360571861267, -0.05419390648603439, -0.1770302951335907, -0.15805286169052124, -0.4172249734401703, 1.2430579662322998, -0.37711837887763977, -0.6937791705131531, 0.2644061744213104, -0.3530724048614502, 0.3437030613422394, -0.6774941682815552, -0.09174451977014542, -0.27585527300834656, 0.149635910987854, -0.18092530965805054, -1.439184546470642, 0.16749727725982666, -0.18380440771579742, -0.681376039981842, 0.36702367663383484, 0.744570791721344, -0.17835019528865814, -0.3792929947376251, -0.1974860280752182, -0.10060856491327286, 0.10615923255681992, -0.014186080545186996, -0.7281737923622131, -0.30687186121940613, -0.3050726652145386, -0.11280355602502823, -0.299510657787323, 0.5937910676002502, -0.060300447046756744, 0.922469973564148, 0.4730706810951233, 0.5314980745315552, -0.161941260099411, 0.009820083156228065, 0.8539062738418579, -0.6787348389625549, -0.7467252612113953, -0.22019508481025696, 0.8296879529953003, -0.7615265846252441, -1.1473329067230225, 0.8197203278541565, 0.7894647717475891, 0.4907686114311218, -0.4450500011444092, 0.6839267015457153, -0.06434305757284164, 0.9144508242607117, -0.41250547766685486, 0.4661020040512085, -0.435844749212265, -0.6313987970352173, 0.040924061089754105, -0.7603057622909546, -0.08649459481239319, 0.408064603805542, 0.21280798316001892, -0.30690261721611023, 0.2644733786582947, 1.383577823638916, -0.13427619636058807, 0.27787649631500244, -0.5147801637649536, -0.03914598375558853, -0.04355267062783241, 0.4010566771030426, 0.7637234926223755, -0.1924392580986023, 0.27363961935043335, -0.5872540473937988, -0.12722830474376678, -0.5055494904518127, -0.5124956369400024, -0.809478223323822, -1.0879546403884888, -0.17673903703689575, -0.34635037183761597, 0.44208553433418274, 1.0428287982940674, 0.9483727216720581, -1.2361500263214111, 0.10667110979557037, -0.08337821066379547, -0.12827980518341064, 0.016792042180895805, -0.3103533685207367, 0.5317851901054382, -0.5968748927116394, -0.4735966622829437, 0.2807301878929138, -0.015181967057287693, 0.09216398745775223, -0.248090922832489, 0.05087634548544884, 0.11186812072992325, 0.09727437794208527, 0.1680671125650406, 0.1674937605857849, -0.16439132392406464, -0.6622031927108765, -0.21606606245040894, -0.060570232570171356, -0.11368165910243988, 1.0488373041152954, -0.6158655285835266, 0.12484288960695267, 0.8188769817352295, -0.1294787973165512, -0.07581854611635208, 0.08645756542682648, 0.9956313967704773, -0.8823012113571167, 0.2385707050561905, -0.1431051343679428, 0.5190654993057251, 0.11422552168369293, -0.6955354809761047, 0.8749772310256958, -0.1347116082906723, -0.6528974175453186, -0.8618806004524231, 0.08338293433189392, -1.0133893489837646, -0.014384893700480461, 0.9927082657814026, 0.26226872205734253, -0.08820139616727829, -0.281831294298172, -0.691860020160675, 0.34283190965652466, -0.3463592827320099, 0.6260343194007874, 0.7277432084083557, 0.02716466411948204, 0.26408132910728455, 0.3139779269695282, 0.909637987613678, -0.042313508689403534, -1.1297725439071655, 0.38065460324287415, 0.654395341873169, 0.3893287181854248, 0.3123428523540497, -0.005449843592941761, 0.27686697244644165, 0.6807348132133484, 0.5856149792671204, -0.3614197373390198, 0.0179283507168293, -1.1173590421676636, -0.14902262389659882, 0.1665612757205963, -0.03963157907128334, -0.32167866826057434 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
dhcppc0/ksc500
dhcppc0
2023-10-17T05:56:26Z
232
0
null
[ "region:us" ]
2023-10-17T05:56:26Z
2023-10-17T05:52:17.000Z
2023-10-17T05:52:17
--- dataset_info: features: - name: array sequence: float32 - name: sampling_rate dtype: int64 - name: text dtype: string splits: - name: test num_bytes: 23715007 num_examples: 50 - name: train num_bytes: 248781258 num_examples: 500 download_size: 273740677 dataset_size: 272496265 --- # Dataset Card for "ksc500" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.7444071173667908, 0.07861527055501938, 0.4306313097476959, 0.22120027244091034, -0.12491698563098907, 0.040627527981996536, 0.44078126549720764, -0.07611508667469025, 0.9085648655891418, 0.48454639315605164, -1.0315133333206177, -0.8596017956733704, -0.540604829788208, -0.2644415497779846, -0.2436191588640213, 1.2403203248977661, 0.1691925823688507, 0.35707008838653564, -0.6700616478919983, -0.29177793860435486, -0.4207770526409149, -0.5428899526596069, -0.5815739035606384, -0.3645848333835602, 0.9503048062324524, 0.8835963010787964, 0.3647955060005188, 0.2842053771018982, 0.6686628460884094, 0.22168992459774017, -0.00020883481192868203, -0.4695313274860382, -0.24357634782791138, -0.0977092906832695, -0.05310340225696564, -0.5922301411628723, -1.01801335811615, -0.01973705179989338, 0.6579069495201111, 0.832304835319519, -0.23390337824821472, 0.8361939787864685, -0.2583337128162384, 1.0481030941009521, -0.7208044528961182, 0.5731565952301025, 0.038054514676332474, 0.04750717058777809, -0.512531042098999, 0.023433949798345566, 0.005160401109606028, -0.5226975679397583, -0.1178351417183876, -1.1284810304641724, 0.20619440078735352, -0.0412762314081192, 0.5615509748458862, 0.13540397584438324, -0.18850335478782654, -0.48859602212905884, -0.5229808688163757, 0.1434776335954666, -0.1304948478937149, 0.41858917474746704, 0.7767752408981323, 0.7891079783439636, -0.05044644698500633, -0.8370791673660278, -0.5409753322601318, 0.0032553235068917274, 0.11079011857509613, 0.34997761249542236, 0.14447467029094696, -0.0321873314678669, 0.6418724060058594, 0.5227178335189819, -0.29577890038490295, -0.39279264211654663, -0.6691597700119019, -0.5315890908241272, 0.5675745606422424, 0.2983514070510864, 0.114904023706913, -0.32180842757225037, -0.0772324725985527, -0.38679420948028564, -0.5149638652801514, 0.10078433156013489, 0.575082540512085, 0.21395659446716309, -0.9427077174186707, 0.6297467350959778, -0.25399598479270935, 0.16482403874397278, 0.1700126677751541, 0.504378616809845, 0.5552485585212708, -0.3874930143356323, -0.10997136682271957, 0.28879866003990173, 0.2504368722438812, 0.3209107220172882, 0.16621777415275574, 0.009851032868027687, 0.08760576695203781, -0.030611339956521988, 0.31773900985717773, -1.1623578071594238, -1.0005277395248413, 0.3476390242576599, -0.7305036187171936, -0.4507867097854614, 0.3398329019546509, -1.028689980506897, -0.5904603600502014, -0.42323702573776245, 0.2117152065038681, 0.2246486097574234, -0.5927113890647888, -0.3767867088317871, -0.6996648907661438, 0.4177740812301636, 0.09777409583330154, -0.8064019083976746, 0.5300610661506653, 0.662882387638092, 0.4287666380405426, 0.4987732172012329, -0.056167975068092346, -0.5878807902336121, 0.27438926696777344, -0.2689889669418335, 0.9431299567222595, -0.7483638525009155, -0.5169574618339539, 0.08398688584566116, 0.5708803534507751, 0.4057450592517853, -0.40028753876686096, 0.8607027530670166, -0.4590164124965668, -0.2212572693824768, -1.1480727195739746, -0.5689337253570557, 0.12686921656131744, 0.1283428817987442, -1.179758906364441, 1.0996406078338623, 0.2568446397781372, -0.7025901675224304, 0.6514855623245239, -1.1185882091522217, -0.24344772100448608, 0.8533483147621155, -0.101468525826931, -0.3434009850025177, 0.17582407593727112, -0.09016948193311691, 0.592343270778656, -0.06117468699812889, 0.12582947313785553, -1.0119231939315796, -0.18591734766960144, 0.11747098714113235, 0.4422294497489929, 0.81048983335495, 0.3806370496749878, 0.549533486366272, 0.015642987564206123, -1.020641565322876, -0.06752762943506241, 0.10737419128417969, -0.051096297800540924, -0.28016072511672974, -0.43915826082229614, 0.3015740215778351, 0.020813237875699997, 0.3090192973613739, -0.5459778904914856, 0.33496415615081787, 0.3223037123680115, -0.07163313776254654, 0.8185503482818604, 0.19374103844165802, 0.5284327268600464, -0.3133910000324249, 0.7832322716712952, 0.12627212703227997, 0.38049426674842834, -0.13279423117637634, -0.3111460506916046, -0.890935480594635, -0.08044108003377914, 0.8384711146354675, 0.5586032867431641, -0.7543112635612488, 0.6312733888626099, 0.1406581848859787, -0.7418209314346313, -0.5773455500602722, -0.1446632444858551, 0.09561673551797867, 0.3657281994819641, 0.25998711585998535, -0.5877381563186646, -0.905523955821991, -0.9244069457054138, 0.3389419615268707, 0.08525481075048447, -0.001055095111951232, 0.6088414788246155, 0.925041913986206, -0.18642973899841309, 0.663247287273407, -0.9270413517951965, -0.21109935641288757, 0.1926552802324295, -0.22709597647190094, 0.0761658325791359, 0.6745441555976868, 0.7507573962211609, -0.6445489525794983, -0.5181739926338196, -0.5095822215080261, -0.4146692156791687, 0.07511310279369354, 0.23127202689647675, -0.5115272998809814, -0.021093018352985382, 0.3370212912559509, -0.45053672790527344, 0.7605052590370178, 0.7091141939163208, -0.5336084365844727, 0.4116596281528473, 0.013147789053618908, 0.39081355929374695, -1.5149928331375122, 0.6323139071464539, 0.01975911110639572, -0.29138386249542236, -0.5078436732292175, -0.06296373903751373, 0.2706523537635803, -0.31598135828971863, 0.044814564287662506, 0.27978089451789856, -0.17147229611873627, -0.25889503955841064, -0.08186543732881546, -0.17430947721004486, -0.36812514066696167, 0.33857017755508423, 0.05335148423910141, 0.4389253556728363, 0.9284737706184387, -0.45208480954170227, 0.9273976683616638, 0.42884281277656555, -0.18903468549251556, 1.1464747190475464, -0.7423709630966187, 0.19158390164375305, -0.35645726323127747, 0.6829817891120911, -0.9817737936973572, -0.7902222871780396, 0.5703431367874146, -0.6310199499130249, 0.21110899746418, -0.5962362885475159, -0.7614830136299133, -0.6253438591957092, -0.2571276128292084, 0.6309664249420166, 0.6527486443519592, -0.8074856400489807, 0.4020332992076874, 0.7418158054351807, -0.09135613590478897, -0.042370934039354324, -0.7496768832206726, -0.02458464726805687, -0.17390845715999603, -0.07774285972118378, 0.2320210337638855, -0.4886931777000427, 0.2675233781337738, -0.23446868360042572, 0.19950968027114868, -0.20521320402622223, -0.3157176375389099, 0.8210786581039429, 0.36689212918281555, -0.04695652052760124, 0.4748363196849823, 0.020412864163517952, -0.8232783079147339, 0.2735552489757538, -0.07883564382791519, 0.42248135805130005, 0.04110322892665863, -0.010962212458252907, -0.69394850730896, 0.49423477053642273, 0.32035887241363525, 0.14324916899204254, 0.6561437249183655, 0.8317397832870483, -0.7671834230422974, 0.01047894824296236, -0.5506640672683716, -0.22868649661540985, -0.5141791701316833, 0.0853918045759201, -0.4846159517765045, -0.5876966714859009, 0.6756084561347961, -0.31235554814338684, -0.32047268748283386, 0.8278566598892212, 0.6782084107398987, -0.2969735562801361, 0.8411543369293213, 0.7208423018455505, -0.38956910371780396, 0.15358038246631622, -0.15732470154762268, -0.29501286149024963, -0.7870805859565735, -0.6496288776397705, -0.8569278717041016, -0.45478785037994385, -0.9254989624023438, -0.24815726280212402, -0.07632233947515488, 0.06740371137857437, -0.2865654528141022, 0.7111960053443909, -0.6794449090957642, 0.5542068481445312, 0.5099580883979797, 0.0633908063173294, -0.15837536752223969, -0.15236042439937592, 0.04180537164211273, 0.17823046445846558, -0.6849395632743835, -0.16449140012264252, 1.2206199169158936, 0.5547804236412048, 0.6543616652488708, 0.15974143147468567, 0.8194528222084045, 0.30938607454299927, 0.2732357084751129, -0.306180477142334, 0.5554439425468445, -0.06978671997785568, -0.7201426029205322, 0.09879342466592789, -0.2732584774494171, -0.5945655703544617, -0.6677571535110474, -0.28137195110321045, -0.23066136240959167, 0.5240544676780701, 0.5484079718589783, -0.06228413060307503, 0.07187733799219131, -0.8076760768890381, 0.8529650568962097, 0.3433542549610138, 0.23912350833415985, -0.32055988907814026, -0.6325017213821411, 0.11607368290424347, 0.16588081419467926, 0.06883557885885239, -0.17489774525165558, -0.2112816423177719, 0.9310958385467529, -0.5561388731002808, 1.001035451889038, -0.9180948138237, 0.034330788999795914, 0.030681105330586433, -0.27643629908561707, 0.45317739248275757, 0.3774118423461914, 0.03813004866242409, 0.03180164098739624, 0.4434112012386322, -0.7848691344261169, -0.2602481544017792, 0.883837878704071, -0.7179761528968811, 0.4806157648563385, -0.40227842330932617, -0.47095993161201477, -0.11303360015153885, 0.1974925994873047, 0.15381784737110138, 0.5974381566047668, -0.3232031464576721, 0.14801467955112457, 0.7252642512321472, 0.1976010650396347, 0.3341563642024994, 0.15828567743301392, -0.11553504317998886, -0.728159487247467, 1.076547622680664, 0.18588018417358398, -0.1753869652748108, 0.18065465986728668, 0.2171429991722107, -0.20715707540512085, -0.18684762716293335, -0.6281777620315552, 0.07675761729478836, -0.6869173645973206, -0.4553986191749573, -0.34863507747650146, -0.1535467505455017, -0.6742745041847229, -0.3321087658405304, -0.39337003231048584, -0.8142903447151184, -0.4651291072368622, -0.3129297196865082, 0.922036349773407, 0.7052332758903503, -0.4646296799182892, 0.47773876786231995, -0.623474657535553, 0.4744322896003723, 0.10870075225830078, 1.0483837127685547, 0.0765666514635086, -0.3374170958995819, -0.28197845816612244, -0.061108216643333435, 0.04610424116253853, -0.45338064432144165, -0.31720390915870667, -0.02087186463177204, 0.4807899594306946, 0.1975366175174713, 0.01793726347386837, 0.897140622138977, -0.17433762550354004, 0.6164000630378723, 0.4473036825656891, -0.7633976340293884, 0.5928632020950317, -0.17455221712589264, 0.8260133862495422, 1.1107757091522217, 0.882411539554596, -0.7222368717193604, 0.17322485148906708, -1.0135577917099, -0.5571562051773071, 0.6849181056022644, 0.07139217853546143, 0.1606106460094452, 0.31388142704963684, 0.6834645867347717, 0.11772416532039642, 0.32797759771347046, -0.7139419317245483, -0.8121544122695923, -0.29151248931884766, -0.4435233175754547, 0.26937180757522583, -0.563621461391449, -0.22335587441921234, -0.5952581763267517, 0.781451404094696, -0.10168929398059845, 0.4950003921985626, 0.0077341399155557156, 0.3294562101364136, -0.12488878518342972, -0.2657758891582489, 0.4899689853191376, 0.4107755422592163, -0.3633594810962677, -0.12691210210323334, 0.20098450779914856, -0.7329607605934143, -0.4426997900009155, 0.576173722743988, 0.09642668068408966, -0.4466859996318817, 0.6129507422447205, 0.6000446081161499, -0.17705926299095154, -0.1967088133096695, 0.29930049180984497, -0.20519152283668518, -0.5969713926315308, -0.7076221704483032, 0.19562864303588867, 0.4458787143230438, 0.19071130454540253, 0.1308158040046692, -0.08548040688037872, 0.31073951721191406, -0.5378327965736389, 0.4159911572933197, 0.10906923562288284, -0.8591440916061401, -0.471383661031723, 0.18953369557857513, 0.5526955127716064, -0.4228616952896118, 0.9328239560127258, -0.1839759796857834, -0.3666827380657196, 0.8501933813095093, 0.14195840060710907, 0.7282224297523499, -0.39782005548477173, 0.37645581364631653, 0.8214513063430786, 0.06090809404850006, 0.4842888414859772, 0.6346721649169922, -0.8442274332046509, -0.3742051124572754, -0.05527244508266449, -0.37463074922561646, -0.28001534938812256, -0.2598477303981781, -1.1553313732147217, 0.27948132157325745, -0.8150770664215088, -0.07636868953704834, 0.42830759286880493, 0.36496683955192566, -0.9293298721313477, 0.15103480219841003, 0.19183380901813507, 1.543550729751587, -0.8434425592422485, 0.9667344689369202, 0.6888929009437561, -0.33539608120918274, -0.615585446357727, -0.17195776104927063, 0.046740785241127014, -0.8035715818405151, 0.11274970322847366, 0.16240204870700836, 0.3423684537410736, -0.2097833901643753, -0.9638927578926086, -0.6422964334487915, 1.4813752174377441, 0.012273800559341908, -0.9063157439231873, 0.5134140253067017, 0.21826888620853424, 0.3727012276649475, -0.45908015966415405, 0.1925814002752304, 0.5480860471725464, 0.7768886685371399, 0.7200011014938354, -0.6015386581420898, 0.10052088648080826, -0.3520192801952362, -0.21727298200130463, 0.6203101873397827, -0.7259639501571655, -0.1493789702653885, -0.04245376214385033, 0.09494144469499588, 0.2952353358268738, 0.621261715888977, 0.18517814576625824, 0.43318232893943787, 0.6302701234817505, 0.847512423992157, 0.9532532095909119, -0.17017151415348053, 0.987261176109314, 0.09315792471170425, 0.4674062728881836, 1.1765437126159668, -0.29662641882896423, 0.3460642397403717, 0.45231732726097107, -0.23039555549621582, 0.4634738266468048, 0.6590887904167175, -0.6013317108154297, 0.5999379754066467, 0.3110803961753845, -0.4940333664417267, -0.31759336590766907, -0.12035874277353287, -0.6550655364990234, 0.06260717660188675, 0.26916933059692383, -0.41879406571388245, 0.07058309018611908, -0.05863725766539574, 0.07207690924406052, -0.37226665019989014, -0.5685855746269226, 0.9999452233314514, -0.03368575498461723, -0.33750787377357483, -0.24958683550357819, -0.10729312896728516, 0.13163381814956665, -0.8386290073394775, -0.41416481137275696, 0.021706759929656982, 0.18229417502880096, -0.5359704494476318, -1.0017945766448975, 0.6730113625526428, -0.2930677533149719, -0.4617762267589569, 0.07835609465837479, 0.8383155465126038, -0.3946285545825958, -1.0531667470932007, 0.07450296729803085, -0.3155885338783264, 0.2946891784667969, 0.2786445617675781, -1.1707816123962402, 0.3406337797641754, -0.13456054031848907, 0.13815733790397644, 0.36679351329803467, 0.05691695213317871, 0.2544415593147278, 0.5774533748626709, 0.6492611765861511, -0.08340821415185928, -0.5778624415397644, 0.381591796875, 0.9691869020462036, -0.7872516512870789, -0.4207524359226227, -0.35154274106025696, 0.8655210137367249, -0.5067704319953918, -0.6488693356513977, 0.5071314573287964, 1.014158844947815, 0.8334680199623108, -0.2071750909090042, 0.623383104801178, -0.4450087249279022, 0.5931889414787292, -0.14503590762615204, 0.7698043584823608, -0.24305810034275055, -0.3321652412414551, -0.25793880224227905, -0.5957052707672119, -0.5203117728233337, 0.48795846104621887, 0.384101003408432, 0.1808580458164215, 0.45455604791641235, 1.0476959943771362, -0.11483859270811081, 0.47010186314582825, -0.06467932462692261, 0.06895171850919724, 0.20742566883563995, 0.3670889437198639, 0.2942802309989929, -0.5533698201179504, 0.2316611111164093, -0.5366519689559937, -0.6216475367546082, 0.1537501960992813, -1.1921641826629639, -0.912420928478241, -1.0337013006210327, -0.684729814529419, -0.44870859384536743, -0.057555969804525375, 0.7899917364120483, 1.249043583869934, -1.0834745168685913, -0.16127485036849976, -0.1556616723537445, 0.012802783399820328, 0.19602467119693756, -0.121339812874794, 0.6884027123451233, 0.2393699437379837, -0.46209436655044556, -0.357210636138916, -0.07048733532428741, 0.11003635823726654, -0.34445488452911377, -0.0983840748667717, 0.005105914548039436, -0.07890874892473221, 0.40094611048698425, 0.35207608342170715, -0.06335972249507904, -0.2533099353313446, -0.559065043926239, 0.18518291413784027, -0.15188929438591003, 1.176379919052124, -0.7581591010093689, 0.2724475860595703, 0.4498949348926544, 0.3227880299091339, 0.7254868149757385, -0.16407102346420288, 0.48352476954460144, -0.7810150384902954, 0.07931611686944962, -0.050886787474155426, 0.21528616547584534, -0.054517388343811035, -0.5395219922065735, 0.623688280582428, 0.3801189064979553, -0.6502888202667236, -0.6535008549690247, 0.031487837433815, -1.4739840030670166, 0.2054462432861328, 0.6354759335517883, 0.22622933983802795, -0.2827709913253784, -0.0077097415924072266, -0.2919934093952179, 0.09617149084806442, -0.7713044285774231, 0.3644476532936096, 1.0049529075622559, 0.15017689764499664, -0.3711678087711334, -0.6023129820823669, 0.6784217953681946, -0.21955646574497223, -1.278630018234253, 0.14882591366767883, 0.5105702877044678, 0.2041703164577484, 0.10114950686693192, 0.6152618527412415, -0.2968386709690094, 0.5509076714515686, 0.2531532943248749, 0.5331891775131226, -0.08905749768018723, -0.5992693305015564, -0.3498484790325165, 0.08815555274486542, -0.20240555703639984, -0.5272905230522156 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
audioshake/jam-alt
audioshake
2023-11-27T12:46:27Z
232
6
jam-alt
[ "task_categories:automatic-speech-recognition", "multilinguality:multilingual", "language:en", "language:fr", "language:de", "language:es", "music", "lyrics", "evaluation", "benchmark", "transcription", "arxiv:2311.13987", "arxiv:2306.07744", "doi:10.57967/hf/1340", "region:us" ]
2023-11-27T12:46:27Z
2023-10-29T11:04:32.000Z
2023-10-29T11:04:32
--- task_categories: - automatic-speech-recognition multilinguality: - multilingual language: - en - fr - de - es tags: - music - lyrics - evaluation - benchmark - transcription pretty_name: 'JamALT: A Formatting-Aware Lyrics Transcription Benchmark' paperswithcode_id: jam-alt --- # JamALT: A Formatting-Aware Lyrics Transcription Benchmark ## Dataset description * **Project page:** https://audioshake.github.io/jam-alt/ * **Source code:** https://github.com/audioshake/alt-eval * **Paper:** https://arxiv.org/abs/2311.13987 JamALT is a revision of the [JamendoLyrics](https://github.com/f90/jamendolyrics) dataset (80 songs in 4 languages), adapted for use as an automatic lyrics transcription (ALT) benchmark. The lyrics have been revised according to the newly compiled [annotation guidelines](GUIDELINES.md), which include rules about spelling, punctuation, and formatting. The audio is identical to the JamendoLyrics dataset. However, only 79 songs are included, as one of the 20 French songs (`La_Fin_des_Temps_-_BuzzBonBon`) has been removed due to concerns about potentially harmful content. **Note:** The dataset is not time-aligned as it does not easily map to the timestamps from JamendoLyrics. To evaluate automatic lyrics alignment (ALA), please use JamendoLyrics directly. See the [project website](https://audioshake.github.io/jam-alt/) for details. ## Loading the data ```python from datasets import load_dataset dataset = load_dataset("audioshake/jam-alt")["test"] ``` A subset is defined for each language (`en`, `fr`, `de`, `es`); for example, use `load_dataset("audioshake/jam-alt", "es")` to load only the Spanish songs. By default, the dataset comes with audio. To skip loading the audio, use `with_audio=False`. To control how the audio is decoded, cast the `audio` column using `dataset.cast_column("audio", datasets.Audio(...))`. Useful arguments to `datasets.Audio()` are: - `sampling_rate` and `mono=True` to control the sampling rate and number of channels. - `decode=False` to skip decoding the audio and just get the MP3 file paths. ## Running the benchmark The evaluation is implemented in our [`alt-eval` package](https://github.com/audioshake/alt-eval): ```python from datasets import load_dataset from alt_eval import compute_metrics dataset = load_dataset("audioshake/jam-alt", revision="v1.0.0")["test"] # transcriptions: list[str] compute_metrics(dataset["text"], transcriptions, languages=dataset["language"]) ``` For example, the following code can be used to evaluate Whisper: ```python dataset = load_dataset("audioshake/jam-alt", revision="v1.0.0")["test"] dataset = dataset.cast_column("audio", datasets.Audio(decode=False)) # Get the raw audio file, let Whisper decode it model = whisper.load_model("tiny") transcriptions = [ "\n".join(s["text"].strip() for s in model.transcribe(a["path"])["segments"]) for a in dataset["audio"] ] compute_metrics(dataset["text"], transcriptions, languages=dataset["language"]) ``` Alternatively, if you already have transcriptions, you might prefer to skip loading the audio: ```python dataset = load_dataset("audioshake/jam-alt", revision="v1.0.0", with_audio=False)["test"] ``` ## Citation When using the benchmark, please cite [our paper](https://arxiv.org/abs/2311.13987) as well as the original [JamendoLyrics paper](https://arxiv.org/abs/2306.07744): ```bibtex @misc{cifka-2023-jam-alt, author = {Ond\v{r}ej C\'ifka and Constantinos Dimitriou and {Cheng-i} Wang and Hendrik Schreiber and Luke Miner and Fabian-Robert St\"oter}, title = {{Jam-ALT}: A Formatting-Aware Lyrics Transcription Benchmark}, eprint = {arXiv:2311.13987}, year = 2023 } @inproceedings{durand-2023-contrastive, author={Durand, Simon and Stoller, Daniel and Ewert, Sebastian}, booktitle={2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)}, title={Contrastive Learning-Based Audio to Lyrics Alignment for Multiple Languages}, year={2023}, pages={1-5}, address={Rhodes Island, Greece}, doi={10.1109/ICASSP49357.2023.10096725} } ```
[ -0.20481020212173462, -0.46876925230026245, 0.177747905254364, 0.6684355735778809, -0.05325733497738838, 0.16608378291130066, -0.5030405521392822, -0.4976653456687927, 0.28811758756637573, 0.3968544900417328, -0.726155698299408, -0.8432187438011169, -0.4677518904209137, 0.3467716872692108, -0.35919490456581116, 0.9583863019943237, 0.002142673823982477, -0.09961508959531784, 0.10396800190210342, -0.23479945957660675, -0.5137430429458618, 0.088103748857975, -0.44751983880996704, 0.20388028025627136, 0.15877912938594818, 0.19263409078121185, 0.3514820337295532, 0.7848995923995972, 0.35488250851631165, 0.33492326736450195, -0.27005553245544434, -0.18301516771316528, -0.3159901797771454, 0.3689057230949402, 0.2279781699180603, -0.26509910821914673, -0.378313809633255, 0.23216034471988678, 0.8316444158554077, 0.5197334885597229, -0.2786683738231659, 0.5665677189826965, 0.05977381765842438, 0.6953856945037842, -0.3672426640987396, 0.1440034955739975, -0.9259308576583862, -0.13024865090847015, -0.4100213944911957, -0.16116464138031006, -0.1671757996082306, -0.5404403209686279, 0.13440848886966705, -0.7185884714126587, 0.12090228497982025, 0.19967736303806305, 0.9775058627128601, 0.32960233092308044, -0.12979134917259216, -0.368635892868042, -0.4934251606464386, 0.9751937389373779, -0.7918700575828552, 0.46410492062568665, 0.3347337543964386, 0.4084542691707611, -0.25128301978111267, -0.7599803805351257, -0.48041826486587524, 0.06237388774752617, 0.16454778611660004, 0.46395474672317505, -0.3332112431526184, -0.15886124968528748, 0.4736882746219635, 0.5326377749443054, -0.5245029330253601, -0.351371169090271, -0.6447515487670898, -0.4557079076766968, 0.7641947269439697, -0.06737210601568222, 0.5296555757522583, -0.2044641673564911, -0.20833967626094818, -0.4006447196006775, -0.5132011771202087, 0.48386669158935547, 0.70119309425354, 0.5031923651695251, -0.5822731256484985, 0.3391793370246887, -0.016404831781983376, 0.6821317076683044, 0.06067192554473877, -0.6522091031074524, 0.8699187636375427, -0.3333247900009155, -0.23101094365119934, 0.3410642147064209, 1.2811205387115479, 0.33531519770622253, -0.06405989080667496, -0.07171680778265, -0.22329428791999817, -0.08252386748790741, -0.04040488228201866, -0.682016134262085, -0.4820294976234436, 0.33780643343925476, -0.23620769381523132, 0.13287441432476044, 0.07675077021121979, -0.4908076226711273, -0.0896260216832161, -0.15028682351112366, 0.7927111387252808, -0.7307778000831604, 0.16603514552116394, 0.19086013734340668, -0.262356162071228, -0.23748168349266052, -0.09345521032810211, -0.785758376121521, 0.33244454860687256, 0.47033974528312683, 0.9821021556854248, 0.09703896194696426, -0.3208085596561432, -0.41456133127212524, 0.1248028576374054, -0.1409999579191208, 0.6622211933135986, -0.13129861652851105, -0.4608691334724426, -0.3665313124656677, 0.07614549994468689, -0.38092008233070374, -0.7022406458854675, 0.9442859292030334, 0.004488895647227764, 0.39480140805244446, -0.38613030314445496, -0.5570507049560547, -0.34024447202682495, -0.13397499918937683, -0.7383122444152832, 0.990791380405426, 0.15608395636081696, -0.8192341923713684, 0.2944501042366028, -0.5199956893920898, -0.5727030038833618, -0.25861304998397827, -0.0786915048956871, -0.7348290085792542, -0.07889126986265182, 0.4224598705768585, 0.19468143582344055, -0.23025202751159668, 0.0541093610227108, -0.05727899819612503, -0.7092748880386353, 0.5631696581840515, -0.29104986786842346, 1.1340867280960083, 0.2849964499473572, -0.4486099183559418, 0.04393867403268814, -0.8523179888725281, 0.23423521220684052, -0.03653017058968544, -0.5245948433876038, -0.019032036885619164, -0.03756440430879593, 0.37719035148620605, 0.016813738271594048, 0.009470699355006218, -0.72623610496521, 0.18737846612930298, -0.5381296277046204, 0.35244691371917725, 0.43051573634147644, 0.11000443994998932, 0.13966602087020874, -0.7516586184501648, 0.5072592496871948, -0.31321650743484497, 0.08964499086141586, -0.19807299971580505, -0.4435765743255615, -0.21660512685775757, -0.625981330871582, 0.6531965136528015, 0.57156902551651, -0.1507854014635086, 0.620766818523407, -0.3873121440410614, -0.6481056809425354, -1.3736357688903809, 0.10497784614562988, 0.6149000525474548, 0.4336615204811096, 0.7503592371940613, -0.43351659178733826, -0.7734275460243225, -0.7938274145126343, -0.47791123390197754, -0.043808843940496445, -0.055603574961423874, 0.5236291885375977, 0.1608995795249939, -0.11330434679985046, 0.8323280215263367, -0.30918970704078674, -0.5005542039871216, -0.10366645455360413, -0.010724209249019623, 0.7248600125312805, 0.7866975665092468, 0.4943489134311676, -0.7510570883750916, -0.9041433334350586, -0.32840973138809204, -0.27952998876571655, -0.6996936798095703, -0.18637771904468536, 0.006911680568009615, -0.12845849990844727, 0.25356921553611755, -0.21314895153045654, 0.010595056228339672, 0.6759076118469238, -0.21143978834152222, 0.6667357683181763, 0.3818875849246979, 0.5437990427017212, -0.9409406185150146, 0.27509644627571106, -0.29269662499427795, -0.07712065428495407, -0.39882293343544006, -0.40822604298591614, 0.22496835887432098, 0.283351331949234, -0.3311101496219635, 0.2602280378341675, -0.48614057898521423, -0.2654505968093872, 0.040068332105875015, 0.2543554902076721, 0.05504979193210602, 0.37111538648605347, -0.27002978324890137, 1.113389492034912, 0.6972436904907227, -0.2831098735332489, 0.2446979284286499, 0.27615439891815186, -0.6890289187431335, 0.4224439859390259, -0.712092399597168, 0.0515725277364254, 0.25251370668411255, 0.30627569556236267, -0.8918585777282715, 0.038165133446455, 0.23634479939937592, -0.8101441264152527, 0.4858325123786926, -0.4960193336009979, -0.5074254274368286, -0.2540498971939087, -0.33574575185775757, 0.43312880396842957, 0.7227206230163574, -0.24231210350990295, 0.25736087560653687, 0.4453203082084656, -0.26791486144065857, -0.6801921129226685, -0.45874109864234924, 0.0068012322299182415, -0.3444415330886841, -0.5100566148757935, 0.5541954636573792, -0.262378990650177, -0.1934853345155716, -0.08896426856517792, -0.5006502866744995, 0.2991805076599121, 0.06474369764328003, 0.44672685861587524, 0.13990186154842377, -0.1145448237657547, 0.06771780550479889, 0.30499735474586487, -0.10623788088560104, 0.06585440784692764, -0.42861148715019226, 0.49561557173728943, -0.1376156061887741, -0.04452929645776749, -0.5544359087944031, 0.16458049416542053, 0.2183530032634735, -0.33061811327934265, 0.4018547832965851, 0.615811288356781, -0.031479377299547195, -0.02108817547559738, -0.5972554683685303, 0.2782861590385437, -0.4878448247909546, 0.19237424433231354, -0.37615081667900085, -0.46322670578956604, 0.6484353542327881, 0.13021966814994812, 0.09849231690168381, 0.5648815631866455, 0.3074805438518524, -0.39848563075065613, 0.8340801000595093, 0.1706850826740265, -0.01661144196987152, 0.37236613035202026, -0.6727428436279297, -0.2316851019859314, -1.26255464553833, -0.34009185433387756, -0.8620865345001221, -0.3997907340526581, -0.8394525647163391, -0.2790694534778595, 0.6246596574783325, 0.32106950879096985, -0.10691940039396286, 0.5916975736618042, -0.5934746861457825, 0.4266062080860138, 0.41172608733177185, -0.15206855535507202, 0.14200372993946075, -0.12819282710552216, -0.4209780693054199, -0.20503447949886322, -0.3128792345523834, -0.3500676155090332, 1.1615910530090332, 0.1961519718170166, 0.4908142685890198, 0.35227301716804504, 0.8346072435379028, -0.0035460717044770718, 0.08064480125904083, -0.6891440749168396, 0.2365691363811493, -0.0829959511756897, -0.5927844047546387, -0.252582311630249, -0.4289686381816864, -0.9068375825881958, 0.2447965294122696, -0.4219074249267578, -0.9763658046722412, -0.012676210142672062, 0.012653703801333904, -0.20436477661132812, 0.18487809598445892, -0.5030606985092163, 0.7448010444641113, 0.03646644204854965, -0.08335726708173752, 0.3979508578777313, -0.6529764533042908, 0.15920503437519073, -0.09157891571521759, 0.43916675448417664, -0.5214013457298279, 0.003988331649452448, 1.2325019836425781, -0.2999575138092041, 0.40225544571876526, -0.13072051107883453, -0.09395445883274078, 0.1994602233171463, 0.019192541018128395, 0.2837980091571808, -0.0005256859003566206, -0.1392635852098465, 0.1573537290096283, 0.29129448533058167, -0.338900089263916, -0.4383077621459961, 0.7307228446006775, -0.7765158414840698, -0.300735205411911, -0.20716135203838348, -0.6760460734367371, -0.3140505254268646, 0.3151420056819916, 0.6156203150749207, 0.6328338384628296, 0.05042000859975815, 0.34229493141174316, 0.4828253984451294, -0.16012707352638245, 0.401285856962204, 0.5084900259971619, -0.3054952025413513, -0.7477889657020569, 0.7286781072616577, 0.19005775451660156, 0.13983531296253204, 0.405558317899704, 0.41016021370887756, -0.4585273563861847, -0.8459082245826721, -0.47965186834335327, 0.18815337121486664, -0.5297796726226807, -0.2639143466949463, -0.9426431655883789, 0.007900427095592022, -0.6414150595664978, -0.060731127858161926, -0.5607776641845703, -0.49067607522010803, -0.04792838916182518, 0.21477855741977692, 0.6150257587432861, 0.32559481263160706, -0.14872217178344727, 0.29319873452186584, -0.926339864730835, 0.3281853199005127, -0.10420449078083038, 0.401845782995224, -0.15580645203590393, -0.8787148594856262, -0.4624910056591034, -0.09501565247774124, -0.40557625889778137, -1.1374551057815552, 0.30899932980537415, 0.18879958987236023, 0.37838253378868103, 0.1330062448978424, 0.10428537428379059, 0.8459886908531189, -0.4413425326347351, 0.7337271571159363, 0.11700967699289322, -1.2276431322097778, 0.5830841660499573, -0.5603943467140198, 0.3638460040092468, 1.0097062587738037, 0.29010650515556335, -0.7923611402511597, -0.6243870258331299, -0.5602260231971741, -1.0614242553710938, 0.6185176968574524, 0.584667980670929, -0.23343607783317566, 0.21885766088962555, 0.06912288069725037, 0.2767932415008545, 0.20428727567195892, -0.6229819655418396, -0.6407126784324646, -0.3495212197303772, -0.4152480959892273, -0.31323760747909546, 0.12485917657613754, -0.04022440314292908, -0.3738459348678589, 1.03377366065979, 0.14640502631664276, 0.16685698926448822, 0.3939516246318817, 0.022276731207966805, -0.14511273801326752, 0.48083704710006714, 0.3914746046066284, 0.30373722314834595, -0.5527327060699463, -0.23365947604179382, 0.012262796983122826, -0.9072140455245972, 0.13960829377174377, 0.3061593174934387, -0.4318336844444275, 0.031657714396715164, 0.6567798256874084, 0.7810229659080505, 0.36166444420814514, -0.6950363516807556, 0.5095735192298889, -0.16911309957504272, -0.05068691447377205, -0.3510757386684418, 0.21799838542938232, 0.1879241019487381, 0.07486527413129807, 0.42408204078674316, 0.05301741883158684, 0.3916475176811218, -0.4399251937866211, 0.15641438961029053, 0.17682018876075745, -0.560774028301239, -0.24661970138549805, 0.7436898350715637, -0.13713142275810242, -0.3625764548778534, 0.3572756350040436, -0.05395208299160004, -0.5075050592422485, 0.5394467711448669, 0.5343995690345764, 1.0365954637527466, -0.2787649631500244, -0.24737444519996643, 0.6221696138381958, 0.38445907831192017, 0.1287270039319992, 0.5958631038665771, -0.32621118426322937, -0.33042293787002563, -0.3418915271759033, -0.7966834306716919, -0.19249047338962555, 0.20378220081329346, -0.8214654326438904, 0.006637861020863056, -0.15418091416358948, -0.19390735030174255, 0.20365242660045624, 0.37727269530296326, -0.6779249310493469, 0.2055356502532959, -0.4037347733974457, 0.9459459185600281, -0.8535081744194031, 0.6748750805854797, 0.387509286403656, -0.2812787890434265, -1.1541337966918945, 0.18686652183532715, 0.09134184569120407, -0.34622204303741455, 0.2300843745470047, 0.2821422815322876, -0.11860176920890808, -0.0322270542383194, -0.47417157888412476, -0.9534361362457275, 1.0967577695846558, 0.06298863887786865, -0.8797908425331116, 0.5019783973693848, -0.2796606719493866, 0.42167896032333374, -0.25919947028160095, 0.16428188979625702, 0.82989102602005, 0.6563752889633179, -0.045365218073129654, -1.220809817314148, -0.03154277801513672, -0.47292569279670715, -0.2605750858783722, 0.18135163187980652, -0.48510000109672546, 0.9272376894950867, -0.20079560577869415, -0.44152411818504333, 0.30890902876853943, 0.5527700185775757, 0.32041695713996887, 0.33091655373573303, 0.4768032133579254, 0.5656830668449402, 0.7588775157928467, -0.3482350707054138, 0.9200246930122375, -0.23607338964939117, 0.28634658455848694, 1.195766806602478, -0.06593194603919983, 0.7112287878990173, 0.4737586975097656, -0.5905295610427856, 0.4085988700389862, 0.3750177323818207, -0.1990390568971634, 0.737599790096283, 0.3360033333301544, -0.20032475888729095, 0.1741451919078827, -0.003935937769711018, -0.5376166701316833, 0.7577947378158569, 0.10782216489315033, -0.3216928243637085, 0.38273289799690247, -0.1489948183298111, 0.18632599711418152, 0.29329586029052734, 0.058724790811538696, 0.870682418346405, -0.10587018728256226, -0.501117467880249, 0.6599230766296387, 0.041727546602487564, 0.7803158760070801, -0.5480112433433533, 0.20641356706619263, -0.040994495153427124, -0.10378701239824295, -0.2300560474395752, -0.6143946051597595, 0.1096758022904396, -0.019432324916124344, -0.2684628963470459, 0.030174175277352333, 0.2146042436361313, -0.7206160426139832, -0.5024653077125549, 0.2995758056640625, 0.2298535406589508, 0.20132723450660706, 0.18934236466884613, -0.8656505942344666, 0.4760124087333679, 0.17310528457164764, -0.13869452476501465, 0.07890447229146957, 0.24499110877513885, 0.3571552336215973, 0.40546420216560364, 0.7524553537368774, 0.5850052237510681, 0.0873449444770813, 0.07142791897058487, 0.48922568559646606, -0.7964173555374146, -0.7924419641494751, -0.5207698345184326, 0.38080334663391113, -0.10871749371290207, -0.20093883574008942, 0.9767566323280334, 0.9961951375007629, 0.9776648283004761, 0.08453688025474548, 0.9061927795410156, -0.04902299866080284, 0.9428963661193848, -0.783879280090332, 0.9300070405006409, -0.520666778087616, 0.48554864525794983, -0.8134716153144836, -0.8608008027076721, -0.1432066112756729, 0.5118746161460876, -0.12235283106565475, 0.1441470831632614, 0.4788402318954468, 0.7623235583305359, -0.16005060076713562, 0.06357461959123611, 0.027852309867739677, 0.3107881247997284, 0.2678590714931488, 0.6704562306404114, 0.4935155212879181, -0.98245769739151, 0.5121943354606628, -0.765892744064331, -0.09904409945011139, 0.05089883506298065, -0.8566725850105286, -0.5610278844833374, -0.83612459897995, -0.48918306827545166, -0.3866231441497803, 0.007302191108465195, 1.058825135231018, 0.4890252947807312, -0.854013979434967, -0.3488400876522064, 0.5144461393356323, 0.31205347180366516, -0.6536045670509338, -0.2286183089017868, 0.8793983459472656, 0.17686189711093903, -0.7557241916656494, 0.7014110088348389, 0.24298779666423798, 0.350342720746994, 0.31985634565353394, -0.122708261013031, -0.09300746768712997, 0.11501061916351318, -0.014918899163603783, 0.347614049911499, -0.6708323955535889, 0.021139848977327347, -0.17024214565753937, -0.020935948938131332, 0.21037666499614716, 0.6134452819824219, -0.6547008752822876, 0.5468497276306152, 0.411197304725647, 0.08705595880746841, 0.39683300256729126, -0.1359938681125641, 0.1374915987253189, -0.7439700961112976, -0.005128619261085987, 0.1581260710954666, 0.49574506282806396, 0.569554328918457, -0.007682451047003269, 0.29336532950401306, 0.15629549324512482, -0.41539520025253296, -0.929573655128479, -0.22260847687721252, -1.2141982316970825, 0.01505415327847004, 0.878437876701355, -0.17338980734348297, -0.20116166770458221, -0.11511434614658356, -0.3132335841655731, 0.5718125700950623, -0.5703406929969788, 0.8170506358146667, 0.30079954862594604, 0.02862527407705784, 0.15741679072380066, -0.5446303486824036, 0.9462656378746033, 0.14959873259067535, -0.45523399114608765, 0.00490771047770977, 0.4168660640716553, 0.5379849076271057, 0.14000830054283142, 0.913946270942688, -0.35189923644065857, 0.5001958012580872, 0.15753090381622314, 0.22600537538528442, -0.39502960443496704, -0.2899995744228363, -0.40756678581237793, 0.0024575439747422934, -0.2475065141916275, -0.2793120741844177 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
kuroneko5943/snap21
kuroneko5943
2023-01-10T16:20:44Z
231
0
null
[ "task_categories:text-classification", "task_ids:sentiment-classification", "annotations_creators:found", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:extended|amazon_us_reviews", "language:en", "license:apache-2.0", "amazon review", "region:us" ]
2023-01-10T16:20:44Z
2023-01-10T12:08:18.000Z
2023-01-10T12:08:18
--- annotations_creators: - found language: - en language_creators: - crowdsourced license: - apache-2.0 multilinguality: - monolingual pretty_name: snap21 size_categories: - 10K<n<100K source_datasets: - extended|amazon_us_reviews tags: - amazon review task_categories: - text-classification task_ids: - sentiment-classification viewer: true ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Cohere/wikipedia-22-12
Cohere
2023-02-22T15:58:09Z
231
26
null
[ "region:us" ]
2023-02-22T15:58:09Z
2023-01-13T21:52:20.000Z
2023-01-13T21:52:20
This dataset contains a pre-processed version from Wikipedia suitable for semantic search. You can load the dataset like this: ```python from datasets import load_dataset lang = 'en' data = load_dataset(f"Cohere/wikipedia-22-12", lang, split='train', streaming=True) for row in data: print(row) break ``` This will load the dataset in a streaming mode (so that you don't need to download the whole dataset) and you can process it row-by-row. The articles are splitted into paragraphs. Further, for each article we added statistics on the page views in 2022 as well as in how many other languages an article is available. The dataset is sorted by page views, so that the most popular Wikipedia articles come first. So if you e.g. read the top-100k rows, you get quite a good coverage on topics that are broadly interesting for people. ## Semantic Search Embeddings We also provide versions where documents have been embedded using the [cohere multilingual embedding model](https://txt.cohere.ai/multilingual/), e.g. [wikipedia-22-12-en-embeddings](https://huggingface.co/datasets/Cohere/wikipedia-22-12-en-embeddings) contains the paragraphs and their respective embeddings for English. You can find the embeddings for other languages in the datasets `wikipedia-22-12-{lang}-embeddings`. ## Dataset Creation The [XML data dumps](https://dumps.wikimedia.org/backup-index.html) from December 20th, 2022 where downloaded and processed with [wikiextractor](https://github.com/attardi/wikiextractor) (with Version: 2.75) and the following command: ``` python WikiExtractor.py --json -s --lists ../dumps/dewiki-20210101-pages-articles.xml.bz2 -o text_de ``` To count in how many languages an article is available, we downloaded the SQL files with language links from: ``` https://dumps.wikimedia.org/{lang}wiki/{datestr}/{filename} ``` And processed the SQL file to read for each article the outbound links. Pageviews where downloaded from: ``` https://dumps.wikimedia.org/other/pageviews/{year}/{year}-{month_str}/pageviews-{year}{month_str}{day_str}-{hour_str}0000.gz ``` We downloaded for each day the pageviews for a random hour. We then computed the harmonic mean of page views. We used harmonic mean to address cases where articles receive a very high number of page views at e.g. a certain time point. We use the log scores for the page views to increase the numerical stability. Code to compute the page views was: ```python import gzip import sys from collections import Counter, defaultdict import math import tqdm import json title_views = {} #Score: Harmonic mean (View_Day_1 * View_Day_2 * View_day_3) # Add log for better numerical stabilitiy # Add +1 to avoid log(0) # Compare the sum, so that days without view are counted as 0 views for filepath in tqdm.tqdm(sys.argv[1:]): with gzip.open(filepath, "rt") as fIn: for line in fIn: splits = line.strip().split() if len(splits) == 4: lang, title, views, _ = line.strip().split() lang = lang.lower() if lang.endswith(".m"): #Add mobile page scores to main score lang = lang[0:-2] if lang.count(".") > 0: continue if lang not in title_views: title_views[lang] = {} if title not in title_views[lang]: title_views[lang][title] = 0.0 title_views[lang][title] += math.log(int(views)+1) #Save results for lang in title_views: with open(f"pageviews_summary/{lang}.json", "w") as fOut: fOut.write(json.dumps(title_views[lang])) ``` We filter out paragraphs that start with `BULLET::::`, `Section::::`, `<templatestyles`, or `[[File:`. Further, we also only include paragraphs with at least 100 characters (using Python len method=.
[ -0.503903865814209, -0.6383009552955627, 0.3552989065647125, 0.27819448709487915, -0.48805397748947144, -0.2464984506368637, -0.19238600134849548, -0.11102771013975143, 0.5927969813346863, 0.44711363315582275, -0.41750675439834595, -0.7703344821929932, -0.2742658853530884, 0.3428947329521179, -0.496076762676239, 1.1109791994094849, 0.024036461487412453, 0.035448893904685974, -0.2647395133972168, -0.1561034470796585, 0.006352531723678112, -0.03274587169289589, -0.4025581479072571, -0.14291027188301086, 0.43920186161994934, 0.2753147482872009, 0.6011370420455933, 0.6063623428344727, 0.3211495876312256, 0.3257495164871216, 0.13109996914863586, 0.22993193566799164, -0.5117644667625427, 0.007645198609679937, -0.2688816487789154, -0.3514670133590698, -0.17670069634914398, 0.051593247801065445, 0.634736180305481, 0.7076835632324219, -0.21852979063987732, 0.33094313740730286, 0.056079886853694916, 0.6635002493858337, -0.3689132034778595, 0.10048549622297287, -0.5116293430328369, -0.11331122368574142, -0.265327125787735, -0.24763688445091248, -0.20242632925510406, -0.47045964002609253, 0.1191418245434761, -0.9254173040390015, 0.19056552648544312, 0.1427755206823349, 1.1072081327438354, 0.09398242086172104, -0.454142302274704, -0.21102413535118103, -0.33534038066864014, 0.9796367883682251, -0.6594435572624207, 0.4365811049938202, 0.6289133429527283, -0.16071602702140808, -0.43298962712287903, -0.5027133226394653, -0.7797865271568298, -0.0424884594976902, -0.0616849809885025, 0.1862184852361679, -0.07459266483783722, -0.3269195556640625, 0.1880815029144287, 0.3514883518218994, -0.8797205686569214, -0.21690581738948822, -0.6182055473327637, -0.14288906753063202, 0.8763121366500854, 0.34124472737312317, 0.48250213265419006, -0.7480858564376831, -0.009089473634958267, -0.266427218914032, -0.35133931040763855, 0.1209103986620903, 0.4482543170452118, 0.07840821892023087, -0.29202479124069214, 0.799946129322052, -0.4408099055290222, 0.7696197628974915, 0.004318677354604006, -0.4331373870372772, 0.37514933943748474, -0.46356627345085144, 0.021033283323049545, 0.04747617617249489, 1.1173126697540283, 0.798184335231781, 0.21298210322856903, 0.012598521076142788, 0.16237042844295502, -0.2775270938873291, 0.23315900564193726, -0.6250110268592834, -0.41983550786972046, 0.41475099325180054, -0.645119845867157, -0.2690984010696411, 0.14934170246124268, -0.8727440237998962, -0.31922972202301025, -0.1385367065668106, 0.455725759267807, -0.6561077833175659, -0.24288153648376465, 0.23970811069011688, -0.4086320698261261, 0.0779150128364563, 0.3526052236557007, -0.7961293458938599, 0.2223009318113327, 0.5092997550964355, 0.815657913684845, -0.06036676466464996, -0.5587383508682251, -0.28005367517471313, 0.07786211371421814, -0.4380234181880951, 0.8819040060043335, -0.2077520489692688, -0.28514018654823303, -0.068304143846035, 0.20870870351791382, -0.08190082758665085, -0.2997903823852539, 0.5394505858421326, -0.6288858652114868, 0.4422733783721924, -0.309908926486969, -0.5413610935211182, -0.27824434638023376, 0.38892826437950134, -0.7482914328575134, 1.1905949115753174, 0.24761709570884705, -1.1317843198776245, 0.30714133381843567, -0.24977529048919678, -0.4625746011734009, -0.13801360130310059, -0.047369584441185, -0.2753925323486328, 0.12531214952468872, 0.1762748509645462, 0.20740726590156555, -0.16351325809955597, -0.055525314062833786, -0.25563621520996094, -0.42449620366096497, 0.17602944374084473, -0.11520413309335709, 1.0085057020187378, 0.26180627942085266, -0.16031768918037415, -0.15248256921768188, -1.0622445344924927, 0.10580778867006302, 0.06934123486280441, -0.7148503661155701, -0.6974639296531677, 0.35286813974380493, 0.21187461912631989, 0.11079879105091095, 0.3537304103374481, -0.49940118193626404, 0.216267928481102, -0.5768399834632874, 0.06300538778305054, 0.4335574805736542, 0.1514085978269577, 0.4486686587333679, -0.1307656466960907, 0.15280908346176147, 0.14640702307224274, -0.022334503009915352, -0.13500748574733734, -0.4399189054965973, -0.8332115411758423, 0.1560882031917572, 0.2227599322795868, 0.6237229704856873, -0.7921055555343628, 0.6887243390083313, -0.5593970417976379, -0.7576509714126587, -0.490253210067749, 0.2802796959877014, 0.17138102650642395, 0.4190106689929962, 0.49280622601509094, -0.23609399795532227, -0.4887602627277374, -0.6997746825218201, -0.30256953835487366, -0.23595477640628815, -0.17968665063381195, 0.1408090740442276, 0.6801228523254395, -0.037910450249910355, 0.7645778656005859, -0.6664419770240784, -0.28052055835723877, -0.05757540091872215, 0.13117113709449768, 0.64341139793396, 0.48329946398735046, 0.3873499631881714, -0.8615034222602844, -0.8124103546142578, 0.02080305851995945, -0.9084142446517944, 0.035302307456731796, -0.10378850996494293, -0.1077459454536438, 0.18093793094158173, 0.2893034815788269, -0.7920511364936829, 0.3095497190952301, 0.2746374011039734, -0.5195705890655518, 0.5640608668327332, -0.3188057243824005, 0.32287561893463135, -1.314454436302185, 0.0363597571849823, 0.21389150619506836, -0.06869837641716003, -0.21720239520072937, -0.10699820518493652, 0.22696124017238617, -0.028057031333446503, -0.33462023735046387, 0.4218701422214508, -0.3635817766189575, 0.14191479980945587, -0.040672291070222855, 0.24478581547737122, 0.17512129247188568, 0.30403581261634827, -0.12529875338077545, 0.634335994720459, 0.38811197876930237, -0.6777287125587463, 0.5726090669631958, 0.2758861482143402, -0.5353893637657166, 0.44271984696388245, -0.42691656947135925, -0.26190730929374695, -0.144303560256958, 0.194503515958786, -0.877354621887207, -0.2743509113788605, 0.2760448753833771, -0.4988706707954407, 0.13084203004837036, -0.2893357276916504, -0.4937621057033539, -0.31353864073753357, -0.7890061736106873, -0.03518575429916382, 0.0838761106133461, -0.2156839817762375, 0.47082361578941345, 0.5285478830337524, -0.13968437910079956, -0.6233645081520081, -0.2900840640068054, 0.1294315755367279, -0.13432444632053375, -0.7212845087051392, 0.39133328199386597, -0.04955802485346794, -0.3954872190952301, 0.23265241086483002, -0.19085119664669037, -0.06872005015611649, -0.1856929361820221, -0.050659675151109695, 0.17652861773967743, -0.13970105350017548, -0.05662095546722412, 0.07721741497516632, -0.07035516947507858, 0.08255724608898163, -0.4239569902420044, 0.9004374742507935, -0.03615362569689751, -0.052083682268857956, -0.4634143114089966, 0.3935413360595703, 0.5339008569717407, -0.2088499218225479, 0.8665643930435181, 0.8937608003616333, -0.3417743742465973, 0.10993263125419617, -0.4810764789581299, 0.11597501486539841, -0.46115219593048096, 0.49327152967453003, -0.3145469129085541, -0.34237140417099, 0.5181121826171875, 0.4228411316871643, 0.045809630304574966, 0.8517575860023499, 0.387136310338974, -0.38412949442863464, 1.0359294414520264, 0.4223790168762207, -0.22878356277942657, 0.4311794936656952, -0.4772566854953766, 0.07143537700176239, -0.5405855178833008, -0.4824204444885254, -0.7150527238845825, -0.07325369119644165, -0.9964324235916138, -0.3617468476295471, 0.3476674556732178, 0.32911598682403564, -0.18009178340435028, 0.4130057096481323, -0.5014739036560059, 0.4772316515445709, 0.5488817691802979, 0.13477471470832825, 0.23941554129123688, 0.2586677372455597, -0.14830134809017181, -0.22825923562049866, -0.25840967893600464, -0.3303079903125763, 1.189725637435913, -0.057489775121212006, 0.9700660705566406, 0.12683381140232086, 0.7451314330101013, 0.23798620700836182, -0.10243628174066544, -0.7708420157432556, 0.4868850111961365, -0.2836459279060364, -0.46233755350112915, -0.3849961757659912, -0.44308826327323914, -0.8711631894111633, 0.2723913788795471, -0.23383744060993195, -0.7067918181419373, 0.1066831424832344, -0.2842369079589844, -0.0651128739118576, 0.27470335364341736, -0.5985943078994751, 0.7265254855155945, -0.1438247114419937, -0.49189436435699463, -0.4991219937801361, -0.43389445543289185, 0.12295235693454742, -0.06648804992437363, 0.2922787368297577, -0.2503524720668793, -0.12109261751174927, 1.0203933715820312, -0.5856367349624634, 0.4631795883178711, -0.21875277161598206, -0.09816578030586243, 0.31166669726371765, -0.07706068456172943, 0.4125368893146515, 0.36972153186798096, -0.18855926394462585, 0.291364848613739, 0.26498422026634216, -0.4240378737449646, -0.38430145382881165, 0.892210841178894, -0.9078388214111328, -0.4695214033126831, -0.602117657661438, -0.39001142978668213, 0.14795154333114624, 0.6176984310150146, 0.5185999274253845, 0.3907991945743561, 0.03161254897713661, 0.34310388565063477, 0.8469850420951843, -0.42396414279937744, 0.5196236371994019, 0.707967221736908, -0.3758619725704193, -0.6145467162132263, 0.9939842820167542, 0.3562885522842407, -0.439380943775177, 0.644568145275116, 0.23108291625976562, -0.3864980936050415, -0.5732774138450623, -0.6545345783233643, 0.27418985962867737, -0.5169743299484253, -0.24624577164649963, -0.8260747194290161, -0.2030002921819687, -0.46571022272109985, 0.0445842519402504, -0.2763136029243469, -0.482464075088501, -0.3021389842033386, 0.12029445171356201, 0.5383885502815247, 0.5835158228874207, -0.05680345743894577, 0.08301769196987152, -0.8520901799201965, 0.4419081509113312, 0.08124909549951553, 0.4119945168495178, -0.08774092048406601, -0.2972319722175598, -0.5921880006790161, -0.06483396142721176, -0.4103334844112396, -0.877910315990448, 0.5492790341377258, 0.16314615309238434, 0.538164496421814, 0.4750638008117676, 0.21147935092449188, 0.8003209829330444, -0.5349196195602417, 1.0090606212615967, 0.3123132884502411, -0.6941569447517395, 0.6657285690307617, -0.6513969302177429, 0.17919573187828064, 0.5828673839569092, 0.7735453248023987, -0.6381999254226685, -0.38924655318260193, -0.3459284007549286, -0.9697878956794739, 0.7892838716506958, 0.1375730186700821, 0.2952721416950226, -0.19803893566131592, 0.19643716514110565, 0.05095537006855011, -0.0024779406376183033, -0.6062564849853516, -0.3507853150367737, -0.4525400400161743, -0.31334787607192993, -0.0886739194393158, -0.10562446713447571, -0.022692712023854256, -0.6746943593025208, 0.7207869291305542, -0.009461987763643265, 0.08787299692630768, 0.38150063157081604, -0.3826639950275421, -0.09989432990550995, 0.07651105523109436, 0.35945478081703186, 0.8546121716499329, -0.42106327414512634, 0.042268283665180206, 0.2192927598953247, -0.9486627578735352, -0.029462631791830063, 0.34074467420578003, -0.10101498663425446, 0.33231741189956665, 0.18737807869911194, 0.32629626989364624, 0.19774168729782104, -0.6337536573410034, 0.4801531136035919, -0.2615011930465698, 0.11031819880008698, -0.5791449546813965, 0.08781028538942337, 0.2002374231815338, 0.09551859647035599, 0.7476711869239807, -0.15867461264133453, 0.25329825282096863, -0.3084607422351837, 0.20143555104732513, 0.2111286222934723, -0.024181634187698364, -0.3395432233810425, 0.670520007610321, 0.01851632259786129, -0.1486051082611084, 0.7648298144340515, -0.21883076429367065, -0.315839558839798, 0.44772860407829285, 0.37497326731681824, 0.5034963488578796, -0.017331350594758987, 0.20449288189411163, 0.6849192976951599, 0.255918949842453, -0.037690985947847366, 0.4377531111240387, -0.170352503657341, -0.7074576616287231, -0.34502050280570984, -1.1196022033691406, -0.15938134491443634, 0.22084234654903412, -0.6906565427780151, 0.3973376452922821, -0.19359968602657318, -0.18382471799850464, 0.248965784907341, 0.6456560492515564, -0.6049264073371887, 0.26935723423957825, -0.11236127465963364, 1.084954857826233, -0.693749725818634, 0.8998292088508606, 0.7891013622283936, -0.7014310359954834, -0.7131286859512329, 0.09387054294347763, -0.08916301280260086, -0.47461259365081787, 0.26748234033584595, 0.07092587649822235, 0.1423935443162918, -0.02525227703154087, -0.40051937103271484, -0.9695884585380554, 0.8829482197761536, 0.08638010919094086, -0.2951529622077942, -0.12164808809757233, 0.13966797292232513, 0.5120036005973816, 0.06192228943109512, 0.20703667402267456, 0.47132420539855957, 0.46890348196029663, -0.3514312207698822, -0.8837062120437622, -0.05806606262922287, -0.5874704122543335, -0.1875622719526291, 0.17410486936569214, -0.6824853420257568, 0.9656713604927063, -0.008567066863179207, 0.13209067285060883, -0.015490753576159477, 0.5938273072242737, 0.2822642922401428, 0.4239681661128998, 0.43187329173088074, 0.816182553768158, 0.7652409076690674, -0.08434055745601654, 0.976020872592926, -0.37720245122909546, 0.7121158242225647, 0.6475414633750916, 0.0603855699300766, 0.9572473168373108, 0.5103178024291992, -0.48535045981407166, 0.70050048828125, 0.7461447715759277, -0.25660285353660583, 0.6762264966964722, -0.07743379473686218, -0.23392409086227417, -0.003204667940735817, 0.06413591653108597, -0.4798053801059723, 0.6522610187530518, 0.41949692368507385, -0.3328414559364319, -0.4078453481197357, -0.20085370540618896, 0.3622133135795593, -0.15811367332935333, -0.37004268169403076, 0.7036714553833008, 0.005773752462118864, -0.7108171582221985, 0.6632054448127747, 0.1843537539243698, 0.6966265439987183, -0.7292191982269287, 0.12221521139144897, -0.2983658015727997, 0.13868510723114014, -0.5670889019966125, -0.9375581741333008, 0.35402560234069824, 0.092661552131176, -0.5567827224731445, 0.013848135247826576, 0.7497241497039795, -0.4367713928222656, -0.6775388717651367, 0.2626302242279053, 0.4461217522621155, 0.3434068262577057, 0.021770896390080452, -0.5500361919403076, 0.04489871487021446, 0.2299940288066864, -0.5995187759399414, 0.40862447023391724, 0.41802483797073364, -0.12343305349349976, 0.3735184967517853, 0.7616835832595825, 0.08943349868059158, 0.13085602223873138, -0.23132310807704926, 0.9087278842926025, -0.9310238361358643, -0.6660909056663513, -0.760618269443512, 0.4625016450881958, -0.40944066643714905, -0.3376431167125702, 1.0180269479751587, 1.0895514488220215, 0.9198906421661377, -0.04788459092378616, 0.6611211895942688, -0.39264169335365295, 0.3543589115142822, -0.5085622072219849, 1.3456017971038818, -0.8967187404632568, 0.03523010015487671, -0.3072443902492523, -0.8585315942764282, -0.09422224760055542, 0.7297342419624329, -0.19659383594989777, -0.3081021010875702, 0.5395335555076599, 0.7368772029876709, -0.18330661952495575, -0.00009203084482578561, 0.00471152737736702, 0.24542084336280823, 0.13597437739372253, 0.2535955607891083, 0.5394601821899414, -0.5678952932357788, 0.7331703305244446, -0.5824229717254639, -0.12716415524482727, -0.1660899519920349, -0.6115180253982544, -0.7280943393707275, -0.6836122870445251, -0.17692840099334717, -0.6980627179145813, -0.2308121770620346, 0.8904957175254822, 0.51421058177948, -0.906050980091095, -0.3635348379611969, 0.2799391448497772, 0.32066428661346436, -0.01593678630888462, -0.33195263147354126, 0.6811635494232178, -0.23781397938728333, -0.8257271647453308, 0.38086438179016113, 0.12788166105747223, -0.3169023394584656, -0.08739974349737167, -0.05136224254965782, -0.2669942378997803, -0.12444259971380234, 0.610714852809906, 0.1260514259338379, -0.36345067620277405, -0.08020913600921631, -0.037372905761003494, -0.14447303116321564, 0.1263459473848343, 0.3634008765220642, -0.7745825052261353, 0.40208274126052856, 0.7418298125267029, 0.2218674123287201, 0.7754753828048706, -0.15407027304172516, 0.32321441173553467, -0.5447111129760742, 0.19673019647598267, -0.10767868906259537, 0.41063886880874634, 0.18010763823986053, -0.2728365659713745, 0.33176589012145996, 0.41301536560058594, -0.32568588852882385, -0.7548753619194031, -0.32736021280288696, -1.0914193391799927, -0.19530659914016724, 0.917441725730896, -0.06692901998758316, -0.4420872926712036, -0.2830851674079895, -0.04658789560198784, 0.38186022639274597, -0.5094156861305237, 0.9513816237449646, 0.6546849012374878, -0.19138410687446594, -0.029397377744317055, -0.5612884759902954, 0.4061644971370697, -0.07799245417118073, -0.6144160628318787, -0.3925933837890625, 0.4055648148059845, 0.8096057176589966, 0.47011101245880127, 0.6462649703025818, -0.2062372863292694, 0.26885586977005005, 0.2676892578601837, -0.21954253315925598, 0.08919285982847214, -0.07256069034337997, -0.15078477561473846, 0.1836056262254715, -0.29480525851249695, -0.08171924948692322 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
pierreguillou/DocLayNet-base
pierreguillou
2023-05-17T08:56:30Z
231
7
null
[ "task_categories:object-detection", "task_categories:image-segmentation", "task_categories:token-classification", "task_ids:instance-segmentation", "annotations_creators:crowdsourced", "size_categories:1K<n<10K", "language:en", "language:de", "language:fr", "language:ja", "license:other", "DocLayNet", "COCO", "PDF", "IBM", "Financial-Reports", "Finance", "Manuals", "Scientific-Articles", "Science", "Laws", "Law", "Regulations", "Patents", "Government-Tenders", "object-detection", "image-segmentation", "token-classification", "arxiv:2206.01062", "region:us" ]
2023-05-17T08:56:30Z
2023-01-25T17:53:26.000Z
2023-01-25T17:53:26
--- language: - en - de - fr - ja annotations_creators: - crowdsourced license: other pretty_name: DocLayNet base size_categories: - 1K<n<10K tags: - DocLayNet - COCO - PDF - IBM - Financial-Reports - Finance - Manuals - Scientific-Articles - Science - Laws - Law - Regulations - Patents - Government-Tenders - object-detection - image-segmentation - token-classification task_categories: - object-detection - image-segmentation - token-classification task_ids: - instance-segmentation --- # Dataset Card for DocLayNet base ## About this card (01/27/2023) ### Property and license All information from this page but the content of this paragraph "About this card (01/27/2023)" has been copied/pasted from [Dataset Card for DocLayNet](https://huggingface.co/datasets/ds4sd/DocLayNet). DocLayNet is a dataset created by Deep Search (IBM Research) published under [license CDLA-Permissive-1.0](https://huggingface.co/datasets/ds4sd/DocLayNet#licensing-information). I do not claim any rights to the data taken from this dataset and published on this page. ### DocLayNet dataset [DocLayNet dataset](https://github.com/DS4SD/DocLayNet) (IBM) provides page-by-page layout segmentation ground-truth using bounding-boxes for 11 distinct class labels on 80863 unique pages from 6 document categories. Until today, the dataset can be downloaded through direct links or as a dataset from Hugging Face datasets: - direct links: [doclaynet_core.zip](https://codait-cos-dax.s3.us.cloud-object-storage.appdomain.cloud/dax-doclaynet/1.0.0/DocLayNet_core.zip) (28 GiB), [doclaynet_extra.zip](https://codait-cos-dax.s3.us.cloud-object-storage.appdomain.cloud/dax-doclaynet/1.0.0/DocLayNet_extra.zip) (7.5 GiB) - Hugging Face dataset library: [dataset DocLayNet](https://huggingface.co/datasets/ds4sd/DocLayNet) Paper: [DocLayNet: A Large Human-Annotated Dataset for Document-Layout Analysis](https://arxiv.org/abs/2206.01062) (06/02/2022) ### Processing into a format facilitating its use by HF notebooks These 2 options require the downloading of all the data (approximately 30GBi), which requires downloading time (about 45 mn in Google Colab) and a large space on the hard disk. These could limit experimentation for people with low resources. Moreover, even when using the download via HF datasets library, it is necessary to download the EXTRA zip separately ([doclaynet_extra.zip](https://codait-cos-dax.s3.us.cloud-object-storage.appdomain.cloud/dax-doclaynet/1.0.0/DocLayNet_extra.zip), 7.5 GiB) to associate the annotated bounding boxes with the text extracted by OCR from the PDFs. This operation also requires additional code because the boundings boxes of the texts do not necessarily correspond to those annotated (a calculation of the percentage of area in common between the boundings boxes annotated and those of the texts makes it possible to make a comparison between them). At last, in order to use Hugging Face notebooks on fine-tuning layout models like LayoutLMv3 or LiLT, DocLayNet data must be processed in a proper format. For all these reasons, I decided to process the DocLayNet dataset: - into 3 datasets of different sizes: - [DocLayNet small](https://huggingface.co/datasets/pierreguillou/DocLayNet-small) (about 1% of DocLayNet) < 1.000k document images (691 train, 64 val, 49 test) - [DocLayNet base](https://huggingface.co/datasets/pierreguillou/DocLayNet-base) (about 10% of DocLayNet) < 10.000k document images (6910 train, 648 val, 499 test) - [DocLayNet large](https://huggingface.co/datasets/pierreguillou/DocLayNet-large) (about 100% of DocLayNet) < 100.000k document images (69.103 train, 6.480 val, 4.994 test) - with associated texts and PDFs (base64 format), - and in a format facilitating their use by HF notebooks. *Note: the layout HF notebooks will greatly help participants of the IBM [ICDAR 2023 Competition on Robust Layout Segmentation in Corporate Documents](https://ds4sd.github.io/icdar23-doclaynet/)!* ### About PDFs languages Citation of the page 3 of the [DocLayNet paper](https://arxiv.org/abs/2206.01062): "We did not control the document selection with regard to language. **The vast majority of documents contained in DocLayNet (close to 95%) are published in English language.** However, **DocLayNet also contains a number of documents in other languages such as German (2.5%), French (1.0%) and Japanese (1.0%)**. While the document language has negligible impact on the performance of computer vision methods such as object detection and segmentation models, it might prove challenging for layout analysis methods which exploit textual features." ### About PDFs categories distribution Citation of the page 3 of the [DocLayNet paper](https://arxiv.org/abs/2206.01062): "The pages in DocLayNet can be grouped into **six distinct categories**, namely **Financial Reports, Manuals, Scientific Articles, Laws & Regulations, Patents and Government Tenders**. Each document category was sourced from various repositories. For example, Financial Reports contain both free-style format annual reports which expose company-specific, artistic layouts as well as the more formal SEC filings. The two largest categories (Financial Reports and Manuals) contain a large amount of free-style layouts in order to obtain maximum variability. In the other four categories, we boosted the variability by mixing documents from independent providers, such as different government websites or publishers. In Figure 2, we show the document categories contained in DocLayNet with their respective sizes." ![DocLayNet PDFs categories distribution (source: DocLayNet paper)](https://huggingface.co/datasets/pierreguillou/DocLayNet-base/resolve/main/DocLayNet_PDFs_categories_distribution.png) ### Download & overview The size of the DocLayNet small is about 10% of the DocLayNet dataset (random selection respectively in the train, val and test files). ``` # !pip install -q datasets from datasets import load_dataset dataset_base = load_dataset("pierreguillou/DocLayNet-base") # overview of dataset_base DatasetDict({ train: Dataset({ features: ['id', 'texts', 'bboxes_block', 'bboxes_line', 'categories', 'image', 'pdf', 'page_hash', 'original_filename', 'page_no', 'num_pages', 'original_width', 'original_height', 'coco_width', 'coco_height', 'collection', 'doc_category'], num_rows: 6910 }) validation: Dataset({ features: ['id', 'texts', 'bboxes_block', 'bboxes_line', 'categories', 'image', 'pdf', 'page_hash', 'original_filename', 'page_no', 'num_pages', 'original_width', 'original_height', 'coco_width', 'coco_height', 'collection', 'doc_category'], num_rows: 648 }) test: Dataset({ features: ['id', 'texts', 'bboxes_block', 'bboxes_line', 'categories', 'image', 'pdf', 'page_hash', 'original_filename', 'page_no', 'num_pages', 'original_width', 'original_height', 'coco_width', 'coco_height', 'collection', 'doc_category'], num_rows: 499 }) }) ``` ### Annotated bounding boxes The DocLayNet base makes easy to display document image with the annotaed bounding boxes of paragraphes or lines. Check the notebook [processing_DocLayNet_dataset_to_be_used_by_layout_models_of_HF_hub.ipynb](https://github.com/piegu/language-models/blob/master/processing_DocLayNet_dataset_to_be_used_by_layout_models_of_HF_hub.ipynb) in order to get the code. #### Paragraphes ![Annotated DocLayNet document image with bounding boxes and categories of paragraphes](https://huggingface.co/datasets/pierreguillou/DocLayNet-base/resolve/main/DocLayNet_image_annotated_bounding_boxes_paragraph.png) #### Lines ![Annotated DocLayNet document image with bounding boxes and categories of lines](https://huggingface.co/datasets/pierreguillou/DocLayNet-base/resolve/main/DocLayNet_image_annotated_bounding_boxes_line.png) ### HF notebooks - [notebooks LayoutLM](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/LayoutLM) (Niels Rogge) - [notebooks LayoutLMv2](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/LayoutLMv2) (Niels Rogge) - [notebooks LayoutLMv3](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/LayoutLMv3) (Niels Rogge) - [notebooks LiLT](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/LiLT) (Niels Rogge) - [Document AI: Fine-tuning LiLT for document-understanding using Hugging Face Transformers](https://github.com/philschmid/document-ai-transformers/blob/main/training/lilt_funsd.ipynb) ([post](https://www.philschmid.de/fine-tuning-lilt#3-fine-tune-and-evaluate-lilt) of Phil Schmid) ## 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) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Annotations](#annotations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** https://developer.ibm.com/exchanges/data/all/doclaynet/ - **Repository:** https://github.com/DS4SD/DocLayNet - **Paper:** https://doi.org/10.1145/3534678.3539043 - **Leaderboard:** - **Point of Contact:** ### Dataset Summary DocLayNet provides page-by-page layout segmentation ground-truth using bounding-boxes for 11 distinct class labels on 80863 unique pages from 6 document categories. It provides several unique features compared to related work such as PubLayNet or DocBank: 1. *Human Annotation*: DocLayNet is hand-annotated by well-trained experts, providing a gold-standard in layout segmentation through human recognition and interpretation of each page layout 2. *Large layout variability*: DocLayNet includes diverse and complex layouts from a large variety of public sources in Finance, Science, Patents, Tenders, Law texts and Manuals 3. *Detailed label set*: DocLayNet defines 11 class labels to distinguish layout features in high detail. 4. *Redundant annotations*: A fraction of the pages in DocLayNet are double- or triple-annotated, allowing to estimate annotation uncertainty and an upper-bound of achievable prediction accuracy with ML models 5. *Pre-defined train- test- and validation-sets*: DocLayNet provides fixed sets for each to ensure proportional representation of the class-labels and avoid leakage of unique layout styles across the sets. ### Supported Tasks and Leaderboards We are hosting a competition in ICDAR 2023 based on the DocLayNet dataset. For more information see https://ds4sd.github.io/icdar23-doclaynet/. ## Dataset Structure ### Data Fields DocLayNet provides four types of data assets: 1. PNG images of all pages, resized to square `1025 x 1025px` 2. Bounding-box annotations in COCO format for each PNG image 3. Extra: Single-page PDF files matching each PNG image 4. Extra: JSON file matching each PDF page, which provides the digital text cells with coordinates and content The COCO image record are defined like this example ```js ... { "id": 1, "width": 1025, "height": 1025, "file_name": "132a855ee8b23533d8ae69af0049c038171a06ddfcac892c3c6d7e6b4091c642.png", // Custom fields: "doc_category": "financial_reports" // high-level document category "collection": "ann_reports_00_04_fancy", // sub-collection name "doc_name": "NASDAQ_FFIN_2002.pdf", // original document filename "page_no": 9, // page number in original document "precedence": 0, // Annotation order, non-zero in case of redundant double- or triple-annotation }, ... ``` The `doc_category` field uses one of the following constants: ``` financial_reports, scientific_articles, laws_and_regulations, government_tenders, manuals, patents ``` ### Data Splits The dataset provides three splits - `train` - `val` - `test` ## Dataset Creation ### Annotations #### Annotation process The labeling guideline used for training of the annotation experts are available at [DocLayNet_Labeling_Guide_Public.pdf](https://raw.githubusercontent.com/DS4SD/DocLayNet/main/assets/DocLayNet_Labeling_Guide_Public.pdf). #### Who are the annotators? Annotations are crowdsourced. ## Additional Information ### Dataset Curators The dataset is curated by the [Deep Search team](https://ds4sd.github.io/) at IBM Research. You can contact us at [deepsearch-core@zurich.ibm.com](mailto:deepsearch-core@zurich.ibm.com). Curators: - Christoph Auer, [@cau-git](https://github.com/cau-git) - Michele Dolfi, [@dolfim-ibm](https://github.com/dolfim-ibm) - Ahmed Nassar, [@nassarofficial](https://github.com/nassarofficial) - Peter Staar, [@PeterStaar-IBM](https://github.com/PeterStaar-IBM) ### Licensing Information License: [CDLA-Permissive-1.0](https://cdla.io/permissive-1-0/) ### Citation Information ```bib @article{doclaynet2022, title = {DocLayNet: A Large Human-Annotated Dataset for Document-Layout Segmentation}, doi = {10.1145/3534678.353904}, url = {https://doi.org/10.1145/3534678.3539043}, author = {Pfitzmann, Birgit and Auer, Christoph and Dolfi, Michele and Nassar, Ahmed S and Staar, Peter W J}, year = {2022}, isbn = {9781450393850}, publisher = {Association for Computing Machinery}, address = {New York, NY, USA}, booktitle = {Proceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining}, pages = {3743–3751}, numpages = {9}, location = {Washington DC, USA}, series = {KDD '22} } ``` ### Contributions Thanks to [@dolfim-ibm](https://github.com/dolfim-ibm), [@cau-git](https://github.com/cau-git) for adding this dataset.
[ -0.5203283429145813, -0.5484158992767334, 0.2683718502521515, 0.28984037041664124, -0.1180577427148819, -0.29818347096443176, -0.04764268919825554, -0.3491286039352417, 0.4235789179801941, 0.5555996298789978, -0.4510800838470459, -0.6452175974845886, -0.49901917576789856, 0.07987254858016968, -0.265621542930603, 0.6865109205245972, -0.1988193243741989, -0.20152394473552704, -0.3978520333766937, -0.15190017223358154, -0.0932844877243042, -0.3086434602737427, -0.48638877272605896, -0.2314075231552124, 0.21725167334079742, 0.5020378828048706, 0.4391185939311981, 0.8966417908668518, 0.7656351327896118, 0.35809850692749023, -0.2142317295074463, 0.2524496614933014, -0.24491827189922333, -0.3632751703262329, 0.12457673251628876, -0.2881239056587219, -0.7187483310699463, 0.3694119155406952, 0.5948054194450378, 0.5324882864952087, -0.03035307489335537, -0.0846310406923294, 0.09592362493276596, 0.7815240025520325, -0.19645123183727264, 0.23061424493789673, -0.1382768452167511, 0.20967821776866913, -0.3385063111782074, -0.14708305895328522, -0.29422032833099365, -0.16831853985786438, 0.20322291553020477, -0.9704429507255554, 0.3777818977832794, 0.14409920573234558, 1.2919577360153198, -0.0260093305259943, -0.091413214802742, -0.2597780227661133, -0.11544886976480484, 0.5301136374473572, -0.48564413189888, 0.321344792842865, 0.5687345862388611, -0.030319521203637123, -0.06322015076875687, -0.9138652682304382, -0.643510639667511, -0.16095179319381714, -0.4373336136341095, 0.47581347823143005, -0.18650570511817932, -0.10491101443767548, 0.49880874156951904, 0.48349419236183167, -0.7379544973373413, 0.1300828456878662, -0.5695265531539917, -0.25241315364837646, 0.7520734667778015, 0.07541558891534805, 0.3465999960899353, -0.7867954969406128, -0.3081931173801422, -0.6318907737731934, -0.1667940616607666, 0.07758849859237671, 0.4276336431503296, 0.0671783909201622, -0.5065668225288391, 0.4652476906776428, -0.014816492795944214, 0.6382761001586914, 0.31961947679519653, -0.3721546530723572, 0.7461880445480347, -0.46929600834846497, -0.4115564823150635, -0.10502636432647705, 1.0619239807128906, 0.4543067216873169, -0.028690526261925697, 0.15824605524539948, 0.12348122894763947, -0.2942720651626587, 0.2888786196708679, -0.8168801069259644, -0.21036556363105774, 0.460849404335022, -0.7492889761924744, -0.4489969313144684, 0.11424100399017334, -0.9205490946769714, -0.40076932311058044, -0.3314216136932373, -0.038178883492946625, -0.7641991376876831, -0.11761756986379623, 0.03366594761610031, -0.4653927981853485, 0.35541075468063354, 0.44110921025276184, -0.7493889927864075, 0.3221898674964905, 0.6846102476119995, 0.9657274484634399, -0.05046834796667099, -0.5575138330459595, -0.364524781703949, -0.1544865369796753, -0.2924498915672302, 0.7548472881317139, -0.28467002511024475, -0.528066098690033, -0.21366272866725922, 0.4570401608943939, -0.2631194591522217, -0.5321316123008728, 0.8293538093566895, -0.058098066598176956, 0.4933624565601349, -0.19805660843849182, -0.5757169723510742, 0.03440602123737335, 0.3697056174278259, -0.7748340964317322, 1.0501936674118042, 0.3894042372703552, -1.0775871276855469, 0.31749582290649414, -0.7216660976409912, -0.36442577838897705, -0.006158848758786917, -0.15204857289791107, -0.5802429914474487, -0.3051531910896301, 0.1707637757062912, 0.44072604179382324, -0.15617963671684265, 0.04967020824551582, -0.1691448986530304, -0.08240614831447601, -0.04331118240952492, -0.06089455261826515, 1.0570578575134277, 0.24941705167293549, -0.3640483617782593, -0.12632614374160767, -1.0472168922424316, -0.12728381156921387, 0.2668246626853943, -0.29397594928741455, -0.3440738916397095, -0.29778966307640076, 0.24919617176055908, 0.32782140374183655, 0.11821754276752472, -0.6042526960372925, 0.3012894093990326, -0.3371894359588623, 0.22751136124134064, 0.46462273597717285, -0.09299423545598984, 0.5741933584213257, -0.41493433713912964, 0.4020692706108093, 0.16142477095127106, 0.3203047811985016, -0.07926751673221588, -0.5453863739967346, -0.545509397983551, -0.4044455885887146, 0.3823719024658203, 0.6898021697998047, -0.48440343141555786, 0.692867636680603, -0.5478196144104004, -0.6466947793960571, -0.41668781638145447, 0.06307065486907959, 0.2861552834510803, 0.7732620239257812, 0.2822452485561371, -0.5287508368492126, -0.36699870228767395, -1.0404534339904785, 0.3134836256504059, -0.10458087921142578, -0.10981282591819763, 0.6424650549888611, 0.6524651050567627, -0.15142840147018433, 0.7696601152420044, -0.48694244027137756, -0.5796478390693665, -0.011754428036510944, 0.14005467295646667, 0.18796586990356445, 0.5423645973205566, 0.7337894439697266, -0.9351091384887695, -0.608993411064148, 0.08609840273857117, -0.7761037349700928, -0.035835426300764084, -0.2461095154285431, -0.2693724036216736, 0.27895066142082214, 0.5355948805809021, -0.6456420421600342, 0.5325632095336914, 0.35022348165512085, -0.41018423438072205, 0.44322726130485535, -0.4481371343135834, -0.010924926958978176, -1.2556326389312744, 0.3512114882469177, 0.20746806263923645, -0.00608699768781662, -0.38461729884147644, -0.027489271014928818, 0.30700841546058655, -0.18151265382766724, -0.262357234954834, 0.7019592523574829, -0.5323474407196045, -0.007035024929791689, 0.20645730197429657, 0.42026665806770325, 0.45141610503196716, 0.3352546989917755, 0.11224954575300217, 0.6836920380592346, 0.5130807757377625, -0.1673666536808014, 0.4237610399723053, 0.7382098436355591, -0.1842196136713028, 0.7731147408485413, -0.6176405549049377, -0.24468927085399628, -0.22393089532852173, 0.4596230089664459, -0.7129418849945068, -0.3925529718399048, 0.3383733034133911, -0.29959172010421753, 0.5840370059013367, -0.15104572474956512, -0.47684338688850403, -0.4845326840877533, -0.5934356451034546, -0.12788712978363037, 0.3229309916496277, -0.4725695848464966, 0.6039652228355408, 0.26212045550346375, 0.08981487154960632, -0.6384953856468201, -0.7896652817726135, 0.17385761439800262, -0.12570519745349884, -1.0533199310302734, 0.6968171000480652, -0.05546571686863899, -0.14310671389102936, 0.22979778051376343, 0.05572614073753357, 0.1691645383834839, -0.02793208882212639, 0.4485187530517578, 0.21275649964809418, 0.00942738726735115, -0.08197496086359024, -0.30604538321495056, -0.14555099606513977, -0.12655648589134216, -0.41480332612991333, 0.48131418228149414, -0.1599547415971756, -0.07089334726333618, -0.2221861630678177, 0.33978191018104553, 0.4420706629753113, -0.23455798625946045, 0.7470035552978516, 0.7906601428985596, -0.19233883917331696, 0.004283113870769739, -0.43049728870391846, 0.2407151460647583, -0.4078563451766968, 0.23327551782131195, -0.3935674726963043, -0.494769424200058, 0.6039804816246033, 0.11893036961555481, -0.07801730185747147, 0.825177788734436, 0.24556057155132294, -0.2620294988155365, 0.36992666125297546, 0.44163158535957336, -0.06868991255760193, 0.5536451935768127, -0.7152119874954224, -0.024179495871067047, -1.0435696840286255, -0.4694257974624634, -0.6766496300697327, -0.22346027195453644, -0.9831065535545349, -0.457215815782547, 0.25703638792037964, 0.0027317230124026537, 0.03409283980727196, 0.43472230434417725, -0.7489222288131714, 0.23319317400455475, 0.6868799328804016, 0.10637696832418442, -0.08474744856357574, 0.416841983795166, -0.4894696772098541, 0.14819537103176117, -0.4390363395214081, -0.3650093376636505, 1.0778125524520874, 0.3897092640399933, 0.49421581625938416, -0.07223164290189743, 0.7959508299827576, 0.11609256267547607, 0.05278557911515236, -0.6609081625938416, 0.41426411271095276, -0.5329689979553223, -0.4210089147090912, -0.43095237016677856, -0.5489277839660645, -1.1087921857833862, 0.05021343380212784, -0.06600651144981384, -0.9363951683044434, 0.5971230268478394, -0.15086933970451355, -0.048947617411613464, 0.3303098976612091, -0.8111156821250916, 0.9508202075958252, -0.11123500764369965, -0.5296587347984314, 0.18633966147899628, -0.749764084815979, -0.0036060295533388853, 0.01189369335770607, 0.1310335397720337, 0.1969863325357437, 0.14179794490337372, 0.9213765859603882, -0.8755708336830139, 0.5907293558120728, -0.11937905848026276, -0.05517628416419029, 0.3055891692638397, -0.1472858190536499, 0.4886353313922882, -0.06778673082590103, -0.17191104590892792, 0.1620718389749527, 0.02807273529469967, -0.4963102340698242, -0.3600466549396515, 0.6580179333686829, -0.9462928175926208, -0.37401488423347473, -0.49395236372947693, -0.25978338718414307, -0.060460593551397324, 0.41589897871017456, 0.7288203835487366, 0.7048015594482422, -0.18734502792358398, 0.27779027819633484, 0.8513475060462952, -0.32711297273635864, 0.38356658816337585, 0.14234225451946259, 0.015408175997436047, -0.40686920285224915, 0.8045442700386047, 0.3394842743873596, -0.04409842938184738, 0.603850245475769, 0.10054575651884079, -0.238490030169487, -0.44478940963745117, -0.42306816577911377, 0.4486614167690277, -0.6409425735473633, 0.007119088899344206, -0.858711302280426, -0.4636216461658478, -0.5368799567222595, -0.1705520898103714, -0.11091681569814682, -0.4929215610027313, -0.34656548500061035, -0.14750780165195465, 0.30740153789520264, 0.4395945966243744, -0.3007674813270569, 0.2416571080684662, -0.5906363725662231, 0.1388203501701355, 0.30190858244895935, 0.49698448181152344, -0.20626704394817352, -0.43582603335380554, -0.05925152450799942, -0.17566639184951782, -0.4190319776535034, -0.6088681221008301, 0.34585243463516235, -0.04330659285187721, 0.5369348526000977, 0.226624995470047, -0.2273080050945282, 0.4061805009841919, -0.3131326138973236, 0.8777806162834167, 0.17423665523529053, -0.48362720012664795, 0.4865567982196808, -0.4231528341770172, 0.25545501708984375, 0.504287600517273, 0.3860342800617218, -0.6331683397293091, 0.0734880343079567, -1.0052361488342285, -0.8553823232650757, 0.9039627313613892, 0.31856074929237366, -0.1085873618721962, 0.21959073841571808, 0.33641111850738525, -0.13511987030506134, -0.07643098384141922, -0.24906127154827118, -0.32024019956588745, -0.5077900290489197, -0.3410278558731079, -0.062047332525253296, -0.21214547753334045, -0.31268298625946045, -0.2098105549812317, 0.6812483072280884, -0.1306210458278656, 0.5115974545478821, 0.5435080528259277, -0.07805033773183823, 0.14392760396003723, 0.03630267083644867, 0.7213418483734131, 0.5432936549186707, -0.5570340156555176, -0.07735806703567505, -0.2588322162628174, -1.0749880075454712, -0.05283580347895622, 0.6016836166381836, -0.24524112045764923, 0.05441862344741821, 0.5319870114326477, 0.8378918170928955, -0.2677561938762665, -0.20573318004608154, 0.6691065430641174, -0.4306142330169678, -0.646549642086029, -0.34289273619651794, -0.036598265171051025, 0.10327925533056259, -0.06563324481248856, 0.06497637927532196, 0.18294081091880798, 0.10833757370710373, -0.28115254640579224, 0.29269689321517944, 0.07694993168115616, -0.40851539373397827, -0.10330502688884735, 0.354322224855423, 0.08379107713699341, -0.060814809054136276, 0.757224440574646, -0.3145046830177307, -0.3347090780735016, 0.8329466581344604, 0.2879841923713684, 0.7665406465530396, 0.2501537501811981, 0.5347000360488892, 0.5687921643257141, 0.33511433005332947, 0.10827454924583435, 0.13669872283935547, 0.01923777163028717, -0.6301984786987305, -0.056346215307712555, -0.6548743844032288, -0.2409592568874359, 0.23929525911808014, -0.4634622037410736, 0.1623435765504837, -0.5317303538322449, -0.08277088403701782, 0.26897886395454407, 0.49133792519569397, -0.9075589179992676, 0.3236105740070343, 0.1782016009092331, 1.3187785148620605, -0.5898614525794983, 0.562452495098114, 0.7955328822135925, -0.5381046533584595, -1.056358814239502, -0.053252000361680984, 0.24245978891849518, -0.5859768986701965, 0.5634655356407166, 0.05131859704852104, 0.3667292594909668, -0.3695039451122284, -0.5031763911247253, -0.6676644682884216, 1.3018736839294434, -0.08915147930383682, -0.44196659326553345, -0.03474029153585434, 0.16278603672981262, 0.5777565240859985, -0.41974109411239624, 0.4651174247264862, 0.5204299688339233, 0.6388148069381714, 0.043067190796136856, -0.8638707399368286, 0.09604070335626602, -0.6978515386581421, -0.0012539492454379797, 0.02807428315281868, -1.0256553888320923, 0.8168506026268005, 0.33929699659347534, 0.056633830070495605, -0.2345968633890152, 0.17051509022712708, 0.12669669091701508, 0.22879208624362946, 0.3559103012084961, 0.9101566672325134, 1.081725001335144, -0.2269698828458786, 1.4275609254837036, -0.09418629854917526, 0.25946903228759766, 0.8320156335830688, -0.12310175597667694, 0.5272902250289917, 0.27391788363456726, -0.1516329050064087, 0.5567837357521057, 0.7155812978744507, -0.3331504464149475, 0.3661513328552246, -0.011008103378117085, 0.28438055515289307, 0.10830608010292053, -0.07609236985445023, -0.38710275292396545, 0.4306703805923462, 0.34769850969314575, -0.4515804052352905, -0.034852541983127594, -0.12549690902233124, 0.332611083984375, -0.24046647548675537, -0.005914559122174978, 0.7291565537452698, 0.018852517008781433, -0.5027819275856018, 0.5312454104423523, 0.061872661113739014, 0.6336617469787598, -0.5863299369812012, 0.23404066264629364, -0.5967127084732056, 0.04775958135724068, -0.45499667525291443, -0.8213375210762024, 0.12824340164661407, -0.1616150438785553, -0.2850072979927063, -0.2906469404697418, 0.8182902336120605, -0.1280224323272705, -0.5636035203933716, 0.26257020235061646, 0.36621320247650146, 0.13751588761806488, 0.30483317375183105, -0.8661355376243591, -0.00004939722202834673, 0.05827512592077255, -0.42182856798171997, 0.416162371635437, 0.6410681009292603, -0.08455565571784973, 0.44139641523361206, 0.5061255693435669, 0.18760594725608826, -0.11038721352815628, -0.10164840519428253, 0.8299199342727661, -0.446225106716156, -0.6736770868301392, -0.43178507685661316, 0.5967155694961548, -0.7791900634765625, -0.564052402973175, 0.7023077011108398, 0.6746987700462341, 0.8338060975074768, 0.03395592048764229, 0.796441912651062, -0.41903212666511536, 0.27831950783729553, -0.5000155568122864, 0.7312391996383667, -0.8158578276634216, 0.07224427908658981, -0.5305002331733704, -0.7263649106025696, -0.2626882791519165, 0.6147050261497498, -0.3956761360168457, -0.02933349274098873, 0.7848392128944397, 0.8058496117591858, -0.3990263342857361, 0.0003563999489415437, 0.02590365521609783, 0.17407795786857605, 0.33928242325782776, 0.17039446532726288, 0.37196969985961914, -0.664056658744812, 0.44091901183128357, -0.5490480661392212, -0.36285316944122314, -0.3412899971008301, -0.8364053964614868, -0.7618106007575989, -0.843495786190033, -0.4900912344455719, -0.6494285464286804, -0.3580557107925415, 0.7176659107208252, 0.9756690859794617, -0.6406095027923584, -0.18029581010341644, 0.10994935035705566, 0.07665162533521652, -0.08313383907079697, -0.27743351459503174, 0.9388099312782288, -0.057666122913360596, -0.5459661483764648, 0.035457026213407516, 0.22644127905368805, 0.24438510835170746, 0.100946344435215, -0.13164415955543518, -0.13531386852264404, -0.05315876752138138, 0.4292356073856354, 0.3197696805000305, -0.29487621784210205, -0.0398237369954586, 0.11785177886486053, -0.3757534921169281, 0.35027849674224854, 0.5568138360977173, -0.37225213646888733, 0.327720046043396, 0.6835145354270935, 0.4272812008857727, 0.847535252571106, 0.05087622255086899, 0.052249420434236526, -0.7497990131378174, 0.41401705145835876, -0.1378781497478485, 0.5505716800689697, 0.4233371615409851, -0.5107728242874146, 0.8107195496559143, 0.3590511679649353, -0.48472315073013306, -0.4613632261753082, -0.16255542635917664, -1.2196147441864014, -0.2265775203704834, 0.9734209775924683, -0.1673879474401474, -0.5888052582740784, 0.14533860981464386, -0.26519453525543213, -0.04949517920613289, -0.4272646903991699, 0.4716089367866516, 0.7541811466217041, -0.0853256806731224, -0.24881233274936676, -0.3940194547176361, 0.6309818029403687, 0.14603541791439056, -0.9094918370246887, -0.22408241033554077, 0.4565995931625366, 0.29153716564178467, 0.6663541793823242, 0.7322989702224731, -0.2910747230052948, 0.010597667656838894, 0.2649848163127899, 0.02317114546895027, -0.1872517466545105, -0.16721592843532562, -0.18557985126972198, 0.20344096422195435, -0.35434043407440186, -0.05116037651896477 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Stevross/mmlu
Stevross
2023-07-11T12:04:33Z
231
3
mmlu
[ "task_categories:question-answering", "task_ids:multiple-choice-qa", "annotations_creators:no-annotation", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:mit", "arxiv:2009.03300", "arxiv:2005.00700", "arxiv:2005.14165", "arxiv:2008.02275", "region:us" ]
2023-07-11T12:04:33Z
2023-07-11T11:58:20.000Z
2023-07-11T11:58:20
--- annotations_creators: - no-annotation language_creators: - expert-generated language: - en license: - mit multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - question-answering task_ids: - multiple-choice-qa paperswithcode_id: mmlu pretty_name: Measuring Massive Multitask Language Understanding language_bcp47: - en-US dataset_info: - config_name: abstract_algebra features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 19328 num_examples: 100 - name: validation num_bytes: 2024 num_examples: 11 - name: dev num_bytes: 830 num_examples: 5 download_size: 166184960 dataset_size: 160623559 - config_name: anatomy features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 33121 num_examples: 135 - name: validation num_bytes: 3140 num_examples: 14 - name: dev num_bytes: 967 num_examples: 5 download_size: 166184960 dataset_size: 160638605 - config_name: astronomy features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 46771 num_examples: 152 - name: validation num_bytes: 5027 num_examples: 16 - name: dev num_bytes: 2076 num_examples: 5 download_size: 166184960 dataset_size: 160655251 - config_name: business_ethics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 33252 num_examples: 100 - name: validation num_bytes: 3038 num_examples: 11 - name: dev num_bytes: 2190 num_examples: 5 download_size: 166184960 dataset_size: 160639857 - config_name: clinical_knowledge features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 62754 num_examples: 265 - name: validation num_bytes: 6664 num_examples: 29 - name: dev num_bytes: 1210 num_examples: 5 download_size: 166184960 dataset_size: 160672005 - config_name: college_biology features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 48797 num_examples: 144 - name: validation num_bytes: 4819 num_examples: 16 - name: dev num_bytes: 1532 num_examples: 5 download_size: 166184960 dataset_size: 160656525 - config_name: college_chemistry features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 24708 num_examples: 100 - name: validation num_bytes: 2328 num_examples: 8 - name: dev num_bytes: 1331 num_examples: 5 download_size: 166184960 dataset_size: 160629744 - config_name: college_computer_science features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 42641 num_examples: 100 - name: validation num_bytes: 4663 num_examples: 11 - name: dev num_bytes: 2765 num_examples: 5 download_size: 166184960 dataset_size: 160651446 - config_name: college_mathematics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 24711 num_examples: 100 - name: validation num_bytes: 2668 num_examples: 11 - name: dev num_bytes: 1493 num_examples: 5 download_size: 166184960 dataset_size: 160630249 - config_name: college_medicine features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 82397 num_examples: 173 - name: validation num_bytes: 7909 num_examples: 22 - name: dev num_bytes: 1670 num_examples: 5 download_size: 166184960 dataset_size: 160693353 - config_name: college_physics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 30181 num_examples: 102 - name: validation num_bytes: 3490 num_examples: 11 - name: dev num_bytes: 1412 num_examples: 5 download_size: 166184960 dataset_size: 160636460 - config_name: computer_security features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 27124 num_examples: 100 - name: validation num_bytes: 4549 num_examples: 11 - name: dev num_bytes: 1101 num_examples: 5 download_size: 166184960 dataset_size: 160634151 - config_name: conceptual_physics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 40709 num_examples: 235 - name: validation num_bytes: 4474 num_examples: 26 - name: dev num_bytes: 934 num_examples: 5 download_size: 166184960 dataset_size: 160647494 - config_name: econometrics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 46547 num_examples: 114 - name: validation num_bytes: 4967 num_examples: 12 - name: dev num_bytes: 1644 num_examples: 5 download_size: 166184960 dataset_size: 160654535 - config_name: electrical_engineering features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 25142 num_examples: 145 - name: validation num_bytes: 2903 num_examples: 16 - name: dev num_bytes: 972 num_examples: 5 download_size: 166184960 dataset_size: 160630394 - config_name: elementary_mathematics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 70108 num_examples: 378 - name: validation num_bytes: 8988 num_examples: 41 - name: dev num_bytes: 1440 num_examples: 5 download_size: 166184960 dataset_size: 160681913 - config_name: formal_logic features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 49785 num_examples: 126 - name: validation num_bytes: 6252 num_examples: 14 - name: dev num_bytes: 1757 num_examples: 5 download_size: 166184960 dataset_size: 160659171 - config_name: global_facts features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 18403 num_examples: 100 - name: validation num_bytes: 1865 num_examples: 10 - name: dev num_bytes: 1229 num_examples: 5 download_size: 166184960 dataset_size: 160622874 - config_name: high_school_biology features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 109732 num_examples: 310 - name: validation num_bytes: 11022 num_examples: 32 - name: dev num_bytes: 1673 num_examples: 5 download_size: 166184960 dataset_size: 160723804 - config_name: high_school_chemistry features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 58464 num_examples: 203 - name: validation num_bytes: 7092 num_examples: 22 - name: dev num_bytes: 1220 num_examples: 5 download_size: 166184960 dataset_size: 160668153 - config_name: high_school_computer_science features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 44476 num_examples: 100 - name: validation num_bytes: 3343 num_examples: 9 - name: dev num_bytes: 2918 num_examples: 5 download_size: 166184960 dataset_size: 160652114 - config_name: high_school_european_history features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 270300 num_examples: 165 - name: validation num_bytes: 29632 num_examples: 18 - name: dev num_bytes: 11564 num_examples: 5 download_size: 166184960 dataset_size: 160912873 - config_name: high_school_geography features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 42034 num_examples: 198 - name: validation num_bytes: 4332 num_examples: 22 - name: dev num_bytes: 1403 num_examples: 5 download_size: 166184960 dataset_size: 160649146 - config_name: high_school_government_and_politics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 66074 num_examples: 193 - name: validation num_bytes: 7063 num_examples: 21 - name: dev num_bytes: 1779 num_examples: 5 download_size: 166184960 dataset_size: 160676293 - config_name: high_school_macroeconomics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 117687 num_examples: 390 - name: validation num_bytes: 13020 num_examples: 43 - name: dev num_bytes: 1328 num_examples: 5 download_size: 166184960 dataset_size: 160733412 - config_name: high_school_mathematics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 54854 num_examples: 270 - name: validation num_bytes: 5765 num_examples: 29 - name: dev num_bytes: 1297 num_examples: 5 download_size: 166184960 dataset_size: 160663293 - config_name: high_school_microeconomics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 75703 num_examples: 238 - name: validation num_bytes: 7553 num_examples: 26 - name: dev num_bytes: 1298 num_examples: 5 download_size: 166184960 dataset_size: 160685931 - config_name: high_school_physics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 59538 num_examples: 151 - name: validation num_bytes: 6771 num_examples: 17 - name: dev num_bytes: 1489 num_examples: 5 download_size: 166184960 dataset_size: 160669175 - config_name: high_school_psychology features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 159407 num_examples: 545 - name: validation num_bytes: 17269 num_examples: 60 - name: dev num_bytes: 1905 num_examples: 5 download_size: 166184960 dataset_size: 160779958 - config_name: high_school_statistics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 110702 num_examples: 216 - name: validation num_bytes: 9997 num_examples: 23 - name: dev num_bytes: 2528 num_examples: 5 download_size: 166184960 dataset_size: 160724604 - config_name: high_school_us_history features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 296734 num_examples: 204 - name: validation num_bytes: 31706 num_examples: 22 - name: dev num_bytes: 8864 num_examples: 5 download_size: 166184960 dataset_size: 160938681 - config_name: high_school_world_history features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 378617 num_examples: 237 - name: validation num_bytes: 45501 num_examples: 26 - name: dev num_bytes: 4882 num_examples: 5 download_size: 166184960 dataset_size: 161030377 - config_name: human_aging features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 46098 num_examples: 223 - name: validation num_bytes: 4707 num_examples: 23 - name: dev num_bytes: 1008 num_examples: 5 download_size: 166184960 dataset_size: 160653190 - config_name: human_sexuality features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 32110 num_examples: 131 - name: validation num_bytes: 2421 num_examples: 12 - name: dev num_bytes: 1077 num_examples: 5 download_size: 166184960 dataset_size: 160636985 - config_name: international_law features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 53531 num_examples: 121 - name: validation num_bytes: 6473 num_examples: 13 - name: dev num_bytes: 2418 num_examples: 5 download_size: 166184960 dataset_size: 160663799 - config_name: jurisprudence features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 33986 num_examples: 108 - name: validation num_bytes: 3729 num_examples: 11 - name: dev num_bytes: 1303 num_examples: 5 download_size: 166184960 dataset_size: 160640395 - config_name: logical_fallacies features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 50117 num_examples: 163 - name: validation num_bytes: 5103 num_examples: 18 - name: dev num_bytes: 1573 num_examples: 5 download_size: 166184960 dataset_size: 160658170 - config_name: machine_learning features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 33880 num_examples: 112 - name: validation num_bytes: 3232 num_examples: 11 - name: dev num_bytes: 2323 num_examples: 5 download_size: 166184960 dataset_size: 160640812 - config_name: management features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 20002 num_examples: 103 - name: validation num_bytes: 1820 num_examples: 11 - name: dev num_bytes: 898 num_examples: 5 download_size: 166184960 dataset_size: 160624097 - config_name: marketing features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 63025 num_examples: 234 - name: validation num_bytes: 7394 num_examples: 25 - name: dev num_bytes: 1481 num_examples: 5 download_size: 166184960 dataset_size: 160673277 - config_name: medical_genetics features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 20864 num_examples: 100 - name: validation num_bytes: 3005 num_examples: 11 - name: dev num_bytes: 1089 num_examples: 5 download_size: 166184960 dataset_size: 160626335 - config_name: miscellaneous features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 147704 num_examples: 783 - name: validation num_bytes: 14330 num_examples: 86 - name: dev num_bytes: 699 num_examples: 5 download_size: 166184960 dataset_size: 160764110 - config_name: moral_disputes features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 107818 num_examples: 346 - name: validation num_bytes: 12420 num_examples: 38 - name: dev num_bytes: 1755 num_examples: 5 download_size: 166184960 dataset_size: 160723370 - config_name: moral_scenarios features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 374026 num_examples: 895 - name: validation num_bytes: 42338 num_examples: 100 - name: dev num_bytes: 2058 num_examples: 5 download_size: 166184960 dataset_size: 161019799 - config_name: nutrition features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 92410 num_examples: 306 - name: validation num_bytes: 8436 num_examples: 33 - name: dev num_bytes: 2085 num_examples: 5 download_size: 166184960 dataset_size: 160704308 - config_name: philosophy features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 80073 num_examples: 311 - name: validation num_bytes: 9184 num_examples: 34 - name: dev num_bytes: 988 num_examples: 5 download_size: 166184960 dataset_size: 160691622 - config_name: prehistory features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 89594 num_examples: 324 - name: validation num_bytes: 10285 num_examples: 35 - name: dev num_bytes: 1878 num_examples: 5 download_size: 166184960 dataset_size: 160703134 - config_name: professional_accounting features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 124550 num_examples: 282 - name: validation num_bytes: 14372 num_examples: 31 - name: dev num_bytes: 2148 num_examples: 5 download_size: 166184960 dataset_size: 160742447 - config_name: professional_law features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 1891762 num_examples: 1534 - name: validation num_bytes: 203519 num_examples: 170 - name: dev num_bytes: 6610 num_examples: 5 download_size: 166184960 dataset_size: 162703268 - config_name: professional_medicine features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 217561 num_examples: 272 - name: validation num_bytes: 23847 num_examples: 31 - name: dev num_bytes: 3807 num_examples: 5 download_size: 166184960 dataset_size: 160846592 - config_name: professional_psychology features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 225899 num_examples: 612 - name: validation num_bytes: 29101 num_examples: 69 - name: dev num_bytes: 2267 num_examples: 5 download_size: 166184960 dataset_size: 160858644 - config_name: public_relations features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 28760 num_examples: 110 - name: validation num_bytes: 4566 num_examples: 12 - name: dev num_bytes: 1496 num_examples: 5 download_size: 166184960 dataset_size: 160636199 - config_name: security_studies features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 204844 num_examples: 245 - name: validation num_bytes: 22637 num_examples: 27 - name: dev num_bytes: 5335 num_examples: 5 download_size: 166184960 dataset_size: 160834193 - config_name: sociology features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 66243 num_examples: 201 - name: validation num_bytes: 7184 num_examples: 22 - name: dev num_bytes: 1613 num_examples: 5 download_size: 166184960 dataset_size: 160676417 - config_name: us_foreign_policy features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 28443 num_examples: 100 - name: validation num_bytes: 3264 num_examples: 11 - name: dev num_bytes: 1611 num_examples: 5 download_size: 166184960 dataset_size: 160634695 - config_name: virology features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 38759 num_examples: 166 - name: validation num_bytes: 5463 num_examples: 18 - name: dev num_bytes: 1096 num_examples: 5 download_size: 166184960 dataset_size: 160646695 - config_name: world_religions features: - name: question dtype: string - name: choices sequence: string - name: answer dtype: class_label: names: '0': A '1': B '2': C '3': D splits: - name: auxiliary_train num_bytes: 160601377 num_examples: 99842 - name: test num_bytes: 25274 num_examples: 171 - name: validation num_bytes: 2765 num_examples: 19 - name: dev num_bytes: 670 num_examples: 5 download_size: 166184960 dataset_size: 160630086 --- # Dataset Card for MMLU ## 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/hendrycks/test - **Paper**: https://arxiv.org/abs/2009.03300 ### Dataset Summary [Measuring Massive Multitask Language Understanding](https://arxiv.org/pdf/2009.03300) by [Dan Hendrycks](https://people.eecs.berkeley.edu/~hendrycks/), [Collin Burns](http://collinpburns.com), [Steven Basart](https://stevenbas.art), Andy Zou, Mantas Mazeika, [Dawn Song](https://people.eecs.berkeley.edu/~dawnsong/), and [Jacob Steinhardt](https://www.stat.berkeley.edu/~jsteinhardt/) (ICLR 2021). This is a massive multitask test consisting of multiple-choice questions from various branches of knowledge. The test spans subjects in the humanities, social sciences, hard sciences, and other areas that are important for some people to learn. This covers 57 tasks including elementary mathematics, US history, computer science, law, and more. To attain high accuracy on this test, models must possess extensive world knowledge and problem solving ability. A complete list of tasks: ['abstract_algebra', 'anatomy', 'astronomy', 'business_ethics', 'clinical_knowledge', 'college_biology', 'college_chemistry', 'college_computer_science', 'college_mathematics', 'college_medicine', 'college_physics', 'computer_security', 'conceptual_physics', 'econometrics', 'electrical_engineering', 'elementary_mathematics', 'formal_logic', 'global_facts', 'high_school_biology', 'high_school_chemistry', 'high_school_computer_science', 'high_school_european_history', 'high_school_geography', 'high_school_government_and_politics', 'high_school_macroeconomics', 'high_school_mathematics', 'high_school_microeconomics', 'high_school_physics', 'high_school_psychology', 'high_school_statistics', 'high_school_us_history', 'high_school_world_history', 'human_aging', 'human_sexuality', 'international_law', 'jurisprudence', 'logical_fallacies', 'machine_learning', 'management', 'marketing', 'medical_genetics', 'miscellaneous', 'moral_disputes', 'moral_scenarios', 'nutrition', 'philosophy', 'prehistory', 'professional_accounting', 'professional_law', 'professional_medicine', 'professional_psychology', 'public_relations', 'security_studies', 'sociology', 'us_foreign_policy', 'virology', 'world_religions'] ### Supported Tasks and Leaderboards | Model | Authors | Humanities | Social Science | STEM | Other | Average | |------------------------------------|----------|:-------:|:-------:|:-------:|:-------:|:-------:| | [UnifiedQA](https://arxiv.org/abs/2005.00700) | Khashabi et al., 2020 | 45.6 | 56.6 | 40.2 | 54.6 | 48.9 | [GPT-3](https://arxiv.org/abs/2005.14165) (few-shot) | Brown et al., 2020 | 40.8 | 50.4 | 36.7 | 48.8 | 43.9 | [GPT-2](https://arxiv.org/abs/2005.14165) | Radford et al., 2019 | 32.8 | 33.3 | 30.2 | 33.1 | 32.4 | Random Baseline | N/A | 25.0 | 25.0 | 25.0 | 25.0 | 25.0 | 25.0 ### Languages English ## Dataset Structure ### Data Instances An example from anatomy subtask looks as follows: ``` { "question": "What is the embryological origin of the hyoid bone?", "choices": ["The first pharyngeal arch", "The first and second pharyngeal arches", "The second pharyngeal arch", "The second and third pharyngeal arches"], "answer": "D" } ``` ### Data Fields - `question`: a string feature - `choices`: a list of 4 string features - `answer`: a ClassLabel feature ### Data Splits - `auxiliary_train`: auxiliary multiple-choice training questions from ARC, MC_TEST, OBQA, RACE, etc. - `dev`: 5 examples per subtask, meant for few-shot setting - `test`: there are at least 100 examples per subtask | | auxiliary_train | dev | val | test | | ----- | :------: | :-----: | :-----: | :-----: | | TOTAL | 99842 | 285 | 1531 | 14042 ## Dataset Creation ### Curation Rationale Transformer models have driven this recent progress by pretraining on massive text corpora, including all of Wikipedia, thousands of books, and numerous websites. These models consequently see extensive information about specialized topics, most of which is not assessed by existing NLP benchmarks. To bridge the gap between the wide-ranging knowledge that models see during pretraining and the existing measures of success, we introduce a new benchmark for assessing models across a diverse set of subjects that humans learn. ### 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 [MIT License](https://github.com/hendrycks/test/blob/master/LICENSE) ### Citation Information If you find this useful in your research, please consider citing the test and also the [ETHICS](https://arxiv.org/abs/2008.02275) dataset it draws from: ``` @article{hendryckstest2021, title={Measuring Massive Multitask Language Understanding}, author={Dan Hendrycks and Collin Burns and Steven Basart and Andy Zou and Mantas Mazeika and Dawn Song and Jacob Steinhardt}, journal={Proceedings of the International Conference on Learning Representations (ICLR)}, year={2021} } @article{hendrycks2021ethics, title={Aligning AI With Shared Human Values}, author={Dan Hendrycks and Collin Burns and Steven Basart and Andrew Critch and Jerry Li and Dawn Song and Jacob Steinhardt}, journal={Proceedings of the International Conference on Learning Representations (ICLR)}, year={2021} } ``` ### Contributions Thanks to [@andyzoujm](https://github.com/andyzoujm) for adding this dataset.
[ -0.5459092855453491, -0.6247328519821167, 0.29400721192359924, 0.04660024121403694, 0.0653332769870758, 0.10306400060653687, -0.25071489810943604, -0.3121762275695801, 0.2211841642856598, 0.20444223284721375, -0.6994507908821106, -0.6700228452682495, -0.6076067686080933, 0.11253616213798523, -0.06193449720740318, 1.136278748512268, -0.06385450065135956, 0.08788295090198517, -0.3321212828159332, -0.23973724246025085, -0.2871425449848175, -0.5291833877563477, -0.31871291995048523, -0.34992462396621704, 0.49095863103866577, 0.4346902072429657, 0.5312803983688354, 0.6795125603675842, 0.5869653224945068, 0.2072598785161972, -0.1126510500907898, 0.15196478366851807, -0.3554404675960541, -0.16458870470523834, -0.006338475272059441, -0.2988380789756775, -0.6261389851570129, 0.19932132959365845, 0.5079360008239746, 0.9775510430335999, 0.0060576326213777065, 0.5580650568008423, 0.2552984058856964, 0.5887123942375183, -0.561306893825531, 0.2654178738594055, -0.33766672015190125, 0.03504853695631027, -0.4789363145828247, -0.03897663205862045, -0.203410804271698, -0.1950908750295639, 0.008866128511726856, -0.7502958178520203, 0.18918994069099426, 0.0023974620271474123, 0.9959708452224731, 0.20235157012939453, -0.3926323354244232, -0.1165945827960968, -0.41153255105018616, 0.937186062335968, -0.6955695152282715, 0.4852958917617798, 0.5911372303962708, 0.027812562882900238, 0.004145958460867405, -0.6846078038215637, -0.6672724485397339, -0.18409991264343262, -0.20150770246982574, 0.42724868655204773, -0.05477369949221611, -0.046934373676776886, 0.5374308228492737, 0.29207924008369446, -0.808068037033081, 0.05779997631907463, -0.5565111637115479, -0.2635548710823059, 0.7894230484962463, 0.22026167809963226, 0.18683573603630066, -0.38612058758735657, -0.2581278085708618, -0.35745975375175476, -0.5824753642082214, 0.4796696901321411, 0.5173019766807556, 0.31530797481536865, -0.2516559064388275, 0.6826231479644775, -0.20881855487823486, 0.6607515215873718, -0.09868691116571426, -0.2610778212547302, 0.6600161790847778, -0.6710249185562134, -0.036406565457582474, -0.22227497398853302, 0.9266863465309143, 0.3300328254699707, 0.0715242400765419, 0.16386912763118744, 0.16404272615909576, 0.012720782309770584, 0.11419400572776794, -0.7999505400657654, -0.27131301164627075, 0.44177815318107605, -0.5656757950782776, -0.15466323494911194, 0.06619923561811447, -0.9228239059448242, -0.1409030258655548, -0.33605387806892395, 0.29619166254997253, -0.4667465090751648, -0.20223689079284668, 0.025948958471417427, 0.04227987304329872, 0.31703898310661316, 0.014432904310524464, -0.8026383519172668, 0.26425331830978394, 0.5726538896560669, 0.6984317898750305, -0.16839057207107544, -0.5919910073280334, -0.10398898273706436, -0.08046362549066544, -0.28105875849723816, 0.6447126269340515, -0.3710331320762634, -0.15155458450317383, -0.2249242514371872, 0.1593652069568634, -0.30561357736587524, -0.3208985924720764, 0.6400837302207947, -0.14362181723117828, 0.3182697296142578, -0.6515149474143982, -0.7020851969718933, -0.2339600920677185, 0.3169301152229309, -0.7001055479049683, 1.2775375843048096, 0.13739468157291412, -0.8872852325439453, 0.583587646484375, -1.041761040687561, -0.3926050364971161, -0.035769157111644745, -0.26780644059181213, -0.47518980503082275, -0.36920613050460815, 0.24544544517993927, 0.676906168460846, -0.40664801001548767, 0.3813456594944, -0.29164743423461914, -0.1415485292673111, 0.11090536415576935, -0.23995469510555267, 1.1371891498565674, 0.13632048666477203, -0.501227617263794, 0.05621194466948509, -0.9480010271072388, 0.062158096581697464, 0.21115098893642426, -0.3403404951095581, -0.14362400770187378, -0.16531242430210114, 0.04523220285773277, 0.3305630683898926, 0.2022746503353119, -0.5675965547561646, 0.15725146234035492, -0.2521280348300934, 0.2781897485256195, 0.6378511190414429, -0.05265580862760544, 0.16244560480117798, -0.5066510438919067, 0.49369102716445923, 0.11512047052383423, 0.21030224859714508, -0.053987886756658554, -0.7231737375259399, -0.6661487817764282, -0.17444854974746704, 0.352051705121994, 0.6658026576042175, -0.5108581185340881, 0.848799467086792, -0.39624759554862976, -0.8231721520423889, -0.8307468891143799, 0.15142926573753357, 0.5089126229286194, 0.6083645224571228, 0.5859031081199646, -0.2505227327346802, -0.5857160687446594, -0.8874506950378418, -0.15383020043373108, -0.0794948935508728, 0.07043343037366867, 0.40082883834838867, 0.8999872207641602, -0.07220346480607986, 0.7819221615791321, -0.6225543022155762, -0.29811981320381165, -0.2685863971710205, 0.10323629528284073, 0.37337467074394226, 0.7061212062835693, 0.5132078528404236, -0.832007884979248, -0.4991835653781891, -0.08108826726675034, -0.8053955435752869, 0.17199669778347015, 0.013624626211822033, -0.18959160149097443, 0.048638880252838135, 0.39729538559913635, -0.6329060196876526, 0.38252636790275574, 0.49335524439811707, -0.5607516765594482, 0.8454163670539856, -0.07949627190828323, 0.20879000425338745, -1.2967056035995483, 0.4771173894405365, -0.010968576185405254, 0.10649159550666809, -0.6870417594909668, -0.04281478002667427, 0.06056569889187813, 0.0518161877989769, -0.4240144193172455, 0.6358516812324524, -0.4502291977405548, 0.048022788017988205, 0.18327362835407257, -0.09967729449272156, -0.0628284215927124, 0.5933895111083984, -0.24350255727767944, 0.9057378768920898, 0.5731815695762634, -0.5598801374435425, 0.12426798045635223, 0.3892289698123932, -0.5214322805404663, 0.5249484777450562, -0.6609994173049927, -0.027011485770344734, -0.13993476331233978, 0.1999562531709671, -0.9268013834953308, -0.3910384178161621, 0.08627849817276001, -0.5649095177650452, 0.0789039134979248, 0.09398585557937622, -0.5207037329673767, -0.724845290184021, -0.304463654756546, 0.284544974565506, 0.45248210430145264, -0.3302696645259857, 0.4757673442363739, 0.39138901233673096, 0.013695856556296349, -0.9075514674186707, -0.6618059873580933, -0.1714182198047638, -0.18590261042118073, -0.6836750507354736, 0.49749213457107544, -0.31576719880104065, -0.04655540734529495, 0.05141381174325943, -0.02157459408044815, -0.16518495976924896, 0.1621987223625183, 0.20387504994869232, 0.302672803401947, -0.26439785957336426, 0.12297169864177704, -0.1751657873392105, -0.012842455878853798, -0.03639785572886467, -0.03012089431285858, 0.6019352078437805, -0.1597406417131424, -0.4013586640357971, -0.4212115406990051, 0.3382527232170105, 0.6205385327339172, -0.3879849314689636, 0.6993130445480347, 0.9013159275054932, -0.4851963222026825, 0.17721956968307495, -0.6009777188301086, -0.24883894622325897, -0.39894768595695496, 0.6118760108947754, -0.400349497795105, -0.8083759546279907, 0.6727803945541382, 0.16843803226947784, 0.3623967468738556, 0.7887094616889954, 0.5922122597694397, -0.16321223974227905, 0.8996394872665405, 0.38575541973114014, 0.012438669800758362, 0.292251318693161, -0.6258355379104614, 0.10712160170078278, -0.9594064354896545, -0.21185053884983063, -0.5166228413581848, -0.42362192273139954, -0.5862303972244263, -0.5419915914535522, 0.14094172418117523, 0.004425415303558111, -0.324124276638031, 0.4044482707977295, -0.5288048386573792, 0.43056797981262207, 0.7482807636260986, 0.18830855190753937, 0.041832536458969116, -0.2240804135799408, -0.32462963461875916, -0.19266949594020844, -0.7215791940689087, -0.4729350805282593, 1.4982938766479492, 0.21606621146202087, 0.41176483035087585, -0.06453882902860641, 0.7228081822395325, -0.03190581873059273, 0.2291111797094345, -0.6668793559074402, 0.5279312133789062, -0.4033638536930084, -0.9497801661491394, -0.3621245324611664, -0.3578895032405853, -1.1531164646148682, 0.267025887966156, -0.3319503962993622, -0.8229459524154663, 0.16846789419651031, 0.10387052595615387, -0.7483983039855957, 0.3814350664615631, -0.6994341015815735, 1.115172028541565, -0.26416561007499695, -0.41839492321014404, 0.052526358515024185, -0.7621808052062988, 0.40865275263786316, 0.006643990054726601, 0.3564673364162445, -0.25562024116516113, 0.09432301670312881, 1.2864681482315063, -0.22070206701755524, 0.939153790473938, -0.181377112865448, 0.27731314301490784, 0.23827318847179413, -0.2774255573749542, 0.3258032500743866, 0.0004058652266394347, -0.06833846867084503, 0.12799781560897827, 0.18461328744888306, -0.4482648968696594, -0.36019328236579895, 0.538536012172699, -0.9332779049873352, -0.4775172173976898, -0.5369662046432495, -0.7393718957901001, -0.06751395016908646, 0.4134542644023895, 0.28041690587997437, 0.36065787076950073, -0.08356249332427979, 0.4915538728237152, 0.6455854177474976, -0.16444259881973267, 0.2890133857727051, 0.29717856645584106, -0.03228045627474785, -0.4294661581516266, 0.9109720587730408, 0.47047582268714905, 0.15534266829490662, 0.25953155755996704, 0.37809115648269653, -0.37165579199790955, -0.5395405888557434, -0.2906811535358429, 0.2794158458709717, -0.7082433104515076, -0.18618333339691162, -0.9346849322319031, -0.3046632409095764, -0.6545868515968323, -0.06581622362136841, -0.3852662742137909, -0.25402355194091797, -0.4620078504085541, -0.25896695256233215, 0.27948305010795593, 0.5028762221336365, -0.08607244491577148, -0.00449371337890625, -0.6494768857955933, 0.3942360579967499, 0.3028499484062195, 0.18869167566299438, -0.03153752535581589, -0.4539543688297272, -0.17995260655879974, 0.11847298592329025, -0.5193999409675598, -0.7942337393760681, 0.34466174244880676, 0.3204088807106018, 0.8400629162788391, 0.2379239797592163, 0.013677106238901615, 0.9468125104904175, -0.32916608452796936, 1.091794490814209, 0.19475668668746948, -0.738446056842804, 0.5297145843505859, -0.32936036586761475, 0.4962562918663025, 0.8159382343292236, 0.7290604710578918, -0.5775643587112427, -0.34451472759246826, -0.8849195837974548, -1.0009562969207764, 0.6336439847946167, 0.14629115164279938, -0.035725273191928864, 0.10837667435407639, 0.2432202398777008, 0.24978908896446228, 0.11661622673273087, -0.9121714234352112, -0.6095098853111267, -0.20142608880996704, -0.437465637922287, -0.0937817394733429, -0.022734351456165314, -0.2897089719772339, -0.6778307557106018, 0.7264972925186157, -0.25022706389427185, 0.3273329734802246, 0.23239532113075256, -0.04004804044961929, 0.15569841861724854, 0.3234470784664154, 0.5989119410514832, 0.8765422105789185, -0.24525581300258636, 0.15642476081848145, 0.2436000257730484, -0.8382188081741333, 0.08189735561609268, 0.3405768573284149, -0.2395647019147873, -0.18037717044353485, 0.5900940299034119, 0.8145110011100769, 0.207097128033638, -0.516290009021759, 0.5719322562217712, 0.061097946017980576, -0.4612952470779419, -0.38419437408447266, -0.059067633002996445, 0.1743992418050766, 0.18918904662132263, 0.5027152895927429, 0.13950014114379883, -0.013500578701496124, -0.5011539459228516, 0.312520831823349, 0.1856214553117752, -0.28930696845054626, -0.4224264323711395, 0.7047348618507385, -0.011599849909543991, -0.14303423464298248, 0.46623337268829346, -0.4095730483531952, -0.47876930236816406, 0.7742944955825806, 0.3509385287761688, 0.6692514419555664, -0.20435850322246552, 0.1675395518541336, 0.871862530708313, 0.44434916973114014, -0.15685424208641052, 0.6473169922828674, 0.16130496561527252, -0.7674317359924316, -0.4087703227996826, -0.6921136379241943, -0.1542336493730545, 0.35728105902671814, -0.6621911525726318, 0.22403965890407562, -0.2969406843185425, -0.3201459050178528, 0.23284365236759186, 0.2855043411254883, -1.0364035367965698, 0.21782881021499634, -0.014646879397332668, 0.8264949321746826, -0.8987382054328918, 0.9481222629547119, 0.8217006921768188, -0.5981553196907043, -0.9011504054069519, -0.07395471632480621, 0.031091740354895592, -0.722946286201477, 0.6520836353302002, 0.28006550669670105, 0.45249515771865845, 0.08358172327280045, -0.4000168740749359, -1.1670842170715332, 1.3413883447647095, 0.23645156621932983, -0.5112029910087585, -0.10859403014183044, 0.17010733485221863, 0.5073648691177368, -0.28239667415618896, 0.3949669301509857, 0.6933411955833435, 0.6498950123786926, -0.11380231380462646, -0.9327401518821716, 0.18988758325576782, -0.3790093958377838, -0.220526784658432, 0.04731782153248787, -0.6139611005783081, 1.016149640083313, -0.254925936460495, -0.06614942103624344, -0.23014353215694427, 0.5765526294708252, 0.5626131296157837, 0.29845988750457764, 0.4919484853744507, 0.7159854173660278, 0.9776558876037598, -0.23038169741630554, 0.9859591126441956, -0.4562431573867798, 0.4394395649433136, 1.0752469301223755, 0.007912250235676765, 0.8155266642570496, 0.5520344972610474, -0.5426843762397766, 0.33630600571632385, 0.7947675585746765, -0.207931250333786, 0.3324642777442932, 0.1859060823917389, 0.15046876668930054, -0.22722816467285156, -0.17350652813911438, -0.49193495512008667, 0.5997945070266724, 0.2884749174118042, -0.23102885484695435, 0.015159389935433865, 0.09240180253982544, 0.24598702788352966, -0.11858981102705002, -0.0924845039844513, 0.5666800737380981, -0.03426358476281166, -0.7357816100120544, 0.6647717952728271, -0.375864177942276, 0.911411702632904, -0.7342237830162048, 0.09634166955947876, -0.03747222572565079, 0.0802232101559639, -0.34495189785957336, -1.005018711090088, 0.3205123543739319, -0.08485116064548492, -0.2355341762304306, -0.1919458657503128, 0.5252009034156799, -0.46556058526039124, -0.7042165994644165, 0.34384676814079285, 0.6755543947219849, 0.1347055435180664, 0.19355463981628418, -0.9808377623558044, -0.1382070779800415, 0.02230214700102806, -0.4796350598335266, 0.26027438044548035, 0.18824979662895203, 0.05554012954235077, 0.5041124224662781, 0.8666027188301086, 0.14639145135879517, 0.22571337223052979, 0.011985212564468384, 0.7381567358970642, -0.7098647952079773, -0.49166759848594666, -0.7433204650878906, 0.663151741027832, -0.19989632070064545, -0.7366935014724731, 0.8549298048019409, 0.7151367664337158, 1.1022214889526367, 0.05214915797114372, 0.8162969350814819, -0.3830409348011017, 0.5395461916923523, -0.32136818766593933, 0.9050679206848145, -0.7292016744613647, -0.16534225642681122, -0.35906514525413513, -0.7593804001808167, -0.42456600069999695, 0.5744888782501221, -0.29710453748703003, 0.1469101905822754, 0.8798885345458984, 0.6714237332344055, -0.03373764455318451, -0.037322983145713806, 0.29236242175102234, 0.19398470222949982, 0.34040606021881104, 0.6474238038063049, 0.44012704491615295, -0.6407613158226013, 0.6110880970954895, -0.6939834356307983, -0.19091254472732544, -0.042875517159700394, -0.6946530938148499, -0.8142967224121094, -0.9768658876419067, -0.41919705271720886, -0.20090582966804504, -0.062310535460710526, 1.082985520362854, 0.7606067061424255, -0.9594128131866455, -0.40899357199668884, 0.1450846791267395, -0.04797004908323288, -0.6374912858009338, -0.2454344630241394, 0.6392024755477905, -0.16330042481422424, -0.5650593638420105, 0.16703423857688904, -0.10458975285291672, 0.0701000988483429, -0.1589781790971756, -0.08224122226238251, -0.6142966151237488, -0.22670239210128784, 0.5912386178970337, 0.2655908167362213, -0.7950546145439148, -0.3010207712650299, 0.2444073110818863, -0.11660262197256088, 0.23347575962543488, 0.5071306824684143, -0.39781177043914795, 0.3799118995666504, 0.5479979515075684, 0.6378005146980286, 0.4480917453765869, -0.192159041762352, 0.1819761097431183, -0.6639650464057922, 0.07795888185501099, 0.36860790848731995, 0.4587813913822174, 0.32407185435295105, -0.4009893238544464, 0.6456398367881775, 0.36787474155426025, -0.5719989538192749, -0.8867644667625427, -0.14963138103485107, -1.0496306419372559, -0.22174079716205597, 1.136887550354004, -0.21396197378635406, -0.3999563753604889, -0.25512978434562683, -0.02124582789838314, 0.40772703289985657, -0.36169150471687317, 0.7139299511909485, 0.8963721394538879, -0.17126686871051788, -0.012104678899049759, -0.859414279460907, 0.5461023449897766, 0.45449328422546387, -1.1554431915283203, 0.131524920463562, 0.17367279529571533, 0.21721400320529938, 0.4181635081768036, 0.734035849571228, -0.17135147750377655, 0.2826557755470276, -0.05267035588622093, 0.2559792101383209, -0.07582547515630722, -0.25861331820487976, -0.11110790073871613, 0.06802688539028168, -0.21423158049583435, -0.1677219718694687 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nampdn-ai/tiny-codes
nampdn-ai
2023-09-30T04:14:36Z
231
141
null
[ "task_categories:text-generation", "size_categories:1M<n<10M", "language:en", "license:mit", "arxiv:2306.11644", "arxiv:2305.07759", "doi:10.57967/hf/0937", "region:us" ]
2023-09-30T04:14:36Z
2023-07-16T07:26:18.000Z
2023-07-16T07:26:18
--- license: mit task_categories: - text-generation language: - en pretty_name: Tiny Codes size_categories: - 1M<n<10M --- # Reasoning with Language and Code This synthetic dataset is a collection of **1.6 millions short and clear code snippets** that can help LLM models learn how to reason with both natural and programming languages. The dataset covers a wide range of programming languages, such as Python, TypeScript, JavaScript, Ruby, Julia, Rust, C++, Bash, Java, C#, and Go. It also includes two database languages: Cypher (for graph databases) and SQL (for relational databases) in order to study the relationship of entities. The main goal of this repository is to highlight the importance of **textbook (high education value)** using **code snippets**. All code snippets are carefully written and commented to ensure maximum readability and understandability. Moreover, the use of **if/else control flow** is emphasized to foster the development of effective reasoning skills in LLM models. This repository is inspired by the paper [Textbooks Are All You Need](https://arxiv.org/abs/2306.11644) and [The Magic of IF](https://aclanthology.org/2023.findings-acl.574.pdf), which shows that LLM models can achieve state-of-the-art results on code-related tasks by training on high-quality data that resembles textbooks and exercises. This repository aims to provide such data for data analysts and ML engineers who want to enhance their knowledge of how LLM models can learn to reason with code. Anyone who wants to reproduce this dataset can use these prompts with other LLM models and compare their results, or you can forge a new prompt from related properties. *Please note that this dataset is not intended for code-generation purposes, it's intended to boost the reasoning capability of model via logic code.* I hope you find this dataset useful and informative! ## Tiny Series Explore the possibilities and limitations of building Small Language Models with these tiny gems of data! - [TinyStories](https://arxiv.org/abs/2305.07759): The paper that sparked my interest in the journey of the tiny-* series. - [tiny-textbooks](https://huggingface.co/datasets/nampdn-ai/tiny-textbooks): 420k "things of internet" synthetic textbooks. - [tiny-orca-textbooks](https://huggingface.co/datasets/nampdn-ai/tiny-orca-textbooks): Synthetic textbook to help model learn in-context on how it should perform task the right way. - [tiny-webtext](https://huggingface.co/datasets/nampdn-ai/tiny-webtext): A 6GB (4.5M records) variety of diverse webtext enriched with critical thinking methods to make unbiased English dataset. - [tiny-lessons](https://huggingface.co/datasets/nampdn-ai/tiny-lessons): Subset of [tiny-textbooks](https://huggingface.co/datasets/nampdn-ai/tiny-textbooks) dataset, various lessons about "things of internet" augmented in a bite-sized textbook Markdown format. - [tiny-bridgedict](https://huggingface.co/datasets/nampdn-ai/tiny-bridgedict): A dataset that links and transfers knowledge between English, Vietnamese, Chinese in a tiny multilingual models. ### Others small HQ datasets with textbook-like quality - [devdocs.io](https://huggingface.co/datasets/nampdn-ai/devdocs.io): FreeCodeCamp has provided 189k comprehensive API documentation across a wide range of tech stacks and programming languages. - [sciphi-python-textbook](https://huggingface.co/datasets/emrgnt-cmplxty/sciphi-python-textbook) - [textbook_quality_programming](https://huggingface.co/datasets/vikp/textbook_quality_programming) - [sciphi-textbooks-are-all-you-need](https://huggingface.co/datasets/emrgnt-cmplxty/sciphi-textbooks-are-all-you-need)
[ -0.28800079226493835, -0.5856261849403381, 0.4285413324832916, -0.10650129616260529, 0.09274215996265411, 0.02122022770345211, -0.2328520566225052, -0.2665131092071533, -0.13116112351417542, 0.3952135741710663, -0.42720353603363037, -0.5999594926834106, -0.05239542946219444, 0.0861629992723465, -0.43566787242889404, 0.9330378174781799, 0.09374210238456726, 0.2312430739402771, -0.3877122104167938, -0.07549192011356354, -0.32582223415374756, -0.3485143780708313, -0.47547709941864014, -0.28781428933143616, 0.4751172959804535, 0.678515613079071, 0.5640374422073364, 0.7196832299232483, 0.4845730662345886, 0.21299992501735687, 0.09873873740434647, 0.13987043499946594, -0.1509058177471161, -0.19509388506412506, -0.3157581388950348, -0.508556067943573, -0.4257197678089142, -0.01377425342798233, 0.4919598698616028, 0.6145473122596741, -0.010854685679078102, 0.24520763754844666, -0.021902861073613167, 0.8134579658508301, -0.27881839871406555, 0.3164922595024109, -0.28274571895599365, -0.19762450456619263, -0.1026841327548027, 0.20566725730895996, -0.4558336138725281, -0.4315953254699707, 0.09974067658185959, -0.874221682548523, 0.08729978650808334, 0.1615530103445053, 0.8455895185470581, 0.2891137897968292, -0.5455936789512634, -0.5379800796508789, -0.3883378803730011, 0.996666669845581, -0.5428380966186523, 0.40266507863998413, 0.4134504199028015, 0.33213022351264954, 0.047298744320869446, -0.9424149990081787, -0.6902897953987122, -0.1706380695104599, -0.13729456067085266, 0.17526696622371674, -0.023063521832227707, -0.014556744135916233, 0.45298701524734497, 0.4811256527900696, -0.6980596780776978, -0.04508025199174881, -0.5840939879417419, -0.13512587547302246, 0.8065101504325867, 0.1377408504486084, 0.4498160779476166, -0.5187309384346008, -0.1342148631811142, -0.2139824479818344, -0.736143171787262, -0.05138188600540161, 0.32119596004486084, 0.3034438192844391, -0.412855327129364, 0.6632768511772156, -0.025128893554210663, 0.8465107083320618, -0.4073776602745056, -0.2843935489654541, 0.0862848311662674, -0.8539788722991943, -0.1265549659729004, -0.18476401269435883, 0.6914857029914856, 0.34259289503097534, 0.527534544467926, -0.015489336103200912, -0.10893646627664566, 0.22245369851589203, 0.03293826803565025, -0.732993483543396, -0.6039959788322449, 0.2479621320962906, -0.5154059529304504, -0.17655101418495178, -0.19621549546718597, -0.7634515762329102, -0.37450772523880005, -0.7770193219184875, 0.20478877425193787, -0.5353258848190308, -0.12539081275463104, 0.15671400725841522, -0.10585210472345352, 0.24498911201953888, 0.3397895395755768, -0.7688859105110168, 0.35395145416259766, 0.6151142120361328, 0.8465341925621033, -0.11156520992517471, -0.14939914643764496, 0.13658194243907928, -0.1680387258529663, -0.3462086021900177, 0.8367019295692444, -0.33456337451934814, -0.3328520357608795, -0.12553846836090088, 0.09437835961580276, 0.010077451355755329, -0.425810843706131, 0.4157593846321106, -0.22511936724185944, 0.41478076577186584, -0.2634245753288269, -0.7462341785430908, -0.2970694899559021, 0.22918981313705444, -0.7295465469360352, 1.1458079814910889, 0.23541024327278137, -0.5393883585929871, 0.08514421433210373, -0.7124617695808411, -0.3432128131389618, -0.12549614906311035, -0.3587218225002289, -0.04071251302957535, -0.3115883767604828, 0.08270319551229477, 0.2603190243244171, -0.6588072180747986, 0.28591305017471313, -0.17632687091827393, -0.1455027163028717, 0.1570669263601303, -0.11859048902988434, 1.0907038450241089, 0.3231170177459717, -0.12000099569559097, 0.01624942757189274, -0.9983444213867188, 0.21492378413677216, 0.1694275587797165, -0.3231816291809082, -0.30359959602355957, -0.10195018351078033, 0.11972587555646896, 0.19462215900421143, 0.2109154909849167, -0.28552576899528503, 0.5839363932609558, -0.4797849655151367, 0.5822433829307556, 0.5438840985298157, 0.03342306613922119, 0.6726295351982117, -0.4501416087150574, 0.49261531233787537, 0.05665998533368111, 0.042208682745695114, -0.19585978984832764, -0.5306400060653687, -1.0716551542282104, -0.15913526713848114, 0.4091007709503174, 0.6338136196136475, -1.066763997077942, 0.20366865396499634, -0.313148558139801, -0.670087456703186, -0.5589632987976074, 0.2611108720302582, 0.37529081106185913, 0.4430833160877228, 0.43218401074409485, 0.17973893880844116, -0.6678721904754639, -0.7157596945762634, -0.1208549290895462, -0.19277261197566986, -0.07199464738368988, 0.3767116069793701, 0.6821053624153137, -0.36635228991508484, 1.0442739725112915, -0.538872480392456, -0.10484058409929276, -0.2852691411972046, -0.3534039855003357, 0.33768585324287415, 0.5583893060684204, 0.5267818570137024, -0.7697528600692749, -0.4263192415237427, 0.0732111781835556, -0.7763433456420898, 0.10734137147665024, -0.13880781829357147, -0.2417483925819397, 0.41318604350090027, 0.5237768888473511, -0.5568115711212158, 0.1700245887041092, 0.31207120418548584, -0.35465890169143677, 0.48643985390663147, 0.06681125611066818, -0.0762559100985527, -1.2487187385559082, 0.08825866132974625, -0.03265815228223801, -0.13988591730594635, -0.3747759759426117, 0.1102457344532013, 0.17525994777679443, -0.21217498183250427, -0.43536776304244995, 0.9203544855117798, -0.24636514484882355, 0.05275901034474373, 0.1323009580373764, 0.3359624147415161, 0.08065087348222733, 0.33963438868522644, -0.07261234521865845, 0.9932858943939209, 0.4406009614467621, -0.5967968702316284, 0.5813722610473633, 0.33547165989875793, -0.3617020845413208, 0.23932988941669464, -0.6103866696357727, 0.04352213442325592, 0.15043604373931885, 0.047647155821323395, -0.587026059627533, -0.3870628774166107, 0.17280873656272888, -0.3667035698890686, 0.20985038578510284, -0.2223294973373413, -0.723773717880249, -0.2795809805393219, -0.33342158794403076, 0.2716864049434662, 0.41839998960494995, -0.5488703846931458, 0.37388503551483154, 0.3912675976753235, -0.02098458632826805, -0.5177586674690247, -0.6985109448432922, -0.023741353303194046, -0.006813257932662964, -0.5104238390922546, 0.12669089436531067, -0.46363672614097595, -0.4342104494571686, 0.2508533298969269, -0.08548182994127274, -0.16728082299232483, 0.020892659202218056, 0.14975538849830627, 0.554842472076416, -0.26185089349746704, 0.43265077471733093, -0.09668251127004623, -0.1794210970401764, -0.07822201400995255, -0.6232834458351135, 0.2573792040348053, -0.5206191539764404, -0.11452673375606537, -0.06104712560772896, 0.10832984745502472, 0.272513747215271, 0.23515227437019348, 0.5995060801506042, 0.3451264798641205, -0.43776947259902954, -0.4726575016975403, -0.25182023644447327, -0.33972692489624023, -0.46575501561164856, 0.08219199627637863, -0.2749582827091217, -0.8392447829246521, 0.2990918755531311, 0.11199682950973511, 0.16145288944244385, 0.444593220949173, 0.4692571759223938, -0.09998858720064163, 0.6133376955986023, 0.5258260369300842, -0.14887377619743347, 0.37837716937065125, -0.6197550296783447, 0.34618356823921204, -0.37489980459213257, -0.2663474977016449, -0.5604805946350098, -0.0742601752281189, -0.8492305874824524, -0.5315907001495361, 0.02543680928647518, 0.13135464489459991, -0.41462084650993347, 0.5007269978523254, -0.6354238986968994, 0.751858651638031, 0.6643409729003906, -0.06120732054114342, 0.48065248131752014, 0.06260119378566742, -0.1868434101343155, -0.030498849228024483, -0.9616033434867859, -0.7793422937393188, 1.3589593172073364, 0.10448703169822693, 0.7560251355171204, 0.17586104571819305, 0.5894213914871216, 0.42543449997901917, 0.1814388632774353, -1.0430476665496826, 0.7782379388809204, -0.06206442415714264, -0.775629460811615, -0.12319570034742355, -0.6083315014839172, -0.8279244899749756, -0.08771410584449768, -0.016666535288095474, -0.5201221704483032, 0.1372554451227188, 0.14615164697170258, -0.28646406531333923, 0.08333275467157364, -0.9876354336738586, 0.9821386933326721, -0.24744607508182526, -0.345983624458313, -0.0869331955909729, -0.6158676147460938, 0.3092701733112335, -0.05786580219864845, 0.3118303120136261, 0.08798768371343613, -0.11749394983053207, 0.7270979881286621, -0.30327630043029785, 0.6300122141838074, 0.20531384646892548, 0.10179970413446426, 0.6913979053497314, 0.07292765378952026, 0.1665610373020172, 0.12541848421096802, -0.19537515938282013, 0.23046068847179413, 0.3106119632720947, -0.49005165696144104, -0.4847780168056488, 0.7740274667739868, -0.8482106328010559, -0.2872607409954071, -0.5346488952636719, -0.5659122467041016, -0.003171105869114399, 0.3657185435295105, 0.22020715475082397, 0.4494277238845825, 0.15369866788387299, 0.2511426508426666, 0.6446660757064819, -0.2608831822872162, 0.4433400332927704, 0.3932279348373413, -0.2816222608089447, -0.32337552309036255, 1.2814503908157349, 0.3164031505584717, 0.23144547641277313, 0.4071138799190521, 0.061660997569561005, -0.2818300127983093, -0.209473118185997, -0.46917274594306946, 0.35405483841896057, -0.9440941214561462, -0.3408300280570984, -0.45873692631721497, -0.3738720715045929, -0.5637370944023132, -0.23727338016033173, -0.24748395383358002, -0.8859333395957947, -0.39540839195251465, -0.29764309525489807, 0.47251972556114197, 0.7218723297119141, 0.016904082149267197, 0.07765254378318787, -0.6899517774581909, 0.06950192153453827, 0.2242193967103958, 0.0706644132733345, -0.12285450845956802, -0.2827683389186859, -0.46308523416519165, -0.028659336268901825, -0.4013887941837311, -0.6498064398765564, 0.34761932492256165, 0.19136324524879456, 0.331097811460495, 0.2449372261762619, 0.16013339161872864, 0.2439727634191513, -0.33908382058143616, 0.8845467567443848, 0.03488617762923241, -0.7719512581825256, 0.6554866433143616, -0.3969436287879944, 0.04378483071923256, 0.3816434442996979, 0.5000709891319275, -0.46434491872787476, 0.008965746499598026, -0.7992759346961975, -0.8013784289360046, 0.6741160154342651, 0.20873956382274628, -0.0754847526550293, 0.14652010798454285, 0.2757361829280853, -0.0405246876180172, 0.36375296115875244, -0.8214909434318542, -0.41364702582359314, -0.2626815736293793, -0.6014089584350586, -0.09953594207763672, -0.04471059888601303, -0.22808989882469177, -0.4150572717189789, 0.749017596244812, -0.3235832750797272, 0.2964325249195099, -0.050720591098070145, -0.20709334313869476, 0.40560632944107056, 0.16634322702884674, 0.5159761905670166, 0.6746083498001099, -0.08131451159715652, 0.2026013731956482, 0.02198595181107521, -0.5393106341362, 0.13969461619853973, 0.0715542659163475, -0.2903198003768921, -0.10381657630205154, 0.4273993670940399, 0.4733738303184509, 0.19985657930374146, -0.9645548462867737, 0.2504831552505493, 0.07549399137496948, 0.08214088529348373, -0.35835951566696167, 0.3575650751590729, 0.16876034438610077, 0.13000145554542542, 0.007970659993588924, -0.03193730488419533, 0.1530982404947281, -0.4489070475101471, 0.1483180820941925, -0.10372363775968552, -0.12010803818702698, -0.24445867538452148, 0.35503631830215454, 0.27773910760879517, -0.19898799061775208, 0.6684900522232056, -0.3708031177520752, -0.3451194763183594, 0.8089061975479126, 0.416172057390213, 0.4567967355251312, 0.13765859603881836, 0.2556057572364807, 0.560690701007843, 0.526366651058197, -0.030002471059560776, 0.4085201323032379, -0.18240134418010712, -0.7410030364990234, -0.11373291909694672, -0.470954030752182, -0.5447831749916077, 0.0056516556069254875, -0.35594290494918823, 0.3913431167602539, -0.5765231847763062, 0.0175128486007452, -0.02696622908115387, 0.4019421935081482, -0.7422941327095032, 0.25256019830703735, -0.0821954756975174, 1.14020574092865, -0.6897642612457275, 1.050498366355896, 0.8718544840812683, -0.7807004451751709, -0.9533238410949707, -0.38761937618255615, 0.2107580155134201, -0.604595422744751, 0.5786556601524353, 0.01963828317821026, 0.276432067155838, 0.19457469880580902, -0.6407569646835327, -0.7700389623641968, 1.1214534044265747, 0.3411010503768921, -0.5536847710609436, -0.13382665812969208, 0.12232048064470291, 0.431622713804245, -0.3362995982170105, 0.23637031018733978, 0.7861856818199158, 0.39314478635787964, -0.19215169548988342, -0.5691599249839783, -0.10750186443328857, -0.3438318967819214, -0.11199693381786346, -0.08021030575037003, -0.6597810387611389, 0.9174221754074097, -0.30195072293281555, -0.09590806812047958, 0.010160586796700954, 0.3908596336841583, 0.2976321876049042, 0.5879396796226501, 0.13996152579784393, 0.5689041018486023, 0.9328494668006897, -0.30952826142311096, 1.1477155685424805, -0.3726690709590912, 0.46772244572639465, 1.0784019231796265, 0.05013817548751831, 0.6818932294845581, 0.315271258354187, -0.40375494956970215, 0.580414891242981, 0.8731768131256104, -0.09241320937871933, 0.2663327157497406, -0.022610092535614967, -0.18844015896320343, -0.2551542818546295, -0.16908228397369385, -0.467745304107666, 0.09218496829271317, 0.5345072150230408, -0.08596665412187576, 0.03189569339156151, 0.03141602873802185, 0.08942729234695435, 0.04080729931592941, -0.19600996375083923, 0.6363155841827393, 0.36415404081344604, -0.4152687191963196, 0.4575781524181366, -0.0799599289894104, 0.4335341453552246, -0.5177485346794128, 0.010558207519352436, -0.42828306555747986, 0.20567867159843445, -0.3051524758338928, -0.7596641778945923, 0.08604958653450012, 0.06660421937704086, -0.4508070647716522, -0.25427985191345215, 0.8550902009010315, -0.35878613591194153, -0.6588347554206848, 0.17971178889274597, 0.46789270639419556, 0.20768488943576813, 0.3524169921875, -0.7524736523628235, -0.10252512991428375, 0.0626276358962059, -0.23161661624908447, 0.20985496044158936, 0.5713421702384949, -0.013317027129232883, 0.9649122357368469, 0.774694561958313, 0.12531331181526184, -0.03367941454052925, 0.007957067340612411, 0.8242929577827454, -0.7409499883651733, -0.3518904447555542, -0.5339075922966003, 0.4484960436820984, -0.2056109458208084, -0.2613847255706787, 0.9684352874755859, 0.7076705098152161, 1.188653588294983, -0.11939627677202225, 0.8336043357849121, -0.09067802131175995, 0.529771625995636, -0.543388843536377, 0.7171743512153625, -0.67048579454422, 0.3787745535373688, -0.09772753715515137, -0.7328364253044128, -0.21902786195278168, 0.7302616834640503, -0.29447245597839355, 0.11777263134717941, 0.8018845915794373, 0.8265363574028015, 0.03138412907719612, 0.11644897609949112, 0.12350841611623764, 0.13688187301158905, 0.27490317821502686, 0.4394676685333252, 0.7518410682678223, -0.6389999985694885, 0.5972177982330322, -0.32477501034736633, -0.010425519198179245, -0.3127714693546295, -0.8004939556121826, -0.8751879930496216, -0.64112389087677, -0.44462642073631287, -0.6023259162902832, -0.03417273238301277, 1.1159110069274902, 0.608922004699707, -0.9701769948005676, -0.3856925368309021, -0.2578679025173187, 0.6575659513473511, -0.02462378889322281, -0.29739484190940857, 0.3319035768508911, -0.40975239872932434, -0.7115285992622375, 0.39769110083580017, -0.010780466720461845, 0.19188623130321503, -0.1400744467973709, -0.17622579634189606, -0.13880732655525208, 0.12234661728143692, 0.654320478439331, 0.38711076974868774, -0.38092702627182007, -0.10510386526584625, 0.2822982370853424, -0.31755274534225464, -0.18044258654117584, 0.8378453254699707, -0.8432359099388123, 0.41803598403930664, 0.40163761377334595, 0.6586470603942871, 0.22354008257389069, -0.35531482100486755, 0.2410154938697815, -0.6357267498970032, 0.3841424584388733, 0.3611266016960144, 0.37079736590385437, 0.3665730953216553, -0.17767170071601868, 0.947100043296814, 0.5775105357170105, -0.6944344639778137, -0.882150411605835, 0.11704937368631363, -0.9541926383972168, -0.3394315540790558, 1.1833163499832153, -0.06547102332115173, -0.13257235288619995, -0.1531168669462204, -0.20752757787704468, 0.1108165979385376, -0.3241488039493561, 0.5648625493049622, 0.7913526296615601, -0.00982938427478075, -0.15442976355552673, -0.7363694906234741, 0.6431097984313965, 0.15092691779136658, -1.0327273607254028, -0.10892090201377869, 0.6318680047988892, 0.18117552995681763, 0.20679040253162384, 0.41486889123916626, 0.13264384865760803, 0.15314200520515442, 0.17190083861351013, 0.01818809285759926, -0.13490250706672668, -0.5412291884422302, -0.1405925303697586, -0.12271850556135178, -0.14636600017547607, -0.04839717969298363 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
C-MTEB/OnlineShopping-classification
C-MTEB
2023-07-28T13:15:20Z
231
1
null
[ "region:us" ]
2023-07-28T13:15:20Z
2023-07-28T13:15:09.000Z
2023-07-28T13:15:09
--- configs: - config_name: default data_files: - split: train path: data/train-* - split: test path: data/test-* dataset_info: features: - name: cat dtype: string - name: label dtype: int64 - name: text dtype: string splits: - name: train num_bytes: 1535074.0115334373 num_examples: 8000 - name: test num_bytes: 191884.25144167966 num_examples: 1000 download_size: 1139002 dataset_size: 1726958.262975117 --- # Dataset Card for "OnlineShopping-classification" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6277796626091003, -0.02303476072847843, 0.041396938264369965, 0.25188153982162476, -0.11169064790010452, -0.01145612820982933, 0.287931352853775, -0.6612195372581482, 0.7373993396759033, 0.22397376596927643, -0.7211563587188721, -0.6004090905189514, -0.4408693015575409, -0.3336983919143677, -0.3088529706001282, 1.2465859651565552, 0.04424462839961052, 0.13872253894805908, -0.6129634976387024, -0.1581028550863266, -0.2425086796283722, -0.7730149626731873, -0.8014485836029053, -0.4032609760761261, 0.6807228922843933, 0.42055630683898926, 0.20738548040390015, 0.43150457739830017, 0.7613459229469299, 0.23833748698234558, 0.06535940617322922, -0.3051786720752716, -0.23509098589420319, -0.014070595614612103, -0.10603003203868866, -0.7118964791297913, -1.1718627214431763, 0.04651479795575142, 0.19407786428928375, 0.4558700919151306, -0.45106059312820435, 0.802914559841156, -0.17722421884536743, 0.5862675905227661, -0.649118959903717, 0.524771511554718, -0.00751488609239459, 0.13282223045825958, -0.4854106903076172, -0.2772238254547119, 0.05041936784982681, -0.5056909918785095, -0.15070229768753052, -1.260776400566101, 0.4237706661224365, 0.06235489621758461, 0.9954077005386353, 0.22998788952827454, 0.06561939418315887, -0.20348712801933289, -0.5491911172866821, 0.041883889585733414, -0.17048893868923187, 0.253149151802063, 0.929388165473938, 0.8401111364364624, 0.37257468700408936, -0.9278796911239624, -0.17854872345924377, 0.324267715215683, -0.059816718101501465, 0.37235864996910095, 0.17281661927700043, 0.10071352124214172, 0.72699373960495, 0.5708068013191223, -0.3290046453475952, -0.1155998483300209, -0.5988696813583374, -0.34700244665145874, 0.7810370326042175, 0.14724476635456085, 0.14111585915088654, 0.05181511119008064, -0.03716973587870598, -0.21503648161888123, -0.3451208770275116, 0.07949525862932205, 0.5001490116119385, 0.20534434914588928, -0.9380899667739868, 0.5393000245094299, -0.2362673431634903, 0.5085009336471558, 0.2588825821876526, 0.2985724210739136, 0.7257300615310669, -0.20630134642124176, -0.14468078315258026, 0.16027487814426422, 0.07886219024658203, 0.6308125853538513, -0.05952288210391998, 0.18242128193378448, -0.16652794182300568, 0.1032128632068634, 0.0687350481748581, -0.967248260974884, -0.8794788122177124, 0.2822152376174927, -0.6512409448623657, -0.2961398661136627, 0.411549836397171, -1.1370201110839844, -0.5489925742149353, -0.36267969012260437, 0.34623783826828003, 0.3477495610713959, -0.6880722641944885, -0.18911656737327576, -0.8724547624588013, 0.40416884422302246, 0.3742571771144867, -0.8442211151123047, 0.5246055126190186, 0.7375578284263611, 0.8561923503875732, 0.3133012652397156, -0.12251024693250656, -0.6516321301460266, 0.29237619042396545, 0.15965154767036438, 1.0346993207931519, -0.5683751106262207, -0.03682418167591095, 0.2277180552482605, 0.28726375102996826, 0.16703447699546814, -0.2592829167842865, 0.7418975830078125, -0.42208683490753174, 0.12996536493301392, -0.5407532453536987, -0.725932240486145, -0.0823451355099678, 0.645759105682373, -0.9403403401374817, 0.938363254070282, 0.299661785364151, -0.8038756251335144, 0.590545117855072, -1.2195323705673218, -0.19154618680477142, 0.7636913657188416, 0.06520615518093109, -0.5888804793357849, 0.08025055378675461, -0.11065594106912613, 0.6671528220176697, -0.03468294441699982, 0.27260416746139526, -0.8994828462600708, -0.1716218739748001, 0.05159391090273857, 0.220802441239357, 1.1282395124435425, 0.27358493208885193, 0.2262931615114212, 0.04538371413946152, -1.0135645866394043, -0.18670417368412018, 0.3906033933162689, -0.1579628735780716, -0.3211405575275421, -0.32912012934684753, 0.6514565944671631, -0.021472569555044174, 0.4046285152435303, -0.4862639009952545, 0.5767325758934021, 0.18821141123771667, 0.05245658755302429, 0.5262326598167419, -0.03544512391090393, 0.318589985370636, -0.6068041324615479, 0.7634857892990112, -0.3061067759990692, 0.5636173486709595, -0.030753223225474358, -0.7294161319732666, -0.9099941253662109, -0.04615883529186249, 0.6596772074699402, 0.6057453155517578, -0.586368978023529, 0.6904563903808594, 0.06971566379070282, -0.7485249638557434, -0.16044026613235474, -0.20625856518745422, 0.046918902546167374, 0.06963582336902618, 0.3517748713493347, -0.6926392316818237, -0.6614454984664917, -0.3260376751422882, 0.3780136704444885, -0.10009287297725677, -0.2663379907608032, 0.2777389585971832, 0.5664926767349243, -0.5433752536773682, 0.7406567335128784, -0.8258569240570068, -0.5282707214355469, 0.10666939616203308, -0.047052543610334396, 0.05273767188191414, 0.5054379105567932, 1.083141803741455, -0.6564372777938843, -0.32380756735801697, -0.5731897950172424, -0.3696548044681549, -0.20399074256420135, 0.20037998259067535, -0.3735789656639099, -0.20398710668087006, 0.07000778615474701, -0.3953666687011719, 0.6960932016372681, 0.6496558785438538, -0.4634134769439697, -0.05142414569854736, -0.09579062461853027, 0.16006119549274445, -1.240098476409912, 0.1465335637331009, 0.16791102290153503, -0.22322098910808563, -0.5307159423828125, 0.36985743045806885, 0.1010834351181984, -0.2939319610595703, -0.15570342540740967, 0.3738594353199005, -0.3166387677192688, -0.39787915349006653, -0.05752014368772507, 0.014551070518791676, -0.05475478619337082, 0.25849205255508423, 0.3524308502674103, 0.21607235074043274, 1.141802430152893, -0.7194238305091858, 1.0543886423110962, 0.6392199993133545, -0.013760162517428398, 1.0383564233779907, -0.4384234547615051, 0.18923671543598175, -0.06113288551568985, 0.37764012813568115, -0.5734412670135498, -0.8765259981155396, 0.664786696434021, -0.27623021602630615, 0.5759400725364685, -0.6879692077636719, -0.7038522362709045, -0.5772547721862793, -0.44766056537628174, 0.7142145037651062, 0.4242134094238281, -0.9152041077613831, 0.45765963196754456, 0.7868956327438354, 0.13703782856464386, 0.21368500590324402, -1.0630488395690918, -0.09172746539115906, -0.3477986752986908, -0.03980705142021179, 0.3534407317638397, -0.39535626769065857, 0.03916214779019356, -0.3690894842147827, 0.7154482007026672, -0.23813793063163757, 0.05232569947838783, 0.4092150628566742, 0.11633630096912384, -0.07773085683584213, 0.6155074238777161, -0.10073287785053253, -0.7303472757339478, 0.19557979702949524, 0.024485178291797638, 0.38592398166656494, 0.17993533611297607, -0.432778924703598, -0.4862077236175537, 0.228878453373909, -0.0303955078125, -0.04340517148375511, 0.41627541184425354, 1.0413297414779663, -0.8343684077262878, -0.12955522537231445, -0.3511382043361664, -0.10537894815206528, -0.5296435356140137, -0.10315536707639694, -0.09909407049417496, -0.38713309168815613, 0.46703043580055237, -0.18800313770771027, -0.06124101206660271, 0.7452406287193298, 0.6501573324203491, 0.002739510266110301, 0.6199446320533752, 0.6777640581130981, 0.024385852739214897, 0.5000790357589722, -0.27779489755630493, -0.15305544435977936, -0.5062233209609985, -0.6059011816978455, -0.7173880338668823, -0.465727835893631, -0.8346021175384521, -0.31547224521636963, -0.18994992971420288, 0.11385796219110489, -0.29167360067367554, 0.778568685054779, -0.8834447264671326, 0.36118608713150024, 0.7011507153511047, 0.1528674066066742, -0.03208890184760094, 0.0172350462526083, 0.4380571246147156, 0.2999679148197174, -0.806015133857727, 0.019459901377558708, 1.1754999160766602, 0.595803439617157, 0.8615793585777283, 0.2301986664533615, 0.827258288860321, 0.20343121886253357, 0.4537126421928406, -0.6110675930976868, 0.35663750767707825, 0.2860165238380432, -0.7283754944801331, 0.1749235838651657, -0.1502607762813568, -0.8046371936798096, -0.5692634582519531, -0.4964873790740967, -0.28985998034477234, 0.5226492285728455, 0.5686590075492859, -0.22116845846176147, 0.3961154520511627, -0.8294497132301331, 0.9138861894607544, -0.6789029836654663, -0.019638219848275185, -0.1713569015264511, -0.5713313817977905, -0.06320122629404068, 0.04024243354797363, 0.2844773232936859, -0.22270642220973969, -0.21693822741508484, 1.19125235080719, -0.3626103103160858, 1.1713287830352783, -0.6391885876655579, 0.23450103402137756, 0.14732523262500763, -0.3158133327960968, 0.22181878983974457, -0.004485770594328642, 0.2136511355638504, 0.2685866951942444, 0.27124032378196716, -0.47653064131736755, -0.13266676664352417, 0.563011646270752, -0.704321026802063, 0.3214527368545532, -0.6783152222633362, -0.15511943399906158, -0.19267155230045319, 0.11219967901706696, 0.2859702706336975, 0.5786279439926147, -0.14154052734375, -0.1211128681898117, 0.5336137413978577, 0.17428293824195862, 0.37300410866737366, 0.16611070930957794, -0.5508856773376465, -0.46293479204177856, 1.1854684352874756, 0.2626590132713318, -0.28877580165863037, 0.38227149844169617, 0.443857342004776, -0.2696077525615692, -0.4495857059955597, -0.5263245701789856, 0.07242430001497269, -0.7684476375579834, -0.6390430927276611, -0.21122725307941437, -0.29771608114242554, -0.5680160522460938, -0.21748040616512299, -0.12001518905162811, -0.7767437100410461, -0.8389362096786499, -0.7196006774902344, 1.182534098625183, 0.9919518232345581, -0.5468354821205139, 0.5989697575569153, -0.9944804906845093, 0.3404761254787445, 0.3553326725959778, 1.1624867916107178, -0.023754574358463287, -0.4144896864891052, -0.4247210621833801, -0.05975496023893356, -0.11377041786909103, -0.5793858170509338, 0.03215577453374863, 0.41096022725105286, 0.6346966624259949, 0.7689810991287231, 0.1802966147661209, 0.8638145327568054, 0.07571388781070709, 0.6469706892967224, 0.4211198687553406, -0.5355275273323059, 0.6332553029060364, -0.24167951941490173, 0.2371133416891098, 0.7236396074295044, 0.9121987223625183, -0.43347492814064026, 0.2597954571247101, -1.0629340410232544, -0.8029285669326782, 0.7202171087265015, 0.054055292159318924, 0.1407291293144226, 0.266400545835495, 0.3420839011669159, 0.07519108057022095, 0.30825573205947876, -0.8786486983299255, -0.7211459279060364, -0.3786028027534485, -0.24980661273002625, 0.12700270116329193, -0.44719433784484863, -0.237027108669281, -0.6914355158805847, 0.592932403087616, 0.03713930398225784, 0.5962069034576416, -0.22007957100868225, 0.27902528643608093, -0.2690008580684662, -0.26190221309661865, 0.2766399681568146, 0.5599678754806519, -0.4516823887825012, -0.12965936958789825, 0.04708131030201912, -0.4286577105522156, -0.37829533219337463, 0.4693359136581421, -0.08248793333768845, -0.32099002599716187, 0.5590919256210327, 0.7367385029792786, -0.30382296442985535, -0.22372493147850037, 0.4379776120185852, -0.15122142434120178, -0.3696460723876953, -0.6725040674209595, 0.11566275358200073, 0.07874847203493118, 0.16083265841007233, 0.029113249853253365, 0.015455778688192368, 0.430920273065567, -0.43467018008232117, 0.38251233100891113, -0.1429736316204071, -0.5189827680587769, -0.4387681484222412, 0.473839670419693, 0.6513203978538513, -0.7337809801101685, 0.7274832725524902, -0.3930911421775818, -0.6451148986816406, 0.6988013982772827, 0.32062283158302307, 0.8401318788528442, -0.37813058495521545, 0.4390775263309479, 0.7577966451644897, 0.026714222505688667, -0.10919086635112762, 0.4284621775150299, -0.588175892829895, -0.5705106854438782, 0.22334031760692596, -0.4414917528629303, -0.5627630352973938, -0.28987911343574524, -1.2056523561477661, 0.49701711535453796, -0.7617427706718445, -0.3636317849159241, -0.12872618436813354, -0.06706444919109344, -0.8050979971885681, 0.21796971559524536, 0.45859494805336, 1.0313082933425903, -0.9182891249656677, 0.7442659735679626, 0.7300336360931396, -0.49116113781929016, -0.5043811202049255, -0.1498205065727234, 0.06911412626504898, -0.5674393773078918, -0.046253420412540436, 0.4513181149959564, 0.2707562744617462, -0.1962965726852417, -0.7764885425567627, -0.6361732482910156, 1.225859522819519, 0.1130506619811058, -0.8945388793945312, 0.27905163168907166, -0.1569007784128189, 0.6086673736572266, -0.36721113324165344, 0.43698325753211975, 0.27757933735847473, 0.6950142979621887, 0.31451889872550964, -0.7633458971977234, -0.17505279183387756, -0.5038566589355469, -0.4078916609287262, 0.3245932459831238, -0.5962947607040405, 0.18003597855567932, 0.11275236308574677, -0.14504490792751312, -0.12021786719560623, 0.2707881033420563, -0.11872453987598419, 0.6388615965843201, 0.4282757639884949, 0.9957726001739502, 0.9767265319824219, -0.3525562882423401, 0.9568191170692444, 0.033430591225624084, 0.7053403258323669, 1.274773120880127, -0.11289244890213013, 0.7040415406227112, 0.10798852145671844, -0.32857993245124817, 0.26365506649017334, 0.9429944753646851, -0.6899624466896057, 0.3585410714149475, 0.18745653331279755, -0.0444517508149147, -0.47169384360313416, -0.14548541605472565, -0.87702876329422, -0.009672680869698524, 0.446513831615448, -0.2157001793384552, -0.02820962481200695, 0.13177846372127533, -0.30897676944732666, -0.31190013885498047, -0.8132942914962769, 0.8871732950210571, -0.05164934694766998, 0.07198172062635422, -0.07253118604421616, 0.027546031400561333, 0.5497071743011475, -0.7585931420326233, -0.3126946687698364, 0.22277678549289703, 0.19444075226783752, -0.7671239972114563, -1.0155121088027954, 0.7040668725967407, -0.159427672624588, 0.06495393067598343, -0.20835234224796295, 0.6865921020507812, -0.2762436270713806, -0.8834993839263916, 0.5706716179847717, 0.021046146750450134, 0.22982917726039886, 0.24782420694828033, -1.2131664752960205, -0.0033902842551469803, -0.3899563252925873, -0.007395073305815458, 0.35234758257865906, -0.027694521471858025, 0.14689472317695618, 0.7396209239959717, 0.5557500720024109, -0.07678762078285217, -0.14983375370502472, 0.39724811911582947, 0.8726688027381897, -0.5876652002334595, -0.6939830183982849, -0.30957934260368347, 0.5458691716194153, -0.5099931955337524, -0.5863549709320068, 0.6244550943374634, 0.9762216210365295, 1.3528807163238525, -0.1558845341205597, 0.5580930113792419, -0.4157530963420868, 0.6051314473152161, -0.17095661163330078, 0.7233522534370422, -0.43488502502441406, -0.2878947854042053, -0.18060718476772308, -0.7842285633087158, -0.8265939354896545, 0.7693638801574707, 0.08007243275642395, 0.028993645682930946, 0.47795188426971436, 0.6657950282096863, -0.2816433012485504, 0.1609475463628769, 0.04363962635397911, -0.05229246988892555, -0.00903862901031971, 0.12828707695007324, 0.5165722370147705, -0.4781568944454193, 0.2066938728094101, -0.5246679186820984, -0.48571324348449707, -0.13777031004428864, -1.1435068845748901, -1.0667070150375366, -0.6348685622215271, -0.9185859560966492, -0.35000544786453247, -0.38240358233451843, 1.2490543127059937, 0.9793839454650879, -1.2713271379470825, -0.3977760672569275, -0.10466428846120834, -0.03139816224575043, -0.11106692254543304, -0.10027319192886353, 0.4486338794231415, 0.3527449369430542, -0.46667298674583435, -0.5160261392593384, -0.01954193226993084, 0.40645259618759155, -0.14803306758403778, -0.11743377894163132, -0.102705217897892, -0.3026500940322876, 0.4290635585784912, 0.4183308482170105, -0.09787889569997787, -0.08555096387863159, -0.7585874199867249, 0.25634104013442993, 0.22611184418201447, 0.9548609852790833, -0.39456817507743835, 0.37763816118240356, 0.7382286787033081, 0.5013839602470398, 0.8050776124000549, 0.044847626239061356, 0.44225066900253296, -0.5176587104797363, 0.21500590443611145, 0.03603208437561989, 0.5289291739463806, 0.26727110147476196, -0.4585208296775818, 0.7524858117103577, 0.6183847188949585, -0.38293370604515076, -0.4778660237789154, 0.13049118220806122, -1.3720585107803345, 0.20607151091098785, 0.7088288068771362, -0.14875002205371857, -0.2914660573005676, -0.35990241169929504, -0.3889187276363373, 0.18774351477622986, -0.6291013956069946, 0.4199199974536896, 0.4303556978702545, 0.06049005314707756, -0.3409818112850189, -0.13520650565624237, 0.5711255073547363, -0.7716614007949829, -1.4196361303329468, -0.0014789565466344357, 0.6347289681434631, 0.039031531661748886, 0.39226648211479187, 0.6531321406364441, 0.19869005680084229, 0.24811415374279022, 0.3000163733959198, 0.3687002956867218, -0.3276580274105072, -0.5030513405799866, -0.42599013447761536, 0.22825899720191956, 0.02441505156457424, -0.4327835440635681 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
yale-nlp/QTSumm
yale-nlp
2023-11-07T05:01:32Z
231
1
null
[ "task_categories:text-generation", "task_categories:summarization", "task_categories:table-question-answering", "license:mit", "arxiv:2305.14303", "region:us" ]
2023-11-07T05:01:32Z
2023-10-20T20:26:30.000Z
2023-10-20T20:26:30
--- license: mit task_categories: - text-generation - summarization - table-question-answering --- # QTSumm Dataset The **QTSumm** dataset is a large-scale dataset for the task of **query-focused summarization over tabular data**. It contains 7,111 human-annotated query-summary pairs over 2,934 tables covering diverse topics. To solve this task, a text generation system has to perform **human-like reasoning and analysis** over the given table to generate a tailored summary. ## Citation ``` @misc{zhao2023qtsumm, title={QTSumm: Query-Focused Summarization over Tabular Data}, author={Yilun Zhao and Zhenting Qi and Linyong Nan and Boyu Mi and Yixin Liu and Weijin Zou and Simeng Han and Ruizhe Chen and Xiangru Tang and Yumo Xu and Arman Cohan and Dragomir Radev}, year={2023}, eprint={2305.14303}, archivePrefix={arXiv}, primaryClass={cs.CL} } ```
[ -0.368949830532074, -0.5976462960243225, 0.4236883521080017, -0.027855733409523964, -0.4083617627620697, -0.07103677839040756, 0.05041962489485741, 0.3318127393722534, 0.3111783564090729, 0.9534205198287964, -0.5588176846504211, -0.8135133385658264, -0.31962040066719055, 0.12891213595867157, -0.49521809816360474, 1.2914015054702759, 0.21011321246623993, -0.08489999920129776, -0.36532697081565857, -0.21590639650821686, -0.28742289543151855, -0.3740466237068176, -0.22084468603134155, -0.04044877365231514, 0.7247555255889893, 0.8863252401351929, 0.8304694294929504, 0.7758721113204956, 0.4434410035610199, 0.1913483887910843, 0.2585500478744507, 0.37752076983451843, -0.7831097841262817, 0.34394434094429016, -0.02716008573770523, -0.7877704501152039, -0.8000332117080688, -0.27084800601005554, 1.1537436246871948, 0.519618034362793, -0.055614836513996124, 0.31965371966362, 0.05787685513496399, 1.0026824474334717, -0.5460583567619324, 0.05240160971879959, -0.49523571133613586, 0.11520735919475555, -0.478903591632843, -0.08530613780021667, -0.4087427854537964, -0.7454912662506104, -0.06183001399040222, -0.938511312007904, 0.2706415355205536, 0.2518267035484314, 0.9799104928970337, 0.17030996084213257, -0.8736815452575684, 0.4184732437133789, -0.42841702699661255, 0.8224881887435913, -0.5757096409797668, 0.09602444618940353, 0.5038924217224121, 0.5127565264701843, -0.34430065751075745, -0.8875353932380676, -0.6061769723892212, 0.20155833661556244, -0.3506614565849304, 0.1362709403038025, 0.05188406631350517, 0.02317170985043049, 0.6954139471054077, 0.3312845528125763, -1.0532745122909546, -0.14184066653251648, -0.28056374192237854, -0.033050231635570526, 0.8035403490066528, 0.7959303855895996, 0.16591238975524902, -0.3522093892097473, -0.39185163378715515, -0.2440130114555359, -0.6479522585868835, -0.3344770669937134, -0.1381579339504242, 0.059917040169239044, -0.24509218335151672, 0.5527140498161316, -0.6738177537918091, 0.6824342012405396, -0.39055752754211426, -0.23847699165344238, 0.33290794491767883, -0.8613148331642151, -0.37653475999832153, -0.2197209596633911, 1.1993695497512817, 0.4587216377258301, 0.2894229292869568, -0.02612593211233616, -0.11766806989908218, -0.3880017399787903, 0.0799315944314003, -1.0025452375411987, -0.4111015200614929, 0.3925703465938568, -0.3664371073246002, -0.14649274945259094, 0.4623861610889435, -0.8967965841293335, -0.3745326101779938, -0.26856380701065063, 0.3316926956176758, -0.03784084692597389, -0.438151478767395, -0.18680280447006226, -0.46735090017318726, 0.2670214772224426, 0.19413883984088898, -0.3040159344673157, 0.2783917188644409, 0.36667847633361816, 0.7673693299293518, -0.26078471541404724, -0.3470606207847595, -0.47697538137435913, 0.4317891597747803, -0.27538707852363586, 0.8834487199783325, -0.12281855940818787, -0.5024868845939636, -0.2802155613899231, 0.09764406830072403, -0.06902912259101868, -0.5550516247749329, 0.6152622103691101, -0.3892095983028412, 0.33759909868240356, -0.8132948279380798, -0.35991331934928894, -0.0857258215546608, 0.21342751383781433, -0.9184333086013794, 0.958246648311615, 0.19243624806404114, -0.9404524564743042, 0.6554694175720215, -0.6938615441322327, -0.31973275542259216, 0.2308603972196579, -0.2612309753894806, -0.9110684990882874, -0.3151048719882965, 0.27390462160110474, 0.6237236857414246, -0.6591435074806213, 0.6414248943328857, -0.12922164797782898, -0.22859139740467072, 0.4947594404220581, 0.22244475781917572, 0.8152159452438354, 0.4196380376815796, -0.10023745149374008, 0.45017680525779724, -0.9370611906051636, 0.14564697444438934, 0.34905868768692017, -0.1911458820104599, -0.2551850378513336, -0.01586141064763069, 0.13622084259986877, 0.19315862655639648, 0.08295261114835739, -0.2962598502635956, 0.3117845058441162, 0.10183630883693695, 0.3393765091896057, 0.28220897912979126, 0.46014055609703064, 0.2148488610982895, -0.7021738290786743, 0.7258012294769287, 0.21466441452503204, -0.016531944274902344, -0.4392790198326111, -0.16459240019321442, -0.7089220285415649, -0.1980166882276535, 0.6488818526268005, 0.5279998779296875, -1.0895496606826782, 0.5118175745010376, -0.430171400308609, -0.6366344690322876, -0.30538684129714966, -0.29826921224594116, 0.6010648012161255, 0.5234869718551636, 0.34125393629074097, 0.07716989517211914, -0.701030969619751, -1.2350029945373535, -0.16436244547367096, 0.0954437181353569, -0.33046722412109375, -0.10311625897884369, 0.5434251427650452, 0.0813269168138504, 1.0811543464660645, -1.0084296464920044, -0.33092933893203735, -0.3507212996482849, 0.053399376571178436, -0.05286040157079697, 0.5344059467315674, 0.415118545293808, -0.9477153420448303, -0.3645986020565033, -0.24640192091464996, -1.0209296941757202, -0.06126248463988304, -0.2585110366344452, -0.7061358690261841, -0.051584333181381226, 0.33245351910591125, -0.4240736961364746, 0.36646026372909546, -0.1690748780965805, -0.5277097821235657, 0.7464906573295593, 0.10247712582349777, 0.45590880513191223, -1.5794438123703003, 0.3543457090854645, 0.00390622578561306, -0.27097806334495544, -0.5900237560272217, 0.07163697481155396, 0.15841224789619446, -0.13010992109775543, -0.18694940209388733, 0.299628347158432, -0.6006026864051819, -0.2773610055446625, -0.10888595134019852, 0.3133627474308014, 0.38260653614997864, 0.6378507614135742, -0.16630901396274567, 0.7681465148925781, 0.1358736753463745, -0.661992609500885, 0.38390228152275085, 0.5469462275505066, -0.1992824524641037, 0.6808254718780518, -0.9404507279396057, -0.16734622418880463, 0.010726715438067913, 0.36191192269325256, -1.0065110921859741, -0.5652945041656494, 0.26722419261932373, -0.6306446194648743, 0.10881537944078445, 0.2273416966199875, -0.7141222953796387, -0.12319283187389374, -0.6372759342193604, 0.3902253806591034, 0.3460083305835724, -0.22073760628700256, 0.27207690477371216, 0.7086235880851746, -0.18941262364387512, -0.30517706274986267, -0.5824432969093323, 0.045163415372371674, -0.25007352232933044, -0.5523092746734619, 0.08584880083799362, 0.05135522410273552, -0.2719849646091461, -0.07575118541717529, 0.29487505555152893, -0.001807548338547349, 0.13218723237514496, 0.2920505106449127, 0.19562672078609467, -0.23848767578601837, 0.2695729434490204, 0.4435906410217285, -0.15942363440990448, 0.08885517716407776, 0.02940070815384388, 0.49573251605033875, 0.1810382902622223, 0.12181895971298218, -0.5116289258003235, 0.4509023427963257, 0.4250049293041229, -0.2882942259311676, 0.5580850839614868, 0.49057796597480774, -0.4687880277633667, 0.004777050111442804, -0.15762612223625183, -0.08365281671285629, -0.3472830355167389, 0.5975631475448608, -0.46745947003364563, -0.7265636324882507, 0.6280413269996643, 0.32862842082977295, 0.42855530977249146, 1.0473449230194092, 0.614319920539856, 0.07054000347852707, 1.0750319957733154, 0.07519681006669998, -0.10417989641427994, 0.3417876064777374, -0.33554205298423767, -0.5360063314437866, -0.8775716423988342, -0.30762746930122375, -0.8835222125053406, -0.345548152923584, -0.7062770128250122, -0.22619245946407318, 0.4992623031139374, -0.23654963076114655, -0.4773275852203369, 0.2604956030845642, -0.4725232422351837, 0.34691062569618225, 0.7847160696983337, 0.1821146309375763, 0.5125990509986877, -0.08433400094509125, 0.12542076408863068, 0.005464822519570589, -0.6723894476890564, -0.37328141927719116, 1.1576383113861084, 0.05979083105921745, 0.6304922103881836, 0.093531534075737, 0.723738968372345, 0.4121089279651642, -0.05415625125169754, -0.5248581767082214, 0.8327205777168274, 0.12931253015995026, -0.7300580739974976, -0.6376931071281433, -0.9976693391799927, -1.3278347253799438, 0.34636518359184265, -0.465341180562973, -0.21297934651374817, 0.14412105083465576, 0.10466895252466202, -0.2956840395927429, 0.12538999319076538, -0.6982303261756897, 0.7496753334999084, 0.11323577165603638, -0.2587449550628662, -0.049111027270555496, -0.8922536373138428, 0.6876975893974304, -0.07014326751232147, 0.033618900924921036, -0.17454223334789276, -0.08269046992063522, 1.2722249031066895, -0.44538500905036926, 0.46806269884109497, -0.4781964123249054, 0.16944631934165955, 0.34557589888572693, -0.04108262434601784, 0.23161490261554718, 0.1988307386636734, -0.011950052343308926, -0.26933667063713074, 0.16098660230636597, -0.7083973288536072, -0.4658196270465851, 0.3968667984008789, -0.6868066191673279, -0.27314454317092896, -0.49058854579925537, -0.626430094242096, -0.10510944575071335, 0.4888899326324463, 0.4588204026222229, 0.6539382338523865, -0.4049578607082367, 0.38034898042678833, 0.6016176342964172, -0.17664334177970886, 0.0641966387629509, 0.3605850338935852, -0.2964031398296356, -0.6151590347290039, 1.127058982849121, 0.5959160327911377, 0.034240640699863434, 0.4901905059814453, 0.009961442090570927, 0.005954735912382603, -0.47756996750831604, -0.6820677518844604, 0.2565259039402008, -0.16983412206172943, -0.5630648732185364, -0.8115459680557251, -0.21846967935562134, -0.2572081983089447, 0.302430123090744, 0.06028512492775917, -0.6677139401435852, -0.3574729859828949, -0.15862193703651428, 0.3688455820083618, 0.6118558049201965, 0.3558019995689392, 0.5796282291412354, -0.9973127245903015, 0.6453927159309387, 0.24902042746543884, 0.1737210899591446, -0.02129262685775757, -0.3634420931339264, -0.5431415438652039, 0.17504720389842987, -0.40174296498298645, -0.8922765254974365, 0.5279273390769958, 0.33273574709892273, 0.6783085465431213, 0.3828970491886139, 0.49104171991348267, 0.3688351809978485, 0.15544070303440094, 0.8776355981826782, -0.01249693427234888, -0.5586743354797363, 0.5714403390884399, -0.7002201676368713, 0.783425509929657, 0.7639477849006653, 0.41104698181152344, -0.296905517578125, -0.4049348533153534, -0.7466235160827637, -0.8671358823776245, 0.8811892867088318, 0.22465863823890686, -0.5382826328277588, 0.24046002328395844, 0.33703356981277466, 0.12843738496303558, 0.3677826523780823, -0.49877670407295227, -0.24551717936992645, -0.08198485523462296, -0.24154359102249146, 0.058375027030706406, -0.51002436876297, -0.19134214520454407, -0.11081691086292267, 0.83448326587677, -0.3763878345489502, 0.3383977711200714, 0.09027723222970963, -0.283331036567688, -0.11406107246875763, 0.30032268166542053, 0.8240655064582825, 0.7633060216903687, -0.30230802297592163, 0.06280342489480972, 0.006571080535650253, -0.6363229751586914, -0.11223483085632324, 0.12056822329759598, -0.31521692872047424, -0.13075639307498932, 0.25987473130226135, 0.7413684129714966, 0.026989778503775597, -0.5571271777153015, 0.1547515094280243, -0.3612835109233856, -0.5056468844413757, -0.20460060238838196, 0.35816311836242676, 0.05631127581000328, 0.07169532030820847, 0.7248802781105042, -0.5630236864089966, 0.4974750876426697, -0.34928950667381287, 0.2911547124385834, 0.08076977729797363, -0.09360326826572418, -0.30901312828063965, 0.5808548331260681, -0.006604299880564213, 0.18225765228271484, 0.703471302986145, -0.348288357257843, -0.45885369181632996, 0.7985090613365173, 0.1995154172182083, 0.7483893036842346, -0.040619540959596634, 0.02938424050807953, 0.810590386390686, 0.09048048406839371, 0.061847858130931854, 0.7042647004127502, -0.11272057890892029, -0.5927411317825317, -0.07948504388332367, -0.3758302927017212, -0.5967615842819214, -0.08156626671552658, -1.1249829530715942, 0.18582025170326233, -0.20600786805152893, -0.15690794587135315, 0.13742448389530182, 0.3317016661167145, -0.37285667657852173, 0.3881319463253021, -0.5670769810676575, 0.6913832426071167, -0.8241082429885864, 0.8402042388916016, 0.5795190334320068, -0.49313250184059143, -0.684571385383606, -0.02046658843755722, -0.07364246994256973, -0.5463211536407471, 0.03198690339922905, -0.1889699548482895, 0.2983478903770447, 0.1356358528137207, -0.7061554193496704, -0.6404379606246948, 1.4434623718261719, 0.12745653092861176, -0.6181003451347351, -0.02870352379977703, 0.09895547479391098, 0.33398130536079407, -0.2214219570159912, 0.11340610682964325, 1.0240364074707031, 0.6440849304199219, 0.01066800206899643, -0.6580868363380432, 0.22613631188869476, -0.4239274859428406, -0.16137827932834625, 0.6859863996505737, -0.9206776022911072, 0.7830637097358704, -0.2787041664123535, -0.22016063332557678, -0.10611386597156525, 0.8891541957855225, 0.40888532996177673, 0.5137614607810974, 0.40816545486450195, 0.5886144638061523, 0.7307273745536804, -0.36300188302993774, 0.7822385430335999, 0.1377156525850296, 0.11864683032035828, 1.252468228340149, -0.08647176623344421, 0.5938560366630554, 0.012201557867228985, -0.5012148022651672, 0.2096545547246933, 0.6391398906707764, -0.23710305988788605, 0.3054599463939667, 0.037285104393959045, 0.31211087107658386, -0.1511060893535614, -0.0575551800429821, -0.7034505009651184, 0.3030276298522949, 0.5096955299377441, -0.38209283351898193, -0.07963971048593521, -0.15051549673080444, 0.351346880197525, 0.0037635061889886856, -0.432758629322052, 1.222100019454956, 0.08347558975219727, -0.6240653991699219, 0.6210615038871765, -0.07441512495279312, 0.4071342945098877, -0.4160582423210144, 0.006178934592753649, -0.42780038714408875, -0.26208335161209106, -0.49746957421302795, -0.8765723705291748, 0.15961584448814392, -0.18214735388755798, -0.3726733326911926, 0.31720951199531555, 0.7235314846038818, -0.5381462574005127, -0.28987160325050354, -0.38949722051620483, 0.6412622928619385, 0.22076129913330078, -0.16583330929279327, -0.36884981393814087, -0.21852058172225952, 0.1762053519487381, -0.470014363527298, 0.555770754814148, 0.6987446546554565, -0.270963579416275, 0.422186940908432, 0.5035684704780579, -0.3053683936595917, -0.17848943173885345, 0.11178264021873474, 1.0925103425979614, -1.12980318069458, -0.7706731557846069, -0.6618485450744629, 0.5620682239532471, -0.3249318599700928, -0.7049199342727661, 0.8305510878562927, 0.9908848404884338, 0.39112746715545654, 0.03159407153725624, 0.9114186763763428, 0.06467904150485992, 0.9626249670982361, -0.4800560474395752, 1.0426452159881592, -0.7052205204963684, -0.07372882962226868, -0.27036532759666443, -0.794265866279602, -0.4226330518722534, 0.28058022260665894, -0.08012493699789047, 0.12920695543289185, 0.4090980589389801, 0.7334239482879639, 0.3978511095046997, 0.04607068747282028, 0.41105037927627563, 0.2677900195121765, 0.12701791524887085, 0.5556803345680237, 0.6449295878410339, -0.5037657022476196, 0.5459961295127869, -0.04895611107349396, -0.18882247805595398, -0.49037009477615356, -0.44411155581474304, -0.8338479995727539, -0.8408685922622681, -0.2911835014820099, -0.5319395661354065, -0.16197331249713898, 0.8884308338165283, 0.5236436724662781, -0.7787064909934998, -0.3015190660953522, 0.2510231137275696, 0.3720378577709198, -0.04564737528562546, -0.2813343405723572, 0.651440441608429, 0.020328067243099213, -0.4854682385921478, -0.018488598987460136, -0.08028696477413177, -0.17936280369758606, -0.25599241256713867, 0.08809862285852432, -0.21703675389289856, -0.1513873040676117, 0.5497896075248718, 0.24116241931915283, -0.04342758283019066, 0.30987703800201416, 0.11059623211622238, -0.3010021448135376, 0.344857782125473, 0.7361168265342712, -0.7555678486824036, 0.3157678544521332, 0.8418415784835815, 0.2589576542377472, 0.6645313501358032, 0.2165738195180893, 0.6227989792823792, -0.8209087252616882, -0.12111150473356247, 0.1562500298023224, 0.2475799322128296, 0.12237579375505447, -0.31221258640289307, 0.5580808520317078, 0.1445367932319641, -0.8474574089050293, -1.1006438732147217, 0.02192699909210205, -1.3107329607009888, -0.13279499113559723, 0.9418936967849731, 0.034088801592588425, -0.33504658937454224, -0.24812281131744385, -0.4601978361606598, 0.49484187364578247, -0.7426034212112427, 0.4844536781311035, 0.22963479161262512, 0.008621850050985813, -0.32843878865242004, -0.4329049289226532, 0.5860840082168579, 0.16457846760749817, -1.3094775676727295, 0.09191009402275085, 0.6062829494476318, 0.05228913947939873, -0.07190833985805511, 0.5705425143241882, -0.20788145065307617, 0.6284598112106323, 0.016185017302632332, 0.37470415234565735, -0.29504692554473877, -0.3348003327846527, -0.1595512479543686, 0.45981502532958984, 0.1972484439611435, -0.3323175311088562 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Alamerton/pangolin-llama-finetuning
Alamerton
2023-10-24T10:29:42Z
231
0
null
[ "region:us" ]
2023-10-24T10:29:42Z
2023-10-24T10:27:54.000Z
2023-10-24T10:27:54
Entry not found
[ -0.3227645754814148, -0.22568479180335999, 0.8622263669967651, 0.43461522459983826, -0.52829909324646, 0.7012971639633179, 0.7915719747543335, 0.07618614286184311, 0.774603009223938, 0.2563217282295227, -0.7852813005447388, -0.22573819756507874, -0.9104475975036621, 0.5715674161911011, -0.3992327153682709, 0.5791246294975281, -0.14494499564170837, -0.10751135647296906, 0.28233814239501953, -0.2768957316875458, -0.5409227013587952, -0.3685525059700012, -1.1902779340744019, 0.061491698026657104, 0.5316582918167114, 0.743514358997345, 0.7584061622619629, 0.3652168810367584, 0.643257737159729, 0.39322906732559204, -0.231389120221138, 0.48270541429519653, -0.04171793907880783, 0.0026038705836981535, -0.3524438440799713, -0.5516899824142456, -0.28596577048301697, 0.07584768533706665, 1.096130132675171, 0.9666873812675476, -0.28466421365737915, 0.05330856889486313, -0.30636167526245117, 0.3308892846107483, -0.4973427355289459, 0.3054097294807434, -0.022506216540932655, 0.16318757832050323, -0.704151451587677, -0.5535351634025574, 0.012795033864676952, -0.7361212968826294, 0.17926514148712158, -0.6900812387466431, 0.8269097208976746, 0.18583209812641144, 1.1533749103546143, 0.14819422364234924, -0.4624859392642975, -0.8161761164665222, -0.6538985371589661, 0.5711163282394409, -0.32703715562820435, 0.3968023657798767, 0.7028226256370544, -0.048573337495326996, -0.9820331335067749, -0.6745738983154297, -0.46466246247291565, 0.2923974096775055, 0.3540281355381012, -0.3411684036254883, -0.17522093653678894, -0.30589917302131653, 0.15791958570480347, 0.1281142681837082, -0.48419976234436035, -0.5543919205665588, -0.547515869140625, -0.39602571725845337, 0.6206656694412231, 0.34829503297805786, 0.24291737377643585, -0.18884189426898956, -0.3228582441806793, 0.0880165845155716, -0.41608554124832153, 0.3402574062347412, 0.6335517168045044, 0.711402416229248, -0.5811446309089661, 0.5602157711982727, -0.049275897443294525, 0.7439709901809692, 0.11445585638284683, -0.2747812569141388, 0.4146060049533844, -0.14724673330783844, 0.055171847343444824, 0.42263513803482056, 0.3152443468570709, 0.28413069248199463, -0.3273696303367615, 0.20322275161743164, -0.32151490449905396, -0.3049626648426056, -0.2233218252658844, -0.29490745067596436, -0.35921788215637207, 0.5492295026779175, -0.3314018249511719, -0.4285552501678467, 1.1431758403778076, -0.42007699608802795, -0.7302228808403015, 0.33156365156173706, 0.40652117133140564, -0.0994473472237587, -0.37146514654159546, -0.052260853350162506, -0.8458787202835083, -0.00790744461119175, 0.7491178512573242, -0.7198969125747681, 0.33717358112335205, 0.47280627489089966, 0.741721510887146, 0.1965060532093048, -0.14034466445446014, -0.4294945299625397, 0.2971963882446289, -0.8659994006156921, 0.6320174336433411, -0.20135276019573212, -1.0051976442337036, 0.11150483042001724, 0.8971704244613647, -0.3789643347263336, -1.2094870805740356, 1.0605157613754272, -0.6887932419776917, 0.16017864644527435, -0.6767609119415283, -0.14661164581775665, -0.07118469476699829, -0.005095955915749073, -0.6088155508041382, 0.7567099332809448, 0.5872676968574524, -0.49952778220176697, 0.21429462730884552, -0.2602984309196472, -0.3915135860443115, 0.38824939727783203, -0.0793546810746193, -0.21858906745910645, 0.7138336896896362, -0.6647078394889832, -0.2693284749984741, 0.2942773103713989, 0.23689350485801697, -0.357060968875885, -0.793192446231842, 0.08478079736232758, -0.05786222219467163, 1.5507503747940063, -0.03868860378861427, -0.35861143469810486, -0.6793836951255798, -1.1506236791610718, -0.07070811837911606, 0.6886887550354004, -0.9194992184638977, -0.27839499711990356, -0.046410247683525085, -0.26169371604919434, 0.0899493545293808, 0.7390591502189636, -1.119404911994934, 0.28327250480651855, -0.050927065312862396, -0.22794730961322784, 0.8271061182022095, 0.1538720428943634, 0.24758882820606232, 0.14913466572761536, 0.4295872151851654, 0.5277255773544312, 0.11115183681249619, 0.6835882663726807, -0.3472035229206085, -0.9694353938102722, 0.6154633164405823, 0.25266438722610474, 0.8121451139450073, -0.49945372343063354, 0.2685092091560364, 0.2702546715736389, -0.3409683108329773, -0.5682377815246582, -0.310282826423645, 0.09025713056325912, 0.14930608868598938, 0.11142496764659882, -0.5721707344055176, -0.6576128005981445, -0.9689135551452637, -0.13590654730796814, -0.43143755197525024, -0.35715678334236145, 0.2100687474012375, 0.5792907476425171, -1.1975533962249756, 0.4128877520561218, -0.7705622911453247, -0.703874409198761, -0.010655621066689491, -0.1933809369802475, 0.7540653944015503, 0.43240174651145935, 0.5033961534500122, -0.6397145390510559, -0.5661987066268921, -0.22470159828662872, -1.0333740711212158, -0.13280484080314636, 0.24819664657115936, 0.3065737783908844, -0.1342328041791916, -0.2744964361190796, -0.48740261793136597, 0.8100383877754211, 0.14789214730262756, -0.5391897559165955, 0.5220769643783569, -0.3020317554473877, 0.17224839329719543, -0.6369158029556274, -0.0691685602068901, -0.6616761684417725, -0.0009067110950127244, -0.36083078384399414, -0.5737436413764954, 0.14772333204746246, 0.07017548382282257, -0.16065415740013123, 0.2880837619304657, -0.909276008605957, -0.0010854422580450773, -0.744221568107605, 0.37907224893569946, 0.0639476627111435, -0.3145084083080292, -0.017516743391752243, 1.000038743019104, 0.7784457206726074, -0.3848040699958801, 0.7217439413070679, 0.4440040588378906, 0.19036099314689636, 0.7630518674850464, -0.18725158274173737, 0.16478213667869568, -0.5245421528816223, -0.12161099910736084, -0.8887605667114258, -1.0982943773269653, 0.7320572137832642, -0.6114250421524048, 0.36542850732803345, -0.42778605222702026, 0.2589159309864044, -0.6919258832931519, -0.038853395730257034, 0.4808599054813385, -0.05936374515295029, -0.6863952875137329, 0.5232571363449097, 0.4531749188899994, -0.2019244134426117, -0.6609036922454834, -0.5301570296287537, 0.39365914463996887, 0.6154113411903381, -0.16390396654605865, 0.06878498196601868, 0.14941087365150452, -0.5441920757293701, -0.040802545845508575, -0.3869187533855438, -0.4576674997806549, 0.05422405153512955, 0.13053379952907562, -0.005750161595642567, -0.40482011437416077, -0.08680257946252823, -0.35842010378837585, -0.4656125009059906, 0.21876463294029236, 0.30119529366493225, -0.04096344858407974, -0.42599743604660034, -0.36198148131370544, -0.8881808519363403, 0.6719611883163452, 0.5370280146598816, 0.05281474441289902, 0.7555550336837769, 0.16819244623184204, -0.801498293876648, -0.13532206416130066, -0.17607054114341736, 0.2696835994720459, -0.5588056445121765, 0.13849826157093048, -0.013484805822372437, -0.06374907493591309, 0.2629791498184204, 0.25386205315589905, -0.4300558567047119, 0.927625298500061, -0.26152747869491577, -0.3592526614665985, 0.7960182428359985, 0.5974737405776978, 0.4958309531211853, 0.16503198444843292, -0.044541094452142715, 0.9007097482681274, -1.196651816368103, -0.6563171744346619, -0.7409546375274658, -0.15945661067962646, -0.43510857224464417, -0.0321057066321373, 0.6254417300224304, 0.29009905457496643, -0.13333925604820251, 0.47563934326171875, -0.5243490934371948, 0.3556032180786133, 1.0119839906692505, 0.3574867248535156, 0.34357017278671265, -0.7570232152938843, -0.25157779455184937, -0.14024296402931213, -0.9998159408569336, -0.2631372809410095, 0.8871029615402222, 0.2275265008211136, 0.8444608449935913, 0.5992542505264282, 0.6784538626670837, 0.136723130941391, 0.2523833215236664, -0.305902898311615, 0.39202871918678284, 0.43760839104652405, -1.040114164352417, -0.42758411169052124, 0.02141888067126274, -0.9703332185745239, -0.14227578043937683, -0.03495054319500923, -0.42617106437683105, 0.7681738138198853, 0.00016635804786346853, -0.4076710641384125, 0.7732735872268677, -0.4555833339691162, 0.7562878727912903, -0.4473649859428406, -0.026638653129339218, 0.4699098467826843, -0.707064151763916, 0.4677433967590332, 0.12878736853599548, 0.6205845475196838, -0.015571946278214455, -0.04078621417284012, 0.7104931473731995, -0.9129164814949036, 0.25438612699508667, -0.6348398923873901, 0.22421303391456604, 0.24246959388256073, 0.5160625576972961, 0.5969962477684021, 0.4371241629123688, 0.10119915008544922, -0.23920848965644836, 0.04115789383649826, -0.8241121172904968, -0.21050670742988586, 0.6975144147872925, -0.7186897397041321, -0.6864195466041565, -1.2355334758758545, 0.14438661932945251, 0.2734704911708832, 0.3893047273159027, 0.7959297895431519, 0.5714079141616821, 0.12895449995994568, 0.6805254220962524, 0.9888579249382019, -0.06885591894388199, 0.916691780090332, 0.3224475085735321, 0.09175165742635727, -0.2194489687681198, 0.703682541847229, 0.2662784457206726, -0.2470790147781372, -0.11939744651317596, 0.20913469791412354, -0.11069414764642715, -0.5917618870735168, -0.4999074339866638, 0.3701755702495575, -0.6731783747673035, -0.1830393373966217, -0.6243732571601868, -0.6043766736984253, -0.5117589235305786, 0.0692739263176918, -0.7147684097290039, 0.23979082703590393, -0.7753568887710571, -0.10574901103973389, 0.04323358088731766, 0.9792002439498901, -0.5893120765686035, 0.5805228352546692, -1.12185800075531, 0.19345775246620178, -0.07949890196323395, 0.792106032371521, 0.2139579802751541, -0.7344390153884888, -0.39754199981689453, -0.11592598259449005, -0.37299054861068726, -1.3576757907867432, 0.21404962241649628, -0.24541422724723816, 0.2309398353099823, 0.6145407557487488, 0.13977040350437164, 0.5258244276046753, -0.3432632088661194, 0.7029102444648743, -0.057016827166080475, -0.7069293856620789, 0.7934491038322449, -0.5026893615722656, 0.4963533282279968, 0.9766002893447876, 0.5333840250968933, -0.7984007596969604, 0.0357406847178936, -1.041122555732727, -0.600869357585907, 0.38426393270492554, 0.1192895919084549, -0.03601125627756119, -0.665955662727356, -0.054019927978515625, -0.16143806278705597, 0.6043741703033447, -1.0390695333480835, -0.785835862159729, 0.25766894221305847, 0.5277299284934998, 0.08168502151966095, -0.5653401613235474, 0.2088075876235962, -0.5444163084030151, 1.0657776594161987, 0.45109352469444275, 0.32744958996772766, 0.8406059145927429, 0.4649237096309662, -0.38231605291366577, 0.09252502024173737, 0.7662692070007324, 0.6666228771209717, -0.5239795446395874, -0.2908027172088623, -0.0882752314209938, -0.9143400192260742, 0.05927503854036331, 0.1116887554526329, -0.013456095941364765, 0.9082115292549133, 0.579308032989502, 0.253970205783844, 0.4514276385307312, -0.7264610528945923, 0.8859445452690125, -0.1495419293642044, -0.1247284859418869, -1.0677239894866943, 0.19486205279827118, -0.23984935879707336, 0.5006400346755981, 1.0061331987380981, 0.525004506111145, -0.047630541026592255, -0.814338207244873, -0.014736384153366089, 0.6939173936843872, -0.7091119289398193, -0.17449775338172913, 0.9448539614677429, 0.38471025228500366, -1.295304536819458, 1.106776475906372, -0.5381773710250854, -0.5603317618370056, 0.9121302366256714, 0.5229570269584656, 1.1221849918365479, -0.44204193353652954, 0.0008675057324580848, 0.2662239074707031, 0.4137844443321228, 0.5423170328140259, 1.0869632959365845, 0.43141356110572815, -0.7931072115898132, 0.8826581835746765, -0.24776068329811096, -0.40361127257347107, -0.053475700318813324, -0.42859864234924316, 0.16892209649085999, -0.4406189024448395, -0.10712965577840805, -0.3444185256958008, 0.2854307293891907, -0.70720374584198, 0.42807644605636597, -0.08385642617940903, 0.8653066754341125, -0.8553729057312012, 0.47207602858543396, 0.6354700326919556, -0.33373481035232544, -0.8508192300796509, -0.26198476552963257, -0.1144845262169838, -0.6389466524124146, 0.30214792490005493, -0.45541054010391235, 0.044398874044418335, 0.09623479843139648, -0.6491509675979614, -1.1778273582458496, 0.9093631505966187, -0.6396117210388184, -0.2784458100795746, 0.20463958382606506, -0.1151471883058548, 0.28811654448509216, -0.2524648904800415, 0.010661328211426735, 0.4187661111354828, 0.7489396333694458, 0.28446561098098755, -0.7727053761482239, -0.36948859691619873, 0.0015033691888675094, -0.44474759697914124, 0.7582973837852478, -0.6002098917961121, 1.1840776205062866, -0.556353747844696, -0.05965423583984375, 0.4438447952270508, 0.24690861999988556, 0.21076245605945587, 0.6629217267036438, 0.144208163022995, 0.7282259464263916, 1.0701210498809814, -0.4083522856235504, 0.881180465221405, 0.26432785391807556, 0.4743083417415619, 0.7238510251045227, -0.6487718820571899, 0.7513747811317444, 0.3181043267250061, -0.5682927966117859, 0.9228019714355469, 1.290606141090393, -0.15699152648448944, 0.80793696641922, 0.051364265382289886, -1.0815999507904053, 0.32583361864089966, -0.20724761486053467, -0.7530062198638916, 0.31502565741539, 0.19055864214897156, -0.6920987367630005, -0.5770313739776611, -0.2404651641845703, -0.35662829875946045, -0.11552873998880386, -0.763173520565033, 0.6720565557479858, -0.01696927472949028, -0.5103673934936523, 0.18857470154762268, 0.28775009512901306, 0.17368444800376892, -0.5235736966133118, -0.029393965378403664, -0.22823575139045715, 0.2660652697086334, -0.5670853853225708, -0.5234523415565491, 0.5724437236785889, -0.32430148124694824, -0.5343252420425415, 0.181474968791008, 0.7635870575904846, -0.16923785209655762, -0.4515411853790283, 0.3247268795967102, 0.6959530115127563, 0.16658467054367065, 0.42502790689468384, -0.23511283099651337, 0.2448059767484665, -0.08044827729463577, -0.06651593744754791, 0.27714747190475464, 0.3449171781539917, 0.22435645759105682, 0.44501352310180664, 0.432856947183609, -0.018087303265929222, -0.10736559331417084, -0.38282057642936707, 0.41249361634254456, -0.9542784690856934, -0.5713290572166443, -0.630710780620575, 0.2740667760372162, -0.023154327645897865, -1.0836422443389893, 0.41451746225357056, 1.4406688213348389, 1.0359984636306763, -0.4756380617618561, 1.0672271251678467, -0.21818462014198303, 0.9594789743423462, 0.4148314893245697, 0.5420438051223755, -0.6030403971672058, 0.038353081792593, -0.43644052743911743, -1.0769634246826172, -0.3571633994579315, 0.4539390206336975, -0.02289981208741665, -0.3429867625236511, 0.8725717663764954, 0.5887162685394287, -0.3347362279891968, -0.11728022992610931, 0.04848663881421089, -0.029941599816083908, -0.12433874607086182, 0.5145372152328491, 0.764839768409729, -0.9344298243522644, -0.10680411010980606, -0.21577700972557068, -0.6382728815078735, -0.5047284364700317, -0.9632002711296082, -0.12959381937980652, -0.16037842631340027, 0.03534334897994995, -0.5662809014320374, 0.002556905150413513, 1.2083250284194946, 0.5684951543807983, -1.1113994121551514, -0.5303782224655151, 0.33718499541282654, 0.39204245805740356, -0.1874789297580719, -0.24202406406402588, 0.2984571158885956, 0.1538221836090088, -0.5908879041671753, 0.6875662803649902, 0.8089626431465149, 0.20888905227184296, 0.19554781913757324, 0.15893003344535828, -0.8229468464851379, -0.1491343379020691, 0.1744047999382019, 0.9450566172599792, -0.9398531913757324, -0.7114846110343933, -0.03168468177318573, -0.2709487974643707, -0.05765697360038757, 0.17102089524269104, -0.4046342968940735, 0.5180684924125671, 0.34591469168663025, 0.49933499097824097, 0.056160878390073776, -0.05474642664194107, 0.5409556031227112, -0.9069051742553711, 0.09425970166921616, 0.41343608498573303, 0.4154110848903656, -0.4000871181488037, -0.5910195112228394, 0.6713417172431946, 1.0073974132537842, -0.6594864130020142, -0.8743263483047485, -0.19846680760383606, -1.0016000270843506, 0.04189697653055191, 0.6762756109237671, 0.5009528994560242, -0.48065176606178284, -0.4174492359161377, -0.5617400407791138, -0.1254679411649704, -0.13699708878993988, 0.76216059923172, 1.1796802282333374, -0.7432100772857666, 0.07975788414478302, -1.0386393070220947, 0.6594987511634827, -0.2419460564851761, -0.3457580506801605, -0.4864429533481598, 0.3832802176475525, 0.3523699641227722, 0.44048118591308594, 0.6148120164871216, 0.14084689319133759, 0.8338428735733032, 0.31260576844215393, -0.17026856541633606, 0.2698982357978821, -0.4559198319911957, -0.02893332578241825, -0.05796259641647339, 0.3101596236228943, -1.026215672492981 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
sbu_captions
null
2023-06-02T20:56:01Z
230
9
sbu-captions-dataset
[ "task_categories:image-to-text", "task_ids:image-captioning", "annotations_creators:found", "language_creators:found", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:unknown", "region:us" ]
2023-06-02T20:56:01Z
2022-04-12T10:41:52.000Z
2022-04-12T10:41:52
--- annotations_creators: - found language_creators: - found language: - en license: - unknown multilinguality: - monolingual size_categories: - 1M<n<10M source_datasets: - original task_categories: - image-to-text task_ids: - image-captioning paperswithcode_id: sbu-captions-dataset pretty_name: SBU Captioned Photo Dataset dataset_info: features: - name: image_url dtype: string - name: user_id dtype: string - name: caption dtype: string splits: - name: train num_bytes: 143795586 num_examples: 1000000 download_size: 49787719 dataset_size: 143795586 --- # Dataset Card for SBU Captioned Photo Dataset ## Table of Contents - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Dataset Preprocessing](#dataset-preprocessing) - [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.cs.rice.edu/~vo9/sbucaptions/ - **Repository:** - **Paper:** [Im2Text: Describing Images Using 1 Million Captioned Photographs](https://papers.nips.cc/paper/2011/hash/5dd9db5e033da9c6fb5ba83c7a7ebea9-Abstract.html) - **Leaderboard:** - **Point of Contact:** [Vicente Ordóñez Román](mailto:vicenteor@rice.edu) ### Dataset Summary SBU Captioned Photo Dataset is a collection of associated captions and images from Flickr. ### Dataset Preprocessing This dataset doesn't download the images locally by default. Instead, it exposes URLs to the images. To fetch the images, use the following code: ```python from concurrent.futures import ThreadPoolExecutor from functools import partial import io import urllib import PIL.Image from datasets import load_dataset from datasets.utils.file_utils import get_datasets_user_agent USER_AGENT = get_datasets_user_agent() def fetch_single_image(image_url, timeout=None, retries=0): for _ in range(retries + 1): try: request = urllib.request.Request( image_url, data=None, headers={"user-agent": USER_AGENT}, ) with urllib.request.urlopen(request, timeout=timeout) as req: image = PIL.Image.open(io.BytesIO(req.read())) break except Exception: image = None return image def fetch_images(batch, num_threads, timeout=None, retries=0): fetch_single_image_with_args = partial(fetch_single_image, timeout=timeout, retries=retries) with ThreadPoolExecutor(max_workers=num_threads) as executor: batch["image"] = list(executor.map(fetch_single_image_with_args, batch["image_url"])) return batch num_threads = 20 dset = load_dataset("sbu_captions") dset = dset.map(fetch_images, batched=True, batch_size=100, fn_kwargs={"num_threads": num_threads}) ``` ### Supported Tasks and Leaderboards - `image-to-text`: This dataset can be used to train a model for Image Captioning where the goal is to predict a caption given the image. ### Languages All captions are in English. ## Dataset Structure ### Data Instances Each instance in SBU Captioned Photo Dataset represents a single image with a caption and a user_id: ``` { 'img_url': 'http://static.flickr.com/2723/4385058960_b0f291553e.jpg', 'user_id': '47889917@N08', 'caption': 'A wooden chair in the living room' } ``` ### Data Fields - `image_url`: Static URL for downloading the image associated with the post. - `caption`: Textual description of the image. - `user_id`: Author of caption. ### Data Splits All the data is contained in training split. The training set has 1M instances. ## Dataset Creation ### Curation Rationale From the paper: > One contribution is our technique for the automatic collection of this new dataset – performing a huge number of Flickr queries and then filtering the noisy results down to 1 million images with associated visually relevant captions. Such a collection allows us to approach the extremely challenging problem of description generation using relatively simple non-parametric methods and produces surprisingly effective results. ### Source Data The source images come from Flickr. #### Initial Data Collection and Normalization One key contribution of our paper is a novel web-scale database of photographs with associated descriptive text. To enable effective captioning of novel images, this database must be good in two ways: 1) It must be large so that image based matches to a query are reasonably similar, 2) The captions associated with the data base photographs must be visually relevant so that transferring captions between pictures is useful. To achieve the first requirement we query Flickr using a huge number of pairs of query terms (objects, attributes, actions, stuff, and scenes). This produces a very large, but noisy initial set of photographs with associated text. #### Who are the source language producers? The Flickr users. ### Annotations #### Annotation process Text descriptions associated with the images are inherited as annotations/captions. #### Who are the annotators? The Flickr users. ### Personal and Sensitive Information ## Considerations for Using the Data ### Social Impact of Dataset ### Discussion of Biases ### Other Known Limitations ## Additional Information ### Dataset Curators Vicente Ordonez, Girish Kulkarni and Tamara L. Berg. ### Licensing Information Not specified. ### Citation Information ```bibtex @inproceedings{NIPS2011_5dd9db5e, author = {Ordonez, Vicente and Kulkarni, Girish and Berg, Tamara}, booktitle = {Advances in Neural Information Processing Systems}, editor = {J. Shawe-Taylor and R. Zemel and P. Bartlett and F. Pereira and K.Q. Weinberger}, pages = {}, publisher = {Curran Associates, Inc.}, title = {Im2Text: Describing Images Using 1 Million Captioned Photographs}, url = {https://proceedings.neurips.cc/paper/2011/file/5dd9db5e033da9c6fb5ba83c7a7ebea9-Paper.pdf}, volume = {24}, year = {2011} } ``` ### Contributions Thanks to [@thomasw21](https://github.com/thomasw21) for adding this dataset
[ -0.6098219156265259, -0.42608243227005005, -0.043158262968063354, 0.05996987223625183, -0.6128119230270386, -0.13054993748664856, -0.08381106704473495, -0.4462847411632538, 0.06422898173332214, 0.5302252769470215, -0.6977275013923645, -0.3145379424095154, -0.5349023342132568, 0.322173535823822, -0.35363656282424927, 1.0321481227874756, 0.1373424530029297, 0.02677040547132492, -0.36068442463874817, -0.26216915249824524, -0.156084805727005, 0.03149336948990822, -0.7417775988578796, 0.007769513875246048, 0.27514514327049255, 0.2914833426475525, 0.7049918174743652, 0.7740697264671326, 0.8443612456321716, 0.27457770705223083, 0.16940802335739136, 0.22934825718402863, -0.39625054597854614, -0.13753873109817505, -0.19339005649089813, -0.40411439538002014, 0.034617453813552856, 0.06018279492855072, 0.8667250871658325, 0.4356037974357605, 0.28513142466545105, 0.4213261902332306, -0.07335023581981659, 0.9566231966018677, -0.4462939500808716, 0.6159201860427856, -0.531815767288208, 0.2713399827480316, -0.2831595540046692, -0.3737321197986603, -0.3245142102241516, -0.28707873821258545, -0.03729139640927315, -0.5266345739364624, 0.42311403155326843, 0.13716571033000946, 1.3271669149398804, 0.31099286675453186, -0.07175781577825546, 0.051740895956754684, -0.4318028390407562, 0.7655804753303528, -0.6283969879150391, -0.17500624060630798, 0.41466861963272095, 0.3975922465324402, -0.008429957553744316, -0.5680689811706543, -0.7029555439949036, 0.11761469393968582, -0.3550606966018677, 0.2952031195163727, -0.03210935369133949, -0.26154783368110657, 0.49495643377304077, 0.5257229208946228, -0.371618390083313, -0.12469752877950668, -0.7071189880371094, -0.09726180136203766, 0.7176100611686707, 0.17568251490592957, 0.15814484655857086, -0.5288147926330566, -0.3460358679294586, -0.17008782923221588, -0.3476603627204895, 0.280371755361557, 0.282042920589447, 0.350891649723053, -0.38920971751213074, 0.5758525729179382, -0.2494644671678543, 0.7679961323738098, 0.019185714423656464, -0.05835660174489021, 0.40809181332588196, -0.4427408277988434, -0.12791486084461212, -0.47711512446403503, 1.0778089761734009, 0.9109047651290894, 0.17687763273715973, 0.10637637227773666, -0.018449632450938225, -0.1913553923368454, -0.14851854741573334, -0.9465949535369873, -0.2585539221763611, 0.31146517395973206, -0.5387045741081238, -0.5348264575004578, 0.5034158825874329, -1.0738248825073242, -0.29330432415008545, -0.19701936841011047, 0.30812937021255493, -0.22258293628692627, -0.12760388851165771, -0.3137027621269226, -0.29147207736968994, 0.6101546883583069, 0.23304177820682526, -0.6241456270217896, 0.34757909178733826, 0.2651790678501129, 0.9307987093925476, -0.12799543142318726, -0.48455697298049927, -0.40570494532585144, 0.09444647282361984, -0.22561053931713104, 0.9513442516326904, -0.1285199224948883, -0.07109707593917847, -0.027608171105384827, 0.49105527997016907, -0.08984600007534027, -0.4571307897567749, 0.35366201400756836, -0.5209581851959229, 0.30998337268829346, -0.2828458845615387, -0.4342488646507263, -0.1474161595106125, 0.0658923089504242, -0.8711555600166321, 0.8305951952934265, 0.0956273004412651, -0.9966747760772705, 0.3994129002094269, -0.8303400278091431, -0.48753103613853455, 0.20890970528125763, -0.3241675794124603, -0.6434192061424255, -0.21616478264331818, 0.39971742033958435, 0.825958251953125, -0.31733813881874084, 0.24043028056621552, -0.05582853779196739, -0.4009014964103699, 0.42630892992019653, -0.004510116763412952, 0.9212139248847961, 0.22512610256671906, -0.22584407031536102, 0.01777147501707077, -0.4537988305091858, -0.09560006111860275, 0.47206175327301025, -0.125701904296875, 0.1541563868522644, -0.18011410534381866, 0.12082039564847946, 0.14852820336818695, 0.20407558977603912, -0.41982367634773254, 0.021183999255299568, -0.045774973928928375, 0.510991632938385, 0.8060935139656067, 0.15208576619625092, 0.5013850331306458, -0.5290012359619141, 0.44598388671875, 0.215628519654274, 0.5149272084236145, -0.5959702730178833, -0.4666098952293396, -0.5058649778366089, -0.32430943846702576, 0.07970121502876282, 0.3831285238265991, -0.8494755029678345, 0.45415425300598145, -0.45964404940605164, -0.4824841022491455, -0.3479575514793396, 0.03895429149270058, 0.39443543553352356, 0.6739510297775269, 0.40169528126716614, -0.4067330062389374, -0.333662211894989, -1.0667911767959595, 0.21856951713562012, 0.04264766722917557, 0.13173596560955048, 0.8204891085624695, 0.6745661497116089, 0.04616642743349075, 0.9305787086486816, -0.7606726288795471, -0.5336889028549194, -0.17834681272506714, -0.06732379645109177, 0.43978312611579895, 0.5733230113983154, 0.6604042649269104, -1.1062568426132202, -0.6935283541679382, -0.24471531808376312, -0.9218121767044067, 0.0598255880177021, -0.2958964407444, -0.1545800119638443, 0.6090107560157776, 0.3135663866996765, -0.6531232595443726, 0.3340834677219391, 0.2207430601119995, -0.14776311814785004, 0.8244050145149231, -0.032112233340740204, 0.4438258111476898, -1.0000568628311157, 0.15608449280261993, 0.3019118010997772, -0.053264960646629333, -0.10925673693418503, 0.1304512470960617, 0.041859835386276245, -0.1801767796278, -0.3675277829170227, 0.5212293267250061, -0.637862503528595, -0.15413661301136017, -0.09045442193746567, -0.11650475859642029, 0.024445008486509323, 0.4987775981426239, -0.005112038925290108, 0.6497435569763184, 1.0977543592453003, -0.5266549587249756, 0.576044499874115, 0.3303632140159607, -0.3111403286457062, 0.6423190236091614, -0.5841578245162964, -0.1753873974084854, -0.4269444942474365, 0.3728295564651489, -1.1034810543060303, -0.5920306444168091, 0.3634946048259735, -0.5578277111053467, 0.3861873149871826, -0.314804345369339, -0.6229511499404907, -0.7885584235191345, -0.592804491519928, 0.059237729758024216, 0.4039974510669708, -0.5500858426094055, 0.38016277551651, 0.35697442293167114, 0.02073027566075325, -0.6750521063804626, -0.8505347371101379, 0.1617921143770218, -0.07706563919782639, -0.5318704843521118, 0.39485782384872437, -0.0557430237531662, 0.11472110450267792, 0.3162476122379303, 0.13883523643016815, -0.23815111815929413, -0.37062081694602966, 0.46461427211761475, 0.5554701089859009, 0.03765984624624252, -0.023305511102080345, -0.0835132822394371, -0.02284378558397293, -0.033295806497335434, -0.02139325998723507, 0.455880731344223, -0.36793532967567444, -0.03546736761927605, -0.8201190829277039, 0.24455977976322174, 0.5078375935554504, -0.06000688672065735, 0.808207631111145, 0.7797388434410095, -0.35186928510665894, 0.02295650914311409, -0.40971601009368896, -0.275750994682312, -0.45628201961517334, 0.2641330063343048, -0.23316416144371033, -0.5471387505531311, 0.7075143456459045, 0.2722117304801941, 0.1730206459760666, 0.5149748921394348, 0.13624511659145355, -0.4397561550140381, 0.43936556577682495, 0.33461397886276245, -0.21776537597179413, 0.6380494832992554, -0.8299710750579834, -0.11617232114076614, -0.7542353272438049, -0.21093256771564484, -0.3143760561943054, -0.3328494429588318, -0.5942627787590027, -0.5400630235671997, 0.0007425141520798206, -0.13219189643859863, -0.20324231684207916, 0.43946197628974915, -0.7504419684410095, 0.6444282531738281, 0.5624756813049316, 0.3376447856426239, 0.06646199524402618, 0.2648451030254364, 0.20186688005924225, -0.12613996863365173, -0.4600978493690491, -0.3555721640586853, 1.0570895671844482, -0.07902731001377106, 0.6633702516555786, -0.1843041330575943, 0.5215587019920349, 0.3306449055671692, 0.13570040464401245, -0.6116607189178467, 0.9461371302604675, -0.3224308490753174, -0.6817352771759033, -0.37880340218544006, -0.47479477524757385, -0.994562566280365, 0.10786257684230804, -0.18284614384174347, -0.5542370676994324, 0.07786186784505844, 0.16026991605758667, -0.3114059269428253, 0.38310378789901733, -0.6076664328575134, 0.684266984462738, -0.13665272295475006, -0.6633325219154358, 0.06003519147634506, -1.076719880104065, 0.2794770896434784, 0.09671243280172348, 0.2609890401363373, -0.04625946655869484, -0.044068191200494766, 0.7875572443008423, -0.4266889691352844, 0.836323618888855, -0.4864007532596588, 0.5109215974807739, 0.43114665150642395, -0.43299123644828796, 0.2836414575576782, -0.10288847237825394, -0.05538422241806984, 0.19090060889720917, -0.04010891914367676, -0.44534239172935486, -0.4409382939338684, 0.644744873046875, -0.7856668829917908, -0.29712602496147156, -0.431278795003891, -0.5247588157653809, 0.13043734431266785, 0.29737669229507446, 0.5179923176765442, 0.4382905960083008, 0.20054379105567932, 0.31844285130500793, 0.507603645324707, -0.3645886182785034, 0.7058662176132202, 0.18358837068080902, -0.18644429743289948, -0.6446518301963806, 0.8394063115119934, 0.4104684591293335, 0.1250869333744049, 0.4436120390892029, 0.22783416509628296, -0.39901334047317505, -0.43921130895614624, -0.4869078993797302, 0.3818250298500061, -0.7446595430374146, -0.5565887689590454, -0.5658468008041382, -0.34116753935813904, -0.5356563925743103, -0.235032856464386, -0.2031935453414917, -0.39127227663993835, -0.4749535322189331, -0.10652603954076767, 0.6152470111846924, 0.25037306547164917, -0.16129912436008453, 0.3731338381767273, -0.5407472848892212, 0.4281504154205322, 0.1419084519147873, 0.377656489610672, 0.11064310371875763, -0.6567535996437073, -0.18634136021137238, -0.13396264612674713, -0.3031158447265625, -0.5927719473838806, 0.5276147723197937, 0.4994092881679535, 0.593420147895813, 0.4773123860359192, 0.25193870067596436, 0.7406817674636841, -0.07929765433073044, 0.8544727563858032, 0.20080719888210297, -0.49699828028678894, 0.864385187625885, -0.5503965020179749, 0.25808578729629517, 0.6723954081535339, 0.4813811182975769, -0.15908126533031464, -0.21170927584171295, -0.789259135723114, -1.017868995666504, 0.7794055342674255, 0.051717404276132584, 0.3804311454296112, 0.13112366199493408, 0.48799148201942444, 0.06137985363602638, 0.21976017951965332, -1.104327917098999, -0.4819791615009308, -0.20168527960777283, 0.007979017682373524, 0.1688775271177292, -0.020294485613703728, -0.16902947425842285, -0.5606282949447632, 0.7820428013801575, -0.24151374399662018, 0.52927565574646, 0.25754314661026, -0.13754507899284363, -0.23945218324661255, -0.08018729090690613, 0.2858360707759857, 0.419451504945755, -0.1700214445590973, 0.055849626660346985, -0.2916255593299866, -0.44822749495506287, -0.1997193992137909, 0.36784061789512634, -0.4959965944290161, -0.12149432301521301, 0.23897767066955566, 0.7968574166297913, 0.004122499376535416, -0.513702929019928, 0.6009301543235779, 0.007840311154723167, -0.22874121367931366, -0.4142628610134125, -0.02674926444888115, -0.05411353334784508, 0.16102094948291779, 0.7474671006202698, 0.25374218821525574, 0.026012074202299118, -0.477855920791626, 0.2953621447086334, 0.3519153594970703, -0.20061278343200684, -0.08113257586956024, 0.5205294489860535, -0.06883645057678223, -0.03966108709573746, 0.6812475919723511, -0.37210631370544434, -0.31743124127388, 0.9194650650024414, 0.30753740668296814, 0.5668723583221436, 0.2924138903617859, 0.4529227614402771, 0.8962028622627258, 0.3071903884410858, -0.16550008952617645, 0.3294773995876312, -0.04622016102075577, -0.7853979468345642, -0.11526007950305939, -0.6193802952766418, -0.36543092131614685, 0.23263487219810486, -0.7316849827766418, 0.1995096653699875, -0.5635140538215637, -0.22587084770202637, 0.2510560154914856, 0.14799462258815765, -0.6346127390861511, 0.15662384033203125, -0.025149837136268616, 0.6399106979370117, -0.9461563229560852, 0.4491076171398163, 0.8070785403251648, -0.8507437109947205, -0.7604961395263672, -0.23263494670391083, -0.06083902716636658, -0.5222244262695312, 0.47574174404144287, 0.53582364320755, 0.30942192673683167, 0.08249758929014206, -1.05730402469635, -0.7060682773590088, 1.313970685005188, 0.12892189621925354, -0.16209614276885986, 0.4015669524669647, 0.13883179426193237, 0.4451364278793335, -0.374109148979187, 0.005192873999476433, 0.2013772428035736, 0.6112754344940186, 0.3517293930053711, -0.48698368668556213, 0.2807239890098572, -0.4833255112171173, -0.026825882494449615, -0.07494281232357025, -0.813558042049408, 0.7498688697814941, -0.6082181334495544, -0.3057830333709717, 0.17310142517089844, 0.5226360559463501, 0.23094826936721802, 0.2356591522693634, 0.3268650472164154, 0.6121684312820435, 0.5395286679267883, -0.2638099193572998, 1.131081223487854, 0.05929998308420181, 0.4604351818561554, 1.0765308141708374, 0.03350890055298805, 0.751076340675354, 0.6584376096725464, -0.4938369393348694, 0.20105460286140442, 0.7356697916984558, -0.8365164399147034, 0.6656076908111572, 0.06316378712654114, -0.0752023234963417, 0.09169412404298782, -0.3252520263195038, -0.15570686757564545, 0.21152238547801971, 0.11218489706516266, -0.656126081943512, -0.13776516914367676, 0.13415491580963135, -0.151608407497406, 0.0066246590577065945, -0.3499518632888794, 0.6454243659973145, -0.086768239736557, -0.5858327746391296, 0.36783868074417114, -0.3104950785636902, 0.9415988922119141, -0.23317372798919678, 0.15853777527809143, -0.23828835785388947, 0.04293796047568321, -0.5896704196929932, -1.1535191535949707, 0.4575170874595642, -0.11854124069213867, -0.34011057019233704, -0.11793152987957001, 0.8262545466423035, -0.20822829008102417, -0.6262771487236023, -0.04511315003037453, 0.2222139984369278, 0.48472845554351807, 0.05583788454532623, -0.9447405934333801, 0.007501195650547743, 0.06951241195201874, -0.3570190668106079, 0.2629990875720978, 0.19397208094596863, 0.060928042978048325, 0.6681811809539795, 0.6705207824707031, 0.049871284514665604, 0.15021507441997528, 0.15108615159988403, 0.8242274522781372, -0.6253507733345032, -0.2899617850780487, -0.7170630097389221, 0.5150787830352783, -0.4614875912666321, -0.1508304625749588, 0.5449414849281311, 0.7697845101356506, 0.8253265619277954, -0.4670186936855316, 0.8320567011833191, -0.6106203198432922, 0.15543179214000702, -0.12758928537368774, 0.8241105079650879, -0.5009428858757019, -0.14319831132888794, -0.368259996175766, -0.5785109400749207, -0.5031200051307678, 0.7723509073257446, -0.20486189424991608, -0.0016793581889942288, 0.45213836431503296, 1.0214887857437134, 0.2071307897567749, 0.03574272617697716, 0.13357730209827423, 0.06593628972768784, 0.12084110081195831, 0.24331319332122803, 0.6485385894775391, -0.7859029769897461, 0.6147087812423706, -0.7749090790748596, -0.3118263781070709, -0.009959540329873562, -1.0191253423690796, -0.7006424069404602, -0.8956190347671509, -0.7082012891769409, -0.131217360496521, -0.10430645197629929, 0.5905585885047913, 0.6711769700050354, -0.7406581044197083, -0.17974816262722015, -0.06865482777357101, 0.0656156912446022, -0.3429940938949585, -0.3619331419467926, 0.5242591500282288, -0.11817184835672379, -0.73019939661026, -0.46155595779418945, 0.23593242466449738, 0.2613615393638611, -0.06713085621595383, 0.05072961747646332, -0.2628214359283447, -0.23940320312976837, 0.5111590027809143, 0.4110378921031952, -0.4658265709877014, 0.1577099710702896, -0.046680230647325516, -0.1672762930393219, 0.2769230604171753, 0.22397343814373016, -0.41545823216438293, 0.1986568421125412, 0.4366551339626312, 0.3835242986679077, 0.615755558013916, 0.009427234530448914, -0.1298278272151947, -0.5804595947265625, 0.15132825076580048, 0.03213395178318024, 0.4687931537628174, 0.5868602395057678, -0.54728102684021, 0.8016945123672485, 0.5374707579612732, -0.5051958560943604, -0.843083918094635, -0.21241909265518188, -1.5178751945495605, -0.21246132254600525, 1.0583412647247314, -0.29805245995521545, -0.3826555609703064, 0.17557263374328613, -0.08162947744131088, 0.16566504538059235, -0.5299320816993713, 0.7847073674201965, 0.5753933191299438, -0.19623525440692902, -0.6640087366104126, -0.4257877767086029, 0.18254372477531433, -0.09050223231315613, -1.0262058973312378, -0.01106957532465458, 0.7526856660842896, 0.3437258303165436, 0.3013976514339447, 0.7674214243888855, -0.46557798981666565, 0.2961551249027252, -0.13303835690021515, 0.11092334240674973, -0.2739212214946747, -0.07422175258398056, -0.1222010999917984, 0.0703706443309784, -0.3343506157398224, -0.40741977095603943 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
togethercomputer/llama-instruct
togethercomputer
2023-08-18T05:04:06Z
230
20
null
[ "language:en", "license:llama2", "arxiv:2304.12244", "region:us" ]
2023-08-18T05:04:06Z
2023-08-03T04:52:19.000Z
2023-08-03T04:52:19
--- license: llama2 language: - en --- # llama-instruct This dataset was used to finetune [Llama-2-7B-32K-Instruct](https://huggingface.co/togethercomputer/Llama-2-7B-32K-Instruct). We follow the distillation paradigm that is used by [Alpaca](https://crfm.stanford.edu/2023/03/13/alpaca.html), [Vicuna](https://lmsys.org/blog/2023-03-30-vicuna/), [WizardLM](https://arxiv.org/abs/2304.12244), [Orca](https://www.microsoft.com/en-us/research/publication/orca-progressive-learning-from-complex-explanation-traces-of-gpt-4/) — producing instructions by querying a powerful LLM, which in our case, is the [Llama-2-70B-Chat](https://huggingface.co/meta-llama/Llama-2-7b-chat-hf) model released by [Meta](https://ai.meta.com/llama/). To build [Llama-2-7B-32K-Instruct](https://huggingface.co/togethercomputer/Llama-2-7B-32K-Instruct), we collect instructions from 19K human inputs extracted from [ShareGPT-90K](https://huggingface.co/datasets/philschmid/sharegpt-raw) (only using human inputs, not ChatGPT outputs). The actual script handles multi-turn conversations and also supports restarting and caching via a SQLite3 database. You can find the full script [here](https://github.com/togethercomputer/Llama-2-7B-32K-Instruct/blob/main/scripts/distill.py), with merely 122 lines! The output of this step is a jsonl file, each line corresponding to one conversation: ``` {"text": "[INST] ... instruction ... [/INST] ... answer ... [INST] ... instruction ... [/INST] ..."} {"text": "[INST] ... instruction ... [/INST] ... answer ... [INST] ... instruction ... [/INST] ..."} {"text": "[INST] ... instruction ... [/INST] ... answer ... [INST] ... instruction ... [/INST] ..."} ``` For more details, please refer to the [Github repo](https://github.com/togethercomputer/Llama-2-7B-32K-Instruct). ## Languages The language of the data is entirely English.
[ -0.35343292355537415, -0.9967854619026184, 0.5237846970558167, 0.5230223536491394, -0.34236711263656616, 0.16707804799079895, -0.21509717404842377, -0.43740880489349365, 0.19388602674007416, 0.4789031744003296, -0.6747877597808838, -0.6497991681098938, -0.5900715589523315, 0.0640910416841507, -0.3767606317996979, 1.3591362237930298, 0.08706818521022797, -0.26613518595695496, -0.006718768738210201, -0.04025057703256607, -0.5194380283355713, -0.39266690611839294, -0.6204854249954224, -0.5333232879638672, 0.3274281620979309, 0.42603129148483276, 0.5644801259040833, 0.5940902829170227, 0.24667032063007355, 0.4120761752128601, -0.13372927904129028, 0.36730170249938965, -0.7390432357788086, 0.09562136232852936, 0.24029342830181122, -0.4988503158092499, -0.35790571570396423, -0.08367244154214859, 0.20417281985282898, 0.591878354549408, -0.34133097529411316, 0.457886666059494, 0.18089507520198822, 0.7551761865615845, -0.3186939060688019, 0.4705672860145569, -0.7385651469230652, -0.23476408421993256, -0.20937614142894745, -0.1718662977218628, -0.23930172622203827, -0.19694262742996216, 0.2394060492515564, -0.7112462520599365, 0.08563988655805588, -0.07092498987913132, 0.8727185130119324, 0.4055800139904022, -0.27992165088653564, -0.6382004022598267, -0.4845540523529053, 0.7312150597572327, -0.9055221676826477, -0.002418033080175519, 0.5605835914611816, 0.24344952404499054, -0.6149390339851379, -0.9076610207557678, -0.7977152466773987, 0.00024369095626752824, -0.21120098233222961, -0.006417607422918081, -0.25456133484840393, -0.032938048243522644, 0.19673535227775574, 0.3001002371311188, -0.5558434128761292, 0.07779549062252045, -0.4961099326610565, -0.10089331120252609, 0.7469545602798462, 0.2838056683540344, -0.010525363497436047, -0.0070500862784683704, -0.14208769798278809, -0.21146690845489502, -0.5588061809539795, 0.0860978215932846, 0.30374667048454285, 0.25709134340286255, -0.5452356338500977, 0.6904240250587463, -0.43033331632614136, 0.5847088098526001, 0.3568253815174103, -0.5487908124923706, 0.3143187165260315, -0.5168766379356384, -0.13423053920269012, 0.06975927948951721, 1.2458899021148682, 0.5912185311317444, 0.08203630149364471, 0.10628961771726608, 0.22310222685337067, -0.051950979977846146, -0.004275528714060783, -0.9756816029548645, -0.521155834197998, 0.4007074534893036, -0.44065186381340027, -0.28323593735694885, -0.21463444828987122, -0.7825571894645691, -0.38220810890197754, -0.24280183017253876, 0.1928822249174118, -0.3290700614452362, -0.1679912954568863, 0.19239303469657898, 0.032267507165670395, 0.24314850568771362, 0.25772449374198914, -0.9007242918014526, 0.1378772258758545, 0.7582188844680786, 0.908170759677887, 0.10557109117507935, -0.255328893661499, -0.1903839111328125, -0.16268973052501678, -0.19345954060554504, 0.6933931112289429, -0.3306882977485657, -0.2663876712322235, -0.3564099371433258, 0.0206287931650877, 0.22972063720226288, -0.46789664030075073, 0.21801364421844482, -0.3707736134529114, 0.3177736699581146, -0.15917225182056427, -0.3752707839012146, -0.37796542048454285, 0.21041908860206604, -0.5358738303184509, 1.1682063341140747, -0.1456826627254486, -0.8020265698432922, 0.12385847419500351, -0.7791675925254822, -0.48108240962028503, -0.25568458437919617, -0.19090081751346588, -0.532290518283844, -0.3449004590511322, 0.3061274588108063, 0.6034305691719055, -0.5605211853981018, 0.40322133898735046, -0.37665802240371704, -0.3855206072330475, 0.3638168275356293, -0.5457699298858643, 1.0139862298965454, 0.18596631288528442, -0.45002803206443787, -0.07582902163267136, -0.9589125514030457, -0.19058214128017426, 0.13538816571235657, -0.643208920955658, -0.13533498346805573, 0.14371910691261292, -0.3846139907836914, -0.004492984618991613, 0.481111615896225, -0.5096753239631653, 0.35225051641464233, -0.18531258404254913, 0.6562354564666748, 0.6723579168319702, -0.039445389062166214, 0.3179537355899811, -0.22600236535072327, 0.18660864233970642, -0.009106780402362347, 0.2282809168100357, -0.22594082355499268, -0.7115508317947388, -0.958965003490448, -0.3220868706703186, -0.15272024273872375, 0.7858574390411377, -0.6767005324363708, 0.4544130861759186, -0.18822351098060608, -0.6975501179695129, -0.7236279249191284, 0.23423141241073608, 0.318684846162796, 0.6520090699195862, 0.45262667536735535, -0.04913018271327019, -0.8532410264015198, -0.8652763962745667, 0.23696443438529968, -0.4602065980434418, -0.1372958868741989, 0.05273384228348732, 0.3507107198238373, -0.2763912081718445, 0.8093816637992859, -0.5626161694526672, -0.07376956939697266, -0.14152199029922485, 0.06086931377649307, 0.7916944026947021, 0.30609697103500366, 0.3537924885749817, -0.4926387369632721, -0.6099411845207214, 0.07304798811674118, -0.8402456045150757, -0.21500368416309357, -0.27043718099594116, -0.3999618887901306, -0.02283097431063652, 0.4108944237232208, -0.7490798830986023, 0.332810640335083, 0.5460659861564636, -0.2636833190917969, 0.44022536277770996, 0.00015083650941960514, 0.17993932962417603, -1.3375835418701172, -0.09421849995851517, -0.12815816700458527, -0.0502164401113987, -0.6036426424980164, -0.34345635771751404, -0.22711268067359924, 0.3712964951992035, -0.3134210705757141, 0.10979744046926498, -0.5270899534225464, 0.126800999045372, -0.17277757823467255, -0.014383954927325249, 0.09251969307661057, 0.7281297445297241, -0.21122480928897858, 0.794301450252533, 0.5781403183937073, -0.512507438659668, 0.6294650435447693, 0.5100511312484741, -0.08026452362537384, 0.3328852653503418, -0.8474887013435364, 0.4298384487628937, 0.07253782451152802, 0.3806289732456207, -1.1371207237243652, -0.09433355182409286, 0.4332807958126068, -0.45820048451423645, 0.1709270179271698, -0.4379693269729614, -0.5680084824562073, -0.20278717577457428, -0.4597388505935669, 0.11080439388751984, 0.5157345533370972, -0.6359978914260864, 0.46196305751800537, 0.49197492003440857, -0.08906099200248718, -0.8090039491653442, -0.7213350534439087, 0.20239444077014923, -0.5297204852104187, -0.6689889430999756, 0.08039212226867676, -0.07669652998447418, -0.2612317204475403, -0.10534774512052536, 0.017983272671699524, -0.1102784126996994, 0.037060245871543884, 0.5167130827903748, 0.36184799671173096, -0.04714525118470192, -0.08715429157018661, 0.07882264256477356, 0.11797422170639038, 0.11246023327112198, -0.009650607593357563, 0.9128543138504028, -0.3394602835178375, -0.3010052740573883, -0.6539824604988098, 0.40333738923072815, 0.5347981452941895, 0.178715780377388, 0.8256873488426208, 0.6337371468544006, 0.06978702545166016, 0.0010758753633126616, -0.578385591506958, -0.11237763613462448, -0.5528712868690491, 0.33592382073402405, -0.41051506996154785, -0.905101478099823, 0.7208207249641418, 0.028127111494541168, 0.42858365178108215, 0.4555700123310089, 0.7097227573394775, -0.31719619035720825, 0.7943962812423706, 0.4397835433483124, -0.21383662521839142, 0.41447460651397705, -0.4531285762786865, 0.12186083942651749, -0.6252467632293701, -0.5149775147438049, -0.4256475269794464, -0.28151804208755493, -0.8530619740486145, -0.42458629608154297, 0.23685844242572784, 0.24955298006534576, -0.3138763904571533, 0.6064630746841431, -0.6530532240867615, 0.525361955165863, 0.5185942649841309, 0.120888352394104, 0.3307761251926422, 0.007830063812434673, 0.2496868073940277, 0.23559100925922394, -0.5649212598800659, -0.801253616809845, 1.446715235710144, 0.23866191506385803, 0.9164047837257385, 0.12628203630447388, 0.8970922827720642, 0.14732128381729126, 0.267066091299057, -0.72544926404953, 0.6983723640441895, -0.07859652489423752, -0.3869289755821228, -0.1541074514389038, -0.34062525629997253, -1.285332441329956, 0.19272646307945251, 0.028068555518984795, -0.6824097037315369, -0.1265026330947876, 0.1192283108830452, -0.2260480672121048, 0.14923028647899628, -0.9245573878288269, 0.6265028715133667, -0.1508418619632721, -0.09501685202121735, -0.18844790756702423, -0.8295121192932129, 0.5921904444694519, -0.1754559427499771, 0.1464761197566986, -0.2537741959095001, 0.15955957770347595, 0.8647271394729614, -0.5890814065933228, 1.1728575229644775, 0.02385418489575386, -0.2128840535879135, 0.6597126722335815, -0.04780488833785057, 0.40320733189582825, 0.2743690609931946, -0.015742788091301918, 0.4589805603027344, 0.23840975761413574, -0.1583046168088913, -0.4497711956501007, 0.5782678127288818, -0.9925011992454529, -0.4980739951133728, -0.3115081489086151, -0.4850744307041168, 0.09284088760614395, 0.03547545522451401, 0.12831398844718933, 0.30192145705223083, 0.008673416450619698, 0.2786332666873932, 0.3981637954711914, -0.3106295168399811, 0.48398923873901367, 0.603840708732605, -0.1556324064731598, -0.3822493255138397, 0.6108185648918152, -0.049244340509176254, 0.1932370811700821, 0.418085515499115, 0.14554528892040253, -0.43803152441978455, -0.5240125060081482, -0.49866700172424316, 0.33520033955574036, -0.635016143321991, -0.36297327280044556, -0.5923769474029541, -0.2095559537410736, -0.32649728655815125, 0.18389205634593964, -0.4251182973384857, -0.35778579115867615, -0.7008861899375916, -0.03333928808569908, 0.8852205276489258, 0.7067317962646484, -0.10879144817590714, 0.4260261356830597, -0.841057300567627, 0.42555370926856995, 0.3611822724342346, 0.07290340214967728, -0.04542756453156471, -0.5425121188163757, -0.15756970643997192, 0.41875916719436646, -0.4803239107131958, -0.8084151744842529, 0.34146276116371155, 0.4132707715034485, 0.6060645580291748, 0.30960923433303833, 0.21983148157596588, 1.0550708770751953, -0.5946524143218994, 0.8603054881095886, 0.21036796271800995, -0.7823415994644165, 0.604840099811554, -0.07364235073328018, 0.08034272491931915, 0.580923855304718, 0.3795488178730011, -0.5556782484054565, -0.37160158157348633, -0.5209848880767822, -0.9974929690361023, 0.7382593154907227, 0.3761487901210785, 0.11054766923189163, -0.09947019815444946, 0.20405776798725128, 0.42647436261177063, 0.16239899396896362, -0.5017389059066772, -0.4812018573284149, -0.2514688968658447, -0.34986773133277893, 0.08771759271621704, -0.1576463133096695, -0.38452574610710144, -0.2100059688091278, 0.5749565362930298, -0.145183727145195, 0.34657901525497437, 0.04289724677801132, -0.06340960413217545, 0.21741604804992676, 0.0862526223063469, 0.47872254252433777, 0.5337038040161133, -0.18443894386291504, 0.1896112710237503, 0.25759434700012207, -0.6434404253959656, 0.0008346062968485057, 0.12039139121770859, 0.18442369997501373, -0.09622692316770554, 0.5971381664276123, 0.9530869126319885, -0.308695912361145, -0.6731618046760559, 0.19060470163822174, -0.2747398316860199, -0.16495226323604584, -0.358530193567276, 0.058252181857824326, 0.34046465158462524, 0.6738671660423279, 0.46478089690208435, -0.2106289267539978, 0.16424928605556488, -0.5344648361206055, 0.1380719244480133, 0.25132542848587036, 0.2720191776752472, -0.4728172719478607, 0.3949945867061615, 0.17597059905529022, -0.28340643644332886, 0.7174883484840393, -0.3267242908477783, -0.415595680475235, 0.5506775379180908, 0.3804294764995575, 0.6484050154685974, 0.26131534576416016, 0.11280066519975662, 0.3860354423522949, 0.1685398519039154, -0.06252820789813995, 0.44002974033355713, -0.3281872272491455, -0.7412546873092651, -0.7298041582107544, -0.7247518301010132, -0.467231810092926, 0.3809375762939453, -0.49537864327430725, 0.07832439243793488, -0.3821202516555786, -0.14486296474933624, 0.10902698338031769, 0.057701848447322845, -0.7647557854652405, -0.2509908676147461, -0.036896005272865295, 0.5036914348602295, -0.82951819896698, 0.8635625243186951, 0.4582958519458771, -0.2580772936344147, -1.054959774017334, -0.3063719570636749, 0.12100614607334137, -1.0307176113128662, 0.47446155548095703, 0.21058881282806396, -0.07468149811029434, -0.23031972348690033, -0.8660011291503906, -0.8151343464851379, 1.3256876468658447, 0.3208629786968231, -0.7899442911148071, 0.30640262365341187, 0.2721672058105469, 0.7140424847602844, -0.2393665313720703, 0.2599811553955078, 0.8958383798599243, 0.28191354870796204, 0.22360768914222717, -1.3596575260162354, 0.16062870621681213, -0.5181136131286621, -0.27490824460983276, 0.043858032673597336, -0.7288809418678284, 0.7886468172073364, -0.2610938251018524, -0.14444535970687866, -0.06070857122540474, 0.7232417464256287, 0.5476895570755005, 0.31429463624954224, 0.530174732208252, 0.5760482549667358, 0.7110389471054077, -0.11508143693208694, 0.7066763639450073, -0.16577495634555817, 0.3457682132720947, 1.2773470878601074, -0.07665187120437622, 0.7643094658851624, 0.6598713397979736, -0.5964645147323608, 0.5821508765220642, 0.866893470287323, 0.08453968167304993, 0.6529188752174377, 0.2208031564950943, -0.18803970515727997, 0.0848284587264061, 0.09872310608625412, -0.41141363978385925, 0.6561911106109619, 0.5259522795677185, -0.07055649906396866, -0.13710585236549377, -0.3539276719093323, 0.37325578927993774, -0.3119952976703644, 0.18160000443458557, 1.0247594118118286, 0.02968641370534897, -0.6051380038261414, 1.0698109865188599, -0.36760348081588745, 1.035654067993164, -0.5150203108787537, -0.20637336373329163, -0.4587745666503906, 0.13537479937076569, -0.2674556076526642, -1.1109306812286377, 0.28628093004226685, 0.19976229965686798, -0.05399748682975769, -0.019193235784769058, 0.3742857575416565, -0.637205958366394, -0.3183448016643524, 0.2016851156949997, 0.33947229385375977, 0.6752527952194214, 0.07352983206510544, -0.74913090467453, 0.29290640354156494, 0.3376121520996094, -0.37275430560112, 0.2603311538696289, 0.6738899350166321, 0.015215995721518993, 0.8547226190567017, 0.9675955772399902, -0.1210416704416275, 0.23236681520938873, 0.05250823125243187, 1.2070308923721313, -0.30082041025161743, -0.2262568175792694, -1.139189600944519, 0.5785601735115051, -0.2285180538892746, -0.35361555218696594, 0.6537396907806396, 0.5192626118659973, 0.7823721170425415, 0.11272058635950089, 0.7003916501998901, -0.47484490275382996, 0.23571008443832397, -0.46777522563934326, 0.5952093005180359, -0.43659186363220215, 0.4574315547943115, -0.12223830074071884, -0.8361858129501343, -0.04180295392870903, 0.7106043100357056, 0.05591060593724251, -0.30540430545806885, 0.4333318769931793, 1.0473241806030273, 0.09796056896448135, 0.002063267631456256, -0.14107289910316467, 0.1826707422733307, 0.6355220675468445, 0.7243637442588806, 0.8453341126441956, -0.39830130338668823, 0.9274316430091858, -0.4848979413509369, -0.24334180355072021, -0.13436681032180786, -0.9938583970069885, -1.0208896398544312, -0.6579291820526123, -0.2741686701774597, -0.4943372905254364, -0.1391294002532959, 0.9457241892814636, 0.7048713564872742, -0.8180733323097229, -0.4050305187702179, -0.014145946130156517, -0.016974709928035736, -0.11642482131719589, -0.14145252108573914, 0.4666547179222107, -0.11568041145801544, -0.6652601957321167, 0.5941678285598755, -0.008505551144480705, 0.09071215242147446, -0.11161349713802338, -0.12154955416917801, -0.3270474076271057, -0.20363618433475494, 0.6730589866638184, 0.3086743652820587, -0.5915080308914185, -0.19307473301887512, -0.05984826758503914, -0.03545379638671875, 0.13592331111431122, 0.3208751678466797, -0.5448838472366333, 0.22058749198913574, 0.5408023595809937, 0.4799945056438446, 0.8664101362228394, -0.06388624757528305, 0.30719050765037537, -0.726161003112793, 0.2751907706260681, -0.06523097306489944, 0.3030417561531067, 0.45292946696281433, -0.3227105736732483, 0.6110665798187256, 0.062016554176807404, -0.6775875091552734, -0.7379677295684814, -0.031141547486186028, -1.2501473426818848, -0.0633847787976265, 1.2116963863372803, -0.2646002173423767, -0.18458153307437897, -0.17763887345790863, -0.6280533671379089, 0.5619127750396729, -0.7734030485153198, 1.0448559522628784, 0.6140503883361816, -0.34929245710372925, -0.0452905111014843, -0.3275924623012543, 0.2560478150844574, 0.01119682565331459, -0.9153439998626709, 0.14485733211040497, 0.40823808312416077, 0.5179343819618225, 0.3089959919452667, 0.8053569793701172, 0.10693693161010742, -0.2683446407318115, 0.07796188443899155, 0.1555039882659912, -0.22577255964279175, -0.09370486438274384, 0.017475675791502, -0.05526295304298401, -0.1515522450208664, -0.5544986724853516 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
findzebra/corpus.latest.vod-retriever-medical-v1.1
findzebra
2023-09-05T05:17:16Z
230
0
null
[ "region:us" ]
2023-09-05T05:17:16Z
2023-09-05T04:42:19.000Z
2023-09-05T04:42:19
Entry not found
[ -0.3227645754814148, -0.22568479180335999, 0.8622263669967651, 0.43461522459983826, -0.52829909324646, 0.7012971639633179, 0.7915719747543335, 0.07618614286184311, 0.774603009223938, 0.2563217282295227, -0.7852813005447388, -0.22573819756507874, -0.9104475975036621, 0.5715674161911011, -0.3992327153682709, 0.5791246294975281, -0.14494499564170837, -0.10751135647296906, 0.28233814239501953, -0.2768957316875458, -0.5409227013587952, -0.3685525059700012, -1.1902779340744019, 0.061491698026657104, 0.5316582918167114, 0.743514358997345, 0.7584061622619629, 0.3652168810367584, 0.643257737159729, 0.39322906732559204, -0.231389120221138, 0.48270541429519653, -0.04171793907880783, 0.0026038705836981535, -0.3524438440799713, -0.5516899824142456, -0.28596577048301697, 0.07584768533706665, 1.096130132675171, 0.9666873812675476, -0.28466421365737915, 0.05330856889486313, -0.30636167526245117, 0.3308892846107483, -0.4973427355289459, 0.3054097294807434, -0.022506216540932655, 0.16318757832050323, -0.704151451587677, -0.5535351634025574, 0.012795033864676952, -0.7361212968826294, 0.17926514148712158, -0.6900812387466431, 0.8269097208976746, 0.18583209812641144, 1.1533749103546143, 0.14819422364234924, -0.4624859392642975, -0.8161761164665222, -0.6538985371589661, 0.5711163282394409, -0.32703715562820435, 0.3968023657798767, 0.7028226256370544, -0.048573337495326996, -0.9820331335067749, -0.6745738983154297, -0.46466246247291565, 0.2923974096775055, 0.3540281355381012, -0.3411684036254883, -0.17522093653678894, -0.30589917302131653, 0.15791958570480347, 0.1281142681837082, -0.48419976234436035, -0.5543919205665588, -0.547515869140625, -0.39602571725845337, 0.6206656694412231, 0.34829503297805786, 0.24291737377643585, -0.18884189426898956, -0.3228582441806793, 0.0880165845155716, -0.41608554124832153, 0.3402574062347412, 0.6335517168045044, 0.711402416229248, -0.5811446309089661, 0.5602157711982727, -0.049275897443294525, 0.7439709901809692, 0.11445585638284683, -0.2747812569141388, 0.4146060049533844, -0.14724673330783844, 0.055171847343444824, 0.42263513803482056, 0.3152443468570709, 0.28413069248199463, -0.3273696303367615, 0.20322275161743164, -0.32151490449905396, -0.3049626648426056, -0.2233218252658844, -0.29490745067596436, -0.35921788215637207, 0.5492295026779175, -0.3314018249511719, -0.4285552501678467, 1.1431758403778076, -0.42007699608802795, -0.7302228808403015, 0.33156365156173706, 0.40652117133140564, -0.0994473472237587, -0.37146514654159546, -0.052260853350162506, -0.8458787202835083, -0.00790744461119175, 0.7491178512573242, -0.7198969125747681, 0.33717358112335205, 0.47280627489089966, 0.741721510887146, 0.1965060532093048, -0.14034466445446014, -0.4294945299625397, 0.2971963882446289, -0.8659994006156921, 0.6320174336433411, -0.20135276019573212, -1.0051976442337036, 0.11150483042001724, 0.8971704244613647, -0.3789643347263336, -1.2094870805740356, 1.0605157613754272, -0.6887932419776917, 0.16017864644527435, -0.6767609119415283, -0.14661164581775665, -0.07118469476699829, -0.005095955915749073, -0.6088155508041382, 0.7567099332809448, 0.5872676968574524, -0.49952778220176697, 0.21429462730884552, -0.2602984309196472, -0.3915135860443115, 0.38824939727783203, -0.0793546810746193, -0.21858906745910645, 0.7138336896896362, -0.6647078394889832, -0.2693284749984741, 0.2942773103713989, 0.23689350485801697, -0.357060968875885, -0.793192446231842, 0.08478079736232758, -0.05786222219467163, 1.5507503747940063, -0.03868860378861427, -0.35861143469810486, -0.6793836951255798, -1.1506236791610718, -0.07070811837911606, 0.6886887550354004, -0.9194992184638977, -0.27839499711990356, -0.046410247683525085, -0.26169371604919434, 0.0899493545293808, 0.7390591502189636, -1.119404911994934, 0.28327250480651855, -0.050927065312862396, -0.22794730961322784, 0.8271061182022095, 0.1538720428943634, 0.24758882820606232, 0.14913466572761536, 0.4295872151851654, 0.5277255773544312, 0.11115183681249619, 0.6835882663726807, -0.3472035229206085, -0.9694353938102722, 0.6154633164405823, 0.25266438722610474, 0.8121451139450073, -0.49945372343063354, 0.2685092091560364, 0.2702546715736389, -0.3409683108329773, -0.5682377815246582, -0.310282826423645, 0.09025713056325912, 0.14930608868598938, 0.11142496764659882, -0.5721707344055176, -0.6576128005981445, -0.9689135551452637, -0.13590654730796814, -0.43143755197525024, -0.35715678334236145, 0.2100687474012375, 0.5792907476425171, -1.1975533962249756, 0.4128877520561218, -0.7705622911453247, -0.703874409198761, -0.010655621066689491, -0.1933809369802475, 0.7540653944015503, 0.43240174651145935, 0.5033961534500122, -0.6397145390510559, -0.5661987066268921, -0.22470159828662872, -1.0333740711212158, -0.13280484080314636, 0.24819664657115936, 0.3065737783908844, -0.1342328041791916, -0.2744964361190796, -0.48740261793136597, 0.8100383877754211, 0.14789214730262756, -0.5391897559165955, 0.5220769643783569, -0.3020317554473877, 0.17224839329719543, -0.6369158029556274, -0.0691685602068901, -0.6616761684417725, -0.0009067110950127244, -0.36083078384399414, -0.5737436413764954, 0.14772333204746246, 0.07017548382282257, -0.16065415740013123, 0.2880837619304657, -0.909276008605957, -0.0010854422580450773, -0.744221568107605, 0.37907224893569946, 0.0639476627111435, -0.3145084083080292, -0.017516743391752243, 1.000038743019104, 0.7784457206726074, -0.3848040699958801, 0.7217439413070679, 0.4440040588378906, 0.19036099314689636, 0.7630518674850464, -0.18725158274173737, 0.16478213667869568, -0.5245421528816223, -0.12161099910736084, -0.8887605667114258, -1.0982943773269653, 0.7320572137832642, -0.6114250421524048, 0.36542850732803345, -0.42778605222702026, 0.2589159309864044, -0.6919258832931519, -0.038853395730257034, 0.4808599054813385, -0.05936374515295029, -0.6863952875137329, 0.5232571363449097, 0.4531749188899994, -0.2019244134426117, -0.6609036922454834, -0.5301570296287537, 0.39365914463996887, 0.6154113411903381, -0.16390396654605865, 0.06878498196601868, 0.14941087365150452, -0.5441920757293701, -0.040802545845508575, -0.3869187533855438, -0.4576674997806549, 0.05422405153512955, 0.13053379952907562, -0.005750161595642567, -0.40482011437416077, -0.08680257946252823, -0.35842010378837585, -0.4656125009059906, 0.21876463294029236, 0.30119529366493225, -0.04096344858407974, -0.42599743604660034, -0.36198148131370544, -0.8881808519363403, 0.6719611883163452, 0.5370280146598816, 0.05281474441289902, 0.7555550336837769, 0.16819244623184204, -0.801498293876648, -0.13532206416130066, -0.17607054114341736, 0.2696835994720459, -0.5588056445121765, 0.13849826157093048, -0.013484805822372437, -0.06374907493591309, 0.2629791498184204, 0.25386205315589905, -0.4300558567047119, 0.927625298500061, -0.26152747869491577, -0.3592526614665985, 0.7960182428359985, 0.5974737405776978, 0.4958309531211853, 0.16503198444843292, -0.044541094452142715, 0.9007097482681274, -1.196651816368103, -0.6563171744346619, -0.7409546375274658, -0.15945661067962646, -0.43510857224464417, -0.0321057066321373, 0.6254417300224304, 0.29009905457496643, -0.13333925604820251, 0.47563934326171875, -0.5243490934371948, 0.3556032180786133, 1.0119839906692505, 0.3574867248535156, 0.34357017278671265, -0.7570232152938843, -0.25157779455184937, -0.14024296402931213, -0.9998159408569336, -0.2631372809410095, 0.8871029615402222, 0.2275265008211136, 0.8444608449935913, 0.5992542505264282, 0.6784538626670837, 0.136723130941391, 0.2523833215236664, -0.305902898311615, 0.39202871918678284, 0.43760839104652405, -1.040114164352417, -0.42758411169052124, 0.02141888067126274, -0.9703332185745239, -0.14227578043937683, -0.03495054319500923, -0.42617106437683105, 0.7681738138198853, 0.00016635804786346853, -0.4076710641384125, 0.7732735872268677, -0.4555833339691162, 0.7562878727912903, -0.4473649859428406, -0.026638653129339218, 0.4699098467826843, -0.707064151763916, 0.4677433967590332, 0.12878736853599548, 0.6205845475196838, -0.015571946278214455, -0.04078621417284012, 0.7104931473731995, -0.9129164814949036, 0.25438612699508667, -0.6348398923873901, 0.22421303391456604, 0.24246959388256073, 0.5160625576972961, 0.5969962477684021, 0.4371241629123688, 0.10119915008544922, -0.23920848965644836, 0.04115789383649826, -0.8241121172904968, -0.21050670742988586, 0.6975144147872925, -0.7186897397041321, -0.6864195466041565, -1.2355334758758545, 0.14438661932945251, 0.2734704911708832, 0.3893047273159027, 0.7959297895431519, 0.5714079141616821, 0.12895449995994568, 0.6805254220962524, 0.9888579249382019, -0.06885591894388199, 0.916691780090332, 0.3224475085735321, 0.09175165742635727, -0.2194489687681198, 0.703682541847229, 0.2662784457206726, -0.2470790147781372, -0.11939744651317596, 0.20913469791412354, -0.11069414764642715, -0.5917618870735168, -0.4999074339866638, 0.3701755702495575, -0.6731783747673035, -0.1830393373966217, -0.6243732571601868, -0.6043766736984253, -0.5117589235305786, 0.0692739263176918, -0.7147684097290039, 0.23979082703590393, -0.7753568887710571, -0.10574901103973389, 0.04323358088731766, 0.9792002439498901, -0.5893120765686035, 0.5805228352546692, -1.12185800075531, 0.19345775246620178, -0.07949890196323395, 0.792106032371521, 0.2139579802751541, -0.7344390153884888, -0.39754199981689453, -0.11592598259449005, -0.37299054861068726, -1.3576757907867432, 0.21404962241649628, -0.24541422724723816, 0.2309398353099823, 0.6145407557487488, 0.13977040350437164, 0.5258244276046753, -0.3432632088661194, 0.7029102444648743, -0.057016827166080475, -0.7069293856620789, 0.7934491038322449, -0.5026893615722656, 0.4963533282279968, 0.9766002893447876, 0.5333840250968933, -0.7984007596969604, 0.0357406847178936, -1.041122555732727, -0.600869357585907, 0.38426393270492554, 0.1192895919084549, -0.03601125627756119, -0.665955662727356, -0.054019927978515625, -0.16143806278705597, 0.6043741703033447, -1.0390695333480835, -0.785835862159729, 0.25766894221305847, 0.5277299284934998, 0.08168502151966095, -0.5653401613235474, 0.2088075876235962, -0.5444163084030151, 1.0657776594161987, 0.45109352469444275, 0.32744958996772766, 0.8406059145927429, 0.4649237096309662, -0.38231605291366577, 0.09252502024173737, 0.7662692070007324, 0.6666228771209717, -0.5239795446395874, -0.2908027172088623, -0.0882752314209938, -0.9143400192260742, 0.05927503854036331, 0.1116887554526329, -0.013456095941364765, 0.9082115292549133, 0.579308032989502, 0.253970205783844, 0.4514276385307312, -0.7264610528945923, 0.8859445452690125, -0.1495419293642044, -0.1247284859418869, -1.0677239894866943, 0.19486205279827118, -0.23984935879707336, 0.5006400346755981, 1.0061331987380981, 0.525004506111145, -0.047630541026592255, -0.814338207244873, -0.014736384153366089, 0.6939173936843872, -0.7091119289398193, -0.17449775338172913, 0.9448539614677429, 0.38471025228500366, -1.295304536819458, 1.106776475906372, -0.5381773710250854, -0.5603317618370056, 0.9121302366256714, 0.5229570269584656, 1.1221849918365479, -0.44204193353652954, 0.0008675057324580848, 0.2662239074707031, 0.4137844443321228, 0.5423170328140259, 1.0869632959365845, 0.43141356110572815, -0.7931072115898132, 0.8826581835746765, -0.24776068329811096, -0.40361127257347107, -0.053475700318813324, -0.42859864234924316, 0.16892209649085999, -0.4406189024448395, -0.10712965577840805, -0.3444185256958008, 0.2854307293891907, -0.70720374584198, 0.42807644605636597, -0.08385642617940903, 0.8653066754341125, -0.8553729057312012, 0.47207602858543396, 0.6354700326919556, -0.33373481035232544, -0.8508192300796509, -0.26198476552963257, -0.1144845262169838, -0.6389466524124146, 0.30214792490005493, -0.45541054010391235, 0.044398874044418335, 0.09623479843139648, -0.6491509675979614, -1.1778273582458496, 0.9093631505966187, -0.6396117210388184, -0.2784458100795746, 0.20463958382606506, -0.1151471883058548, 0.28811654448509216, -0.2524648904800415, 0.010661328211426735, 0.4187661111354828, 0.7489396333694458, 0.28446561098098755, -0.7727053761482239, -0.36948859691619873, 0.0015033691888675094, -0.44474759697914124, 0.7582973837852478, -0.6002098917961121, 1.1840776205062866, -0.556353747844696, -0.05965423583984375, 0.4438447952270508, 0.24690861999988556, 0.21076245605945587, 0.6629217267036438, 0.144208163022995, 0.7282259464263916, 1.0701210498809814, -0.4083522856235504, 0.881180465221405, 0.26432785391807556, 0.4743083417415619, 0.7238510251045227, -0.6487718820571899, 0.7513747811317444, 0.3181043267250061, -0.5682927966117859, 0.9228019714355469, 1.290606141090393, -0.15699152648448944, 0.80793696641922, 0.051364265382289886, -1.0815999507904053, 0.32583361864089966, -0.20724761486053467, -0.7530062198638916, 0.31502565741539, 0.19055864214897156, -0.6920987367630005, -0.5770313739776611, -0.2404651641845703, -0.35662829875946045, -0.11552873998880386, -0.763173520565033, 0.6720565557479858, -0.01696927472949028, -0.5103673934936523, 0.18857470154762268, 0.28775009512901306, 0.17368444800376892, -0.5235736966133118, -0.029393965378403664, -0.22823575139045715, 0.2660652697086334, -0.5670853853225708, -0.5234523415565491, 0.5724437236785889, -0.32430148124694824, -0.5343252420425415, 0.181474968791008, 0.7635870575904846, -0.16923785209655762, -0.4515411853790283, 0.3247268795967102, 0.6959530115127563, 0.16658467054367065, 0.42502790689468384, -0.23511283099651337, 0.2448059767484665, -0.08044827729463577, -0.06651593744754791, 0.27714747190475464, 0.3449171781539917, 0.22435645759105682, 0.44501352310180664, 0.432856947183609, -0.018087303265929222, -0.10736559331417084, -0.38282057642936707, 0.41249361634254456, -0.9542784690856934, -0.5713290572166443, -0.630710780620575, 0.2740667760372162, -0.023154327645897865, -1.0836422443389893, 0.41451746225357056, 1.4406688213348389, 1.0359984636306763, -0.4756380617618561, 1.0672271251678467, -0.21818462014198303, 0.9594789743423462, 0.4148314893245697, 0.5420438051223755, -0.6030403971672058, 0.038353081792593, -0.43644052743911743, -1.0769634246826172, -0.3571633994579315, 0.4539390206336975, -0.02289981208741665, -0.3429867625236511, 0.8725717663764954, 0.5887162685394287, -0.3347362279891968, -0.11728022992610931, 0.04848663881421089, -0.029941599816083908, -0.12433874607086182, 0.5145372152328491, 0.764839768409729, -0.9344298243522644, -0.10680411010980606, -0.21577700972557068, -0.6382728815078735, -0.5047284364700317, -0.9632002711296082, -0.12959381937980652, -0.16037842631340027, 0.03534334897994995, -0.5662809014320374, 0.002556905150413513, 1.2083250284194946, 0.5684951543807983, -1.1113994121551514, -0.5303782224655151, 0.33718499541282654, 0.39204245805740356, -0.1874789297580719, -0.24202406406402588, 0.2984571158885956, 0.1538221836090088, -0.5908879041671753, 0.6875662803649902, 0.8089626431465149, 0.20888905227184296, 0.19554781913757324, 0.15893003344535828, -0.8229468464851379, -0.1491343379020691, 0.1744047999382019, 0.9450566172599792, -0.9398531913757324, -0.7114846110343933, -0.03168468177318573, -0.2709487974643707, -0.05765697360038757, 0.17102089524269104, -0.4046342968940735, 0.5180684924125671, 0.34591469168663025, 0.49933499097824097, 0.056160878390073776, -0.05474642664194107, 0.5409556031227112, -0.9069051742553711, 0.09425970166921616, 0.41343608498573303, 0.4154110848903656, -0.4000871181488037, -0.5910195112228394, 0.6713417172431946, 1.0073974132537842, -0.6594864130020142, -0.8743263483047485, -0.19846680760383606, -1.0016000270843506, 0.04189697653055191, 0.6762756109237671, 0.5009528994560242, -0.48065176606178284, -0.4174492359161377, -0.5617400407791138, -0.1254679411649704, -0.13699708878993988, 0.76216059923172, 1.1796802282333374, -0.7432100772857666, 0.07975788414478302, -1.0386393070220947, 0.6594987511634827, -0.2419460564851761, -0.3457580506801605, -0.4864429533481598, 0.3832802176475525, 0.3523699641227722, 0.44048118591308594, 0.6148120164871216, 0.14084689319133759, 0.8338428735733032, 0.31260576844215393, -0.17026856541633606, 0.2698982357978821, -0.4559198319911957, -0.02893332578241825, -0.05796259641647339, 0.3101596236228943, -1.026215672492981 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
rizerphe/glaive-function-calling-v2-zephyr
rizerphe
2023-10-17T16:36:29Z
230
10
null
[ "task_categories:text-generation", "task_categories:conversational", "size_categories:100K<n<1M", "language:en", "license:cc-by-sa-4.0", "region:us" ]
2023-10-17T16:36:29Z
2023-10-17T08:28:47.000Z
2023-10-17T08:28:47
--- license: cc-by-sa-4.0 task_categories: - text-generation - conversational language: - en size_categories: - 100K<n<1M dataset_info: features: - name: text dtype: string splits: - name: train num_bytes: 225637684 num_examples: 101469 download_size: 94820543 dataset_size: 225637684 --- # Glaive's Function Calling V2 for Zephyr-7B-alpha [Glaive's Function Calling V2 dataset](https://huggingface.co/datasets/glaiveai/glaive-function-calling-v2), formatted according to the chat schema zephyr uses, with all the data that I wasn't able to automatically convert removed. Adds three new roles: `definition`, `function` and `call`. Here's an example prompt: ``` <|definition|> { "name": "generate_password", "description": "Generate a random password with specified criteria", "parameters": { "type": "object", "properties": { "length": { "type": "integer", "description": "The length of the password" }, "include_numbers": { "type": "boolean", "description": "Include numbers in the password" }, "include_special_characters": { "type": "boolean", "description": "Include special characters in the password" } }, "required": [ "length" ] } }</s> <|user|> I need a new password. Can you generate one for me?</s> <|assistant|> Of course! How long would you like your password to be? And do you want it to include numbers and special characters?</s> <|user|> I want it to be 12 characters long and yes, it should include both numbers and special characters.</s> <|function|> { "length": 12, "include_numbers": true, "include_special_characters": true }</s> <|function|> {"password": "4#7gB6&9L1!0"}</s> <|assistant|> Here is your new password: 4#7gB6&9L1!0. Please make sure to save it in a secure place.</s> ```
[ 0.17727263271808624, -0.47382134199142456, 0.17344200611114502, 0.18605950474739075, -0.28466397523880005, -0.12481388449668884, 0.20956958830356598, -0.5306132435798645, 0.18024557828903198, 0.9584708213806152, -0.6331301927566528, -0.474096417427063, -0.476178914308548, 0.1198277696967125, -0.15521469712257385, 0.7688625454902649, 0.2084975689649582, -0.17602933943271637, 0.11670146137475967, 0.1088745966553688, -0.7549705505371094, -0.45399370789527893, -0.7654049396514893, 0.01505131833255291, 0.4936368763446808, 0.6046932339668274, 1.1630433797836304, 0.3739657998085022, 0.40853989124298096, 0.25738102197647095, -0.0008079309482127428, 0.288023978471756, -0.112943634390831, 0.24135328829288483, 0.1178918108344078, -0.4404751658439636, -0.9381458759307861, -0.29228395223617554, 0.5808917880058289, 0.2659558057785034, -0.055942684412002563, 0.3326728641986847, 0.23597250878810883, 0.48948904871940613, -0.6206502318382263, 0.8186319470405579, -0.4442882537841797, -0.17941635847091675, -0.394448459148407, -0.2809469401836395, -0.495579332113266, -0.11304206401109695, 0.2331867814064026, -0.7614679336547852, 0.18525801599025726, 0.26496148109436035, 0.9503836035728455, -0.034679338335990906, -0.395751029253006, -0.6227423548698425, -0.5762447714805603, 0.8735873103141785, -0.6803835034370422, 0.35254645347595215, 0.49004361033439636, 0.6331759095191956, -0.09233777225017548, -0.9247258305549622, -0.4596714973449707, -0.10999831557273865, -0.2895475924015045, 0.14597401022911072, -0.2977091372013092, 0.22681710124015808, 0.2525395154953003, 0.1699550300836563, -0.6619356870651245, -0.1928982138633728, -1.0944112539291382, -0.34728923439979553, 0.6348589062690735, 0.31752070784568787, 0.26041945815086365, -0.2600231170654297, -0.1563342660665512, -0.3864355683326721, -0.2778565287590027, 0.241242453455925, 0.7050601840019226, 0.4571290612220764, -0.3328353762626648, 0.41186460852622986, -0.4117306172847748, 0.6036168336868286, -0.14653712511062622, -0.26535725593566895, 0.7841856479644775, -0.027650773525238037, -0.2733294367790222, 0.18551389873027802, 0.5101553797721863, 0.9453294277191162, 0.24162133038043976, -0.03438613936305046, 0.0533054880797863, 0.033529799431562424, 0.06746067851781845, -0.9850310683250427, -0.41648921370506287, 0.39363893866539, -0.5497087836265564, -0.5344356894493103, 0.5396255850791931, -0.8463529944419861, -0.33532992005348206, -0.04547856003046036, 0.4870196580886841, -0.5653937458992004, -0.06084560230374336, 0.5479068160057068, -0.21014371514320374, 0.43136531114578247, 0.5508317351341248, -1.2143704891204834, 0.839102029800415, 0.294038861989975, 0.659670889377594, 0.5154611468315125, -0.164610356092453, -0.7625724673271179, 0.2485698163509369, 0.16323378682136536, 0.24102476239204407, -0.5802202820777893, -0.5509710311889648, 0.22914251685142517, 0.20556418597698212, -0.26180049777030945, -0.304826557636261, 0.49011439085006714, -0.5053414702415466, 0.44919002056121826, -0.3821040689945221, 0.015572180971503258, -0.1952206790447235, -0.23634189367294312, -0.5231949090957642, 0.7729390859603882, 0.448203980922699, -0.4360331594944, 0.32142341136932373, -0.7376691102981567, -0.39681702852249146, 0.5577640533447266, -0.1224047839641571, -0.2555221915245056, -0.0859149917960167, 0.084870345890522, 0.21346454322338104, -0.4554971158504486, -0.5606077313423157, -0.207535058259964, -0.264412522315979, 0.25420233607292175, 0.13404498994350433, 0.9496499300003052, 0.3513999283313751, -0.013385613448917866, 0.0723932683467865, -0.592187762260437, 0.2452135980129242, 0.11842852085828781, -0.021542388945817947, -0.08126600086688995, -0.1895136684179306, 0.02988278865814209, 0.04243653640151024, 0.4440487027168274, -0.27855995297431946, 0.1889406144618988, -0.46647948026657104, 0.4913407266139984, 0.5305253863334656, 0.14210395514965057, 0.6342698931694031, -0.4887121915817261, 0.5830981135368347, -0.23732121288776398, 0.9310176372528076, 0.2028053253889084, -0.5212178230285645, -0.48379889130592346, -0.3991903066635132, -0.09002168476581573, 1.1479308605194092, -0.6487277746200562, 0.6799102425575256, 0.17321746051311493, -0.5961545705795288, -0.27344706654548645, 0.27842211723327637, 0.2617383301258087, 0.5324845314025879, 0.6968042254447937, -0.3969280421733856, -0.6510969996452332, -0.8933947086334229, 0.11749254167079926, -0.5977991819381714, -0.13929615914821625, 0.32061833143234253, 0.4852961003780365, -0.3875892758369446, 0.7620251178741455, -0.8544772863388062, -0.9549800157546997, -0.5269048810005188, -0.2928053140640259, 0.43147021532058716, 0.2663690149784088, 0.681206464767456, -0.8480019569396973, -0.20555074512958527, -0.3971063196659088, -0.6404942870140076, -0.32974928617477417, -0.08420589566230774, -0.06627700477838516, -0.17274804413318634, 0.430350124835968, -0.7237699031829834, 0.4897781014442444, 0.37545567750930786, -0.6105045080184937, 0.6297118663787842, -0.31313738226890564, 0.2285403609275818, -1.3536310195922852, 0.012569325976073742, -0.3194642663002014, 0.32655081152915955, -0.8235199451446533, 0.09639127552509308, 0.19470743834972382, 0.08440153300762177, -0.8448134064674377, 0.7472851872444153, -0.9898158311843872, 0.1655900776386261, 0.015680795535445213, -0.2548244595527649, -0.0853194072842598, 0.04542659595608711, -0.6148906946182251, 0.4939829707145691, 1.0195982456207275, -0.5986974239349365, 0.7834469079971313, 0.665295422077179, -0.2913501560688019, 0.12112294137477875, -1.0086477994918823, -0.17532798647880554, -0.09610399603843689, 0.4294327199459076, -0.996559739112854, -0.7246429920196533, 0.9449249505996704, -0.6154412031173706, -0.033527910709381104, -0.597477912902832, -0.8347674608230591, -0.32093343138694763, -0.3949141204357147, 0.353873074054718, 0.9954847693443298, 0.179108127951622, 0.6708890199661255, 0.3136075735092163, -0.26222750544548035, -0.2626546621322632, -0.689367413520813, -0.08939944952726364, -0.3453647196292877, -0.946060836315155, 0.6208701133728027, 0.00318169966340065, -0.36115992069244385, -0.12773191928863525, 0.08306477218866348, -0.20066846907138824, 0.0837806761264801, 0.4782821834087372, 0.5215592980384827, 0.24149392545223236, -0.143296480178833, 0.23295490443706512, -0.2034781128168106, 0.09987102448940277, -0.007662585936486721, 0.6460170149803162, -0.0869898721575737, -0.20151281356811523, -0.08639415353536606, 0.3994975686073303, 0.4471975564956665, -0.46373066306114197, 0.6793692708015442, 0.8131949305534363, -0.4818684458732605, -0.11529883742332458, -0.42081207036972046, -0.45053067803382874, -0.5610789060592651, 0.027622129768133163, -0.2573730945587158, -0.9574538469314575, 0.9177420139312744, 0.8005227446556091, 0.4110400974750519, 0.49551597237586975, 0.23321081697940826, 0.3355082869529724, 0.7349813580513, 0.3440433740615845, 0.3017738461494446, 0.5295200943946838, -0.14826945960521698, 0.1511945277452469, -0.856856644153595, -0.3535148799419403, -0.33546823263168335, -0.1489516645669937, -0.44467854499816895, -0.4177389144897461, 0.5606159567832947, 0.27126020193099976, 0.21496030688285828, 0.6475167870521545, -0.4513796269893646, 0.5602744221687317, 0.20489877462387085, 0.04752734676003456, -0.24777443706989288, 0.003481799503788352, 0.36043503880500793, 0.05132105574011803, -0.3228115439414978, -0.3978602886199951, 0.917980432510376, 0.21705378592014313, 0.7409870028495789, 0.5533710718154907, 1.1125396490097046, 0.12582126259803772, -0.20281457901000977, -0.41248196363449097, 0.8472357988357544, -0.15961170196533203, -0.4094747304916382, -0.15914689004421234, -0.34898146986961365, -0.9421699047088623, 0.3472777307033539, -0.1598552018404007, -1.3055472373962402, 0.11251149326562881, 0.5536521673202515, -0.6748777031898499, 0.02056080661714077, -0.7339151501655579, 0.7861531376838684, 0.1112600564956665, -0.3301493525505066, -0.004803929943591356, -0.8237661123275757, 0.5033840537071228, 0.3956771194934845, 0.20712094008922577, -0.19384527206420898, 0.14926674962043762, 1.098921537399292, -0.5124706625938416, 1.0143799781799316, -0.6473001837730408, 0.08511969447135925, 0.39028266072273254, 0.09250841289758682, 0.4777051508426666, 0.5741498470306396, -0.11296411603689194, -0.23945145308971405, 0.18389038741588593, -0.31102198362350464, -0.4533664286136627, 0.48543888330459595, -0.6037542223930359, -0.5658589005470276, -0.6820695400238037, -0.3849509656429291, 0.011810177937150002, 0.2516399919986725, 0.40781861543655396, 0.7613270282745361, 0.058615416288375854, 0.6581132411956787, 0.696344256401062, -0.07602833211421967, 0.019224170595407486, 0.3992721736431122, -0.24968066811561584, -0.5280347466468811, 0.6223478317260742, 0.31591981649398804, 0.3357532322406769, 0.3727313280105591, -0.011633056215941906, -0.5267142653465271, -0.24376025795936584, -0.2745591104030609, 0.1857442855834961, -0.48785945773124695, -0.3185863196849823, -0.7628636956214905, -0.43871718645095825, -0.9281941056251526, -0.2236422598361969, 0.18464528024196625, -0.40795469284057617, -0.5189936757087708, -0.07422640919685364, 0.6447990536689758, -0.01781047321856022, -0.1263284683227539, 0.6726694703102112, -1.0300308465957642, 0.36167824268341064, 0.2742654085159302, -0.3162214159965515, -0.19136908650398254, -0.7923985719680786, -0.09998653829097748, -0.0652141198515892, -0.23459553718566895, -1.1764814853668213, 0.513472318649292, 0.22923049330711365, 0.5234616994857788, 0.055068012326955795, 0.17878170311450958, 0.4291132390499115, -0.5489047765731812, 0.8759805560112, 0.22967742383480072, -0.6549788117408752, 0.4441956579685211, -0.20971980690956116, 0.24412809312343597, 0.5948740243911743, 0.0186613742262125, -0.5768850445747375, -0.20169426500797272, -0.8675622344017029, -1.3077788352966309, 0.6078887581825256, 0.5631521344184875, 0.4116901755332947, -0.06264317035675049, 0.120018370449543, 0.00044312351383268833, 0.006894683465361595, -0.20841577649116516, -0.4691268503665924, -0.12473699450492859, 0.052185699343681335, 0.20076334476470947, -0.5484693646430969, -0.06408105790615082, 0.04384813457727432, 0.559493362903595, -0.1897195726633072, 0.44630852341651917, 0.13703028857707977, -0.07900204509496689, -0.07325880974531174, 0.5453999042510986, 0.7333395481109619, 0.7941398620605469, -0.6211704611778259, -0.12861213088035583, 0.5210403800010681, -0.535728394985199, -0.4857403039932251, 0.4997810125350952, -0.13525356352329254, 0.0855795219540596, 0.4300152063369751, 0.5637463927268982, 0.2099585086107254, -0.09064877778291702, 0.4648589789867401, 0.0024589537642896175, -0.7399108409881592, -0.6891184449195862, 0.6296865940093994, -0.3183240294456482, 0.05081835016608238, 0.7031614184379578, 0.07413125038146973, 0.20080167055130005, -0.6541740298271179, 0.4336531460285187, 0.02943645976483822, -0.29525160789489746, -0.7481818199157715, 0.6760097146034241, 0.1291797012090683, -0.16677139699459076, 0.4517536461353302, -0.2663887143135071, -0.44455140829086304, 0.3532877266407013, 0.6051965951919556, 0.8355061411857605, -0.27552133798599243, 0.32787469029426575, 0.13156664371490479, 0.35447296500205994, -0.1432274430990219, 0.9329459071159363, 0.20108340680599213, -0.6358223557472229, 0.24660836160182953, -0.6671212911605835, -0.4162038564682007, 0.08133716136217117, -0.72833651304245, 0.39946797490119934, -0.7668653726577759, -0.002312967088073492, 0.0593680739402771, -0.01948314718902111, -0.7517195343971252, 0.31677305698394775, -0.20842817425727844, 0.8056420087814331, -0.8520067930221558, 0.6631717085838318, 0.6168683171272278, -0.418303906917572, -0.7081913352012634, -0.3443002998828888, 0.41638070344924927, -0.9121919274330139, 0.2425757199525833, 0.14202794432640076, -0.01569882035255432, -0.1731170415878296, -0.2969886064529419, -0.5095100402832031, 1.5758800506591797, 0.1990889459848404, -0.3047269284725189, -0.6525608897209167, 0.023768171668052673, 0.3785533308982849, -0.49578166007995605, 0.05657138675451279, 0.11989285796880722, 0.4524937570095062, 0.03785611316561699, -0.8186821937561035, 0.19054067134857178, -0.30840134620666504, -0.1941796988248825, 0.028441619127988815, -0.8375495672225952, 1.0797271728515625, -0.14515632390975952, -0.18179062008857727, 0.2688370943069458, 0.8555740714073181, 0.12339511513710022, -0.252439022064209, 0.7537886500358582, 0.009429310448467731, 0.699586033821106, -0.024746758863329887, 0.8064166903495789, -0.36244869232177734, 0.16551047563552856, 0.9643203616142273, -0.6076011061668396, 0.4149147570133209, 0.3587658107280731, 0.24360200762748718, 0.40323618054389954, 0.10630511492490768, -0.1679040640592575, 0.5617789626121521, 0.09216748923063278, -0.2854335606098175, -0.2972671389579773, -0.00581892766058445, -0.47953060269355774, 0.1538386195898056, 0.37222927808761597, -0.4479563236236572, -0.23520129919052124, -0.5545960664749146, 0.18437932431697845, -0.40917277336120605, 0.0706469863653183, 0.41285303235054016, 0.26468899846076965, -0.1925927847623825, 0.11082833260297775, 0.21967200934886932, 0.22721004486083984, -1.095923900604248, -0.01835011877119541, 0.2278977334499359, 0.3420769274234772, -0.5380225777626038, -0.8729844689369202, 0.2846367061138153, -0.18138588964939117, -0.15944531559944153, -0.393647164106369, 1.0059953927993774, -0.24380841851234436, -0.4114834666252136, 0.21390682458877563, 0.27792713046073914, 0.19169101119041443, 0.23335658013820648, -0.8120747208595276, 0.40404969453811646, 0.19681721925735474, 0.05952627956867218, 0.22308000922203064, 0.05735015869140625, -0.19047898054122925, 0.5659671425819397, 0.7209271788597107, 0.026548048481345177, 0.07558587193489075, 0.38800162076950073, 0.6255078315734863, -0.3316739797592163, -0.67152339220047, -0.7390462756156921, 0.735849142074585, -0.11612512171268463, -1.023919701576233, 0.7056595087051392, 0.7120441198348999, 0.7657524943351746, -0.4088757634162903, 0.676940381526947, -0.4654088318347931, 0.2481473833322525, -0.7757571935653687, 0.6109479665756226, -0.25691044330596924, -0.07862032204866409, -0.4723661541938782, -0.8671551942825317, -0.41693413257598877, 0.7164238691329956, -0.39806199073791504, 0.04318676143884659, 0.3663212060928345, 1.3286255598068237, -0.08990076184272766, -0.17037421464920044, 0.3205825686454773, 0.06301175057888031, 0.6967136263847351, 0.7129900455474854, 0.43732956051826477, -1.0137923955917358, 0.6883359551429749, 0.03622888773679733, -0.4556824266910553, -0.5573863983154297, -0.42825084924697876, -0.8918485641479492, -0.7282969355583191, -0.2126007229089737, -0.5537206530570984, 0.29437094926834106, 1.012762188911438, 0.6135808229446411, -0.7012521028518677, -0.2328610122203827, 0.30844929814338684, -0.32421329617500305, -0.3170360028743744, -0.3206535875797272, 0.04920906946063042, -0.06304336339235306, -0.19644513726234436, 0.5228978991508484, 0.01510550081729889, 0.14379815757274628, 0.27800413966178894, -0.27841687202453613, 0.3547195792198181, 0.2462506890296936, 0.4158700704574585, 0.2679947316646576, -0.781469464302063, -0.5981484055519104, 0.0658496767282486, -0.2253861427307129, -0.37945783138275146, 0.2237291783094406, -0.16235925257205963, 0.14224283397197723, 0.6327547430992126, -0.04429548233747482, 0.1580820232629776, -0.2630239725112915, 0.34403783082962036, -0.6797186136245728, -0.17029443383216858, 0.07149701565504074, 0.5271447896957397, 0.07601476460695267, -0.28587594628334045, 0.24618397653102875, 0.1940687596797943, -0.4386085867881775, -0.762266993522644, 0.6245629191398621, -1.5080687999725342, 0.2926520109176636, 1.3935487270355225, 0.15063808858394623, -0.3802732527256012, -0.08972124755382538, -0.8052021265029907, -0.05720379576086998, -0.8933090567588806, 0.5329926609992981, 0.4215015470981598, -0.07101009041070938, -0.11618440598249435, -0.3629662096500397, 0.9566274881362915, 0.3511131703853607, -0.6138467788696289, 0.44819405674934387, 0.6111452579498291, 0.2476472556591034, 0.2520838975906372, 0.6774112582206726, -0.31687355041503906, 0.7991355061531067, -0.22383815050125122, -0.20611481368541718, -0.45862627029418945, -0.5041441917419434, 0.15166419744491577, 0.17294369637966156, -0.021821897476911545, -0.4452103078365326 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nightingal3/fig-qa
nightingal3
2023-06-10T18:13:33Z
229
2
null
[ "task_categories:multiple-choice", "task_ids:multiple-choice-qa", "annotations_creators:expert-generated", "annotations_creators:crowdsourced", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:mit", "arxiv:2204.12632", "region:us" ]
2023-06-10T18:13:33Z
2022-06-16T18:35:21.000Z
2022-06-16T18:35:21
--- annotations_creators: - expert-generated - crowdsourced language_creators: - crowdsourced language: - en license: - mit multilinguality: - monolingual pretty_name: Fig-QA size_categories: - 10K<n<100K source_datasets: - original task_categories: - multiple-choice task_ids: - multiple-choice-qa --- # Dataset Card for Fig-QA ## 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 Splits](#data-splits) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Discussion of Biases](#discussion-of-biases) - [Additional Information](#additional-information) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) ## Dataset Description - **Repository:** https://github.com/nightingal3/Fig-QA - **Paper:** https://arxiv.org/abs/2204.12632 - **Leaderboard:** https://explainaboard.inspiredco.ai/leaderboards?dataset=fig_qa - **Point of Contact:** emmy@cmu.edu ### Dataset Summary This is the dataset for the paper [Testing the Ability of Language Models to Interpret Figurative Language](https://arxiv.org/abs/2204.12632). Fig-QA consists of 10256 examples of human-written creative metaphors that are paired as a Winograd schema. It can be used to evaluate the commonsense reasoning of models. The metaphors themselves can also be used as training data for other tasks, such as metaphor detection or generation. ### Supported Tasks and Leaderboards You can evaluate your models on the test set by submitting to the [leaderboard](https://explainaboard.inspiredco.ai/leaderboards?dataset=fig_qa) on Explainaboard. Click on "New" and select `qa-multiple-choice` for the task field. Select `accuracy` for the metric. You should upload results in the form of a system output file in JSON or JSONL format. ### Languages This is the English version. Multilingual version can be found [here](https://huggingface.co/datasets/cmu-lti/multi-figqa). ### Data Splits Train-{S, M(no suffix), XL}: different training set sizes Dev Test (labels not provided for test set) ## Considerations for Using the Data ### Discussion of Biases These metaphors are human-generated and may contain insults or other explicit content. Authors of the paper manually removed offensive content, but users should keep in mind that some potentially offensive content may remain in the dataset. ## Additional Information ### Licensing Information MIT License ### Citation Information If you found the dataset useful, please cite this paper: @misc{https://doi.org/10.48550/arxiv.2204.12632, doi = {10.48550/ARXIV.2204.12632}, url = {https://arxiv.org/abs/2204.12632}, author = {Liu, Emmy and Cui, Chen and Zheng, Kenneth and Neubig, Graham}, keywords = {Computation and Language (cs.CL), Artificial Intelligence (cs.AI), FOS: Computer and information sciences, FOS: Computer and information sciences}, title = {Testing the Ability of Language Models to Interpret Figurative Language}, publisher = {arXiv}, year = {2022}, copyright = {Creative Commons Attribution Share Alike 4.0 International} }
[ -0.4046117961406708, -0.7888848781585693, 0.22619180381298065, 0.20218467712402344, -0.47264277935028076, -0.08971200883388519, -0.08132350444793701, -0.5448741316795349, 0.26825618743896484, 0.2489740252494812, -0.6992282867431641, -0.5306200385093689, -0.39674508571624756, 0.23034334182739258, -0.13075003027915955, 0.8151972889900208, -0.15945452451705933, 0.29727205634117126, -0.5087254643440247, -0.40816766023635864, -0.6062759160995483, -0.40354540944099426, -0.6893221735954285, -0.14081092178821564, 0.37953466176986694, 0.19928303360939026, 0.9836816191673279, 0.7324498295783997, 0.3464980125427246, 0.326086163520813, 0.12120536714792252, 0.16719549894332886, -0.3980519771575928, -0.2365807145833969, -0.014652222394943237, -0.5895569324493408, -0.44517841935157776, 0.356275349855423, 0.7810205817222595, 0.3159337043762207, 0.025657860562205315, 0.2565397620201111, -0.17389358580112457, 0.49886032938957214, -0.3112591803073883, 0.7578473687171936, -0.43483632802963257, -0.04577876254916191, -0.10138998925685883, -0.03687889128923416, -0.2495620995759964, -0.3813558518886566, -0.19998405873775482, -0.8495087027549744, 0.018967848271131516, 0.24214938282966614, 1.1856752634048462, 0.46106889843940735, -0.32161444425582886, -0.06900034099817276, -0.13829392194747925, 0.8435630798339844, -0.8079449534416199, 0.3414544463157654, 0.48983728885650635, 0.4458845853805542, -0.027810588479042053, -0.7131282091140747, -0.8026962280273438, -0.3379228115081787, -0.3521811068058014, 0.22593797743320465, -0.27537137269973755, -0.15926727652549744, 0.5601086616516113, 0.2819235026836395, -0.5614354610443115, 0.031373050063848495, -0.34202033281326294, -0.22829607129096985, 0.8723259568214417, 0.20365731418132782, 0.5542431473731995, -0.20446555316448212, -0.30541521310806274, -0.4507339894771576, -0.5288143754005432, -0.090696781873703, 0.2899225652217865, 0.34314823150634766, -0.474734365940094, 0.6235001683235168, -0.11921032518148422, 0.6961532235145569, -0.24664834141731262, -0.2671813666820526, 0.7625381350517273, -0.37632304430007935, -0.17746153473854065, -0.2088632881641388, 0.9263761639595032, 0.26778221130371094, 0.22604575753211975, 0.09051264077425003, -0.19877009093761444, 0.16778866946697235, 0.012595713138580322, -0.7848816514015198, 0.04467327147722244, 0.4063148498535156, -0.3028479218482971, -0.17689238488674164, 0.050964172929525375, -0.5679036974906921, -0.29091981053352356, -0.5731794834136963, 0.33851706981658936, -0.5596981644630432, -0.20720621943473816, 0.028215574100613594, -0.29770252108573914, 0.4128044545650482, 0.24076567590236664, -0.3524233400821686, 0.2757159173488617, 0.4218921959400177, 0.6269735097885132, -0.17449793219566345, -0.5868391990661621, -0.2411099523305893, -0.11359256505966187, -0.2714522182941437, 0.6026350259780884, -0.26248469948768616, 0.04531007260084152, -0.2846549451351166, 0.04740535095334053, -0.46551135182380676, -0.4025278687477112, 0.7981061935424805, -0.37254780530929565, 0.5257444381713867, -0.25974151492118835, -0.6212424635887146, -0.32628968358039856, 0.3027201294898987, -0.9064514636993408, 1.2085332870483398, 0.27950456738471985, -0.9507360458374023, 0.11363932490348816, -0.7734992504119873, -0.1992674469947815, -0.10412239283323288, -0.5359038710594177, -0.3676226735115051, -0.1730593889951706, 0.3443533182144165, 0.40767189860343933, -0.6944167017936707, 0.5127792358398438, -0.2301587015390396, -0.3069642186164856, 0.42577075958251953, -0.39446529746055603, 1.237300992012024, 0.38990750908851624, -0.4371870756149292, 0.13468624651432037, -0.6977811455726624, 0.07393813133239746, 0.5282413363456726, 0.09173544496297836, -0.14920438826084137, -0.20580552518367767, 0.36507800221443176, 0.5490747690200806, 0.2034582942724228, -0.3948984146118164, -0.12523029744625092, -0.20572705566883087, 0.27694544196128845, 0.5402880311012268, -0.14825621247291565, -0.022331157699227333, -0.5547265410423279, 0.6473976969718933, 0.1395042985677719, 0.08507261425256729, 0.2286660522222519, -0.5237465500831604, -0.772609293460846, -0.5500702261924744, 0.4085274636745453, 0.4692278802394867, -1.053850769996643, 0.6983498334884644, -0.2835383713245392, -0.8021884560585022, -0.6356751918792725, -0.23261447250843048, 0.4728265404701233, 0.5951792001724243, 0.3178309202194214, -0.267415314912796, -0.26227042078971863, -1.0522027015686035, -0.15758195519447327, -0.33391839265823364, 0.10512462258338928, 0.5335379242897034, 0.715994119644165, -0.13706593215465546, 0.8848105669021606, -0.6592873930931091, -0.11440282315015793, -0.16136398911476135, 0.044840533286333084, 0.1241268590092659, 0.650696337223053, 0.9335012435913086, -1.0555583238601685, -0.23677027225494385, -0.45154663920402527, -0.9366208910942078, -0.11001701653003693, -0.30733028054237366, -0.34713125228881836, 0.04090770334005356, 0.1591101735830307, -0.7038314342498779, 0.34565067291259766, 0.36901146173477173, -0.6678921580314636, 0.662704586982727, 0.31918880343437195, 0.28747668862342834, -1.208487868309021, 0.26100826263427734, 0.04321280121803284, -0.016990521922707558, -0.5591670870780945, 0.3471407890319824, -0.1434706747531891, -0.06368128210306168, -0.6196472644805908, 0.8594239354133606, -0.2813342213630676, -0.058790676295757294, -0.012082728557288647, 0.1510273963212967, 0.05931374058127403, 0.5834241509437561, 0.0747021958231926, 0.890300989151001, 0.6786515116691589, -0.37736251950263977, 0.24000363051891327, 0.40907666087150574, -0.2014976441860199, 0.5313452482223511, -0.7441297769546509, 0.08661363273859024, -0.15991725027561188, 0.2637328505516052, -0.8911588788032532, -0.3226780891418457, 0.4925706386566162, -0.4985550343990326, 0.09144830703735352, 0.3800244629383087, -0.8793342709541321, -0.20623552799224854, -0.23313477635383606, 0.5683472156524658, 0.3672427833080292, -0.45458054542541504, 0.6892468333244324, 0.3802914023399353, 0.22117604315280914, -0.5935696363449097, -0.752116858959198, -0.22646529972553253, -0.3453053832054138, -0.6265371441841125, 0.32216140627861023, -0.5042113065719604, -0.14734110236167908, 0.009977944195270538, 0.09119027107954025, -0.2998804748058319, 0.08587833493947983, 0.21970832347869873, 0.2846282422542572, -0.16525432467460632, 0.2027471512556076, -0.03571290895342827, 0.07684149593114853, 0.18050147593021393, 0.10686580091714859, 0.4619373679161072, -0.40926265716552734, -0.2981868088245392, -0.7649106979370117, 0.10226235538721085, 0.6467844247817993, -0.16984042525291443, 0.8239134550094604, 0.804877758026123, -0.5969663262367249, 0.1738959550857544, -0.5010585188865662, -0.1992715299129486, -0.43066203594207764, 0.24251890182495117, -0.4295354187488556, -0.6603819131851196, 0.6969702243804932, 0.2735925018787384, 0.03731917962431908, 0.8915913701057434, 0.45410847663879395, 0.17296069860458374, 0.8327482342720032, 0.41590651869773865, -0.016454698517918587, 0.3919393718242645, -0.2824854850769043, -0.07335134595632553, -0.6484054327011108, -0.24966096878051758, -0.7358435392379761, -0.21567904949188232, -0.655536949634552, -0.5208960771560669, 0.08427503705024719, 0.06536205112934113, -0.508979320526123, 0.454848974943161, -0.3197576403617859, 0.3237074911594391, 0.5767252445220947, 0.20425915718078613, 0.26000991463661194, 0.04605180397629738, -0.15424735844135284, -0.07104341685771942, -0.7972478866577148, -0.49882808327674866, 0.7028164863586426, 0.484762966632843, 0.4373226463794708, -0.08830095827579498, 0.5667158961296082, 0.01594390533864498, 0.27145883440971375, -0.8066970109939575, 0.6716763377189636, 0.07451759278774261, -0.7576004266738892, -0.2783116400241852, -0.5897827744483948, -0.9003467559814453, 0.2920508086681366, -0.1794758141040802, -0.5450567603111267, 0.26690635085105896, 0.014169283211231232, -0.0336218886077404, 0.05321075767278671, -0.6968774199485779, 1.1081860065460205, -0.35924604535102844, -0.07205016165971756, -0.13535161316394806, -0.6589630842208862, 0.2942665219306946, -0.042819611728191376, 0.24803894758224487, -0.19198764860630035, -0.1106375902891159, 1.1198331117630005, -0.2685497999191284, 1.0238311290740967, -0.044131286442279816, 0.10675257444381714, 0.5234717726707458, -0.18362648785114288, 0.3648460805416107, 0.05448644235730171, -0.26050639152526855, 0.4566045105457306, 0.1659080982208252, -0.5804430842399597, -0.7508538961410522, 0.48007261753082275, -1.0801773071289062, -0.3648553192615509, -0.6827723383903503, -0.8850284218788147, -0.17778214812278748, 0.4233490228652954, 0.035486139357089996, 0.3304280936717987, -0.13972149789333344, 0.1056799367070198, 0.24838286638259888, -0.21499444544315338, 0.06660843640565872, 0.29996150732040405, -0.08477341383695602, -0.565990149974823, 0.8480346202850342, 0.15588200092315674, 0.2075873762369156, 0.24703875184059143, 0.26906415820121765, -0.5054066181182861, -0.3105112612247467, -0.4498046934604645, 0.536611020565033, -0.7698691487312317, -0.15261702239513397, -0.44177019596099854, -0.23208840191364288, -0.2783716917037964, 0.11344195902347565, -0.3343918025493622, -0.6338582634925842, -0.5889479517936707, -0.147816464304924, 0.4971417486667633, 0.2446804940700531, 0.21056585013866425, 0.2658351957798004, -0.4617080092430115, 0.3254670798778534, 0.017455415800213814, 0.2552022337913513, 0.0008643066394142807, -0.4751926362514496, -0.21594558656215668, 0.24703764915466309, -0.10671472549438477, -0.7826914191246033, 0.47444382309913635, 0.05910626798868179, 0.6851403117179871, 0.2621600329875946, 0.16341005265712738, 0.6103001832962036, -0.11087150871753693, 0.951662003993988, 0.2961260676383972, -0.7738788723945618, 0.4298345446586609, -0.42441627383232117, 0.25535091757774353, 0.6345103979110718, 0.600231409072876, -0.287675678730011, -0.21846561133861542, -1.0714871883392334, -0.5247743725776672, 0.6762961745262146, 0.5201050043106079, 0.03830356150865555, -0.01217159628868103, 0.26608899235725403, -0.028234440833330154, 0.4517580568790436, -0.8724274635314941, -0.6039797067642212, -0.3483866751194, -0.4391472339630127, -0.17294354736804962, 0.1355731040239334, -0.4872555732727051, -0.46437761187553406, 0.7893096208572388, -0.3570067882537842, 0.5134563446044922, 0.09051182866096497, 0.10624062269926071, 0.14660805463790894, 0.14131958782672882, 0.45332005620002747, 0.6948307752609253, -0.17225176095962524, -0.011843734420835972, -0.029068635776638985, -0.5133032202720642, -0.01692262478172779, 0.40502992272377014, -0.27664491534233093, -0.08361269533634186, 0.3698606789112091, 1.0407456159591675, -0.0839962288737297, -0.8576337695121765, 0.4068250358104706, -0.15473085641860962, -0.061368223279714584, -0.3925722539424896, 0.026391245424747467, -0.04899128898978233, 0.18385960161685944, 0.13628509640693665, 0.0011195054976269603, 0.09293221682310104, -0.522351861000061, 0.22777235507965088, 0.22892513871192932, -0.34134161472320557, -0.14225350320339203, 0.5967268943786621, -0.06846930831670761, 0.022321751341223717, 0.7103008031845093, -0.2728321850299835, -0.29565852880477905, 0.9567723870277405, 0.6526013612747192, 0.878334641456604, 0.14386360347270966, 0.4194396734237671, 0.5678533911705017, 0.36630165576934814, -0.041732460260391235, 0.5487117171287537, 0.3262762129306793, -0.8965891003608704, -0.2072688788175583, -0.4569939970970154, -0.18926160037517548, 0.22295479476451874, -0.7081220746040344, 0.3582446873188019, -0.3533249497413635, -0.11793026328086853, -0.08706662058830261, 0.0698402151465416, -0.906829833984375, 0.4894932210445404, -0.05444272235035896, 1.0652097463607788, -1.0760834217071533, 0.6729661822319031, 0.8171875476837158, -0.9234203696250916, -1.1549599170684814, -0.10090218484401703, 0.09052333235740662, -0.7418432235717773, 0.39309385418891907, 0.1894567608833313, 0.18323864042758942, -0.010027576237916946, -0.7636166214942932, -0.9701704382896423, 1.3958420753479004, 0.6223016381263733, -0.10369683802127838, 0.27209872007369995, 0.21194316446781158, 0.7300320267677307, -0.6718550324440002, 0.6309802532196045, 0.6282901167869568, 0.5197533965110779, 0.19388294219970703, -0.7824967503547668, 0.46329253911972046, -0.47222813963890076, -0.1308157593011856, -0.32669973373413086, -0.9902510643005371, 0.7002426385879517, -0.11134509742259979, -0.16776932775974274, 0.0008514857618138194, 0.7800224423408508, 0.6985118985176086, 0.3509403467178345, 0.5844202041625977, 0.6446610689163208, 0.9008375406265259, -0.1956576257944107, 1.1471388339996338, -0.16313524544239044, 0.2958022952079773, 1.1119170188903809, 0.11571983993053436, 0.9005629420280457, 0.4006156027317047, -0.1855883002281189, 0.510205864906311, 0.8659750819206238, -0.21987073123455048, 0.26173099875450134, 0.14291061460971832, 0.2158123403787613, -0.1994461715221405, -0.48034045100212097, -0.48541486263275146, 0.506585419178009, 0.23152101039886475, -0.4188259243965149, -0.007822259329259396, -0.20171678066253662, 0.1454351842403412, -0.04656495898962021, -0.06712925434112549, 0.38754913210868835, 0.09281556308269501, -0.535666823387146, 0.9061604142189026, -0.08263631910085678, 0.3685789704322815, -0.5292388796806335, -0.1608642190694809, -0.1508922278881073, -0.2688893973827362, -0.24576403200626373, -0.6448314785957336, 0.12779828906059265, -0.21625614166259766, -0.09855098277330399, 0.07610203325748444, 0.46932604908943176, -0.3764951527118683, -0.6606076955795288, 0.11319141089916229, 0.7031190395355225, 0.41245871782302856, 0.08700495958328247, -1.2150989770889282, 0.1568586230278015, 0.030472921207547188, -0.2646583020687103, 0.31357258558273315, 0.18062043190002441, -0.16558516025543213, 0.7039235830307007, 0.47827839851379395, -0.12726543843746185, -0.13626262545585632, 0.3468119204044342, 1.0920417308807373, -0.6666025519371033, -0.5764643549919128, -0.4485324025154114, 0.6573560833930969, -0.220997616648674, -0.4884631037712097, 0.7299988269805908, 0.7237229943275452, 0.954236626625061, -0.24539217352867126, 0.7285470962524414, -0.3995295763015747, 0.21548935770988464, -0.5148550271987915, 0.7399038672447205, -0.7053884863853455, 0.12325683981180191, -0.43844738602638245, -0.8530031442642212, -0.41694724559783936, 0.6086168885231018, -0.2459181845188141, 0.3166082799434662, 0.9982659816741943, 0.9336245059967041, -0.015545621514320374, 0.1611257791519165, 0.1267203837633133, 0.3174021542072296, 0.11947821825742722, 0.3880867660045624, 0.5786234736442566, -0.8279354572296143, 0.27814364433288574, -0.49864161014556885, -0.26442861557006836, 0.20296327769756317, -0.8238416910171509, -1.0105540752410889, -0.7610413432121277, -0.7392785549163818, -0.4373636543750763, -0.08014387637376785, 1.0127944946289062, 0.5306873321533203, -0.9042035937309265, -0.3980599045753479, 0.06913120299577713, 0.15330815315246582, -0.6503229141235352, -0.2657788395881653, 0.754525363445282, -0.03734060749411583, -0.8170244693756104, 0.18230243027210236, -0.4004860818386078, 0.15781822800636292, -0.12058950215578079, -0.20326316356658936, -0.3718560039997101, 0.0031809841748327017, 0.43558624386787415, 0.19763816893100739, -0.8259527683258057, -0.16931679844856262, -0.002323298482224345, -0.1310528665781021, 0.044207580387592316, 0.37778204679489136, -0.687486469745636, 0.3737061023712158, 0.6031466722488403, 0.6355206370353699, 0.22980830073356628, 0.10643815994262695, 0.37436604499816895, -0.6595491170883179, 0.21268390119075775, 0.2551124691963196, 0.44190239906311035, 0.3188345432281494, -0.5002279281616211, 0.8913228511810303, 0.4780639111995697, -0.2917346954345703, -0.7441701889038086, -0.04360293596982956, -1.2266464233398438, -0.16462641954421997, 1.2835149765014648, -0.15539762377738953, -0.23806467652320862, 0.09525483846664429, -0.267596960067749, 0.36541661620140076, -0.5048165321350098, 0.5735628604888916, 0.6905523538589478, -0.2854176163673401, -0.21828918159008026, -0.6763302683830261, 0.5346741676330566, 0.2285347282886505, -1.1791390180587769, -0.11738594621419907, 0.7676519751548767, 0.22498302161693573, 0.2952439785003662, 0.5357471108436584, -0.2924826145172119, 0.2664010524749756, 0.13991497457027435, 0.16431516408920288, -0.17698794603347778, -0.23323705792427063, -0.29042550921440125, -0.01623373292386532, 0.08026359975337982, -0.1070392057299614 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
SJ1999/datatransformer1
SJ1999
2023-11-24T03:33:19Z
229
0
null
[ "region:us" ]
2023-11-24T03:33:19Z
2023-11-22T01:16:09.000Z
2023-11-22T01:16:09
--- dataset_info: features: - name: text dtype: string splits: - name: train num_bytes: 19245 num_examples: 5 download_size: 19956 dataset_size: 19245 configs: - config_name: default data_files: - split: train path: data/train-* ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
bond005/sberdevices_golos_10h_crowd
bond005
2022-10-27T04:42:07Z
228
1
golos
[ "task_categories:automatic-speech-recognition", "task_categories:audio-classification", "annotations_creators:expert-generated", "language_creators:crowdsourced", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:10K<n<100k", "source_datasets:extended", "language:ru", "license:other", "arxiv:2106.10161", "region:us" ]
2022-10-27T04:42:07Z
2022-10-26T11:12:15.000Z
2022-10-26T11:12:15
--- pretty_name: Golos annotations_creators: - expert-generated language_creators: - crowdsourced - expert-generated language: - ru license: - other multilinguality: - monolingual paperswithcode_id: golos size_categories: - 10K<n<100k source_datasets: - extended task_categories: - automatic-speech-recognition - audio-classification --- # Dataset Card for sberdevices_golos_10h_crowd ## 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:** [Golos ASR corpus](https://www.openslr.org/114) - **Repository:** [Golos dataset](https://github.com/sberdevices/golos) - **Paper:** [Golos: Russian Dataset for Speech Research](https://arxiv.org/pdf/2106.10161.pdf) - **Leaderboard:** [The 🤗 Speech Bench](https://huggingface.co/spaces/huggingface/hf-speech-bench) - **Point of Contact:** [Nikolay Karpov](mailto:karpnv@gmail.com) ### Dataset Summary Sberdevices Golos is a corpus of approximately 1200 hours of 16kHz Russian speech from crowd (reading speech) and farfield (communication with smart devices) domains, prepared by SberDevices Team (Alexander Denisenko, Angelina Kovalenko, Fedor Minkin, and Nikolay Karpov). The data is derived from the crowd-sourcing platform, and has been manually annotated. Authors divide all dataset into train and test subsets. The training subset includes approximately 1000 hours. For experiments with a limited number of records, authors identified training subsets of shorter length: 100 hours, 10 hours, 1 hour, 10 minutes. This dataset is a simpler version of the above mentioned Golos: - it includes the crowd domain only (without any sound from the farfield domain); - validation split is built on the 1-hour training subset; - training split corresponds to the 10-hour training subset without sounds from the 1-hour training subset; - test split is a full original test split. ### Supported Tasks and Leaderboards - `automatic-speech-recognition`: The dataset can be used to train a model for Automatic Speech Recognition (ASR). The model is presented with an audio file and asked to transcribe the audio file to written text. The most common evaluation metric is the word error rate (WER). The task has an active Hugging Face leaderboard which can be found at https://huggingface.co/spaces/huggingface/hf-speech-bench. The leaderboard ranks models uploaded to the Hub based on their WER. ### Languages The audio is in Russian. ## Dataset Structure ### Data Instances A typical data point comprises the audio data, usually called `audio` and its transcription, called `transcription`. Any additional information about the speaker and the passage which contains the transcription is not provided. ``` {'audio': {'path': None, 'array': array([ 3.05175781e-05, 3.05175781e-05, 0.00000000e+00, ..., -1.09863281e-03, -7.93457031e-04, -1.52587891e-04]), dtype=float64), 'sampling_rate': 16000}, 'transcription': 'шестнадцатая часть сезона пять сериала лемони сникет тридцать три несчастья'} ``` ### Data Fields - audio: A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate. Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the `"audio"` column, *i.e.* `dataset[0]["audio"]` should **always** be preferred over `dataset["audio"][0]`. - transcription: the transcription of the audio file. ### Data Splits This dataset is a simpler version of the original Golos: - it includes the crowd domain only (without any sound from the farfield domain); - validation split is built on the 1-hour training subset; - training split corresponds to the 10-hour training subset without sounds from the 1-hour training subset; - test split is a full original test split. | | Train | Validation | Test | | ----- | ------ | ---------- | ----- | | examples | 7993 | 793 | 9994 | | hours | 8.9h | 0.9h | 11.2h | ## 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 All recorded audio files were manually annotated on the crowd-sourcing platform. #### Who are the annotators? [Needs More Information] ### Personal and Sensitive Information The dataset consists of people who have donated their voice. You agree to not attempt to determine the identity of speakers in this dataset. ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [Needs More Information] ## Additional Information ### Dataset Curators The dataset was initially created by Alexander Denisenko, Angelina Kovalenko, Fedor Minkin, and Nikolay Karpov. ### Licensing Information [Public license with attribution and conditions reserved](https://github.com/sberdevices/golos/blob/master/license/en_us.pdf) ### Citation Information ``` @misc{karpov2021golos, author = {Karpov, Nikolay and Denisenko, Alexander and Minkin, Fedor}, title = {Golos: Russian Dataset for Speech Research}, publisher = {arXiv}, year = {2021}, url = {https://arxiv.org/abs/2106.10161} } ``` ### Contributions Thanks to [@bond005](https://github.com/bond005) for adding this dataset.
[ -0.3330652415752411, -0.39837130904197693, -0.08233746141195297, 0.28490161895751953, -0.32855740189552307, -0.07115934789180756, -0.42913883924484253, -0.40761473774909973, 0.47047877311706543, 0.3357207775115967, -0.7361009120941162, -0.6380046010017395, -0.5869051814079285, 0.08494482189416885, -0.3785366117954254, 1.0480029582977295, 0.20475302636623383, 0.17511563003063202, 0.047104377299547195, -0.15663960576057434, -0.008134163916110992, -0.49459511041641235, -0.5680099129676819, -0.15372329950332642, -0.012030912563204765, 0.47527942061424255, 0.5109207034111023, 0.7400450706481934, 0.3442678451538086, 0.4104635417461395, -0.3809194266796112, -0.14475171267986298, -0.5020780563354492, 0.016205666586756706, 0.07233088463544846, -0.07951189577579498, -0.4864264726638794, 0.04893006384372711, 0.9054335951805115, 0.47702860832214355, -0.4693965017795563, 0.58967524766922, 0.003318547736853361, 0.687317430973053, -0.1521611362695694, 0.19559535384178162, -0.41513383388519287, -0.01218682061880827, -0.4181603193283081, 0.010341479443013668, -0.1880582869052887, -0.23822014033794403, 0.18846294283866882, -0.5989314317703247, 0.3184477686882019, 0.15870916843414307, 1.0249934196472168, 0.18180672824382782, 0.09932101517915726, -0.2703689634799957, -0.5964152812957764, 0.8066883683204651, -0.7355485558509827, 0.5306030511856079, 0.7793112993240356, 0.4237254559993744, -0.14685587584972382, -0.7192270159721375, -0.7037034630775452, 0.0663183182477951, -0.012399198487401009, 0.2154243439435959, -0.46249109506607056, -0.2750133275985718, 0.32951605319976807, 0.3870753049850464, -0.7328580021858215, -0.28413301706314087, -0.6797181963920593, -0.5289698243141174, 0.8895860314369202, -0.03344498947262764, 0.271722674369812, -0.35434117913246155, -0.12782596051692963, -0.5057956576347351, -0.3023199141025543, 0.2678241729736328, 0.7501751780509949, 0.4570404291152954, -0.697020411491394, 0.45355257391929626, -0.3822457492351532, 0.8000329732894897, 0.09659858047962189, -0.31376802921295166, 0.8607168793678284, -0.6653522253036499, -0.2650405168533325, 0.03099699877202511, 1.2097480297088623, 0.1219867691397667, 0.17454203963279724, 0.05721117556095123, -0.08995268493890762, -0.40012675523757935, -0.002726956270635128, -0.6197000741958618, -0.21728038787841797, 0.21939721703529358, -0.5133538246154785, -0.11173973232507706, 0.06422564387321472, -1.1024706363677979, 0.11311189830303192, -0.3864879608154297, 0.259479820728302, -0.4176360070705414, -0.2915857434272766, 0.07770339399576187, -0.17790468037128448, 0.20669950544834137, -0.048537105321884155, -0.7890319228172302, 0.5260958075523376, 0.25399646162986755, 0.9202732443809509, 0.027797536924481392, -0.41687238216400146, -0.6192045211791992, -0.051766667515039444, -0.2321218103170395, 0.7867167592048645, -0.37794116139411926, -0.6044731736183167, -0.2445734143257141, 0.18964338302612305, -0.06750135868787766, -0.5654621124267578, 0.6127967834472656, -0.15314802527427673, 0.5416597723960876, -0.21654728055000305, -0.27622976899147034, -0.11725524812936783, -0.17554281651973724, -0.602628767490387, 1.1672453880310059, 0.1704588383436203, -0.5598790645599365, 0.40326619148254395, -0.7147412896156311, -0.3029615581035614, 0.1176513209939003, -0.09019894152879715, -0.4784156084060669, -0.24198564887046814, 0.16679027676582336, 0.4683610796928406, -0.2658552825450897, 0.4187154769897461, -0.09781105816364288, -0.131510928273201, 0.3263360261917114, -0.13683182001113892, 1.011405348777771, 0.2651365101337433, -0.4095843434333801, 0.19663101434707642, -1.0444416999816895, -0.05642414093017578, 0.07142703235149384, -0.42311254143714905, -0.0008645346388220787, 0.06868167221546173, 0.32335948944091797, 0.18401500582695007, -0.13383273780345917, -0.547715961933136, -0.16227634251117706, -0.5527534484863281, 0.43122246861457825, 0.5952399373054504, -0.11614920943975449, 0.41131559014320374, -0.3191191256046295, 0.4248640835285187, -0.03604346513748169, 0.15302403271198273, 0.08505955338478088, -0.5432283878326416, -0.5176553130149841, -0.5705791711807251, 0.3086574673652649, 0.5098050832748413, -0.5256819128990173, 0.7957265377044678, -0.4157003164291382, -0.7609829902648926, -0.8895379900932312, 0.09901876747608185, 0.5623903870582581, 0.6339337229728699, 0.5935007333755493, -0.23937895894050598, -0.7484291195869446, -0.7883039116859436, 0.13225547969341278, -0.21522767841815948, 0.037276461720466614, 0.4824416935443878, 0.7542516589164734, -0.037874385714530945, 0.8531154990196228, -0.3786645829677582, -0.44099152088165283, -0.29375749826431274, -0.0917508453130722, 0.40272843837738037, 0.6880546808242798, 0.4480431377887726, -0.8439626693725586, -0.5048134922981262, -0.2686091959476471, -0.48787397146224976, -0.15846969187259674, 0.21812978386878967, 0.03881783410906792, 0.23127000033855438, 0.3363848328590393, -0.22970464825630188, 0.36395150423049927, 0.6475812196731567, -0.5352315902709961, 0.7282805442810059, -0.04103122279047966, 0.2635616362094879, -1.1406663656234741, 0.3821606934070587, -0.022744333371520042, -0.17398478090763092, -0.9113431572914124, -0.4507594108581543, -0.2186182141304016, -0.2002125084400177, -0.6197449564933777, 0.6360354423522949, -0.43431854248046875, -0.1661076843738556, 0.1432829350233078, 0.24906504154205322, -0.17016731202602386, 0.48113560676574707, 0.20197682082653046, 0.8808414340019226, 0.9081043004989624, -0.6292327642440796, 0.5412502288818359, 0.49500390887260437, -0.675112247467041, 0.5710052847862244, -0.9457472562789917, 0.33042454719543457, -0.09021732211112976, 0.30915942788124084, -1.0671764612197876, -0.5891412496566772, 0.6452955007553101, -0.9272010922431946, 0.2277362048625946, -0.2197297066450119, -0.48037514090538025, -0.4470316767692566, -0.2461881786584854, 0.2843857407569885, 0.4063076674938202, -0.2340981364250183, 0.3444989025592804, 0.7599522471427917, -0.30745941400527954, -0.5688693523406982, -0.8026050925254822, -0.14761494100093842, -0.33961281180381775, -0.7316685914993286, 0.4009585678577423, -0.21866512298583984, -0.22866198420524597, -0.10724709928035736, 0.05867466330528259, -0.1530316323041916, -0.19055598974227905, 0.28986606001853943, 0.24609555304050446, -0.01210792362689972, -0.036780137568712234, -0.16972616314888, -0.17054279148578644, -0.2622349262237549, -0.1729627251625061, 0.5729981064796448, -0.1719897836446762, -0.12993089854717255, -0.6833145618438721, 0.31273558735847473, 0.3728680908679962, -0.16129779815673828, 0.5803732872009277, 0.597102701663971, -0.38502949476242065, 0.06295749545097351, -0.5744065046310425, 0.09148451685905457, -0.4607882797718048, 0.3888949453830719, -0.1778460294008255, -0.7228853106498718, 0.9300208687782288, 0.6298930644989014, -0.2157275378704071, 0.5631598830223083, 0.5488995313644409, 0.1644202619791031, 0.5792880058288574, 0.16319900751113892, -0.4524473249912262, 0.4403932988643646, -0.5471624135971069, -0.3437264561653137, -0.8001035451889038, -0.6177098751068115, -0.9496852159500122, -0.3014122545719147, -0.28287336230278015, -0.6083853840827942, 0.08028291910886765, -0.19388823211193085, -0.17084099352359772, 0.46537989377975464, -0.6449028849601746, 0.3925706446170807, 0.5714983940124512, -0.0873304232954979, -0.09385347366333008, 0.1088038980960846, 0.014487771317362785, -0.019397633150219917, -0.5199902057647705, -0.2769548296928406, 1.0355967283248901, 0.35157883167266846, 0.44050291180610657, 0.18563254177570343, 0.5528764128684998, 0.2710213363170624, -0.14720964431762695, -0.6052608489990234, 0.5964668989181519, -0.06757351011037827, -0.8003180027008057, -0.6148016452789307, -0.4760819971561432, -0.8334054946899414, 0.03163355216383934, -0.10519778728485107, -0.8932371735572815, 0.46328043937683105, 0.22529754042625427, -0.4231780171394348, 0.1221170648932457, -0.6071193814277649, 0.8254770040512085, 0.007468733005225658, -0.09076030552387238, 0.012764924205839634, -0.9082400798797607, -0.054059337824583054, 0.11847125738859177, 0.42568716406822205, -0.10058407485485077, 0.045369040220975876, 1.5524568557739258, -0.39810776710510254, 0.6127683520317078, -0.4648894667625427, 0.27392658591270447, 0.5841047763824463, -0.4391710162162781, 0.49058255553245544, -0.07071057707071304, -0.23973272740840912, 0.4661960303783417, -0.04448350891470909, -0.21949581801891327, -0.18197916448116302, 0.5128675103187561, -1.0052481889724731, -0.1165083721280098, -0.29921266436576843, -0.3381940424442291, -0.04361875355243683, 0.15916915237903595, 0.6403250098228455, 0.6507885456085205, -0.2411823719739914, 0.41309723258018494, 0.5645144581794739, -0.21282348036766052, 0.3843027651309967, 0.6133689880371094, -0.190779909491539, -0.9510996341705322, 0.8835811614990234, 0.3867765963077545, 0.09634563326835632, 0.1085832417011261, 0.3183460533618927, -0.5355105400085449, -0.5611370205879211, -0.513399600982666, 0.366688996553421, -0.521166205406189, -0.10675095021724701, -0.6086005568504333, -0.021272864192724228, -1.003660798072815, 0.16828382015228271, -0.4252438247203827, -0.2649582028388977, -0.4660860002040863, -0.20911550521850586, 0.43871524930000305, 0.32297033071517944, -0.43434157967567444, 0.5249919295310974, -0.5847676992416382, 0.3440357446670532, 0.13581323623657227, 0.40938153862953186, -0.19052763283252716, -1.0555373430252075, -0.3619095981121063, 0.10820268839597702, 0.03511479124426842, -0.8858345746994019, 0.5759812593460083, 0.30704113841056824, 0.7758036255836487, 0.28568992018699646, -0.18522189557552338, 0.78215092420578, -0.3199867606163025, 1.0468366146087646, 0.12085884064435959, -1.0193101167678833, 0.6814542412757874, -0.4622950255870819, 0.2856541872024536, 0.8548007011413574, 0.4082285463809967, -0.708646833896637, -0.12381338328123093, -0.8255794644355774, -0.9775031208992004, 1.2945657968521118, 0.3340005874633789, 0.003045976860448718, 0.04693594202399254, -0.04030434787273407, 0.028096340596675873, 0.2414674013853073, -0.6547606587409973, -0.535202145576477, -0.5148891806602478, -0.130131796002388, -0.3533528447151184, -0.21167007088661194, -0.19791144132614136, -0.4206193685531616, 0.9806818962097168, 0.07847558706998825, 0.5174099802970886, 0.48807835578918457, -0.045896708965301514, -0.1277056187391281, 0.24861253798007965, 0.8736804127693176, 0.3212678134441376, -0.3074914515018463, -0.15607844293117523, 0.17558607459068298, -0.8155102133750916, 0.1191987544298172, 0.2648211717605591, -0.05823693051934242, 0.18803994357585907, 0.28620022535324097, 1.1452819108963013, 0.08008245378732681, -0.5755739808082581, 0.4978390336036682, 0.05312758684158325, -0.5781994462013245, -0.4831329882144928, -0.1494572013616562, 0.08737845718860626, 0.16546687483787537, 0.5660446882247925, -0.07095585018396378, 0.11587520688772202, -0.29714131355285645, 0.29236575961112976, 0.1034882515668869, -0.5400545597076416, -0.5776190757751465, 0.5130792260169983, 0.1344234198331833, -0.6254465579986572, 0.415976881980896, -0.23262636363506317, -0.30340877175331116, 0.607221245765686, 0.39552992582321167, 0.9390928149223328, -0.46859875321388245, 0.21585841476917267, 0.5201442241668701, 0.21176457405090332, -0.2880464494228363, 0.39133086800575256, -0.21716080605983734, -0.6415331363677979, -0.4478091597557068, -0.767463743686676, -0.23737402260303497, 0.47179219126701355, -0.7840771079063416, 0.2768469452857971, -0.22022366523742676, -0.18805502355098724, 0.04577498883008957, -0.05678167939186096, -0.5540846586227417, 0.30633217096328735, 0.2259429693222046, 0.9707618355751038, -0.919097900390625, 0.6478337645530701, 0.6919100880622864, -0.31970036029815674, -1.0006014108657837, -0.21562506258487701, 0.3453976809978485, -0.6446449756622314, 0.577227771282196, 0.0069618490524590015, -0.08989301323890686, -0.014787296764552593, -0.709588885307312, -1.079284906387329, 1.0622659921646118, 0.22076070308685303, -0.5620172619819641, 0.15376316010951996, 0.04475807771086693, 0.6138167381286621, -0.4254749119281769, 0.1674332618713379, 0.4669143557548523, 0.5467572212219238, 0.1842891126871109, -1.0270531177520752, -0.14112530648708344, -0.4742518663406372, -0.29542800784111023, -0.010728925466537476, -0.7539021372795105, 0.5214648246765137, 0.04902896285057068, -0.13160008192062378, -0.21503162384033203, 0.7293998003005981, 0.22014902532100677, 0.4545295536518097, 0.5437759757041931, 0.5952144861221313, 0.8697621822357178, -0.08931535482406616, 0.7160205245018005, -0.16682958602905273, 0.33234474062919617, 1.1556917428970337, -0.012249726802110672, 0.7225592136383057, 0.3102836310863495, -0.5374735593795776, 0.2969466745853424, 0.460601806640625, -0.22006191313266754, 0.668819010257721, 0.20552322268486023, -0.06044784560799599, 0.008742690086364746, 0.016475552693009377, -0.5539575219154358, 0.6593683958053589, 0.21166203916072845, -0.2758479714393616, 0.09099023044109344, 0.1975509226322174, 0.300231009721756, -0.07937275618314743, -0.2366885393857956, 0.804099977016449, -0.19191229343414307, -0.6036417484283447, 0.49589914083480835, -0.29489943385124207, 0.7252975106239319, -0.8350080251693726, 0.3496398627758026, -0.11841771751642227, -0.08663834631443024, -0.2956428825855255, -0.7509406805038452, 0.560829758644104, 0.2351837158203125, -0.41401705145835876, -0.298580139875412, 0.7064481377601624, -0.5369740724563599, -0.5140219330787659, 0.3265640139579773, 0.31201624870300293, 0.6574296355247498, 0.0742185115814209, -0.8009242415428162, 0.19207049906253815, 0.3728125989437103, -0.5833922028541565, 0.32916027307510376, 0.2468765527009964, 0.3012444078922272, 0.6327097415924072, 0.753494143486023, 0.5352693796157837, -0.012854650616645813, 0.027014626190066338, 0.8369027972221375, -0.6996284127235413, -0.5130208730697632, -0.7463733553886414, 0.627457320690155, -0.17649906873703003, -0.4493637979030609, 0.6239104866981506, 0.8119932413101196, 0.8807802796363831, 0.022969547659158707, 0.8035030364990234, -0.38826456665992737, 0.9133032560348511, -0.3739031255245209, 0.9835407733917236, -0.5200459361076355, -0.06559965014457703, -0.47868531942367554, -0.5742179155349731, -0.17344075441360474, 0.6486510038375854, -0.2984318733215332, -0.09946031123399734, 0.29302650690078735, 0.9944367408752441, 0.08887176215648651, 0.019296830520033836, 0.24151228368282318, 0.23100213706493378, 0.23283833265304565, 0.2155081331729889, 0.3543857932090759, -0.5172037482261658, 0.8710473775863647, -0.38140320777893066, -0.25476187467575073, -0.016513949260115623, -0.7154179811477661, -0.6442257761955261, -0.8966659903526306, -0.4248501658439636, -0.4768107533454895, 0.11001557856798172, 1.0432404279708862, 0.7198912501335144, -0.9630916714668274, -0.6028627753257751, 0.39267975091934204, -0.019442211836576462, -0.3496791124343872, -0.20631849765777588, 0.4923568069934845, 0.09087078273296356, -0.7139849662780762, 0.5313938856124878, 0.05938483029603958, 0.17111927270889282, 0.12480144947767258, -0.3723364472389221, -0.43866801261901855, -0.15068738162517548, 0.18428850173950195, 0.4528113007545471, -0.3720746338367462, -0.1645805984735489, 0.16233478486537933, 0.0895196795463562, 0.15548983216285706, 0.3156074583530426, -0.6944929957389832, 0.5172497630119324, 0.6635526418685913, 0.05145691707730293, 0.5152221918106079, 0.03730879724025726, 0.18093125522136688, -0.6621310114860535, 0.29784801602363586, 0.06682266294956207, 0.3021087646484375, 0.4810033440589905, -0.09726754575967789, 0.5377246737480164, 0.6019720435142517, -0.7419856190681458, -1.0214364528656006, -0.3012382686138153, -1.205209493637085, 0.1600838005542755, 1.4412062168121338, -0.15244731307029724, -0.21614664793014526, -0.2863498628139496, -0.19749046862125397, 0.4298546612262726, -0.8771345019340515, 0.49746251106262207, 0.9462704658508301, 0.018014686182141304, 0.15217837691307068, -0.4539387822151184, 0.735081136226654, -0.014659511856734753, -0.6513025760650635, 0.19759376347064972, 0.5990195274353027, 0.3469747006893158, 0.4967680871486664, 1.0834293365478516, -0.28819650411605835, 0.2426498532295227, 0.04468484967947006, 0.21207726001739502, -0.2257174551486969, -0.20045968890190125, -0.48939475417137146, 0.12526750564575195, -0.39742332696914673, -0.33271002769470215 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
indonlp/NusaX-MT
indonlp
2023-01-24T17:21:03Z
228
5
null
[ "task_categories:translation", "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" ]
2023-01-24T17:21:03Z
2023-01-24T17:05:31.000Z
2023-01-24T17:05:31
--- pretty_name: NusaX-MT 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: - translation dataset_info: features: - name: id dtype: string - name: text_1 dtype: string - name: text_2 dtype: string - name: text_1_lang dtype: string - name: text_2_lang dtype: string --- # Dataset Card for NusaX-MT ## 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/mt) - **Paper:** [EACL 2022](https://arxiv.org/abs/2205.15960) - **Point of Contact:** [GitHub](https://github.com/IndoNLP/nusax/tree/main/datasets/mt) ### 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-MT is a parallel corpus for training and benchmarking machine translation models across 10 Indonesian local languages + Indonesian and English. The data is presented in csv format with 12 columns, one column for each language. ### Supported Tasks and Leaderboards - Machine translation for Indonesian languages ### Languages All possible pairs of the following: - 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-MT is a dataset for machine translation in Indonesian langauges 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-MT 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.
[ -0.57045578956604, -0.35164108872413635, 0.04558977857232094, 0.5951414704322815, -0.5122923254966736, 0.04741664230823517, -0.3296034336090088, -0.21535255014896393, 0.7361279129981995, 0.6500048041343689, -0.4895237982273102, -0.9645563960075378, -0.7768057584762573, 0.743406355381012, 0.034244392067193985, 1.168320894241333, -0.3550910949707031, -0.3177109658718109, -0.4088667333126068, -0.6522743105888367, -0.18531648814678192, -0.4369952976703644, -0.4287424683570862, -0.018132125958800316, 0.3042224049568176, 0.4660447835922241, 0.6034416556358337, 0.6179978251457214, 0.32939612865448, 0.2903718054294586, -0.17423321306705475, 0.03221869096159935, -0.05580587312579155, -0.04683060571551323, 0.1114269495010376, -0.5503218173980713, -0.7099925875663757, -0.07919791340827942, 0.68289715051651, 0.7776327133178711, -0.15229211747646332, 0.5268382430076599, 0.2557879686355591, 0.9272379875183105, -0.5133377313613892, 0.4515645503997803, -0.17532451450824738, -0.0005911156767979264, -0.48027724027633667, 0.1330772489309311, 0.016308939084410667, -0.7828807234764099, -0.1215827688574791, -0.7218629121780396, -0.2846282720565796, -0.19318929314613342, 0.8828969597816467, 0.18160860240459442, -0.4964492619037628, 0.02819862775504589, -0.06547535955905914, 0.8942542672157288, -0.8686914443969727, 0.07327775657176971, 0.6895610690116882, 0.19670641422271729, 0.1305890530347824, -0.2910953164100647, -0.46246108412742615, 0.2671217918395996, -0.1066586822271347, 0.24086733162403107, -0.3157670497894287, -0.35215017199516296, 0.413228839635849, 0.3694090247154236, -0.6850029230117798, -0.2122727632522583, -0.3545651137828827, 0.12545832991600037, 0.8113406300544739, 0.21432152390480042, 0.16541744768619537, -0.6139768362045288, -0.2764732837677002, -0.2188090980052948, -0.5304218530654907, 0.228489950299263, 0.4582781493663788, 0.4932037889957428, -0.8714572191238403, 0.7216669917106628, -0.3388274908065796, 0.4583173990249634, -0.28929686546325684, -0.17068824172019958, 1.0731267929077148, -0.5814087986946106, -0.22252149879932404, 0.014845112338662148, 1.045594334602356, 0.6816025376319885, 0.20493416488170624, 0.2892063856124878, -0.09169574826955795, 0.17626385390758514, -0.20915503799915314, -0.6814432740211487, 0.09298654645681381, 0.25058573484420776, -0.6267349123954773, -0.3724732995033264, 0.10511040687561035, -0.9963183403015137, -0.1496720165014267, -0.488849937915802, 0.019656645134091377, -0.09814832359552383, -0.9055727124214172, 0.09748697280883789, -0.06376920640468597, 0.14353084564208984, -0.0036750242579728365, -0.33324095606803894, 0.5062252879142761, 0.38028794527053833, 0.8762883543968201, -0.07538891583681107, -0.1728382706642151, -0.11916551738977432, -0.0006893379613757133, -0.24907022714614868, 0.5564978718757629, -0.5056114792823792, -0.5283998847007751, 0.06666617095470428, 0.23850654065608978, -0.16330640017986298, -0.49959349632263184, 0.810137152671814, 0.10347326099872589, 0.22853411734104156, -0.6728423237800598, -0.1595335602760315, -0.2760542333126068, 0.3103625178337097, -0.6415010094642639, 1.4498026371002197, 0.1470147669315338, -0.9831557869911194, 0.31873849034309387, -0.7370425462722778, -0.545817494392395, -0.1797066032886505, -0.1540742814540863, -0.7044375538825989, -0.0023193182423710823, 0.4656056761741638, 0.6381637454032898, -0.43260473012924194, 0.2461296170949936, -0.42111435532569885, -0.07293427735567093, 0.17148160934448242, 0.006613047327846289, 1.1175885200500488, 0.412455290555954, -0.328074187040329, 0.02126995474100113, -0.8945364356040955, -0.2431056797504425, 0.32237493991851807, -0.05446505919098854, -0.7761473655700684, -0.3859519958496094, 0.07689309865236282, 0.3991965353488922, 0.2886449694633484, -0.7231391668319702, 0.24228473007678986, -0.4819765090942383, 0.04195704683661461, 0.5764324069023132, 0.06090596318244934, 0.33947300910949707, -0.2370472252368927, 0.7530502080917358, 0.23943372070789337, 0.3096069395542145, -0.07136785984039307, -0.7119972109794617, -0.5860464572906494, -0.15440958738327026, 0.1298156976699829, 0.6321916580200195, -0.7963151931762695, 0.5411394238471985, -0.46792998909950256, -0.5743181109428406, -0.6220742464065552, 0.24842821061611176, 0.534657895565033, 0.23352497816085815, 0.3773859143257141, -0.45629605650901794, -0.7457187175750732, -0.8555511832237244, -0.1146077886223793, 0.028627246618270874, 0.06916262954473495, 0.517139196395874, 0.6395308375358582, -0.23789837956428528, 0.7520822882652283, -0.6771609783172607, -0.500741183757782, -0.23131634294986725, 0.08922260254621506, 0.5462965369224548, 0.37405896186828613, 0.8113368153572083, -0.7136688828468323, -0.7809219360351562, 0.03560668230056763, -0.9543687701225281, -0.15851929783821106, 0.159358948469162, 0.04124826192855835, 0.5078301429748535, 0.2647337019443512, -0.5658944845199585, 0.5197411775588989, 0.7126898169517517, -0.38889309763908386, 0.3908449709415436, -0.07615841925144196, 0.2679208815097809, -1.5711102485656738, 0.22174537181854248, 0.2133321613073349, 0.1984952688217163, -0.269565224647522, -0.3347088098526001, -0.09833086282014847, -0.13205508887767792, -0.4720849096775055, 0.5988560914993286, -0.4326816201210022, -0.07138582319021225, 0.007389520760625601, 0.009172389283776283, -0.015037193894386292, 0.5135397911071777, -0.0875454917550087, 0.7058122158050537, 0.7863983511924744, -0.49990659952163696, 0.04922306165099144, 0.5781005620956421, -0.42053499817848206, 0.7273219227790833, -0.7677446007728577, -0.16968809068202972, -0.16130656003952026, 0.3105137348175049, -0.7964586615562439, -0.16958002746105194, 0.44245657324790955, -0.4881274998188019, 0.08643604815006256, -0.16070017218589783, -0.6347335577011108, -0.4768628776073456, -0.560188889503479, 0.3842121958732605, 0.41870957612991333, -0.26790857315063477, 0.5010318160057068, 0.5744916796684265, -0.3523441255092621, -0.6994841694831848, -0.8139423727989197, 0.0317508764564991, -0.3505425751209259, -0.4590660035610199, 0.006365424022078514, 0.022873537614941597, -0.2757432758808136, 0.14966946840286255, -0.004889302421361208, 0.09671322256326675, -0.09297791123390198, 0.5738338232040405, 0.10156083106994629, -0.1539793461561203, -0.25482821464538574, 0.33296918869018555, -0.3665001690387726, 0.17179268598556519, -0.10851401090621948, 0.370240181684494, -0.23622004687786102, 0.030834639444947243, -0.5139575004577637, 0.4743812680244446, 0.5739923119544983, -0.3704185485839844, 0.7977924346923828, 0.6893625855445862, -0.28225040435791016, 0.260560005903244, -0.510676920413971, -0.05599434673786163, -0.3534400463104248, 0.08195194602012634, -0.5872308015823364, -0.7411458492279053, 0.7808350920677185, 0.06403133273124695, 0.02151053212583065, 0.7429330945014954, 0.3986116051673889, 0.19786939024925232, 0.9741349220275879, 0.6001794338226318, -0.22681523859500885, 0.11135653406381607, -0.5110631585121155, -0.11307797580957413, -0.9242162108421326, -0.33793798089027405, -0.7642001509666443, -0.16091763973236084, -0.857637882232666, -0.3350085914134979, 0.15769162774085999, -0.32052475214004517, -0.2525014281272888, 0.6923704743385315, -0.5252366065979004, 0.31446215510368347, 0.48409807682037354, -0.06677895039319992, 0.10114170610904694, 0.23256640136241913, -0.3255212604999542, -0.3162161707878113, -0.6195085048675537, -0.4542519450187683, 1.3831337690353394, 0.35960736870765686, 0.3701239824295044, 0.016629861667752266, 0.8175644278526306, -0.0065183090046048164, 0.19578266143798828, -0.0162497591227293, 0.6446244716644287, -0.37607812881469727, -0.4366301894187927, -0.01744018867611885, -0.5085625648498535, -1.1351748704910278, -0.056585121899843216, -0.10302350670099258, -0.4749341905117035, 0.6351227760314941, -0.20573849976062775, -0.4013282358646393, 0.3609057366847992, -0.4466269612312317, 0.9000729322433472, 0.04613013193011284, -0.13515646755695343, -0.13946831226348877, -0.9303330779075623, 0.23782365024089813, 0.0902700200676918, 0.4558185636997223, -0.4463304281234741, -0.27084222435951233, 0.9937325716018677, -0.36551570892333984, 1.0799022912979126, -0.34717947244644165, 0.07452765852212906, 0.28849175572395325, -0.19850099086761475, 0.31901952624320984, 0.08637050539255142, -0.30181583762168884, 0.8422396779060364, 0.13851645588874817, -0.428640216588974, -0.31888657808303833, 0.876203715801239, -1.019845962524414, -0.08158653229475021, -0.760017454624176, -0.36941343545913696, 0.12216003239154816, 0.218367338180542, 0.027132460847496986, 0.19184374809265137, 0.16371256113052368, 0.37097570300102234, 0.3988536298274994, -0.42496031522750854, 0.2677653431892395, 0.4270159602165222, -0.27943700551986694, -0.9937503337860107, 1.048563003540039, 0.4250297546386719, 0.010789426974952221, 0.20666776597499847, 0.15709412097930908, -0.37629425525665283, -0.04546652361750603, -0.33032578229904175, 0.5244054794311523, -0.42053744196891785, -0.40488094091415405, -0.7606670260429382, 0.1529608964920044, -0.5292809009552002, -0.078312948346138, -0.3894558250904083, -0.5992869734764099, -0.15787814557552338, -0.24881680309772491, 0.571112871170044, 0.47986504435539246, -0.3519122004508972, 0.22631612420082092, -0.5414329171180725, 0.2258506417274475, -0.1097719594836235, 0.508211612701416, -0.22332556545734406, -0.30142757296562195, -0.22616365551948547, 0.03133777156472206, -0.01641509309411049, -0.6669476628303528, 0.6180889010429382, 0.003891142550855875, 0.2848849594593048, 0.26912808418273926, 0.2544547915458679, 0.6401001811027527, -0.06520639359951019, 0.8241846561431885, 0.16846275329589844, -0.5499002933502197, 0.7769876718521118, -0.36781907081604004, 0.44106319546699524, 0.8384004831314087, 0.6855058073997498, -0.4666236340999603, -0.29989904165267944, -0.9098471999168396, -1.109192132949829, 0.6490551233291626, 0.3578251004219055, 0.08746153861284256, -0.14799873530864716, 0.47706425189971924, 0.16829413175582886, 0.4557473063468933, -0.8024665117263794, -0.7459407448768616, -0.30014461278915405, -0.2537998557090759, -0.1535770148038864, -0.3217643201351166, -0.24799638986587524, -0.4254013001918793, 0.8427260518074036, -0.03141020983457565, 0.20437635481357574, 0.06201295182108879, 0.25897806882858276, -0.2235586792230606, 0.13886584341526031, 0.4770064651966095, 0.37389451265335083, -0.3573346436023712, -0.019850783050060272, 0.3323328197002411, -0.5211794972419739, -0.027013156563043594, 0.27535152435302734, -0.4247312843799591, 0.15966764092445374, 0.05007883906364441, 0.863080620765686, 0.3136793375015259, -0.35868820548057556, 0.5953789353370667, -0.1622793972492218, -0.3463606834411621, -0.6326374411582947, -0.28546085953712463, -0.12617439031600952, 0.005629163701087236, 0.28020381927490234, 0.29904577136039734, -0.0728440210223198, -0.08607443422079086, 0.1806672215461731, 0.1428358256816864, -0.30039867758750916, -0.45975640416145325, 0.7093936204910278, 0.1493435502052307, 0.03713906183838844, 0.3938297629356384, -0.13382412493228912, -0.19224464893341064, 0.6753430962562561, 0.27429473400115967, 1.0527902841567993, -0.38176414370536804, 0.3986645042896271, 0.9470618963241577, 0.5010820031166077, -0.05818567052483559, 0.599532961845398, -0.17637579143047333, -0.45291760563850403, -0.5361783504486084, -0.7705526947975159, -0.2813212275505066, 0.00971460435539484, -0.9760108590126038, 0.3826339840888977, -0.35552293062210083, -0.20575854182243347, -0.2413744032382965, 0.28305676579475403, -0.5907401442527771, 0.17447474598884583, -0.13222968578338623, 0.9341010451316833, -1.304863452911377, 0.7890576124191284, 0.9171275496482849, -0.8573405742645264, -0.6941086053848267, -0.2699757516384125, 0.21242570877075195, -0.531549870967865, 0.36041906476020813, 0.43627819418907166, 0.34428924322128296, -0.18671441078186035, -0.35489407181739807, -0.9261811971664429, 1.055053472518921, 0.290384441614151, -0.25219079852104187, 0.4124228358268738, 0.5154619216918945, 0.49223724007606506, -0.3220815360546112, 0.33626821637153625, 0.4532991647720337, 0.6701565384864807, -0.049868956208229065, -0.8384935855865479, 0.25456854701042175, -0.6567007899284363, 0.07210248708724976, 0.19447137415409088, -0.6414303779602051, 0.6697134375572205, 0.034006185829639435, -0.03961487114429474, -0.04018944501876831, 0.7512040138244629, 0.3922925293445587, 0.4698038101196289, 0.502230167388916, 0.9303028583526611, 0.33538705110549927, -0.2505207359790802, 1.2549850940704346, -0.25205931067466736, 0.12224452197551727, 0.8632749915122986, -0.18201248347759247, 0.9229236841201782, 0.4201253652572632, -0.4587028920650482, 0.6076799631118774, 0.500223696231842, 0.11168717592954636, 0.26547184586524963, -0.2623301148414612, -0.22748687863349915, -0.08676952123641968, -0.41153672337532043, -0.754910409450531, 0.2904709577560425, 0.2737576961517334, -0.2687644064426422, -0.09869898855686188, 0.222198948264122, 0.5183679461479187, 0.24754564464092255, -0.13471844792366028, 0.7156471014022827, 0.32468611001968384, -0.4903581440448761, 0.6193844676017761, -0.11240627616643906, 0.7165544033050537, -0.6800631284713745, 0.11853727698326111, -0.43930983543395996, 0.17333802580833435, -0.4424510896205902, -1.0785359144210815, 0.6453080773353577, 0.006700245663523674, -0.12142029404640198, -0.3756612539291382, 0.4554206430912018, -0.4011725187301636, -0.7264376878738403, 0.3078634440898895, 0.23439089953899384, 0.3388485014438629, -0.12450263649225235, -1.0453648567199707, 0.43788275122642517, 0.1392505168914795, -0.4015342593193054, 0.41803500056266785, 0.3954973518848419, -0.17922376096248627, 0.4934653639793396, 0.7792266011238098, 0.1606493443250656, -0.17272479832172394, 0.1755247265100479, 0.8645491600036621, -0.5908808708190918, -0.5568131804466248, -0.576710045337677, 0.7812754511833191, -0.4348422884941101, -0.6548369526863098, 1.1571615934371948, 0.8925315737724304, 0.9132797122001648, -0.06220138072967529, 0.8341637849807739, -0.15664441883563995, 0.7350757718086243, -0.000754893699195236, 0.5340161919593811, -0.725697934627533, 0.023511342704296112, -0.7136243581771851, -1.0081331729888916, -0.7079266905784607, 0.6282699704170227, -0.38711556792259216, -0.14204123616218567, 0.399250864982605, 0.8196721076965332, 0.06833586096763611, 0.05555984377861023, -0.022496523335576057, 0.4838079810142517, -0.02144397422671318, 0.4725663959980011, 0.13666443526744843, -0.8315925598144531, 0.5419386625289917, -0.7253190875053406, -0.380303293466568, 0.04921138659119606, -0.903372585773468, -0.9303041100502014, -0.8040985465049744, -0.699969470500946, -0.4685896635055542, -0.13089074194431305, 1.0353623628616333, 0.2469792366027832, -0.9353207945823669, -0.6108455657958984, 0.11291982978582382, 0.07140740752220154, -0.45863163471221924, -0.20480170845985413, 0.6226680278778076, 0.11451137810945511, -0.6494582891464233, 0.06184571608901024, 0.4162699580192566, -0.07651863247156143, -0.07501524686813354, -0.29177039861679077, -0.33481118083000183, -0.138676255941391, 0.7225677371025085, 0.6107316017150879, -0.5767853856086731, 0.2728712260723114, 0.09712374955415726, -0.07591482996940613, 0.13810808956623077, 0.2021288275718689, -0.6216586232185364, 0.4008951187133789, 0.4355221688747406, 0.49180617928504944, 0.526171088218689, -0.1772502362728119, 0.19281485676765442, -0.8362128138542175, 0.4305640161037445, -0.09298036992549896, 0.346866250038147, 0.4750202000141144, -0.1334572583436966, 0.7447406649589539, 0.5131523609161377, -0.3500339090824127, -1.0041351318359375, -0.18107743561267853, -1.2950397729873657, 0.08619904518127441, 1.3150267601013184, -0.00858208816498518, -0.4354877769947052, -0.11521249264478683, -0.27609783411026, 0.1917790025472641, -0.5309439897537231, 0.47754067182540894, 0.3796969950199127, 0.11568543314933777, -0.27439141273498535, -0.5896475315093994, 0.4326125383377075, 0.4749692678451538, -0.8790655732154846, 0.03621644899249077, 0.21162213385105133, 0.14459861814975739, 0.23308399319648743, 0.7201290130615234, -0.41299891471862793, 0.1579250991344452, -0.13681374490261078, 0.36662596464157104, 0.027191314846277237, 0.007162203546613455, -0.2707042992115021, 0.09778931736946106, -0.38812708854675293, -0.2467445731163025 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ajaykarthick/imdb-movie-reviews
ajaykarthick
2023-02-08T21:08:35Z
228
3
null
[ "task_categories:text-classification", "task_categories:token-classification", "task_categories:feature-extraction", "size_categories:10K<n<100K", "region:us" ]
2023-02-08T21:08:35Z
2023-02-08T18:30:11.000Z
2023-02-08T18:30:11
--- task_categories: - text-classification - token-classification - feature-extraction pretty_name: Movie-Reviews size_categories: - 10K<n<100K --- # IMDB Movie Reviews ![movie_reivews](images/movie_reviews.jpg) This is a dataset for binary sentiment classification containing substantially huge data. This dataset contains a set of 50,000 highly polar movie reviews for training models for text classification tasks. The dataset is downloaded from https://ai.stanford.edu/~amaas/data/sentiment/aclImdb_v1.tar.gz This data is processed and splitted into training and test datasets (0.2% test split). Training dataset contains 40000 reviews and test dataset contains 10000 reviews. Equal distribution among the labels in both training and test dataset. in training dataset, there are 20000 records for both positive and negative classes. In test dataset, there are 5000 records both the labels. ### Citation Information ``` @InProceedings{maas-EtAl:2011:ACL-HLT2011, author = {Maas, Andrew L. and Daly, Raymond E. and Pham, Peter T. and Huang, Dan and Ng, Andrew Y. and Potts, Christopher}, title = {Learning Word Vectors for Sentiment Analysis}, booktitle = {Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies}, month = {June}, year = {2011}, address = {Portland, Oregon, USA}, publisher = {Association for Computational Linguistics}, pages = {142--150}, url = {http://www.aclweb.org/anthology/P11-1015} } ```
[ -0.8050450682640076, -0.532614529132843, 0.05731147527694702, 0.1678309589624405, -0.6235657334327698, 0.09090666472911835, -0.06769533455371857, -0.23958371579647064, 0.3872784674167633, 0.331085205078125, -0.514849841594696, -0.6738424897193909, -0.6633319854736328, 0.14149950444698334, -0.6323468685150146, 1.5198839902877808, 0.13854236900806427, 0.5193691849708557, -0.23822849988937378, -0.4204486012458801, -0.11213157325983047, -0.8872609734535217, -0.37046241760253906, -0.02623339742422104, 0.5472036600112915, 0.3563959002494812, 0.6410241723060608, 0.30290985107421875, 0.41072165966033936, 0.21620148420333862, 0.05695598945021629, -0.04581625759601593, -0.38974884152412415, 0.17501193284988403, -0.21567793190479279, -0.3313043415546417, -0.2819520831108093, 0.4154944121837616, 0.6586266160011292, 0.47705402970314026, 0.006290500983595848, 0.2923891544342041, -0.11760473251342773, 0.8025211095809937, -0.36320382356643677, 0.30357393622398376, -0.399582177400589, 0.18906155228614807, -0.21004542708396912, 0.1207897737622261, -0.25244903564453125, -0.4255457818508148, 0.003054026747122407, -0.15924924612045288, 0.4955129325389862, 0.24154892563819885, 1.0535029172897339, -0.014157054014503956, -0.29481786489486694, -0.18513856828212738, -0.6504712700843811, 0.8763188719749451, -0.5604655146598816, 0.258553683757782, 0.1601215898990631, -0.06130376085639, 0.07301787286996841, -0.018740441650152206, -1.0590474605560303, 0.07210883498191833, 0.4160885512828827, -0.04519287124276161, -0.3428244888782501, -0.04805060476064682, 0.48924386501312256, 0.4414048492908478, -0.4074884355068207, -0.04861573874950409, -0.5652916431427002, -0.2361646592617035, 0.5882627964019775, 0.06296109408140182, -0.06440791487693787, -0.5891494750976562, -0.40348684787750244, -0.6744596362113953, -0.3574851155281067, 0.2488626092672348, 0.41989800333976746, 0.14831723272800446, -0.1757645457983017, 0.867024838924408, -0.09705114364624023, 0.5088506937026978, -0.20443378388881683, -0.030840568244457245, 0.9961543679237366, -0.3692725896835327, -0.27682650089263916, 0.08568653464317322, 1.0407353639602661, 0.745797872543335, 0.3252420425415039, 0.187392458319664, -0.2558290660381317, 0.5283470153808594, 0.37003806233406067, -0.7412161231040955, -0.010727673768997192, 0.3018486201763153, -0.45415055751800537, -0.3836251199245453, 0.2593468129634857, -0.9940881133079529, -0.7249162197113037, -0.41657134890556335, 0.32065919041633606, -0.43298453092575073, -0.1463935524225235, -0.09547218680381775, -0.3127731680870056, 0.5004581212997437, 0.0998736098408699, -0.4218564033508301, -0.15041328966617584, 0.656768262386322, 0.6176191568374634, -0.07503872364759445, -0.3089340925216675, -0.2219371795654297, -0.3744626045227051, -0.17451198399066925, 0.8756932616233826, -0.4199031889438629, -0.3800957500934601, 0.00022652000188827515, 0.013514474034309387, 0.10890357941389084, -0.543494701385498, 0.7018653750419617, -0.5479772686958313, 0.3511638939380646, -0.15471331775188446, -0.48180925846099854, -0.5229523181915283, 0.4716914892196655, -0.5581891536712646, 0.8703307509422302, 0.10518714785575867, -0.9079763293266296, 0.41823655366897583, -0.24249276518821716, -0.22866453230381012, -0.33579540252685547, -0.07425493746995926, -0.5570986866950989, 0.12137026339769363, 0.12903504073619843, 0.5019557476043701, -0.4847610592842102, 0.1331419050693512, -0.5709472298622131, -0.2552720904350281, 0.5913487076759338, -0.20319341123104095, 0.8109732270240784, 0.38324710726737976, -0.34486129879951477, -0.1268610805273056, -0.8387771844863892, -0.09673195332288742, -0.13617682456970215, -0.29418036341667175, -0.31772562861442566, -0.06353003531694412, -0.030977405607700348, 0.47480952739715576, 0.0608866848051548, -0.8420752882957458, 0.18266868591308594, -0.2593722939491272, -0.02240222878754139, 0.729502260684967, 0.25041183829307556, 0.23551298677921295, -0.2129185050725937, 0.7959688305854797, 0.5228636264801025, 0.212308868765831, 0.10204324126243591, -0.44979459047317505, -0.976596474647522, -0.02121797390282154, 0.28376010060310364, 0.6627749800682068, -0.7021484375, 0.7378284931182861, -0.2543860971927643, -0.6237694025039673, -0.6776114106178284, 0.14531296491622925, 0.4067431390285492, 0.42238399386405945, 0.3410376310348511, -0.6531371474266052, -0.5291707515716553, -0.9266601800918579, -0.15034285187721252, -0.3970935642719269, 0.06541051715612411, 0.2984638512134552, 0.2832377552986145, -0.5501254200935364, 0.8445121645927429, -0.4931950867176056, -0.6932903528213501, -0.06041719764471054, 0.21025995910167694, 0.5501688718795776, 0.10537979751825333, 0.3969874382019043, -0.5658711791038513, -0.4508318603038788, -0.4488978385925293, -0.908865213394165, 0.08209336549043655, 0.08956476300954819, -0.29110872745513916, 0.4112529754638672, 0.41153982281684875, -0.34377673268318176, 0.12412851303815842, 0.5039120316505432, -0.5293107032775879, 0.6078183650970459, 0.21011166274547577, 0.1399078071117401, -0.9571460485458374, -0.20029206573963165, 0.3549312353134155, 0.1415400505065918, -0.12642139196395874, -0.3980804681777954, -0.09409349411725998, -0.0004456639289855957, -0.2883642911911011, 0.2396291345357895, -0.313973069190979, 0.18718916177749634, -0.1424485743045807, 0.10973145812749863, -0.012660541571676731, 0.7353197336196899, -0.17314814031124115, 0.411736398935318, 0.7369071841239929, -0.5465528964996338, 0.7656993865966797, 0.6105915904045105, -0.6162405610084534, 0.7917112708091736, -0.2716679275035858, 0.013170141726732254, -0.42212000489234924, 0.19149936735630035, -0.8931930065155029, -0.039968784898519516, 0.2708352506160736, -0.6133260130882263, 0.12234273552894592, 0.05299678072333336, -0.5248773097991943, -0.297634482383728, -0.7554917931556702, 0.02948017790913582, 0.5029565691947937, -0.4046006202697754, 0.383754163980484, 0.895653486251831, -0.23814581334590912, -1.010912299156189, -0.45146405696868896, 0.03345610201358795, -0.06454204767942429, -0.24294120073318481, -0.23705020546913147, -0.15633872151374817, -0.3358401954174042, 0.14971956610679626, 0.168182373046875, 0.03968319296836853, -0.3861241638660431, 0.5010440349578857, 0.4310159683227539, 0.060702476650476456, 0.46944504976272583, -0.04256787523627281, -0.00783751904964447, 0.2903466522693634, 0.03348226472735405, 0.505950927734375, -0.2353915274143219, 0.2027491182088852, -0.06509450078010559, 0.25596630573272705, 0.7695960998535156, 0.041130904108285904, 0.8401260375976562, 0.799099326133728, -0.04166117683053017, -0.28710830211639404, -0.49221163988113403, -0.020689599215984344, -0.35914066433906555, 0.5695000290870667, -0.06961137801408768, -0.47730472683906555, 0.1988770067691803, 0.5275853276252747, 0.17820096015930176, 0.675672709941864, 0.5552787780761719, -0.41130906343460083, 1.106513500213623, 0.3968436121940613, -0.5325334072113037, 0.7084412574768066, -0.5443071126937866, 0.3198610544204712, -0.8222696781158447, -0.5007261633872986, -0.5710969567298889, -0.39883553981781006, -0.6289187669754028, -0.30708205699920654, 0.34951886534690857, -0.028084052726626396, -0.28715255856513977, 0.10108640044927597, -0.5365990996360779, 0.29277098178863525, 0.6254348158836365, 0.10116637498140335, 0.1740625947713852, 0.5422208905220032, -0.31788891553878784, -0.0005808889400213957, -0.3507492244243622, -0.40964362025260925, 1.1256359815597534, 0.39478790760040283, 0.9084548354148865, 0.0884433314204216, 0.5085377097129822, 0.503065824508667, 0.3416355848312378, -1.0114340782165527, 0.6905617117881775, -0.4797114431858063, -0.7868548035621643, -0.18179483711719513, -0.465092271566391, -0.7550525069236755, 0.18735621869564056, -0.5422254204750061, -0.05670424923300743, 0.45149660110473633, -0.09444746375083923, 0.16042371094226837, 0.353012353181839, -0.7605723738670349, 0.5308747291564941, -0.14111095666885376, -0.11835271865129471, -0.4171609580516815, -0.5436441898345947, 0.19822077453136444, -0.2371390461921692, 0.5281187891960144, -0.3314010500907898, 0.19676776230335236, 1.1476794481277466, -0.3230537474155426, 0.7303459644317627, -0.4980754852294922, 0.04900104179978371, 0.46605613827705383, 0.03155069425702095, 0.20361198484897614, -0.10178069770336151, -0.25483500957489014, 0.32861849665641785, -0.14802494645118713, -0.1590755581855774, -0.2665770649909973, 0.8431777954101562, -1.1559052467346191, -0.23722070455551147, -0.9785690307617188, -0.18065917491912842, -0.3812594413757324, 0.04759849235415459, 0.3407600224018097, 0.6558035016059875, -0.01881762407720089, 0.3897401988506317, 0.6119876503944397, -0.4796135723590851, 0.23414984345436096, 0.40058639645576477, -0.17282861471176147, -0.6788485050201416, 1.1314501762390137, 0.20275436341762543, -0.16474884748458862, 0.13274522125720978, -0.0176701620221138, -0.46884968876838684, -0.506570041179657, -0.34356915950775146, 0.6085177063941956, -0.8796741962432861, -0.39514967799186707, -0.8824584484100342, -0.31715652346611023, -0.2671404182910919, 0.20553956925868988, -0.026077957823872566, -0.45985162258148193, -0.32901859283447266, -0.42737656831741333, 0.49201643466949463, 0.8786575794219971, 0.017179708927869797, 0.15913338959217072, -0.7609873414039612, 0.29058587551116943, 0.07992038875818253, 0.5627020001411438, 0.06837833672761917, -0.6480466723442078, -0.42145460844039917, -0.019258223474025726, -0.443611741065979, -0.7556608319282532, 0.7053094506263733, 0.2859877347946167, 0.35343292355537415, 0.429428368806839, 0.1988518089056015, 0.2307763546705246, -0.09064862132072449, 0.8880071640014648, 0.3663097620010376, -0.654841423034668, 0.2356920689344406, -0.14318589866161346, 0.35256144404411316, 0.773672342300415, 0.7103102803230286, -0.5159370303153992, -0.42687761783599854, -0.813345730304718, -0.9391273260116577, 0.8876914978027344, -0.23389020562171936, 0.2865753173828125, -0.014453030191361904, 0.1375800371170044, 0.20694726705551147, 0.5418329834938049, -0.9131473898887634, -0.5651050209999084, -0.3186831772327423, -0.3671083450317383, -0.5775954127311707, -0.4871218800544739, -0.0842118114233017, -0.5324617028236389, 1.1924000978469849, 0.08121874183416367, 0.5345780849456787, 0.008518711663782597, -0.1064106747508049, -0.04237763583660126, 0.3302810788154602, 0.07796648889780045, 0.13531234860420227, -0.4777143597602844, 0.20353364944458008, -0.09783946722745895, -0.8479796051979065, 0.2432331144809723, -0.05446920171380043, -0.10300102829933167, 0.016726525500416756, 0.15807420015335083, 0.9189531803131104, -0.3355872929096222, -0.6265523433685303, 0.6384229063987732, -0.3212601840496063, -0.22838689386844635, -0.4198949933052063, 0.05148444324731827, -0.25227493047714233, 0.04464311525225639, 0.42417776584625244, 0.30875641107559204, 0.133963480591774, -0.6781318783760071, 0.23384270071983337, 0.41395580768585205, -0.7518751621246338, -0.2230304777622223, 0.09270908683538437, 0.18476906418800354, 0.01324386801570654, 0.9503703713417053, -0.3416203260421753, -0.6552350521087646, 0.2888307273387909, -0.043555136770009995, 0.9443914294242859, 0.17431901395320892, 0.3592883348464966, 0.7973489165306091, 0.19393834471702576, 0.1643962413072586, 0.38066184520721436, 0.06106989085674286, -0.8900705575942993, -0.08506666123867035, -1.173021674156189, -0.58798748254776, 0.07163975387811661, -0.49103978276252747, 0.5307424068450928, -0.6038739681243896, -0.2600749731063843, 0.17959915101528168, 0.0032450659200549126, -0.4528343379497528, 0.45194342732429504, 0.3454386293888092, 0.6488767266273499, -0.8732516765594482, 0.6999749541282654, 0.6742014288902283, -0.5569360852241516, -0.7416929006576538, -0.27105870842933655, -0.07476601004600525, -0.37564295530319214, 0.44846993684768677, 0.21078135073184967, -0.055254578590393066, -0.16503028571605682, -0.764748215675354, -0.5194010138511658, 0.6251810193061829, 0.05010749399662018, -0.528626024723053, 0.2181100845336914, -0.03125923499464989, 0.7573786377906799, -0.38589608669281006, 0.08262597769498825, 0.38132235407829285, 0.20070210099220276, 0.04082444682717323, -0.42281511425971985, -0.3534240424633026, -0.49959754943847656, -0.4982103109359741, 0.17638462781906128, -0.5215802192687988, 0.8639975190162659, -0.15058884024620056, -0.13610470294952393, -0.36437615752220154, 0.4023154079914093, 0.3297763764858246, 0.2512599229812622, 0.8149082660675049, 0.5647014379501343, 0.5656152367591858, -0.1473025530576706, 1.051448941230774, -0.011334138922393322, 0.5169630646705627, 0.6532981395721436, -0.03217963129281998, 1.0415825843811035, 0.4026249051094055, -0.45345279574394226, 0.9297187924385071, 0.6778846383094788, -0.40787896513938904, 0.4726860225200653, 0.21172501146793365, -0.29501351714134216, -0.14161182940006256, -0.14860078692436218, -0.3460659086704254, 0.29104211926460266, 0.412510484457016, -0.6239933371543884, -0.015950758010149002, 0.3027828335762024, 0.06993301212787628, -0.22867625951766968, -0.3462080657482147, 0.8349720239639282, 0.22791247069835663, -0.7588921189308167, 0.6974384188652039, -0.07072805613279343, 0.8447443246841431, -0.4988532066345215, 0.018060239031910896, -0.1446933150291443, 0.3653677999973297, -0.45615527033805847, -0.944244921207428, 0.06073931232094765, 0.22421903908252716, -0.5530969500541687, -0.03384247422218323, 0.24908336997032166, -0.35105130076408386, -0.6679472327232361, 0.29028815031051636, 0.1491130292415619, 0.38078463077545166, 0.05729421600699425, -0.8689116835594177, 0.07608813792467117, 0.35575464367866516, -0.25656911730766296, 0.2803229093551636, 0.27947577834129333, -0.05054756626486778, 0.5258941054344177, 0.623191773891449, 0.11737899482250214, 0.12253913283348083, 0.07437055557966232, 0.824950635433197, -0.9594650864601135, -0.6152276992797852, -0.5973052382469177, 0.17649927735328674, -0.12372918426990509, -0.3763386011123657, 0.8760154247283936, 0.6585209369659424, 0.7275556325912476, -0.34023863077163696, 0.8631053566932678, -0.29332971572875977, 0.8590808510780334, -0.2361953854560852, 0.5118147134780884, -0.2805381715297699, 0.28954076766967773, -0.33478066325187683, -1.3038134574890137, -0.32754069566726685, 0.6491584181785583, -0.24813513457775116, 0.03486582636833191, 0.8368681073188782, 0.8093765377998352, 0.24384517967700958, 0.09329070895910263, 0.03436368331313133, 0.6930397152900696, 0.27471858263015747, 0.15929768979549408, 0.813610851764679, -0.45639678835868835, 0.45244166254997253, -0.3172489404678345, -0.38950875401496887, -0.22820931673049927, -0.6754909157752991, -0.7185205817222595, -0.6760110259056091, -0.4226865768432617, -0.9182243347167969, -0.38549500703811646, 1.0564032793045044, 0.3774862587451935, -1.138211727142334, -0.3993369936943054, 0.2964826822280884, 0.1040768176317215, -0.03487612307071686, -0.2338087409734726, 0.3338264524936676, -0.11579018086194992, -0.7026751041412354, -0.002114727161824703, -0.07892758399248123, -0.09932542592287064, -0.40744608640670776, -0.02628328651189804, -0.2889038026332855, 0.05061820521950722, 0.5572183132171631, 0.15550974011421204, -0.25832247734069824, -0.03228472173213959, -0.12544682621955872, -0.23248296976089478, 0.054964758455753326, 0.45100098848342896, -0.8180705904960632, 0.7416203022003174, 0.6950953006744385, 0.11330060660839081, 0.5692463517189026, 0.10221214592456818, 0.3659994900226593, -0.7228437662124634, -0.05148416385054588, 0.13387812674045563, 0.4261377453804016, 0.5231845378875732, -0.26662418246269226, 0.4707059860229492, 0.3529340624809265, -0.5198167562484741, -0.8781604170799255, -0.19016677141189575, -1.4365179538726807, -0.020121781155467033, 1.340706706047058, 0.20301567018032074, -0.2536773979663849, -0.2945636510848999, -0.32624709606170654, 0.0357554666697979, -0.7043295502662659, 0.7219402194023132, 1.0158368349075317, -0.2417042851448059, 0.056911978870630264, -0.16933289170265198, 0.499875545501709, 0.17493711411952972, -0.5398865938186646, 0.044102415442466736, 0.6706827282905579, 0.39943358302116394, 0.40512025356292725, 0.3009895086288452, -0.5387262105941772, 0.07756513357162476, -0.16294769942760468, 0.5839927196502686, 0.01902300864458084, -0.24387158453464508, -0.8168733716011047, 0.3695978820323944, 0.1607288271188736, -0.13317932188510895 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Sunbird/Experimental-Speech-Salt-Ateso-16k
Sunbird
2023-06-19T10:39:18Z
228
0
null
[ "region:us" ]
2023-06-19T10:39:18Z
2023-06-17T04:05:30.000Z
2023-06-17T04:05:30
--- dataset_info: features: - name: audio sequence: sequence: float32 - name: sample_rate dtype: int64 - name: transcription dtype: string - name: speaker_id dtype: string splits: - name: train num_bytes: 1726534428 num_examples: 4211 - name: validation num_bytes: 96950913 num_examples: 231 - name: test num_bytes: 105595730 num_examples: 250 download_size: 931410865 dataset_size: 1929081071 --- # Dataset Card for "Experimental-Speech-Salt-Ateso-16k" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.547006368637085, -0.30407509207725525, 0.1981450319290161, 0.32336267828941345, -0.3943634033203125, 0.041974522173404694, -0.30449727177619934, -0.29481297731399536, 0.7405056357383728, 0.15134379267692566, -0.6738700866699219, -0.7775400280952454, -0.4787783920764923, -0.1386144906282425, -0.35508182644844055, 1.2258574962615967, 0.34386512637138367, 0.45431604981422424, -0.111826591193676, 0.060706328600645065, -0.24885673820972443, -0.1382332444190979, -1.004762053489685, -0.5861135125160217, 0.7956559062004089, 0.8669578433036804, 0.41285306215286255, 0.5198542475700378, 0.4541950821876526, 0.2165595144033432, -0.14998653531074524, -0.3087750971317291, -0.4324025511741638, 0.09791752696037292, -0.32902488112449646, -0.43307578563690186, -1.0725053548812866, 0.11410544812679291, 0.8887742757797241, 0.42318886518478394, -0.2797353267669678, 0.5221023559570312, -0.2724590301513672, 0.3577793836593628, -0.275099515914917, 0.5476607084274292, -0.34295016527175903, -0.08451984822750092, -0.6469504237174988, -0.15114295482635498, 0.03067377768456936, -0.12990057468414307, -0.05282236263155937, -0.9231994152069092, 0.1685774177312851, 0.2067735642194748, 0.9264629483222961, 0.20618370175361633, 0.15944954752922058, -0.29513218998908997, -0.4838552474975586, 0.38260287046432495, -0.7045615315437317, 0.4110950529575348, 0.9082902669906616, 0.27361583709716797, 0.13286180794239044, -0.6298960447311401, -0.5437657237052917, -0.06675662845373154, 0.2426021844148636, 0.3752572536468506, 0.20118802785873413, 0.16761493682861328, 0.3534320294857025, 0.7329349517822266, -0.3825099468231201, 0.020449325442314148, -0.7247917056083679, -0.4560651183128357, 0.8804231882095337, 0.1104351207613945, 0.30378100275993347, -0.17824093997478485, 0.039036624133586884, -0.22906124591827393, -0.30223822593688965, -0.24684272706508636, 0.7141508460044861, 0.5544520020484924, -1.0690537691116333, 0.6066831946372986, -0.10306239873170853, 0.4571857750415802, 0.0013143708929419518, 0.39631056785583496, 0.8424229621887207, -0.47178974747657776, 0.04860370606184006, 0.44797247648239136, 0.5712257623672485, 0.14461807906627655, 0.12272278219461441, 0.118283212184906, -0.2138788104057312, 0.2279554307460785, 0.11769634485244751, -1.030948281288147, -0.8560740351676941, 0.25013381242752075, -0.3819548189640045, -0.39815768599510193, 0.06911765038967133, -1.1305360794067383, -0.5235852599143982, -0.3430473208427429, 0.18032118678092957, -0.19220609962940216, -0.7709538340568542, -0.31871744990348816, -0.6491000652313232, 0.2701897919178009, -0.11960311233997345, -0.7472929954528809, 0.8834940791130066, 0.6329015493392944, 0.6845148205757141, -0.14969907701015472, -0.27936139702796936, -0.6148207187652588, -0.041943252086639404, -0.41640210151672363, 0.8944104313850403, -0.7735981941223145, -0.5063349604606628, -0.19304770231246948, 0.019557658582925797, 0.21855580806732178, -0.49947211146354675, 1.0167983770370483, -0.20497719943523407, -0.07636699825525284, -0.4373965859413147, -0.6665129661560059, 0.21225418150424957, 0.21404318511486053, -0.7725247740745544, 1.406201720237732, 0.15790246427059174, -0.6036668419837952, 0.3228168487548828, -1.3517776727676392, -0.25937455892562866, 0.7009312510490417, -0.22666345536708832, -0.28961098194122314, 0.09805510938167572, -0.15356725454330444, 0.30462706089019775, -0.22037373483181, 0.31382137537002563, -0.5514758825302124, -0.259024977684021, 0.39011451601982117, 0.02067558281123638, 0.5775982141494751, 0.5287755131721497, 0.1254696547985077, 0.3075602054595947, -1.1903173923492432, -0.06915876269340515, 0.28670164942741394, -0.2411080002784729, -0.3387628495693207, -0.36604687571525574, 0.38541045784950256, -0.0993807464838028, 0.3378732204437256, -0.8905879259109497, 0.05417117848992348, -0.22819891571998596, 0.17048850655555725, 0.6998884677886963, 0.11318474262952805, 0.23273231089115143, -0.2985939681529999, 0.5532313585281372, 0.15558375418186188, 0.052454862743616104, 0.28319987654685974, -0.44292667508125305, -0.7494373321533203, -0.12513063848018646, 0.8854838013648987, 0.5553990602493286, -0.5171124935150146, 0.30420348048210144, -0.020366251468658447, -0.8417847156524658, -0.7301496267318726, 0.005793995689600706, 0.3547256588935852, 0.39090386033058167, 0.24669039249420166, -0.33808085322380066, -0.8805727362632751, -0.9837011694908142, 0.10049371421337128, -0.17309758067131042, 0.00820368342101574, 0.5180469751358032, 0.8169642090797424, -0.160282701253891, 0.586145281791687, -0.801421582698822, -0.23253412544727325, 0.07304326444864273, -0.0724635124206543, 0.18000970780849457, 0.7983422875404358, 0.4937674105167389, -0.7719672322273254, -0.2485484480857849, -0.5135446190834045, -0.16277679800987244, -0.33260294795036316, 0.5070585012435913, -0.4611886441707611, -0.2646862268447876, 0.24723097681999207, -0.23010891675949097, 0.4499068558216095, 0.9012273550033569, -0.47638747096061707, 0.28111904859542847, 0.01947079226374626, 0.23687098920345306, -1.4146060943603516, 0.27139389514923096, -0.07526083290576935, -0.13276763260364532, -0.6325651407241821, -0.18072131276130676, 0.026254110038280487, -0.3368404805660248, -0.32985422015190125, 0.5638501048088074, -0.3718452453613281, -0.13107901811599731, -0.28476598858833313, 0.3022218644618988, -0.32400932908058167, 0.26573148369789124, 0.27063021063804626, 0.8018648624420166, 1.1652624607086182, -0.5679477453231812, 0.9567532539367676, 0.5050708651542664, -0.030603623017668724, 1.0262402296066284, -1.0133994817733765, 0.3153248727321625, 0.07444319128990173, 0.17124411463737488, -0.7929670810699463, -0.668108344078064, 0.6438032984733582, -0.7032513618469238, 0.3419109284877777, -0.33319664001464844, -0.6833705902099609, -0.2896175980567932, -0.35684025287628174, 0.8114315271377563, 0.5016980767250061, -0.3171041011810303, 0.290679931640625, 0.9239068627357483, -0.4182469844818115, 0.0037676587235182524, -1.0393760204315186, 0.1755559891462326, -0.2730470299720764, -0.12101729959249496, 0.5206901431083679, -0.4682401120662689, 0.0028494885191321373, 0.043005816638469696, 0.41775742173194885, -0.17421448230743408, -0.30692699551582336, 0.49087244272232056, 0.04421605169773102, -0.1470344215631485, 0.6376755833625793, -0.05938403680920601, -0.5007501244544983, 0.16894648969173431, 0.15930336713790894, 0.5991913080215454, -0.29148438572883606, 0.01898883283138275, -0.39060884714126587, 0.2622683346271515, 0.05767310410737991, -0.12978000938892365, 0.4822429120540619, 0.8170607089996338, -0.6966239809989929, -0.24031919240951538, -0.35058560967445374, -0.28910019993782043, -0.44144994020462036, 0.15280704200267792, -0.3102723956108093, -0.45866063237190247, 0.7294989228248596, -0.17893177270889282, -0.18261583149433136, 0.6007938385009766, 0.7275970578193665, -0.009759893640875816, 0.6169153451919556, 0.28259506821632385, -0.23694156110286713, 0.4593791961669922, -0.07760368287563324, -0.30055785179138184, -0.9187809824943542, -0.27299952507019043, -0.6117349863052368, -0.6961947083473206, -0.586089551448822, -0.21470797061920166, -0.06612493097782135, -0.47261732816696167, -0.08721291273832321, 0.16516615450382233, -0.40575671195983887, 0.22083625197410583, 0.6737297177314758, 0.20090758800506592, -0.010735485702753067, -0.3317784070968628, 0.016114886850118637, 0.20124581456184387, -0.6536333560943604, -0.14912505447864532, 0.9615689516067505, 0.45081475377082825, 0.9407264590263367, 0.04685158655047417, 0.789794921875, 0.22098147869110107, 0.03378484025597572, -0.6094210147857666, 0.6056214570999146, 0.18526628613471985, -0.8408002257347107, -0.17267639935016632, -0.2418176382780075, -0.8836318850517273, -0.3466559648513794, -0.24337740242481232, -0.3197554349899292, 0.12597514688968658, 0.47380852699279785, -0.10375197231769562, 0.04880106821656227, -0.7576988339424133, 1.0021449327468872, 0.04435567930340767, 0.029375329613685608, -0.14664913713932037, -0.648454487323761, 0.12924334406852722, 0.19597400724887848, 0.33338069915771484, -0.41106802225112915, -0.34451642632484436, 1.3653249740600586, -0.289228618144989, 1.18088960647583, -0.4476395845413208, -0.0778023898601532, 0.2611364424228668, -0.22681769728660583, 0.1556861400604248, 0.36283841729164124, -0.07854142040014267, 0.09498797357082367, 0.0995873287320137, -0.3864295184612274, -0.30124497413635254, 0.9950993657112122, -0.7456656694412231, 0.19812949001789093, -0.5180103182792664, -0.7860366702079773, -0.24712930619716644, 0.29046139121055603, 0.23330450057983398, 0.7136178612709045, -0.45746007561683655, 0.029362669214606285, 0.6799573302268982, 0.15530052781105042, 0.1701391488313675, 0.5607575178146362, -0.2161458134651184, -0.6116971373558044, 1.1491854190826416, 0.24715645611286163, 0.032264478504657745, -0.04561522975564003, 0.7101977467536926, -0.20806434750556946, -0.7437605261802673, -0.49911314249038696, 0.34797972440719604, -0.4387381970882416, -0.31424006819725037, -0.2807924449443817, -0.4085647463798523, -0.5031687617301941, 0.21503116190433502, -0.6173135042190552, -0.5629042387008667, -0.6312534809112549, -0.6481980681419373, 1.0615736246109009, 0.5994695425033569, -0.6010134220123291, 0.3997032940387726, -0.6907868385314941, 0.658301830291748, -0.09551448374986649, 1.1397954225540161, -0.3784787356853485, -0.7937595248222351, -0.26261380314826965, 0.17230725288391113, 0.19661147892475128, -0.8582980036735535, 0.05397796630859375, 0.530457079410553, 0.608435332775116, 0.253910094499588, 0.19279995560646057, 0.7320874929428101, -0.2877490222454071, 0.7978980541229248, -0.16074621677398682, -0.8951022624969482, 0.9193167686462402, -0.31850871443748474, 0.5851871371269226, 0.9040032029151917, 0.41074252128601074, -0.7232328057289124, -0.2903050482273102, -1.1346979141235352, -0.6187830567359924, 0.7562484741210938, 0.2747984528541565, 0.2577928602695465, 0.15430179238319397, 0.18770967423915863, 0.09822192788124084, 0.3358802795410156, -0.5944900512695312, -0.8080459237098694, -0.09168601036071777, -0.5504090785980225, -0.08762866258621216, -0.5234562158584595, -0.3585790693759918, -0.6795897483825684, 1.0272160768508911, 0.056488100439310074, 0.2946913242340088, 0.03410795331001282, 0.2571902275085449, -0.18048737943172455, 0.20556046068668365, 0.7906522750854492, 0.4624210000038147, -0.33104515075683594, 0.3400697708129883, 0.14050185680389404, -0.781230092048645, -0.3248494565486908, 0.42968428134918213, -0.19432468712329865, -0.08327524363994598, 0.2731699049472809, 0.9877193570137024, 0.18661899864673615, -0.6064520478248596, 0.2411486655473709, -0.10223592817783356, -0.3125899136066437, -0.5601366758346558, 0.1742781549692154, 0.4178835451602936, -0.016616957262158394, -0.025444619357585907, -0.2715108394622803, 0.33523598313331604, -0.3214191496372223, 0.3629525601863861, -0.06046512722969055, -0.6596141457557678, -0.6043668985366821, 0.340157687664032, 0.49357178807258606, -0.5618260502815247, 0.6855329871177673, -0.2424827516078949, -0.4294472932815552, 0.38577887415885925, 0.4224073588848114, 0.5957064032554626, -0.5465841889381409, 0.40042316913604736, 0.3784768581390381, 0.10643971711397171, 0.38247591257095337, 1.0578521490097046, -0.21080106496810913, -0.8906322121620178, 0.07979275286197662, -0.3940753936767578, -0.3937850892543793, 0.08773123472929001, -1.0473086833953857, 0.18945376574993134, -0.5013882517814636, -0.2472553551197052, 0.1317613571882248, 0.20825621485710144, -0.6297415494918823, 0.23051899671554565, 0.3128576874732971, 1.1580623388290405, -1.040085792541504, 0.8049077391624451, 0.8960682153701782, -0.2559620440006256, -0.7133402824401855, -0.5194332003593445, 0.07227625697851181, -0.955951452255249, 0.19319967925548553, -0.20160935819149017, 0.27743738889694214, 0.06498745083808899, -1.04358971118927, -0.8764243125915527, 0.9213716387748718, 0.07601111382246017, -0.5326910614967346, 0.6141744256019592, -0.06693363934755325, 0.51267409324646, -0.26149782538414, 0.07240358740091324, 0.8395682573318481, 0.7740426063537598, 0.33989015221595764, -1.0261479616165161, -0.0032280858140438795, -0.7285938262939453, -0.24314133822917938, 0.20511284470558167, -0.5832452178001404, 0.12860612571239471, 0.029056193307042122, 0.008770888671278954, -0.17288674414157867, 0.9739599823951721, 0.21360363066196442, 0.3728422224521637, 0.5968133211135864, 0.7919504642486572, 1.0022361278533936, -0.08293851464986801, 0.7805244326591492, 0.022357964888215065, 0.2834942042827606, 1.3891754150390625, -0.07893326878547668, 0.5902474522590637, 0.5436738133430481, -0.10635632276535034, 0.20037218928337097, 0.7123240232467651, -0.3908058702945709, 0.6066926717758179, 0.5626140832901001, -0.2882552444934845, -0.09646140784025192, -0.4867181181907654, -0.6079311370849609, 0.40815943479537964, 0.6919955015182495, -0.3228839337825775, 0.07979141920804977, 0.0011377123882994056, 0.13940025866031647, -0.2386292815208435, -0.5532394647598267, 0.8934420943260193, 0.15952003002166748, -0.29647183418273926, 0.2123369723558426, -0.11278387904167175, 0.5532812476158142, -0.8788219094276428, -0.33664897084236145, 0.17894484102725983, 0.0181727334856987, -0.3847038745880127, -1.1415449380874634, 0.4717864990234375, -0.07210981845855713, -0.03610324114561081, 0.04411901533603668, 0.8166114687919617, -0.8308192491531372, -0.7519253492355347, 0.10496890544891357, 0.09654231369495392, 0.6328679323196411, 0.15954121947288513, -1.1748775243759155, 0.6101520657539368, -0.30055394768714905, -0.16903984546661377, 0.07651224732398987, 0.12345120310783386, 0.32070547342300415, 0.6025949716567993, 0.4438242018222809, 0.5177342891693115, 0.05707008019089699, 0.4684903621673584, 0.9046788215637207, -0.546013593673706, -0.5663210153579712, -0.6406799554824829, 0.4556352496147156, -0.4389881193637848, -0.805701732635498, 0.6749485731124878, 1.042314052581787, 1.063240885734558, -0.07464402168989182, 0.7564627528190613, -0.33939626812934875, 0.6836894750595093, -0.3767097294330597, 0.6985077857971191, -0.26278436183929443, -0.3372952938079834, -0.3331427276134491, -0.5941081047058105, -0.38618794083595276, 0.4751929044723511, 0.0068601886741817, 0.07647866010665894, 0.6510007381439209, 1.0769003629684448, -0.11497782170772552, 0.3015246093273163, 0.15622110664844513, 0.4954259991645813, 0.13403572142124176, 0.21790897846221924, 0.4844423234462738, -0.45663341879844666, 0.28184425830841064, -0.5212112665176392, -0.45206648111343384, 0.18418991565704346, -0.9939391016960144, -0.7310369610786438, -0.8892679810523987, -0.7857430577278137, -0.2946811616420746, -0.12097369879484177, 1.010878562927246, 0.8041995167732239, -1.1411646604537964, -0.35370171070098877, 0.21545517444610596, -0.12138530611991882, -0.040522992610931396, -0.14714723825454712, 0.4238112270832062, 0.11641056090593338, -0.8033785820007324, 0.1871149092912674, -0.203266903758049, 0.27914589643478394, -0.08549845963716507, -0.2023686319589615, -0.2904052734375, -0.04646088182926178, 0.0895727127790451, 0.33687877655029297, -0.31018009781837463, -0.20947755873203278, -0.5309901833534241, 0.13547153770923615, 0.15702791512012482, 0.8944092392921448, -0.4176173508167267, 0.29895463585853577, 0.5967391729354858, 0.3283947706222534, 0.7257587313652039, 0.13618797063827515, 0.5579511523246765, -0.9453138709068298, 0.23389902710914612, 0.3586971163749695, 0.346900999546051, 0.22891278564929962, -0.33847498893737793, 0.6110147833824158, 0.29290565848350525, -0.44959557056427, -0.8070261478424072, -0.09287040680646896, -1.3996270895004272, 0.3201023042201996, 1.2075350284576416, 0.27492937445640564, -0.41865652799606323, -0.023947138339281082, -0.6498135924339294, 0.37302327156066895, -1.1041475534439087, 0.0888785719871521, 0.9117021560668945, 0.005186617374420166, -0.5014309287071228, -0.5095888376235962, 0.6988396644592285, -0.22385701537132263, -1.0436842441558838, 0.09077496081590652, 0.4420887529850006, 0.20712125301361084, 0.18217717111110687, 0.7364964485168457, -0.18761089444160461, 0.035109296441078186, 0.4080362915992737, 0.372445285320282, -0.4010562002658844, -0.41545605659484863, -0.349829763174057, -0.18658742308616638, 0.06349390745162964, -0.7125585079193115 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nisaar/Articles_Constitution_3300_Instruction_Set
nisaar
2023-07-18T07:25:46Z
228
2
null
[ "license:apache-2.0", "region:us" ]
2023-07-18T07:25:46Z
2023-07-18T05:22:47.000Z
2023-07-18T05:22:47
--- license: apache-2.0 --- **Dataset Card for Indian Constitutional Law Instruction-Response Dataset** --- **Dataset Summary** The dataset contains instruction-input-output pairs on Indian Constitutional Law, specifically addressing Articles 12, 14, 19, 21, and 15. It's designed to assist AI models, researchers, and learners in understanding and generating responses to complex legal questions related to the Indian Constitution. --- **Supported Tasks** This dataset supports tasks such as question answering, text comprehension, language modelling, and conversational AI development in the legal domain. --- **Languages** The dataset is in English. --- **Dataset Structure** - **Data Instances** Each instance includes an instruction, an input (a legal case), an output (the response), and a prompt that contextualizes the task. - **Data Fields** 1. Instruction: The given instruction. 2. Input: The legal case. 3. Output: The response. 4. Prompt: The context for the instruction, input, and output. --- **Dataset Creation** - **Curation Rationale** The dataset aids in understanding and answering complex questions related to Indian Constitutional Law and the specified articles. **Considerations for Using the Data** - **Social Impact** The dataset contributes to understanding certain articles of the Indian Constitution and assists in legal domain applications. - **Known Limitations** The dataset may not cover all possible questions on Indian Constitutional Law and is limited to English language. ---
[ -0.2998678386211395, -0.7400907278060913, 0.0012699994258582592, 0.4415176212787628, -0.547661304473877, -0.17512427270412445, -0.29926687479019165, -0.17183713614940643, 0.08157902210950851, 0.6888987421989441, -0.47621816396713257, -0.42850610613822937, -0.40977010130882263, 0.0881967693567276, -0.610582172870636, 1.1489129066467285, 0.3163260519504547, 0.303498238325119, -0.43304628133773804, -0.08605656772851944, -0.7395023107528687, -0.4654211401939392, -0.4791502356529236, -0.0472923144698143, 0.054998110979795456, 0.6606113314628601, 0.34396809339523315, 0.8785606026649475, 0.7250022292137146, 0.22743593156337738, 0.1884804666042328, -0.07969565689563751, -0.5893413424491882, -0.09286101162433624, -0.30951476097106934, -0.6037790775299072, -0.2726143002510071, 0.06998936831951141, 0.7429671287536621, 0.46861156821250916, -0.5480548739433289, 0.33734580874443054, -0.0501566156744957, 0.8456102013587952, -0.5169350504875183, 0.5347357988357544, -0.6447219848632812, 0.036889076232910156, -0.6416184902191162, 0.037963785231113434, -0.47837480902671814, -0.41351041197776794, -0.0031454144045710564, -0.7775680422782898, 0.2832013666629791, 0.3121650815010071, 0.7219117283821106, 0.4263615906238556, -0.34538814425468445, -0.4719422459602356, -0.7396060228347778, 0.5677632689476013, -0.48128122091293335, 0.08544395864009857, 0.6383719444274902, 0.4266393780708313, 0.14227569103240967, -0.6867243647575378, -0.9380720853805542, 0.16447345912456512, -0.2814805805683136, 0.34678906202316284, 0.20948432385921478, 0.1046043336391449, 0.5512632131576538, 0.8236124515533447, -0.651797354221344, -0.26998576521873474, -1.1427016258239746, -0.10464691370725632, 1.0101184844970703, 0.585752546787262, 0.28818392753601074, -0.4371366500854492, 0.19582253694534302, -0.29172033071517944, -0.5441953539848328, 0.3384353816509247, 0.6452954411506653, 0.2877670228481293, -0.5901173949241638, 0.924837052822113, -0.08489133417606354, 0.9853886961936951, 0.3751237094402313, 0.05515815690159798, 0.09289166331291199, -0.4823148250579834, -0.2843954563140869, 0.22547182440757751, 0.7219263315200806, 0.1752118468284607, 0.17545512318611145, 0.13179337978363037, 0.015029335394501686, -0.19273389875888824, 0.2993510663509369, -0.7185815572738647, 0.09952966868877411, 0.4611673057079315, -0.7679776549339294, -0.18538838624954224, 0.3084873855113983, -0.9722351431846619, -0.5127266645431519, -0.8719882965087891, -0.06758083403110504, -0.357839971780777, -0.07467091828584671, 0.0389099158346653, -0.2138897031545639, 1.052524447441101, -0.004397386685013771, -1.162335991859436, 0.6742272973060608, 0.8150221109390259, 0.3234516382217407, -0.3070596754550934, 0.025015614926815033, -0.33861514925956726, 0.10741428285837173, -0.2564735412597656, 0.88125079870224, -1.0540848970413208, -0.6171370148658752, 0.22801902890205383, 0.2830095887184143, -0.286460816860199, -0.5948533415794373, 0.7380709648132324, -0.41307637095451355, 0.10134906321763992, -0.3463495373725891, -0.7322384715080261, -0.2647803723812103, 0.21328863501548767, -0.9021859169006348, 0.7509733438491821, -0.2723237872123718, -0.7543113231658936, 0.49071621894836426, -1.0092672109603882, -0.7287942171096802, 0.1474193036556244, -0.7646846771240234, -0.49866732954978943, -0.043877776712179184, -0.04084872454404831, 0.48554712533950806, -0.4115108847618103, 0.3387506902217865, -0.19790631532669067, -0.5099765658378601, -0.3119105398654938, -0.17167061567306519, 1.3478851318359375, 0.3549322485923767, -0.17315678298473358, 0.0951344221830368, -1.227518081665039, -0.2501184642314911, 0.13832049071788788, -0.5417503714561462, -0.2248440682888031, 0.00494588864967227, 0.024662259966135025, -0.1681363880634308, 0.15412680804729462, -0.6494103670120239, 0.2257242053747177, -0.22742605209350586, 0.26106688380241394, 0.6262615323066711, 0.27013856172561646, 0.42359358072280884, -0.27036744356155396, 0.6101967096328735, 0.1100929006934166, 0.21317744255065918, -0.06835903972387314, -0.5500397086143494, -0.592678427696228, 0.04164954647421837, 0.39045053720474243, 1.106850028038025, -0.48655572533607483, 0.390229731798172, -0.26486170291900635, -0.4502674639225006, -0.6532880663871765, -0.06341003626585007, 0.3695615231990814, 0.5664361119270325, 0.2086765319108963, 0.24156036972999573, -0.6576964855194092, -1.1273627281188965, -0.16908679902553558, -0.27648696303367615, 0.35002246499061584, 0.3228052258491516, 0.8694812655448914, 0.41240420937538147, 0.6519086956977844, -0.4203297793865204, -0.1795155555009842, -0.17793579399585724, 0.17477945983409882, 0.36067917943000793, 0.42868152260780334, 0.40604427456855774, -0.8657699227333069, -0.5110105872154236, -0.13285797834396362, -0.722581148147583, 0.12080192565917969, -0.40084391832351685, -0.20034492015838623, -0.12057696282863617, 0.27836301922798157, -0.3898630738258362, 1.074296474456787, -0.05291111022233963, -0.45661136507987976, 0.5726120471954346, -0.1262650042772293, 0.4631001949310303, -1.4845842123031616, 0.017154525965452194, -0.25274214148521423, 0.35552385449409485, -0.44062110781669617, -0.08243431150913239, 0.2329736053943634, -0.2509435713291168, -0.5535775423049927, 0.43674153089523315, -0.07854156196117401, -0.04638947173953056, 0.048859648406505585, -0.32689663767814636, -0.18384577333927155, 0.5491119027137756, 0.11848992109298706, 1.150046467781067, 0.6272009611129761, -0.6765002012252808, 0.6200705766677856, 0.9674460291862488, -0.044944532215595245, 1.1452330350875854, -0.7995076179504395, -0.046363603323698044, -0.35518932342529297, -0.1768908053636551, -0.667363703250885, -0.5071675181388855, 0.47359219193458557, -0.3744753301143646, 0.360295832157135, -0.004827450029551983, -0.3624487817287445, -0.3768249750137329, -0.37483149766921997, 0.28038662672042847, 0.18937081098556519, -0.20354367792606354, 0.7540892362594604, 0.5152814984321594, 0.025178397074341774, -0.7733703851699829, -0.9093766808509827, -0.08353611826896667, -0.2932018041610718, -0.3539077937602997, 0.34276071190834045, -0.23576989769935608, -0.48026275634765625, 0.21259473264217377, 0.47746166586875916, -0.2962207496166229, -0.47560545802116394, 0.65945965051651, 0.3237868547439575, -0.09306478500366211, 0.15203848481178284, 0.23247261345386505, 0.34323808550834656, 0.24734225869178772, 0.3262762129306793, 0.31978121399879456, -0.06875915825366974, -0.4359440207481384, -0.6579787731170654, 0.5924279093742371, 0.4076051414012909, -0.2866339683532715, 0.7410762906074524, 0.2010437399148941, -0.659099817276001, 0.20874163508415222, -0.3827456831932068, 0.028385065495967865, -0.3988244831562042, 0.052297476679086685, -0.5138329267501831, -0.27855727076530457, 0.8975365161895752, 0.5060638189315796, 0.4675655961036682, 0.9167370200157166, 0.7655895352363586, 0.20692561566829681, 0.5267011523246765, 0.3687453269958496, -0.2799067795276642, 0.4567629396915436, -0.3825816810131073, 0.2503681480884552, -0.7767931222915649, -0.8484992384910583, -1.0433977842330933, -0.15713974833488464, -0.6717208623886108, 0.16034036874771118, -0.20919591188430786, -0.2907537817955017, -0.36643850803375244, 0.4046487808227539, -0.6459152698516846, 0.6604288220405579, 0.8425077795982361, 0.16016127169132233, 0.05457405745983124, 0.24309884011745453, -0.04145284369587898, 0.15466398000717163, -0.470745325088501, -0.3580736219882965, 1.516579031944275, -0.24252310395240784, 0.9747726321220398, 0.0351661816239357, 0.6660801768302917, 0.6876873970031738, -0.009760327637195587, -0.591059148311615, 0.6185998916625977, -0.3066980242729187, -0.9474519491195679, -0.34461095929145813, -0.1899484097957611, -0.9690958857536316, -0.41635027527809143, -0.3522007167339325, -0.4068633019924164, 0.49878209829330444, -0.002363210776820779, -0.7529575228691101, 0.16373533010482788, -0.6853901743888855, 0.7970830202102661, 0.0007917521870695055, -0.42303839325904846, -0.3302026391029358, -0.7293481826782227, 0.4886048138141632, 0.04373366758227348, -0.05649535730481148, 0.1410108208656311, 0.22220097482204437, 1.0266540050506592, -0.6612840294837952, 0.6936913132667542, -0.27979394793510437, 0.3425450623035431, 0.6615594029426575, -0.5446874499320984, 0.17097969353199005, 0.354301780462265, -0.14795275032520294, -0.21527191996574402, 0.34691137075424194, -0.41462430357933044, -0.2996859848499298, 0.6748077273368835, -0.8976809978485107, -0.5273056626319885, -0.595291793346405, -0.6009158492088318, -0.018136247992515564, 0.12053912878036499, 0.2752375304698944, 0.6990843415260315, -0.02140888385474682, 0.49753791093826294, 0.8028160929679871, -0.29830339550971985, 0.4101160764694214, 0.5150151252746582, 0.20202720165252686, -0.4049146771430969, 0.7313465476036072, 0.33060160279273987, -0.37973716855049133, 0.17236624658107758, -0.12331617623567581, -0.786961019039154, -0.3645848035812378, -0.5013709664344788, 0.11933810263872147, -0.7899044156074524, -0.2339855134487152, -0.32886290550231934, -0.5796307325363159, -0.5380446910858154, 0.33027300238609314, 0.16676868498325348, -0.5283547043800354, -0.2817137837409973, -0.17945930361747742, 0.625914454460144, 0.8306588530540466, -0.155999556183815, 0.16560496389865875, -0.4831714928150177, 0.5430909395217896, 0.5545941591262817, 0.6341054439544678, -0.37610065937042236, -0.7400694489479065, 0.14166602492332458, -0.08498172461986542, -0.2621115446090698, -0.8449169993400574, -0.3710878789424896, 0.4743480980396271, 0.7646949291229248, 0.47383925318717957, 0.15237091481685638, 1.0452698469161987, -0.6641469597816467, 0.9769243001937866, -0.29664015769958496, -0.5610288381576538, 0.8174576163291931, -0.19258862733840942, 0.0059965020045638084, 0.7458127737045288, 0.2124156951904297, -0.21593768894672394, -0.1325186789035797, -0.5898087024688721, -0.5124767422676086, 0.7827484607696533, 0.32163211703300476, 0.5377416610717773, -0.1028955727815628, 0.8511834144592285, 0.14512629806995392, 0.07314274460077286, -0.3955424129962921, -0.4138660728931427, -0.177058145403862, -0.46349671483039856, 0.5863267779350281, -0.06726512312889099, -0.19033685326576233, -0.6107944250106812, 0.7261291742324829, 0.3683714270591736, 0.40921980142593384, 0.08417214453220367, -0.11179579049348831, 0.06897994875907898, 0.16541224718093872, 0.9353137016296387, 0.778257429599762, -0.06940308213233948, -0.20130035281181335, 0.11099608242511749, -0.8945576548576355, 0.004202405456453562, 0.3717185854911804, -0.23838073015213013, -0.32786592841148376, 0.29240354895591736, 0.6474000811576843, -0.4160607159137726, -0.6787442564964294, 0.3874564468860626, -0.4704701900482178, -0.41459959745407104, -0.6940662264823914, 0.052833348512649536, -0.18331453204154968, 0.036937035620212555, 0.486366868019104, -0.007091119885444641, 0.4141373336315155, -0.41128724813461304, 0.511169970035553, 0.15497155487537384, -0.16019076108932495, 0.04505695402622223, 1.0183557271957397, 0.16188274323940277, -0.48351454734802246, 0.8723225593566895, -0.06456668674945831, -0.0944342166185379, 0.907909095287323, 0.21122750639915466, 0.37163209915161133, -0.19329571723937988, 0.058239638805389404, 0.6876816153526306, 0.25014758110046387, 0.07011893391609192, 0.8361429572105408, -0.11135338246822357, -0.3207460045814514, -0.30082255601882935, -0.4550945460796356, -0.34585607051849365, 0.4173215329647064, -0.9912874102592468, 0.4006860554218292, -0.6373938322067261, 0.10602938383817673, 0.13125430047512054, 0.2560393512248993, -0.8448933959007263, 0.241776242852211, -0.08843522518873215, 1.1285673379898071, -0.8952084183692932, 0.6729740500450134, 0.5414073467254639, -0.8345387578010559, -0.8189330697059631, -0.3990721106529236, 0.005088655278086662, -0.9814824461936951, 0.375710129737854, -0.0781804695725441, 0.35727521777153015, -0.2527467608451843, -0.7902107834815979, -0.23372365534305573, 0.997178852558136, 0.04876444861292839, -0.7001729607582092, 0.30211955308914185, 0.8076326251029968, 0.3383178114891052, -0.3451846241950989, -0.13210050761699677, 0.7633869051933289, 0.5102530717849731, 0.05321970954537392, -0.5122649669647217, -0.12777301669120789, -0.6790192127227783, -0.24551083147525787, -0.09148091822862625, -0.4345349371433258, 0.50999915599823, 0.11084028333425522, -0.017812097445130348, 0.08032847940921783, 0.6317504644393921, 0.19844914972782135, 0.223016619682312, 0.467682808637619, 0.7212895750999451, 0.7628102898597717, -0.3161647319793701, 1.0924415588378906, -0.6387364268302917, -0.016279516741633415, 1.292458415031433, -0.1346263587474823, 0.8044808506965637, 0.5302855968475342, -0.15566334128379822, 0.19595138728618622, 1.0419710874557495, -0.3400459587574005, 0.43964266777038574, 0.2638917863368988, -0.062236763536930084, -0.013575918972492218, -0.27607059478759766, -0.6055132746696472, 0.41857221722602844, 0.48685982823371887, -0.21775799989700317, 0.015563325956463814, -0.009399527683854103, -0.18052273988723755, 0.2302483320236206, -0.552635133266449, 0.9322299957275391, -0.4122207760810852, -0.5773166418075562, 0.18092769384384155, -0.27224254608154297, 0.028762197121977806, -0.3814965784549713, -0.6077618598937988, -0.5351069569587708, -0.05789289250969887, -0.275846004486084, -1.1736515760421753, 0.8533418774604797, 0.24093052744865417, -0.32637467980384827, 0.16558896005153656, 0.6587873697280884, -0.4587370753288269, -0.6765209436416626, -0.4541465938091278, 0.16852371394634247, 0.3088642954826355, 0.25922030210494995, -1.023863673210144, 0.12290632724761963, -0.25791874527931213, -0.14465877413749695, -0.21312768757343292, 0.49415674805641174, -0.3095472753047943, 0.44541725516319275, 0.430159330368042, 0.04447965696454048, 0.3697304427623749, 0.020919594913721085, 0.6958441734313965, -0.5786696076393127, -0.3019123077392578, -0.6101583242416382, 0.611041784286499, -0.6825681924819946, -0.39516353607177734, 0.2737113833427429, 1.152815818786621, 0.7864663004875183, -0.16174735128879547, 0.8748728036880493, -0.5810482501983643, 0.5242971181869507, -0.4028664231300354, 0.659812331199646, -0.32353660464286804, 0.15084142982959747, 0.3491971492767334, -0.7790207266807556, -0.3287019431591034, 0.5110189318656921, -0.4452747106552124, -0.2004268318414688, 0.4333251714706421, 0.8561750650405884, -0.18998625874519348, 0.2930273711681366, 0.18139560520648956, -0.12214312702417374, -0.07831533998250961, 0.22342774271965027, 0.5296087861061096, -0.5653147101402283, 0.9085105061531067, -0.35944682359695435, -0.029058409854769707, 0.11629564315080643, -0.4526371359825134, -1.1945914030075073, -0.8383631110191345, -0.199920192360878, -0.21916979551315308, -0.03382749855518341, 0.9914957284927368, 0.7461418509483337, -1.2858692407608032, -0.40628188848495483, -0.051753342151641846, -0.18128933012485504, 0.09663774818181992, -0.2352604866027832, 0.7524975538253784, -0.29110661149024963, -0.6575402021408081, -0.06000656634569168, 0.11755754053592682, -0.03298116475343704, -0.0019239631947129965, -0.15652437508106232, -0.39947807788848877, 0.3708575665950775, 0.3632948100566864, 0.527338445186615, -0.6599009037017822, -0.224651038646698, 0.04988239333033562, 0.012861045077443123, 0.12431982159614563, 0.971010684967041, -0.13603490591049194, 0.5438717007637024, 0.6023364067077637, 1.028358817100525, 0.3808233439922333, -0.02828536555171013, 0.35097092390060425, -0.5791154503822327, 0.3624780774116516, -0.0190103929489851, 0.42063793540000916, 0.028854869306087494, -0.5287796258926392, 0.7689727544784546, 0.15979470312595367, -0.3642602860927582, -0.37974563241004944, 0.006861077155917883, -1.080533504486084, 0.09684491157531738, 0.7636126279830933, -0.07584930211305618, -0.5402161478996277, -0.3586539328098297, -0.5091071724891663, 0.2850725054740906, -0.4127214848995209, 0.926899254322052, 0.867856502532959, -0.13776333630084991, -0.3256590962409973, -0.7417657971382141, 0.5982356071472168, -0.01064508780837059, -1.297536015510559, 0.03477536141872406, 0.4944460391998291, 0.037756986916065216, 0.02228063903748989, 0.3720521032810211, -0.4605998694896698, 0.3756820559501648, -0.009485621005296707, -0.026446035131812096, -0.03200983628630638, -0.12217693775892258, -0.4255383014678955, 0.1006939634680748, -0.38250064849853516, -0.45066899061203003 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
C-MTEB/MultilingualSentiment-classification
C-MTEB
2023-07-28T13:29:38Z
228
0
null
[ "region:us" ]
2023-07-28T13:29:38Z
2023-07-28T13:29:08.000Z
2023-07-28T13:29:08
--- 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: text dtype: string - name: label dtype: class_label: names: '0': positive '1': neutral '2': negative splits: - name: train num_bytes: 19594086 num_examples: 120000 - name: validation num_bytes: 483785 num_examples: 3000 - name: test num_bytes: 491522 num_examples: 3000 download_size: 14087126 dataset_size: 20569393 --- # Dataset Card for "MultilingualSentiment-classification" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.5068360567092896, -0.10463978350162506, -0.002352355048060417, 0.5255279541015625, -0.07498722523450851, 0.22911150753498077, -0.09672864526510239, -0.47039613127708435, 0.7023374438285828, 0.12894368171691895, -0.6500735878944397, -0.7162652015686035, -0.6024559140205383, -0.17648081481456757, -0.10820503532886505, 1.2400121688842773, -0.17631644010543823, 0.27916857600212097, -0.3458753526210785, -0.4206450581550598, -0.29019853472709656, -0.8545052409172058, -0.7060995697975159, -0.5520208477973938, 0.978300154209137, 0.604425311088562, 0.29642999172210693, 0.34437426924705505, 0.5542138814926147, 0.19290509819984436, 0.085087850689888, -0.22405830025672913, -0.07656943053007126, -0.0874553993344307, -0.16089469194412231, -0.5307323932647705, -0.9762022495269775, 0.058782681822776794, 0.6714290976524353, 0.6605004668235779, -0.3539256751537323, 0.7799006104469299, -0.13860838115215302, 0.5329828262329102, -0.4936849772930145, 0.7495641708374023, 0.038316987454891205, 0.18381057679653168, -0.7633324265480042, -0.26854339241981506, -0.08126115053892136, -0.3041148781776428, -0.27767133712768555, -0.8411803245544434, 0.2339547574520111, -0.12267974019050598, 0.7648330926895142, 0.03770674765110016, -0.30668285489082336, -0.04312709718942642, -0.5715077519416809, 0.2559562623500824, -0.0316641740500927, 0.5757623314857483, 0.5788367986679077, 0.6404257416725159, 0.3248974084854126, -0.5286738872528076, -0.46400561928749084, 0.11963855475187302, 0.017292656004428864, 0.3388969302177429, 0.34515658020973206, -0.12065648287534714, 0.5028750896453857, 0.5454903244972229, -0.6400926113128662, -0.003705701557919383, -0.4535101056098938, -0.5139715075492859, 0.7243027091026306, 0.10371086001396179, 0.3141852915287018, -0.08216703683137894, 0.0477534718811512, -0.21494296193122864, -0.36793607473373413, -0.08265241980552673, 0.4224604666233063, 0.4085758924484253, -1.0227069854736328, 0.6397380828857422, -0.06367850303649902, 0.37867051362991333, -0.07449322938919067, 0.26213109493255615, 0.8920734524726868, -0.424753874540329, 0.09377679228782654, 0.14634549617767334, 0.3364259600639343, 0.37670236825942993, 0.1465604305267334, 0.08837277442216873, -0.05767745152115822, 0.2850509583950043, -0.22451287508010864, -1.0536181926727295, -0.6966590285301208, 0.09464547783136368, -0.6695042848587036, -0.11858268827199936, 0.17118333280086517, -1.005045771598816, -0.38094452023506165, -0.5460829734802246, 0.07039272785186768, 0.09241242706775665, -0.8990979790687561, -0.1965448558330536, -0.5953012108802795, 0.28616562485694885, 0.16474325954914093, -0.7957311272621155, 0.20777682960033417, 0.5398557782173157, 0.7637723684310913, 0.16669240593910217, -0.4895826280117035, -0.5451682209968567, 0.1671924889087677, 0.06724877655506134, 0.8160658478736877, -0.6481116414070129, -0.2521566152572632, 0.08557432889938354, 0.4371383786201477, -0.13382107019424438, -0.13530761003494263, 0.6659883856773376, -0.39687031507492065, 0.242987260222435, -0.46760815382003784, -0.4070777893066406, -0.02395649440586567, 0.5494459271430969, -0.9589551687240601, 1.0163049697875977, 0.2830665111541748, -0.7339150905609131, 0.601953387260437, -1.2691413164138794, -0.4543570280075073, 0.6611332893371582, 0.030206259340047836, -0.34838756918907166, -0.03852285072207451, -0.07817602157592773, 0.6186248064041138, -0.013700176030397415, 0.3874938189983368, -0.80901700258255, 0.0546155720949173, 0.1751709282398224, -0.2178782820701599, 1.0739102363586426, 0.34033846855163574, 0.25321027636528015, -0.11953482776880264, -1.039178729057312, -0.26432737708091736, 0.2465960532426834, -0.37698009610176086, -0.4485183358192444, -0.2787669003009796, 0.6625128984451294, 0.09991481155157089, 0.5164650082588196, -0.5690665245056152, 0.4614890515804291, 0.28835394978523254, 0.0000463396318082232, 0.5106015801429749, -0.1213376596570015, 0.4047546982765198, -0.37925097346305847, 0.6387602090835571, 0.051334500312805176, 0.353720098733902, -0.082279734313488, -0.2920025587081909, -0.733745276927948, 0.02408694475889206, 0.6238101124763489, 0.9189277291297913, -0.9086762070655823, 0.4582388699054718, -0.2186114639043808, -0.740362286567688, -0.21222016215324402, 0.06063097342848778, 0.2913706600666046, 0.10991975665092468, 0.3890438675880432, -0.41050562262535095, -0.682178795337677, -0.4754868745803833, 0.29828184843063354, -0.2304389327764511, 0.22265386581420898, 0.26943835616111755, 0.7796483635902405, -0.6410970687866211, 0.3876245617866516, -0.5685002207756042, -0.25177931785583496, 0.11972387135028839, -0.04466603323817253, 0.08404368162155151, 0.7125078439712524, 1.0485472679138184, -0.8568559885025024, -0.46975550055503845, -0.20867548882961273, -0.7195894718170166, -0.1109701469540596, 0.25784680247306824, -0.4211115837097168, 0.14758752286434174, 0.2995525598526001, -0.2716978192329407, 0.4203684628009796, 0.8725430369377136, -0.4342486262321472, 0.20271524786949158, 0.05254464969038963, 0.23979249596595764, -1.4901540279388428, 0.22625282406806946, 0.03379237651824951, -0.0874519795179367, -0.37618252635002136, 0.14189104735851288, 0.2805783748626709, -0.32551783323287964, -0.11233022809028625, 0.7440213561058044, -0.4528225362300873, 0.0005363347590900958, 0.09914269298315048, -0.08963027596473694, -0.17954111099243164, 0.24803689122200012, 0.4075566232204437, 0.46703848242759705, 1.103008508682251, -0.706642746925354, 1.0230627059936523, 0.45846667885780334, 0.011903634294867516, 1.1612677574157715, -0.5008849501609802, 0.0413610078394413, -0.22880317270755768, 0.27849555015563965, -0.6680336594581604, -0.7362887859344482, 0.5199030637741089, -0.40729621052742004, 0.6543523073196411, -0.6053928136825562, -0.7563585042953491, -0.6290187239646912, -0.2881033420562744, 0.9130896925926208, 0.14938309788703918, -0.9320770502090454, 0.4270007014274597, 0.7792314887046814, -0.2309083491563797, -0.2059033066034317, -1.0548784732818604, 0.09012976288795471, -0.31025683879852295, -0.14693254232406616, 0.36103636026382446, -0.5148321390151978, 0.16383205354213715, -0.15526805818080902, 0.5846306085586548, -0.23413528501987457, -0.11019064486026764, 0.25575146079063416, 0.13408531248569489, -0.153092622756958, 0.7694260478019714, 0.09851342439651489, -0.6399122476577759, 0.0015275570331141353, -0.060509584844112396, 0.4787464439868927, -0.10783430933952332, -0.3177759051322937, -0.3216475546360016, 0.510770857334137, 0.3684745132923126, -0.4312695562839508, 0.5328033566474915, 1.3304928541183472, -0.6701399087905884, 0.09823933243751526, -0.4632817208766937, 0.049059491604566574, -0.4003522992134094, 0.14961060881614685, -0.3427598476409912, -0.6522417664527893, 0.5902196168899536, -0.0440966933965683, -0.021547779440879822, 0.6592540740966797, 0.7106685638427734, 0.0004907057737000287, 0.7178751230239868, 0.6224316358566284, -0.3419710695743561, 0.5934001207351685, -0.20993880927562714, -0.35514795780181885, -0.6084680557250977, -0.5533664226531982, -0.685445249080658, -0.4007992744445801, -0.9164684414863586, -0.23406562209129333, 0.032639168202877045, -0.10691879689693451, -0.17366448044776917, 0.546596109867096, -0.5932711362838745, 0.28490307927131653, 0.5691854357719421, -0.09020796418190002, -0.0635148212313652, -0.028100425377488136, 0.19208569824695587, 0.14777982234954834, -0.7996751070022583, -0.19240747392177582, 1.129211664199829, 0.5371971130371094, 1.015631914138794, 0.5085209608078003, 0.8364390730857849, 0.07431288063526154, 0.5074304342269897, -0.4070952534675598, 0.28160426020622253, -0.10252129286527634, -0.7342029213905334, 0.06980092078447342, -0.3506186306476593, -0.9203067421913147, -0.3608468770980835, -0.3854926824569702, -0.26514676213264465, 0.3947617709636688, 0.40402689576148987, -0.0034679430536925793, 0.2535017728805542, -0.9214056134223938, 1.0401982069015503, -0.3822312355041504, 0.09294962137937546, -0.17433184385299683, -0.63609778881073, 0.05737010017037392, 0.0698520690202713, 0.2431098222732544, -0.3589426279067993, -0.1059771180152893, 1.0853503942489624, -0.15646840631961823, 1.245195984840393, -0.8061633706092834, 0.06246188282966614, 0.031228046864271164, -0.2509947121143341, -0.07855392247438431, 0.5159100890159607, 0.08257202804088593, 0.3639388382434845, 0.3737154006958008, -0.515480637550354, -0.2222137600183487, 0.6863966584205627, -0.6943705677986145, 0.3369824290275574, -0.5953564047813416, -0.4361194372177124, 0.01846318505704403, 0.2579081952571869, 0.2548692226409912, 0.7990784049034119, -0.4612831175327301, -0.06075594201683998, 0.6310973167419434, 0.07958713173866272, 0.4697361886501312, 0.48959827423095703, -0.3724382519721985, -0.39022305607795715, 1.1578388214111328, 0.3265887200832367, -0.4062005579471588, 0.5902459025382996, 0.32774192094802856, -0.4311087727546692, -0.25081875920295715, -0.6725948452949524, 0.3225039541721344, -0.558528482913971, -0.45548364520072937, -0.3176567554473877, -0.37899625301361084, -0.5567741990089417, 0.1458243876695633, -0.17044591903686523, -0.7493868470191956, -0.6350824236869812, -0.5114946961402893, 0.9860485196113586, 0.5681588053703308, -0.5953744649887085, 0.44888439774513245, -1.0916215181350708, 0.45573166012763977, 0.18499623239040375, 1.1183745861053467, -0.27209290862083435, -0.38571661710739136, -0.5113509893417358, -0.04672853648662567, 0.03428032994270325, -0.6179657578468323, -0.11062397807836533, 0.4902991056442261, 0.7736397385597229, 0.35256460309028625, -0.1290714591741562, 0.6200428605079651, -0.2767038345336914, 0.6048420667648315, 0.19240009784698486, -0.6127514243125916, 0.6431130170822144, -0.11306165903806686, 0.5707769393920898, 0.7403805255889893, 0.7179082632064819, -0.8411198258399963, 0.14621135592460632, -0.6625432968139648, -0.5837939381599426, 0.5439072847366333, -0.24903470277786255, 0.3779318034648895, 0.042293425649404526, 0.39922329783439636, 0.12746886909008026, 0.228021040558815, -0.9867082834243774, -0.7297871708869934, -0.28519439697265625, -0.4089774191379547, -0.16770005226135254, -0.5469915270805359, -0.13278861343860626, -0.6092076301574707, 0.688335657119751, -0.1715213805437088, 0.3776146471500397, -0.19615571200847626, -0.02224317193031311, 0.04568009451031685, 0.07175831496715546, 0.5503316521644592, 0.4273812472820282, -0.1769522726535797, 0.055290304124355316, 0.012138678692281246, -0.4887040853500366, -0.1080399602651596, 0.7202339172363281, 0.056456588208675385, -0.08759680390357971, 0.6177114248275757, 0.703406035900116, -0.4074338972568512, -0.06619669497013092, 0.30353111028671265, -0.32849109172821045, -0.18771013617515564, -0.7745769619941711, -0.07729721814393997, 0.12162135541439056, 0.13985952734947205, -0.04564226418733597, -0.08082059770822525, 0.1648349165916443, -0.3180203139781952, 0.28258016705513, -0.02162676677107811, -0.5444437861442566, -0.5960643291473389, 0.41401568055152893, 0.7111470103263855, -0.4002869725227356, 0.7065934538841248, -0.4114871919155121, -0.6208732724189758, 0.39948806166648865, 0.2562407851219177, 0.6851134300231934, -0.8520489931106567, 0.39151036739349365, 0.6617501974105835, 0.1898624449968338, 0.10842087119817734, 0.7156074047088623, -0.4568951427936554, -0.8422797918319702, -0.23990567028522491, -0.4540633261203766, -0.1566862314939499, -0.20649467408657074, -1.022402286529541, 0.15960754454135895, -0.4168442487716675, -0.28480300307273865, 0.07892201095819473, 0.02308756113052368, -0.8320512175559998, -0.0016296515241265297, 0.28065869212150574, 1.1795532703399658, -1.119840145111084, 0.9031525254249573, 0.9850294589996338, -0.44870591163635254, -0.3462710976600647, -0.29347115755081177, 0.1369103640317917, -0.6080878376960754, 0.18473504483699799, 0.29860907793045044, 0.19633953273296356, -0.39511817693710327, -0.6601600646972656, -0.6597540974617004, 1.0211741924285889, 0.19641467928886414, -0.7251968383789062, 0.22910919785499573, -0.1331147402524948, 0.5015201568603516, -0.24283958971500397, 0.04297002777457237, 0.4900628626346588, 0.8277943134307861, -0.05897027254104614, -0.981402575969696, -0.31729042530059814, -0.8204950094223022, -0.1984287053346634, 0.5034971833229065, -0.7071362733840942, 0.2642463743686676, -0.01760953478515148, -0.09491372108459473, -0.15535968542099, 0.6352252960205078, -0.04064396396279335, 0.5234085321426392, 0.4426729679107666, 0.7310785055160522, 1.0811530351638794, -0.3839888274669647, 0.9707262516021729, -0.15092900395393372, 0.4329250156879425, 1.2131131887435913, -0.13847661018371582, 0.3896848261356354, 0.3817959129810333, -0.17647409439086914, 0.3159324526786804, 0.8593559265136719, -0.5001976490020752, 0.27285659313201904, 0.10363386571407318, -0.2768474817276001, -0.29459047317504883, -0.2984546720981598, -0.8061731457710266, 0.3246317505836487, 0.6177307367324829, -0.17058666050434113, -0.02969519793987274, 0.4292047917842865, 0.11202588677406311, -0.1431252658367157, -0.5130192041397095, 0.6873255968093872, -0.044611889868974686, -0.14933021366596222, -0.03412067890167236, -0.03989601880311966, 0.5624298453330994, -0.6570326685905457, -0.2540571987628937, 0.05556795001029968, 0.26386356353759766, -0.4956381618976593, -1.1888526678085327, 0.709693193435669, -0.28487294912338257, -0.3623795807361603, -0.12006588280200958, 0.4837910234928131, -0.8069934844970703, -0.9772500991821289, 0.5693743228912354, 0.21943111717700958, 0.1741851419210434, 0.2807811498641968, -1.2563742399215698, 0.09351050108671188, -0.3496226370334625, 0.0639086365699768, 0.04175405204296112, 0.26144665479660034, -0.13307569921016693, 0.7292934656143188, 0.46402114629745483, 0.05055844783782959, -0.1891767680644989, 0.6947879791259766, 0.6795169711112976, -0.5176702737808228, -0.5357016921043396, -0.5160998106002808, 0.39703625440597534, -0.29960110783576965, -0.43590617179870605, 0.7134789824485779, 1.0024245977401733, 1.2495170831680298, -0.16828666627407074, 0.7226418256759644, -0.39318981766700745, 0.6510761976242065, -0.4142625629901886, 0.7158687710762024, -0.5361437201499939, -0.32048317790031433, -0.169038787484169, -0.8048543930053711, -0.9384720921516418, 0.4921224117279053, 0.24551083147525787, 0.1460753232240677, 0.5136846899986267, 0.7625176310539246, -0.21876174211502075, -0.10079389810562134, -0.12645921111106873, 0.014906133525073528, 0.2394888997077942, 0.4669182002544403, 0.6826242208480835, -0.26944518089294434, 0.2866138219833374, -0.33435943722724915, -0.5011141896247864, 0.05384035035967827, -1.040619969367981, -1.004400372505188, -0.9693320393562317, -0.8315184116363525, -0.3411928117275238, -0.31648141145706177, 1.0363634824752808, 0.9906941056251526, -1.114662766456604, -0.4164521396160126, 0.3312605619430542, 0.2305607944726944, -0.04291246831417084, -0.14614880084991455, 0.5112850666046143, 0.11159233748912811, -0.7266183495521545, -0.36699774861335754, -0.0023951493203639984, 0.5035707950592041, -0.16683608293533325, -0.0879564955830574, -0.1355835199356079, -0.46187809109687805, 0.6507279872894287, 0.46779805421829224, -0.11322370916604996, -0.16388091444969177, -0.49987733364105225, 0.0567600354552269, 0.014726701192557812, 0.9168937802314758, -0.23056082427501678, 0.3723592460155487, 0.5005848407745361, 0.4432373642921448, 0.6631967425346375, -0.23299480974674225, 0.3903197646141052, -0.8693141937255859, 0.408037006855011, -0.1166350319981575, 0.6035398244857788, 0.39323240518569946, -0.4194406569004059, 0.7402991652488708, 0.5586970448493958, -0.3850491940975189, -0.49392595887184143, 0.2531730830669403, -1.3215892314910889, 0.24362963438034058, 0.9507454037666321, 0.12355056405067444, -0.3130893409252167, -0.22934164106845856, -0.38272762298583984, 0.3225107789039612, -0.699661910533905, 0.260211318731308, 0.763883650302887, 0.2091076374053955, -0.2790302336215973, -0.1630602926015854, 0.5206594467163086, -0.4956289529800415, -1.2257435321807861, 0.18623581528663635, 0.508074939250946, 0.15126095712184906, 0.49530714750289917, 0.7877084612846375, -0.2932673394680023, 0.32306578755378723, 0.11304692924022675, 0.5117021203041077, -0.2374725639820099, -0.7765544056892395, -0.435387521982193, -0.060571905225515366, -0.011964716948568821, -0.4525824189186096 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
jarod0411/PubChem10M_Canonicalized_SELFIES
jarod0411
2023-11-09T04:31:54Z
228
0
null
[ "region:us" ]
2023-11-09T04:31:54Z
2023-11-08T21:40:18.000Z
2023-11-08T21:40:18
--- configs: - config_name: default data_files: - split: train path: data/train-* - split: validation path: data/validation-* dataset_info: features: - name: smiles dtype: string - name: selfies dtype: string splits: - name: train num_bytes: 2238384519.927304 num_examples: 8999273 - name: validation num_bytes: 248620852.6737807 num_examples: 999913 download_size: 0 dataset_size: 2487005372.6010847 --- # Dataset Card for "PubChem10M_Canonicalized_SELFIES" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.507978618144989, -0.057877786457538605, 0.45743027329444885, 0.48998674750328064, -0.19462013244628906, 0.006471529603004456, 0.33651283383369446, -0.03498246520757675, 1.149506688117981, 0.6658749580383301, -0.7532047033309937, -0.9211493730545044, -0.4692366421222687, 0.23962272703647614, -0.06448440998792648, 1.0614778995513916, 0.1183825135231018, 0.049896348267793655, -0.5507202744483948, -0.21447540819644928, -0.34733784198760986, -0.5145443677902222, -0.4264321029186249, -0.6943010687828064, 0.8252250552177429, 0.6314420104026794, 0.2266530990600586, 0.43430718779563904, 1.0072987079620361, 0.26010018587112427, 0.2418828308582306, -0.17492902278900146, -0.36532899737358093, 0.10114270448684692, -0.5304803252220154, -0.1788758486509323, -1.0085088014602661, 0.12616613507270813, 0.8727681040763855, 0.5717018246650696, 0.059637460857629776, 1.117236852645874, -0.22551262378692627, 0.984876275062561, -0.5045156478881836, 0.6674187183380127, -0.08179093152284622, -0.316264271736145, -0.5361329317092896, -0.12395583838224411, 0.04989558458328247, -0.2922514081001282, -0.3214900493621826, -0.815009593963623, 0.11583070456981659, -0.09119091182947159, 0.8053135275840759, 0.02107160910964012, -0.07294967025518417, 0.018317878246307373, -0.6538833975791931, -0.017547212541103363, -0.2777450680732727, 0.18659111857414246, 0.525884211063385, 0.5971199870109558, 0.09547065198421478, -0.8721327781677246, -0.12151867151260376, 0.2950502932071686, -0.2531965374946594, 0.08457678556442261, 0.07968390733003616, -0.1764920949935913, 0.13520196080207825, 0.6521284580230713, -0.6205629706382751, -0.38721492886543274, -0.5629381537437439, -0.21926355361938477, 0.8419955968856812, 0.27524638175964355, 0.2566516399383545, -0.18893803656101227, -0.24409818649291992, -0.23063097894191742, -0.5299810767173767, -0.13759084045886993, 0.2675483822822571, 0.2428184449672699, -0.844322681427002, 0.4951764941215515, -0.4159846007823944, 0.3268238604068756, 0.3601856827735901, 0.4059883952140808, 0.7778922915458679, -0.5803934931755066, -0.21888841688632965, 0.14073297381401062, 0.5660159587860107, 0.4942559599876404, 0.00020494531781878322, 0.005182953085750341, -0.06741136312484741, -0.1700010895729065, 0.05579685419797897, -1.0677546262741089, -0.8927167057991028, 0.5155016183853149, -0.7454421520233154, -0.5292717218399048, 0.3652438819408417, -0.7122392058372498, -0.4516787827014923, -0.1915944367647171, 0.3322870135307312, 0.1668027639389038, -0.7806047797203064, -0.04837757721543312, -0.5125621557235718, 0.30113938450813293, 0.18204431235790253, -0.862948477268219, 0.32955288887023926, 0.5057425498962402, 0.6147685647010803, 0.3117271959781647, -0.39132094383239746, -0.22773616015911102, 0.6335891485214233, -0.3403739631175995, 1.141261100769043, -0.3173072934150696, -0.254285991191864, -0.2058776617050171, 0.7274028062820435, 0.023991648107767105, -0.5446553230285645, 0.43996313214302063, -0.33013156056404114, -0.13879844546318054, -0.7968024611473083, -0.5735781788825989, -0.005686062388122082, 0.2647665739059448, -0.9052238464355469, 1.1604329347610474, 0.09488136321306229, -0.5419686436653137, 0.2800044119358063, -1.0562998056411743, -0.10026887059211731, 0.8941286206245422, -0.04724584519863129, -0.6138544678688049, 0.23472371697425842, -0.24738715589046478, 0.7247297763824463, 0.2696748375892639, 0.5137016177177429, -0.918901801109314, -0.06415818631649017, -0.032610934227705, 0.33864420652389526, 0.7019696831703186, 0.31552574038505554, 0.1757480353116989, 0.18747343122959137, -0.8508068323135376, -0.008566947653889656, 0.5694114565849304, 0.07306505739688873, -0.49434229731559753, -0.5150948762893677, 0.1823062300682068, -0.11530424654483795, 0.618525505065918, -0.580436110496521, 0.4752388000488281, 0.27761009335517883, 0.11476440727710724, 0.5760947465896606, 0.24162174761295319, 0.5479367971420288, -0.2581382691860199, 0.17525891959667206, -0.17783357203006744, 0.43496671319007874, -0.2312958687543869, -0.44076594710350037, -0.36781591176986694, -0.20089572668075562, 0.6660460233688354, 0.47461768984794617, -0.3835347592830658, 0.7472419738769531, -0.03632725402712822, -0.931355893611908, -0.3113479018211365, 0.14196990430355072, 0.3988608717918396, 0.11433935910463333, 0.15214833617210388, -0.6797310709953308, -0.6579852104187012, -0.9839515686035156, 0.23200161755084991, -0.1611824333667755, 0.1112353652715683, 0.38816648721694946, 0.8464984893798828, -0.5279943346977234, 0.6269728541374207, -0.6124067902565002, -0.5306713581085205, 0.1461218148469925, 0.06404338032007217, 0.16539739072322845, 0.8444375395774841, 0.8703320026397705, -0.5107880234718323, -0.354939728975296, -0.6660752892494202, -0.8675307035446167, -0.22502335906028748, 0.07478982955217361, -0.4688085615634918, -0.3754768371582031, 0.4398232102394104, -0.28188833594322205, 0.4848631024360657, 0.8240717649459839, -0.6007611751556396, 0.2889731526374817, -0.08504372835159302, 0.35621076822280884, -1.1762844324111938, 0.2870975434780121, 0.185808002948761, -0.493928462266922, -0.49167510867118835, 0.22415360808372498, 0.30853939056396484, -0.407253235578537, -0.12206590920686722, 0.7205313444137573, -0.7061349153518677, -0.07551151514053345, -0.07463476061820984, -0.4295511841773987, -0.02159312181174755, -0.011039922945201397, 0.4138983488082886, 0.45809587836265564, 1.003844976425171, -0.3317422568798065, 0.6455433964729309, 0.45281487703323364, 0.15654240548610687, 0.759791374206543, -0.8303974270820618, 0.2205221801996231, -0.06651272624731064, 0.5321608185768127, -1.317326545715332, -0.8462703824043274, 0.6248003840446472, -0.5107378959655762, 0.5653716921806335, -0.31811124086380005, -0.5920522212982178, -0.5885257720947266, -0.5947005152702332, 0.8426113724708557, 0.20722781121730804, -0.9016111493110657, 0.3626420497894287, 0.6662033796310425, 0.08287400007247925, 0.1391998678445816, -0.71809983253479, 0.20166292786598206, -0.23069797456264496, -0.31822213530540466, 0.6899774074554443, -0.06419333815574646, 0.12442075461149216, -0.07885025441646576, 0.4580935835838318, -0.068494513630867, -0.44358038902282715, 0.6546027660369873, 0.21200141310691833, -0.07130269706249237, 0.4440789520740509, -0.16887080669403076, -0.6917746067047119, 0.26616209745407104, 0.06384763866662979, 0.23817141354084015, -0.31050828099250793, -0.015349228866398335, -0.7726770639419556, 0.3332442343235016, 0.24158404767513275, -0.06237363815307617, 0.5469221472740173, 0.9555321931838989, -0.6199017763137817, 0.17415039241313934, -0.8228043913841248, -0.27501800656318665, -0.502274215221405, -0.2811618745326996, -0.3518892228603363, -0.5968916416168213, 0.7657128572463989, -0.4170660674571991, -0.24650394916534424, 0.6816329956054688, 0.8086262941360474, -0.2977577745914459, 0.44727233052253723, 0.2854241132736206, -0.22549499571323395, 0.43767350912094116, -0.32720431685447693, -0.34887200593948364, -0.8241305351257324, -0.5120524764060974, -0.31465092301368713, -0.375811904668808, -0.7752232551574707, -0.3809009790420532, 0.09824828058481216, -0.14486996829509735, -0.34313392639160156, 0.6048992872238159, -0.99906986951828, 0.4710357189178467, 0.7672737836837769, 0.40261611342430115, 0.048665888607501984, -0.19688819348812103, 0.23719537258148193, 0.18756355345249176, -0.5453673601150513, -0.3615805208683014, 1.3788255453109741, 0.5654549598693848, 1.1783227920532227, 0.09910155087709427, 1.4308241605758667, 0.24046634137630463, 0.3412928879261017, -0.2002052217721939, 0.42735031247138977, 0.1966334879398346, -1.021696925163269, -0.23643605411052704, -0.14006294310092926, -0.8559701442718506, -0.4854797422885895, -0.24699760973453522, -0.08968605846166611, 0.6751204133033752, 0.514449417591095, -0.1524285078048706, 0.18229039013385773, -0.9140163064002991, 1.0602704286575317, -0.05748090520501137, -0.18919041752815247, 0.1445239782333374, -0.6179276704788208, 0.24360783398151398, 0.25514063239097595, 0.11210411041975021, -0.38702392578125, -0.17968884110450745, 0.9106813669204712, -0.4025886654853821, 1.3482301235198975, -0.5960373878479004, 0.13867610692977905, 0.34731724858283997, -0.0836871936917305, 0.18507365882396698, 0.45488235354423523, 0.27563995122909546, 0.5634837746620178, 0.3715508282184601, -0.5643638372421265, -0.15713907778263092, 0.8655685186386108, -0.6538479924201965, 0.08972156792879105, -0.513658881187439, -0.14031212031841278, 0.05157528817653656, 0.28814443945884705, 0.27373722195625305, 0.49034950137138367, -0.3980267345905304, 0.10105343163013458, 0.5420964956283569, 0.18927110731601715, 0.3898089826107025, 0.2893465459346771, -0.34731894731521606, -0.7130016088485718, 1.1920313835144043, 0.3012731671333313, -0.15090316534042358, 0.11958171427249908, 0.34808608889579773, -0.45872780680656433, -0.3056168258190155, -0.45322126150131226, 0.5325004458427429, -0.4418948292732239, -0.666589081287384, -0.16019760072231293, -0.28668829798698425, -0.9131154417991638, -0.22198975086212158, -0.760518491268158, -0.6072997450828552, -0.5822879076004028, -0.388981431722641, 0.8587861657142639, 0.7763822078704834, -0.8410546779632568, 0.3790343403816223, -0.6991056799888611, 0.5074574947357178, 0.34506431221961975, 0.9172159433364868, -0.2807788848876953, -0.3173353672027588, -0.15365630388259888, -0.4450295865535736, -0.15317298471927643, -0.758649468421936, 0.0229933001101017, 0.23367512226104736, 0.6743844151496887, 0.18443991243839264, -0.014628306962549686, 0.6580687165260315, -0.2800596058368683, 0.46675464510917664, 0.25146517157554626, -0.5054082870483398, 0.8675785064697266, -0.394605427980423, 0.43925121426582336, 1.095798134803772, 0.5606570243835449, -0.37837159633636475, 0.00928325206041336, -1.0571932792663574, -0.5079886317253113, 0.24333813786506653, 0.06826671212911606, 0.34069710969924927, -0.0408744290471077, 0.7569184899330139, -0.12514306604862213, 0.15406987071037292, -0.9235936403274536, -0.9515383243560791, -0.12370556592941284, -0.09962709993124008, 0.069819875061512, -0.6894693970680237, -0.30672410130500793, -0.8996840715408325, 0.6932179927825928, -0.1780422478914261, 0.5424590110778809, 0.4295530319213867, 0.4670916795730591, -0.16745726764202118, -0.19178259372711182, 0.15839910507202148, 0.501003623008728, -0.6479532718658447, 0.14305032789707184, -0.27492034435272217, -0.37918469309806824, -0.0198728796094656, 0.266583651304245, -0.17430874705314636, -0.04715343192219734, 0.44548141956329346, 0.4320562481880188, -0.030660776421427727, 0.12747575342655182, 0.40763115882873535, -0.04614311829209328, -0.4918235242366791, -0.4237211346626282, -0.04678059741854668, 0.458111047744751, 0.25208231806755066, 0.12276237457990646, -0.3459290564060211, 0.5375327467918396, -0.49967989325523376, 0.5076282620429993, 0.20012785494327545, -0.46981725096702576, -0.5415398478507996, 0.5537847280502319, 0.5232941508293152, -0.33517128229141235, 0.5038830637931824, -0.613317608833313, -0.1599440574645996, 0.5137768983840942, 0.43517106771469116, 0.9032354950904846, -0.7760683298110962, 0.74826580286026, 0.8795082569122314, 0.3009515702724457, 0.10789254307746887, 0.6238045692443848, -0.36019253730773926, -0.7660136222839355, 0.10662251710891724, -0.33523693680763245, -0.36412715911865234, 0.14918313920497894, -0.8978005051612854, 0.2068837583065033, -0.5844928622245789, -0.366828590631485, 0.31158632040023804, 0.11504869908094406, -0.6027461290359497, 0.21307475864887238, 0.4004930257797241, 1.0752087831497192, -1.1244152784347534, 0.76185142993927, 0.9105901122093201, -0.328362375497818, -0.6590712666511536, -0.5095923542976379, 0.1227775290608406, -0.8682308197021484, 0.17101646959781647, 0.08890672028064728, 0.408273309469223, -0.07300730049610138, -0.9526728391647339, -0.7906239628791809, 1.3116580247879028, 0.24395614862442017, -0.7457075715065002, 0.3144676685333252, -0.014363712631165981, 0.3651202321052551, -0.607217013835907, 0.1268622726202011, 0.4086418151855469, 0.7958009243011475, 0.42228078842163086, -0.6839492917060852, 0.13290353119373322, -0.37534868717193604, -0.013336853124201298, 0.24048344790935516, -0.7892199158668518, 0.24702005088329315, -0.11876484751701355, -0.029126854613423347, -0.08872614055871964, 0.5949511528015137, 0.2907395362854004, 0.6569902300834656, 0.28178176283836365, 0.8413230776786804, 0.5220115780830383, -0.1499149054288864, 0.9350650906562805, -0.08314523845911026, 0.8686750531196594, 1.375396728515625, -0.11045821011066437, 0.35496801137924194, 0.5757538080215454, -0.09902213513851166, 0.2768140137195587, 1.0835423469543457, -0.714691698551178, 0.7186861634254456, -0.07850095629692078, -0.15538747608661652, -0.4481979310512543, -0.0015057290438562632, -0.7530830502510071, 0.2029181718826294, 0.22656796872615814, -0.7379211187362671, -0.3906688988208771, -0.09484794735908508, -0.22861741483211517, -0.21025624871253967, -0.5029310584068298, 1.1325721740722656, -0.11004474014043808, 0.11483144760131836, 0.2590916156768799, -0.2568701505661011, 0.3767094016075134, -0.46805068850517273, -0.28517448902130127, -0.044107843190431595, -0.0713520422577858, -0.6355962157249451, -1.2150814533233643, 0.7171820402145386, -0.5526487231254578, -0.2020733803510666, -0.3046889305114746, 1.2153838872909546, -0.43547365069389343, -1.0586580038070679, 0.2770858108997345, 0.4560100734233856, 0.3039298355579376, -0.2244139462709427, -1.4176725149154663, 0.31442660093307495, -0.28980833292007446, -0.14447857439517975, 0.3483385741710663, 0.18622471392154694, 0.2181609719991684, 0.549148678779602, 0.415012389421463, -0.051679160445928574, -0.539550244808197, 0.2969207167625427, 0.9711083769798279, -0.7221582531929016, -0.27696359157562256, -0.6846550703048706, 0.41750526428222656, -0.21909672021865845, -0.4880043566226959, 0.7200746536254883, 1.055467963218689, 0.8595807552337646, -0.42812150716781616, 0.48479601740837097, -0.1642787605524063, 0.46779322624206543, -0.04860171675682068, 0.6864525079727173, -0.46885180473327637, -0.36141350865364075, -0.33507072925567627, -0.6862202882766724, -0.5003232359886169, 0.5999704003334045, -0.041733983904123306, -0.1811995655298233, 0.3407815992832184, 1.0512298345565796, -0.1826196014881134, -0.16726289689540863, 0.13125145435333252, -0.11635260283946991, -0.0014894306659698486, 0.1382310539484024, 0.41897398233413696, -0.6912996768951416, -0.23952624201774597, -0.6928331255912781, -0.6551603078842163, -0.0013537113554775715, -1.0267413854599, -0.8985146880149841, -0.9045440554618835, -0.8649972081184387, -0.39784228801727295, -0.11627529561519623, 0.6890583038330078, 1.1465462446212769, -0.9293709993362427, -0.42091870307922363, 0.044115349650382996, 0.07659964263439178, 0.14343279600143433, -0.21714143455028534, 0.33031368255615234, -0.004351847339421511, -0.41470253467559814, -0.20248985290527344, 0.3519691228866577, 0.2691430449485779, -0.27975592017173767, 0.111249640583992, -0.19866079092025757, -0.22009551525115967, 0.4525596797466278, 0.4773426055908203, -0.1462763100862503, -0.19950008392333984, -0.5017138123512268, -0.001127692754380405, 0.2790323793888092, 0.9001040458679199, -0.44568371772766113, 0.35342806577682495, 0.41256800293922424, 0.20623745024204254, 0.6590954065322876, 0.1152983233332634, 0.34088730812072754, -0.7996275424957275, 0.045657187700271606, -0.13497941195964813, 0.27292561531066895, 0.27988743782043457, -0.679827868938446, 0.9853458404541016, 0.6271679401397705, -0.6955450177192688, -0.75568026304245, -0.21637102961540222, -1.4423067569732666, 0.19257499277591705, 0.9661421775817871, -0.009952959604561329, -0.644637942314148, 0.15559327602386475, -0.1436033844947815, -0.11390769481658936, -0.7421397566795349, 0.49036622047424316, 0.5892081260681152, -0.1715613603591919, -0.30196595191955566, -0.011057962663471699, 0.5635748505592346, -0.426166832447052, -1.3074952363967896, 0.0853877142071724, 0.4440389573574066, 0.4837329089641571, 0.4019462466239929, 1.0530530214309692, -0.3785809874534607, 0.2888176739215851, 0.09425035864114761, 0.5803235173225403, -0.2024911344051361, -0.5051217675209045, -0.44322675466537476, -0.024067774415016174, -0.2396671026945114, -0.6353477835655212 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
result-kand2-sdxl-wuerst-karlo/f4e64da0
result-kand2-sdxl-wuerst-karlo
2023-11-14T23:50:06Z
227
0
null
[ "region:us" ]
2023-11-14T23:50:06Z
2023-11-14T23:50:05.000Z
2023-11-14T23:50:05
--- dataset_info: features: - name: result dtype: string - name: id dtype: int64 splits: - name: train num_bytes: 171 num_examples: 10 download_size: 1333 dataset_size: 171 configs: - config_name: default data_files: - split: train path: data/train-* --- # Dataset Card for "f4e64da0" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.7704469561576843, -0.0981425940990448, 0.32765233516693115, 0.2055966556072235, -0.1418345719575882, -0.06511812657117844, 0.4506762623786926, -0.3250679671764374, 0.7157395482063293, 0.5383344888687134, -0.7928028702735901, -0.7394989728927612, -0.6107641458511353, -0.015504174865782261, -0.14522047340869904, 1.1922577619552612, -0.004626658745110035, 0.012959945946931839, -0.487162321805954, -0.18148070573806763, -0.248476043343544, -0.48462748527526855, -0.5434796214103699, -0.454668253660202, 0.7792351841926575, 0.7992679476737976, 0.5182923078536987, 0.45206740498542786, 0.737963080406189, 0.2762810289859772, 0.23752418160438538, -0.3813056945800781, -0.4767416715621948, -0.2777136564254761, -0.08154600113630295, -0.6442587375640869, -1.197101354598999, -0.0016602552495896816, 0.6420462727546692, 0.4117794334888458, -0.011097671464085579, 0.6709439754486084, -0.32467010617256165, 0.9719828963279724, -0.4660269021987915, 0.7092241644859314, -0.1419367492198944, 0.08472626656293869, -0.7534616589546204, 0.022165287286043167, 0.17500685155391693, -0.5326972603797913, -0.2835918664932251, -1.0795552730560303, 0.271369069814682, 0.037740882486104965, 0.7740762829780579, 0.1815546154975891, -0.05738745257258415, -0.019463319331407547, -0.3874858617782593, 0.10836461931467056, -0.30927661061286926, 0.4918358623981476, 0.7495052814483643, 0.3500663638114929, 0.1487976312637329, -0.5837247371673584, -0.3025515079498291, 0.3596231937408447, 0.3501904606819153, -0.031766172498464584, 0.12390659004449844, 0.06980599462985992, 0.7586896419525146, 0.7607602477073669, -0.3836284875869751, -0.27576524019241333, -0.787110447883606, -0.5797576904296875, 0.8034800291061401, 0.10993459820747375, 0.2103818655014038, -0.08819597214460373, -0.2743135690689087, -0.1689278483390808, -0.515716552734375, -0.1375650316476822, 0.6380483508110046, 0.038055866956710815, -1.0263006687164307, 0.48509401082992554, 0.04029111936688423, 0.4058915376663208, 0.30492517352104187, 0.6563681364059448, 0.9746758937835693, -0.24273839592933655, -0.187933087348938, 0.04967343434691429, 0.323219358921051, 0.6152586936950684, 0.17364150285720825, 0.13497506082057953, -0.23558880388736725, -0.05438749119639397, 0.10478731244802475, -1.2997554540634155, -0.7752887606620789, 0.44987690448760986, -0.8091112971305847, -0.19969171285629272, 0.28802767395973206, -1.2421000003814697, -0.3292292058467865, -0.2340249866247177, 0.10272063314914703, -0.18744949996471405, -0.8323522806167603, -0.28542277216911316, -0.657508373260498, 0.4146234691143036, 0.14673781394958496, -1.0839897394180298, 0.3753458261489868, 0.7697610259056091, 0.5251889824867249, 0.23721928894519806, -0.11571166664361954, -0.6743022203445435, 0.22911378741264343, -0.0979098305106163, 0.7232984304428101, -0.6963515281677246, -0.4410924017429352, 0.06990694254636765, 0.4717947840690613, 0.061839114874601364, -0.38656115531921387, 0.9075767993927002, -0.512384831905365, -0.2124355137348175, -0.7332739233970642, -0.6774706244468689, -0.2543227970600128, 0.2409450262784958, -1.403647780418396, 1.008729338645935, 0.3920970559120178, -0.8004695177078247, 0.3519355058670044, -1.2070248126983643, -0.11529229581356049, 0.6354403495788574, -0.30088192224502563, -0.3206879198551178, 0.2725585997104645, -0.09213628619909286, 0.5733062028884888, -0.10114780068397522, 0.30318233370780945, -0.8093323111534119, -0.3010081350803375, -0.1410449743270874, -0.054336294531822205, 0.7988032698631287, 0.3683505058288574, 0.2129000574350357, 0.024307139217853546, -0.9101243019104004, -0.11347395181655884, 0.2650260925292969, -0.05796037241816521, -0.3132154941558838, -0.7234856486320496, 0.4056704044342041, -0.13009989261627197, 0.5899685025215149, -0.5730147361755371, 0.09777630865573883, -0.05981788784265518, 0.030441340059041977, 0.7214452624320984, 0.06122082844376564, 0.47535890340805054, -0.5945530533790588, 0.7096261978149414, 0.20097272098064423, 0.4024095833301544, 0.018564533442258835, -0.6651406288146973, -0.36296966671943665, 0.10482855886220932, 0.6210756897926331, 0.6566656231880188, -0.7129530906677246, 0.5167345404624939, 0.135676309466362, -0.5579432845115662, -0.21536442637443542, 0.011240024119615555, 0.1821625828742981, 0.12009734660387039, 0.3012101352214813, -0.5300246477127075, -0.6933858394622803, -0.756066083908081, 0.3823484778404236, 0.05427079647779465, 0.02257789485156536, 0.40309569239616394, 0.8970816135406494, -0.6099072694778442, 0.4756447970867157, -0.7225583791732788, -0.23951826989650726, 0.3297565281391144, -0.33113935589790344, 0.148088276386261, 0.7398616075515747, 1.2238647937774658, -0.8684619665145874, -0.04792451858520508, -0.6082646250724792, -0.6145293116569519, 0.08156842738389969, 0.5693572163581848, -0.5776582956314087, 0.1125868409872055, 0.08583448082208633, -0.3586883544921875, 0.5795205235481262, 1.0647249221801758, -0.6378374695777893, 0.08191467076539993, -0.1086902916431427, 0.4356500506401062, -1.2817078828811646, 0.37314826250076294, 0.10304613411426544, -0.20360371470451355, -0.2704515755176544, -0.11304667592048645, 0.1920023262500763, -0.2909941077232361, -0.04747234284877777, 0.43961483240127563, -0.5213629007339478, -0.25677716732025146, 0.20792828500270844, -0.13162335753440857, -0.11197403818368912, 0.17203333973884583, -0.025585370138287544, 0.46854203939437866, 0.9529800415039062, -0.20580878853797913, 0.7701247930526733, 0.672855019569397, 0.18009492754936218, 0.9297071695327759, -0.574017345905304, 0.18726272881031036, -0.21716941893100739, 0.38121297955513, -0.6736885905265808, -0.6237643957138062, 0.46644338965415955, -0.23142535984516144, 0.49306467175483704, -0.49943432211875916, -0.2969192862510681, -0.6912417411804199, -0.5437192320823669, 0.8804314732551575, 0.4142377972602844, -0.6806790828704834, 0.5583140850067139, 0.9100235104560852, -0.06688540428876877, -0.06674565374851227, -0.8618749976158142, -0.050748083740472794, -0.32168781757354736, -0.5609614253044128, 0.6023812890052795, -0.6736695170402527, 0.05462932959198952, -0.14280758798122406, 0.2400778979063034, -0.342566579580307, -0.3261992633342743, 0.6331394910812378, 0.21321702003479004, -0.3472408652305603, 0.1596418172121048, 0.016482697799801826, -0.6508225202560425, 0.43362927436828613, 0.002715654904022813, 0.17477405071258545, -0.2657746970653534, 0.07784797996282578, -0.36363232135772705, 0.578431248664856, 0.4312177300453186, -0.2080262005329132, 0.26494890451431274, 0.9737945795059204, -0.9397275447845459, -0.10522105544805527, -0.437456876039505, -0.2696724236011505, -0.49776023626327515, -0.07134538888931274, -0.5905605554580688, -0.6735845804214478, 0.7182960510253906, -0.06027235835790634, 0.03126109763979912, 0.8385912179946899, 0.6174684166908264, 0.24226051568984985, 0.4793054163455963, 0.5687700510025024, -0.1221119686961174, 0.4822337031364441, -0.36612972617149353, -0.4316825866699219, -0.7475927472114563, -0.37611109018325806, -0.45571839809417725, -0.4594872295856476, -0.7246943712234497, -0.601166844367981, -0.21831157803535461, -0.2666409909725189, -0.25778958201408386, 0.4064196050167084, -0.735454261302948, 0.4003370702266693, 0.43292707204818726, 0.23205605149269104, -0.15077228844165802, -0.17663532495498657, 0.2616232633590698, 0.1347145140171051, -0.5960915684700012, -0.18087375164031982, 1.302870273590088, 0.6025888323783875, 0.8371184468269348, 0.22856929898262024, 1.1651374101638794, 0.37523117661476135, 0.22641487419605255, -0.16904373466968536, 0.3827018737792969, -0.24991145730018616, -0.8093590140342712, 0.03365987539291382, -0.2393305003643036, -0.7415926456451416, -0.5864506959915161, -0.31617847084999084, -0.200448140501976, 0.5163743495941162, 0.5395373106002808, -0.17386968433856964, 0.21115507185459137, -0.8538373112678528, 1.232340693473816, -0.1387016922235489, -0.09666920453310013, -0.1652785688638687, -0.6140044927597046, 0.3811887800693512, 0.11508835852146149, 0.27954286336898804, -0.39395031332969666, -0.017544200643897057, 1.2396645545959473, -0.46087417006492615, 0.970532238483429, -0.9545323252677917, -0.1522637903690338, 0.17935608327388763, -0.3619101345539093, 0.2215452790260315, 0.5650635957717896, -0.23626427352428436, 0.31324493885040283, 0.46229639649391174, -0.537973165512085, -0.14393125474452972, 1.079939365386963, -0.7418254017829895, 0.2272941619157791, -0.4484548270702362, -0.5848965048789978, -0.14167183637619019, 0.21148990094661713, 0.19057133793830872, 0.8019778728485107, -0.3760490119457245, 0.0314570851624012, 0.9063794612884521, 0.3515329658985138, 0.430032879114151, 0.06893010437488556, -0.2718333899974823, -0.5486851334571838, 1.000298023223877, 0.30263638496398926, -0.366149365901947, 0.22902174293994904, 0.1847435086965561, -0.363819420337677, -0.4110895097255707, -0.734569787979126, 0.2877122461795807, -0.5774711966514587, -0.5397950410842896, -0.2936748266220093, -0.23655705153942108, -0.4211619794368744, -0.22763246297836304, -0.3552318513393402, -0.6716558337211609, -0.8084667921066284, -0.5943001508712769, 1.2923377752304077, 0.6511232256889343, -0.6122806072235107, 0.1018589437007904, -1.0918292999267578, 0.6066662073135376, -0.08555185049772263, 1.0935267210006714, -0.3121383786201477, -0.28057926893234253, -0.15812677145004272, 0.0663803443312645, 0.03626648336648941, -0.7178525328636169, -0.293186217546463, 0.2746267020702362, 0.7295812964439392, 0.1719939112663269, 0.0812569111585617, 0.3889318108558655, -0.32307320833206177, 0.6469164490699768, 0.1769818216562271, -0.773449182510376, 0.6157464981079102, -0.28043055534362793, 0.29670679569244385, 0.8841971755027771, 0.6939011812210083, 0.06009503826498985, 0.22293409705162048, -1.154673457145691, -0.651976466178894, 0.3783596456050873, -0.12440499663352966, 0.16818617284297943, 0.23953795433044434, 0.624471127986908, 0.15067093074321747, 0.24290724098682404, -0.4925152063369751, -0.7192723155021667, -0.3916475772857666, -0.6161961555480957, 0.2013854682445526, -0.5171811580657959, -0.3545888364315033, -0.5050306916236877, 0.6153127551078796, -0.20794428884983063, 0.6283402442932129, -0.02023993618786335, 0.3338721692562103, -0.21254776418209076, -0.2357541173696518, 0.47002333402633667, 0.4863043427467346, -0.5363975167274475, -0.06588584929704666, -0.15612074732780457, -0.6192942261695862, -0.34496432542800903, 0.9222047924995422, 0.0972028374671936, -0.32511550188064575, 0.25626614689826965, 0.8259724378585815, 0.024318760260939598, -0.005309871397912502, 0.4837206304073334, -0.22852270305156708, -0.5401550531387329, -0.5180357694625854, 0.28947895765304565, 0.21049435436725616, 0.3074550926685333, -0.01903078705072403, 0.03594702482223511, 0.3512659966945648, -0.3508719205856323, 0.7967528104782104, 0.03405584767460823, -0.6079910397529602, -0.6472768783569336, 0.7851005792617798, 0.8812036514282227, -0.43465834856033325, 0.7307447791099548, -0.16579826176166534, -0.300179660320282, 0.7705477476119995, 0.4374053478240967, 0.7268908023834229, -0.5664872527122498, 0.46884360909461975, 0.5868334174156189, 0.06628306210041046, 0.2513079345226288, 1.0473511219024658, -0.3399202227592468, -0.7344627976417542, 0.007043446879833937, -0.5143300890922546, -0.4019862115383148, -0.2882241904735565, -1.0390022993087769, 0.1787319779396057, -0.7225365042686462, -0.24524304270744324, 0.23280839622020721, 0.19654341042041779, -0.9791054725646973, 0.3315030336380005, 0.3188058137893677, 1.481641173362732, -0.9295108318328857, 0.8795300126075745, 0.7862123250961304, -0.5488282442092896, -0.6930978894233704, -0.2751522958278656, 0.15285715460777283, -0.8478365540504456, -0.05514555051922798, 0.2921511232852936, 0.3950062692165375, 0.06443097442388535, -0.6581220030784607, -0.6756505370140076, 1.326945185661316, 0.283713698387146, -0.9345470070838928, 0.23881161212921143, -0.22661197185516357, 0.12670575082302094, -0.46802252531051636, 0.22122709453105927, 0.6439684629440308, 0.9255289435386658, 0.37316808104515076, -0.6263095736503601, 0.2311287671327591, -0.542873203754425, -0.27198803424835205, 0.5327265858650208, -0.6996203064918518, 0.23343268036842346, -0.23995672166347504, 0.33645927906036377, -0.07947742938995361, 0.7430580854415894, 0.1498294472694397, 0.5127241015434265, 0.6200384497642517, 0.6627770066261292, 1.11666738986969, -0.3416841924190521, 0.8571869134902954, -0.18562035262584686, 0.4241938292980194, 0.8410595655441284, -0.3829282820224762, 0.43942588567733765, 0.4248993992805481, -0.03221834450960159, 0.3992614150047302, 0.6488511562347412, -0.5200239419937134, 0.3590617775917053, 0.1537044644355774, -0.26851242780685425, -0.0565214566886425, 0.18841618299484253, -0.7900179028511047, 0.09094235301017761, 0.6746208667755127, -0.4612581431865692, 0.00877984706312418, 0.14338359236717224, 0.13266006112098694, -0.24199654161930084, -0.5360625982284546, 0.6618855595588684, 0.007918554358184338, -0.17873403429985046, 0.06491703540086746, -0.1628427654504776, 0.3814578354358673, -0.6492084860801697, -0.4376815855503082, 0.0021203046198934317, 0.2819887101650238, -0.6645116209983826, -1.3146374225616455, 0.9405278563499451, -0.2767156660556793, -0.549400806427002, -0.06103485822677612, 0.666013777256012, -0.5049827694892883, -0.7783498764038086, 0.37330228090286255, -0.14809031784534454, 0.24620673060417175, 0.13004055619239807, -1.3248335123062134, 0.693343997001648, 0.054519470781087875, -0.11401866376399994, 0.24048210680484772, 0.24361301958560944, 0.08502138406038284, 0.30339252948760986, 0.4768305718898773, -0.23226334154605865, -0.35732439160346985, 0.1773783415555954, 0.9225720763206482, -0.7583181262016296, -0.48198816180229187, -0.31037649512290955, 0.7298598289489746, -0.39083099365234375, -0.5844078063964844, 0.4568179249763489, 1.0245447158813477, 0.7703100442886353, -0.17930197715759277, 0.7984419465065002, -0.5164130330085754, 0.3801887631416321, -0.43100666999816895, 0.5107359886169434, -0.22038534283638, -0.2954912483692169, -0.19934533536434174, -0.7586597204208374, -0.6331448554992676, 0.7464997172355652, 0.17372527718544006, 0.21304136514663696, 0.5010349154472351, 0.9023335576057434, -0.2709254324436188, 0.5306863188743591, 0.15319639444351196, 0.24995887279510498, 0.34471166133880615, 0.599213182926178, 0.10884912312030792, -0.6682008504867554, 0.07749614119529724, -0.2812083661556244, -0.7781809568405151, 0.10061698406934738, -1.169661045074463, -0.8206377625465393, -0.8133478164672852, -0.6884644031524658, -0.4721142649650574, -0.01562727428972721, 0.7327059507369995, 0.9591684341430664, -0.9186832308769226, -0.06883686780929565, 0.08133800327777863, 0.15878547728061676, 0.14512218534946442, -0.14375267922878265, 0.5156834721565247, 0.47457820177078247, -0.6507453322410583, -0.08573905378580093, -0.024896493181586266, 0.1693994700908661, -0.23739047348499298, -0.10147619992494583, -0.044102683663368225, -0.06105230003595352, 0.2490517944097519, 0.45778051018714905, -0.07642973214387894, -0.5042619109153748, -0.6594508290290833, 0.28353801369667053, 0.15624776482582092, 0.8714852929115295, -0.47524791955947876, 0.10757479816675186, 0.6371939182281494, 0.4460064470767975, 0.7643349170684814, 0.08348061144351959, 0.7229316234588623, -0.6417473554611206, 0.13413837552070618, -0.0354793556034565, 0.4829694330692291, 0.2269025444984436, -0.5534164309501648, 0.7186057567596436, 0.402972549200058, -0.8209261298179626, -0.34457072615623474, 0.01582445204257965, -1.393406629562378, 0.504367470741272, 0.8782454133033752, -0.01166982389986515, -0.44114068150520325, -0.019982855767011642, -0.44787925481796265, -0.07213355600833893, -0.9038196206092834, -0.010650084353983402, 0.5351971983909607, 0.08091600984334946, -0.3412521481513977, -0.496460497379303, 0.7051217555999756, -0.5156838297843933, -1.245450735092163, 0.1692521870136261, 0.7356318235397339, 0.37085214257240295, 0.1374741792678833, 0.8958166837692261, -0.2785308063030243, 0.2476271688938141, 0.2564525306224823, 0.2749021649360657, -0.18570329248905182, -0.5570590496063232, -0.3369401693344116, 0.19187422096729279, -0.16494518518447876, -0.6011180281639099 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
open-source-metrics/issues
open-source-metrics
2023-11-22T16:30:37Z
226
0
null
[ "region:us" ]
2023-11-22T16:30:37Z
2022-09-23T18:41:08.000Z
2022-09-23T18:41:08
--- dataset_info: features: - name: dates dtype: string - name: type struct: - name: authorAssociation dtype: string - name: comment dtype: bool - name: issue dtype: bool splits: - name: transformers num_bytes: 4438900 num_examples: 125634 - name: peft num_bytes: 173459 num_examples: 5080 - name: evaluate num_bytes: 61286 num_examples: 1751 - name: huggingface_hub num_bytes: 260129 num_examples: 7471 - name: accelerate num_bytes: 315040 num_examples: 8985 - name: datasets num_bytes: 788720 num_examples: 22483 - name: optimum num_bytes: 181774 num_examples: 5236 - name: pytorch_image_models num_bytes: 139357 num_examples: 4040 - name: gradio num_bytes: 963353 num_examples: 26543 - name: tokenizers num_bytes: 181479 num_examples: 5285 - name: diffusers num_bytes: 1126818 num_examples: 32260 - name: safetensors num_bytes: 42290 num_examples: 1219 - name: candle num_bytes: 117802 num_examples: 3090 - name: text_generation_inference num_bytes: 164846 num_examples: 4840 - name: chat_ui num_bytes: 57561 num_examples: 1655 - name: hub_docs num_bytes: 126453 num_examples: 3588 download_size: 2854292 dataset_size: 9139267 configs: - config_name: default data_files: - split: peft path: data/peft-* - split: hub_docs path: data/hub_docs-* - split: evaluate path: data/evaluate-* - split: huggingface_hub path: data/huggingface_hub-* - split: accelerate path: data/accelerate-* - split: datasets path: data/datasets-* - split: optimum path: data/optimum-* - split: pytorch_image_models path: data/pytorch_image_models-* - split: gradio path: data/gradio-* - split: tokenizers path: data/tokenizers-* - split: diffusers path: data/diffusers-* - split: transformers path: data/transformers-* - split: safetensors path: data/safetensors-* --- # Dataset Card for "issues" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.5588681697845459, -0.324247807264328, 0.25111985206604004, 0.385244756937027, -0.011691534891724586, 0.0757250264286995, 0.24764636158943176, -0.2521387040615082, 0.881263256072998, 0.4158760905265808, -0.8917698860168457, -0.6229350566864014, -0.5490015149116516, -0.2870168387889862, -0.3243187963962555, 1.4751968383789062, -0.1314018815755844, -0.0865265429019928, -0.5371719002723694, -0.14479601383209229, -0.7322580814361572, -0.5171405673027039, -0.6862125992774963, -0.501325249671936, 1.0346338748931885, 0.8353513479232788, 0.45901304483413696, 0.5238479375839233, 1.1679362058639526, 0.18039286136627197, 0.04254423826932907, -0.25650322437286377, -0.4682115912437439, 0.07807260006666183, -0.18397773802280426, -0.4750548005104065, -1.003406286239624, 0.13637596368789673, 0.4079989790916443, 0.4815405011177063, -0.2681252062320709, 0.7829292416572571, -0.30537211894989014, 0.9550812840461731, -0.46642592549324036, 0.46467190980911255, -0.13798290491104126, -0.010870025493204594, -0.8126739263534546, -0.09865258634090424, 0.3321438729763031, -0.3900563418865204, -0.17716309428215027, -1.1105196475982666, 0.06536915898323059, 0.0534122958779335, 0.9608162045478821, 0.3879915475845337, -0.02527809515595436, -0.232406884431839, -0.2152751088142395, -0.006820132024586201, -0.1286555379629135, 0.1702234148979187, 0.7314233183860779, 0.55406254529953, -0.07394085079431534, -0.5690299868583679, -0.3822925090789795, 0.22913068532943726, -0.026971694082021713, 0.2898620665073395, -0.09830082207918167, -0.223490908741951, 0.5562806725502014, 0.7261426448822021, -0.4986284077167511, -0.1911621391773224, -0.6104190945625305, -0.44464150071144104, 0.9213503003120422, 0.3080400824546814, 0.43737509846687317, -0.22792385518550873, -0.005076535977423191, -0.26903235912323, -0.6165377497673035, 0.0041319625452160835, 0.5736178755760193, 0.08693813532590866, -1.24449622631073, 0.763353168964386, 0.11002618074417114, 0.425006628036499, 0.30221545696258545, 0.6879860162734985, 0.6997506618499756, -0.37357744574546814, -0.01934446021914482, -0.111799456179142, 0.17073124647140503, 0.39379578828811646, 0.04835331067442894, 0.15223705768585205, -0.1269838660955429, 0.04542207345366478, 0.2141258865594864, -0.8586673736572266, -0.9034186005592346, 0.6419429183006287, -0.5933127403259277, -0.3026735782623291, 0.3005621135234833, -1.021752953529358, -0.7672339677810669, -0.4744908809661865, 0.20080991089344025, 0.1837179958820343, -1.0164430141448975, -0.35748934745788574, -0.7428662776947021, 0.24787667393684387, 0.10829880833625793, -0.6144758462905884, 0.20729653537273407, 0.8395282030105591, 0.5231067538261414, 0.15445168316364288, -0.12512248754501343, -0.7775835990905762, 0.13976691663265228, -0.10930817574262619, 1.1975451707839966, -0.6852298974990845, -0.309147447347641, 0.10510913282632828, 0.3674529194831848, 0.08218736201524734, -0.4156346917152405, 0.6749275922775269, -0.1492292732000351, -0.3446419835090637, -0.9596019387245178, -0.44307589530944824, 0.22259949147701263, 0.6036084890365601, -1.0161296129226685, 1.0482057332992554, 0.33538562059402466, -0.8882001042366028, 0.24488431215286255, -1.3969782590866089, -0.18149405717849731, 0.48104599118232727, -0.12834329903125763, -0.5529777407646179, 0.16229534149169922, -0.14270968735218048, 0.4191494286060333, -0.161391481757164, 0.5009252429008484, -0.7979875802993774, 0.03177732601761818, 0.1555362045764923, 0.3380543291568756, 0.9081530570983887, 0.25486356019973755, 0.37147900462150574, 0.2327447384595871, -0.9504266977310181, -0.25763583183288574, 0.3578868806362152, 0.06409543007612228, -0.4148690402507782, -0.34696143865585327, 0.4702446758747101, -0.25571221113204956, 0.3390859365463257, -0.44821155071258545, 0.5665059685707092, 0.28114187717437744, -0.03654204681515694, 0.6402296423912048, 0.3200540244579315, 0.2969932556152344, -0.6000099778175354, 0.5465344190597534, 0.13681168854236603, 0.39186733961105347, -0.010715482756495476, -0.47721704840660095, -0.7178562879562378, 0.17634792625904083, 0.6846575736999512, 0.8268703818321228, -0.5801557898521423, 0.5105151534080505, 0.2037913203239441, -0.5680153369903564, -0.3023936152458191, 0.03862626105546951, 0.22936922311782837, 0.40816184878349304, 0.2734319269657135, -0.587816596031189, -0.5941623449325562, -0.6527817845344543, 0.26865527033805847, -0.17292360961437225, 0.16023458540439606, 0.44952306151390076, 0.9354484677314758, -0.42401832342147827, 0.7665531635284424, -0.80137038230896, -0.35615870356559753, 0.16964152455329895, 0.07749857753515244, 0.048776693642139435, 0.7763762474060059, 0.8967349529266357, -0.9201316833496094, -0.3182958960533142, -0.4226306974887848, -0.5093578696250916, -0.32580795884132385, 0.21579444408416748, -0.5545104742050171, -0.09030121564865112, 0.17398835718631744, -0.4688282608985901, 0.6892776489257812, 0.8873768448829651, -0.6179925203323364, 0.16828899085521698, -0.004105201922357082, 0.1466933637857437, -1.3654272556304932, 0.3762814700603485, 0.14751659333705902, 0.07688722759485245, -0.37630587816238403, 0.04035487025976181, 0.1395111083984375, -0.5797175765037537, 0.08085580170154572, 0.4447346329689026, -0.44920361042022705, -0.20315062999725342, 0.11366070061922073, 0.09283696115016937, -0.0018089058576151729, 0.1180160790681839, 0.06157604977488518, 0.4697965383529663, 1.0270187854766846, -0.40599948167800903, 0.9343271851539612, 0.6008585691452026, 0.2338334619998932, 1.2456523180007935, -0.7725726366043091, 0.20658299326896667, -0.2326941341161728, 0.15607991814613342, -0.8703815340995789, -0.8081967830657959, 0.7227483987808228, -0.379469633102417, 0.6108726263046265, -0.6536641120910645, -0.5388026833534241, -0.6389421820640564, -0.34348413348197937, 0.6475010514259338, 0.2759838402271271, -0.5736725926399231, 0.21638646721839905, 0.9787023067474365, -0.16844962537288666, -0.06349141895771027, -0.8751819133758545, 0.14585158228874207, -0.3709932565689087, -0.2646278440952301, 0.30088794231414795, -0.48252782225608826, -0.15110817551612854, -0.02316531352698803, 0.38029012084007263, -0.28954875469207764, -0.04721984639763832, 0.39023295044898987, 0.04582517594099045, -0.13488058745861053, 0.6150085926055908, -0.008673164993524551, -0.7633824944496155, 0.14734677970409393, 0.08915019780397415, 0.20889927446842194, -0.0560946948826313, -0.4742075204849243, -0.296312153339386, 0.6701053380966187, 0.1288662552833557, -0.48398250341415405, 0.25190553069114685, 0.943371057510376, -0.8485995531082153, 0.12071912735700607, -0.5561475157737732, -0.10828609764575958, -0.4463706314563751, 0.08522378653287888, -0.28019025921821594, -0.5849027037620544, 0.7878081202507019, -0.2224683165550232, 0.01851833052933216, 0.7669036984443665, 0.5287356376647949, -0.2545936703681946, 0.3635520935058594, 0.7490206956863403, -0.3455665707588196, 0.3707706332206726, -0.3050748109817505, -0.2521424889564514, -0.7933667898178101, -0.32468360662460327, -0.791122317314148, -0.505325973033905, -0.8749660849571228, -0.3408936560153961, 0.031673576682806015, 0.1092323437333107, -0.2420177459716797, 0.6490210294723511, -0.8296509385108948, 0.25693535804748535, 0.3801925778388977, 0.06562185287475586, -0.07762586325407028, -0.08388669788837433, 0.5872635841369629, 0.03422030434012413, -0.6945846080780029, -0.07318130135536194, 1.0755434036254883, 0.5633993744850159, 0.881763219833374, 0.28853684663772583, 0.924544095993042, 0.38018113374710083, 0.5541019439697266, -0.41269275546073914, 0.044291578233242035, 0.07907041907310486, -0.8293200731277466, -0.12850713729858398, -0.3010537922382355, -0.9829551577568054, -0.5670559406280518, -0.3870827257633209, -0.3230777680873871, 0.758406400680542, 0.5211673378944397, -0.025555597618222237, 0.3231833279132843, -0.8694901466369629, 1.1223399639129639, -0.19471919536590576, -0.05065922066569328, -0.14884816110134125, -0.5775285363197327, 0.025922004133462906, 0.17332908511161804, 0.17631614208221436, -0.4003187119960785, -0.0958884060382843, 0.9486477375030518, -0.5083151459693909, 1.1739811897277832, -0.673268735408783, -0.07178059965372086, 0.270333856344223, -0.35865315794944763, 0.23657627403736115, 0.5933651328086853, 0.05940882861614227, 0.10038019716739655, 0.189231738448143, -0.4929178059101105, -0.3089829087257385, 0.5994071960449219, -0.5951681733131409, -0.033099137246608734, -0.5849912166595459, -0.6528744101524353, -0.11479959636926651, 0.269514262676239, 0.0910758301615715, 0.7757087349891663, -0.33511173725128174, -0.18214203417301178, 0.775541365146637, 0.1114284098148346, 0.354849636554718, 0.29680290818214417, -0.23487183451652527, -0.4060896635055542, 1.1370083093643188, 0.389251172542572, -0.38334161043167114, 0.2522677779197693, 0.3054291009902954, -0.05623772367835045, -0.5335304141044617, -0.7013676762580872, 0.10416116565465927, -0.2799012362957001, -0.7534003257751465, -0.1958930641412735, -0.17328618466854095, -0.4182837903499603, -0.11345087736845016, -0.3534872233867645, -0.4716094434261322, -0.6545258164405823, -0.457717627286911, 1.299628734588623, 0.7667145729064941, -0.7483698725700378, 0.46028321981430054, -1.0119138956069946, 0.6327624320983887, 0.00944193359464407, 1.0694338083267212, -0.3920779526233673, -0.2699926495552063, -0.2837682366371155, -0.020868482068181038, -0.2491293102502823, -0.6571831703186035, -0.1594812422990799, 0.04964032396674156, 0.506219744682312, 0.2510802149772644, 0.17108075320720673, 0.8682814836502075, -0.009542684070765972, 0.4432273209095001, 0.17666511237621307, -0.6711674332618713, 0.8064606785774231, -0.44762733578681946, 0.22475652396678925, 1.0233674049377441, 0.4885571002960205, -0.5717685222625732, 0.0743398666381836, -1.0045126676559448, -0.6125155687332153, 0.46524637937545776, 0.10776284337043762, 0.26244014501571655, 0.09657637774944305, 0.73881995677948, -0.1529691368341446, 0.2577788233757019, -0.5995685458183289, -0.9171663522720337, -0.09861025959253311, -0.2733892500400543, 0.28336840867996216, -0.49045825004577637, -0.4212709665298462, -0.5668433904647827, 0.6168276071548462, 0.04843179136514664, 0.3291110396385193, 0.19979228079319, 0.30149197578430176, -0.3758339583873749, -0.0014009162550792098, 0.41098225116729736, 0.7960748076438904, -0.4303544759750366, -0.17773735523223877, -0.17369486391544342, -0.4573349058628082, -0.269540399312973, 0.7989487051963806, 0.0657796561717987, -0.20968177914619446, 0.459829717874527, 0.6519501805305481, -0.3674369752407074, -0.037283167243003845, 0.4574165940284729, -0.09763538092374802, -0.37506890296936035, -0.5643473863601685, -0.039167918264865875, 0.29952168464660645, 0.2947806119918823, -0.01295249443501234, -0.12222420424222946, 0.2879639267921448, -0.5595800280570984, 0.5101099610328674, -0.008288193494081497, -0.8451034426689148, -0.33084410429000854, 0.3262206017971039, 0.6645985245704651, -0.6195902824401855, 0.7459555268287659, -0.16671864688396454, -0.41127651929855347, 0.9834853410720825, 0.31831327080726624, 0.4552780091762543, -0.34708482027053833, 0.5922929048538208, 0.36148393154144287, 0.3349393606185913, 0.2261921614408493, 0.8484464287757874, -0.23483605682849884, -0.5790002942085266, -0.11087038367986679, -0.022260142490267754, -0.5868263840675354, -0.16186733543872833, -1.1861990690231323, 0.19089268147945404, -0.5208871960639954, -0.3577602505683899, -0.04014861211180687, 0.3327447175979614, -0.7018430233001709, 0.1438668668270111, 0.10448282957077026, 1.377264142036438, -1.0638773441314697, 0.6121005415916443, 1.0347528457641602, -0.580655574798584, -0.7924187779426575, -0.09705858677625656, 0.04492131248116493, -0.592025876045227, -0.18558576703071594, 0.10084683448076248, 0.6314744353294373, -0.3505587875843048, -0.8177037835121155, -0.794420599937439, 1.1713330745697021, 0.37168818712234497, -0.8557605147361755, 0.5392745733261108, -0.18697646260261536, 0.39826515316963196, -0.23495101928710938, 0.023400619626045227, 0.5369715094566345, 1.0800288915634155, 0.07332112640142441, -0.6555299162864685, -0.05714792385697365, -0.7646598219871521, -0.29710525274276733, 0.6148817539215088, -0.8120824098587036, 0.14333723485469818, -0.10851030051708221, 0.040453530848026276, -0.1361677050590515, 0.6291700601577759, 0.14957156777381897, 0.7196139693260193, 0.44916343688964844, 0.8645574450492859, 1.1202298402786255, -0.5766996145248413, 1.215051531791687, 0.14387531578540802, 0.5069950819015503, 1.2135646343231201, -0.2757374048233032, 0.2003300040960312, 0.5894583463668823, -0.14669926464557648, 0.21722714602947235, 0.8891448378562927, -0.6085220575332642, 0.3648888170719147, 0.5729160308837891, 0.0785418152809143, -0.18483474850654602, -0.20566539466381073, -0.9663777947425842, 0.03034266270697117, 0.47951027750968933, -0.13532240688800812, 0.017139973118901253, 0.05757475644350052, 0.18368782103061676, -0.13610030710697174, -0.5645453333854675, 0.8396345376968384, 0.02145627699792385, -0.07560721784830093, -0.2608005404472351, -0.2097119390964508, 0.16917024552822113, -0.6008516550064087, -0.5255515575408936, -0.07388180494308472, -0.10496511310338974, -0.6706873178482056, -1.1466374397277832, 0.9230238199234009, -0.18147580325603485, -0.4256969392299652, 0.07997899502515793, 0.8206380605697632, -0.3964173495769501, -0.9397742748260498, 0.2716327905654907, 0.2148926854133606, 0.21398814022541046, 0.08357787877321243, -1.35460364818573, 0.38570472598075867, -0.28410300612449646, -0.16492699086666107, 0.18157067894935608, 0.21949952840805054, -0.1237754225730896, 0.4899706244468689, 0.5634434819221497, -0.03136024996638298, -0.5480489134788513, 0.48791003227233887, 1.016549825668335, -0.5628894567489624, -0.33277156949043274, -0.3294707238674164, 1.0106171369552612, -0.5076781511306763, -0.6964492797851562, 0.3721921145915985, 0.7595964670181274, 0.7622085809707642, 0.04595223441720009, 0.727024495601654, -0.5531980991363525, 0.5750250816345215, -0.26717376708984375, 0.7598451972007751, -0.4754190742969513, -0.15146693587303162, -0.341467022895813, -0.6031310558319092, -0.8137008547782898, 0.6316825747489929, 0.021916700527071953, -0.046239566057920456, 0.4330628514289856, 0.7910610437393188, -0.21201536059379578, 0.12114117294549942, -0.1387324333190918, 0.11176931113004684, 0.13969306647777557, 0.26467013359069824, 0.4146885275840759, -0.5296302437782288, 0.19876210391521454, -0.3849536180496216, -0.5656360387802124, 0.12801937758922577, -1.139646291732788, -0.9044923186302185, -0.777863621711731, -0.8900590538978577, -0.5520052909851074, 0.04004475846886635, 0.8072603344917297, 0.9603740572929382, -1.0418285131454468, -0.17878198623657227, -0.047064412385225296, 0.543634831905365, 0.0454929918050766, -0.13542352616786957, 0.6838176250457764, 0.22240732610225677, -0.3742261826992035, -0.3168156147003174, 0.07477301359176636, 0.09343139082193375, -0.07386775314807892, 0.22864848375320435, 0.06314045190811157, -0.20667234063148499, 0.19175510108470917, 0.6027556657791138, 0.07467380911111832, -0.4421580731868744, -0.49522078037261963, 0.10251853615045547, 0.1405681073665619, 1.2054606676101685, -0.20179656147956848, 0.14141611754894257, 0.499887079000473, 0.6769341230392456, 0.7462255358695984, -0.02354609966278076, 0.6120076179504395, -0.5312589406967163, 0.06737316399812698, -0.16722163558006287, 0.4791313707828522, 0.25881338119506836, -0.7801758050918579, 0.9271553754806519, 0.38576388359069824, -0.45358142256736755, -0.7247722148895264, 0.24240747094154358, -1.4233653545379639, 0.431052565574646, 0.6962257623672485, -0.02094736322760582, -0.2618451714515686, -0.3112618625164032, -0.4002208709716797, 0.23083865642547607, -0.737892210483551, 0.38336002826690674, 0.6235040426254272, -0.03485521301627159, -0.44489872455596924, -0.3114730715751648, 0.5067911744117737, -0.1951364129781723, -1.500198483467102, 0.24660593271255493, 0.5457509756088257, 0.16327567398548126, 0.28372523188591003, 0.8114368319511414, -0.29980987310409546, 0.3032242953777313, 0.2035316526889801, 0.335801362991333, -0.40438422560691833, -0.617399275302887, -0.31706100702285767, -0.057255033403635025, -0.27238351106643677, -0.24540777504444122 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
smangrul/amazon_esci
smangrul
2023-06-28T09:38:19Z
226
3
null
[ "license:apache-2.0", "region:us" ]
2023-06-28T09:38:19Z
2023-06-28T09:34:18.000Z
2023-06-28T09:34:18
--- license: apache-2.0 ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
PKU-Alignment/processed-hh-rlhf
PKU-Alignment
2023-11-24T13:45:12Z
226
5
null
[ "task_categories:conversational", "size_categories:100K<n<1M", "language:en", "license:mit", "rlhf", "harmless", "helpful", "human-preference", "region:us" ]
2023-11-24T13:45:12Z
2023-07-15T09:57:18.000Z
2023-07-15T09:57:18
--- license: mit task_categories: - conversational language: - en tags: - rlhf - harmless - helpful - human-preference pretty_name: hh-rlhf size_categories: - 100K<n<1M --- # Dataset Card for Processed-Hh-RLHF This is a dataset that processes [hh-rlhf](https://huggingface.co/datasets/Anthropic/hh-rlhf) into an easy-to-use conversational and human-preference form.
[ -0.45215797424316406, -0.8520488142967224, 0.028194325044751167, -0.012122065760195255, -0.5013147592544556, 0.05189969018101692, 0.032437149435281754, -0.4173297882080078, 0.8817052245140076, 0.7426381707191467, -1.3582221269607544, -0.5766595005989075, -0.3353252112865448, 0.09469680488109589, -0.10572212189435959, 1.030456781387329, 0.15806031227111816, 0.07010449469089508, -0.2966892421245575, -0.23913566768169403, -0.292964369058609, -0.7854198217391968, -0.7116221785545349, -1.2153056859970093, 0.9778380393981934, 0.9291543960571289, 1.3876172304153442, 1.3220453262329102, 0.7485787272453308, 0.06278890371322632, 0.19979384541511536, -0.3715270757675171, -0.4746323525905609, 0.4778992533683777, 0.1310928463935852, -0.13808618485927582, -1.1097080707550049, 0.0572161041200161, 0.48937559127807617, 0.8246728181838989, -0.5065912008285522, 0.7392730712890625, -0.31544366478919983, 0.844689130783081, -0.43417662382125854, 0.302621454000473, -0.23702670633792877, 0.36463484168052673, -0.6517676115036011, -0.2681441307067871, 0.03170786425471306, -0.14441648125648499, -0.08959490060806274, -0.832328200340271, 0.18829868733882904, 0.4494187533855438, 0.6505497097969055, 0.17794619500637054, 0.10071878880262375, 0.12112730741500854, -0.44703513383865356, 0.3664824068546295, -0.10770617425441742, 0.47107943892478943, 0.8392928242683411, 0.6766959428787231, -0.09941014647483826, -0.6385027170181274, -0.5583672523498535, 0.12492446601390839, -0.16449229419231415, 0.21561893820762634, 0.07690759003162384, 0.31759345531463623, 0.7318887710571289, 0.6579914689064026, -0.5998586416244507, -0.16394446790218353, -0.4794295132160187, -0.3216766119003296, 0.6962345242500305, 0.2448936104774475, 0.4766782224178314, -0.17045988142490387, -0.07534728199243546, -0.22575657069683075, -0.5456354022026062, -0.2079695165157318, 0.4485136568546295, 0.455822616815567, -0.5331361889839172, 0.8646295666694641, -0.23591572046279907, 1.0305192470550537, 0.03533255681395531, 0.10953343659639359, 0.6686608195304871, 0.43052399158477783, -0.7825990915298462, 0.2641751170158386, 0.16713929176330566, 0.49190521240234375, 0.36211544275283813, 0.2689191401004791, -0.35520073771476746, 0.07522472739219666, 0.029723666608333588, -1.007693886756897, -0.5336625576019287, 0.37991565465927124, -0.957221269607544, -0.12680843472480774, 0.14415261149406433, -0.816232442855835, -0.23659758269786835, -0.2882043421268463, -0.2100599706172943, 0.3045491874217987, -0.4551005959510803, 0.005432377103716135, -0.3864082098007202, 0.25509515404701233, 0.03432150557637215, -0.9828504323959351, 0.44936299324035645, 0.49023428559303284, 0.23671557009220123, -0.15120214223861694, -0.08327530324459076, -0.6791093945503235, -0.09362146258354187, -0.2820066213607788, 0.7490022778511047, -1.0080560445785522, -0.7210994362831116, 0.11475886404514313, 0.3575434684753418, 0.10822416096925735, -0.9235213994979858, 0.977783203125, -0.6577686667442322, 0.01910286396741867, -0.4837414026260376, -0.577026903629303, 0.07417145371437073, 0.40611764788627625, -1.2606594562530518, 1.2920124530792236, 0.13175301253795624, -1.0279662609100342, 0.602314829826355, -0.9973006248474121, -0.2976084053516388, 0.39641231298446655, -0.03373751789331436, -0.4917490780353546, -0.3774535357952118, -0.2094341218471527, 0.4443037807941437, -0.23704397678375244, 0.10550487786531448, -0.7695509195327759, -0.3386477530002594, 0.1310984492301941, -0.16854240000247955, 0.4214617609977722, 0.6058005094528198, 0.3456036448478699, 0.47031381726264954, -0.9408247470855713, 0.146565243601799, 0.19548872113227844, -0.4508141577243805, -0.028432970866560936, -0.3025551438331604, 0.5459558367729187, 0.19089935719966888, 0.34807753562927246, -0.48050493001937866, 0.20787128806114197, 0.038822926580905914, 0.21396763622760773, 0.5261886715888977, 0.0035816652234643698, 0.32841527462005615, -0.5242767930030823, 0.6852134466171265, -0.20087969303131104, 0.3082822263240814, 0.18457776308059692, -0.6550425887107849, -0.5766340494155884, -0.0901234894990921, 0.19522114098072052, 0.7847630977630615, -0.5341618657112122, 0.6886354684829712, 0.23745232820510864, -0.43707671761512756, -0.5414985418319702, -0.05051890388131142, 0.14351868629455566, 0.6396467089653015, 0.19022312760353088, -0.15783268213272095, -0.655457079410553, -1.1440540552139282, 0.062378495931625366, -0.03323175385594368, 0.09279213845729828, 0.46627652645111084, 0.29003649950027466, -0.470956951379776, 0.46801623702049255, -0.744548499584198, 0.14063474535942078, 0.0044792392291128635, 0.040114935487508774, 0.6290271282196045, 0.5100560784339905, 0.20422136783599854, -0.9155553579330444, -0.32333487272262573, -0.23488570749759674, -0.7429749965667725, -0.07869727164506912, 0.2416689544916153, -0.6659335494041443, 0.005469837691634893, 0.2610155940055847, -0.5709031820297241, 0.7369343042373657, 0.4034281075000763, -0.6579656004905701, 0.3574492633342743, -0.22018061578273773, 0.262421578168869, -0.65121990442276, 0.5024513006210327, -0.3099900186061859, -0.5184630155563354, -0.44991981983184814, 0.10101314634084702, -0.1162143126130104, -0.38883161544799805, -0.4908839166164398, 0.732844352722168, -0.5380412340164185, -0.3694867491722107, -0.2660866379737854, -0.3259181082248688, -0.3631848990917206, 0.43872880935668945, 0.5945616364479065, 0.5160127878189087, 0.7815749049186707, -0.4399385154247284, 0.9565752148628235, 0.5738954544067383, 0.1692119538784027, 1.0074878931045532, -0.5330916047096252, 0.2784169316291809, -0.4692659080028534, 0.25239115953445435, -0.6032312512397766, -0.9595369100570679, 0.7936214804649353, -0.24325942993164062, 0.1321844905614853, -0.14916664361953735, -0.5215591192245483, -0.7893552780151367, -0.23131804168224335, 0.7878050804138184, 0.4999450445175171, -0.6164383292198181, 0.2283972203731537, 0.5711156725883484, -0.02429204247891903, -0.3446183502674103, -0.8328142762184143, -0.18606825172901154, -0.3391653001308441, -0.30291345715522766, 0.3497014045715332, -0.3276595175266266, -0.14935341477394104, -0.042817290872335434, 0.06487060338258743, -0.32037973403930664, -0.3031786382198334, 0.6937884092330933, 0.4197045862674713, -0.008585614152252674, 0.3259551525115967, -0.2696970999240875, -0.3247497081756592, -0.03266245126724243, 0.26581406593322754, 0.6483003497123718, 0.2812318503856659, -0.09441483020782471, -0.6584091782569885, 0.5317323803901672, 0.609296977519989, 0.3647790849208832, 0.32914936542510986, 0.6463285088539124, -0.9455317854881287, -0.015338730067014694, -0.19685909152030945, -0.4223782420158386, -0.37347713112831116, -0.15097197890281677, -0.5567373037338257, -0.562656581401825, 0.6920538544654846, 0.2577465772628784, -0.15571852028369904, 0.6005259156227112, 0.4474865198135376, -0.17928378283977509, 0.9093568921089172, 0.39344003796577454, -0.16405177116394043, 0.4801948070526123, 0.19103436172008514, -0.4127844274044037, -0.3870779275894165, -0.11942808330059052, -0.3588489592075348, -0.4963850975036621, -0.7109941840171814, -0.3931611478328705, 0.05596524849534035, -0.16593940556049347, -0.6090769171714783, 0.20835237205028534, -0.6069697141647339, 0.6244683861732483, 0.6081992983818054, 0.5703334808349609, 0.2163858413696289, 0.21965080499649048, 0.23522129654884338, -0.012038390152156353, -0.7990007400512695, -0.2702324092388153, 0.9587060213088989, 0.43445664644241333, 0.9987761974334717, -0.29668349027633667, 0.6719655990600586, 0.8972463607788086, 0.5454732775688171, -0.7968503832817078, 0.5272185802459717, -0.2382994443178177, -0.7510583400726318, -0.31632888317108154, -0.023135775700211525, -0.9531757235527039, -0.3581920564174652, -0.6434070467948914, -0.3415275514125824, -0.04722544923424721, 0.5229677557945251, -0.32082048058509827, 0.21014244854450226, -0.34925490617752075, 0.9511781930923462, 0.08104055374860764, -0.34271225333213806, -0.5003012418746948, -0.7961257696151733, 0.24792543053627014, 0.3506050705909729, -0.03175528720021248, -0.5044998526573181, 0.4602908492088318, 1.1591949462890625, -0.4394444525241852, 0.7438685297966003, -0.5337277054786682, 0.05102730914950371, 0.41872715950012207, -0.08823937922716141, 0.2021336555480957, 0.034249480813741684, -0.25277307629585266, 0.012548994272947311, 0.11563123017549515, -0.4640628695487976, -0.28969717025756836, 0.3343068063259125, -0.5422830581665039, -0.039053384214639664, -0.4754006564617157, -0.22000333666801453, 0.10327667742967606, 0.2563924491405487, 0.2967923879623413, 0.5693747997283936, -0.5180449485778809, -0.3498396873474121, 0.6751889586448669, -0.16712340712547302, 0.2970277965068817, 0.11437990516424179, -0.6137083768844604, -0.5267969965934753, 0.5199079513549805, 0.051640670746564865, 0.015619595535099506, 0.47692519426345825, 0.32194089889526367, -0.7875797748565674, 0.1438388079404831, -0.587975263595581, 0.16645191609859467, -0.7765429615974426, -0.23969201743602753, -0.2339358925819397, -0.4851149022579193, -0.18525700271129608, -0.052626144140958786, -0.06979068368673325, -0.3516820967197418, -0.5829524397850037, -0.44479426741600037, 0.6685500144958496, 0.6760330200195312, -0.5670080184936523, 0.4390507638454437, -0.7872839570045471, 1.0025261640548706, 0.5185771584510803, 0.9565744996070862, -0.4699978232383728, -0.23715129494667053, 0.042492326349020004, 0.06823571026325226, 0.29092901945114136, -0.7024132013320923, 0.2219417691230774, 0.33455249667167664, 0.6863806247711182, 0.12725724279880524, -0.16186942160129547, 0.7972465753555298, -0.2790646553039551, 0.522580623626709, 0.3027627170085907, -0.6455523371696472, 0.4862958490848541, -0.596048891544342, 0.3308343291282654, 0.7082629799842834, 0.18292437493801117, -0.9626789689064026, 0.5442182421684265, -1.052517056465149, -0.5407005548477173, 0.6275375485420227, -0.24339766800403595, -0.08238140493631363, 0.05217675119638443, 0.4295986294746399, 0.3863944113254547, 0.46662434935569763, -0.32006147503852844, -0.8371744155883789, -0.10694654285907745, 0.01277674175798893, 0.31229209899902344, -0.5990363359451294, -0.2681296467781067, -0.40190038084983826, 0.5351037979125977, -0.18564079701900482, 0.5501325130462646, 0.1174781545996666, 0.18174773454666138, -0.554036557674408, 0.062199681997299194, 0.24713477492332458, 0.2627398669719696, -0.8730798959732056, 0.0267214123159647, -0.4042885899543762, -0.732700765132904, -0.16398325562477112, 0.11756885051727295, 0.0011726513039320707, -0.18612660467624664, 0.4310118854045868, 0.7784796357154846, -0.08176378160715103, -0.5078722834587097, 0.17329159379005432, -0.26842281222343445, -0.17583473026752472, -0.4890311062335968, 0.1379847377538681, -0.11263301223516464, -0.11213958263397217, -0.050316907465457916, 0.08445651084184647, 0.43834906816482544, -0.70023512840271, 0.7879256010055542, 0.06255340576171875, -0.43234267830848694, -0.1586490124464035, 0.5465909242630005, 0.4925616383552551, -0.8348869681358337, 1.0891534090042114, -0.25010329484939575, -0.12219025939702988, 0.6376989483833313, 0.4038151204586029, 0.8924142718315125, -0.12497694790363312, 0.4583451449871063, 0.7448005080223083, -0.33614566922187805, -0.09915944188833237, 1.0752317905426025, -0.5019804239273071, -1.0484275817871094, -0.09905074536800385, -0.7615392804145813, -0.6213181018829346, 0.12441200762987137, -1.3854587078094482, 0.2859898507595062, -0.7736296653747559, -0.5206344127655029, 0.1854158192873001, -0.2508227229118347, -1.0585582256317139, 0.6665694117546082, 0.6135302186012268, 1.288874864578247, -0.8322284817695618, 0.9204797744750977, 0.8739870190620422, 0.08892984688282013, -0.4319092631340027, -0.10924018174409866, -0.0740685686469078, -1.31008780002594, 0.5796740651130676, 0.12579460442066193, 0.08095438778400421, -0.158648282289505, -0.7056936621665955, -0.7599506378173828, 0.8921193480491638, 0.040342580527067184, -0.704447329044342, 0.5103174448013306, 0.15207786858081818, 0.5017591118812561, -0.2991412281990051, 0.2700096666812897, 1.2053567171096802, 1.0882718563079834, 0.4981413185596466, -0.8138502836227417, 0.08493788540363312, -0.5845149755477905, -0.36138641834259033, 0.0679352879524231, -0.6153292655944824, 0.3113795220851898, -0.10035593062639236, -0.4796541631221771, -0.1402169018983841, 0.6049761176109314, 0.5414459705352783, 0.444141685962677, 0.7384397387504578, 0.6457315683364868, 0.9493575096130371, -0.1729646474123001, 0.6417973637580872, -0.06402697414159775, 0.30680379271507263, 1.0196765661239624, -0.3959915339946747, 0.7408803105354309, 0.6511631011962891, -0.2315782904624939, 0.3452404737472534, 1.072695016860962, -0.09459857642650604, 0.34153634309768677, 0.620568037033081, -0.07273540645837784, -0.5719068646430969, -0.3999713063240051, -0.2232891023159027, 0.5326111912727356, 0.5523625612258911, -0.017190974205732346, -0.3783162236213684, -0.055136848241090775, 0.054320961236953735, 0.15660236775875092, -0.5155824422836304, 0.7405134439468384, -0.04179510474205017, -0.8338730931282043, 0.5221762657165527, -0.1714116930961609, 0.6071090698242188, -0.2666237950325012, -0.5783554315567017, 0.05212794244289398, -0.27391576766967773, -0.6015521883964539, -1.3644460439682007, 0.7457174062728882, -0.366621732711792, -0.6177487969398499, -0.46380317211151123, 1.042004108428955, -0.7593587636947632, -0.6117555499076843, 0.32383012771606445, 0.5921099781990051, 0.35167354345321655, 0.1745002567768097, -1.1740131378173828, 0.3574703633785248, -0.10844478011131287, -0.21989589929580688, -0.16096723079681396, -0.26004278659820557, 0.08443202823400497, 0.5011790990829468, 0.500926673412323, 0.18854552507400513, -0.3888930678367615, 0.5252631902694702, 0.31113213300704956, -1.0878310203552246, -0.7343078851699829, -0.5177882313728333, 0.2890949249267578, -0.21271638572216034, -0.48630648851394653, 0.146062970161438, 0.6233628988265991, 0.43262338638305664, -0.3668005168437958, 0.9351097345352173, -0.22480975091457367, 0.7452155351638794, -0.5772132873535156, 0.7338171601295471, -0.4111107885837555, -0.21215863525867462, 0.1787891834974289, -0.7067840099334717, -0.5678430795669556, 0.6430888772010803, 0.1722463071346283, 0.025213848799467087, 0.3835389018058777, 0.9088976979255676, -0.21065761148929596, 0.4220350980758667, 0.49240225553512573, -0.10772760212421417, -0.03448457270860672, 0.22501055896282196, 0.5069107413291931, -0.18315568566322327, -0.29329442977905273, -0.3774563670158386, -0.3419210910797119, -0.05143749713897705, -1.0299783945083618, -0.9956313371658325, -0.5850381255149841, -0.4008384943008423, -0.4396171569824219, -0.08092853426933289, 1.1013109683990479, 1.130031943321228, -0.733496367931366, -0.4624902904033661, 0.10625195503234863, 0.1914813071489334, -0.09618797898292542, -0.2571869194507599, 0.4700895845890045, 0.376423716545105, -0.4633719325065613, -0.007604395970702171, 0.09835436940193176, 0.24755918979644775, -0.04346977919340134, -0.05289937183260918, 0.17164480686187744, -0.12793710827827454, 0.24445727467536926, 0.5787860751152039, -0.27205178141593933, -0.2547916769981384, -0.19419889152050018, -0.05093611776828766, 0.3898126780986786, 1.0876867771148682, -0.5258917212486267, 0.2860453724861145, 0.6683448553085327, 0.49144992232322693, 0.6814920902252197, 0.24931763112545013, 0.4879305064678192, -0.7863655686378479, 0.29867663979530334, 0.03690823167562485, 0.44649073481559753, 0.545039713382721, -0.6886624693870544, 0.5193063616752625, 0.44764700531959534, -0.5251364707946777, -0.3770712912082672, 0.2663686275482178, -1.4107974767684937, 0.15532228350639343, 1.0379228591918945, 0.4899079501628876, -0.653540849685669, -0.12679672241210938, -0.4209044575691223, 0.3840649724006653, -0.8418964743614197, 0.5109279751777649, 0.6791737675666809, -0.389522910118103, -0.23787684738636017, -0.38482236862182617, 0.8494094610214233, -0.3046410381793976, -1.1735866069793701, 0.35131773352622986, 0.4066285490989685, 0.18825747072696686, -0.10134311765432358, 1.1708811521530151, -0.11790448427200317, 0.28542497754096985, 0.08026476204395294, 0.24523721635341644, 0.158974751830101, -0.35819312930107117, -0.2608758509159088, -0.013706481084227562, -0.05033635348081589, -0.32710012793540955 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
C-MTEB/waimai-classification
C-MTEB
2023-07-28T12:08:38Z
226
1
null
[ "region:us" ]
2023-07-28T12:08:38Z
2023-07-28T12:08:28.000Z
2023-07-28T12:08:28
--- configs: - config_name: default data_files: - split: train path: data/train-* - split: test path: data/test-* dataset_info: features: - name: label dtype: int64 - name: text dtype: string splits: - name: train num_bytes: 682948.5275715358 num_examples: 8000 - name: test num_bytes: 85368.56594644197 num_examples: 1000 download_size: 499472 dataset_size: 768317.0935179777 --- # Dataset Card for "waimai-classification" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.5276194214820862, -0.16524045169353485, 0.1622244268655777, 0.17526938021183014, 0.04153480380773544, -0.10058952867984772, 0.3906351625919342, -0.34501081705093384, 0.6722720861434937, 0.3919578790664673, -0.9083648324012756, -0.6285101175308228, -0.7798603177070618, -0.3511584401130676, -0.26511886715888977, 1.1657763719558716, 0.06886191666126251, 0.02165495604276657, -0.5528696775436401, -0.2919321060180664, -0.6425302624702454, -0.6340312361717224, -0.7712764143943787, -0.5784986019134521, 1.1739393472671509, 0.659835696220398, 0.3969070613384247, 0.2110358327627182, 0.615378737449646, 0.1450486034154892, 0.06921010464429855, -0.083427794277668, -0.44114845991134644, -0.21058562397956848, -0.06085671856999397, -0.6666129231452942, -1.089033603668213, 0.2255212515592575, 0.5430276989936829, 0.676551878452301, -0.20639677345752716, 0.8428013324737549, -0.2526228129863739, 0.7008678317070007, -0.7438499927520752, 0.5171305537223816, 0.06585679948329926, 0.09507158398628235, -0.7756861448287964, -0.2736372649669647, -0.2113199234008789, -0.46123307943344116, -0.08866938948631287, -0.9851170182228088, 0.04835543408989906, -0.005072372499853373, 0.9745164513587952, 0.1579715609550476, -0.3091241419315338, -0.09043671935796738, -0.43292179703712463, 0.24142582714557648, -0.16596375405788422, 0.2663508355617523, 0.9295578002929688, 0.4708682596683502, 0.009244509041309357, -0.5892378687858582, -0.3392218351364136, 0.25144922733306885, -0.057298630475997925, 0.30688533186912537, 0.10872702300548553, -0.05372253432869911, 0.5721024870872498, 0.7072904706001282, -0.47547447681427, 0.05107865110039711, -0.5167170166969299, -0.3443164825439453, 0.9279736876487732, 0.19997535645961761, 0.42138954997062683, 0.028690211474895477, 0.20586256682872772, -0.27659478783607483, -0.482879102230072, -0.10181372612714767, 0.39573657512664795, 0.08879562467336655, -1.044721007347107, 0.608148992061615, -0.1255638301372528, 0.45747867226600647, -0.04262658208608627, 0.1510084569454193, 0.7928252816200256, 0.022238584235310555, -0.06652317941188812, -0.06040458753705025, 0.4297296404838562, 0.40673914551734924, 0.009730485267937183, 0.10945265740156174, 0.09818699955940247, 0.13861973583698273, -0.009992595762014389, -0.9577219486236572, -0.7555805444717407, 0.21895483136177063, -0.8186143040657043, -0.5120958089828491, 0.3777618706226349, -0.8772220611572266, -0.6280410289764404, -0.34984126687049866, 0.34095194935798645, 0.15935452282428741, -0.7228074669837952, -0.37170177698135376, -0.7506316304206848, 0.5318663716316223, 0.17011965811252594, -0.779389500617981, 0.3380497992038727, 0.6707401871681213, 0.5874398946762085, 0.1265832632780075, -0.4675210416316986, -0.5551379323005676, 0.3718726933002472, 0.006045095156878233, 0.9289776682853699, -0.6399577260017395, -0.47544601559638977, 0.01649225875735283, 0.2849256992340088, -0.11887498199939728, -0.14630967378616333, 0.7494349479675293, -0.37228208780288696, 0.13332034647464752, -0.5255783200263977, -0.7387821674346924, -0.2620618939399719, 0.3329664170742035, -0.9906055331230164, 0.7950761914253235, 0.394560843706131, -0.80094975233078, 0.3545573651790619, -1.2536098957061768, -0.45154422521591187, 0.6321781277656555, 0.14800551533699036, -0.5390744209289551, 0.3555382788181305, -0.21500051021575928, 0.5264313220977783, -0.21186760067939758, 0.3835166394710541, -0.8521791100502014, -0.14690415561199188, 0.3165566325187683, -0.07235370576381683, 1.00333833694458, 0.2998199462890625, 0.3486456573009491, 0.05933482572436333, -0.9542739391326904, -0.1605379730463028, 0.2944270968437195, 0.04254299774765968, -0.35008904337882996, -0.27963411808013916, 0.37974095344543457, -0.2908109128475189, 0.37348610162734985, -0.42821332812309265, 0.41315245628356934, 0.4086523652076721, -0.09595706313848495, 0.5895084142684937, 0.11076626181602478, 0.3589882254600525, -0.6170665621757507, 0.4977550506591797, -0.24167543649673462, 0.7183441519737244, 0.2024516761302948, -0.7289470434188843, -0.9496549963951111, 0.05585917457938194, 0.7055297493934631, 0.6761037707328796, -0.44543689489364624, 0.7031447887420654, 0.025159237906336784, -0.8557390570640564, -0.3507995009422302, -0.20318618416786194, 0.1448870450258255, 0.3296160101890564, 0.24268251657485962, -0.3244510889053345, -0.7711851000785828, -0.532464325428009, 0.551284670829773, -0.2454814910888672, 0.12488486617803574, 0.29571110010147095, 0.7578666806221008, -0.7659651041030884, 0.48305782675743103, -0.9866653680801392, -0.42107483744621277, 0.2174759805202484, -0.010823064483702183, 0.12723658978939056, 0.6454551219940186, 0.7289595007896423, -0.9591431617736816, -0.20116934180259705, -0.37805530428886414, -0.6700857877731323, -0.21009141206741333, 0.5165647268295288, -0.7642646431922913, -0.20470240712165833, 0.033540014177560806, -0.2862916886806488, 0.6964094042778015, 0.8773680329322815, -0.510921061038971, -0.0735003873705864, 0.20521646738052368, 0.2973904013633728, -1.2748879194259644, 0.3906629681587219, -0.16148822009563446, -0.0655219629406929, -0.5561060905456543, 0.42001625895500183, 0.02728462778031826, -0.38897132873535156, 0.08709129691123962, 0.41774821281433105, -0.20192576944828033, 0.03593093901872635, -0.2124161720275879, -0.3248414695262909, -0.0828121080994606, 0.16312278807163239, 0.4432500898838043, 0.37507665157318115, 1.101196050643921, -0.6639426946640015, 0.720499575138092, 0.6211541891098022, 0.20015528798103333, 0.8519015312194824, -0.5128470063209534, 0.20427042245864868, -0.07482673972845078, 0.34253188967704773, -0.6051228642463684, -0.8315664529800415, 0.48602765798568726, -0.30502262711524963, 0.4846019148826599, -0.5982455611228943, -0.4870961010456085, -0.6857353448867798, -0.4027599096298218, 0.7469529509544373, 0.7746617197990417, -0.8263698220252991, 0.5070383548736572, 1.0130846500396729, 0.05295887216925621, -0.018782509490847588, -0.8877745270729065, -0.04100170359015465, -0.3096952736377716, 0.055899884551763535, 0.19549593329429626, -0.4604366719722748, 0.1993584781885147, -0.26137813925743103, 0.6076736450195312, -0.26504233479499817, 0.05778958648443222, 0.7568053007125854, 0.2952583432197571, -0.08435965329408646, 0.4209994375705719, 0.10760831832885742, -0.7366559505462646, 0.0788639560341835, -0.014263344928622246, 0.49732139706611633, 0.0684984028339386, -0.27763861417770386, -0.601237952709198, 0.481040894985199, 0.25559094548225403, -0.16809670627117157, 0.5158817172050476, 1.1021218299865723, -0.7740485668182373, 0.13580287992954254, -0.6659290194511414, 0.22817932069301605, -0.4286191761493683, -0.1036502942442894, -0.38656875491142273, -0.5553841590881348, 0.4070059061050415, -0.2087595909833908, -0.052813176065683365, 0.8800899982452393, 0.5813499093055725, -0.18645289540290833, 0.8357446193695068, 0.8142417073249817, -0.47739410400390625, 0.38356295228004456, -0.5257850289344788, -0.3766264319419861, -0.8115338683128357, -0.6688401699066162, -0.7300664782524109, -0.4074724614620209, -0.8291284441947937, -0.21878832578659058, -0.07587622851133347, -0.0043526156805455685, -0.08794066309928894, 0.5308654308319092, -0.6606558561325073, 0.29376018047332764, 0.5429873466491699, 0.182657852768898, -0.06616457551717758, -0.14973695576190948, 0.703192412853241, 0.3702458441257477, -0.7762643694877625, -0.18532459437847137, 1.146862506866455, 0.69716477394104, 0.9324517846107483, 0.4239274263381958, 1.0332661867141724, 0.3190375864505768, 0.7026355862617493, -0.423516184091568, 0.3314032256603241, -0.1501721441745758, -0.4252786636352539, 0.020661108195781708, -0.346244752407074, -0.9160482287406921, -0.5082993507385254, -0.4877033233642578, -0.12775465846061707, 0.582451343536377, 0.29132068157196045, 0.09539172798395157, 0.2468610256910324, -0.9168635010719299, 0.8520243167877197, -0.037578437477350235, 0.3427829146385193, -0.2893361747264862, -0.4037388265132904, 0.134574294090271, 0.14192786812782288, 0.22619761526584625, -0.4495362341403961, -0.1971753090620041, 1.1100010871887207, -0.5787026286125183, 1.208952784538269, -0.6980209946632385, -0.04363797605037689, 0.20282970368862152, -0.3556003272533417, -0.12039453536272049, 0.39324256777763367, 0.017749687656760216, 0.2759961783885956, 0.13922818005084991, -0.5974913835525513, -0.23776376247406006, 0.713390052318573, -0.8672265410423279, 0.2368125170469284, -0.39075249433517456, -0.47413867712020874, -0.10949874669313431, 0.3103320300579071, 0.4978095591068268, 0.8148363828659058, -0.3522757589817047, -0.30904504656791687, 0.818361222743988, 0.42492201924324036, 0.17913807928562164, 0.16488422453403473, -0.3518739640712738, -0.40305161476135254, 1.2092429399490356, 0.2514810860157013, -0.49831584095954895, 0.4558698534965515, 0.5410847663879395, -0.21252626180648804, -0.48908933997154236, -0.470158189535141, 0.2366446703672409, -0.3945785164833069, -0.6164951920509338, -0.2499951869249344, -0.42700016498565674, -0.4498468339443207, 0.015901552513241768, -0.0004986043786630034, -0.5575301647186279, -0.6834279894828796, -0.46998143196105957, 1.1612077951431274, 0.9463145136833191, -0.35851454734802246, 0.44600608944892883, -0.8917097449302673, 0.5046347975730896, 0.33219340443611145, 0.9507384896278381, -0.00847675371915102, -0.5455695986747742, -0.1710824966430664, 0.0027040522545576096, 0.10741715878248215, -0.5890458226203918, -0.29034683108329773, 0.43575501441955566, 0.5497966408729553, 0.41795113682746887, -0.007077936083078384, 0.9239415526390076, -0.10926172882318497, 0.5392032861709595, 0.31705695390701294, -0.5528365969657898, 1.0112358331680298, -0.12502457201480865, 0.32510310411453247, 0.9688218832015991, 0.7856313586235046, -0.34112247824668884, 0.024867406114935875, -0.9647748470306396, -0.4309860169887543, 0.40217509865760803, -0.07548201829195023, 0.3876030147075653, 0.08839354664087296, 0.602210521697998, 0.16361968219280243, 0.12648265063762665, -0.8072967529296875, -0.67241370677948, -0.060427021235227585, -0.489538311958313, 0.09886046499013901, -0.5576484799385071, -0.19999045133590698, -0.6220447421073914, 0.7901824712753296, -0.08010559529066086, 0.258871465921402, -0.08701509237289429, -0.01085442304611206, -0.12048826366662979, -0.2384846806526184, 0.26677924394607544, 0.4713743329048157, -0.30381709337234497, -0.12271235883235931, 0.19090025126934052, -0.5985568165779114, -0.19478386640548706, 0.44138938188552856, -0.26670292019844055, -0.2917582094669342, 0.7862683534622192, 0.826058566570282, -0.391248494386673, -0.11847282201051712, 0.4751172363758087, -0.30799028277397156, -0.2397109866142273, -0.5671530961990356, 0.30443617701530457, 0.019614743068814278, -0.06481749564409256, 0.006938127800822258, -0.042454492300748825, 0.499469518661499, -0.5114254951477051, 0.29939737915992737, -0.04756323620676994, -0.6530653834342957, -0.3652561604976654, 0.34424301981925964, 0.6131308674812317, -0.5768818855285645, 0.8311262726783752, -0.1368623822927475, -0.36587023735046387, 0.3579466640949249, 0.31700459122657776, 0.6805880069732666, -0.5448207855224609, 0.4368705153465271, 0.5781614184379578, -0.20543426275253296, 0.1917203813791275, 0.5615803003311157, -0.5001031756401062, -0.5798994302749634, -0.04451523721218109, -0.438961386680603, -0.37121453881263733, -0.0909080058336258, -1.1736769676208496, 0.23706310987472534, -0.6964284181594849, -0.4534240961074829, 0.06706685572862625, 0.015252132900059223, -0.6151095032691956, 0.15697956085205078, 0.5065208077430725, 1.3258225917816162, -1.125179409980774, 0.8017799258232117, 0.8165096044540405, -0.4561373293399811, -0.6624072790145874, -0.10679127275943756, -0.0813174694776535, -0.639243483543396, -0.09501288086175919, 0.26488062739372253, 0.1456584483385086, -0.24391478300094604, -0.803857147693634, -0.674141526222229, 1.3000870943069458, -0.03422459214925766, -0.6591072678565979, 0.2265985608100891, -0.2536739706993103, 0.44903862476348877, -0.298662930727005, 0.2547300457954407, 0.5706897974014282, 0.7251419425010681, 0.04965147748589516, -0.6923868060112, -0.13564614951610565, -0.6788918972015381, 0.00022816850105300546, 0.3783513903617859, -0.7704094052314758, 0.018548034131526947, -0.03242744132876396, 0.02598193846642971, 0.22181271016597748, 0.7456161379814148, 0.07480011135339737, 0.43752288818359375, 0.5607631802558899, 0.9048154354095459, 1.1778360605239868, -0.33876487612724304, 1.1427189111709595, 0.284769207239151, 0.44921523332595825, 1.01883864402771, -0.15425895154476166, 0.6213900446891785, 0.29336073994636536, -0.241804301738739, 0.5689972639083862, 0.7252565026283264, -0.6402192115783691, 0.3574988543987274, 0.08267473429441452, -0.21132487058639526, -0.22927223145961761, -0.3934611678123474, -0.7092925310134888, 0.17510215938091278, 0.4456140398979187, -0.04723445326089859, 0.25516918301582336, 0.3094817101955414, -0.007865255698561668, -0.13860157132148743, -0.7015429735183716, 0.9763851761817932, 0.017390038818120956, -0.17713090777397156, 0.019911648705601692, -0.23133857548236847, 0.6082607507705688, -0.7755640745162964, -0.4022288918495178, 0.16822658479213715, -0.030269291251897812, -0.7986899018287659, -1.158019781112671, 0.6545889973640442, -0.17638669908046722, -0.37782230973243713, 0.14805230498313904, 0.8226456046104431, -0.4041127860546112, -0.84196537733078, 0.39899057149887085, -0.05902263522148132, 0.1405809074640274, 0.4331781566143036, -1.154577374458313, 0.28387144207954407, -0.2610180377960205, 0.1042519062757492, 0.1952693611383438, -0.10971518605947495, -0.08382126688957214, 0.8057922720909119, 0.6425293684005737, -0.06734795868396759, -0.371906042098999, 0.7864538431167603, 0.766081690788269, -0.39299800992012024, -0.4105411767959595, -0.3938882350921631, 0.49571099877357483, -0.4637511968612671, -0.5594043135643005, 0.5415409803390503, 0.9174166321754456, 0.8461127877235413, -0.25150829553604126, 0.6086188554763794, -0.5171620845794678, 0.5182609558105469, -0.43218082189559937, 0.7731872797012329, -0.32250159978866577, -0.4292604923248291, -0.2122439742088318, -0.6629316210746765, -0.7793602347373962, 0.6111614108085632, 0.24440065026283264, -0.04166798293590546, 0.35412076115608215, 0.7042253613471985, -0.07191719859838486, 0.10264471918344498, -0.048331961035728455, -0.04638516530394554, 0.03995220735669136, 0.44581133127212524, 0.8166700005531311, -0.7140057682991028, 0.0009437164990231395, -0.3944600522518158, -0.7113922834396362, 0.10114855319261551, -0.8811005353927612, -0.9301473498344421, -0.8199824690818787, -1.0215375423431396, -0.35650375485420227, -0.21315528452396393, 0.6989027857780457, 1.1723147630691528, -1.1638342142105103, -0.38264337182044983, 0.05154956132173538, 0.29514724016189575, 0.11827893555164337, -0.14350835978984833, 0.5988276600837708, 0.3013726770877838, -0.5240326523780823, -0.29480668902397156, -0.07378564029932022, 0.3863134980201721, 0.012585572898387909, -0.1961885541677475, -0.11098375171422958, -0.29420799016952515, 0.5920634269714355, 0.42918476462364197, -0.1466786414384842, -0.18880769610404968, -0.7158711552619934, 0.10506237298250198, -0.1601683646440506, 0.8855459690093994, -0.35879966616630554, -0.06355006992816925, 0.5737156867980957, 0.4015626609325409, 0.6138672232627869, -0.1036209762096405, 0.43601399660110474, -0.5067440867424011, 0.23097632825374603, -0.17782346904277802, 0.5187357068061829, 0.12146960198879242, -0.6276489496231079, 0.916074812412262, 0.4215388000011444, -0.3783987760543823, -0.6201561093330383, 0.1907035857439041, -1.4058717489242554, 0.25986406207084656, 0.7061685919761658, 0.059565771371126175, -0.5247440934181213, -0.06253150850534439, -0.46741199493408203, 0.1611771434545517, -0.4373457729816437, 0.13138984143733978, 0.3590855002403259, -0.045418594032526016, -0.29888784885406494, -0.01606794074177742, 0.4955633878707886, -0.4091320037841797, -1.309465765953064, 0.017052773386240005, 0.3802833557128906, 0.2785479724407196, 0.3816707730293274, 0.8824994564056396, -0.24743443727493286, 0.4476095139980316, 0.19083264470100403, 0.2754015624523163, -0.2641102075576782, -0.5129740238189697, -0.4004524052143097, -0.07213112711906433, 0.2418452501296997, -0.42211541533470154 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
cfilt/HiNER-original
cfilt
2023-03-07T16:42:05Z
225
2
hiner-original-1
[ "task_categories:token-classification", "task_ids:named-entity-recognition", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:hi", "license:cc-by-sa-4.0", "arxiv:2204.13743", "region:us" ]
2023-03-07T16:42:05Z
2022-04-25T13:55:19.000Z
2022-04-25T13:55:19
--- annotations_creators: - expert-generated language_creators: - expert-generated language: - hi license: "cc-by-sa-4.0" multilinguality: - monolingual paperswithcode_id: hiner-original-1 pretty_name: HiNER - Large Hindi Named Entity Recognition dataset size_categories: - 100K<n<1M source_datasets: - original task_categories: - token-classification task_ids: - named-entity-recognition --- <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> # Dataset Card for HiNER-original [![Twitter Follow](https://img.shields.io/twitter/follow/cfiltnlp?color=1DA1F2&logo=twitter&style=flat-square)](https://twitter.com/cfiltnlp) [![Twitter Follow](https://img.shields.io/twitter/follow/PeopleCentredAI?color=1DA1F2&logo=twitter&style=flat-square)](https://twitter.com/PeopleCentredAI) ## 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-instances) - [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) ## Dataset Description - **Homepage:** https://github.com/cfiltnlp/HiNER - **Repository:** https://github.com/cfiltnlp/HiNER - **Paper:** https://arxiv.org/abs/2204.13743 - **Leaderboard:** https://paperswithcode.com/sota/named-entity-recognition-on-hiner-original - **Point of Contact:** Rudra Murthy V ### Dataset Summary This dataset was created for the fundamental NLP task of Named Entity Recognition for the Hindi language at CFILT Lab, IIT Bombay. We gathered the dataset from various government information webpages and manually annotated these sentences as a part of our data collection strategy. **Note:** The dataset contains sentences from ILCI and other sources. ILCI dataset requires license from Indian Language Consortium due to which we do not distribute the ILCI portion of the data. Please send us a mail with proof of ILCI data acquisition to obtain the full dataset. ### Supported Tasks and Leaderboards Named Entity Recognition ### Languages Hindi ## Dataset Structure ### Data Instances {'id': '0', 'tokens': ['प्राचीन', 'समय', 'में', 'उड़ीसा', 'को', 'कलिंग','के', 'नाम', 'से', 'जाना', 'जाता', 'था', '।'], 'ner_tags': [0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0]} ### Data Fields - `id`: The ID value of the data point. - `tokens`: Raw tokens in the dataset. - `ner_tags`: the NER tags for this dataset. ### Data Splits | | Train | Valid | Test | | ----- | ------ | ----- | ---- | | original | 76025 | 10861 | 21722| | collapsed | 76025 | 10861 | 21722| ## About This repository contains the Hindi Named Entity Recognition dataset (HiNER) published at the Langauge Resources and Evaluation conference (LREC) in 2022. A pre-print via arXiv is available [here](https://arxiv.org/abs/2204.13743). ### Recent Updates * Version 0.0.5: HiNER initial release ## Usage You should have the 'datasets' packages installed to be able to use the :rocket: HuggingFace datasets repository. Please use the following command and install via pip: ```code pip install datasets ``` To use the original dataset with all the tags, please use:<br/> ```python from datasets import load_dataset hiner = load_dataset('cfilt/HiNER-original') ``` To use the collapsed dataset with only PER, LOC, and ORG tags, please use:<br/> ```python from datasets import load_dataset hiner = load_dataset('cfilt/HiNER-collapsed') ``` However, the CoNLL format dataset files can also be found on this Git repository under the [data](data/) folder. ## Model(s) Our best performing models are hosted on the HuggingFace models repository: 1. [HiNER-Collapsed-XLM-R](https://huggingface.co/cfilt/HiNER-Collapse-XLM-Roberta-Large) 2. [HiNER-Original-XLM-R](https://huggingface.co/cfilt/HiNER-Original-XLM-Roberta-Large) ## Dataset Creation ### Curation Rationale HiNER was built on data extracted from various government websites handled by the Government of India which provide information in Hindi. This dataset was built for the task of Named Entity Recognition. The dataset was introduced to introduce new resources to the Hindi language that was under-served for Natural Language Processing. ### Source Data #### Initial Data Collection and Normalization HiNER was built on data extracted from various government websites handled by the Government of India which provide information in Hindi #### Who are the source language producers? Various Government of India webpages ### Annotations #### Annotation process This dataset was manually annotated by a single annotator of a long span of time. #### Who are the annotators? Pallab Bhattacharjee ### Personal and Sensitive Information We ensured that there was no sensitive information present in the dataset. All the data points are curated from publicly available information. ## Considerations for Using the Data ### Social Impact of Dataset The purpose of this dataset is to provide a large Hindi Named Entity Recognition dataset. Since the information (data points) has been obtained from public resources, we do not think there is a negative social impact in releasing this data. ### Discussion of Biases Any biases contained in the data released by the Indian government are bound to be present in our data. ### Other Known Limitations [Needs More Information] ## Additional Information ### Dataset Curators Pallab Bhattacharjee ### Licensing Information CC-BY-SA 4.0 ### Citation Information ```latex @misc{https://doi.org/10.48550/arxiv.2204.13743, doi = {10.48550/ARXIV.2204.13743}, url = {https://arxiv.org/abs/2204.13743}, author = {Murthy, Rudra and Bhattacharjee, Pallab and Sharnagat, Rahul and Khatri, Jyotsana and Kanojia, Diptesh and Bhattacharyya, Pushpak}, keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences}, title = {HiNER: A Large Hindi Named Entity Recognition Dataset}, publisher = {arXiv}, year = {2022}, copyright = {Creative Commons Attribution 4.0 International} } ```
[ -0.5771324038505554, -0.5723419785499573, 0.04373528063297272, 0.22406882047653198, -0.156636580824852, 0.10439842939376831, -0.39647844433784485, -0.6199285984039307, 0.4619438648223877, 0.29916906356811523, -0.3197363615036011, -0.45379623770713806, -0.8134249448776245, 0.4823119342327118, -0.29368558526039124, 0.961938202381134, -0.1281319409608841, -0.2075110822916031, 0.03800053149461746, -0.24671821296215057, -0.20390431582927704, -0.3615102171897888, -0.7279892563819885, -0.20140890777111053, 0.29612669348716736, 0.33341914415359497, 0.5023813843727112, 0.6881392002105713, 0.6363691091537476, 0.3599241077899933, -0.21339398622512817, 0.13953797519207, -0.43373215198516846, -0.26128244400024414, -0.14796839654445648, -0.13040122389793396, -0.2257690280675888, -0.04104490578174591, 1.096462607383728, 0.4931001663208008, -0.2132062464952469, 0.19445116817951202, 0.24907958507537842, 0.5493265986442566, -0.6117793917655945, 0.4361931383609772, -0.30997925996780396, -0.11294686794281006, -0.6082940697669983, 0.1705782562494278, -0.1402994692325592, -0.5071646571159363, -0.11645661294460297, -0.5930110216140747, 0.037875935435295105, 0.16219696402549744, 1.5328491926193237, 0.23576048016548157, -0.08106029778718948, -0.1852683573961258, -0.6848286986351013, 0.7550864815711975, -0.517716646194458, 0.6585956811904907, 0.21913564205169678, 0.2989047169685364, -0.1573367863893509, -0.46404168009757996, -0.9742200374603271, 0.1416304111480713, -0.4496344327926636, 0.012707425281405449, -0.14111171662807465, -0.3387056887149811, 0.4408741891384125, 0.47930899262428284, -0.4386552572250366, -0.10030089318752289, -0.6344925165176392, -0.43322181701660156, 0.6146190762519836, -0.24662113189697266, 0.5853404402732849, -0.7599263191223145, -0.44951120018959045, -0.19979120790958405, -0.5652889609336853, 0.10343243926763535, 0.2959147095680237, 0.5219751000404358, -0.5982164144515991, 0.6650626063346863, -0.09987170994281769, 0.6387658715248108, 0.24463193118572235, -0.34685036540031433, 0.7072323560714722, -0.5247957110404968, -0.30432942509651184, 0.2924395203590393, 1.1182421445846558, -0.056228216737508774, 0.33388927578926086, 0.08435146510601044, 0.038697756826877594, -0.11946311593055725, -0.24034711718559265, -0.7833644151687622, -0.0661369264125824, -0.055371180176734924, -0.34575411677360535, 0.06424899399280548, 0.3081205487251282, -1.291907548904419, -0.35553473234176636, -0.3664495050907135, -0.012517054565250874, -0.4412086009979248, -0.656180202960968, -0.09281405806541443, 0.032946933060884476, 0.723996102809906, 0.0887146145105362, -0.6903063058853149, 0.2878439426422119, 0.40727031230926514, 0.723318874835968, -0.14256329834461212, -0.2959619462490082, -0.3296458423137665, 0.21886059641838074, 0.004097991157323122, 0.8765814900398254, -0.5362125039100647, -0.5445408821105957, -0.2501351833343506, 0.274248331785202, -0.3400251567363739, -0.5389348268508911, 0.6402161717414856, -0.3091803193092346, 0.12041428685188293, -0.4026842713356018, -0.31065672636032104, 0.06606537848711014, 0.30652350187301636, -0.620335042476654, 1.3565592765808105, 0.1106380894780159, -1.06757390499115, 0.44450730085372925, -0.7208049893379211, -0.4216007888317108, 0.2298416793346405, -0.40140023827552795, -0.4922598898410797, -0.4140869677066803, 0.26557987928390503, 0.46318119764328003, -0.4184837341308594, 0.22383446991443634, -0.02156512439250946, -0.18438145518302917, -0.08292528241872787, 0.17704187333583832, 0.9362130761146545, 0.2913273274898529, -0.3493713140487671, -0.13713930547237396, -1.0116466283798218, -0.10619549453258514, 0.4637826681137085, -0.4333615303039551, -0.35437706112861633, -0.36565035581588745, 0.15413372218608856, 0.21402095258235931, 0.08722294867038727, -0.7949910163879395, 0.035875726491212845, -0.6399338245391846, 0.12078075110912323, 0.6115191578865051, 0.19810110330581665, 0.35410550236701965, 0.02326766587793827, 0.4821656048297882, 0.18057309091091156, -0.04179415479302406, 0.22692492604255676, -0.5452163219451904, -0.7604566812515259, -0.38604429364204407, 0.5694065093994141, 0.6539258360862732, -0.6655555367469788, 0.436866819858551, -0.6193538308143616, -0.6479960083961487, -0.6212205290794373, 0.16129913926124573, 0.609780490398407, 0.6544053554534912, 0.39624860882759094, -0.22527751326560974, -0.7534064650535583, -0.9504133462905884, -0.12931789457798004, -0.1513344794511795, 0.31491878628730774, 0.38685017824172974, 0.7568367123603821, -0.3059108853340149, 0.9609572887420654, -0.6808285117149353, -0.47066807746887207, -0.3269309401512146, 0.025777099654078484, 0.19281083345413208, 0.6307154893875122, 0.4190085232257843, -1.2205191850662231, -0.6942639946937561, -0.07745013386011124, -0.8325666785240173, 0.08117713779211044, 0.035391684621572495, -0.35011500120162964, 0.3018859028816223, 0.3462292551994324, -0.7944984436035156, 0.6735385656356812, 0.22960062325000763, -0.3086451292037964, 0.5060002207756042, 0.08985533565282822, 0.225566565990448, -1.5174776315689087, 0.2745877504348755, 0.27752283215522766, 0.15716558694839478, -0.4696986973285675, 0.021421020850539207, -0.029679300263524055, -0.18588972091674805, -0.5062812566757202, 0.9111778736114502, -0.6780359745025635, 0.1474880874156952, 0.1415177434682846, 0.1369195580482483, -0.18728581070899963, 0.46089476346969604, -0.09862303733825684, 0.8974688649177551, 0.7202481031417847, -0.5837842226028442, 0.28774750232696533, 0.7473333477973938, -0.4286240041255951, 0.5951055884361267, -0.7254396080970764, -0.07984350621700287, -0.3428688645362854, -0.03554027900099754, -0.5799583792686462, -0.5944722890853882, 0.653118371963501, -0.6060246229171753, 0.6236612200737, -0.1518319994211197, -0.6946536302566528, -0.3487075865268707, -0.20452027022838593, 0.23420321941375732, 0.5113493800163269, -0.4513190686702728, 0.6945841908454895, 0.7209640741348267, -0.07739151269197464, -0.5827537775039673, -0.9197405576705933, 0.1285923421382904, -0.1644645631313324, -0.385431170463562, 0.37066078186035156, -0.012530979700386524, -0.05619526654481888, 0.09442197531461716, -0.0019132269080728292, -0.034239668399095535, -0.23871244490146637, 0.5216168165206909, 0.29154130816459656, -0.09873633086681366, -0.030036751180887222, -0.1856273114681244, -0.1269552856683731, -0.16335491836071014, 0.1895008087158203, 0.6377639770507812, -0.20497512817382812, -0.13964371383190155, -0.6670898795127869, 0.1891963630914688, 0.3317469656467438, -0.4804415702819824, 0.9763667583465576, 0.8753582239151001, -0.8534824848175049, 0.3587492108345032, -0.617743730545044, 0.21432986855506897, -0.4178421199321747, 0.06127312779426575, -0.5071168541908264, -0.5755870342254639, 0.6288146376609802, -0.022628994658589363, -0.4401581585407257, 0.9400755763053894, 0.5107292532920837, 0.3502305746078491, 0.6703552007675171, 0.6083229780197144, -0.292535662651062, 0.30505630373954773, -0.44875776767730713, 0.7302675843238831, -0.9899714589118958, -0.7022134065628052, -0.7992814779281616, 0.02783977799117565, -0.9331686496734619, -0.09551897644996643, 0.0844409167766571, 0.1906379759311676, -0.06978413462638855, 0.6578442454338074, -0.8732260465621948, 0.3182661533355713, 0.3918984532356262, 0.025190994143486023, -0.04096774011850357, 0.0055999900214374065, -0.19592902064323425, -0.05234391242265701, -0.16135726869106293, -0.4460095167160034, 0.5008425712585449, 0.2525905668735504, 0.6112492680549622, 0.22776173055171967, 1.037113904953003, -0.017779747024178505, 0.13452240824699402, -0.49997130036354065, 0.7579023241996765, 0.12147584557533264, -0.7321668267250061, -0.33232933282852173, -0.5356011986732483, -1.0702342987060547, -0.28545501828193665, -0.2971494495868683, -0.9697259664535522, 0.621265709400177, -0.11052052676677704, -0.35887089371681213, 0.36581090092658997, -0.7958576679229736, 0.772201657295227, 0.04467685893177986, -0.36261576414108276, 0.2360793948173523, -0.6220999956130981, 0.1749572604894638, 0.07402113080024719, 0.2994607388973236, -0.2331111878156662, 0.1875382959842682, 1.1229139566421509, -0.3408452272415161, 0.706292986869812, -0.4126583933830261, 0.13634198904037476, 0.3657234013080597, -0.37434935569763184, 0.29961806535720825, 0.16711997985839844, -0.22709044814109802, 0.2867427468299866, 0.00891697034239769, -0.3909069895744324, -0.32792264223098755, 0.9602609276771545, -0.7389808297157288, -0.412015825510025, -0.7613590955734253, -0.13333581387996674, 0.03794611990451813, 0.6834701299667358, 0.27323001623153687, 0.27410292625427246, 0.006173113826662302, 0.09257513284683228, 0.4594801962375641, -0.20669710636138916, 0.36794865131378174, 0.013563313521444798, -0.04137756675481796, -0.31568366289138794, 0.8108577132225037, 0.29460784792900085, -0.21956269443035126, 0.25726959109306335, 0.019739892333745956, -0.4010252356529236, -0.3169122636318207, -0.5782791972160339, 0.5286211967468262, -0.7238426804542542, -0.36662712693214417, -0.7807537317276001, -0.6040538549423218, -0.777906596660614, 0.09257808327674866, -0.21326032280921936, -0.14011803269386292, -0.3990684151649475, -0.1248902827501297, 0.43823936581611633, 0.6486758589744568, -0.051899027079343796, 0.19006723165512085, -0.6510311365127563, 0.4390740394592285, 0.0550999641418457, 0.6201642155647278, 0.025136595591902733, -0.36535897850990295, -0.21632006764411926, 0.07437806576490402, -0.0780768170952797, -0.8734015226364136, 0.47954732179641724, 0.3908204138278961, 0.6230376958847046, 0.14454488456249237, -0.10703359544277191, 0.7939027547836304, -0.263422429561615, 0.7500692009925842, 0.15877534449100494, -0.6683917045593262, 0.763808012008667, -0.1300719678401947, 0.3683605194091797, 0.6495828032493591, 0.7530983686447144, -0.3924105763435364, -0.06344619393348694, -0.5391998291015625, -0.7910432815551758, 0.7392334342002869, 0.3436032831668854, 0.0770324096083641, -0.11785012483596802, 0.5831144452095032, -0.09512405842542648, -0.061421170830726624, -0.7874287366867065, -0.5533925890922546, -0.12445088475942612, -0.3179321885108948, 0.07700306177139282, -0.20512783527374268, 0.1844233274459839, -0.49605223536491394, 0.8292492032051086, 0.20657676458358765, 0.4299899637699127, 0.43613171577453613, -0.13010825216770172, -0.025588957592844963, 0.5025610327720642, 0.32916176319122314, 0.5152429938316345, -0.17403919994831085, -0.0274218562990427, 0.11313452571630478, -0.725288987159729, -0.03926299139857292, 0.5532771944999695, -0.2675143778324127, 0.012404895387589931, 0.16096363961696625, 0.8154169321060181, 0.18548932671546936, -0.42029500007629395, 0.32337650656700134, -0.07238613069057465, -0.008959028869867325, -0.488410621881485, 0.019112974405288696, -0.014835369773209095, -0.025809576734900475, 0.46650823950767517, 0.234702929854393, 0.13925842940807343, -0.43529555201530457, 0.17911861836910248, 0.1974116712808609, -0.20707514882087708, -0.30763426423072815, 0.5509864687919617, -0.25685304403305054, -0.46880194544792175, 0.67673259973526, -0.5221381783485413, -0.531842052936554, 0.5122656226158142, 0.43863800168037415, 0.7136662006378174, -0.4058854281902313, 0.060427580028772354, 0.9743223190307617, 0.09401700645685196, -0.062137942761182785, 0.4674665927886963, -0.03647269681096077, -0.6707698106765747, -0.2303212434053421, -1.1699059009552002, -0.012002401053905487, 0.05577751621603966, -0.6868066787719727, 0.6683889627456665, -0.47836029529571533, -0.14326997101306915, 0.5013791918754578, 0.07510882616043091, -0.8859049677848816, 0.2505546808242798, 0.11238473653793335, 0.8010802268981934, -0.7155472636222839, 0.7882499694824219, 0.7983074188232422, -0.8835363388061523, -1.0175397396087646, 0.06644992530345917, 0.10722186416387558, -0.7893109917640686, 0.7670860290527344, 0.22298792004585266, -0.018989065662026405, 0.08674255013465881, -0.45654603838920593, -1.212192416191101, 0.9726609587669373, 0.0616859532892704, -0.35273611545562744, -0.3041355311870575, 0.24984300136566162, 0.5370058417320251, -0.1782710701227188, -0.008577123284339905, 0.6183088421821594, 0.7803712487220764, 0.24045021831989288, -1.0570762157440186, 0.29096612334251404, -0.5970343351364136, 0.05712730437517166, 0.5555775761604309, -0.6280078291893005, 0.5165835022926331, -0.14142531156539917, -0.6341647505760193, -0.11221855133771896, 0.5514907240867615, 0.2614935338497162, 0.2674330174922943, 0.4299103319644928, 0.8912577629089355, 0.5662485957145691, -0.3394588828086853, 1.0264147520065308, -0.1241728663444519, 0.5120014548301697, 0.828043520450592, -0.2448788583278656, 0.8429315090179443, 0.5183207392692566, -0.4185967445373535, 0.5624006986618042, 0.6081690788269043, -0.4529031813144684, 0.45176151394844055, 0.13207949697971344, 0.10205665975809097, 0.23974956572055817, -0.4958302676677704, -0.427109032869339, 0.7500327825546265, 0.3288232684135437, -0.09077390283346176, -0.24059484899044037, 0.13868862390518188, 0.29018089175224304, 0.10372111946344376, -0.1688777059316635, 0.838849663734436, -0.004116896539926529, -0.5040781497955322, 0.8444414138793945, -0.10538560152053833, 0.798761785030365, -0.41057294607162476, -0.13903574645519257, 0.056006982922554016, 0.10348232090473175, -0.5088956952095032, -0.8153393268585205, 0.6553105115890503, 0.011500387452542782, -0.17968907952308655, -0.057351723313331604, 0.8202261924743652, -0.42142078280448914, -0.7844125032424927, 0.37586939334869385, 0.35236337780952454, 0.3706530034542084, 0.24202461540699005, -0.8341708183288574, 0.29319387674331665, -0.058295756578445435, -0.26025909185409546, 0.21372517943382263, 0.14869621396064758, -0.005684927571564913, 0.41713130474090576, 0.5628342032432556, 0.3027704656124115, 0.08479202538728714, -0.03467147797346115, 0.8254449367523193, -0.7611051797866821, -0.32155269384384155, -0.8260828256607056, 0.450642853975296, -0.40522241592407227, -0.2568886876106262, 0.8525956273078918, 0.8560549020767212, 1.1265144348144531, 0.14851978421211243, 0.6481373906135559, -0.5962991118431091, 0.8175765872001648, -0.3282298147678375, 0.9585296511650085, -0.6764991283416748, 0.01713089644908905, -0.40488651394844055, -0.8076381087303162, -0.471152126789093, 0.4436063766479492, -0.3589549660682678, 0.28924888372421265, 0.4435735046863556, 0.9720028042793274, -0.25288087129592896, -0.20601782202720642, -0.11737906187772751, 0.35473257303237915, 0.1731860637664795, 0.27455565333366394, 0.3946818709373474, -0.7003050446510315, 0.47577133774757385, -0.5303617119789124, -0.14250288903713226, -0.09555864334106445, -0.715823233127594, -0.7276623249053955, -1.0189217329025269, -0.6026576161384583, -0.4399382472038269, -0.052170492708683014, 0.9749264717102051, 0.7136807441711426, -1.0664911270141602, -0.08858819305896759, 0.150236114859581, 0.14787569642066956, 0.2466890513896942, -0.32082557678222656, 0.8067585229873657, 0.18953388929367065, -0.8314487934112549, 0.014714554883539677, 0.21651636064052582, 0.2647193372249603, 0.08778911828994751, -0.06532799452543259, -0.885040819644928, -0.13796286284923553, 0.32029223442077637, 0.6998745799064636, -0.720722496509552, -0.11183430254459381, -0.04710179194808006, -0.1331525295972824, 0.4136463403701782, 0.27126991748809814, -0.5568294525146484, 0.30367618799209595, 0.43978172540664673, 0.6403213739395142, 0.42033571004867554, -0.09616569429636002, -0.13577823340892792, -0.5851346850395203, 0.18038392066955566, 0.033440131694078445, 0.5354341268539429, 0.6842654943466187, -0.744365394115448, 0.5472936034202576, 0.33339184522628784, -0.4064019024372101, -0.9771236777305603, -0.10218226909637451, -1.1195273399353027, 0.22143150866031647, 1.1511902809143066, 0.011265615001320839, -0.4878196716308594, 0.03499319404363632, -0.1930125504732132, 0.6190211176872253, -0.5353778004646301, 0.5313296914100647, 0.6692565083503723, -0.1377078741788864, -0.4062204658985138, -0.33050188422203064, 0.6178027391433716, -0.06129803508520126, -0.9174308776855469, -0.23559394478797913, 0.2010848969221115, 0.32789963483810425, 0.6792055368423462, 0.6098853349685669, -0.36523205041885376, -0.06228821352124214, -0.3065580427646637, 0.32979580760002136, 0.07964921742677689, -0.15448760986328125, -0.2514650523662567, 0.013320284895598888, -0.1229720413684845, -0.16350317001342773 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
bigbio/chemdner
bigbio
2022-12-22T15:44:21Z
225
1
null
[ "multilinguality:monolingual", "language:en", "license:unknown", "region:us" ]
2022-12-22T15:44:21Z
2022-11-13T22:07:46.000Z
2022-11-13T22:07:46
--- language: - en bigbio_language: - English license: unknown multilinguality: monolingual bigbio_license_shortname: UNKNOWN pretty_name: CHEMDNER homepage: https://biocreative.bioinformatics.udel.edu/resources/biocreative-iv/chemdner-corpus/ bigbio_pubmed: True bigbio_public: True bigbio_tasks: - NAMED_ENTITY_RECOGNITION - TEXT_CLASSIFICATION --- # Dataset Card for CHEMDNER ## Dataset Description - **Homepage:** https://biocreative.bioinformatics.udel.edu/resources/biocreative-iv/chemdner-corpus/ - **Pubmed:** True - **Public:** True - **Tasks:** NER,TXTCLASS We present the CHEMDNER corpus, a collection of 10,000 PubMed abstracts that contain a total of 84,355 chemical entity mentions labeled manually by expert chemistry literature curators, following annotation guidelines specifically defined for this task. The abstracts of the CHEMDNER corpus were selected to be representative for all major chemical disciplines. Each of the chemical entity mentions was manually labeled according to its structure-associated chemical entity mention (SACEM) class: abbreviation, family, formula, identifier, multiple, systematic and trivial. ## Citation Information ``` @article{Krallinger2015, title = {The CHEMDNER corpus of chemicals and drugs and its annotation principles}, author = { Krallinger, Martin and Rabal, Obdulia and Leitner, Florian and Vazquez, Miguel and Salgado, David and Lu, Zhiyong and Leaman, Robert and Lu, Yanan and Ji, Donghong and Lowe, Daniel M. and Sayle, Roger A. and Batista-Navarro, Riza Theresa and Rak, Rafal and Huber, Torsten and Rockt{"a}schel, Tim and Matos, S{'e}rgio and Campos, David and Tang, Buzhou and Xu, Hua and Munkhdalai, Tsendsuren and Ryu, Keun Ho and Ramanan, S. V. and Nathan, Senthil and { {Z}}itnik, Slavko and Bajec, Marko and Weber, Lutz and Irmer, Matthias and Akhondi, Saber A. and Kors, Jan A. and Xu, Shuo and An, Xin and Sikdar, Utpal Kumar and Ekbal, Asif and Yoshioka, Masaharu and Dieb, Thaer M. and Choi, Miji and Verspoor, Karin and Khabsa, Madian and Giles, C. Lee and Liu, Hongfang and Ravikumar, Komandur Elayavilli and Lamurias, Andre and Couto, Francisco M. and Dai, Hong-Jie and Tsai, Richard Tzong-Han and Ata, Caglar and Can, Tolga and Usi{'e}, Anabel and Alves, Rui and Segura-Bedmar, Isabel and Mart{'i}nez, Paloma and Oyarzabal, Julen and Valencia, Alfonso }, year = 2015, month = {Jan}, day = 19, journal = {Journal of Cheminformatics}, volume = 7, number = 1, pages = {S2}, doi = {10.1186/1758-2946-7-S1-S2}, issn = {1758-2946}, url = {https://doi.org/10.1186/1758-2946-7-S1-S2}, abstract = { The automatic extraction of chemical information from text requires the recognition of chemical entity mentions as one of its key steps. When developing supervised named entity recognition (NER) systems, the availability of a large, manually annotated text corpus is desirable. Furthermore, large corpora permit the robust evaluation and comparison of different approaches that detect chemicals in documents. We present the CHEMDNER corpus, a collection of 10,000 PubMed abstracts that contain a total of 84,355 chemical entity mentions labeled manually by expert chemistry literature curators, following annotation guidelines specifically defined for this task. The abstracts of the CHEMDNER corpus were selected to be representative for all major chemical disciplines. Each of the chemical entity mentions was manually labeled according to its structure-associated chemical entity mention (SACEM) class: abbreviation, family, formula, identifier, multiple, systematic and trivial. The difficulty and consistency of tagging chemicals in text was measured using an agreement study between annotators, obtaining a percentage agreement of 91. For a subset of the CHEMDNER corpus (the test set of 3,000 abstracts) we provide not only the Gold Standard manual annotations, but also mentions automatically detected by the 26 teams that participated in the BioCreative IV CHEMDNER chemical mention recognition task. In addition, we release the CHEMDNER silver standard corpus of automatically extracted mentions from 17,000 randomly selected PubMed abstracts. A version of the CHEMDNER corpus in the BioC format has been generated as well. We propose a standard for required minimum information about entity annotations for the construction of domain specific corpora on chemical and drug entities. The CHEMDNER corpus and annotation guidelines are available at: ttp://www.biocreative.org/resources/biocreative-iv/chemdner-corpus/ } } ```
[ -0.5603671073913574, -0.2918909788131714, 0.9169517159461975, -0.048481643199920654, -0.05837129056453705, 0.03435065224766731, -0.18707343935966492, -0.4500541090965271, 0.2912091314792633, 0.18568311631679535, -0.37406525015830994, -0.830524206161499, -0.5710601806640625, 0.7697798013687134, -0.018287362530827522, 1.170811653137207, -0.19042803347110748, 0.24408558011054993, -0.1503925323486328, 0.12611320614814758, 0.1862768679857254, -0.41521379351615906, -0.5416025519371033, -0.1703488528728485, 0.9649876356124878, -0.015939932316541672, 0.2899760901927948, 0.740149974822998, 0.7005135416984558, 0.3358830213546753, -0.13120900094509125, 0.03049248456954956, -0.08311885595321655, -0.1002514436841011, -0.5068280100822449, -0.035826776176691055, -0.6960724592208862, 0.11059537529945374, 0.5198364853858948, 0.8064994812011719, 0.2250232696533203, -0.0993371456861496, -0.17405666410923004, 0.32437899708747864, -0.8002394437789917, 0.25177809596061707, -0.44931867718696594, -0.08182888478040695, -0.2623524069786072, 0.030338605865836143, -0.21413308382034302, -0.014417040161788464, 0.06565959006547928, -0.9268285036087036, 0.2563735544681549, 0.08401963114738464, 1.1130837202072144, 0.2002728134393692, -0.5760790705680847, -0.3371165692806244, -0.5364729166030884, 0.7285462021827698, -0.4716395139694214, 0.4470805823802948, 0.25237175822257996, 0.09087980538606644, -0.41288241744041443, -0.7276731133460999, -0.6636176705360413, -0.33878836035728455, -0.4547806680202484, 0.25012579560279846, -0.2128119170665741, 0.18999788165092468, 0.39850878715515137, 0.29349225759506226, -0.44946327805519104, -0.18757407367229462, -0.7321719527244568, -0.6587325930595398, 0.412198007106781, 0.16101548075675964, 0.16835087537765503, -0.39860799908638, -0.8939005732536316, 0.16393828392028809, -0.236749067902565, -0.3954104483127594, 0.05080268159508705, 0.19187970459461212, -0.15441100299358368, 0.5980989336967468, -0.2192016839981079, 0.19138558208942413, 0.18594688177108765, 0.20467574894428253, 0.5900107622146606, -0.7448580265045166, -0.19778695702552795, 0.43568822741508484, 1.121417760848999, 0.3351632058620453, 0.17950433492660522, 0.010171840898692608, -0.08095107227563858, 0.22419613599777222, -0.0020050799939781427, -1.0233631134033203, -0.7372979521751404, 0.5809518694877625, -0.19032540917396545, -0.15216994285583496, 0.32068905234336853, -1.1606255769729614, -0.4062669277191162, -0.32815101742744446, 0.25161781907081604, -0.23538942635059357, -0.20843318104743958, -0.2699110507965088, -0.5275576114654541, 0.21684925258159637, 0.12692631781101227, -0.6190757751464844, 0.7745294570922852, 0.36224982142448425, 0.7298058867454529, -0.6709111928939819, -0.16122430562973022, -0.39786481857299805, 0.19317631423473358, -0.3351321816444397, 0.9667311310768127, -0.5109502673149109, -0.5089346766471863, -0.1902814507484436, 0.405627965927124, -0.21065758168697357, -0.8092157244682312, 0.6328688263893127, -0.35226839780807495, -0.0012268065474927425, -0.5319532155990601, -0.4496499001979828, 0.012680880725383759, -0.03537915647029877, -0.7627188563346863, 0.9942546486854553, 0.23265865445137024, -0.6591554880142212, 0.4923001229763031, -0.6329755783081055, -0.18006005883216858, 0.04332254081964493, -0.07403402775526047, -0.24999886751174927, -0.23066389560699463, 0.09877636283636093, 0.3446762263774872, -0.2818780541419983, 0.11229301989078522, -0.16606594622135162, -0.17469941079616547, 0.4758194386959076, 0.1727128028869629, 0.665291965007782, 0.5500114560127258, -0.2701949179172516, 0.14543578028678894, -1.0556188821792603, -0.11661849915981293, -0.23185330629348755, -0.47643670439720154, -0.24451498687267303, -0.5469929575920105, 0.4339908957481384, 0.7198075652122498, 0.22002661228179932, -0.8923828601837158, -0.08058903366327286, 0.039686478674411774, 0.24315281212329865, 0.6805597543716431, 0.6408736705780029, 0.30198824405670166, -0.1123569905757904, 0.2354532778263092, 0.4044497311115265, -0.22266581654548645, 0.006010254845023155, -0.11133727431297302, -0.6107330322265625, -0.7811024785041809, 0.560393214225769, 0.6316587328910828, -0.5163742899894714, 0.5554301142692566, -0.49891364574432373, -0.4655070900917053, -0.4021932780742645, 0.24056027829647064, 0.6131207346916199, 0.45785021781921387, 0.7447295188903809, -0.2445012331008911, -0.8366137742996216, -1.0530149936676025, -0.0895233303308487, -0.03273611143231392, -0.03530769422650337, 0.2579014301300049, 0.8955445885658264, -0.5574958920478821, 0.8664979338645935, -0.6301178932189941, -0.2894662618637085, 0.1611126959323883, -0.053731244057416916, 0.06762025505304337, 0.4430351257324219, 0.18390582501888275, -0.6588799357414246, -0.5223385691642761, 0.03469494357705116, -0.6733117699623108, -0.5476487278938293, -0.03359047695994377, -0.5457195043563843, 0.4848877191543579, 0.7511486411094666, -0.5804646611213684, 0.18332618474960327, 0.1144670844078064, -0.3077172040939331, 0.23650847375392914, -0.18055815994739532, 0.1718907505273819, -1.1019774675369263, 0.4910595715045929, 0.2898617386817932, -0.081402488052845, -0.8088061809539795, -0.6430597305297852, 0.13827115297317505, 0.14901059865951538, -0.63875412940979, 0.7086092829704285, -0.6056724786758423, 0.3884944021701813, -0.30387818813323975, 0.06368008255958557, -0.031970806419849396, 0.56727534532547, 0.5353930592536926, 0.49920886754989624, 0.42082008719444275, -0.7558805346488953, 0.19741876423358917, 0.15959703922271729, 0.03769487887620926, 0.9837799072265625, -0.7300238013267517, -0.2044920176267624, -0.11805630475282669, 0.4793768525123596, -1.0013089179992676, -0.36134615540504456, 0.6652637720108032, -0.37662506103515625, 0.5083118677139282, -0.18407781422138214, -0.440914124250412, -0.21540983021259308, -0.3150489628314972, 0.22061897814273834, 0.13853739202022552, -0.3285363018512726, 0.5933132767677307, 0.43625780940055847, -0.18856948614120483, -0.331603080034256, -0.5365580320358276, -0.08119364827871323, -0.050042156130075455, -0.07776334136724472, 0.5621185302734375, -0.15269722044467926, -0.37653839588165283, 0.1623765379190445, -0.7127974033355713, -0.07161954045295715, -0.3033652603626251, 0.5222392678260803, 0.49198153614997864, 0.305349200963974, 0.10042008757591248, 0.04069061577320099, -0.5518882274627686, 0.38862311840057373, 0.02328382059931755, 0.41078492999076843, 0.14867080748081207, 0.24597737193107605, -0.1753728687763214, 0.3743334710597992, 0.6013687252998352, -0.1879405379295349, 0.5664721131324768, 0.695083498954773, -0.4874327480792999, 0.10992351919412613, -0.2981903851032257, -0.046112578362226486, -0.3993224799633026, 0.29161182045936584, -0.36945870518684387, -0.527792751789093, 0.6584576368331909, -0.19336818158626556, -0.4145357310771942, 1.0923378467559814, 0.5738618969917297, -0.06158837676048279, 0.3831191956996918, 0.22604984045028687, 0.10313132405281067, 0.051643773913383484, -0.20061472058296204, 0.02178478240966797, -1.1685889959335327, -0.6353583335876465, -0.5294255018234253, -0.20621903240680695, -0.569848895072937, -0.5280341506004333, 0.31777599453926086, -0.3117448389530182, -0.4149399697780609, 0.6527056694030762, -0.40865078568458557, 0.30680564045906067, 0.34039074182510376, 0.058157697319984436, 0.1113881766796112, -0.14428235590457916, -0.378971666097641, 0.08521106839179993, -0.3031199276447296, -0.3796098828315735, 0.9469237327575684, 0.2815956771373749, 0.562161386013031, 0.03671613708138466, 0.8878933787345886, 0.26203256845474243, 0.10867104679346085, -0.7270079255104065, 0.7032801508903503, 0.20430202782154083, -0.9900171756744385, 0.16130656003952026, -0.4167325496673584, -0.8912504315376282, -0.0005437320214696229, -0.2789364755153656, -0.535450279712677, 1.0038508176803589, -0.2808995246887207, -0.4062960743904114, -0.08759650588035583, -0.5225842595100403, 0.7428321838378906, 0.05366365984082222, -0.46665167808532715, 0.20516513288021088, -1.0812042951583862, 0.08798711001873016, -0.19422923028469086, 0.1693292260169983, -0.26274487376213074, -0.6027669906616211, 0.8337944149971008, -0.6024070382118225, 0.6111747026443481, 0.013495255261659622, -0.3121359646320343, 0.311862975358963, -0.056504927575588226, 0.32137832045555115, -0.20302395522594452, 0.12926392257213593, 0.4442327916622162, 0.1361897587776184, -0.40276798605918884, -0.25746071338653564, 0.9019033908843994, -0.505994439125061, -0.07815194129943848, -1.0991452932357788, -0.31945157051086426, 0.2709310054779053, 0.46299538016319275, 0.5035106539726257, 0.10181631147861481, -0.0963730439543724, -0.038442403078079224, 0.6429592967033386, -0.1366913765668869, 0.5465310215950012, 0.32225972414016724, 0.1609722524881363, -0.9586875438690186, 0.9075905680656433, 0.2285194844007492, 0.3144597113132477, 0.5456177592277527, -0.31932350993156433, -0.3008228838443756, -0.1290942281484604, -0.016978511586785316, 0.48963868618011475, -0.8922417759895325, -0.24521860480308533, -1.0486031770706177, -0.16623660922050476, -0.2027621865272522, -0.0441056564450264, -0.2349025309085846, -0.35431480407714844, -0.14065274596214294, -0.4604325294494629, 0.5238553881645203, 0.49856671690940857, -0.4102933704853058, -0.13574500381946564, -0.5848915576934814, 0.3691258430480957, -0.04636799916625023, 0.2768697738647461, -0.436543732881546, -0.1730819195508957, -0.18506507575511932, -0.22692444920539856, 0.14586369693279266, -1.0329227447509766, 0.2519257068634033, 0.2513177990913391, 0.8021445274353027, 0.0040375422686338425, 0.2034233659505844, 0.3952881097793579, -0.4350280463695526, 0.7066867351531982, -0.12354710698127747, -0.7217440009117126, 0.6094781756401062, -0.5193272829055786, 0.21028649806976318, 0.9504455327987671, 0.9781543016433716, -0.49202775955200195, -0.24562670290470123, -0.6765397787094116, -1.2604602575302124, 0.6775844693183899, 0.4256991147994995, -0.2348473221063614, -0.5520877242088318, 0.23008103668689728, -0.17109647393226624, 0.11623014509677887, -0.5560553669929504, -0.8029125332832336, 0.000766540237236768, -0.26194003224372864, 0.013540413230657578, -0.1756581962108612, -0.24402816593647003, -0.3768978416919708, 0.9652163982391357, 0.28865644335746765, 0.4601982533931732, 0.7160816788673401, -0.2943476140499115, 0.07068737596273422, 0.5687053203582764, 0.6458281874656677, 0.28040096163749695, -0.5387155413627625, 0.6980369687080383, 0.18475517630577087, -0.9242225289344788, 0.05219054967164993, 0.6309794783592224, 0.018416238948702812, 0.11314638704061508, 0.07629942148923874, 0.34982094168663025, 0.25331005454063416, -0.6737435460090637, 0.10028375685214996, 0.32654279470443726, -0.3443513512611389, -0.24625705182552338, 0.13411352038383484, -0.1032843366265297, 0.13787461817264557, 0.37879595160484314, 0.20550842583179474, 0.4044838547706604, -0.5137127637863159, 0.389973908662796, 0.10417512059211731, -0.7756065130233765, -0.16442735493183136, 0.6077567338943481, -0.1300172209739685, 0.274033784866333, 0.2470674216747284, -0.500219464302063, -0.49717700481414795, 0.49101492762565613, 0.568917989730835, 1.0094448328018188, -0.24703383445739746, -0.0003374703519511968, 0.878234326839447, 0.1651657372713089, 0.26997020840644836, 0.3673166036605835, -0.029654158279299736, -0.37243470549583435, 0.1433933675289154, -0.6448306441307068, -0.13105948269367218, 0.09686976671218872, -0.3376602232456207, 0.2602778375148773, -0.5823115706443787, -0.2864232361316681, 0.6501267552375793, 0.3400958478450775, -0.49861767888069153, 0.1733511984348297, 0.09260769933462143, 0.656188428401947, -0.8879189491271973, 0.521380603313446, 0.9072398543357849, -0.8842537999153137, -0.4022223949432373, -0.10115618258714676, 0.4743134677410126, 0.07965444028377533, 0.8298536539077759, -0.16112194955348969, -0.12080370634794235, 0.09081760793924332, -0.48445770144462585, -1.016385555267334, 1.3245630264282227, -0.2801649570465088, -0.3451770544052124, 0.4555211365222931, -0.05445089191198349, 0.6905384063720703, -0.26072606444358826, 0.4128085970878601, 0.6256224513053894, 0.7138652801513672, 0.2938885986804962, -0.7714805006980896, 0.5972756743431091, -0.8609979748725891, 0.015846138820052147, 0.37297147512435913, -0.4771954119205475, 0.8101124167442322, -0.1283484250307083, -0.1682034730911255, -0.03268275037407875, 0.3951888084411621, 0.3227572739124298, 0.533860445022583, 0.11981772631406784, 0.45313483476638794, 0.7217869162559509, -0.23572403192520142, 0.9182020425796509, -0.22725750505924225, 0.141161248087883, 1.0525939464569092, -0.31894516944885254, 0.7719294428825378, 0.6195441484451294, -0.48928016424179077, 0.6878039836883545, 0.7247568368911743, -0.47693073749542236, 0.5868712067604065, 0.40689852833747864, -0.47407805919647217, 0.003674393752589822, -0.2280387580394745, -0.42369088530540466, 0.07973886281251907, 0.4282800257205963, -0.7540716528892517, -0.2268747091293335, -0.14172329008579254, 0.45062142610549927, -0.14052239060401917, -0.24937720596790314, 0.9055490493774414, 0.12752799689769745, -0.4766952097415924, 0.4806447923183441, -0.06714169681072235, 0.5473489761352539, -0.4679083526134491, -0.17702701687812805, 0.0411582812666893, 0.2559031546115875, -0.5512987375259399, -0.49786654114723206, 0.10233379900455475, -0.04324907436966896, -0.3912043273448944, 0.5127842426300049, 0.79648357629776, -0.6049113869667053, -0.47225522994995117, 0.22935721278190613, 0.30562812089920044, 0.3262231945991516, 0.04171957075595856, -0.1972350776195526, 0.042922187596559525, -0.31897035241127014, -0.008765922859311104, 0.31972336769104004, 0.3453838527202606, -0.01164188701659441, 0.212576761841774, 0.7544273734092712, -0.14352747797966003, 0.03619353473186493, -0.3016807436943054, 0.9423110485076904, -0.7747965455055237, -0.02058100327849388, -0.8384971618652344, 0.6579967737197876, -0.2001551240682602, -0.2936483919620514, 1.0184695720672607, 1.1767456531524658, 0.8216249346733093, -0.35854023694992065, 0.8217403888702393, -0.1220138892531395, 0.36075854301452637, -0.20011939108371735, 0.7607839107513428, -0.09591185301542282, 0.23675958812236786, -0.6318849325180054, -1.0674192905426025, -0.48043298721313477, 0.5502433776855469, -0.3755197525024414, 0.3106715679168701, 1.0894485712051392, 0.8930899500846863, -0.1191454604268074, -0.4360121488571167, -0.288337379693985, 0.4184950888156891, 0.14318740367889404, 0.5124922394752502, 0.3366394639015198, -0.5718290209770203, 0.35810524225234985, -0.4018413722515106, 0.022156277671456337, -0.1069425567984581, -0.7659526467323303, -0.7966214418411255, -0.7366467118263245, -0.7040577530860901, -0.7208310961723328, -0.06329194456338882, 1.356195092201233, 0.29119548201560974, -1.0526493787765503, -0.07517879456281662, -0.06885697692632675, -0.19207420945167542, -0.20937767624855042, -0.21170981228351593, 0.5837394595146179, -0.2151075303554535, -0.740441083908081, 0.15523938834667206, 0.18497943878173828, 0.11254612356424332, 0.16557249426841736, -0.12773650884628296, -0.5790854692459106, 0.21480338275432587, 0.3884335458278656, 0.5339759588241577, -0.5613409280776978, 0.056625690311193466, 0.09885559231042862, -0.5988997220993042, 0.1334039866924286, 0.3543585538864136, -0.7460120916366577, 0.5225374102592468, 0.5303155183792114, 0.19903835654258728, 0.534006655216217, -0.029782600700855255, 0.15539059042930603, -0.5539981722831726, -0.3051050305366516, 0.036407627165317535, 0.24187414348125458, 0.09862998872995377, -0.3745831549167633, 0.6913809180259705, 0.4890871047973633, -0.5116798281669617, -0.6006975173950195, -0.10627907514572144, -1.6225130558013916, -0.27338680624961853, 1.3615500926971436, 0.21631108224391937, -0.30059871077537537, -0.4693077802658081, -0.45087453722953796, 0.47255653142929077, -0.8950364589691162, 0.23918402194976807, 0.7180429100990295, -0.056858666241168976, -0.3062146306037903, -0.5189482569694519, 0.724376916885376, -0.16647350788116455, -1.0182428359985352, 0.02058417536318302, 0.7812802195549011, 0.33634284138679504, 0.5791139602661133, 0.5836501717567444, -0.4037973880767822, 0.2416905015707016, 0.08828271180391312, 0.33287742733955383, -0.04912799224257469, -0.27016332745552063, -0.41167065501213074, -0.13281062245368958, -0.3805156648159027, -0.1170356422662735 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
lukemann/baby-agi-dataset-v1
lukemann
2023-11-28T21:15:38Z
225
0
null
[ "region:us" ]
2023-11-28T21:15:38Z
2023-11-22T00:41:13.000Z
2023-11-22T00:41:13
# BabyAGI (Dataset) The initial demonstration dataset follows the Huggingface dataset spec, with the raw data split into two components, trajectory images and trajectory metadata. The metadata is stored in the raw dataset, and the images are stored on S3. The data is loaded using the dataloader defined in [baby_agi_dataset.py](./baby_agi_dataset.py). **Data Layout:** ```plaintext ├── data │ ├── metadata_0.json │ ├── metadata_1.json │ └── ... ├-- baby_agi_dataset.py ``` ### Metadata Format (.json) ```json [ { "id": "<trajectory_id_hash>", "instruction": "<some instruction>", "trajectory": [ { "image_id": "image_id", "image_size": [10, 10], "steps": [ { "action_options": [ { "index": 0, "top_left": [120, 340], "bottom_right": [140, 440] } ], "action_taken": { "type": "click", "value": "value (only for type and scroll)", "action_option_index": 0 } } ] } ] } ] ``` ## Action Types The dataset metadata includes three types of actions: "click", "type", and "scroll". The `action_option_index` field indicates the index of the clicked element within the `action_options` list. 1. **Click**: Represents a user clicking on an element. 2. **Type**: Represents a user typing into an input field. action_option_index will always be -1 for these. 3. **Scroll**: Represents a user scrolling the viewport. The `value` field indicates the direction of the scroll, with "up" corresponding to a 200px scroll upwards and "down" corresponding to a 200px scroll downwards. Note that `bottom_left` and `top_right` will always be zero-arrays for these. action_option_index will always be -1 for these. 4. **Move Mouse**: Represents a user moving their mouse to the center of an element. ## Dataset Generation Pipeline The dataset is generated through the following steps: 1. **Load Demo**: The demo is loaded from the Hugging Face dataset. 2. **Load Trace**: The trace is loaded from the Globus dataset. 3. **Process Trajectories**: For each Mind2Web (M2W) trajectory: a) **Map Actions**: M2W actions are mapped to Playwright trace actions using the timestamp in `dom_content.json`. b) **Screenshot DOM**: The DOM is "screenshoted" just before the action. c) **Map Candidates**: `pos_candidates` and `neg_candidates` from the M2W action metadata are mapped to HTML bounding boxes via class+id matching from the action metadata. New bounding box coordinates are obtained for each. d) **Craft Meta + Screenshot Pair**: The pair of metadata and screenshots is crafted and saved/appended. 4. **Save Data**: The updated data directory is saved to S3 and Hugging Face. ### Screenshots Screenshots in this dataset are generated from the before states of Mind2Web trajectory traces. Each image has a width of 2036 and a height of 1144. For alternate screen sizes (via augmentation), padding is added to maintain the aspect ratio. This ensures that the content of the screenshot remains consistent across different screen sizes. ### Options Generation Options in this dataset are generated from `positive_candidates` (always one) and `negative_candidates` in the Mind2Web (M2W) dataset. The M2W dataset labels _all_ possible interactions on the DOM. Therefore, the 50 largest area-wise options within the viewport containing the positive candidate are selected. ### Scrolling The Mind2Web (M2W) dataset captures the entire DOM, so when the selected option action is not in the viewport, artificial scroll actions are created. This action has two possible values: "up" and "down". Each of which corresponds to a 200px scroll in the respective direction. ### Selecting The "Select" action in the Mind2Web (M2W) dataset is recorded when a user makes a selection from a dropdown list. In this dataset, we represent it as a sequence of two distinct actions in a trajectory: 1. **Click**: The user clicks on the dropdown element. 2. **Type**: The user types the desired value followed by Enter ## Usage To use the dataset in your Python program, you can load it using the `load_dataset` function from the `datasets` library: ```python from datasets import load_dataset # typically load_dataset("lukemann/baby-agi-dataset-v0" dataset = load_dataset("lukemann/baby-agi-dataset-v0") first_row = dataset['train'][0] print(first_row) ``` This will load the dataset and print the first row of the training set. For a short demo, refer to the [demo.py](./demo.py) file.
[ -0.38365891575813293, -0.43117058277130127, 0.3805898427963257, 0.035090021789073944, 0.006149470340460539, -0.20989391207695007, 0.07095525413751602, -0.18173860013484955, 0.5389531850814819, 0.3070957064628601, -1.2363903522491455, -0.4896472096443176, -0.46023184061050415, -0.4083174169063568, -0.20205123722553253, 1.2717962265014648, -0.11381566524505615, -0.3667617738246918, -0.39973485469818115, -0.09113538265228271, -0.13708128035068512, -0.14511246979236603, -0.6115291714668274, -0.18858644366264343, 0.5072383880615234, 0.4543033540248871, 0.8226861953735352, 0.6893736720085144, 0.5395954847335815, 0.3216956555843353, 0.04751163348555565, 0.019268900156021118, -0.615486741065979, -0.21102756261825562, -0.05890771374106407, -0.6440244913101196, -0.4629860520362854, 0.25806790590286255, 0.5197104215621948, 0.3150589168071747, -0.2381010204553604, 0.3978988230228424, 0.05898347496986389, 0.6486581563949585, -0.5585073232650757, 0.20375247299671173, -0.14765366911888123, 0.1396726667881012, -0.18842142820358276, 0.013774139806628227, 0.08574654906988144, -0.4129681885242462, 0.20733705163002014, -0.810197114944458, 0.14807333052158356, 0.1766664832830429, 0.9669021964073181, 0.3689691126346588, -0.3437304198741913, -0.33698132634162903, -0.4361618757247925, 0.7375108003616333, -0.4961313009262085, 0.026343097910284996, 0.6123350262641907, 0.18123698234558105, -0.46140116453170776, -0.6890106201171875, -0.708122968673706, 0.18589366972446442, -0.11729453504085541, 0.2980930805206299, -0.24354052543640137, -0.2161332219839096, 0.4580507278442383, 0.2957497537136078, -0.8509549498558044, -0.19671224057674408, -0.4426565170288086, -0.4022619426250458, 0.8031142354011536, 0.31401482224464417, 0.5805514454841614, -0.24319536983966827, -0.20338310301303864, -0.48185691237449646, -0.28995367884635925, 0.38640862703323364, 0.3656047582626343, 0.17065681517124176, -0.6541488170623779, 0.5902943015098572, -0.17702248692512512, 0.623124361038208, 0.336804062128067, -0.31993988156318665, 0.48688259720802307, -0.09783771634101868, -0.22997762262821198, -0.43171700835227966, 1.0640640258789062, 0.9614284634590149, 0.0516064316034317, 0.03575630858540535, 0.28555575013160706, -0.028708303347229958, 0.2863139808177948, -0.977370023727417, -0.10113430768251419, 0.6916190981864929, -0.4630376696586609, -0.10657088458538055, -0.003106775926426053, -0.7841036915779114, -0.5013513565063477, -0.10020727664232254, 0.31852880120277405, -0.6778250932693481, -0.33226296305656433, 0.20225627720355988, -0.21818478405475616, 0.47378554940223694, 0.20708002150058746, -1.0190184116363525, 0.29459813237190247, 0.5682510733604431, 0.7647238373756409, -0.18927818536758423, -0.45812398195266724, -0.09535258263349533, 0.10119983553886414, -0.36976659297943115, 0.8552361130714417, -0.10731370002031326, -0.23595480620861053, 0.09027788043022156, 0.24789933860301971, -0.2525397837162018, -0.48823943734169006, 0.39358675479888916, -0.42117390036582947, 0.3961118459701538, -0.47990477085113525, -0.503892719745636, -0.5968361496925354, 0.25914332270622253, -0.48317593336105347, 1.0875306129455566, 0.3227524161338806, -0.718392014503479, 0.5097569823265076, -0.7466894388198853, -0.4560403823852539, -0.08345785737037659, -0.08872305601835251, -0.3701837956905365, -0.07712714374065399, -0.007831113412976265, 0.579913854598999, 0.03939501568675041, -0.04100922867655754, -0.5391495823860168, -0.20363111793994904, 0.25975313782691956, 0.1283343881368637, 0.9790025949478149, -0.04550712928175926, -0.06584837287664413, 0.09134682267904282, -0.8652580380439758, 0.16823428869247437, 0.35725319385528564, -0.22630849480628967, -0.04728103056550026, -0.014098536223173141, 0.03191598132252693, 0.5441176295280457, 0.24666693806648254, -0.519575297832489, 0.4491618871688843, -0.16409698128700256, 0.2281964272260666, 0.40068164467811584, 0.12240639328956604, 0.3656904995441437, -0.42474523186683655, 0.4454757869243622, -0.0037861343007534742, 0.24995653331279755, 0.14330098032951355, -0.5062654614448547, -0.8529402613639832, 0.07556451112031937, -0.09157008677721024, 0.5340520739555359, -0.5025046467781067, 0.6778310537338257, -0.172263041138649, -0.55942302942276, -0.6492184996604919, -0.08652013540267944, 0.3017723560333252, 0.4106210172176361, 0.3536929488182068, -0.24340346455574036, -0.3633148968219757, -0.9285845160484314, 0.24005265533924103, -0.20722123980522156, -0.1433986872434616, 0.23655539751052856, 0.7843211889266968, -0.11082284897565842, 0.8654643297195435, -0.8255234956741333, -0.2804575562477112, -0.22291788458824158, 0.21475881338119507, 0.3452816605567932, 0.6529147624969482, 0.6446214318275452, -0.7320178151130676, -0.19677062332630157, -0.49415361881256104, -0.8380234241485596, 0.1994016170501709, -0.16015173494815826, -0.5736376643180847, 0.0466565266251564, 0.08414435386657715, -0.773269534111023, 0.8376807570457458, 0.4264373183250427, -0.6388539671897888, 0.46032238006591797, -0.16869552433490753, 0.22048033773899078, -1.2421770095825195, 0.14004451036453247, 0.19958263635635376, 0.035172563046216965, -0.5892941951751709, 0.19452853500843048, 0.24636007845401764, 0.1495361626148224, -0.7754198908805847, 0.36752626299858093, -0.30081430077552795, -0.33117398619651794, -0.3216549754142761, 0.06317632645368576, 0.018110617995262146, 0.76529860496521, 0.008634083904325962, 0.6099696755409241, 0.6291465163230896, -0.7590617537498474, 0.33642300963401794, 0.6195744872093201, -0.29027917981147766, 0.7089248299598694, -0.19701337814331055, 0.22138136625289917, -0.016701621934771538, 0.4047500193119049, -1.062063217163086, -0.5443968772888184, 0.4317314326763153, -0.6718078851699829, 0.25606778264045715, -0.20474974811077118, -0.5877100229263306, -0.7843647003173828, -0.4928877055644989, -0.045356541872024536, 0.43718212842941284, -0.2525218725204468, 0.5162374973297119, 0.577908992767334, 0.23685799539089203, -0.29038363695144653, -0.7831534743309021, -0.17808741331100464, -0.29939863085746765, -0.600062906742096, 0.36075201630592346, -0.27243465185165405, 0.046506188809871674, -0.07928451895713806, 0.03344810754060745, 0.08273577690124512, -0.16053445637226105, 0.45946699380874634, 0.329856812953949, 0.27250123023986816, -0.16960570216178894, 0.1647036224603653, -0.2417897880077362, 0.20854242146015167, -0.09248161315917969, 0.7520914673805237, -0.016851449385285378, -0.21785467863082886, -0.8536563515663147, 0.1749650537967682, 0.5581669807434082, 0.11469973623752594, 0.6218747496604919, 0.9667931795120239, -0.6951130032539368, 0.23687778413295746, -0.24779054522514343, -0.06839445978403091, -0.49541884660720825, 0.25387856364250183, -0.42945384979248047, -0.38705891370773315, 0.6491110920906067, 0.1684848964214325, 0.19928953051567078, 0.4309375286102295, 0.5550152659416199, -0.6361166834831238, 0.9809009432792664, 0.5734012126922607, -0.183869868516922, 0.30213290452957153, -0.8923717141151428, -0.35015276074409485, -1.3672306537628174, -0.5272566676139832, -0.07819577306509018, -0.8348852396011353, -0.47824999690055847, -0.5147124528884888, 0.356773316860199, 0.21070249378681183, -0.4622217118740082, 0.5619530081748962, -0.4323978126049042, 0.21899527311325073, 0.7037875652313232, 0.26179370284080505, -0.3182353079319, 0.12892641127109528, -0.26765066385269165, -0.21544691920280457, -0.4523566961288452, -0.17531658709049225, 1.1707425117492676, 0.03741484135389328, 0.5139274001121521, 0.03154406324028969, 0.5545039772987366, -0.004843354225158691, 0.2208312600851059, -0.8943403959274292, 0.9272755980491638, 0.02384990267455578, -0.7122117280960083, -0.15643174946308136, 0.0620538666844368, -0.978762149810791, 0.1711525321006775, -0.4125376045703888, -1.21495521068573, 0.1526489555835724, 0.13713988661766052, -0.8021197319030762, 0.3987482786178589, -0.33883488178253174, 0.6683433055877686, -0.2831679880619049, -0.7809346318244934, -0.21347764134407043, -0.9204915165901184, -0.014204271137714386, 0.3480794131755829, -0.009856986813247204, -0.09839946031570435, -0.033186547458171844, 1.0834134817123413, -0.565582811832428, 0.739466667175293, -0.38766515254974365, -0.03879988566040993, 0.4464664161205292, 0.18244439363479614, 0.26498323678970337, -0.2350264936685562, -0.007534615229815245, 0.09491907060146332, -0.2957836985588074, -0.11625628918409348, -0.6997029781341553, 0.6263223886489868, -0.7336426377296448, -0.2704352140426636, -0.50508052110672, -0.6229218244552612, -0.18215185403823853, 0.2341507077217102, 0.28750455379486084, 0.42076119780540466, 0.09083719551563263, 0.12689466774463654, 0.4831862449645996, -0.19724759459495544, 0.6318686604499817, 0.71222984790802, -0.5922170877456665, -0.5021452903747559, 0.7531399130821228, 0.23109133541584015, -0.07084807753562927, 0.2881559431552887, 0.18941809237003326, -0.5793087482452393, -0.2755334973335266, -0.7257061004638672, 0.3319597840309143, -0.3471491038799286, -0.04914161190390587, -0.6648993492126465, -0.1434776782989502, -0.35320475697517395, -0.1254694014787674, -0.3167833685874939, -0.2591935992240906, -0.5602080225944519, -0.3408252000808716, 0.556801974773407, 0.3780095875263214, -0.5032547116279602, 0.4585341811180115, -0.3293848931789398, 0.504004716873169, 0.2670324742794037, 0.3238467574119568, -0.12400995939970016, -0.5115448236465454, -0.20775271952152252, 0.06651590764522552, -0.5968446135520935, -0.8183841705322266, 0.3359425961971283, -0.18733640015125275, 0.22221577167510986, 0.7730730772018433, -0.22523091733455658, 1.1812934875488281, -0.3507404327392578, 0.7855806946754456, 0.2653282582759857, -0.44362154603004456, 0.923041582107544, -0.6707881093025208, 0.26154249906539917, 0.6340968608856201, 0.6039151549339294, -0.6473069787025452, -0.023329127579927444, -0.7142208218574524, -0.8066360950469971, 1.133139729499817, 0.2952418923377991, -0.05959559231996536, 0.214585542678833, 0.6683207154273987, -0.06707882881164551, 0.1786642223596573, -0.5480772852897644, -0.4159732162952423, 0.024696746841073036, -0.3199918568134308, 0.10912895202636719, 0.15151458978652954, -0.28812527656555176, -0.5542564392089844, 0.6171597838401794, -0.2504991590976715, 0.5549908876419067, -0.018287736922502518, 0.09399507194757462, -0.4216901659965515, -0.3108533024787903, 0.32575055956840515, 0.435111939907074, -0.4875275790691376, -0.4234362542629242, -0.011973910965025425, -0.6562884449958801, 0.16387297213077545, 0.10970115661621094, -0.41080573201179504, -0.5151130557060242, 0.29949674010276794, 0.9503157734870911, 0.1960902065038681, -0.24616315960884094, 0.5016180276870728, -0.03614327684044838, -0.3337269127368927, -0.5260284543037415, 0.416851282119751, 0.2254476696252823, 0.4075983464717865, 0.29360926151275635, 0.10587716102600098, 0.34864890575408936, -0.49505943059921265, 0.15373696386814117, 0.3906953036785126, -0.23549924790859222, -0.4910481572151184, 0.777450442314148, -0.13581913709640503, -0.31782397627830505, 0.678583025932312, -0.17360426485538483, -0.2969231903553009, 0.8406736850738525, 0.5973057746887207, 0.8569067716598511, 0.009518622420728207, 0.31329435110092163, 0.5874631404876709, 0.148355171084404, -0.047338567674160004, 0.608881413936615, 0.008351012133061886, -0.9059991240501404, -0.060371920466423035, -0.7066714763641357, -0.4276694655418396, 0.7598028182983398, -1.1316618919372559, 0.2765422761440277, -0.32903653383255005, -0.36093074083328247, -0.2918156683444977, 0.3041493892669678, -0.9025367498397827, 0.5260806679725647, 0.36519116163253784, 0.7716888785362244, -0.7262131571769714, 0.5197458267211914, 0.8517943620681763, -0.555160403251648, -0.8958409428596497, 0.41957569122314453, 0.6086148619651794, -1.029294729232788, 0.09700694680213928, 0.516697347164154, -0.09335023909807205, 0.09350672364234924, -0.7348504066467285, -1.1809093952178955, 1.4203084707260132, -0.11072931438684464, -0.3474390208721161, 0.02706797979772091, 0.1085551381111145, 0.5952019691467285, -0.23050715029239655, 0.48575547337532043, 0.5817291736602783, 0.5126978158950806, 0.12366203218698502, -0.39399629831314087, 0.11193952709436417, -0.28177034854888916, 0.061434075236320496, -0.029569316655397415, -1.1333657503128052, 0.5101908445358276, -0.49748507142066956, -0.31188222765922546, 0.0253952294588089, 0.8045507669448853, 0.38796061277389526, 0.27306121587753296, 0.5513015985488892, 1.0008213520050049, 0.6233152151107788, -0.1302891969680786, 1.1374033689498901, -0.37719041109085083, 0.5009218454360962, 0.9579503536224365, -0.34807178378105164, 0.9898821115493774, 0.3355734944343567, -0.5713078379631042, 0.6597963571548462, 0.9534403085708618, -0.02803177945315838, 0.6695027351379395, 0.18171782791614532, 0.19123104214668274, 0.004118757322430611, 0.19377587735652924, -0.08987688273191452, 0.4931064546108246, 0.5277293920516968, 0.1494370549917221, -0.014780659228563309, 0.18897898495197296, 0.5163466334342957, -0.36531734466552734, -0.1849660575389862, 0.7986564040184021, -0.2651607394218445, -0.8848229050636292, 0.35450294613838196, -0.2552773058414459, 0.6347648501396179, -0.7778375744819641, 0.17326542735099792, -0.3756316006183624, 0.039776332676410675, -0.3633287250995636, -1.1385111808776855, 0.25024423003196716, -0.11060172319412231, -0.19501204788684845, -0.09472444653511047, 0.6721112132072449, -0.3916622996330261, -0.531082808971405, 0.45698922872543335, 0.4444977939128876, 0.35839998722076416, 0.2495826631784439, -1.0260233879089355, 0.1122252345085144, 0.13545873761177063, -0.6340824961662292, 0.3987876772880554, 0.0823330208659172, 0.12126381695270538, 0.8573434948921204, 0.6597576141357422, -0.03491530567407608, -0.2135821431875229, -0.027828361839056015, 0.9051494002342224, -0.745445728302002, -0.4619324505329132, -0.7132658958435059, 0.8879444003105164, -0.19080422818660736, -0.557978093624115, 0.5175679922103882, 0.7700738310813904, 0.7161292433738708, -0.05624742805957794, 0.7139661312103271, -0.6000120043754578, 0.5967987179756165, -0.4084166884422302, 0.8990187048912048, -0.8016620874404907, -0.3895168602466583, -0.1907186508178711, -0.5107252597808838, -0.17835082113742828, 0.8104305267333984, -0.1734035611152649, 0.00935639999806881, 0.711261510848999, 0.9149823784828186, -0.22963924705982208, -0.09413004666566849, -0.1335620880126953, 0.1611565798521042, 0.002483135322108865, 0.6480357646942139, 0.5102389454841614, -0.5930435657501221, 0.3283357620239258, -0.4494064748287201, -0.5695196986198425, -0.2211780548095703, -0.6505515575408936, -0.6955729126930237, -0.6334637999534607, -0.509366512298584, -0.42428192496299744, -0.24341687560081482, 0.8053414821624756, 0.8563248515129089, -0.84725022315979, -0.3854845464229584, -0.001120695029385388, -0.2543678283691406, -0.40152791142463684, -0.30763334035873413, 0.5238850116729736, 0.2927636504173279, -0.823666512966156, 0.32208648324012756, 0.27585333585739136, 0.2734893560409546, -0.11211155354976654, 0.006560559384524822, -0.32717350125312805, -0.09435857832431793, 0.32076379656791687, 0.3444146513938904, -0.4266397953033447, -0.3181934654712677, -0.2711975872516632, 0.09310116618871689, 0.16251009702682495, 0.4936918318271637, -0.7122747898101807, 0.21556958556175232, 0.34569305181503296, 0.05056607723236084, 0.7869287729263306, -0.09772780537605286, 0.2265273481607437, -0.43441545963287354, 0.21865907311439514, -0.17925259470939636, 0.5103711485862732, 0.2170400768518448, -0.43847909569740295, 0.6962711215019226, 0.24191085994243622, -0.4315236210823059, -0.33834055066108704, 0.07216938585042953, -1.135621190071106, 0.040966521948575974, 1.2323331832885742, -0.10536984354257584, -0.45647430419921875, 0.18086573481559753, -0.3055114150047302, 0.49541330337524414, -0.42525094747543335, 0.6105979084968567, 0.717653214931488, -0.6610732674598694, -0.002433433197438717, -0.5744720101356506, 0.5737987160682678, 0.03789765387773514, -0.9272047877311707, -0.27065563201904297, 0.5473465323448181, 0.4910453259944916, 0.38519519567489624, 0.769199013710022, -0.13730104267597198, 0.10162095725536346, -0.09947559982538223, 0.31781432032585144, 0.06093241274356842, -0.2675796151161194, -0.23680716753005981, 0.002892835531383753, -0.7543962597846985, -0.4936852753162384 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
midas/kp20k
midas
2023-09-25T05:14:59Z
224
2
null
[ "region:us" ]
2023-09-25T05:14:59Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
A dataset for benchmarking keyphrase extraction and generation techniques from abstracts of English scientific papers. For more details about the dataset please refer the original paper - [http://memray.me/uploads/acl17-keyphrase-generation.pdf](http://memray.me/uploads/acl17-keyphrase-generation.pdf). Data source - [https://github.com/memray/seq2seq-keyphrase](https://github.com/memray/seq2seq-keyphrase) ## Dataset Summary ## Dataset Structure ## Dataset Statistics ### Data Fields - **id**: unique identifier of the document. - **document**: Whitespace separated list of words in the document. - **doc_bio_tags**: BIO tags for each word in the document. B stands for the beginning of a keyphrase and I stands for inside the keyphrase. O stands for outside the keyphrase and represents the word that isn't a part of the keyphrase at all. - **extractive_keyphrases**: List of all the present keyphrases. - **abstractive_keyphrase**: List of all the absent keyphrases. ### Data Splits |Split| No. of datapoints | |--|--| | Train | 530,809 | | Test | 20,000| | Validation | 20,000| ## Usage ### Full Dataset ```python from datasets import load_dataset # get entire dataset dataset = load_dataset("midas/kp20k", "raw") # sample from the train split print("Sample from training dataset split") train_sample = dataset["train"][0] print("Fields in the sample: ", [key for key in train_sample.keys()]) print("Tokenized Document: ", train_sample["document"]) print("Document BIO Tags: ", train_sample["doc_bio_tags"]) print("Extractive/present Keyphrases: ", train_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", train_sample["abstractive_keyphrases"]) print("\n-----------\n") # sample from the validation split print("Sample from validation dataset split") validation_sample = dataset["validation"][0] print("Fields in the sample: ", [key for key in validation_sample.keys()]) print("Tokenized Document: ", validation_sample["document"]) print("Document BIO Tags: ", validation_sample["doc_bio_tags"]) print("Extractive/present Keyphrases: ", validation_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", validation_sample["abstractive_keyphrases"]) print("\n-----------\n") # sample from the test split print("Sample from test dataset split") test_sample = dataset["test"][0] print("Fields in the sample: ", [key for key in test_sample.keys()]) print("Tokenized Document: ", test_sample["document"]) print("Document BIO Tags: ", test_sample["doc_bio_tags"]) print("Extractive/present Keyphrases: ", test_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", test_sample["abstractive_keyphrases"]) print("\n-----------\n") ``` **Output** ```bash ``` ### Keyphrase Extraction ```python from datasets import load_dataset # get the dataset only for keyphrase extraction dataset = load_dataset("midas/kp20k", "extraction") print("Samples for Keyphrase Extraction") # sample from the train split print("Sample from training data split") train_sample = dataset["train"][0] print("Fields in the sample: ", [key for key in train_sample.keys()]) print("Tokenized Document: ", train_sample["document"]) print("Document BIO Tags: ", train_sample["doc_bio_tags"]) print("\n-----------\n") # sample from the validation split print("Sample from validation data split") validation_sample = dataset["validation"][0] print("Fields in the sample: ", [key for key in validation_sample.keys()]) print("Tokenized Document: ", validation_sample["document"]) print("Document BIO Tags: ", validation_sample["doc_bio_tags"]) print("\n-----------\n") # sample from the test split print("Sample from test data split") test_sample = dataset["test"][0] print("Fields in the sample: ", [key for key in test_sample.keys()]) print("Tokenized Document: ", test_sample["document"]) print("Document BIO Tags: ", test_sample["doc_bio_tags"]) print("\n-----------\n") ``` ### Keyphrase Generation ```python # get the dataset only for keyphrase generation dataset = load_dataset("midas/kp20k", "generation") print("Samples for Keyphrase Generation") # sample from the train split print("Sample from training data split") train_sample = dataset["train"][0] print("Fields in the sample: ", [key for key in train_sample.keys()]) print("Tokenized Document: ", train_sample["document"]) print("Extractive/present Keyphrases: ", train_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", train_sample["abstractive_keyphrases"]) print("\n-----------\n") # sample from the validation split print("Sample from validation data split") validation_sample = dataset["validation"][0] print("Fields in the sample: ", [key for key in validation_sample.keys()]) print("Tokenized Document: ", validation_sample["document"]) print("Extractive/present Keyphrases: ", validation_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", validation_sample["abstractive_keyphrases"]) print("\n-----------\n") # sample from the test split print("Sample from test data split") test_sample = dataset["test"][0] print("Fields in the sample: ", [key for key in test_sample.keys()]) print("Tokenized Document: ", test_sample["document"]) print("Extractive/present Keyphrases: ", test_sample["extractive_keyphrases"]) print("Abstractive/absent Keyphrases: ", test_sample["abstractive_keyphrases"]) print("\n-----------\n") ``` ## Citation Information Please cite the works below if you use this dataset in your work. ``` @InProceedings{meng-EtAl:2017:Long, author = {Meng, Rui and Zhao, Sanqiang and Han, Shuguang and He, Daqing and Brusilovsky, Peter and Chi, Yu}, title = {Deep Keyphrase Generation}, booktitle = {Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)}, month = {July}, year = {2017}, address = {Vancouver, Canada}, publisher = {Association for Computational Linguistics}, pages = {582--592}, url = {http://aclweb.org/anthology/P17-1054} } @article{mahata2022ldkp, title={LDKP: A Dataset for Identifying Keyphrases from Long Scientific Documents}, author={Mahata, Debanjan and Agarwal, Navneet and Gautam, Dibya and Kumar, Amardeep and Parekh, Swapnil and Singla, Yaman Kumar and Acharya, Anish and Shah, Rajiv Ratn}, journal={arXiv preprint arXiv:2203.15349}, year={2022} } ``` ## Contributions Thanks to [@debanjanbhucs](https://github.com/debanjanbhucs), [@dibyaaaaax](https://github.com/dibyaaaaax), [@UmaGunturi](https://github.com/UmaGunturi) and [@ad6398](https://github.com/ad6398) for adding this dataset
[ -0.0012600318295881152, -0.39343157410621643, 0.3204619288444519, 0.1090574860572815, -0.2983770966529846, 0.17125485837459564, -0.1902891844511032, -0.0810094103217125, 0.01185319758951664, 0.13846859335899353, -0.5339246988296509, -0.6918407082557678, -0.4897763133049011, 0.6157180070877075, -0.1360502690076828, 0.9638433456420898, -0.11099805682897568, 0.09944754093885422, -0.24163103103637695, -0.1552053987979889, -0.051518749445676804, -0.4889543950557709, -0.371214896440506, -0.24129265546798706, 0.12522079050540924, 0.3127151429653168, 0.27531304955482483, 0.7690642476081848, 0.7343493103981018, 0.3713409900665283, -0.2691294550895691, 0.1369120329618454, 0.06554270535707474, 0.28995031118392944, -0.046886641532182693, -0.6084396839141846, -0.1496802568435669, 0.06639955192804337, 0.7782739400863647, 0.5403490662574768, 0.34726735949516296, 0.05158219113945961, 0.018912745639681816, 0.5535542368888855, -0.657477080821991, 0.37907612323760986, -0.6860314011573792, 0.001452193595468998, -0.449554443359375, -0.2324145883321762, -0.01503795851022005, -0.39996397495269775, 0.03859927877783775, -0.6639927625656128, 0.46382999420166016, -0.11252376437187195, 1.207523226737976, -0.039598166942596436, -0.1643696427345276, -0.6473629474639893, -0.11225472390651703, 0.8386578559875488, -1.084482192993164, 0.02675558440387249, 0.32966142892837524, 0.04520072415471077, -0.20247463881969452, -0.8668473958969116, -0.8207142949104309, -0.11915742605924606, -0.25599753856658936, 0.22514991462230682, 0.3222579061985016, 0.16194814443588257, 0.3653533160686493, 0.5236476063728333, -0.6681850552558899, -0.1894271820783615, -0.6675313115119934, -0.34942013025283813, 0.7106172442436218, 0.224013552069664, 0.15158884227275848, -0.4346592426300049, 0.02232852391898632, -0.6994613409042358, -0.37833553552627563, 0.35638365149497986, 0.005118343513458967, 0.3752017617225647, -0.10499447584152222, 0.4913267493247986, -0.4562777280807495, 0.29952627420425415, -0.029988227412104607, -0.49879884719848633, 0.9410505890846252, -0.7193042039871216, -0.34850308299064636, 0.2499745637178421, 1.0388221740722656, 0.3795144557952881, -0.02524571307003498, -0.10302569717168808, -0.040972303599119186, 0.031042616814374924, -0.3695678412914276, -0.8993479013442993, -0.2968895137310028, 0.4759253263473511, -0.6509034633636475, -0.5718361735343933, 0.06508831679821014, -1.2602957487106323, -0.23559097945690155, 0.3189845085144043, 0.42525964975357056, -0.5745195150375366, 0.1450212299823761, -0.0800967663526535, -0.7451243996620178, 0.3353792130947113, -0.19202473759651184, -0.9333529472351074, 0.13879400491714478, 0.5336401462554932, 1.0235700607299805, -0.01763881929218769, -0.6001022458076477, -0.2386876791715622, 0.02885059081017971, -0.0596369206905365, 0.37809014320373535, -0.486066073179245, -0.37112870812416077, -0.01676854118704796, 0.19199299812316895, -0.48503437638282776, -0.4866603910923004, 0.7746720314025879, -0.1988976001739502, 0.34179601073265076, -0.3340126574039459, -0.4968346059322357, -0.10404831916093826, 0.3036395311355591, -0.44894734025001526, 1.1899038553237915, 0.13372257351875305, -0.7942138314247131, 0.29563042521476746, -0.8702467679977417, -0.6488797068595886, 0.023210369050502777, -0.33526405692100525, -0.7458539605140686, -0.09199894219636917, 0.45112645626068115, 0.5313534736633301, -0.2928859293460846, -0.1542094647884369, -0.39689356088638306, -0.2027943879365921, 0.37220340967178345, -0.06738545745611191, 1.0405691862106323, 0.28123125433921814, -0.6782005429267883, -0.39080461859703064, -1.154329538345337, 0.29739636182785034, 0.37324950098991394, -0.5368672609329224, -0.19949042797088623, -0.09169396013021469, 0.0008447800064459443, 0.2640056014060974, 0.2512231767177582, -0.7159961462020874, 0.4450295567512512, -0.6987729072570801, 0.7494905591011047, 0.6315597295761108, 0.3714112937450409, 0.364362508058548, -0.2895718216896057, 0.3578173518180847, 0.1752341240644455, -0.02332901395857334, -0.3592105209827423, -0.3757348358631134, -0.4318689703941345, -0.4112960696220398, 0.4287259578704834, 0.534771740436554, -0.30709385871887207, 0.8484920263290405, -0.4288007318973541, -0.6995449662208557, -0.6418187022209167, 0.056206583976745605, 0.43234577775001526, 0.5722789168357849, 0.5734414458274841, -0.010986142791807652, -0.7138439416885376, -0.6340718865394592, -0.23201298713684082, -0.14943458139896393, 0.2566251754760742, 0.4241771101951599, 1.1878796815872192, -0.07225358486175537, 0.7728970646858215, -0.6563513875007629, -0.2253522425889969, -0.2480843961238861, 0.14085885882377625, 0.5858228206634521, 0.7326503396034241, 0.4544515311717987, -0.801433801651001, -0.5633770823478699, -0.17348825931549072, -0.8587736487388611, -0.20231212675571442, -0.37736183404922485, 0.15894445776939392, 0.009800306521356106, 0.5611276626586914, -0.7526131868362427, 0.1767655611038208, 0.07869788259267807, -0.3521561026573181, 0.5494916439056396, -0.26602843403816223, 0.2155129760503769, -1.3012237548828125, 0.5060360431671143, -0.42035534977912903, 0.407575398683548, -0.41278979182243347, 0.21548905968666077, 0.19715489447116852, -0.020722417160868645, -0.24020503461360931, 0.5050340890884399, -0.7449631690979004, 0.15296712517738342, 0.03369887173175812, -0.1066182479262352, 0.2953249216079712, 0.4353470802307129, -0.05223239213228226, 0.8050779104232788, 0.6529587507247925, -0.5936203002929688, 0.16454732418060303, 0.48763737082481384, -0.25843554735183716, 0.11307784169912338, -0.8047777414321899, -0.024314215406775475, -0.06905075162649155, 0.3205215334892273, -1.1879568099975586, -0.319855272769928, 0.31740954518318176, -0.6727802753448486, 0.2606731355190277, 0.021600021049380302, -0.5250605940818787, -0.4889872074127197, -0.7150216698646545, 0.18955005705356598, 0.5923567414283752, -0.29835063219070435, 0.2623192071914673, 0.1385202705860138, -0.12685269117355347, -0.6423507928848267, -0.652898907661438, -0.22830317914485931, -0.13835617899894714, -0.5286819338798523, 0.42162418365478516, 0.005876596085727215, -0.01904403418302536, -0.043666306883096695, -0.13160328567028046, -0.10282242298126221, 0.294212281703949, 0.37929365038871765, 0.07275881618261337, -0.15415683388710022, -0.06332454830408096, 0.21414852142333984, 0.06929158419370651, -0.04988078027963638, -0.11428314447402954, 0.5991299748420715, -0.02109460160136223, -0.11321774125099182, -0.33399727940559387, 0.2041345238685608, 0.644668459892273, -0.40791621804237366, 0.7224225997924805, 0.3390759825706482, -0.3091689944267273, 0.1406920850276947, -0.08675656467676163, -0.19882290065288544, -0.4777728319168091, 0.48953014612197876, -0.4615402817726135, -0.37249454855918884, 0.5575689673423767, -0.03713492304086685, 0.30852803587913513, 0.9606494307518005, 0.5350092649459839, -0.22641408443450928, 0.8622093200683594, -0.03326324746012688, -0.19699254631996155, 0.16257260739803314, -0.7095330953598022, 0.04130277782678604, -0.9057843685150146, -0.37381914258003235, -0.9821555018424988, -0.23758484423160553, -0.5702357888221741, -0.16236066818237305, 0.3014772832393646, 0.33067458868026733, -0.14914698898792267, 0.17796196043491364, -0.9290931820869446, 0.4139113426208496, 0.6081627011299133, -0.050072308629751205, -0.12586064636707306, -0.008600997738540173, -0.6190004944801331, 0.012611630372703075, -0.3081044852733612, -0.42550158500671387, 1.5861248970031738, 0.1568184792995453, 0.3719472289085388, -0.3275934159755707, 1.0451639890670776, 0.09134547412395477, -0.23227405548095703, -0.4334486722946167, 0.5532737374305725, 0.0666058138012886, -0.8258206248283386, -0.2934834957122803, -0.28043559193611145, -1.158115267753601, 0.3417632281780243, -0.16870732605457306, -0.7637109756469727, 0.21105940639972687, -0.07558557391166687, -0.3813146650791168, 0.045636970549821854, -0.5559607744216919, 0.8703036904335022, -0.13416412472724915, -0.03516281023621559, 0.11846426874399185, -0.9240069389343262, 0.1544526368379593, -0.044938407838344574, 0.2342999279499054, 0.0616857148706913, 0.06325259804725647, 1.29071044921875, -0.7673730850219727, 0.44138360023498535, -0.39886152744293213, 0.5080190300941467, 0.23574431240558624, -0.41900670528411865, 0.642868161201477, -0.20912684500217438, -0.24591879546642303, -0.04721991717815399, 0.23345620930194855, -0.2547368109226227, -0.3479280471801758, 0.47480762004852295, -0.8450313806533813, -0.214727520942688, -0.80713951587677, -0.36885565519332886, -0.038909513503313065, 0.6814577579498291, 0.6869128346443176, 0.21506819128990173, 0.09205809235572815, 0.6021112203598022, 0.6791592836380005, -0.35060396790504456, 0.6155538558959961, 0.1377330720424652, 0.28096461296081543, -0.6764652729034424, 0.7483465075492859, 0.25013843178749084, 0.045904796570539474, 0.6160553693771362, 0.3350697457790375, -0.4777531921863556, -0.6974143385887146, -0.18400801718235016, 0.24092546105384827, -0.7106882929801941, -0.2858656048774719, -0.8716093897819519, -0.411714643239975, -1.0232211351394653, -0.1764230728149414, -0.08307251334190369, -0.6808181405067444, -0.17591150104999542, -0.10726828873157501, 0.3341091573238373, 0.20948082208633423, -0.21533168852329254, 0.4839582145214081, -0.7950292229652405, 0.3432922065258026, -0.07055418193340302, -0.24200992286205292, -0.07654969394207001, -0.5155236721038818, -0.20243977010250092, 0.02203523740172386, -0.5335285663604736, -1.0459884405136108, 0.4216601550579071, 0.45611700415611267, 0.6809314489364624, 0.35034140944480896, -0.04891160503029823, 0.49155285954475403, -0.30440211296081543, 1.12556791305542, 0.0011892972979694605, -0.7021674513816833, 0.7717710733413696, -0.026408761739730835, 0.22399982810020447, 1.0224708318710327, 0.31381627917289734, -0.48588699102401733, -0.37087616324424744, -0.7198339104652405, -1.2124683856964111, 0.8151553273200989, 0.38288256525993347, -0.29797324538230896, -0.021241962909698486, 0.3444042503833771, -0.03354167193174362, 0.2513699233531952, -0.5806412100791931, -0.5849652290344238, -0.346692830324173, -0.5849587917327881, -0.04438255354762077, 0.014694372192025185, -0.14049479365348816, -0.38209137320518494, 0.9203464388847351, 0.03449113294482231, 0.33200597763061523, 0.553780734539032, -0.22440285980701447, 0.297097384929657, 0.2631146311759949, 0.48057544231414795, 0.25129151344299316, -0.4867756962776184, 0.02687535434961319, 0.03932375833392143, -0.9646875858306885, 0.1549602746963501, 0.32887545228004456, -0.38812193274497986, 0.12739187479019165, 0.6443679332733154, 0.5597180128097534, -0.003957510460168123, -0.5961991548538208, 0.48682859539985657, 0.1423305869102478, -0.653800368309021, -0.062156565487384796, 0.048999473452568054, -0.05586965009570122, 0.07278285920619965, 0.7174981236457825, -0.2171894609928131, 0.16169263422489166, -0.52069491147995, 0.20056964457035065, 0.4014965891838074, 0.24115073680877686, -0.16663111746311188, 0.7005141973495483, -0.08325546234846115, -0.06777194887399673, 0.6496334075927734, -0.012691273353993893, -0.8579539656639099, 0.7913250923156738, 0.41533130407333374, 1.0107648372650146, 0.1551971584558487, 0.02661970816552639, 0.5859445333480835, 0.3428270220756531, 0.1274290680885315, 0.48367390036582947, -0.3442719578742981, -0.5396173596382141, 0.3147549331188202, -0.8083451986312866, -0.1334528774023056, 0.4371570944786072, -0.4705858528614044, -0.2067076563835144, -0.46976155042648315, 0.005414457991719246, 0.5305303335189819, 0.7201389670372009, -0.6255165338516235, 0.42408064007759094, -0.16717904806137085, 0.9367082118988037, -0.963618814945221, 0.6778249144554138, 0.6293638944625854, -0.8211708068847656, -0.8012901544570923, 0.03512800857424736, -0.2154422253370285, -0.8334721922874451, 0.7811115980148315, 0.23620668053627014, 0.5960623025894165, -0.19265612959861755, -0.5809159874916077, -0.9122167229652405, 1.4827743768692017, -0.22763878107070923, -0.2626066207885742, -0.26097002625465393, 0.4322945773601532, 0.5341295003890991, -0.03085954114794731, 0.3015974760055542, 0.6744676828384399, 0.7153573036193848, -0.08644182235002518, -0.6105952262878418, 0.27140313386917114, -0.43754345178604126, -0.18032342195510864, -0.0774499773979187, -0.7346896529197693, 1.0495904684066772, 0.09223844856023788, -0.037455394864082336, 0.1798144280910492, 0.5930784940719604, 0.7216171026229858, 0.4630763530731201, 0.23638400435447693, 0.6048122644424438, 1.012200117111206, -0.08333902806043625, 0.7910351753234863, -0.4123641550540924, 0.30542996525764465, 0.7959430813789368, -0.2622905671596527, 0.6444131135940552, 0.6428714990615845, -0.2898535430431366, 0.3668804466724396, 0.6440912485122681, -0.45929837226867676, 0.8532567024230957, 0.13921184837818146, -0.051726117730140686, 0.29958996176719666, 0.3384702205657959, -0.7293891906738281, 0.4081525504589081, 0.3349616527557373, -0.8812423348426819, -0.4064156711101532, -0.16839618980884552, 0.2532440721988678, -0.24428285658359528, -0.08947860449552536, 0.6156905889511108, -0.07000783830881119, -0.684964120388031, 0.7012933492660522, 0.19084279239177704, 0.6691290140151978, -0.7135754227638245, 0.050985828042030334, -0.21958422660827637, 0.5433507561683655, -0.34450098872184753, -0.8373758792877197, 0.02844609133899212, -0.0913572907447815, -0.26147761940956116, 0.17234767973423004, 0.6636151671409607, -0.2605561316013336, -0.4697238504886627, -0.07359746843576431, 0.09519229084253311, 0.43812841176986694, 0.050916027277708054, -1.072153091430664, -0.037533923983573914, 0.14762046933174133, -0.545573890209198, 0.39382365345954895, 0.4690134823322296, 0.25767046213150024, 0.27762937545776367, 0.7514689564704895, 0.3075385093688965, 0.35339614748954773, -0.3054201900959015, 0.7759963870048523, -0.6650835275650024, -0.3647345304489136, -1.0634371042251587, 0.3575286269187927, -0.4912876486778259, -0.7806805968284607, 0.9769701361656189, 1.0843390226364136, 0.7069414258003235, -0.19398804008960724, 1.299764633178711, -0.35161590576171875, 0.5564996600151062, -0.5556748509407043, 0.7789127826690674, -0.44204840064048767, -0.2838539481163025, -0.32380780577659607, -0.5075766444206238, -0.15696412324905396, 0.7860697507858276, -0.07312408834695816, -0.02760401926934719, 0.7370955348014832, 0.8685807585716248, 0.1355592906475067, -0.12298253178596497, -0.20526030659675598, 0.28759461641311646, 0.5556720495223999, 0.668704628944397, 0.18777509033679962, -1.02861750125885, 0.5506333112716675, -0.5825687646865845, -0.2609459161758423, -0.2984301745891571, -0.567193865776062, -0.876162052154541, -0.8704982995986938, -0.16505491733551025, -0.6589254140853882, 0.09787588566541672, 0.9087077975273132, 0.3208605945110321, -0.9278727769851685, 0.04808646813035011, -0.2900780141353607, 0.09214136004447937, -0.33447590470314026, -0.3206028938293457, 0.9799847602844238, -0.5167301297187805, -0.6095671653747559, 0.31765323877334595, 0.03837863728404045, 0.10371214151382446, 0.16032013297080994, -0.16516005992889404, -0.5321219563484192, 0.13057829439640045, 0.1843850314617157, 0.6240519285202026, -0.2898206114768982, 0.20388220250606537, 0.04903535172343254, -0.4246656894683838, 0.15172931551933289, 0.4145164489746094, -0.45739272236824036, 0.2672765552997589, 0.8173595070838928, 0.6920157670974731, 0.4738579988479614, -0.08705859631299973, 0.2141224443912506, -0.5592418313026428, 0.022211218252778053, 0.16137723624706268, 0.34893643856048584, 0.07310600578784943, -0.29533258080482483, 0.6451236605644226, 0.6820421814918518, -0.5899270176887512, -1.1934973001480103, -0.47529083490371704, -0.9664923548698425, -0.35616230964660645, 1.130948543548584, -0.24567322432994843, -0.6339215636253357, 0.017568154260516167, -0.14033100008964539, 0.5183009505271912, -0.2803457975387573, 0.7143752574920654, 0.727380096912384, 0.09070377796888351, 0.2843691110610962, -0.09608618915081024, 0.8299122452735901, 0.30354148149490356, -0.7820029854774475, 0.03769538924098015, -0.07218702882528305, 0.37741541862487793, 0.44179216027259827, 0.7965226769447327, -0.25093919038772583, 0.27470090985298157, 0.24540875852108002, 0.09377768635749817, -0.15649868547916412, 0.07458421587944031, -0.3632766008377075, 0.22815120220184326, -0.2462809830904007, -0.6730616688728333 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ArtifactAI/arxiv-cs-ml-instruct-tune-50k
ArtifactAI
2023-06-21T13:45:31Z
224
3
arxiv-cs-ml-instruct-tune-50k
[ "task_categories:text-generation", "task_ids:language-modeling", "task_ids:masked-language-modeling", "annotations_creators:no-annotation", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:cc0-1.0", "doi:10.57967/hf/0800", "region:us" ]
2023-06-21T13:45:31Z
2023-06-20T06:31:29.000Z
2023-06-20T06:31:29
--- annotations_creators: - no-annotation language: - en license: - cc0-1.0 multilinguality: - monolingual pretty_name: arxiv-cs-ml-instruct-tune-50k size_categories: - 1M<n<10M source_datasets: - original task_categories: - text-generation task_ids: - language-modeling - masked-language-modeling paperswithcode_id: arxiv-cs-ml-instruct-tune-50k --- # Dataset Card for "arxiv-cs-ml-instruct-tune-50k" ### Dataset Summary The "ArtifactAI/arxiv-cs-ml-instruct-tune-50k" dataset consists of question-answer pairs derived from ArXiv abstracts from the following categories: "cs.CL", "cs.AI", "cs.CV", "cs.HC", "cs.IR", "cs.RO", "cs.NE", "stat.ML". Questions are generated using the [t5-base model](https://huggingface.co/t5-base), while the answers are generated using the [GPT-3.5-turbo model](https://openai.com/chatgpt). ### Languages English ## Dataset Structure ### Data Instances #### train - **Size of downloaded dataset files:** 38.4 MB An example of 'train' looks as follows. ``` { "question": "What is multitask learning?", "answer": "Multitask learning is a technique in machine learning that allows a single model to simultaneously learn multiple related tasks. Instead of training separate models for each task, multitask learning leverages shared patterns across tasks to improve overall performance. This can lead to faster training, better accuracy, and more efficient use of computational resources. For example, a model might be trained to simultaneously predict the sentiment of customer reviews and categorize them by topic. Both tasks require analyzing natural language, so the shared knowledge can help improve performance on both tasks." } ``` ### Data Fields The data fields present in the dataset are as follows: - question: a string feature representing the question. - answer: a string feature representing the answer. #### plain_text - `text`: a `string` feature. ### Data Splits train: 50,063 question answer pairs ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data Question-answer pairs derived from [ArXiv](https://arxiv.org/) abstracts. #### Initial Data Collection and Normalization The "ArtifactAI/arxiv-cs-ml-instruct-tune-50k" dataset consists of question-answer pairs derived from ArXiv abstracts. Questions are generated from ArXiv papers in the following categories: - cs.CL - cs.AI - cs.CV - cs.HC - cs.IR - cs.RO - cs.NE - stat.ML Questions are generated using the [t5-base model](https://huggingface.co/t5-base), while the answers are generated using the [GPT-3.5-turbo model](https://openai.com/chatgpt). ### Annotations The dataset doesn't contain annotations. ### Personal and Sensitive Information None #### Notice policy Should you consider that our data contains material that is owned by you and should therefore not be reproduced here, please: Clearly identify yourself, with detailed contact data such as an address, telephone number or email address at which you can be contacted. Clearly identify the copyrighted work claimed to be infringed. Clearly identify the material that is claimed to be infringing and information reasonably sufficient to allow us to locate the material. And contact us at the following email address: matt at artifactai.com and datasets at huggingface.co #### Take down policy The original authors will comply to legitimate requests by removing the affected sources from the next release of the corpus. Hugging Face will also update this repository accordingly. ### Citation Information ``` @misc{arxiv-cs-ml-instruct-tune-50k, title={arxiv-cs-ml-instruct-tune-50k}, author={Matthew Kenney}, year={2023} } ```
[ -0.5533042550086975, -0.7317591309547424, 0.03856092318892479, 0.16911719739437103, -0.21312128007411957, -0.03887015953660011, -0.27915632724761963, -0.4974767565727234, 0.18900421261787415, 0.44743698835372925, -0.5787166953086853, -0.41989806294441223, -0.49918100237846375, 0.14781688153743744, -0.22736810147762299, 1.4842795133590698, -0.04293684661388397, -0.10478805005550385, -0.44288578629493713, -0.29209867119789124, -0.15794196724891663, -0.4524047374725342, -0.7169780731201172, -0.05521086975932121, 0.6040653586387634, 0.34535861015319824, 0.18977147340774536, 0.6558769345283508, 0.526599109172821, 0.2804220914840698, -0.11229833960533142, 0.04707988351583481, -0.35302552580833435, -0.042023804038763046, 0.2966978847980499, -0.35362449288368225, -0.5226718187332153, 0.09637231379747391, 0.6066262722015381, 0.6420494914054871, -0.0065636225044727325, 0.6906327605247498, 0.349812775850296, 0.7891767621040344, -0.6274213790893555, 0.30717915296554565, -0.36026129126548767, -0.15530277788639069, -0.23952873051166534, -0.10274240374565125, -0.15668416023254395, -0.32524314522743225, 0.061701901257038116, -0.6725780963897705, 0.3467947840690613, -0.06324213743209839, 1.1157397031784058, 0.3984406888484955, -0.21016862988471985, -0.24077634513378143, -0.384420782327652, 0.7561535239219666, -0.5437481999397278, 0.25588274002075195, 0.5344635844230652, 0.09385865926742554, 0.07991442084312439, -0.41985654830932617, -0.6170868873596191, 0.020651191473007202, -0.17612461745738983, 0.22837266325950623, -0.08397280424833298, -0.19410260021686554, 0.574965238571167, 0.5389227271080017, -0.8083446621894836, -0.280070036649704, -0.5432193875312805, -0.20058047771453857, 0.6902122497558594, 0.15458424389362335, 0.13044670224189758, -0.27675482630729675, -0.21297425031661987, -0.37015730142593384, -0.3746774196624756, 0.41802099347114563, 0.5793096423149109, 0.2876749336719513, -0.42446643114089966, 0.5170385837554932, -0.2299942672252655, 0.6448482275009155, 0.2247033268213272, -0.21925784647464752, 0.6500521302223206, -0.6727384328842163, -0.23524658381938934, -0.18570566177368164, 0.823951244354248, 0.19892242550849915, 0.10543789714574814, -0.19063501060009003, 0.22173801064491272, -0.1846911758184433, 0.10578913241624832, -0.7680869102478027, -0.06306920200586319, 0.6192708015441895, -0.5627354383468628, -0.3747881352901459, 0.08729591965675354, -0.7746530771255493, -0.2018909454345703, -0.3770741820335388, 0.1966617852449417, -0.29668790102005005, -0.5870988965034485, -0.03933892771601677, -0.21080535650253296, 0.4568050801753998, 0.005237661302089691, -0.6868306994438171, 0.26796919107437134, 0.5903793573379517, 0.7207144498825073, -0.10751590132713318, -0.313008189201355, -0.3207738995552063, -0.04944851994514465, -0.09032545238733292, 0.7808628678321838, -0.3452761471271515, -0.3251460790634155, -0.164210245013237, 0.3627806305885315, -0.2894381582736969, -0.5391895174980164, 0.54472815990448, -0.32119080424308777, 0.40707719326019287, -0.5761503577232361, -0.4515535831451416, -0.3771950304508209, 0.447886198759079, -0.6726755499839783, 1.3252818584442139, 0.17110367119312286, -0.9338125586509705, 0.4631657302379608, -0.8480084538459778, -0.32047709822654724, -0.13177533447742462, 0.2316916137933731, -0.686109721660614, -0.4504677951335907, 0.21387359499931335, 0.6529549956321716, -0.17030839622020721, 0.02012639492750168, -0.4482696056365967, -0.19461677968502045, 0.08907291293144226, -0.12190039455890656, 0.910426139831543, 0.3833976984024048, -0.2850947678089142, 0.05300304666161537, -0.8598067164421082, -0.04353264346718788, 0.03898652642965317, -0.503198504447937, -0.2753159701824188, -0.30849748849868774, 0.19500625133514404, 0.3160174787044525, 0.25064602494239807, -0.682738184928894, 0.34990498423576355, -0.30183571577072144, 0.2893381714820862, 0.6391489505767822, 0.010578829795122147, 0.2715126574039459, -0.5096557140350342, 0.6333191394805908, 0.2501107454299927, 0.07223616540431976, -0.007832822389900684, -0.5431388020515442, -0.7605829834938049, -0.14098849892616272, 0.3459121286869049, 0.7321118712425232, -0.6358744502067566, 0.21509958803653717, -0.3041728734970093, -0.5904482007026672, -0.7269415855407715, 0.09831874817609787, 0.5148522257804871, 0.7023540139198303, 0.5473681688308716, -0.06918410956859589, -0.4411998987197876, -0.8276273012161255, -0.18244287371635437, 0.04233666881918907, 0.10719810426235199, 0.5773320198059082, 0.7344345450401306, 0.22700048983097076, 0.5102677941322327, -0.5106790661811829, -0.23556990921497345, -0.013350807130336761, 0.30341601371765137, 0.09862865507602692, 0.657264769077301, 0.5657389163970947, -0.8824236392974854, -0.7119178175926208, -0.23418648540973663, -0.8344818949699402, 0.1223367229104042, -0.0806303396821022, -0.17821800708770752, 0.48753058910369873, 0.4814113676548004, -0.5787299871444702, 0.3712490200996399, 0.3723936378955841, -0.35443317890167236, 0.6301922798156738, 0.03843722119927406, 0.4366321563720703, -1.4197958707809448, 0.5790408253669739, 0.07860920578241348, 0.05845186114311218, -0.5569795370101929, -0.14156809449195862, -0.11023465543985367, -0.03907381370663643, -0.4802960157394409, 0.49591970443725586, -0.3876262307167053, 0.0945078507065773, -0.04786795377731323, -0.3177698850631714, -0.17598524689674377, 0.9032653570175171, -0.19217492640018463, 0.9930757880210876, 0.5077847838401794, -0.738122284412384, 0.15844428539276123, 0.4261206388473511, -0.2538083791732788, 0.6705731153488159, -0.7397600412368774, 0.22783511877059937, -0.1547488421201706, 0.26747068762779236, -0.8776320219039917, -0.31627511978149414, 0.43723902106285095, -0.7340958714485168, 0.2511138319969177, -0.27710506319999695, -0.5902588963508606, -0.31809765100479126, -0.24781830608844757, 0.3981163501739502, 0.3346210718154907, -0.2917819321155548, 0.5157458782196045, 0.4119257926940918, 0.004930596798658371, -0.9355419874191284, -0.633528470993042, -0.2568696141242981, -0.4544066786766052, -0.7084494233131409, 0.19487908482551575, -0.2997390031814575, -0.07397923618555069, 0.1762254685163498, 0.10373931378126144, -0.15192842483520508, -0.027106987312436104, 0.28141555190086365, 0.15140576660633087, -0.05544108897447586, 0.2181624174118042, -0.07364632934331894, 0.008739694021642208, -0.0006685958942398429, -0.17585888504981995, 0.4156278073787689, -0.28687483072280884, -0.04793698713183403, -0.34521499276161194, 0.494976669549942, 0.5597755908966064, -0.3723888695240021, 0.8175456523895264, 0.9340253472328186, -0.20656876266002655, 0.197195902466774, -0.5889875888824463, -0.1441168636083603, -0.4058196544647217, 0.2628645598888397, -0.47753283381462097, -0.9638255834579468, 0.7525258660316467, 0.10732503235340118, 0.2525060772895813, 0.7051862478256226, 0.6240434646606445, -0.22616244852542877, 0.9302999973297119, 0.4764013886451721, -0.03629795461893082, 0.3864947259426117, -0.5116381049156189, -0.19388025999069214, -0.9525535106658936, -0.34637001156806946, -0.6880525350570679, -0.2945282757282257, -0.8797746300697327, -0.1555066853761673, 0.4413742423057556, -0.20901818573474884, -0.40557271242141724, 0.34995168447494507, -0.6579474210739136, 0.19411419332027435, 0.7078074216842651, 0.21898096799850464, -0.02757255546748638, -0.06625060737133026, 0.06101899966597557, 0.3410976529121399, -0.5989968180656433, -0.34819504618644714, 1.2789143323898315, 0.22002890706062317, 0.27886033058166504, 0.004930553026497364, 0.5331446528434753, 0.0651155412197113, -0.013196970336139202, -0.6050456166267395, 0.3927561044692993, -0.2206699699163437, -0.7796803712844849, -0.1694500893354416, -0.38863062858581543, -1.0714397430419922, -0.045993730425834656, -0.23968754708766937, -0.6391158699989319, 0.2519771456718445, 0.2191995084285736, -0.47710752487182617, 0.382562518119812, -0.8053834438323975, 1.0144249200820923, 0.050257932394742966, -0.4406418204307556, 0.03561442717909813, -0.871498703956604, 0.37357521057128906, 0.04857446998357773, 0.15030108392238617, -0.05213463678956032, 0.0722912847995758, 1.0465294122695923, -0.35243552923202515, 0.7728235721588135, -0.2501206696033478, 0.2169736623764038, 0.3936294615268707, -0.2692282497882843, 0.41140517592430115, -0.1553298830986023, -0.04907173663377762, 0.2870628535747528, 0.38798341155052185, -0.5747251510620117, -0.44567736983299255, 0.5846756100654602, -0.9506034255027771, -0.32605883479118347, -0.5347400307655334, -0.6670076251029968, -0.14471840858459473, 0.16681216657161713, 0.33507922291755676, 0.2907339334487915, 0.1370837241411209, 0.3593118190765381, 0.7531158328056335, -0.2643028199672699, 0.4621727466583252, 0.2425643652677536, 0.2278876006603241, -0.3086746335029602, 0.9430704116821289, 0.12088460475206375, 0.142074853181839, 0.25772035121917725, 0.11465410143136978, -0.2623659670352936, -0.2564167380332947, -0.4106246829032898, 0.3154873549938202, -0.4987694323062897, -0.07394266873598099, -0.8220235705375671, -0.030365703627467155, -0.5572822093963623, 0.24258524179458618, -0.24762137234210968, -0.3369818329811096, -0.33816346526145935, 0.15711455047130585, 0.6333458423614502, 0.5302958488464355, -0.11504063755273819, 0.07403718680143356, -0.6709291338920593, 0.2305525690317154, 0.12415075302124023, 0.5263177752494812, 0.002270184922963381, -0.49853819608688354, -0.5153406262397766, 0.050447359681129456, -0.32873770594596863, -0.6244238615036011, 0.19999533891677856, 0.12945827841758728, 0.43002673983573914, 0.12060245126485825, 0.0028108477126806974, 0.7081426382064819, -0.2654247283935547, 0.9326741695404053, -0.10080452263355255, -0.4945087432861328, 0.42146992683410645, -0.4813585877418518, 0.5055291652679443, 0.7374438643455505, 0.5875318646430969, -0.46717941761016846, -0.27423346042633057, -0.820470929145813, -0.8026674389839172, 0.744316041469574, 0.2108694165945053, 0.0013782238820567727, 0.3006931245326996, 0.43200254440307617, 0.11881737411022186, 0.33496472239494324, -0.5616134405136108, -0.5610482096672058, -0.32826560735702515, -0.18329983949661255, 0.027798881754279137, -0.04204865172505379, -0.2243855893611908, -0.4866808354854584, 0.9164944291114807, -0.17525748908519745, 0.628777265548706, 0.19702866673469543, 0.11123770475387573, -0.05419616401195526, 0.22656850516796112, 0.7742059826850891, 0.4258103370666504, -0.26599541306495667, -0.21123187243938446, 0.09288191050291061, -0.7324132919311523, -0.16116057336330414, 0.24173018336296082, -0.04724964126944542, -0.29391613602638245, 0.17990665137767792, 0.8077285289764404, -0.24407891929149628, -0.3111928403377533, 0.30335918068885803, -0.09880828857421875, -0.5187432169914246, -0.4654789865016937, -0.034862324595451355, 0.06717097014188766, 0.13765376806259155, 0.1686277985572815, 0.2328636646270752, 0.14842259883880615, -0.28310734033584595, 0.23486222326755524, 0.35881829261779785, -0.33549270033836365, -0.2711871862411499, 0.6602449417114258, -0.07728420943021774, 0.005907888524234295, 0.621024489402771, -0.19228558242321014, -0.3326463997364044, 0.7223581671714783, 0.03535368666052818, 0.8581420183181763, 0.07094869017601013, 0.03703702986240387, 0.7373784780502319, 0.10049014538526535, 0.16049474477767944, 0.47829654812812805, -0.09647312015295029, -0.6156225800514221, -0.5445788502693176, -0.6530653834342957, -0.24917952716350555, 0.5573175549507141, -0.804789662361145, 0.2351856380701065, -0.28167039155960083, 0.002965472871437669, 0.17064708471298218, 0.14300087094306946, -0.7208144664764404, 0.26770180463790894, -0.0769408568739891, 0.6698439121246338, -0.8170549869537354, 0.7852376103401184, 0.9063066244125366, -0.8918114304542542, -1.0601568222045898, -0.05589734762907028, 0.0052347565069794655, -0.5763277411460876, 0.5372406840324402, 0.04240672290325165, 0.19853787124156952, -0.02915181778371334, -0.9291362762451172, -0.7712132334709167, 0.9576281905174255, 0.18892838060855865, -0.10661575943231583, 0.1083851307630539, 0.18072286248207092, 0.4507060945034027, -0.15987424552440643, 0.3077440559864044, 0.46081411838531494, 0.4468328058719635, 0.20579461753368378, -1.0455149412155151, 0.0919777899980545, -0.6767375469207764, -0.3960241675376892, 0.1815464049577713, -0.9096111059188843, 0.8537099957466125, -0.07566215097904205, 0.1678142100572586, -0.07499390840530396, 0.5323724150657654, 0.34164127707481384, 0.28323623538017273, 0.5758083462715149, 0.7812471985816956, 0.6868799328804016, -0.2080565094947815, 1.1503254175186157, -0.520958662033081, 0.44406113028526306, 0.918591320514679, 0.3418600559234619, 0.7431947588920593, 0.549150288105011, -0.23972606658935547, 0.5347350835800171, 1.0585699081420898, -0.3562367856502533, 0.43371811509132385, 0.08217917382717133, -0.20591506361961365, -0.2547079920768738, -0.1604911834001541, -0.5538647174835205, 0.5657983422279358, 0.16053949296474457, -0.2542581558227539, 0.06218739226460457, 0.13326016068458557, 0.33852002024650574, -0.2741856873035431, -0.18481327593326569, 0.9295263290405273, -0.07902984321117401, -0.8725908994674683, 0.7944669723510742, -0.272975355386734, 0.7938485145568848, -0.5376338958740234, -0.1285957545042038, -0.15325066447257996, 0.1724620759487152, -0.35505738854408264, -0.689367413520813, 0.4469141364097595, -0.003959063906222582, -0.45570290088653564, -0.16324526071548462, 0.5405672192573547, -0.47605758905410767, -0.6005909442901611, -0.09173476696014404, 0.38574880361557007, 0.556165337562561, -0.04438059777021408, -1.1480351686477661, -0.24365085363388062, -0.03759064897894859, -0.4011436402797699, 0.4667309522628784, 0.16581405699253082, 0.057882778346538544, 0.6032971143722534, 0.7488098740577698, -0.01953969895839691, -0.07599048316478729, -0.22927016019821167, 0.9157871603965759, -0.42787864804267883, -0.5470722317695618, -0.5422158241271973, 0.7564569115638733, -0.06699121743440628, -0.5228032469749451, 0.7640312314033508, 0.7575204968452454, 1.004384994506836, -0.1276225596666336, 0.9954991340637207, -0.38253065943717957, 0.7934768795967102, -0.2801648676395416, 0.8315087556838989, -0.9745704531669617, 0.030664460733532906, -0.44847530126571655, -0.5503195524215698, -0.10712388902902603, 0.35383009910583496, -0.20857273042201996, 0.36133748292922974, 0.7239498496055603, 0.8240570425987244, -0.02876458503305912, 0.08273114264011383, -0.10063709318637848, 0.10117559134960175, 0.04044036194682121, 0.5257871150970459, 0.21616829931735992, -0.7436094284057617, 0.7415995597839355, -0.5608322620391846, -0.16308808326721191, 0.15355122089385986, -0.731040358543396, -0.9168368577957153, -0.934792697429657, -0.5483813881874084, -0.707056999206543, -0.17552153766155243, 0.7752029299736023, 0.6793742179870605, -1.0599395036697388, -0.32120266556739807, 0.10424269735813141, 0.026326779276132584, -0.4930153787136078, -0.25558340549468994, 0.7448720932006836, -0.30153998732566833, -0.7711313366889954, -0.0851023942232132, -0.22299861907958984, -0.00689304992556572, -0.15487056970596313, 0.05845286697149277, -0.5695973634719849, -0.28855496644973755, 0.47596120834350586, 0.5053414702415466, -0.5209435224533081, -0.1492631882429123, 0.379119873046875, -0.005876913201063871, 0.20840738713741302, 0.5664523839950562, -0.5437086224555969, 0.2677357792854309, 0.43809449672698975, 0.5525926351547241, 0.5917904376983643, 0.08906776458024979, 0.14795446395874023, -0.7982820272445679, 0.14904490113258362, -0.010132174007594585, 0.1154995933175087, 0.25287777185440063, -0.6055901050567627, 0.5733705163002014, 0.48538991808891296, -0.7594544291496277, -0.7063796520233154, -0.1808076798915863, -1.1895378828048706, -0.1746937483549118, 1.3434256315231323, -0.11569169908761978, -0.29753577709198, -0.2573137879371643, -0.12077093124389648, 0.5211021304130554, -0.5248463153839111, 0.6445570588111877, 0.9698812365531921, -0.3796297609806061, -0.30250343680381775, -0.6970421671867371, 0.8256044387817383, 0.34725138545036316, -0.8753575086593628, -0.04540329799056053, 0.15459688007831573, 0.42460182309150696, 0.17454777657985687, 0.4687930941581726, -0.11701793968677521, 0.22885864973068237, -0.10523875057697296, 0.27758702635765076, -0.3152579963207245, 0.07058051973581314, -0.162509948015213, 0.3797919452190399, -0.3240891993045807, -0.3660862445831299 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
lighteval/drop_harness
lighteval
2023-07-27T11:58:52Z
224
0
null
[ "region:us" ]
2023-07-27T11:58:52Z
2023-07-27T11:58:48.000Z
2023-07-27T11:58:48
--- dataset_info: features: - name: section_id dtype: string - name: passage dtype: string - name: question dtype: string - name: query_id dtype: string - name: answer struct: - name: number dtype: string - name: date struct: - name: day dtype: string - name: month dtype: string - name: year dtype: string - name: spans sequence: string - name: worker_id dtype: string - name: hit_id dtype: string - name: validated_answers sequence: - name: number dtype: string - name: date struct: - name: day dtype: string - name: month dtype: string - name: year dtype: string - name: spans sequence: string - name: worker_id dtype: string - name: hit_id dtype: string splits: - name: train num_bytes: 108858121 num_examples: 77409 - name: validation num_bytes: 12560739 num_examples: 9536 download_size: 12003555 dataset_size: 121418860 --- # Dataset Card for "drop_harness" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.9188503623008728, -0.08838900923728943, -0.0893482118844986, 0.21517404913902283, -0.12293651700019836, -0.07258757203817368, 0.3779354989528656, -0.22964297235012054, 0.659777045249939, 0.32996121048927307, -1.1888827085494995, -0.6128214597702026, -0.5157987475395203, -0.15619967877864838, -0.681903600692749, 1.386066198348999, -0.09380016475915909, -0.16707134246826172, -0.3830708861351013, -0.15485838055610657, -0.6305595636367798, -0.5840386152267456, -0.5007283091545105, -0.8300061821937561, 1.1525646448135376, 0.6032000184059143, 0.20503105223178864, 0.8078784942626953, 0.9969131946563721, 0.07694683969020844, -0.20954322814941406, -0.22844956815242767, -0.46402353048324585, -0.39255428314208984, -0.23318427801132202, -0.6037111878395081, -0.9323092103004456, 0.39457008242607117, 0.649597704410553, 0.5460279583930969, -0.5174422264099121, 0.7700228095054626, -0.23218797147274017, 0.5399904847145081, -0.7354484796524048, 0.18148083984851837, -0.18440653383731842, 0.008544866926968098, -0.8921539187431335, -0.2080424278974533, 0.07079958915710449, -0.3008154630661011, -0.006731501314789057, -1.0162290334701538, 0.20284372568130493, 0.11965508759021759, 0.9192409515380859, 0.11928073316812515, -0.2191195785999298, 0.15496663749217987, -0.2815857529640198, 0.12911725044250488, 0.02630235068500042, 0.2529258131980896, 0.9276629090309143, 0.23473800718784332, 0.16560767590999603, -0.698417603969574, -0.26991206407546997, 0.12137188762426376, -0.258620947599411, -0.010720224119722843, 0.5491918325424194, 0.04885735362768173, 0.7114315629005432, 0.8492763638496399, -0.3343261182308197, -0.16428975760936737, -0.8583710789680481, -0.19051116704940796, 0.7425018548965454, 0.2986144721508026, 0.350241482257843, -0.017304444685578346, -0.18498119711875916, -0.21577188372612, -0.9351953864097595, -0.09918419271707535, 0.33667734265327454, 0.16779638826847076, -1.3424845933914185, 0.48495906591415405, -0.16543318331241608, 0.28197187185287476, 0.303498774766922, 0.7034580111503601, 0.7739599347114563, -0.1082371398806572, -0.26388391852378845, -0.16789180040359497, 0.09823610633611679, 0.5141721963882446, -0.028920594602823257, 0.0819300040602684, 0.0895991250872612, -0.07990137487649918, 0.250988245010376, -1.1520047187805176, -1.0452663898468018, 0.05497514456510544, -0.8634128570556641, -0.49874627590179443, 0.28837916254997253, -0.7335370182991028, -0.8120947480201721, -0.2943526804447174, 0.10075928270816803, 0.09567878395318985, -0.7645571827888489, -0.15131737291812897, -0.9973066449165344, 0.7704175114631653, 0.042450856417417526, -0.9400056004524231, 0.27425020933151245, 0.716453492641449, 0.6863576769828796, 0.03167194500565529, -0.32224270701408386, -0.8575834035873413, 0.4650028944015503, -0.024620389565825462, 0.8258266448974609, -0.5530341863632202, -0.4072715938091278, 0.30494770407676697, 0.6731945276260376, -0.03710979223251343, -0.29612118005752563, 0.8500257730484009, -0.4032021164894104, -0.3119856119155884, -0.9403603672981262, -0.607201874256134, -0.0804615318775177, 0.25989454984664917, -1.0118529796600342, 0.9353238940238953, 0.2752148509025574, -0.9840314984321594, 0.6611760854721069, -1.197095274925232, -0.673267126083374, 0.7000952363014221, -0.05311303213238716, -0.4094703495502472, 0.2054089605808258, -0.09839332103729248, 0.3681130111217499, -0.11682441085577011, 0.10583751648664474, -0.9521188139915466, -0.2088068127632141, -0.052159298211336136, 0.3992787003517151, 0.9977156519889832, 0.08908488601446152, 0.23529113829135895, -0.12901486456394196, -1.083368182182312, -0.14159676432609558, 0.16423794627189636, -0.21244649589061737, -0.44757571816444397, -0.20281186699867249, 0.6528565883636475, -0.12373077124357224, 0.021007932722568512, -0.5042635798454285, 0.5551427006721497, -0.017958005890250206, 0.0700826421380043, 0.6727546453475952, -0.007871159352362156, 0.5969415307044983, -0.46427077054977417, 0.5689290761947632, -0.14724355936050415, 0.4692886471748352, 0.0800410732626915, -0.09981837868690491, -0.7261897921562195, -0.193082794547081, 0.4855140745639801, 0.5807228088378906, -0.5713385343551636, 0.5880361795425415, 0.42254188656806946, -0.6504459977149963, -0.11558912694454193, -0.1661539077758789, 0.2276424765586853, 0.3722277283668518, 0.23482252657413483, -0.41263020038604736, -0.7598124742507935, -0.6563621163368225, 0.3351733386516571, -0.13523060083389282, -0.02665584534406662, 0.043004054576158524, 0.8160279393196106, -0.4381619989871979, 0.7310336828231812, -0.8087254762649536, -0.32255035638809204, -0.009675788693130016, -0.12915953993797302, 0.13668476045131683, 1.0370949506759644, 1.148195743560791, -0.5176103115081787, 0.12406210601329803, -0.32866573333740234, -0.6900041103363037, -0.1791570633649826, 0.3958609998226166, -0.8013197779655457, -0.2758026421070099, -0.009392376989126205, -0.6440114378929138, 0.8986766934394836, 0.7360438108444214, -0.49012240767478943, 0.30557140707969666, 0.08893052488565445, 0.182928666472435, -1.3856579065322876, 0.6804677248001099, -0.14195863902568817, 0.06161906570196152, -0.47528237104415894, 0.15524841845035553, 0.28901275992393494, -0.10477490723133087, -0.10544106364250183, 0.5748962759971619, -0.4785797894001007, 0.04435332119464874, 0.03846607357263565, -0.2212572693824768, 0.04854774475097656, -0.043782759457826614, 0.2908097207546234, 0.21806716918945312, 0.9107208251953125, -0.5117312669754028, 0.9563248753547668, 0.9634557962417603, 0.08667173236608505, 1.101550817489624, -0.8649876713752747, 0.18457679450511932, -0.15280701220035553, 0.4149285554885864, -0.49804556369781494, -0.9303742051124573, 0.4554038941860199, -0.07021589577198029, 0.5501033663749695, -0.8462675213813782, -0.29876095056533813, -0.7569898366928101, -0.7373722791671753, 0.7838724851608276, 0.36738669872283936, -0.9315793514251709, -0.0875776931643486, 0.9421459436416626, 0.056292738765478134, -0.17731286585330963, -1.156616449356079, -0.07450936734676361, -0.4538169205188751, -0.09932707250118256, 0.3977946639060974, -0.6138171553611755, 0.18140734732151031, -0.46546611189842224, 0.3793669641017914, -0.32218360900878906, 0.040788136422634125, 0.48611584305763245, 0.36239784955978394, 0.03459041193127632, 0.7891020178794861, 0.2919575870037079, -0.637479841709137, 0.30398350954055786, 0.03388661891222, 0.2932225167751312, 0.18621236085891724, -0.19247324764728546, -0.5693181157112122, 0.46717891097068787, -0.0883939117193222, -0.24946093559265137, 0.7126019597053528, 1.0053608417510986, -0.6883083581924438, -0.22198547422885895, -0.41731077432632446, -0.379714697599411, -0.5271850228309631, 0.020146409049630165, -0.3384758532047272, -0.598552942276001, 0.6013904809951782, 0.0037842190358787775, 0.23588618636131287, 0.7831552624702454, 0.5041601061820984, -0.2015414834022522, 0.3701430857181549, 0.9692361354827881, -0.2908981740474701, 0.5932930111885071, -0.617154061794281, -0.35905399918556213, -0.7185099124908447, -0.5930453538894653, -0.6832408308982849, -0.57496577501297, -0.6491757035255432, -0.26870959997177124, -0.16101565957069397, 0.17934677004814148, -0.18788893520832062, 0.5692383050918579, -0.8041291832923889, 0.416538804769516, 0.6723914742469788, 0.07308582216501236, -0.07138025015592575, -0.10279564559459686, 0.4654445946216583, 0.24041518568992615, -0.7297364473342896, 0.05000103637576103, 1.1232784986495972, 0.5324190855026245, 1.1860312223434448, -0.2911577820777893, 0.9466657042503357, 0.40747278928756714, 0.4775394797325134, -0.2587990164756775, 0.16988734900951385, 0.22159750759601593, -0.7294461727142334, -0.03281024843454361, -0.11719398945569992, -0.687282145023346, -0.6965394616127014, -0.38795068860054016, -0.11464951932430267, 0.6590755581855774, 0.7782080769538879, 0.025567689910531044, 0.2848576307296753, -0.49052613973617554, 0.894088625907898, 0.16217035055160522, 0.13445362448692322, -0.25886765122413635, -0.8100424408912659, 0.24104849994182587, 0.3549635708332062, -0.05135498195886612, -0.35736745595932007, -0.22952283918857574, 1.0222928524017334, -0.8297497630119324, 0.865112841129303, -0.5220456719398499, -0.1525125503540039, 0.17695480585098267, -0.2545885145664215, 0.5077948570251465, 0.4968547224998474, -0.19706322252750397, 0.30793794989585876, 0.1695050448179245, -0.3970065712928772, -0.15718711912631989, 0.6693961024284363, -0.5865265130996704, 0.5764467716217041, -0.2357204109430313, -0.48641401529312134, 0.09601669013500214, 0.056619588285684586, 0.6100537180900574, 1.0694142580032349, -0.21079693734645844, -0.06086349114775658, 0.5797384977340698, 0.22104626893997192, 0.6168484091758728, 0.29280030727386475, -0.141942098736763, -0.7050629258155823, 0.8520452380180359, 0.2901073396205902, -0.38333597779273987, 0.2999621033668518, 0.24224884808063507, -0.42141029238700867, -0.5982730984687805, -0.8103315830230713, 0.2972308397293091, -0.49055925011634827, -0.58815997838974, -0.2526494860649109, -0.4407360851764679, -0.35497817397117615, -0.35464388132095337, -0.23494639992713928, -0.6759606599807739, -0.5402672290802002, -0.7922919988632202, 1.2709357738494873, 0.7204228639602661, -0.814828634262085, 0.7988720536231995, -0.8542245030403137, 0.4343119263648987, 0.17109227180480957, 1.226806879043579, -0.3872896134853363, -0.4699263274669647, -0.5414630174636841, -0.09578604996204376, 0.006928340531885624, -0.5357863306999207, -0.06833487004041672, 0.19004042446613312, 0.6253655552864075, 0.3302980363368988, 0.19343112409114838, 0.8509642481803894, -0.06264220178127289, 0.5086166858673096, 0.5026734471321106, -0.6870248317718506, 0.9596464037895203, -0.5619869232177734, 0.09699144959449768, 0.9221287369728088, 0.305044561624527, -0.47298672795295715, 0.030527334660291672, -0.867542028427124, -0.7432906627655029, 0.8872247338294983, 0.07682079821825027, 0.04433692991733551, 0.022328315302729607, 0.49092620611190796, 0.03101319819688797, 0.5290465950965881, -0.7516587376594543, -0.8718051910400391, 0.16544008255004883, -0.14512842893600464, 0.2339872419834137, -0.38857415318489075, -0.38018909096717834, -0.6772659420967102, 0.6412269473075867, 0.00788954459130764, 0.06626016646623611, -0.17140893638134003, 0.07243355363607407, -0.1664944589138031, -0.2838248610496521, 0.317710816860199, 0.7453651428222656, -0.3051641583442688, -0.08996745944023132, 0.13894997537136078, -0.4637569785118103, -0.30155161023139954, 0.5407292246818542, -0.2778840959072113, -0.18937864899635315, 0.5545355081558228, 0.5937623381614685, -0.33401983976364136, -0.11194590479135513, 0.3393119275569916, -0.02389519475400448, -0.5964688658714294, -0.28657931089401245, 0.023152165114879608, 0.11761034280061722, 0.01981482282280922, 0.010004480369389057, -0.027472035959362984, 0.46002325415611267, -0.13702379167079926, 0.5227397680282593, 0.1488669067621231, -0.7407532334327698, -0.4900582730770111, 0.49097660183906555, 1.0213749408721924, -0.45106735825538635, 0.9510137438774109, 0.006126908585429192, -0.17602141201496124, 0.7899879813194275, 0.19274412095546722, 0.9507607817649841, -0.3606196641921997, 0.5108763575553894, 0.40847069025039673, 0.32202160358428955, 0.07073581963777542, 0.5495165586471558, -0.49612095952033997, -0.27221864461898804, -0.11021081358194351, -0.582991898059845, -0.20492562651634216, 0.08180955797433853, -1.103878140449524, 0.4209405779838562, -0.44446516036987305, -0.15311254560947418, -0.21989916265010834, 0.044318076223134995, -0.759111762046814, 0.05026886239647865, 0.20192867517471313, 1.372148871421814, -1.0062768459320068, 0.6321842074394226, 0.9197263121604919, -0.4128696620464325, -0.8139134645462036, -0.1860962212085724, 0.005926275160163641, -0.5544588565826416, -0.009140223264694214, 0.38649654388427734, 0.3377118408679962, -0.31130918860435486, -0.8447494506835938, -0.7794793844223022, 1.0640478134155273, 0.5191087126731873, -0.6690567135810852, 0.2647766172885895, -0.2249792069196701, 0.19592541456222534, -0.17140500247478485, 0.4519215226173401, 0.7433761358261108, 0.829015851020813, 0.25012901425361633, -0.8092306852340698, -0.04284803569316864, -0.6128678917884827, -0.04972698539495468, 0.5116704702377319, -0.5943969488143921, 0.403749942779541, -0.061287619173526764, -0.01393512450158596, 0.10092470049858093, 0.44251498579978943, 0.17505671083927155, 0.7236324548721313, 0.3909454047679901, 0.6738036870956421, 0.8208586573600769, -0.17820407450199127, 1.0379670858383179, 0.012870009988546371, 0.7147099375724792, 1.1026816368103027, -0.17144040763378143, 0.4187055826187134, 0.3919645845890045, -0.038478951901197433, 0.19634930789470673, 0.8492570519447327, -0.40656718611717224, 0.380837619304657, 0.600644052028656, -0.17061957716941833, -0.33440691232681274, -0.11031591892242432, -0.9357625246047974, 0.07251708954572678, 0.19603125751018524, -0.4663892090320587, 0.11503435671329498, 0.04683741554617882, 0.157048761844635, -0.4422154724597931, -0.6567816138267517, 0.8245314955711365, 0.017042620107531548, -0.23904958367347717, 0.29592224955558777, -0.331015944480896, 0.39732101559638977, -0.5867806673049927, -0.4835221469402313, -0.27734488248825073, 0.23570190370082855, -0.8053618669509888, -0.861010730266571, 0.7043007612228394, -0.2642848789691925, -0.49051907658576965, -0.21711380779743195, 0.841404914855957, -0.5094816088676453, -0.9215690493583679, 0.3900006115436554, 0.2556091845035553, 0.11188103258609772, 0.2475917786359787, -0.9109873175621033, 0.321181982755661, -0.480259507894516, -0.20196861028671265, 0.18184109032154083, -0.04129625856876373, 0.15735849738121033, 0.7465206980705261, 0.4502555727958679, -0.06684526056051254, -0.14604829251766205, 0.5537653565406799, 1.0825895071029663, -0.7286331057548523, -0.5351049900054932, -0.5886598825454712, 0.6273205876350403, -0.5702979564666748, -0.5632835030555725, 0.3772132992744446, 0.8886359930038452, 0.8457322716712952, -0.2835999131202698, 0.8464921116828918, -0.752197265625, 0.6615572571754456, -0.17580601572990417, 0.8551763892173767, -0.5186710953712463, -0.18820902705192566, -0.4085255265235901, -0.4617152512073517, -0.4515455365180969, 0.6417633891105652, 0.3052982985973358, -0.06419982761144638, 0.6179923415184021, 0.9399089813232422, -0.2722793519496918, 0.1577584594488144, -0.09205366671085358, -0.10723061859607697, 0.07136061042547226, 0.3239883780479431, 0.7700188755989075, -0.4520495533943176, 0.29650959372520447, -0.34045150876045227, -0.6156435012817383, -0.05058247968554497, -0.9435951113700867, -1.121721863746643, -0.5686150789260864, -0.8067939877510071, -0.188480406999588, 0.16335703432559967, 0.7849932312965393, 1.2920273542404175, -0.8537859320640564, -0.5271526575088501, -0.06112651899456978, 0.4888003170490265, -0.08053239434957504, -0.12671570479869843, 0.4765854477882385, 0.19361095130443573, -0.3669251799583435, -0.2565739154815674, 0.1270415186882019, 0.033366959542036057, 0.03161237761378288, -0.028248082846403122, -0.1592617928981781, -0.247707337141037, 0.46842044591903687, 0.41323792934417725, 0.06602106243371964, -0.4345909655094147, -0.7464547753334045, 0.07904694974422455, 0.024060150608420372, 1.0640701055526733, -0.6195794939994812, -0.1460416167974472, 0.7945929169654846, 0.3595280051231384, 0.6210848689079285, 0.022322725504636765, 0.6722332835197449, -0.7606745958328247, 0.1542050987482071, -0.3294368088245392, 0.28265348076820374, 0.016227642074227333, -0.358837753534317, 1.0821086168289185, 0.6561933159828186, -0.4289267361164093, -0.748773455619812, 0.14379750192165375, -1.3775204420089722, 0.6527604460716248, 0.8140460252761841, -0.004055106081068516, -0.3667393922805786, -0.13876990973949432, -0.4341413080692291, 0.24162225425243378, -0.6714913845062256, 0.3984771966934204, 0.2395031601190567, 0.21238207817077637, -0.49515315890312195, -0.14901313185691833, 0.8315226435661316, -0.41800472140312195, -1.5427515506744385, 0.43390804529190063, 0.6734597682952881, 0.3018918037414551, 0.013313742354512215, 0.6735406517982483, 0.10025191307067871, 0.5302296876907349, 0.14714857935905457, 0.5421330332756042, -0.24311628937721252, -0.4068623483181, -0.4676257073879242, 0.17965587973594666, -0.240329772233963, -0.8193327188491821 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
atmallen/qm_grader_first_1.0e
atmallen
2023-11-16T18:26:55Z
224
0
null
[ "region:us" ]
2023-11-16T18:26:55Z
2023-11-16T03:18:48.000Z
2023-11-16T03:18:48
--- 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: alice_label dtype: bool - name: bob_label dtype: bool - name: difficulty dtype: int64 - name: statement dtype: string - name: choices sequence: string - name: character dtype: string - name: label dtype: class_label: names: '0': 'False' '1': 'True' splits: - name: train num_bytes: 35940088 num_examples: 400000 - name: validation num_bytes: 3602836 num_examples: 40000 - name: test num_bytes: 3604340 num_examples: 40000 download_size: 0 dataset_size: 43147264 --- # Dataset Card for "qm_grader_first_1.0e" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.5651177763938904, -0.209421768784523, 0.06104307621717453, 0.19660858809947968, -0.22058957815170288, -0.05542892590165138, 0.659786581993103, 0.21640314161777496, 0.6013805270195007, 0.36934787034988403, -0.8725327849388123, -1.0707664489746094, -0.6901231408119202, -0.501815915107727, -0.3418286144733429, 1.2780811786651611, 0.2645917236804962, 0.08743932098150253, -0.6633828282356262, -0.1556532084941864, -0.3809448480606079, -0.7519671320915222, -0.9844179153442383, -0.43686139583587646, 0.9541263580322266, 0.9801613688468933, 0.4892602562904358, 0.4244813323020935, 0.6073909997940063, 0.044218018651008606, -0.14670316874980927, -0.6417551636695862, -0.4546879827976227, -0.1593140810728073, -0.34015899896621704, -0.5658007860183716, -1.2242316007614136, 0.27395978569984436, 0.8235047459602356, 0.42752137780189514, -0.2601196765899658, 0.7929503917694092, -0.2911044955253601, 1.111769676208496, -0.26497241854667664, 0.46845123171806335, 0.07685355842113495, 0.30323922634124756, -0.5200594067573547, -0.1181623786687851, 0.07406115531921387, -0.6887426376342773, 0.014491897076368332, -1.2388099431991577, 0.16215893626213074, -0.09142177551984787, 0.8613048791885376, 0.24060717225074768, -0.24056056141853333, -0.002804179908707738, -0.31715133786201477, 0.17190352082252502, -0.24206501245498657, 0.3456365466117859, 0.8905758857727051, 0.5412623286247253, 0.05285145714879036, -0.9320980310440063, -0.43102988600730896, 0.29789862036705017, 0.20238107442855835, 0.21065977215766907, 0.007955139502882957, 0.11182328313589096, 0.5187835693359375, 0.9469679594039917, -0.67066890001297, -0.24271845817565918, -0.7009784579277039, -0.2667373716831207, 0.6577941179275513, 0.39004769921302795, 0.27880650758743286, 0.09153123944997787, -0.3089842200279236, -0.5144523978233337, -0.415876567363739, 0.3579236567020416, 0.2173166424036026, 0.26227453351020813, -1.0052424669265747, 0.5445064306259155, -0.21733838319778442, 0.11677053570747375, 0.10546086728572845, 0.31522098183631897, 0.46370288729667664, -0.4176997244358063, -0.04328852891921997, 0.030154110863804817, 0.34827184677124023, 0.3998008966445923, 0.21230976283550262, 0.25551268458366394, 0.02816806361079216, 0.07598018646240234, -0.015604685992002487, -1.368354082107544, -1.047399878501892, 0.331367164850235, -0.5293605923652649, -0.23332612216472626, 0.3047901690006256, -0.7642929553985596, -0.47258061170578003, -0.37313467264175415, 0.4375874698162079, -0.12247570604085922, -0.5186525583267212, 0.023749427869915962, -0.4065230190753937, 0.47418782114982605, 0.16989204287528992, -0.6742620468139648, 0.4071829319000244, 0.5862206816673279, 0.47524648904800415, 0.2781721353530884, -0.2637985944747925, -0.49493885040283203, -0.3546772599220276, -0.14755040407180786, 0.7925006747245789, -0.2530057430267334, -0.5646045804023743, -0.05216820165514946, 0.38518697023391724, 0.11048924922943115, -0.48675018548965454, 1.1053234338760376, -0.5742141008377075, 0.1673164665699005, -0.5601207613945007, -0.807439923286438, 0.055688172578811646, 0.41530659794807434, -0.9630213379859924, 1.3534889221191406, 0.7072269320487976, -0.8233340382575989, 0.6014859676361084, -0.8692303895950317, -0.19175806641578674, 0.607692539691925, 0.08262329548597336, -0.5836146473884583, -0.06880323588848114, 0.09322270005941391, 0.32759326696395874, 0.012515132315456867, 0.142225980758667, -0.5580772161483765, -0.19908957183361053, 0.010552781634032726, 0.15129059553146362, 1.1892096996307373, 0.15722137689590454, 0.7851108908653259, 0.1395440399646759, -0.9933996796607971, 0.18666377663612366, 0.33019277453422546, -0.2452870011329651, -0.22801658511161804, -0.2828724980354309, 0.24883104860782623, 0.16673806309700012, 0.43094873428344727, -0.35319995880126953, 0.5912690162658691, 0.1256045699119568, -0.30456846952438354, 0.6673700213432312, 0.18673495948314667, 0.41247206926345825, -0.8607352375984192, 0.8279696702957153, 0.30360954999923706, 0.5448543429374695, -0.2561971843242645, -0.21159906685352325, -0.5076403617858887, -0.2244209349155426, 0.7040858268737793, 0.7629265785217285, -0.582404613494873, 0.3639257252216339, -0.09623625129461288, -0.6808694005012512, -0.5694705247879028, 0.017276261001825333, 0.2965811491012573, 0.20069456100463867, 0.38800206780433655, -0.3282565176486969, -0.7024816274642944, -0.7557525634765625, 0.290510892868042, -0.4042930603027344, -0.030932443216443062, 0.009499938227236271, 0.5229753255844116, -0.04459809511899948, 0.9074410796165466, -0.7156538963317871, -0.30345213413238525, 0.2716907560825348, -0.29288166761398315, 0.21508333086967468, 1.0679633617401123, 0.7589498162269592, -0.5406643152236938, -0.33434760570526123, -0.7247205376625061, -0.4757224917411804, 0.018594179302453995, 0.4230550229549408, -0.584297776222229, -0.3735751509666443, 0.19728130102157593, -0.14674726128578186, 0.5669254064559937, 0.6478508114814758, -0.943166196346283, 0.19570480287075043, 0.17759011685848236, 0.16873681545257568, -1.2904433012008667, 0.1251946985721588, 0.16486726701259613, -0.1284734010696411, -0.5862478017807007, 0.16383571922779083, 0.06251378357410431, -0.0676470696926117, -0.293304443359375, 0.9646422863006592, -0.09551186859607697, 0.3498260974884033, 0.08735205233097076, -0.056710269302129745, 0.04399527609348297, 0.20393048226833344, -0.052094653248786926, 0.6192082166671753, 1.1015981435775757, -0.5166813731193542, 0.4193267822265625, 0.7429159283638, -0.017977256327867508, 0.858143150806427, -0.7758200168609619, 0.23834176361560822, -0.21816213428974152, -0.014160096645355225, -0.6996017694473267, -0.3141973316669464, 0.6066688895225525, -0.7362167835235596, 0.3514406085014343, -0.5134304165840149, -0.6545295715332031, -0.5766724944114685, -0.4613756239414215, 0.7588722705841064, 0.5167748332023621, -0.8381997346878052, -0.00025900808395817876, 0.7303460240364075, -0.36203810572624207, 0.1794072389602661, -0.5475218296051025, -0.14615146815776825, -0.01442604511976242, -0.22454623878002167, 0.19493168592453003, -0.5666093826293945, 0.14419710636138916, -0.3483274579048157, 0.06983109563589096, -0.3906354010105133, -0.0414297915995121, 0.42531973123550415, 0.3749330937862396, -0.3746965229511261, 0.3807567059993744, 0.22817468643188477, -0.551642119884491, 0.420985609292984, 0.05300093814730644, 0.14426402747631073, 0.09643051028251648, -0.05925818532705307, -0.38535773754119873, 0.20665892958641052, 0.3732184171676636, -0.21099960803985596, 0.40985363721847534, 0.6372113227844238, -0.7361330986022949, -0.18443119525909424, -0.2631186246871948, -0.23177817463874817, -0.43079856038093567, 0.20186297595500946, -0.33553409576416016, -0.7096160650253296, 0.5668342709541321, 0.03097223863005638, -0.20442147552967072, 0.42265254259109497, 0.28827857971191406, 0.16269923746585846, 0.8055445551872253, 0.7470868229866028, -0.36586424708366394, 0.6515808701515198, -0.28214994072914124, -0.2802291512489319, -0.7972121238708496, -0.44956833124160767, -0.6023917198181152, -0.26666659116744995, -0.6873065233230591, -0.34294718503952026, 0.090900719165802, 0.4162200093269348, -0.4631885290145874, 0.05686824768781662, -0.8292182087898254, 0.435178279876709, 0.8321005702018738, 0.5114958882331848, 0.1026858314871788, -0.02128554694354534, 0.29185014963150024, 0.1704147756099701, -0.9901987910270691, -0.6122896671295166, 1.3092917203903198, 0.7262195944786072, 0.6677133440971375, 0.00926104187965393, 0.9085557460784912, 0.11019834131002426, 0.6091159582138062, -0.6401183605194092, 0.6082712411880493, -0.180464506149292, -0.9070180058479309, -0.31918540596961975, -0.04989274963736534, -0.7578164935112, -0.2413664013147354, -0.47464796900749207, -0.09032411873340607, 0.3228859305381775, 0.24023790657520294, -0.13286517560482025, 0.09231176972389221, -0.5067826509475708, 1.275451421737671, 0.22709158062934875, -0.3150290250778198, 0.16920551657676697, -0.6118232607841492, 0.1090097427368164, 0.2778902053833008, 0.008104627020657063, -0.31477275490760803, 0.03699062764644623, 1.0686465501785278, -0.43900415301322937, 0.7894348502159119, -0.8162649273872375, -0.10752640664577484, 0.4988367259502411, -0.06293740123510361, 0.028539495542645454, 0.6457977890968323, -0.16723041236400604, -0.005985252559185028, 0.6445690393447876, -1.0026953220367432, -0.11241500824689865, 0.4046882390975952, -0.7535635232925415, 0.0697442963719368, -0.5118942856788635, -0.5186181664466858, 0.06659089028835297, 0.27871257066726685, 0.21381159126758575, 0.5998756289482117, -0.5909356474876404, -0.3011705279350281, 0.8541946411132812, 0.2708719074726105, 0.014305842109024525, 0.5395984649658203, -0.7802746295928955, -0.5119983553886414, 1.1573868989944458, 0.1809161901473999, -0.3640228807926178, 0.11778455227613449, 0.4243791699409485, -0.25888505578041077, -0.5027315616607666, -0.531070351600647, -0.0913706123828888, -0.6701282858848572, -0.3057994544506073, -0.17470303177833557, -0.3202687203884125, -0.37374284863471985, -0.14154385030269623, -0.25761809945106506, -0.754745602607727, -0.6289327144622803, -0.49986156821250916, 0.7837379574775696, 0.5003804564476013, -0.4585082232952118, 0.5041950941085815, -1.0867042541503906, 0.39974501729011536, 0.30483654141426086, 0.9486484527587891, -0.22429387271404266, -0.6848269701004028, -0.49777764081954956, -0.05873841047286987, -0.23988090455532074, -0.5469968318939209, -0.26704010367393494, 0.1280021071434021, 0.5837368965148926, 0.331077516078949, 0.12047316879034042, 0.25709035992622375, 0.1436300128698349, 0.6949978470802307, 0.11191249638795853, -0.62156081199646, 0.797918975353241, -0.45015332102775574, 0.6668835282325745, 1.0447605848312378, 0.5509651303291321, -0.36013662815093994, -0.027478747069835663, -0.7854176759719849, -0.7926779389381409, 0.5375414490699768, -0.12126174569129944, 0.14135126769542694, -0.05712250620126724, 0.6176741123199463, 0.1916564404964447, 0.23816531896591187, -0.807841420173645, -0.9154064059257507, -0.2518885135650635, -0.44944167137145996, 0.12144948542118073, -0.4496915638446808, -0.031151598319411278, -0.9536973237991333, 0.858643651008606, -0.04187802970409393, 0.03364604339003563, 0.236491858959198, 0.3096173107624054, -0.23275808990001678, 0.17110644280910492, 0.36384105682373047, 0.44243526458740234, -0.4901553690433502, -0.06506098806858063, -0.07772211730480194, -0.7706793546676636, 0.12479537725448608, 0.6794412732124329, -0.19071783125400543, -0.21650679409503937, 0.3344341814517975, 0.6131766438484192, -0.2482232302427292, -0.16165350377559662, 0.5033721923828125, -0.17928272485733032, -0.39364326000213623, -0.5692870616912842, 0.18209406733512878, -0.15360184013843536, 0.2725326418876648, 0.2340078502893448, -0.5612679123878479, 0.19491027295589447, -0.42122572660446167, 0.497978150844574, 0.06475663185119629, -0.6227853894233704, -0.5363327264785767, 0.5129266977310181, 0.16969957947731018, -0.38494667410850525, 0.8075272440910339, -0.59423828125, -0.5513346791267395, 0.8427016139030457, 0.3155939280986786, 0.7272984385490417, -0.5266194343566895, 0.5936122536659241, 1.0120432376861572, 0.2137368768453598, 0.20533639192581177, 0.9756119251251221, -0.14063367247581482, -0.5949187278747559, 0.06155802682042122, -0.4403478503227234, -0.5276241302490234, -0.3332269787788391, -1.0195258855819702, 0.2973676323890686, -0.8124462366104126, -0.2578144967556, -0.10430192202329636, 0.3476259112358093, -0.8324357271194458, 0.521668016910553, 0.33632466197013855, 1.38202702999115, -0.8519207835197449, 0.9523730278015137, 1.184746503829956, -0.5011680722236633, -0.7865914106369019, -0.32873207330703735, -0.14620351791381836, -0.6016567349433899, 0.43203336000442505, -0.13555245101451874, 0.45931053161621094, 0.23083201050758362, -0.8646725416183472, -0.6453660726547241, 1.2085615396499634, -0.1953546702861786, -0.7639077305793762, 0.20620779693126678, 0.09047111868858337, 0.40033113956451416, -0.28290802240371704, 0.31384333968162537, 0.39982667565345764, 0.6984272003173828, 0.08029719442129135, -0.4704194962978363, 0.10631048679351807, -0.5468712449073792, -0.20158562064170837, 0.5027241110801697, -0.7536341547966003, 0.6215770840644836, -0.22619637846946716, -0.34733179211616516, 0.062472082674503326, 0.8021868467330933, 0.3527187407016754, 0.9725832939147949, 0.2906881272792816, 0.892515242099762, 0.8383567333221436, -0.2035963088274002, 0.7940279245376587, -0.3367905616760254, 0.5068206787109375, 1.3306434154510498, -0.06221522390842438, 0.4171033799648285, 0.4969783127307892, -0.48350241780281067, 0.21304389834403992, 0.7963652610778809, -0.391300231218338, 0.4490693211555481, 0.43909183144569397, -0.28258755803108215, -0.2570805847644806, -0.0549064464867115, -0.6553704142570496, -0.16196076571941376, 0.18474271893501282, -0.13655950129032135, -0.031888626515865326, 0.004734272602945566, 0.04569818079471588, -0.04268316552042961, -0.81111741065979, 0.8663411736488342, 0.07599201798439026, -0.18297868967056274, 0.1617228239774704, -0.29426392912864685, 0.35924988985061646, -0.4135362505912781, -0.42932090163230896, -0.2955029606819153, 0.07677002251148224, -0.4863470196723938, -1.1043524742126465, 0.3970660865306854, -0.58078932762146, -0.6590772271156311, 0.1500285118818283, 0.7507743239402771, -0.5257700681686401, -0.8042507171630859, 0.0830383151769638, 0.5183674097061157, 0.05050753429532051, 0.07249042391777039, -0.9764525890350342, 0.1435292661190033, -0.3407672643661499, -0.29355528950691223, 0.2843552827835083, 0.2763761281967163, 0.1762220859527588, 0.6782557964324951, 0.5023561716079712, -0.21103468537330627, 0.03972284868359566, 0.16202020645141602, 1.0600531101226807, -0.7539467215538025, -0.43434247374534607, -0.42452630400657654, 0.7654802799224854, 0.05896729230880737, -0.8294020891189575, 0.6102783679962158, 1.190977692604065, 1.1379622220993042, -0.09769631177186966, 0.5881283283233643, -0.1485099494457245, 0.8554196953773499, -0.31796762347221375, 0.7272571921348572, -0.452506422996521, -0.16365915536880493, -0.026568355038762093, -0.5946868062019348, -0.4207099974155426, 0.6601284146308899, 0.20435088872909546, 0.03860107436776161, 0.5480190515518188, 0.9222509264945984, -0.039092134684324265, 0.2323184609413147, 0.09829942882061005, 0.07933787256479263, 0.08217533677816391, 0.4250470995903015, 0.5855696201324463, -0.9598291516304016, -0.06256309896707535, -0.5554230213165283, -0.40404415130615234, 0.2379913032054901, -0.7886233329772949, -1.1007972955703735, -0.6239560842514038, -0.9297624826431274, -0.6456968188285828, 0.028290489688515663, 1.1251574754714966, 0.849884569644928, -0.9954840540885925, -0.07395816594362259, 0.03752036392688751, 0.3601715862751007, 0.19506138563156128, -0.2390836626291275, 0.4519003927707672, 0.2587212324142456, -0.5811654925346375, -0.15079805254936218, -0.32243412733078003, 0.43944868445396423, -0.0834631398320198, -0.1268964558839798, -0.07938458025455475, 0.08336802572011948, 0.52641361951828, 0.47783124446868896, 0.09601899981498718, -0.13917812705039978, -0.33925503492355347, -0.24414321780204773, 0.36036625504493713, 0.7890392541885376, -0.6913109421730042, 0.1695544421672821, 0.506729781627655, 0.14965742826461792, 0.6027901768684387, 0.04521084576845169, -0.059092603623867035, -0.5229379534721375, -0.013017086312174797, 0.17948393523693085, 0.10993844270706177, 0.07278747111558914, -0.21871230006217957, 0.7410502433776855, 0.11523663252592087, -0.7172911167144775, -0.6218300461769104, -0.08332991600036621, -1.2859158515930176, 0.26937949657440186, 0.4453508257865906, -0.014945941045880318, -0.3228796720504761, 0.12060563266277313, -0.48682817816734314, 0.36924633383750916, -0.6017764806747437, 0.39606961607933044, 0.7240894436836243, 0.4050537943840027, -0.465785413980484, -0.35096487402915955, 0.3937353193759918, 0.05521363392472267, -1.2221670150756836, -0.011735604144632816, 0.4168504774570465, 0.2126954048871994, -0.1605592966079712, 1.0012651681900024, -0.39637160301208496, 0.3086087703704834, 0.4288591146469116, 0.6336391568183899, -0.31157156825065613, -0.36553943157196045, -0.6389246582984924, 0.05189503729343414, 0.3273228108882904, -0.43910256028175354 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
kuroneko5943/amz20
kuroneko5943
2023-01-10T16:02:20Z
223
0
null
[ "task_categories:text-classification", "task_ids:sentiment-classification", "annotations_creators:found", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:extended|amazon_us_reviews", "language:en", "license:apache-2.0", "amazon", "region:us" ]
2023-01-10T16:02:20Z
2023-01-10T12:02:41.000Z
2023-01-10T12:02:41
--- annotations_creators: - found language: - en language_creators: - found license: - apache-2.0 multilinguality: - monolingual pretty_name: amz20 size_categories: - 1K<n<10K source_datasets: - extended|amazon_us_reviews tags: - amazon task_categories: - text-classification task_ids: - sentiment-classification ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
PatrickHaller/wikitext-18-de
PatrickHaller
2023-06-27T20:29:39Z
223
0
null
[ "task_categories:text-generation", "size_categories:1K<n<10K", "language:de", "license:cc-by-sa-3.0", "region:us" ]
2023-06-27T20:29:39Z
2023-06-27T20:07:00.000Z
2023-06-27T20:07:00
--- dataset_info: features: - name: title dtype: string - name: text dtype: string - name: url dtype: string splits: - name: train num_bytes: 138186439 num_examples: 2759 download_size: 79585645 dataset_size: 138186439 license: cc-by-sa-3.0 task_categories: - text-generation language: - de pretty_name: wikitext german size_categories: - 1K<n<10K --- # Dataset Card for "wikitext-18-de" ## Dataset Summary The dataset is a german variation of the [wikitext](https://huggingface.co/datasets/wikitext) dataset and is a collection of ca. 18 million tokens. It follows the same approach by extracting from the "Good and Featured" articles on Wikipedia, but for [German articles](https://en.wikipedia.org/wiki/Wikipedia:Featured_articles_in_other_languages/German). The dataset is available under the Creative Commons Attribution-ShareAlike License. The stated German version contains 2759 articles (visited: 27.06.23). Even though the smalle size of articles, compared to wikitext, the dataset contains 18 million (whitespace) seperated tokens. Probably due to longer articles lengths and language. The dataset retains the original case, punctuation, numbers and newlines, excluding images, tables and other data. [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.809280276298523, -0.5456429123878479, 0.05387411266565323, 0.13483312726020813, -0.5713080763816833, -0.025653084740042686, -0.1643999218940735, -0.5759999752044678, 0.6609851717948914, 0.3356277346611023, -0.7029411196708679, -0.6335065960884094, -0.6040962338447571, 0.2585262358188629, -0.3892346918582916, 1.4709722995758057, -0.07737423479557037, -0.005037309136241674, -0.2057722806930542, -0.3320332467556, 0.0072113508358597755, -0.1943616271018982, -0.3707742691040039, -0.2761734426021576, 0.9281633496284485, 0.5959671139717102, 0.7055547833442688, 0.6006851196289062, 0.6330788731575012, 0.1357995718717575, -0.06135549396276474, 0.020876098424196243, -0.5796064734458923, -0.45850157737731934, -0.29770931601524353, -0.17667415738105774, -0.3145366609096527, 0.18953937292099, 0.4479924142360687, 0.5599938631057739, -0.06502042710781097, 0.4198894798755646, -0.06593206524848938, 0.6515911221504211, -0.27501174807548523, 0.1913573443889618, -0.3029749393463135, 0.04705397039651871, -0.5682889223098755, 0.1952824741601944, -0.10119257122278214, -0.07217627763748169, -0.038875117897987366, -0.8042089939117432, 0.32008999586105347, -0.06115097180008888, 1.0061010122299194, -0.061593372374773026, -0.468422532081604, 0.04428855702280998, -0.3829818069934845, 0.2935740053653717, -0.6740351319313049, 0.3695946931838989, 0.5231887698173523, 0.14990679919719696, -0.2073957771062851, -0.7542195320129395, -0.7295718193054199, 0.2374885231256485, -0.05144527927041054, 0.03864125907421112, -0.35404378175735474, -0.331320583820343, 0.5658619999885559, 0.5111457109451294, -0.7227901816368103, 0.30953243374824524, -0.7359400987625122, -0.2943856120109558, 0.9867101907730103, 0.034233398735523224, 0.2566903829574585, -0.5574027895927429, -0.32247012853622437, -0.3144122064113617, -0.6401075124740601, -0.2934039235115051, 0.587043285369873, 0.10067673027515411, -0.7112029790878296, 0.7326195240020752, -0.3634844422340393, 0.4347456395626068, -0.006947017274796963, 0.03173870965838432, 0.8614121675491333, -0.29783716797828674, 0.011686552315950394, -0.11935969442129135, 0.9798803329467773, 0.5865053534507751, 0.2625730335712433, -0.2919817268848419, -0.0891399085521698, -0.12847478687763214, 0.1069754958152771, -0.7787377834320068, -0.4515828490257263, 0.08942726254463196, -0.7425169348716736, -0.38424447178840637, 0.661609947681427, -0.8700748085975647, -0.2282758504152298, -0.2698765993118286, 0.31761208176612854, -0.2997429668903351, -0.5381932258605957, -0.011541804298758507, -0.5817175507545471, 0.24895647168159485, 0.07643180340528488, -0.7578295469284058, 0.3681555688381195, 0.713083028793335, 0.6783033609390259, -0.5140928030014038, -0.3322240114212036, -0.2853247821331024, -0.0035601798444986343, -0.3227818012237549, 0.9402208924293518, -0.3937698304653168, -0.48939239978790283, -0.019830910488963127, 0.46644899249076843, 0.02775520086288452, -0.5432015061378479, 0.7930999994277954, -0.41962742805480957, 0.22238238155841827, -0.5497555136680603, -0.6305440068244934, 0.01142251305282116, 0.23872075974941254, -1.375584363937378, 1.5105012655258179, 0.24079883098602295, -1.1675187349319458, 0.7110912799835205, -0.869876503944397, -0.4791773557662964, 0.34957242012023926, -0.2495705783367157, -0.2701689898967743, 0.36486807465553284, 0.13860318064689636, 0.3142837584018707, -0.08687861263751984, 0.19171921908855438, -0.38115057349205017, -0.3762519955635071, 0.12098020315170288, -0.40346407890319824, 0.9659697413444519, 0.2978988289833069, -0.2489793598651886, -0.29345792531967163, -1.271458625793457, -0.29819509387016296, 0.18359246850013733, -0.39175644516944885, -0.39364612102508545, -0.4013317823410034, 0.5357853770256042, 0.5259366035461426, 0.28585880994796753, -0.9844333529472351, 0.29074588418006897, -0.18101619184017181, 0.08481906354427338, 0.7224727272987366, 0.11825484782457352, 0.22476796805858612, -0.37674349546432495, 0.47485408186912537, 0.428264856338501, 0.2535054385662079, 0.0027937758713960648, -0.4614206552505493, -0.5472189784049988, -0.18830245733261108, 0.5162851810455322, 0.4889412224292755, -0.8328867554664612, 0.7571718692779541, -0.5516719818115234, -0.7085004448890686, -0.3813113272190094, 0.11225055903196335, -0.10031035542488098, 0.42385998368263245, 0.14869309961795807, -0.12253327667713165, -0.2904191315174103, -1.1276088953018188, 0.13871626555919647, -0.08282427489757538, -0.004437901079654694, 0.24055765569210052, 1.0542434453964233, -0.14499060809612274, 0.8763672709465027, -0.4534757137298584, -0.08695148676633835, -0.0006791708874516189, 0.13634459674358368, 0.4208623468875885, 0.5717109441757202, 0.6994739174842834, -1.1183483600616455, -0.5339527726173401, -0.03267771378159523, -0.5949918031692505, 0.0403817854821682, -0.06665061414241791, -0.4766691327095032, 0.19949360191822052, 0.3651363253593445, -0.855963945388794, 0.5877777338027954, 0.5414780974388123, -0.797455370426178, 0.5442540049552917, -0.11184246838092804, 0.04303351044654846, -1.3312244415283203, 0.4618113934993744, 0.021478207781910896, -0.08782036602497101, -0.1606559306383133, -0.08088516443967819, 0.17754890024662018, -0.17085301876068115, -0.5151737928390503, 0.8137604594230652, -0.2822205424308777, 0.20774562656879425, -0.03798729553818703, -0.22061856091022491, 0.17011836171150208, 0.38951820135116577, -0.11424348503351212, 0.6445901393890381, 0.5078005790710449, -0.2065618634223938, 0.5858709812164307, 0.5781130194664001, -0.3885614275932312, 0.8996245265007019, -0.4963296055793762, -0.04862307384610176, -0.18913090229034424, 0.2646319568157196, -0.46808168292045593, -0.3454197347164154, 0.30844902992248535, -0.32661303877830505, 0.3053795099258423, 0.21435275673866272, -1.0311075448989868, -0.5422751307487488, -0.6061761975288391, 0.111647829413414, 0.32210466265678406, -0.6463502049446106, 0.45442312955856323, 0.3834192156791687, -0.10935889929533005, -0.4952734708786011, -0.7805429100990295, 0.2431744635105133, -0.268183171749115, -0.3437621593475342, 0.5385717153549194, -0.2757229506969452, -0.03757081925868988, 0.4869168996810913, -0.15729005634784698, 0.17695653438568115, -0.11941836029291153, 0.33480459451675415, 0.19282056391239166, 0.12773793935775757, 0.28878727555274963, 0.03894568979740143, -0.326021671295166, -0.025136280804872513, -0.07255609333515167, 0.4759269952774048, 0.157697394490242, -0.19337810575962067, -0.40050071477890015, 0.5094791054725647, 0.4139464795589447, -0.054134026169776917, 0.8854472041130066, 1.0123722553253174, -0.49895167350769043, -0.049716509878635406, -0.5478513240814209, -0.23317702114582062, -0.42423567175865173, 0.2360338270664215, -0.4250367283821106, -0.6785910129547119, 0.8432019352912903, 0.2635612487792969, 0.24427513778209686, 1.1614642143249512, 0.27919313311576843, -0.25223079323768616, 0.8097545504570007, 0.6494347453117371, -0.6148232221603394, 0.4543198049068451, -0.3033835291862488, -0.19823093712329865, -0.37657612562179565, -0.562587320804596, -0.6448729038238525, -0.5787911415100098, -0.7641517519950867, -0.16095295548439026, -0.12234362959861755, -0.05964643135666847, -0.2917866110801697, 0.4480103850364685, -0.4358815550804138, 0.4218865633010864, 0.7745257616043091, 0.20853744447231293, 0.1901942640542984, 0.47230109572410583, -0.0887003093957901, -0.05754389241337776, -0.614149272441864, -0.3652212917804718, 1.0078216791152954, 0.26789551973342896, 0.6370304226875305, -0.017790311947464943, 0.9179280400276184, 0.41696709394454956, 0.187418594956398, -0.46234312653541565, 0.4072621464729309, -0.3306273818016052, -0.9416750073432922, -0.13845011591911316, -0.5817227363586426, -0.8404372334480286, -0.4019007086753845, -0.2726905941963196, -0.8041725754737854, 0.349047988653183, -0.2760925590991974, 0.24274179339408875, 0.43120473623275757, -0.648949384689331, 0.9799875020980835, -0.0018836020026355982, -0.2068096250295639, -0.2179790437221527, -0.6283727288246155, -0.18248695135116577, -0.27178287506103516, 0.21643806993961334, -0.24863950908184052, -0.05103674530982971, 1.380911946296692, -0.5333545804023743, 0.8064699172973633, -0.32484906911849976, -0.16459627449512482, 0.16046975553035736, -0.3916461765766144, 0.5952936410903931, 0.17957407236099243, -0.2401045560836792, 0.36033016443252563, 0.3293158710002899, -0.556138813495636, -0.36799904704093933, 0.7234121561050415, -0.7521676421165466, -0.08826341480016708, -0.3441031575202942, -0.39432379603385925, -0.0914040133357048, 0.4962717592716217, 0.6395029425621033, 0.6045357584953308, -0.4438067078590393, 0.4202125072479248, 0.5465273857116699, -0.24259400367736816, 0.4351220428943634, 0.4836534261703491, -0.04252449795603752, -0.4914027750492096, 0.9572351574897766, 0.4265657365322113, -0.26131460070610046, 0.21216511726379395, 0.10010652989149094, -0.35790926218032837, -0.2986000180244446, -0.6141659021377563, 0.42213842272758484, -0.6796693801879883, -0.3363627791404724, -0.6459438800811768, -0.22786231338977814, -0.19088071584701538, -0.0075321379117667675, -0.013886731117963791, -0.7033293843269348, -0.4140464663505554, -0.6981473565101624, 0.9424941539764404, 0.7313641309738159, -0.5162966847419739, 0.28439024090766907, -0.6442645192146301, 0.43100181221961975, -0.10717146843671799, 0.7862110733985901, -0.21955810487270355, -0.20658330619335175, -0.4653569161891937, -0.09487006068229675, -0.08168978244066238, -0.7701283693313599, 0.011305122636258602, 0.16599978506565094, 0.7097381353378296, 0.4864314794540405, 0.1847446709871292, 0.4205808639526367, -0.3659874200820923, 0.8506485223770142, 0.3362143933773041, -0.4294392168521881, 0.13304750621318817, -0.4802613854408264, 0.42989301681518555, 0.9852254390716553, 0.3943953216075897, -0.6183756589889526, -0.3230523467063904, -1.2297775745391846, -0.8669559955596924, 0.6155552864074707, 0.07639443874359131, 0.5712816715240479, -0.2866549789905548, 0.4264830946922302, 0.4816555678844452, 0.09346921741962433, -0.7209305763244629, -0.5055354237556458, -0.09400273859500885, -0.624797523021698, -0.007031284272670746, -0.33983442187309265, -0.24154292047023773, -0.511203408241272, 0.9086947441101074, -0.10535942018032074, 0.1795850247144699, -0.10035151988267899, 0.0373222641646862, 0.03262142837047577, -0.12308099865913391, 0.1924397498369217, 0.6007348299026489, -0.10786539316177368, 0.04839017614722252, 0.14264902472496033, -0.9343975186347961, -0.2226395606994629, 0.5598071813583374, -0.2835546135902405, 0.20444148778915405, 0.38852107524871826, 0.7821004390716553, 0.185421422123909, -0.6756150126457214, 0.5981413722038269, -0.05829412117600441, -0.4419620633125305, -0.3150341212749481, -0.09657688438892365, 0.22063541412353516, 0.08150976896286011, 0.6838921308517456, -0.2452172040939331, 0.22573398053646088, -0.05581602454185486, 0.7858883142471313, 0.2748192250728607, -0.3755568265914917, -0.46382206678390503, 0.40598469972610474, 0.17401134967803955, -0.03642494976520538, 0.7816212177276611, -0.07765818387269974, -0.18718615174293518, 0.6497676372528076, 0.2775348424911499, 0.5258402824401855, 0.4376070201396942, 0.570845365524292, 0.5003370642662048, 0.24271249771118164, 0.11111418157815933, 0.6186655759811401, -0.15406125783920288, -0.6013216972351074, -0.2946733236312866, -0.737084686756134, -0.029968660324811935, 0.34223535656929016, -0.9137389659881592, 0.3905172646045685, -0.14040271937847137, -0.1848572939634323, 0.0884467288851738, 0.4265564978122711, -1.0255852937698364, 0.3220011293888092, 0.08147039264440536, 1.6479932069778442, -1.1405894756317139, 0.7625108957290649, 0.5970056653022766, -0.4110335111618042, -0.7742881774902344, -0.2198925018310547, 0.011542871594429016, -0.5957490801811218, 0.2228574901819229, 0.3111778497695923, 0.6397696137428284, -0.08818287402391434, -0.6516501307487488, -0.70781409740448, 0.7923234105110168, 0.19692164659500122, -0.511922299861908, 0.09394818544387817, 0.23644806444644928, 0.4201698303222656, -0.05438195914030075, -0.12155507504940033, 0.5780500769615173, 0.6857085824012756, -0.05816503241658211, -0.8134123086929321, -0.13068674504756927, -0.8589996099472046, -0.40281420946121216, 0.1902763694524765, -0.5492197275161743, 0.26504087448120117, 0.20810630917549133, -0.1148565262556076, -0.10312210023403168, 0.4960680902004242, 0.09192994236946106, 0.10300829261541367, 0.4679641127586365, 0.9418619871139526, 0.7332230806350708, -0.23285196721553802, 0.8998112678527832, -0.22298191487789154, 0.40506619215011597, 0.8547464609146118, 0.005700256209820509, 0.6691280007362366, 0.8072477579116821, -0.05601908266544342, 0.5792186856269836, 0.8311601877212524, -0.5544655323028564, 0.5410065650939941, -0.1272106021642685, -0.11373189091682434, 0.10030674934387207, -0.20795133709907532, -0.44738125801086426, 0.3325323164463043, 0.09583387523889542, -0.376625657081604, -0.3860456943511963, 0.22745460271835327, 0.2888675034046173, -0.3634861707687378, -0.12034586071968079, 1.1296319961547852, 0.030486878007650375, -0.32905974984169006, -0.021372033283114433, -0.15715108811855316, 0.6105862855911255, -0.6047534346580505, -0.08633001893758774, -0.2250199019908905, -0.05463949590921402, -0.3678576350212097, -1.0370734930038452, 0.382497638463974, -0.008459914475679398, -0.27894771099090576, -0.013151423074305058, 0.6816898584365845, -0.20892176032066345, -1.0134592056274414, 0.1096259281039238, 0.5664982199668884, 0.25475144386291504, 0.37361839413642883, -0.890315592288971, 0.15861636400222778, -0.13296017050743103, -0.6964576840400696, 0.30223244428634644, 0.631028413772583, -0.18183237314224243, 0.19239120185375214, 0.6269293427467346, 0.1310308873653412, -0.17400214076042175, 0.135457381606102, 1.0395339727401733, -0.5660672187805176, -0.7618032097816467, -0.7706330418586731, 0.7488541603088379, -0.5699024796485901, -0.6371000409126282, 0.8808448910713196, 1.0204960107803345, 0.9195587038993835, 0.02905099093914032, 0.8163250684738159, -0.5283865928649902, 0.376322865486145, -0.21114419400691986, 0.727495014667511, -0.6313371658325195, -0.3874577581882477, -0.4318702220916748, -0.8423620462417603, -0.3123184144496918, 0.5458047389984131, -0.02357538416981697, -0.03973107412457466, 0.2667871117591858, 0.6875084042549133, -0.2656170129776001, 0.26380056142807007, 0.06668491661548615, -0.1305546909570694, 0.1649683266878128, 0.0034400534350425005, 0.2854557931423187, -0.39412519335746765, 0.44948703050613403, -0.4758627116680145, -0.24349047243595123, 0.01026698388159275, -1.0876939296722412, -0.7641865611076355, -0.8278071284294128, -0.36179226636886597, -0.3911759853363037, -0.34958311915397644, 0.8813374638557434, 0.860327959060669, -0.8492929935455322, 0.18554618954658508, 0.10596126317977905, -0.13284119963645935, -0.1609019935131073, -0.21609912812709808, 0.8120463490486145, 0.2711743414402008, -0.48622629046440125, 0.04738488420844078, -0.002843286842107773, 0.10593343526124954, -0.06297245621681213, -0.22232705354690552, 0.04475095868110657, -0.07353709638118744, 0.36694398522377014, 0.24324189126491547, -0.05675307288765907, -0.28482764959335327, -0.0013072866713628173, -0.06047742813825607, 0.11227105557918549, 0.6658868193626404, -0.5456265807151794, 0.32750457525253296, 0.544097363948822, 0.533431887626648, 0.9645922183990479, -0.1194520890712738, 0.35668718814849854, -0.8242543935775757, 0.45197075605392456, -0.0825987458229065, 0.45082777738571167, 0.2771156430244446, -0.3572710156440735, 0.6581282615661621, 0.32693541049957275, -0.16730837523937225, -0.7328872680664062, -0.09103470295667648, -1.1641706228256226, -0.23276428878307343, 1.0882353782653809, 0.21058596670627594, -0.3715555965900421, -0.123410165309906, -0.278213232755661, 0.12466411292552948, -0.598456859588623, 0.6113088130950928, 0.926432728767395, 0.2483094334602356, -0.27661266922950745, -0.5162004828453064, 0.47205331921577454, -0.1918065845966339, -0.9078846573829651, 0.049386121332645416, 0.550381064414978, 0.4580538868904114, 0.18605132400989532, 0.5414395928382874, -0.4986647069454193, 0.397757351398468, 0.14259281754493713, 0.1141490712761879, -0.26040855050086975, -0.3175564408302307, -0.16063061356544495, 0.03146497160196304, -0.23220425844192505, -0.012109068222343922 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
CJWeiss/ukabs
CJWeiss
2023-10-26T20:44:41Z
223
0
null
[ "region:us" ]
2023-10-26T20:44:41Z
2023-10-26T20:44:33.000Z
2023-10-26T20:44:33
--- dataset_info: features: - name: judgement dtype: string - name: summary dtype: string splits: - name: train num_bytes: 54887059 num_examples: 595 - name: test num_bytes: 9859833 num_examples: 119 - name: valid num_bytes: 6659871 num_examples: 79 download_size: 33858783 dataset_size: 71406763 --- # Dataset Card for "ukabs" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6168478727340698, 0.1975347250699997, 0.11365825682878494, 0.06697020679712296, -0.40133896470069885, 0.004709776025265455, 0.4369747042655945, -0.2428225874900818, 0.8468412756919861, 0.49200254678726196, -0.8366362452507019, -0.7447482943534851, -0.41790279746055603, -0.1506951004266739, -0.18547390401363373, 1.1439052820205688, 0.1490011215209961, 0.30075740814208984, -0.49286070466041565, -0.37282493710517883, -0.6539860367774963, -0.5981718897819519, -0.6123174428939819, -0.5567212700843811, 1.0468472242355347, 0.786609411239624, 0.3445068895816803, 0.2412831336259842, 1.025883436203003, 0.16388139128684998, -0.06176939979195595, -0.3361451327800751, -0.32916098833084106, 0.035772904753685, -0.28671136498451233, -0.8201557993888855, -1.0473871231079102, -0.029348546639084816, 0.4335499107837677, 0.617932140827179, -0.36479130387306213, 0.7024153470993042, -0.39313316345214844, 0.833657443523407, -0.35264715552330017, 0.31153276562690735, 0.08863672614097595, -0.11477220803499222, -0.5774388909339905, 0.08939734101295471, 0.18573284149169922, -0.41533026099205017, -0.20536141097545624, -0.7354511022567749, 0.0740428939461708, 0.2070978730916977, 0.6905860900878906, 0.06256647408008575, -0.13100862503051758, -0.43136927485466003, -0.3093574643135071, 0.0905597060918808, -0.37232354283332825, 0.4637347459793091, 0.7532132863998413, 0.5179030299186707, -0.03377525880932808, -0.5795527100563049, -0.21165695786476135, 0.05009929835796356, -0.31952157616615295, 0.37489959597587585, 0.35993632674217224, 0.009253124706447124, 0.39749521017074585, 0.7300256490707397, -0.5593299865722656, -0.03957807272672653, -0.7474046349525452, -0.47859349846839905, 0.8741771578788757, 0.12219590693712234, 0.22208485007286072, -0.24889086186885834, -0.041302639991045, -0.3606838285923004, -0.6415026187896729, 0.11484969407320023, 0.48483434319496155, 0.28736555576324463, -1.3815772533416748, 0.6813587546348572, -0.05783940851688385, 0.2383164018392563, 0.07170554995536804, 0.43450650572776794, 0.5486469268798828, -0.22315798699855804, -0.07122453302145004, 0.0786236822605133, 0.1637141853570938, 0.4056357145309448, 0.00692018074914813, 0.10606040805578232, -0.04779643565416336, 0.13628818094730377, 0.07174933701753616, -1.2529901266098022, -0.7085728049278259, 0.5281139016151428, -0.7591648101806641, -0.17134717106819153, 0.39436081051826477, -0.837596595287323, -0.583840012550354, -0.39460423588752747, 0.10622801631689072, 0.014648614451289177, -0.7321586608886719, -0.3366928696632385, -0.9295846819877625, 0.543552041053772, -0.04383501037955284, -0.690437912940979, 0.18869660794734955, 0.5382986068725586, 0.435323029756546, 0.4793578088283539, -0.15406420826911926, -0.578002393245697, 0.40355384349823, -0.2179723083972931, 1.0274885892868042, -0.7108051776885986, -0.6215294003486633, 0.02336377464234829, 0.4016735255718231, 0.4294838011264801, -0.28309980034828186, 0.6635095477104187, -0.31736934185028076, -0.10048525780439377, -1.018335223197937, -0.5892612338066101, 0.06618498265743256, 0.2788166403770447, -0.9761043190956116, 1.0221762657165527, 0.3396699130535126, -0.5606057643890381, 0.4172252416610718, -1.3614208698272705, -0.45727473497390747, 0.5570444464683533, -0.08136603981256485, -0.4293254315853119, 0.3986949920654297, 0.017120646312832832, 0.7130948901176453, -0.15492010116577148, 0.26745936274528503, -0.8359013199806213, -0.1250114142894745, 0.2065308839082718, 0.2484927475452423, 0.9275763630867004, 0.3922029435634613, 0.5794637203216553, -0.040411993861198425, -1.0285300016403198, -0.32545438408851624, 0.13315582275390625, -0.11348835378885269, -0.38310229778289795, -0.4128376245498657, 0.2834568917751312, -0.15491057932376862, 0.2851676642894745, -0.4715886414051056, 0.6656372547149658, 0.3313232958316803, -0.1179676204919815, 0.757122814655304, 0.14479412138462067, 0.24884313344955444, -0.5500510334968567, 0.560724675655365, -0.051350273191928864, 0.31207507848739624, -0.011593429371714592, -0.389291912317276, -0.4591690003871918, -0.19104334712028503, 0.7752281427383423, 0.5913331508636475, -0.47078320384025574, 0.6476906538009644, 0.1415959745645523, -0.8795257806777954, -0.32738175988197327, 0.02189752459526062, 0.2500476539134979, -0.005132540129125118, 0.20048567652702332, -0.9444713592529297, -0.8560859560966492, -0.6633145213127136, 0.3722999393939972, -0.19667214155197144, -0.0949757918715477, 0.40984445810317993, 0.9822655916213989, -0.48611608147621155, 0.5497162342071533, -0.6557637453079224, -0.30519813299179077, -0.020418088883161545, 0.013961595483124256, 0.109773188829422, 0.7272107601165771, 0.8498901128768921, -0.8061314821243286, -0.21505768597126007, -0.5212065577507019, -0.4170708954334259, -0.23414677381515503, 0.10155107825994492, -0.5905649065971375, -0.22268757224082947, 0.1797560751438141, -0.4306996166706085, 0.7512268424034119, 0.9933322668075562, -0.6474011540412903, 0.22582115232944489, 0.13870808482170105, 0.25614550709724426, -1.498536467552185, 0.5031579732894897, -0.06530879437923431, -0.11993737518787384, -0.22176939249038696, 0.09244401752948761, 0.1349411904811859, -0.2314957082271576, -0.051082953810691833, 0.6599982380867004, -0.6644067168235779, -0.28793856501579285, 0.14170964062213898, -0.028658991679549217, 0.030056681483983994, 0.1021638736128807, 0.038592997938394547, 0.543508768081665, 1.1358600854873657, -0.47200727462768555, 0.910296618938446, 0.7600248456001282, 0.10426480323076248, 1.3985965251922607, -0.4740365147590637, 0.09673424810171127, -0.10192457586526871, 0.45680394768714905, -0.9196848273277283, -0.8945990800857544, 0.27922523021698, -0.5342117547988892, 0.559049665927887, -0.6954879760742188, -0.37589791417121887, -0.8441795110702515, -0.43645545840263367, 0.5473657250404358, 0.7070497870445251, -0.7326800227165222, 0.5033584237098694, 0.7851377129554749, -0.09186074137687683, -0.08251986652612686, -0.9730551838874817, -0.03871810436248779, -0.16767753660678864, 0.168903186917305, 0.30776968598365784, -0.4886792004108429, 0.016534553840756416, -0.1176953986287117, 0.1741218864917755, -0.21920037269592285, -0.2197222262620926, 0.6637270450592041, 0.1095326617360115, -0.10323001444339752, 0.34848377108573914, -0.09957120567560196, -0.5266798138618469, 0.12113017588853836, 0.13029178977012634, 0.4712075889110565, 0.07425703853368759, -0.3072049915790558, -0.7297271490097046, 0.4694323241710663, 0.2696799039840698, -0.20106489956378937, 0.5982335805892944, 0.9187983274459839, -0.6192594170570374, -0.05075947195291519, -0.5407727956771851, -0.2744281589984894, -0.5085927844047546, -0.017006725072860718, -0.30283206701278687, -0.36431264877319336, 0.7482673525810242, -0.11690397560596466, 0.022549323737621307, 0.7037451863288879, 0.673704206943512, -0.38354960083961487, 0.5205215811729431, 0.7061020731925964, -0.46404018998146057, 0.390922486782074, -0.3785479962825775, -0.41882961988449097, -0.8627825975418091, -0.4721207320690155, -0.7447604537010193, -0.6023654341697693, -0.6947200894355774, -0.22342562675476074, -0.18345031142234802, 0.08482690155506134, -0.09802115708589554, 0.5680299997329712, -0.6608090996742249, 0.39914995431900024, 0.6472324132919312, 0.041708577424287796, -0.35037657618522644, -0.10831364244222641, 0.10321235656738281, 0.39080584049224854, -0.6245992183685303, 0.008882584050297737, 1.488866925239563, 0.24683697521686554, 1.110129952430725, 0.3823685348033905, 0.9437627196311951, 0.43036067485809326, 0.6899147033691406, -0.3022794723510742, 0.4541819989681244, 0.06901853531599045, -0.8828010559082031, 0.04394993558526039, -0.15103496611118317, -1.0087202787399292, -0.5953194499015808, -0.26778125762939453, -0.3205699622631073, 0.3361472189426422, 0.4087441861629486, -0.052630629390478134, 0.3875195384025574, -0.7075119614601135, 0.6149402856826782, -0.22261030972003937, -0.11695274710655212, -0.24626213312149048, -0.769209086894989, -0.07570967078208923, 0.36357298493385315, 0.285256952047348, -0.18329477310180664, -0.015222225338220596, 1.0580523014068604, -0.4034804403781891, 1.2245343923568726, -0.7742732763290405, -0.06678511947393417, 0.2643507122993469, -0.2838670611381531, 0.12663394212722778, 0.4378267526626587, -0.10839759558439255, 0.21334868669509888, 0.20307712256908417, -0.658963143825531, -0.1463860124349594, 0.6562308073043823, -0.64886075258255, 0.19872036576271057, -0.47874653339385986, -0.593205451965332, -0.03115023300051689, 0.34984686970710754, -0.06715188175439835, 1.0364786386489868, -0.36329492926597595, 0.20886541903018951, 0.49279913306236267, 0.2922796308994293, 0.3943784832954407, 0.23738698661327362, -0.36765652894973755, -0.6762089133262634, 0.7832480072975159, 0.29269757866859436, -0.34089264273643494, 0.4358997941017151, 0.3250456750392914, -0.5414415001869202, -0.6587756872177124, -0.6467104554176331, 0.3964555859565735, -0.4271916449069977, -0.654321551322937, 0.07931303977966309, -0.13293270766735077, -0.6544850468635559, -0.4623277485370636, -0.2176041603088379, -0.5858202576637268, -0.501644492149353, -0.6178182363510132, 1.0976879596710205, 0.8594274520874023, -0.8888520002365112, 0.6582415103912354, -0.9131987690925598, 0.720808207988739, 0.05470246449112892, 1.169227957725525, -0.4322439134120941, -0.531633734703064, -0.4373125731945038, -0.09475140273571014, 0.022311318665742874, -0.8153694272041321, -0.1188843697309494, 0.02497558481991291, 0.6875832676887512, 0.46756020188331604, -0.10776065289974213, 0.8617886900901794, 0.037071410566568375, 0.7314673066139221, 0.19854840636253357, -0.5536285042762756, 0.6320959329605103, -0.25520455837249756, 0.3057312071323395, 0.9893487691879272, 0.6524002552032471, -0.5183635950088501, 0.0832178145647049, -1.0600062608718872, -0.5590654015541077, 0.4114631116390228, 0.03391898795962334, 0.18281345069408417, 0.4301395118236542, 0.7748473882675171, 0.13022801280021667, 0.3842197358608246, -0.7263303995132446, -0.8896274566650391, 0.11515378952026367, -0.505161702632904, 0.10373824089765549, -0.5344155430793762, -0.37720993161201477, -0.5642167329788208, 0.9309790730476379, 0.08218260109424591, 0.40432822704315186, 0.09354327619075775, 0.20467285811901093, -0.1377839744091034, -0.0059285396710038185, 0.13735468685626984, 0.6253830194473267, -0.6058730483055115, -0.28810322284698486, -0.009115996770560741, -0.5604931116104126, -0.2248086929321289, 0.664251446723938, -0.03891133517026901, -0.35295921564102173, 0.5242249965667725, 0.5298610925674438, -0.402190238237381, -0.2196507751941681, 0.21994346380233765, -0.24229571223258972, -0.44293883442878723, -0.40458667278289795, 0.21503858268260956, 0.35249778628349304, 0.14376188814640045, 0.053983673453330994, -0.13307978212833405, 0.1388401985168457, -0.693439245223999, 0.5050851106643677, 0.26912906765937805, -0.5516689419746399, -0.5563467741012573, 0.34518858790397644, 0.7562695145606995, -0.6454356908798218, 0.6916343569755554, -0.20581194758415222, -0.4185859262943268, 0.7999168634414673, 0.38176777958869934, 0.567193329334259, -0.6894597411155701, 0.36103853583335876, 0.5618330836296082, 0.24998115003108978, 0.3811129331588745, 1.0131611824035645, -0.36560580134391785, -0.4675286114215851, 0.14248956739902496, -0.40002378821372986, -0.7112546563148499, -0.030347149819135666, -1.2228752374649048, 0.33649304509162903, -0.537418782711029, -0.08830977231264114, -0.081730417907238, 0.35383865237236023, -1.010348916053772, 0.4573201835155487, 0.4067094922065735, 1.3769962787628174, -0.9566986560821533, 0.6362025141716003, 0.993918240070343, -0.45219433307647705, -0.7395039796829224, -0.31303247809410095, 0.11821343749761581, -0.71341872215271, -0.3111838698387146, 0.4324304759502411, 0.35696691274642944, -0.2932310700416565, -0.7484598755836487, -0.7897689938545227, 1.3744655847549438, -0.06673230975866318, -0.9250316619873047, 0.4178832769393921, -0.05020559951663017, 0.4206959903240204, -0.20739050209522247, 0.45188724994659424, 0.5181878805160522, 0.8554267883300781, 0.1834716498851776, -0.5565090179443359, -0.06504467129707336, -0.40202707052230835, -0.4354691505432129, 0.4242493212223053, -0.88758784532547, 0.06685718894004822, -0.11338424682617188, 0.11508598923683167, 0.1111413761973381, 0.6654884815216064, 0.07122530788183212, 0.34444090723991394, 0.3534483015537262, 0.7913738489151001, 1.1247642040252686, -0.17564436793327332, 0.9944791793823242, 0.07538332045078278, 0.3201032876968384, 1.0358680486679077, -0.4269442558288574, 0.5707220435142517, 0.584662675857544, -0.3249395191669464, 0.601553201675415, 0.6774532198905945, -0.5166723132133484, 0.4701339900493622, 0.23300746083259583, 0.006586795207113028, -0.11457709968090057, -0.08157960325479507, -0.9110193848609924, 0.2802232503890991, 0.6053206324577332, -0.1578706055879593, 0.02792070433497429, -0.10982535779476166, -0.08284376561641693, -0.3546191453933716, -0.6547393798828125, 0.8852031230926514, -0.062426429241895676, -0.24275998771190643, -0.07123374938964844, -0.22801704704761505, 0.32411810755729675, -1.0423747301101685, -0.3255304992198944, -0.301908940076828, 0.08157206326723099, -0.44480302929878235, -1.0129141807556152, 0.6729957461357117, -0.2451976090669632, -0.13513270020484924, 0.16411460936069489, 0.7241051197052002, -0.3245321810245514, -1.0641003847122192, 0.39012691378593445, 0.23677335679531097, 0.30451685190200806, 0.4471069872379303, -1.2586252689361572, 0.16973638534545898, -0.0923798531293869, -0.2787371873855591, 0.2355247139930725, 0.03858201950788498, 0.10257279127836227, 0.648786187171936, 0.8114073276519775, 0.1309720128774643, -0.6011788845062256, 0.40775686502456665, 0.9543996453285217, -0.8613741993904114, -0.4962296783924103, -0.46042600274086, 0.8754768371582031, -0.4426257312297821, -0.5788624882698059, 0.48913899064064026, 1.0787110328674316, 0.9748228788375854, -0.02969827502965927, 0.8319838047027588, -0.6322767734527588, 0.6942540407180786, -0.33499136567115784, 0.74015212059021, -0.5573089718818665, -0.16531483829021454, -0.008632302284240723, -0.5489264130592346, -0.87725830078125, 0.6131821274757385, 0.18043285608291626, -0.09500522911548615, 0.48704585433006287, 1.135755181312561, -0.2975742220878601, 0.1920757293701172, 0.005902775563299656, 0.21910209953784943, 0.22446264326572418, 0.16250209510326385, 0.4067961871623993, -0.40933868288993835, 0.13355980813503265, -0.4519293010234833, -0.45503461360931396, -0.05381277576088905, -1.2112058401107788, -1.2322309017181396, -0.6366750001907349, -0.45360711216926575, -0.36991843581199646, -0.005077659152448177, 0.9608873724937439, 1.062957525253296, -1.2165077924728394, -0.38841456174850464, 0.1472955346107483, 0.21604718267917633, 0.03070530667901039, -0.05949246138334274, 0.7104488611221313, 0.46467727422714233, -0.3575153350830078, -0.2190476953983307, -0.009590701200067997, 0.31756675243377686, -0.12510515749454498, -0.002562149427831173, -0.07709234207868576, 0.11594061553478241, 0.2862330973148346, 0.4530099928379059, -0.12303716689348221, -0.3261653780937195, -0.756264865398407, 0.12386902421712875, 0.19723449647426605, 0.895337700843811, -0.48019155859947205, -0.02807890996336937, 0.38605841994285583, 0.4446166157722473, 0.5170133709907532, 0.1324225813150406, 0.3798246383666992, -0.7274770736694336, 0.28114160895347595, -0.0981425866484642, 0.6681993007659912, 0.29889073967933655, -0.4639884829521179, 0.9027957320213318, 0.3191208839416504, -0.5622789859771729, -0.7313004732131958, 0.1464415341615677, -1.416820764541626, 0.19623854756355286, 0.865005612373352, 0.12352153658866882, -0.4152558147907257, -0.09420300275087357, -0.6545348763465881, 0.24890080094337463, -0.7982321381568909, 0.3920275568962097, 0.5715123414993286, 0.07396125048398972, -0.12435655295848846, -0.0958227813243866, 0.4863961935043335, -0.16816695034503937, -1.4463907480239868, 0.1744988113641739, 0.6824779510498047, 0.21517041325569153, 0.11114807426929474, 0.7146783471107483, -0.007369224447757006, 0.31496912240982056, 0.395622193813324, 0.5981043577194214, -0.19005721807479858, -0.674977719783783, -0.20746789872646332, -0.00474922638386488, -0.20632696151733398, -0.40604203939437866 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
laion/laion400m
laion
2023-04-04T06:35:23Z
222
18
null
[ "license:cc-by-4.0", "region:us" ]
2023-04-04T06:35:23Z
2023-03-28T21:36:09.000Z
2023-03-28T21:36:09
--- license: cc-by-4.0 --- # LAION-400m_new This datasets has two improvements compared to original LAION_400m dataset: 1. It uses a multilingual text filter to filter out malicious content 2. The better open_clip VitH model was used to detect potential harmful content in the images All in all, we filtered out around 6 million additional image-text pairs - probably with a high false positive rate - in order to improve dataset safety.
[ -0.33820998668670654, -0.4692099392414093, 0.3068704903125763, -0.3668716847896576, -0.28404077887535095, -0.14617985486984253, -0.09320688992738724, -0.5176825523376465, 0.196757510304451, 1.1871027946472168, -0.36537763476371765, -0.7639015316963196, -0.573248028755188, 0.1332903951406479, -0.36513349413871765, 1.1607561111450195, 0.056275609880685806, 0.22242777049541473, 0.08042380958795547, -0.5089346766471863, -0.5277279615402222, -0.6433297395706177, -1.026185154914856, -0.05500996112823486, 0.717957079410553, 0.5069226026535034, 0.9114895462989807, 0.4632677137851715, 1.0316616296768188, 0.33456966280937195, 0.13426582515239716, 0.08218298107385635, -0.5643835663795471, -0.258646160364151, 0.10088114440441132, -0.5115801095962524, -0.678389310836792, -0.0485294945538044, 0.4220503270626068, 0.07786533236503601, 0.042475420981645584, 0.20769131183624268, -0.12091685086488724, 0.847665548324585, -0.8806772232055664, -0.17659522593021393, -0.45551684498786926, 0.22182613611221313, -0.5579975247383118, -0.3132665753364563, -0.5985104441642761, -0.20484021306037903, -0.043499905616045, -1.015311360359192, 0.05942503735423088, -0.23884662985801697, 0.8522080779075623, 0.15218624472618103, -0.7800750732421875, -0.06053599715232849, -0.7420260906219482, 0.9338838458061218, -0.7578675746917725, 0.3224102556705475, 0.502331554889679, 0.6430129408836365, -0.04526945576071739, -0.9347972869873047, -0.22082483768463135, -0.053549230098724365, 0.04651254788041115, 0.016259517520666122, -0.5274731516838074, -0.2144242525100708, 0.5076271295547485, 0.07228920608758926, -0.6962273716926575, 0.03392214700579643, -0.606999933719635, -0.3879045844078064, 0.8421275615692139, 0.09165304154157639, 0.4543544054031372, -0.4487788677215576, -0.5411234498023987, -0.24879571795463562, -0.8552954196929932, -0.07539604604244232, 0.4575746953487396, -0.2544440031051636, 0.15196850895881653, 0.42268845438957214, -0.48443371057510376, 0.46968770027160645, -0.38611409068107605, -0.35647255182266235, 0.4932612478733063, -0.45484644174575806, -0.46325984597206116, -0.01718907430768013, 0.8328904509544373, 0.8224061131477356, 0.5659461617469788, 0.2178085297346115, -0.12359920144081116, 0.03839996084570885, 0.05724681541323662, -0.7911794781684875, -0.4722186326980591, 0.056071341037750244, -0.9533938765525818, -0.36138877272605896, 0.5671126246452332, -0.786129891872406, -0.37717244029045105, -0.2225809544324875, 0.3299879729747772, -0.7628813982009888, -0.2604708671569824, 0.5237034559249878, -0.23526157438755035, 0.03222515434026718, 0.27779433131217957, -0.12151291221380234, 0.2511879801750183, 0.6115769743919373, 0.8055974245071411, -0.25607845187187195, -0.22873704135417938, -0.740842342376709, 0.033199507743120193, -0.27666980028152466, 0.9412020444869995, -0.4731277525424957, -0.08942674100399017, -0.04384448379278183, 0.3149600028991699, 0.22066012024879456, -0.8449345827102661, 0.9309618473052979, -0.7204448580741882, 0.1420755684375763, -0.6178885102272034, -0.18816375732421875, -0.7182022333145142, -0.20927095413208008, -1.1050970554351807, 1.3434611558914185, -0.05324191972613335, -1.0083144903182983, 0.7295299172401428, -0.6347990036010742, -0.36187389492988586, 0.1376269906759262, 0.4001469612121582, -0.288266658782959, -0.11658027768135071, 0.42247116565704346, 0.2701665163040161, -0.11152703315019608, 0.20770695805549622, -0.3655075132846832, -0.542917013168335, 0.6640580892562866, -0.5387575626373291, 0.9017488360404968, 0.4635099768638611, -0.13048958778381348, 0.248742938041687, -0.6020276546478271, 0.023266250267624855, -0.011742525734007359, -0.3353884220123291, -0.601162314414978, 0.032488733530044556, 0.02643783949315548, 0.29257932305336, -0.1541081815958023, -0.6326561570167542, -0.2854669988155365, -0.17371335625648499, 0.22871306538581848, 0.5321887731552124, 0.3766050636768341, 0.3581983745098114, -0.6659992337226868, 0.6230267882347107, 0.22269104421138763, 0.6327977180480957, -0.4766729176044464, -0.6781514883041382, -0.8333379626274109, -0.48863092064857483, 0.1804533302783966, 0.6632334589958191, -0.8948267698287964, 0.23300990462303162, -0.19247299432754517, -0.13134582340717316, -0.5474907159805298, 0.20514309406280518, 0.3317701518535614, 0.183561310172081, 0.20470504462718964, -0.23410660028457642, -0.9503462910652161, -0.9881994724273682, -0.24081704020500183, 0.30032777786254883, -0.14260967075824738, 0.3918033540248871, 0.6921915411949158, -0.31701573729515076, 0.6452994346618652, -0.7111460566520691, -0.28663086891174316, 0.19936880469322205, -0.21495738625526428, 0.3776538372039795, 0.19050602614879608, 0.9117419719696045, -0.922819972038269, -1.021438479423523, -0.027633333578705788, -1.0065220594406128, -0.06447483599185944, 0.21138475835323334, -0.5436078310012817, 0.06449005752801895, 0.6684633493423462, -0.3230166435241699, 0.7175725102424622, 0.2748199999332428, -0.14568670094013214, 0.31176167726516724, -0.0730154812335968, 0.7331282496452332, -1.3026517629623413, -0.13192999362945557, 0.11624661833047867, -0.5271285176277161, -0.7310284972190857, 0.21596916019916534, 0.2846475839614868, -0.2674046456813812, -0.9669793248176575, 0.25952640175819397, -0.36639881134033203, 0.18059812486171722, -0.32191458344459534, -0.0038477282505482435, 0.16337284445762634, 0.24034470319747925, -0.2324872463941574, 0.7641351819038391, 0.8555358648300171, -0.5536050200462341, 0.7852843403816223, 0.11844117194414139, -0.5043118000030518, 0.6723505258560181, -0.6373977065086365, 0.1612502634525299, -0.48675337433815, 0.41313493251800537, -0.7376760244369507, -0.3924430310726166, 0.13138125836849213, -0.3636802136898041, -0.1548982858657837, -0.1744261085987091, -0.4745047986507416, -0.6102710366249084, -0.9127712845802307, 0.5370760560035706, 0.5828205943107605, -0.7682753801345825, 0.0577516071498394, 0.4086090624332428, 0.10106467455625534, -0.6142631769180298, -0.6207497119903564, 0.26336660981178284, -0.523531973361969, -0.8132098317146301, 0.037520457059144974, -0.025584697723388672, -0.3495221734046936, 0.1265464723110199, 0.2570236325263977, -0.197236567735672, -0.07918738573789597, 0.38922977447509766, 0.5086066126823425, -0.5382114052772522, -0.03530031442642212, -0.16811907291412354, -0.25897201895713806, -0.1275227963924408, -0.2130950391292572, 0.5901798605918884, 0.10359673947095871, -0.14345505833625793, -0.7836839556694031, 0.6725513935089111, 0.3203448951244354, -0.289626806974411, 0.7530956864356995, 0.7506244778633118, -0.6235450506210327, 0.08220075070858002, -0.41613489389419556, -0.19099530577659607, -0.567659854888916, 0.44608548283576965, -0.31611284613609314, -0.7625976800918579, 0.3484587073326111, 0.29880815744400024, -0.40274178981781006, 0.6218904852867126, 0.08077076077461243, -0.2392379343509674, 1.1149505376815796, 0.36950451135635376, -0.2986818552017212, 0.520891547203064, -0.2588929831981659, -0.0192546509206295, -0.763427734375, -0.42093509435653687, -0.30117830634117126, -0.08541921526193619, -0.580794632434845, -0.5865380764007568, 0.4296358525753021, 0.1428874433040619, -0.19500598311424255, 0.5250954627990723, -0.394272118806839, 0.6703788638114929, 0.6619372367858887, 0.5226690769195557, 0.24435986578464508, 0.36036843061447144, 0.13265176117420197, -0.2833717465400696, -0.6017863154411316, -0.6421303749084473, 1.44309663772583, 0.3804662525653839, 0.8329452276229858, 0.3185896575450897, 0.27301663160324097, 0.513335645198822, 0.4371812641620636, -0.5024901628494263, 0.6796286106109619, -0.760419487953186, -0.8533363938331604, -0.02250717766582966, -0.30592235922813416, -1.1107914447784424, 0.10754801332950592, -0.43862003087997437, -0.6177043318748474, 0.048824552446603775, 0.06909306347370148, -0.07354332506656647, 0.5419138669967651, -0.6936569809913635, 0.37742799520492554, -0.16801540553569794, 0.029783593490719795, -0.11695139110088348, -0.2760677635669708, 0.4656083285808563, -0.25627532601356506, 0.26775404810905457, -0.3635311722755432, 0.13478122651576996, 1.0852586030960083, -0.43314942717552185, 0.6331050395965576, -0.16513684391975403, 0.08537280559539795, 0.6431583762168884, -0.17551113665103912, 0.2682395577430725, 0.2855221927165985, -0.21600410342216492, 0.32890084385871887, -0.2523779273033142, -0.3526711165904999, -0.16842594742774963, 0.6715798377990723, -0.4627285301685333, -0.27907034754753113, -0.4539407789707184, -0.38554391264915466, 0.3961656391620636, 0.3808109164237976, 0.7192932963371277, 0.593488335609436, -0.29594236612319946, 0.48893970251083374, 0.7034801840782166, -0.7409580945968628, 0.4302085340023041, 0.6077321767807007, -0.11088044196367264, -0.9698874354362488, 0.5989208221435547, -0.07088945060968399, 0.18460580706596375, 0.2798978388309479, 0.19170504808425903, -0.12457117438316345, -0.208729550242424, -0.2546670734882355, 0.20702342689037323, -0.8545048832893372, -0.5858653783798218, -0.6414369940757751, -0.29015466570854187, -0.8181048035621643, 0.12540139257907867, -0.030086040496826172, -0.09512282907962799, -0.1807176023721695, -0.05086462199687958, 0.6558766961097717, 0.8253235816955566, -0.12116877734661102, 0.700141966342926, -0.8377682566642761, 0.5951164364814758, 0.07160284370183945, 0.33899977803230286, -0.31013238430023193, -0.7397632598876953, -0.37183764576911926, 0.3279167711734772, -0.1801481992006302, -1.1042472124099731, 0.30491000413894653, 0.31827616691589355, 0.5314743518829346, 0.7253357172012329, -0.09690163284540176, 0.46613505482673645, -0.5357191562652588, 0.7130565643310547, 0.28447258472442627, -0.7631736397743225, 0.6761980652809143, -0.41426387429237366, 0.3632766306400299, 0.4713067412376404, 0.5444318056106567, -0.7052050828933716, 0.008350644260644913, -0.30563053488731384, -0.5670955181121826, 0.8916060328483582, 0.23222164809703827, 0.052432578057050705, 0.2733648717403412, 0.6748340129852295, 0.31591618061065674, 0.03174116834998131, -0.8538475632667542, -0.42726749181747437, -0.20346659421920776, -0.04546898230910301, -0.2831942141056061, -0.6753368973731995, -0.05325167253613472, -0.35528260469436646, 0.7289063930511475, -0.0001846426457632333, 0.27913835644721985, 0.026515427976846695, -0.2709622085094452, -0.14143621921539307, -0.05478985980153084, 0.4006234109401703, 0.17893895506858826, -0.20518749952316284, 0.2590722441673279, 0.17456766963005066, -0.6793627142906189, 0.12996044754981995, -0.26953741908073425, -0.37477827072143555, 0.17412270605564117, 0.6045268774032593, 1.2765339612960815, -0.08136388659477234, -0.48384448885917664, 0.5679111480712891, 0.04805903136730194, -0.34067270159721375, -0.33732548356056213, 0.41667744517326355, -0.25354811549186707, -0.047841303050518036, 0.36791783571243286, 0.20641927421092987, 0.5893504023551941, -0.5337388515472412, 0.7242116928100586, 0.2517247200012207, -0.31291884183883667, -0.2854817509651184, 0.6322920918464661, -0.04304363951086998, -0.49449631571769714, 0.5662333369255066, 0.01586739718914032, -0.6196632981300354, 0.7834300994873047, 0.5159452557563782, 0.6876192688941956, -0.5690084099769592, 0.7049742937088013, 0.6992450952529907, 0.5494169592857361, -0.09771563857793808, 0.6377048492431641, 0.29345428943634033, -0.7205696702003479, -0.361634761095047, -0.3522041440010071, 0.033820558339357376, 0.44941651821136475, -1.007125973701477, 0.466597318649292, -0.17152056097984314, -0.4457739293575287, 0.33695822954177856, -0.29889750480651855, -0.6022664308547974, 0.5103748440742493, 0.004118373617529869, 0.9759940505027771, -1.1296740770339966, 0.9279641509056091, 0.7990509867668152, -0.00998623389750719, -0.6525591611862183, -0.010667761787772179, -0.05410735309123993, -0.5946825742721558, 0.42710137367248535, 0.49847447872161865, 0.24649864435195923, -0.512783408164978, -0.5887952446937561, -1.1612600088119507, 0.8838052749633789, 0.5426263809204102, -0.2985416352748871, 0.45931869745254517, 0.42804068326950073, 0.44627058506011963, -0.33041879534721375, -0.053916819393634796, 0.5393239855766296, 0.5039617419242859, -0.1497950255870819, -0.562294065952301, -0.011537155136466026, -0.47378435730934143, -0.03633113205432892, 0.5687130689620972, -0.5545592308044434, 1.0111839771270752, -0.060333169996738434, -0.16145719587802887, -0.034970685839653015, 0.3909243941307068, 0.010654821991920471, 0.6408117413520813, 0.636517345905304, 0.44706055521965027, 0.6520573496818542, -0.12080859392881393, 1.1217585802078247, 0.1368662714958191, 0.2704460620880127, 1.2507309913635254, -0.4297206997871399, 0.6814032196998596, 0.18628861010074615, -0.10351689904928207, 0.5093139410018921, 0.7874842882156372, -0.310644268989563, 0.6569905281066895, -0.23011495172977448, -0.36459285020828247, 0.023424429818987846, -0.14825978875160217, -0.2611721456050873, 0.4594366252422333, 0.06016288697719574, -0.28139209747314453, 0.17140382528305054, 0.639289140701294, 0.24455197155475616, -0.0373610258102417, -0.2029145061969757, 0.8468968272209167, -0.018845919519662857, -0.5070714354515076, 0.36549121141433716, 0.33345404267311096, 0.8343762755393982, -0.27250751852989197, 0.22335284948349, -0.04124769940972328, 0.15315164625644684, -0.40934279561042786, -0.8372178077697754, 0.41083672642707825, 0.09654813259840012, -0.05265006050467491, 0.31497323513031006, 1.2707951068878174, -0.23185528814792633, -0.5614275336265564, 0.5843123197555542, -0.12057176977396011, 0.29330459237098694, -0.30124202370643616, -0.7498701214790344, -0.07910997420549393, 0.11511022597551346, -0.1453041136264801, -0.2430180162191391, 0.3303908109664917, -0.35378772020339966, 0.5050948858261108, 0.8491868376731873, 0.14425641298294067, 0.4039498567581177, 0.1882893145084381, 0.7266048789024353, -0.6088849902153015, -0.5026347637176514, -0.7493157386779785, 0.32117047905921936, -0.5227580070495605, -0.1795218586921692, 1.049019694328308, 0.9028795957565308, 0.7404230833053589, -0.1845221221446991, 0.6975157260894775, 0.11588883399963379, 0.3359144330024719, -0.6937538385391235, 0.5355547666549683, -0.5846816897392273, 0.19633634388446808, -0.31259772181510925, -0.843256413936615, -0.2104949951171875, 0.49884748458862305, 0.1145617812871933, 0.09246774017810822, 0.9543651342391968, 0.8599616885185242, -0.2247171849012375, -0.04018130153417587, 0.3464055061340332, 0.09940275549888611, 0.07515514642000198, 0.611368715763092, 0.7203382849693298, -0.9162812829017639, 0.5270612835884094, -0.5373003482818604, -0.2914375364780426, -0.1726505011320114, -0.8068686127662659, -1.0736156702041626, -0.5128300786018372, -0.3506278693675995, -0.5226802229881287, -0.07913694530725479, 0.17142245173454285, 1.1956117153167725, -1.1232943534851074, 0.03784918785095215, 0.3690289855003357, -0.18678773939609528, 0.07478272914886475, -0.21806704998016357, 0.25426411628723145, 0.5014370679855347, -0.5243117809295654, 0.2742159068584442, 0.40295499563217163, 0.009570536203682423, 0.13999149203300476, -0.21389076113700867, -0.23669210076332092, 0.31389087438583374, 0.5866981148719788, -0.29910674691200256, -0.28435438871383667, -0.37674999237060547, 0.20689283311367035, -0.10188383609056473, 0.36888790130615234, 0.9780927300453186, -0.45553314685821533, 0.16278080642223358, 0.6644604206085205, 0.005211300682276487, 0.6416155099868774, -0.23760084807872772, 0.3072468340396881, -0.6925522089004517, 0.6852872967720032, -0.10228072851896286, 0.5208395719528198, 0.29797857999801636, -0.8050689697265625, 0.5927325487136841, 0.17541290819644928, -0.41510209441185, -0.7997651100158691, 0.29286277294158936, -0.9642817378044128, -0.26896706223487854, 1.2447893619537354, -0.15911608934402466, -0.232270285487175, -0.06687737256288528, -0.481997549533844, 0.38160645961761475, -0.4292023181915283, 0.23296061158180237, 0.48780757188796997, 0.202183336019516, -0.05698361247777939, -0.8440257906913757, 0.536381185054779, 0.4408748745918274, -1.0972790718078613, -0.5506621599197388, 0.42696473002433777, 0.6866145730018616, -0.10861746966838837, 0.6839937567710876, -0.39254772663116455, 0.5606631636619568, -0.2849288582801819, -0.1403495818376541, 0.17798714339733124, -0.5097589492797852, -0.44259771704673767, 0.037025682628154755, -0.41484054923057556, -0.4872022271156311 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
jaejoo/llama-2-ko-law
jaejoo
2023-09-08T05:13:09Z
222
4
null
[ "size_categories:1K<n<10K", "language:ko", "license:apache-2.0", "legal", "region:us" ]
2023-09-08T05:13:09Z
2023-09-08T04:47:14.000Z
2023-09-08T04:47:14
--- license: apache-2.0 language: - ko tags: - legal size_categories: - 1K<n<10K ---
[ -0.12853392958641052, -0.18616779148578644, 0.6529127955436707, 0.49436280131340027, -0.19319361448287964, 0.23607419431209564, 0.36072003841400146, 0.050563063472509384, 0.579365611076355, 0.7400140762329102, -0.6508104205131531, -0.23783954977989197, -0.7102249264717102, -0.047826025635004044, -0.38947510719299316, 0.847076416015625, -0.09598274528980255, 0.024005085229873657, 0.04711994528770447, -0.14317835867404938, -0.6121042966842651, -0.04771691560745239, -1.052453637123108, -0.06787451356649399, 0.3002277612686157, 0.5120974779129028, 0.8275896906852722, 0.39602914452552795, 0.5030563473701477, 1.7515555620193481, -0.08836923539638519, -0.22754408419132233, -0.4589202105998993, 0.42230677604675293, -0.3327735662460327, -0.42133715748786926, -0.2624173164367676, -0.07449357211589813, 0.3238038122653961, 0.7903714179992676, -0.38104137778282166, 0.1932809054851532, -0.22438450157642365, 1.008224606513977, -0.8202074766159058, 0.22630856931209564, -0.1669836789369583, 0.14053209125995636, 0.04230884835124016, -0.14591920375823975, -0.13263218104839325, -0.6440037488937378, 0.06469475477933884, -0.8995967507362366, 0.10274934768676758, -0.044611066579818726, 0.8789560198783875, 0.21909037232398987, -0.5102370977401733, -0.0459773950278759, -0.6883593797683716, 1.0972506999969482, -0.1755605936050415, 0.7615711688995361, 0.45078128576278687, 0.45288535952568054, -0.5849332809448242, -1.1782183647155762, -0.4441865086555481, -0.13578954339027405, 0.14722825586795807, 0.30556103587150574, -0.3453030586242676, -0.022343799471855164, 0.10801100730895996, 0.5610315203666687, -0.5003759264945984, -0.31195980310440063, -0.9579929113388062, -0.18164925277233124, 0.6820487976074219, 0.3193085789680481, 0.8340448141098022, 0.18731530010700226, -0.7347195148468018, 0.12866313755512238, -1.323970079421997, 0.07650710642337799, 0.6465022563934326, 0.23946774005889893, -0.5545986890792847, 0.8594784736633301, -0.28587964177131653, 0.6262496113777161, 0.27284669876098633, -0.1164529025554657, 0.27842557430267334, -0.23030753433704376, -0.2735063433647156, 0.033087875694036484, 0.3459727466106415, 0.8204495906829834, 0.1624865084886551, -0.01998494565486908, -0.2212396264076233, 0.0020716190338134766, 0.2684449553489685, -0.793509304523468, -0.47126680612564087, 0.1926698237657547, -0.558952808380127, -0.09108491986989975, 0.4327021837234497, -1.0976831912994385, -0.48129838705062866, -0.1879846304655075, 0.054681405425071716, -0.545169472694397, -0.36979490518569946, 0.07273277640342712, -0.7925415635108948, -0.1243419498205185, 0.5709511041641235, -0.6230257749557495, 0.4397463798522949, 0.5336257815361023, 0.7861636877059937, 0.2330387532711029, -0.23613610863685608, -0.6695021390914917, 0.48848289251327515, -0.8661866784095764, 0.3686073422431946, -0.3073781132698059, -0.8298643231391907, -0.09631041437387466, 0.539315938949585, 0.20664848387241364, -0.6653256416320801, 0.707404613494873, -0.5496982336044312, -0.07806532829999924, -0.43082869052886963, -0.243220254778862, 0.17460417747497559, 0.11115416139364243, -0.6238910555839539, 0.9402235746383667, 0.5551108121871948, -0.5841097831726074, 0.3170127868652344, -0.4869505763053894, -0.6865584850311279, 0.2674816846847534, -0.008750803768634796, -0.04715215414762497, 0.3279530704021454, -0.1598399579524994, -0.0020513907074928284, 0.10505764931440353, 0.00829961895942688, -0.21891693770885468, -0.47863051295280457, 0.06349954754114151, 0.15165002644062042, 1.2536835670471191, 0.40836217999458313, -0.3771880269050598, -0.13140134513378143, -1.0526151657104492, 0.025433078408241272, 0.05050114542245865, -0.4230678379535675, -0.2504568099975586, -0.14882178604602814, -0.20381587743759155, 0.43072614073753357, 0.211847186088562, -0.8131152987480164, 0.22643622756004333, -0.2064029574394226, 0.3644968271255493, 0.8222091794013977, 0.2703104317188263, 0.3976055383682251, -0.662528395652771, 0.6563140153884888, 0.2076188176870346, 0.49590182304382324, 0.3540418744087219, -0.38458251953125, -0.9641585350036621, -0.44216156005859375, -0.1011742651462555, 0.2975531816482544, -0.7744960188865662, 0.584732174873352, 0.012979812920093536, -0.583670437335968, -0.44652819633483887, -0.1548808366060257, 0.27553316950798035, -0.06606584787368774, 0.033349260687828064, -0.4049779772758484, -0.7394419312477112, -1.0127894878387451, -0.13788151741027832, -0.5021387338638306, -0.21892833709716797, 0.316058874130249, 0.26177406311035156, -0.34290045499801636, 0.7610751390457153, -0.6059278249740601, -0.7040643692016602, -0.1397356241941452, -0.09959873557090759, 0.6187719106674194, 0.9297673106193542, 0.7491384744644165, -0.7224894165992737, -0.8973820209503174, -0.05623088777065277, -0.5420041680335999, -0.0200444795191288, 0.038149844855070114, -0.18260671198368073, -0.10515005141496658, 0.2235255241394043, -0.6100807189941406, 0.8851077556610107, 0.4322497844696045, -0.6815470457077026, 0.5210592746734619, -0.44444164633750916, 0.6073800921440125, -0.8642842173576355, -0.2911489009857178, -0.16823577880859375, -0.1976119577884674, -0.7090163826942444, 0.19411532580852509, -0.3002234399318695, -0.33029866218566895, -0.7474033832550049, 0.5274897217750549, -0.949701189994812, -0.18781507015228271, -0.3367280066013336, -0.03423096239566803, 0.25807833671569824, 0.19490540027618408, -0.2356024831533432, 0.8900530338287354, 0.9160482883453369, -0.7121309041976929, 0.5487279295921326, 0.3930911421775818, -0.1920013725757599, 0.7131237983703613, -0.38877418637275696, 0.05161998048424721, -0.1234494149684906, 0.14374573528766632, -1.1263887882232666, -0.5611584186553955, 0.13677364587783813, -0.7127033472061157, 0.17686951160430908, -0.16556832194328308, -0.09428530186414719, -0.6608462929725647, -0.3380642533302307, 0.25910115242004395, 0.48612266778945923, -0.4796990752220154, 0.6188147068023682, 0.5728044509887695, 0.026518702507019043, -0.5307408571243286, -0.7206822633743286, 0.20418094098567963, 0.0396462008357048, -0.5569697618484497, 0.3011690378189087, 0.006543636322021484, -0.6622449159622192, -0.37112486362457275, -0.26354193687438965, -0.6043857932090759, -0.2267974317073822, 0.7826987504959106, 0.11994192004203796, -0.0901225358247757, -0.20310261845588684, -0.3199536204338074, -0.06167520955204964, 0.3048745393753052, -0.07575280219316483, 0.7232836484909058, -0.3362374007701874, -0.17850065231323242, -0.887734055519104, 0.6527543663978577, 0.9970463514328003, 0.09446695446968079, 0.8066439628601074, 0.46324220299720764, -0.3564748764038086, -0.13046619296073914, -0.3535460829734802, -0.15120592713356018, -0.6857745051383972, -0.18067993223667145, -0.5322474241256714, -0.541143536567688, 0.405306875705719, 0.10101432353258133, -0.002104341983795166, 0.5167046189308167, 0.25336089730262756, -0.2880684733390808, 0.7550322413444519, 1.0343406200408936, 0.139179527759552, 0.3602914810180664, -0.28547126054763794, 0.6341596245765686, -0.8329952955245972, -0.3405216336250305, -0.4548070430755615, -0.25635868310928345, -0.3121439814567566, -0.10750839114189148, 0.5791019797325134, 0.28182145953178406, -0.44634687900543213, 0.12506791949272156, -0.5994207859039307, 0.6587362885475159, 0.6273984909057617, 0.5719727277755737, 0.19973009824752808, -0.4619945287704468, 0.19982939958572388, 0.0481666699051857, -0.45745593309402466, -0.40091103315353394, 0.7711142301559448, 0.239962637424469, 0.836402416229248, 0.2092711329460144, 0.495777428150177, 0.33375436067581177, 0.25280576944351196, -0.6318978667259216, 0.20098097622394562, -0.222828209400177, -1.2459611892700195, -0.20642685890197754, -0.16551320254802704, -1.0080583095550537, -0.11792058497667313, -0.1828898787498474, -0.8406623601913452, 0.26657307147979736, -0.19225652515888214, -0.6640648245811462, 0.5206148624420166, -0.5103873014450073, 0.6934713125228882, -0.23555894196033478, -0.2817091941833496, 0.1193007081747055, -0.6889920234680176, 0.5254614949226379, 0.3667148947715759, 0.291684091091156, -0.3796897530555725, -0.31928759813308716, 0.5068994760513306, -0.8812246322631836, 0.4408113658428192, -0.10565005987882614, 0.19428130984306335, 0.5358880758285522, 0.4153594970703125, 0.38239696621894836, 0.28699085116386414, -0.2459375262260437, -0.23415438830852509, 0.22503438591957092, -0.7581344842910767, -0.27754613757133484, 0.9095459580421448, -0.7519426345825195, -0.8586918115615845, -0.6954257488250732, -0.3064495921134949, 0.28865256905555725, 0.027814753353595734, 0.7154771089553833, 0.645688533782959, -0.18821047246456146, 0.2377701848745346, 0.7208226919174194, -0.014694392681121826, 0.7235565185546875, 0.2941119372844696, -0.4056650400161743, -0.6169788241386414, 0.7182323932647705, 0.26270410418510437, 0.05162673443555832, 0.028327936306595802, 0.305873841047287, -0.17546698451042175, -0.15078604221343994, -0.6318324208259583, -0.0639532133936882, -0.7465730905532837, -0.09279506653547287, -0.7541394829750061, -0.25077366828918457, -0.711459219455719, -0.8068135976791382, -0.7080166339874268, -0.45604419708251953, -0.4301193058490753, -0.23352199792861938, 0.5163111090660095, 1.1627082824707031, -0.2613151967525482, 0.8011053204536438, -0.8900958299636841, 0.4193631410598755, 0.49695414304733276, 0.7519732117652893, -0.11060995608568192, -0.6746934056282043, -0.07836242020130157, -0.5338752865791321, -0.2948507070541382, -1.0156972408294678, 0.3177468180656433, -0.03688589483499527, 0.40537142753601074, 0.42938917875289917, 0.2519027590751648, 0.49392780661582947, -0.30073127150535583, 1.1130690574645996, 0.7274304628372192, -0.8033812046051025, 0.519527792930603, -0.7635002136230469, 0.16122305393218994, 0.9363657236099243, 0.5447748303413391, -0.4417076110839844, -0.15113931894302368, -1.0259766578674316, -0.8431372046470642, 0.5963036417961121, 0.154399111866951, 0.016843900084495544, 0.018214160576462746, 0.03168261796236038, 0.2946636974811554, 0.3591306209564209, -0.7847291231155396, -0.8240218758583069, -0.13851101696491241, 0.2580331265926361, 0.3145604729652405, -0.16485397517681122, -0.30038729310035706, -0.611615777015686, 0.8711388111114502, 0.1828646957874298, 0.3546234369277954, 0.12073377519845963, 0.04369349032640457, -0.35506927967071533, 0.14787030220031738, 0.552300214767456, 1.2529058456420898, -0.40983325242996216, 0.36739107966423035, 0.17512641847133636, -0.6540074348449707, 0.6494999527931213, -0.3036351501941681, -0.021784229204058647, 0.6203134655952454, 0.17760881781578064, 0.2852841913700104, 0.31559956073760986, -0.36214280128479004, 0.6047804355621338, -0.029421962797641754, -0.17758488655090332, -0.7005698084831238, 0.15866976976394653, 0.02935054898262024, 0.27507975697517395, 0.43920236825942993, 0.24443349242210388, 0.08246780931949615, -1.0602879524230957, 0.5711052417755127, 0.24493923783302307, -0.8676615953445435, -0.3011007606983185, 0.7047957181930542, 0.4075390696525574, -0.4759957194328308, 0.38749080896377563, 0.012702599167823792, -0.6710242033004761, 0.5987739562988281, 0.5510413646697998, 0.7569676637649536, -0.47024261951446533, 0.30880194902420044, 0.6245604157447815, 0.06711314618587494, 0.2055054008960724, 0.6923206448554993, 0.031493958085775375, -0.4473864436149597, 0.23022444546222687, -0.5986735820770264, -0.14689938724040985, 0.13735318183898926, -0.8047428131103516, 0.3515335023403168, -0.9312613010406494, -0.2408994436264038, 0.08751562982797623, 0.11761122196912766, -0.6130945682525635, 0.6674697995185852, -0.008525177836418152, 0.9280493259429932, -0.8549083471298218, 0.962627649307251, 0.855958104133606, -0.31830841302871704, -0.7709447145462036, -0.3355674147605896, 0.020139683037996292, -0.666053056716919, 0.7108277082443237, -0.18972992897033691, -0.4120742678642273, -0.09323986619710922, -0.622982919216156, -1.0003725290298462, 0.030618011951446533, 0.017415642738342285, -0.46250346302986145, 0.4454795718193054, -0.5157254934310913, 0.32896843552589417, -0.19169752299785614, 0.3050948977470398, 0.7719473838806152, 0.7958453297615051, 0.22960808873176575, -0.6354779005050659, -0.4466683268547058, -0.010275978595018387, -0.16682831943035126, 0.45458120107650757, -1.0710972547531128, 0.9677367806434631, -0.465257465839386, -0.3473321199417114, 0.2706642746925354, 0.7977622747421265, 0.25385016202926636, 0.35241299867630005, 0.6219539642333984, 0.901680588722229, 0.3645011782646179, -0.31178319454193115, 0.7276746034622192, 0.24263358116149902, 0.41525399684906006, 0.7364204525947571, -0.2271222174167633, 0.5403848886489868, 0.890641450881958, -0.786162257194519, 0.5381766557693481, 0.7879031896591187, 0.16047367453575134, 0.7758152484893799, 0.5944145321846008, -0.6119526624679565, -0.11859416216611862, -0.14641423523426056, -0.6171559691429138, 0.19797521829605103, 0.05292651057243347, -0.11974731832742691, -0.2846011519432068, -0.13567379117012024, 0.12295036017894745, 0.2836453914642334, -0.5959327816963196, 0.606866717338562, 0.34341585636138916, -0.6328279972076416, 0.21025118231773376, -0.2577958106994629, 0.6709499359130859, -0.597815752029419, 0.027336470782756805, -0.22699351608753204, 0.4181041717529297, -0.4618743360042572, -1.007582426071167, 0.47138410806655884, -0.2920239567756653, -0.4055127203464508, -0.2694243788719177, 0.8072364330291748, -0.2213391363620758, -0.5572859048843384, 0.3748602867126465, 0.13466602563858032, 0.41473665833473206, 0.4014597535133362, -0.548729419708252, 0.04779002070426941, 0.13760146498680115, -0.20061832666397095, 0.3601188063621521, 0.2973729968070984, 0.2548877000808716, 0.7100129723548889, 0.5052472352981567, 0.2219872921705246, 0.25694340467453003, -0.18668603897094727, 0.8387457728385925, -0.910279393196106, -0.8167636394500732, -0.9497334957122803, 0.38498952984809875, 0.025727514177560806, -0.8801448345184326, 0.792030930519104, 0.7652606964111328, 0.5113967061042786, -0.48778921365737915, 0.4755285382270813, -0.3264795243740082, 0.5047135949134827, -0.13870957493782043, 1.0010894536972046, -0.7607628703117371, -0.2958727777004242, -0.030554018914699554, -0.9216442108154297, -0.2533750832080841, 0.5375744104385376, 0.15408331155776978, -0.14608070254325867, 0.4385908544063568, 0.4421638548374176, 0.022173460572957993, 0.25223129987716675, 0.3286101222038269, 0.06042804569005966, 0.14508435130119324, 0.5510439872741699, 1.0931142568588257, -0.4339442551136017, 0.18694785237312317, -0.49234724044799805, -0.45362499356269836, -0.41534894704818726, -0.954805850982666, -0.6640312075614929, -0.4818545877933502, -0.2973933517932892, -0.5915579199790955, 0.11726466566324234, 0.9300887584686279, 0.9018136262893677, -0.6256729364395142, -0.4124363958835602, 0.257135272026062, 0.302933931350708, -0.22954198718070984, -0.14626771211624146, 0.2736491858959198, -0.006407761946320534, -0.7211180329322815, 0.39309436082839966, 0.8079761266708374, 0.38871288299560547, 0.08443976938724518, -0.07217144966125488, -0.4407082200050354, 0.02610170841217041, 0.537355899810791, 0.5729560256004333, -0.6281179785728455, -0.4099644422531128, -0.5328319668769836, -0.21386729180812836, 0.15529415011405945, 0.4807756543159485, -0.5166375041007996, 0.32661134004592896, 0.8128959536552429, 0.17017662525177002, 0.7187885046005249, -0.0022493302822113037, 0.6678643226623535, -0.8970248103141785, 0.4446263015270233, 0.39533841609954834, 0.5681870579719543, 0.08998032659292221, -0.7339165210723877, 0.9820243120193481, 0.49674344062805176, -0.6334056854248047, -1.0034244060516357, 0.03079952299594879, -1.1931145191192627, -0.37881749868392944, 0.9890843033790588, -0.09595756232738495, -0.9597461223602295, -0.36448946595191956, -0.36777186393737793, 0.07989630848169327, -0.3380977511405945, 0.3549822270870209, 0.8268198370933533, -0.2538071870803833, -0.22041818499565125, -0.950558066368103, 0.4752945005893707, 0.3102529048919678, -0.5886629819869995, -0.051143623888492584, 0.3293913006782532, 0.4523686170578003, 0.30097001791000366, 0.523955762386322, 0.10428232699632645, 0.8970535397529602, 0.25200408697128296, 0.30491408705711365, -0.045266419649124146, -0.5900783538818359, -0.01606648974120617, 0.2621474862098694, 0.04487812519073486, -0.6869445443153381 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ScandEval/norne-nb-mini
ScandEval
2023-07-05T09:42:22Z
221
0
null
[ "task_categories:token-classification", "size_categories:1K<n<10K", "language:nb", "license:other", "region:us" ]
2023-07-05T09:42:22Z
2022-06-14T18:21:00.000Z
2022-06-14T18:21:00
--- dataset_info: features: - name: text dtype: string - name: tokens sequence: string - name: labels sequence: string splits: - name: train num_bytes: 317673 num_examples: 1024 - name: test num_bytes: 626004 num_examples: 2048 - name: val num_bytes: 87124 num_examples: 256 download_size: 455512 dataset_size: 1030801 license: other task_categories: - token-classification language: - nb size_categories: - 1K<n<10K --- # Dataset Card for "norne-nb-mini" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6817793846130371, -0.4543326795101166, 0.13300929963588715, -0.010841336101293564, -0.22640401124954224, -0.2692020535469055, 0.4401020407676697, -0.07401980459690094, 1.0763859748840332, 0.6323997974395752, -1.1101020574569702, -0.7772877216339111, -0.42176365852355957, -0.1787857860326767, -0.3775862753391266, 1.2756600379943848, 0.45151016116142273, -0.036459293216466904, -0.2634669244289398, -0.17357073724269867, -0.1911788284778595, -0.36528280377388, -0.8622692823410034, -0.5441067218780518, 0.9820725321769714, 1.01448392868042, 0.3723662197589874, 0.6007089018821716, 0.7305393218994141, 0.0643223375082016, -0.0123797208070755, -0.3407127559185028, -0.44315141439437866, -0.23306000232696533, -0.19385004043579102, -0.5250017642974854, -1.517358660697937, -0.08220953494310379, 0.6939361095428467, 0.5597637295722961, -0.054012760519981384, 0.9664778113365173, -0.15152373909950256, 0.760942816734314, -0.37385085225105286, 0.38673555850982666, -0.013418561778962612, -0.1937439739704132, -0.7354755401611328, 0.04424210265278816, 0.24544644355773926, -0.6607704162597656, -0.028211042284965515, -0.9993162751197815, 0.37210750579833984, 0.09196972846984863, 0.7571609616279602, 0.25457191467285156, -0.18011406064033508, -0.2039882391691208, -0.18711188435554504, 0.16752131283283234, -0.3563946485519409, 0.18699753284454346, 0.38252097368240356, 0.39811971783638, -0.1619873195886612, -0.5542677044868469, -0.2705466151237488, 0.01657482609152794, -0.1512521207332611, 0.10522949695587158, 0.09721125662326813, 0.026048382744193077, 0.7357499599456787, 0.5652317404747009, -0.59788978099823, -0.13317131996154785, -0.37320777773857117, -0.21620197594165802, 0.6844580173492432, 0.3614427447319031, 0.20883843302726746, -0.4097311496734619, 0.033035699278116226, -0.18551811575889587, -0.5659809112548828, -0.1998586654663086, 0.5153988599777222, 0.3512759208679199, -1.2827727794647217, 0.6660280227661133, -0.00954819843173027, 0.42935502529144287, 0.31366652250289917, 0.2423785775899887, 0.49965155124664307, -0.4311944842338562, -0.2545408010482788, 0.0423588901758194, 0.42773327231407166, 0.4568009078502655, 0.05125969648361206, 0.26216793060302734, -0.0831177830696106, -0.0019905418157577515, -0.24472728371620178, -1.2692195177078247, -1.0517029762268066, 0.13075542449951172, -0.8082664608955383, -0.23839405179023743, 0.2626221179962158, -1.2399487495422363, -0.7164369821548462, -0.1760900765657425, 0.09145423024892807, 0.07147838175296783, -0.7461864948272705, -0.4498651325702667, -0.6223699450492859, 0.3506634831428528, 0.03222604840993881, -0.9608075022697449, 0.6131590008735657, 0.42007139325141907, 0.357324481010437, 0.35844212770462036, -0.0857229232788086, -0.6348084211349487, 0.17854207754135132, -0.11073121428489685, 1.04696786403656, -0.5236557126045227, -0.3962182402610779, -0.12920157611370087, 0.3078823685646057, 0.022898856550455093, -0.579985499382019, 0.5863534212112427, -0.28738969564437866, -0.3816349506378174, -0.5309025645256042, -0.5097966194152832, -0.018780440092086792, 0.3174341320991516, -1.1574466228485107, 0.9361958503723145, 0.07856419682502747, -0.6411308646202087, 0.3701106607913971, -1.3639028072357178, -0.3191249370574951, 0.4246727228164673, -0.1551569104194641, -0.31716853380203247, 0.5162367820739746, 0.08162989467382431, 0.3631603717803955, -0.3486537039279938, 0.11766477674245834, -0.8144783973693848, -0.10448108613491058, -0.0028787804767489433, 0.1547008454799652, 0.852526068687439, -0.10330623388290405, 0.43215858936309814, -0.01781785674393177, -1.0899842977523804, -0.20597264170646667, 0.30887603759765625, -0.09082186222076416, -0.1967223882675171, -0.7517109513282776, 0.37574711441993713, -0.3500581979751587, 0.5088057518005371, -0.6329355239868164, 0.48210668563842773, 0.08467154204845428, 0.11350472271442413, 0.6198663115501404, 0.20356446504592896, 0.660477876663208, -0.3749452233314514, 0.5280160307884216, -0.3457906246185303, 0.7092927098274231, 0.26573532819747925, -0.4126957356929779, -0.9302071332931519, 0.046737395226955414, 1.0705965757369995, 0.6042070984840393, -0.7589637041091919, 0.3840428590774536, 0.010769033804535866, -0.5173511505126953, -0.21652522683143616, 0.012165854685008526, 0.2171231359243393, 0.25029054284095764, 0.28280219435691833, -0.44011032581329346, -0.9439716935157776, -0.7747772336006165, 0.43168485164642334, -0.07813940197229385, 0.18262410163879395, 0.6945576071739197, 1.0379661321640015, -0.5310580730438232, 0.735081672668457, -0.6733205914497375, -0.42548295855522156, -0.08284598588943481, -0.13778908550739288, 0.5289127826690674, 0.7179783582687378, 0.8525590896606445, -0.6227737069129944, -0.5641459822654724, -0.5282487869262695, -0.5924285054206848, -0.4415639340877533, 0.3702205419540405, -0.40463346242904663, 0.02559150941669941, 0.43340685963630676, -0.16792257130146027, 0.8640934228897095, 1.0498645305633545, -0.3836442828178406, 0.3884817957878113, 0.17049765586853027, -0.0730341225862503, -1.0780346393585205, 0.4346446096897125, -0.32114917039871216, -0.24027018249034882, -0.4326131045818329, -0.008505914360284805, 0.08842024207115173, -0.1325574815273285, 0.019304754212498665, 0.7859659790992737, -0.340859591960907, -0.06924045085906982, -0.29644137620925903, 0.11719997227191925, -0.06313426792621613, 0.01536555215716362, 0.2148158848285675, 0.3674962818622589, 1.0256617069244385, -0.4985545873641968, 0.9641588926315308, 0.4594000279903412, 0.2646472454071045, 1.201216459274292, -0.7904270887374878, 0.267172634601593, -0.10177942365407944, 0.33837994933128357, -0.5160949230194092, -0.730138897895813, 0.5575781464576721, -0.4458613991737366, 0.4977163076400757, -0.9540565013885498, -0.827438235282898, -0.4752052426338196, -0.186306893825531, 0.7573767900466919, 0.44339215755462646, -0.6773374080657959, 0.648102879524231, 0.5703738927841187, -0.11512814462184906, 0.19698485732078552, -1.095072865486145, -0.07717223465442657, -0.22813159227371216, -0.27836257219314575, 0.3338618278503418, -0.2945558428764343, 0.15754210948944092, 0.08401096612215042, -0.02260103076696396, -0.3182388246059418, -0.38735681772232056, 0.7446029186248779, 0.3559533357620239, -0.3245825469493866, 0.4215857982635498, -0.03201428800821304, -1.0280693769454956, -0.01919451728463173, -0.18323439359664917, 0.3867330551147461, -0.053101878613233566, 0.05785258859395981, -0.4771876931190491, 0.42515841126441956, -0.017270628362894058, 0.1782737523317337, 0.6200917959213257, 0.8963321447372437, -0.6335805654525757, 0.007615463808178902, -0.7355815768241882, -0.5141122937202454, -0.4307020306587219, -0.2515662610530853, -0.3012465834617615, -0.6738336086273193, 0.49617457389831543, 0.014289315789937973, 0.014584677293896675, 0.7905495762825012, 0.34427720308303833, -0.3055385649204254, 0.25579214096069336, 1.0650360584259033, -0.11470098793506622, 0.5493859052658081, -0.4608163833618164, -0.2691206932067871, -0.9812490940093994, -0.3987232446670532, -0.5206774473190308, -0.7039914727210999, -0.7349467873573303, -0.3476240336894989, 0.15615373849868774, 0.1376936286687851, -0.29000842571258545, 0.8205959796905518, -0.3875869810581207, 0.42676082253456116, 0.711424708366394, 0.11616094410419464, -0.017290383577346802, -0.1399349421262741, 0.24520550668239594, 0.35808616876602173, -0.94048011302948, -0.3479330539703369, 1.430938720703125, 0.30575597286224365, 1.0719469785690308, 0.25732898712158203, 1.1668965816497803, 0.01992340013384819, 0.2401963621377945, -0.19658496975898743, 0.49171292781829834, -0.3308092951774597, -0.9695753455162048, -0.16051961481571198, -0.354912668466568, -0.754245936870575, -0.6071357131004333, -0.4763678312301636, -0.3527070879936218, 0.6918501853942871, 0.5606383085250854, -0.6173741221427917, 0.24278472363948822, -0.7324095368385315, 1.0639581680297852, 0.0346536785364151, 0.14119546115398407, -0.027718817815184593, -0.6749407052993774, 0.03590581566095352, 0.30338984727859497, 0.02780827507376671, -0.19514399766921997, -0.2547524869441986, 1.079127311706543, -0.3956584632396698, 1.0745394229888916, -0.47658640146255493, 0.2880326509475708, 0.21293100714683533, -0.08434167504310608, 0.1708703488111496, 0.8255339860916138, -0.12290069460868835, 0.21392196416854858, 0.2387811839580536, -0.6393837928771973, -0.317291259765625, 0.8065148591995239, -0.5483212471008301, 0.32491207122802734, -0.3063657879829407, -0.5154643058776855, 0.19787687063217163, 0.3917897343635559, 0.4052022099494934, 0.8196440935134888, -0.4000202417373657, -0.004186961799860001, 0.9524991512298584, 0.1304144412279129, 0.3457544445991516, 0.3524501919746399, -0.5415021777153015, -0.5525044202804565, 0.9694600105285645, 0.27729690074920654, -0.09390205144882202, 0.38873493671417236, 0.43917950987815857, -0.25770410895347595, -0.3305521011352539, -0.5978000164031982, 0.4462634325027466, -0.29092344641685486, -0.44734567403793335, -0.3783643841743469, -0.27239495515823364, -0.6267437934875488, -0.1161823496222496, -0.4435630142688751, -0.6178669333457947, -0.785611093044281, -0.3769371211528778, 0.9564844369888306, 0.881651759147644, -0.9983139038085938, 0.6478714942932129, -0.7019257545471191, 0.7252776622772217, 0.3579480051994324, 0.7371606826782227, -0.28978103399276733, -0.5269603729248047, -0.09414474666118622, -0.09319189935922623, 0.07199786603450775, -0.5489896535873413, -0.31998690962791443, 0.07370246201753616, 0.46822425723075867, 0.30009275674819946, 0.0450722835958004, 0.7604192495346069, 0.048107318580150604, 0.4999959170818329, 0.3213536739349365, -0.6594714522361755, 0.6427865028381348, -0.27253955602645874, 0.27545082569122314, 1.0578749179840088, 0.21196827292442322, -0.18908526003360748, 0.4909195303916931, -1.2006211280822754, -0.5569398403167725, 0.6329983472824097, 0.055392373353242874, 0.10875940322875977, 0.40862947702407837, 0.4837382137775421, 0.09485827386379242, 0.5796263217926025, -0.9085162878036499, -0.9816838502883911, -0.1253628134727478, 0.14750370383262634, 0.16440218687057495, -0.8546192049980164, -0.15185604989528656, -0.4523999094963074, 0.7592324018478394, -0.08439408242702484, 0.589431643486023, -0.07400734722614288, 0.23818683624267578, 0.06857850402593613, -0.1426168978214264, 0.254384845495224, 0.19544601440429688, -0.7497245073318481, -0.11007305979728699, 0.11027225106954575, -0.42778968811035156, -0.4055553078651428, 0.4667889475822449, -0.19604560732841492, -0.19563959538936615, 0.5942170023918152, 0.5581701993942261, -0.4418697655200958, 0.07097648084163666, 0.36430636048316956, -0.14471971988677979, -0.41616106033325195, -0.4257918894290924, 0.00032067159190773964, 0.2786436676979065, 0.28936517238616943, -0.33436256647109985, -0.06840376555919647, 0.3432086706161499, -0.584230899810791, 0.3053620457649231, -0.03177858516573906, -0.7752923965454102, -0.33580154180526733, 0.15872034430503845, 0.5837796330451965, -0.42801082134246826, 1.0216364860534668, -0.42237478494644165, -0.21456432342529297, 0.7642212510108948, 0.2424105852842331, 0.788025975227356, -0.20450934767723083, 0.39479511976242065, 0.46369045972824097, 0.4165385961532593, 0.4723494350910187, 0.8819438815116882, -0.19025449454784393, -0.43553680181503296, -0.02784395031630993, -0.3140765130519867, -0.25911712646484375, -0.21776503324508667, -1.0588995218276978, 0.2548152208328247, -0.9487723708152771, -0.45197737216949463, -0.015678176656365395, 0.18471291661262512, -0.8341548442840576, 0.1539621353149414, 0.3323632478713989, 1.554182767868042, -0.967340886592865, 0.9862707257270813, 0.8980238437652588, -0.3577513098716736, -0.7352274656295776, 0.00180820282548666, 0.21734654903411865, -0.5404319763183594, 0.24992385506629944, 0.060320474207401276, 0.27064502239227295, -0.2035028040409088, -0.8005977869033813, -0.8044459223747253, 1.1711090803146362, 0.37997370958328247, -0.7095400094985962, 0.34088823199272156, -0.26285016536712646, 0.3303113579750061, -0.4996574819087982, 0.42268067598342896, 0.754562258720398, 0.9086553454399109, 0.2572421431541443, -0.844113826751709, -0.12602567672729492, -0.35184603929519653, -0.22104832530021667, 0.4709732234477997, -0.7578986883163452, 0.554786205291748, 0.019912265241146088, 0.012040401808917522, 0.39459192752838135, 0.5536450147628784, 0.03932712599635124, 0.44167643785476685, 0.3843323886394501, 0.711944580078125, 0.8043442964553833, -0.2918641269207001, 0.8679219484329224, 0.32505160570144653, 0.46958795189857483, 1.4041118621826172, -0.06857234239578247, 0.28137528896331787, 0.5771622657775879, 0.13008324801921844, 0.6480278968811035, 0.4615235924720764, -0.45732128620147705, 0.4855360686779022, 0.3335171639919281, 0.04568327218294144, -0.37906575202941895, -0.47344380617141724, -0.7361388206481934, -0.11766719818115234, 0.4403453469276428, -0.3189276456832886, -0.1781323105096817, -0.17469315230846405, -0.13300107419490814, -0.3104458451271057, -0.5705189108848572, 0.8169916868209839, 0.32267019152641296, 0.2333545833826065, 0.019086508080363274, -0.15209057927131653, 0.3424462378025055, -0.5897176265716553, -0.37246790528297424, -0.1583266258239746, 0.0751296803355217, -0.7540521621704102, -0.952966570854187, 0.7547805309295654, -0.32036471366882324, -0.5962429046630859, 0.03552050143480301, 0.5856014490127563, -0.06648261845111847, -0.8217411041259766, 0.4759212136268616, 0.2346230149269104, 0.26155200600624084, 0.05308603495359421, -1.2475974559783936, 0.29062333703041077, -0.08285044133663177, 0.12571997940540314, 0.22347381711006165, 0.11347014456987381, 0.22495096921920776, 0.5457528829574585, 0.5454407930374146, -0.10259076952934265, -0.14653557538986206, 0.3340543508529663, 0.9382578134536743, -0.6140189170837402, -0.294374942779541, -0.6022502779960632, 0.5590599775314331, -0.37996798753738403, -0.5669569373130798, 0.6725782752037048, 0.9412006139755249, 0.8176215887069702, -0.11505850404500961, 0.6394909620285034, -0.7325199246406555, 0.7166739702224731, -0.37014541029930115, 0.4187171459197998, -0.5357805490493774, -0.12507587671279907, -0.2343967854976654, -0.9704707860946655, -0.719151496887207, 0.6986426115036011, -0.10834388434886932, -0.05194774270057678, 0.6674103140830994, 1.209233283996582, -0.36154186725616455, 0.36284539103507996, 0.05684960260987282, 0.23913897573947906, -0.06818383932113647, 0.5971779823303223, 0.4237300753593445, -0.6767887473106384, 0.35745710134506226, -0.35075050592422485, -0.6740509867668152, -0.18335694074630737, -1.304286003112793, -1.3035460710525513, -0.11403932422399521, -0.7679809331893921, -0.47030913829803467, 0.03563263639807701, 0.8420971632003784, 1.1677534580230713, -1.160464882850647, -0.5269593000411987, -0.051176272332668304, 0.3850521445274353, 0.08791724592447281, -0.07409234344959259, 0.5659881234169006, 0.6600103378295898, -0.4944668114185333, -0.02253107726573944, 0.12525640428066254, 0.3274313509464264, 0.08235940337181091, 0.06993896514177322, 0.005394798703491688, -0.11765868216753006, 0.09323294460773468, 0.4586446285247803, -0.16708879172801971, -0.02631044015288353, -0.4878990054130554, 0.05465967208147049, -0.1281420886516571, 0.8933266401290894, -0.4674708843231201, -0.04098270460963249, 0.5853465795516968, 0.13064488768577576, 0.544499397277832, -0.001743481494486332, 0.352122038602829, -0.5823414325714111, 0.10079533606767654, -0.11201867461204529, 0.3136965036392212, -0.048213206231594086, -0.20498251914978027, 0.9093672037124634, 0.41444385051727295, -0.5246161818504333, -0.5609121918678284, 0.30641108751296997, -1.2255992889404297, 0.4231005311012268, 0.8711552619934082, 0.1481882482767105, -0.4159221053123474, -0.1671384871006012, -0.3382631838321686, -0.07911209017038345, -1.0792272090911865, -0.15149015188217163, 0.19009876251220703, -0.06468497961759567, -0.45408302545547485, -0.39770758152008057, 0.3807036280632019, -0.3277053236961365, -0.9402586221694946, -0.021526765078306198, 0.39345458149909973, 0.2745804786682129, 0.3252002000808716, 0.7270969748497009, -0.14217506349086761, 0.2830933630466461, 0.45971840620040894, 0.37143826484680176, -0.3338700532913208, -0.8491906523704529, -0.26425623893737793, 0.013714458793401718, -0.20997010171413422, -0.48544996976852417 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
shmuhammad/AfriSenti-twitter-sentiment
shmuhammad
2023-09-03T09:59:15Z
221
3
null
[ "task_categories:text-classification", "task_ids:sentiment-analysis", "task_ids:sentiment-classification", "task_ids:sentiment-scoring", "task_ids:semantic-similarity-classification", "task_ids:semantic-similarity-scoring", "multilinguality:monolingual", "multilinguality:multilingual", "size_categories:100K<n<1M", "language:amh", "language:ary", "language:ar", "language:arq", "language:hau", "language:ibo", "language:kin", "language:por", "language:pcm", "language:eng", "language:oro", "language:swa", "language:tir", "language:twi", "language:tso", "language:yor", "sentiment analysis, Twitter, tweets", "sentiment", "arxiv:2302.08956", "arxiv:2304.06845", "arxiv:2201.08277", "region:us" ]
2023-09-03T09:59:15Z
2023-02-16T21:02:20.000Z
2023-02-16T21:02:20
--- task_categories: - text-classification task_ids: - sentiment-analysis - sentiment-classification - sentiment-scoring - semantic-similarity-classification - semantic-similarity-scoring tags: - sentiment analysis, Twitter, tweets - sentiment multilinguality: - monolingual - multilingual size_categories: - 100K<n<1M language: - amh - ary - ar - arq - hau - ibo - kin - por - pcm - eng - oro - swa - tir - twi - tso - yor pretty_name: AfriSenti --- # Dataset Card for AfriSenti Dataset <p align="center"> <img src="https://raw.githubusercontent.com/afrisenti-semeval/afrisent-semeval-2023/main/images/afrisenti-twitter.png", width="700" height="500"> -------------------------------------------------------------------------------- ## Dataset Description - **Homepage:** https://github.com/afrisenti-semeval/afrisent-semeval-2023 - **Repository:** [GitHub](https://github.com/afrisenti-semeval/afrisent-semeval-2023) - **Paper:** [AfriSenti: AfriSenti: A Twitter Sentiment Analysis Benchmark for African Languages](https://arxiv.org/pdf/2302.08956.pdf) - **Paper:** [SemEval-2023 Task 12: Sentiment Analysis for African Languages (AfriSenti-SemEval)](https://arxiv.org/pdf/2304.06845.pdf) - **Paper:** [NaijaSenti: A Nigerian Twitter Sentiment Corpus for Multilingual Sentiment Analysis](https://arxiv.org/pdf/2201.08277.pdf) - **Leaderboard:** N/A - **Point of Contact:** [shamsuddeen Muhammad](shamsuddeen2004@gmail.com) ### Dataset Summary AfriSenti is the largest sentiment analysis dataset for under-represented African languages, covering 110,000+ annotated tweets in 14 African languages (Amharic, Algerian Arabic, Hausa, Igbo, Kinyarwanda, Moroccan Arabic, Mozambican Portuguese, Nigerian Pidgin, Oromo, Swahili, Tigrinya, Twi, Xitsonga, and Yoruba). The datasets are used in the first Afrocentric SemEval shared task, SemEval 2023 Task 12: Sentiment analysis for African languages (AfriSenti-SemEval). AfriSenti allows the research community to build sentiment analysis systems for various African languages and enables the study of sentiment and contemporary language use in African languages. ### Supported Tasks and Leaderboards The AfriSenti can be used for a wide range of sentiment analysis tasks in African languages, such as sentiment classification, sentiment intensity analysis, and emotion detection. This dataset is suitable for training and evaluating machine learning models for various NLP tasks related to sentiment analysis in African languages. [SemEval 2023 Task 12 : Sentiment Analysis for African Languages](https://codalab.lisn.upsaclay.fr/competitions/7320) ### Languages 14 African languages (Amharic (amh), Algerian Arabic (ary), Hausa(hau), Igbo(ibo), Kinyarwanda(kin), Moroccan Arabic/Darija(arq), Mozambican Portuguese(por), Nigerian Pidgin (pcm), Oromo (oro), Swahili(swa), Tigrinya(tir), Twi(twi), Xitsonga(tso), and Yoruba(yor)). ## Dataset Structure ### Data Instances For each instance, there is a string for the tweet and a string for the label. See the AfriSenti [dataset viewer](https://huggingface.co/datasets/shmuhammad/AfriSenti/viewer/shmuhammad--AfriSenti/train) to explore more examples. ``` { "tweet": "string", "label": "string" } ``` ### Data Fields The data fields are: ``` tweet: a string feature. label: a classification label, with possible values including positive, negative and neutral. ``` ### Data Splits The AfriSenti dataset has 3 splits: train, validation, and test. Below are the statistics for Version 1.0.0 of the dataset. | | ama | arq | hau | ibo | ary | orm | pcm | pt-MZ | kin | swa | tir | tso | twi | yo | |---|---|---|---|---|---|---|---|---|---|---|---|---|---|---| | train | 5,982 | 1,652 | 14,173 | 10,193 | 5,584| - | 5,122 | 3,064 | 3,303 | 1,811 | - | 805 | 3,482| 8,523 | | dev | 1,498 | 415 | 2,678 | 1,842 | 1,216 | 397 | 1,282 | 768 | 828 | 454 | 399 | 204 | 389 | 2,091 | | test | 2,000 | 959 | 5,304 | 3,683 | 2,962 | 2,097 | 4,155 | 3,663 | 1,027 | 749 | 2,001 | 255 | 950 | 4,516 | | total | 9,483 | 3,062 | 22,155 | 15,718 | 9,762 | 2,494 | 10,559 | 7,495 | 5,158 | 3,014 | 2,400 | 1,264 | 4,821 | 15,130 | ### How to use it ```python from datasets import load_dataset # you can load specific languages (e.g., Amharic). This download train, validation and test sets. ds = load_dataset("shmuhammad/AfriSenti-twitter-sentiment", "amh") # train set only ds = load_dataset("shmuhammad/AfriSenti-twitter-sentiment", "amh", split = "train") # test set only ds = load_dataset("shmuhammad/AfriSenti-twitter-sentiment", "amh", split = "test") # validation set only ds = load_dataset("shmuhammad/AfriSenti-twitter-sentiment", "amh", split = "validation") ``` ## Dataset Creation ### Curation Rationale AfriSenti Version 1.0.0 aimed to be used in the first Afrocentric SemEval shared task **[SemEval 2023 Task 12: Sentiment analysis for African languages (AfriSenti-SemEval)](https://afrisenti-semeval.github.io)**. ### Source Data Twitter #### 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 We anonymized the tweets by replacing all *@mentions* by *@user* and removed all URLs. ## Considerations for Using the Data ### Social Impact of Dataset The Afrisenti dataset has the potential to improve sentiment analysis for African languages, which is essential for understanding and analyzing the diverse perspectives of people in the African continent. This dataset can enable researchers and developers to create sentiment analysis models that are specific to African languages, which can be used to gain insights into the social, cultural, and political views of people in African countries. Furthermore, this dataset can help address the issue of underrepresentation of African languages in natural language processing, paving the way for more equitable and inclusive AI technologies. [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators AfriSenti is an extension of NaijaSenti, a dataset consisting of four Nigerian languages: Hausa, Yoruba, Igbo, and Nigerian-Pidgin. This dataset has been expanded to include other 10 African languages, and was curated with the help of the following: | Language | Dataset Curators | |---|---| | Algerian Arabic (arq) | Nedjma Ousidhoum, Meriem Beloucif | | Amharic (ama) | Abinew Ali Ayele, Seid Muhie Yimam | | Hausa (hau) | Shamsuddeen Hassan Muhammad, Idris Abdulmumin, Ibrahim Said, Bello Shehu Bello | | Igbo (ibo) | Shamsuddeen Hassan Muhammad, Idris Abdulmumin, Ibrahim Said, Bello Shehu Bello | | Kinyarwanda (kin)| Samuel Rutunda | | Moroccan Arabic/Darija (ary) | Oumaima Hourrane | | Mozambique Portuguese (pt-MZ) | Felermino Dário Mário António Ali | | Nigerian Pidgin (pcm) | Shamsuddeen Hassan Muhammad, Idris Abdulmumin, Ibrahim Said, Bello Shehu Bello | | Oromo (orm) | Abinew Ali Ayele, Seid Muhie Yimam, Hagos Tesfahun Gebremichael, Sisay Adugna Chala, Hailu Beshada Balcha, Wendimu Baye Messell, Tadesse Belay | | Swahili (swa) | Davis Davis | | Tigrinya (tir) | Abinew Ali Ayele, Seid Muhie Yimam, Hagos Tesfahun Gebremichael, Sisay Adugna Chala, Hailu Beshada Balcha, Wendimu Baye Messell, Tadesse Belay | | Twi (twi) | Salomey Osei, Bernard Opoku, Steven Arthur | | Xithonga (tso) | Felermino Dário Mário António Ali | | Yoruba (yor) | Shamsuddeen Hassan Muhammad, Idris Abdulmumin, Ibrahim Said, Bello Shehu Bello | ### Licensing Information This AfriSenti is licensed under a Creative Commons Attribution 4.0 International License ### Citation Information ``` @inproceedings{Muhammad2023AfriSentiAT, title={AfriSenti: A Twitter Sentiment Analysis Benchmark for African Languages}, author={Shamsuddeen Hassan Muhammad and Idris Abdulmumin and Abinew Ali Ayele and Nedjma Ousidhoum and David Ifeoluwa Adelani and Seid Muhie Yimam and Ibrahim Sa'id Ahmad and Meriem Beloucif and Saif Mohammad and Sebastian Ruder and Oumaima Hourrane and Pavel Brazdil and Felermino D'ario M'ario Ant'onio Ali and Davis Davis and Salomey Osei and Bello Shehu Bello and Falalu Ibrahim and Tajuddeen Gwadabe and Samuel Rutunda and Tadesse Belay and Wendimu Baye Messelle and Hailu Beshada Balcha and Sisay Adugna Chala and Hagos Tesfahun Gebremichael and Bernard Opoku and Steven Arthur}, year={2023} } ``` ``` @article{muhammad2023semeval, title={SemEval-2023 Task 12: Sentiment Analysis for African Languages (AfriSenti-SemEval)}, author={Muhammad, Shamsuddeen Hassan and Abdulmumin, Idris and Yimam, Seid Muhie and Adelani, David Ifeoluwa and Ahmad, Ibrahim Sa'id and Ousidhoum, Nedjma and Ayele, Abinew and Mohammad, Saif M and Beloucif, Meriem}, journal={arXiv preprint arXiv:2304.06845}, year={2023} } ``` ### Contributions [More Information Needed]
[ -0.7213175892829895, -0.4255906045436859, -0.15938174724578857, 0.5747917890548706, -0.26743704080581665, -0.0861954540014267, -0.3518960177898407, -0.44821083545684814, 0.7616535425186157, 0.2105984389781952, -0.5897043943405151, -0.8027182817459106, -0.7694767713546753, 0.26498499512672424, -0.23570331931114197, 0.8606001734733582, -0.19009777903556824, -0.21129995584487915, 0.3700149655342102, -0.7236204147338867, 0.06649898737668991, -0.5647791028022766, -0.6260567903518677, -0.08681926876306534, 0.43976929783821106, 0.485614538192749, 0.38355207443237305, 0.20927485823631287, 0.2830542325973511, 0.35953980684280396, 0.02875491976737976, 0.37651553750038147, -0.08019006997346878, -0.028574146330356598, 0.28210029006004333, -0.15686094760894775, -0.5787912011146545, 0.047255005687475204, 0.22329148650169373, 0.553790807723999, 0.06900865584611893, 0.3105044364929199, 0.24291855096817017, 0.6960694789886475, -0.4083027243614197, 0.14845336973667145, -0.345001757144928, -0.24418120086193085, -0.3088764250278473, 0.07242175191640854, 0.1474102884531021, -0.8550887703895569, -0.1489732712507248, -0.316756933927536, -0.021982364356517792, -0.23509101569652557, 1.1015783548355103, 0.004874344915151596, -0.3609287440776825, -0.2871140241622925, -0.13706260919570923, 0.6927591562271118, -0.8824175596237183, 0.059053365141153336, 0.4291245937347412, 0.3063489496707916, 0.2615743577480316, -0.27469250559806824, -0.578988254070282, 0.21378900110721588, -0.03458636999130249, 0.36768463253974915, 0.015950938686728477, -0.21329012513160706, 0.3057675361633301, 0.48968979716300964, -0.15935617685317993, -0.2670345604419708, -0.2916222810745239, -0.1630072444677353, 0.9869927167892456, -0.15353332459926605, 0.39797475934028625, -0.4781735837459564, -0.24358022212982178, -0.08581899106502533, -0.2359144240617752, 0.15316882729530334, 0.42348456382751465, 0.5211952328681946, -0.5280981659889221, 0.4482150375843048, -0.2729584276676178, 0.2890917956829071, -0.10631909221410751, -0.11662878096103668, 1.0249823331832886, -0.27025657892227173, -0.17342106997966766, -0.09070973843336105, 1.3867969512939453, 0.5914635062217712, 0.5209163427352905, 0.15071246027946472, -0.3543028235435486, 0.1505172997713089, -0.07398597151041031, -0.8277348279953003, -0.19793212413787842, 0.35259106755256653, -0.4719768464565277, -0.3665383756160736, -0.0033098477870225906, -1.080948829650879, -0.33969447016716003, -0.010973715223371983, 0.4032627046108246, -0.676551103591919, -0.44258859753608704, -0.28222474455833435, -0.01885940134525299, 0.10848559439182281, 0.35240182280540466, -0.829954981803894, 0.0935966819524765, 0.23844106495380402, 0.8799837231636047, 0.1438790112733841, -0.18804630637168884, 0.13511788845062256, -0.24791091680526733, -0.09243226796388626, 0.4354519546031952, -0.1620458960533142, -0.5512906908988953, 0.14123119413852692, 0.008569578640162945, -0.2031257152557373, -0.3906387984752655, 0.8440873026847839, -0.023901673033833504, -0.05732571706175804, -0.6503790020942688, -0.33586084842681885, -0.5082569122314453, 0.3031800091266632, -0.6382231116294861, 1.1135427951812744, 0.22302666306495667, -0.8574851751327515, 0.28924572467803955, -0.8676765561103821, -0.6784194111824036, -0.2619955539703369, -0.16068236529827118, -0.5017262101173401, 0.0248663779348135, 0.6917098164558411, 0.5189451575279236, -0.24426805973052979, -0.11438477784395218, -0.16169118881225586, -0.12611983716487885, 0.29860395193099976, -0.29417186975479126, 1.2252297401428223, 0.3603127598762512, -0.6399403214454651, -0.2619081735610962, -0.8928877115249634, 0.08895380795001984, 0.08819746226072311, -0.20062783360481262, -0.13229314982891083, -0.42491161823272705, 0.2639015316963196, 0.5560265183448792, 0.2841719686985016, -0.8126308917999268, 0.10979463160037994, -0.45504245162010193, 0.3453097939491272, 0.6641113758087158, 0.2940783202648163, 0.16359271109104156, -0.36637017130851746, 0.467923641204834, 0.28477543592453003, 0.2534187436103821, 0.09342481940984726, -0.5617424845695496, -1.0754765272140503, -0.1997833251953125, 0.38817548751831055, 0.6321491003036499, -0.7786604762077332, 0.6526986360549927, -0.38263100385665894, -0.5215062499046326, -0.9276053309440613, 0.21707876026630402, 0.03898663818836212, 0.32725784182548523, 0.42703932523727417, -0.033597126603126526, -0.8747954964637756, -0.9898424744606018, -0.1790776550769806, -0.22639350593090057, 0.25333812832832336, 0.49069228768348694, 0.6908116340637207, -0.4996412992477417, 0.7221724390983582, -0.2734355628490448, -0.47273239493370056, -0.24978479743003845, 0.043507110327482224, 0.6136324405670166, 0.3594147264957428, 1.031975507736206, -0.7075626850128174, -0.6307862401008606, 0.07629752904176712, -0.8527458310127258, -0.3617438077926636, 0.03457411751151085, -0.135099858045578, 0.4952595829963684, 0.2445615977048874, -0.3423444330692291, 0.5497779846191406, 0.5014694333076477, -0.23820756375789642, 0.21558189392089844, 0.21365000307559967, 0.46066489815711975, -1.3406304121017456, 0.12992841005325317, 0.17557957768440247, 0.11914733797311783, -0.503328263759613, -0.25200483202934265, -0.17868076264858246, 0.09096577763557434, -0.21143795549869537, 0.7487508654594421, -0.3779287338256836, 0.2121228724718094, -0.03750837594270706, 0.0733797624707222, -0.15595917403697968, 0.6066317558288574, -0.07907764613628387, 0.6499159932136536, 0.4241049587726593, -0.49970507621765137, 0.24574293196201324, 0.5071463584899902, -0.47395235300064087, 0.43251124024391174, -0.5921669006347656, -0.18144726753234863, 0.03285650536417961, -0.06718447804450989, -1.0770721435546875, -0.10892025381326675, 0.45555204153060913, -0.9578682780265808, 0.19884586334228516, -0.025369761511683464, -0.42722004652023315, -0.524470329284668, -0.39275896549224854, 0.04700922593474388, 0.3310118019580841, -0.4859241843223572, 0.5494199991226196, 0.3829847574234009, -0.04573361948132515, -0.9152108430862427, -1.0842950344085693, 0.05999133735895157, -0.16817107796669006, -0.6238330006599426, -0.13380466401576996, 0.17777392268180847, -0.20947052538394928, -0.07904768735170364, -0.07808945327997208, 0.0723942443728447, 0.26170775294303894, 0.5651329755783081, 0.12934428453445435, -0.09625271707773209, -0.09469505399465561, -0.024464748799800873, 0.11531984806060791, 0.05265890434384346, 0.0022624265402555466, 0.6661537289619446, -0.2177710235118866, 0.06323014199733734, -0.33918091654777527, 0.390545129776001, 0.3739073872566223, -0.2229735553264618, 1.1844475269317627, 0.8154739737510681, -0.3259057402610779, -0.000445238605607301, -0.5331810116767883, 0.10568960011005402, -0.4217577576637268, 0.06806960701942444, -0.5515250563621521, -0.7047004699707031, 0.8416561484336853, 0.13593775033950806, 0.20523221790790558, 0.7587438225746155, 0.5190971493721008, -0.23685306310653687, 0.8219105005264282, 0.2428908795118332, -0.45971301198005676, 0.40545570850372314, -1.0438601970672607, 0.26235872507095337, -0.8981941938400269, -0.341316819190979, -0.6690090894699097, -0.6496738791465759, -0.8268597722053528, -0.22441603243350983, 0.10978490859270096, 0.08138575404882431, -0.32972824573516846, 0.31925147771835327, -0.2640223503112793, -0.08926209807395935, 0.4490330219268799, 0.1692844033241272, -0.11973565071821213, 0.25784531235694885, -0.43249383568763733, 0.007239095866680145, -0.5523024201393127, -0.6039419770240784, 1.029013991355896, 0.2633025348186493, 0.5892506837844849, 0.2137901932001114, 1.136936068534851, 0.22664541006088257, 0.5179325342178345, -0.6954106092453003, 0.5743088126182556, -0.21911726891994476, -0.6768065094947815, -0.23947730660438538, -0.5762723088264465, -0.7621173858642578, 0.11028281599283218, -0.0773637443780899, -0.723148763179779, 0.7667711973190308, -0.18345026671886444, -0.23627352714538574, 0.3419917821884155, -0.43778911232948303, 0.7157356142997742, -0.21570026874542236, -0.11304448544979095, 0.15814317762851715, -0.679426908493042, 0.2416263073682785, 0.13566865026950836, 0.47422248125076294, -0.3183434009552002, -0.21665839850902557, 0.9003145694732666, -0.8370209336280823, 0.854306697845459, -0.3832430839538574, 0.04644909128546715, 0.5011098384857178, -0.16243602335453033, 0.10886282473802567, 0.02701539546251297, -0.5174785256385803, 0.43037310242652893, -0.3306562304496765, -0.4222070574760437, -0.17066730558872223, 0.9119662642478943, -1.1546250581741333, -0.14360076189041138, -0.6567050814628601, -0.19708430767059326, -0.24995294213294983, 0.055329326540231705, 0.6875564455986023, 0.5564157962799072, -0.19978868961334229, 0.2523026764392853, 0.1641373485326767, -0.23292014002799988, 0.6076622605323792, 0.09792875498533249, 0.0022751400247216225, -0.8340504169464111, 0.7887133359909058, 0.22975046932697296, 0.03747473657131195, 0.16416141390800476, -0.1099763736128807, -0.44182080030441284, -0.3079233467578888, -0.31000590324401855, 0.39071816205978394, -0.6823334693908691, -0.4635408818721771, -0.8897135257720947, -0.3792511522769928, -0.668470025062561, -0.26481324434280396, -0.05893537402153015, -0.7918685078620911, -0.28148990869522095, -0.3213883936405182, 0.7468516826629639, 0.3519311547279358, -0.4667738080024719, 0.5572835803031921, -0.6250520944595337, 0.3040698766708374, 0.04944193735718727, 0.21263867616653442, 0.18417026102542877, -0.5774804353713989, -0.17964613437652588, 0.4378548264503479, -0.271864652633667, -0.8288247585296631, 0.6324028372764587, 0.39746302366256714, 0.480304479598999, 0.48411232233047485, 0.16194386780261993, 0.5774645805358887, -0.16759848594665527, 0.7908883094787598, 0.2578267753124237, -0.874713659286499, 0.77651047706604, -0.3495141565799713, 0.251888632774353, 1.041853904724121, 0.6355155110359192, -0.7848718166351318, -0.29857441782951355, -0.7019631266593933, -0.9791018962860107, 0.87496018409729, 0.4720228314399719, -0.015949564054608345, -0.2440037727355957, 0.2736520767211914, -0.17017847299575806, 0.43978580832481384, -0.6641283631324768, -0.8978424072265625, -0.5479142665863037, -0.46726879477500916, -0.2555302083492279, -0.2367291897535324, 0.007881824858486652, -0.41706302762031555, 0.9802055954933167, 0.05356159433722496, 0.5348291397094727, 0.20231123268604279, -0.17748412489891052, 0.030765999108552933, 0.2229032963514328, 0.2160409688949585, 0.43085864186286926, -0.3472177982330322, -0.3070712089538574, 0.007881191559135914, -0.6791094541549683, 0.20614218711853027, 0.29269784688949585, -0.4937426447868347, 0.13505087792873383, 0.31270572543144226, 1.0035793781280518, -0.18881945312023163, -0.05376679450273514, 0.4188184142112732, -0.10810776799917221, -0.4304860532283783, -0.3440830707550049, -0.04606211557984352, 0.019951364025473595, 0.07685218751430511, 0.489188015460968, 0.3169686794281006, 0.13205686211585999, -0.6785357594490051, 0.18857553601264954, 0.1264345943927765, -0.5782949328422546, -0.2989778220653534, 0.5491645932197571, 0.4700303375720978, 0.02797129936516285, 0.5482115745544434, -0.05927653610706329, -0.946597158908844, 0.7570686936378479, 0.1592019647359848, 1.0201631784439087, -0.5959928631782532, 0.49059903621673584, 0.8016001582145691, 0.5852276086807251, 0.14550945162773132, 0.9175013899803162, 0.07577984035015106, -0.9303573966026306, -0.09468742460012436, -0.9305009841918945, 0.05967028811573982, 0.12959326803684235, -0.6538910269737244, 0.11014104634523392, -0.6071782112121582, -0.44136765599250793, -0.013663462363183498, 0.47655171155929565, -0.65683913230896, 0.6046817302703857, 0.09901043027639389, 1.0945110321044922, -0.9969772100448608, 0.7530237436294556, 0.8910644054412842, -0.6252537965774536, -0.8956167697906494, -0.04714348539710045, 0.029130730777978897, -0.6893296241760254, 0.4641783833503723, 0.3674167990684509, 0.10390401631593704, -0.1634393036365509, -0.46691086888313293, -0.513736367225647, 0.9185771346092224, -0.052104491740465164, -0.3192327320575714, 0.46318989992141724, 0.28172987699508667, 0.650345504283905, -0.4378414750099182, 0.4241684675216675, 0.6255234479904175, 0.5873190760612488, 0.36099931597709656, -0.5832559466362, 0.05721959099173546, -0.5757017135620117, -0.15401731431484222, 0.38162264227867126, -0.9687519669532776, 0.8531758785247803, -0.14703680574893951, -0.12598678469657898, 0.008042708970606327, 0.7120863795280457, 0.08535510301589966, 0.16341562569141388, 0.4411599934101105, 0.6909563541412354, 0.6294707655906677, -0.4951527416706085, 1.0913463830947876, -0.2643680274486542, 0.28380507230758667, 0.8315412402153015, -0.01412433572113514, 0.7162807583808899, 0.15261134505271912, -0.3149701952934265, 0.3566892743110657, 0.553338348865509, 0.23749126493930817, 0.4170389175415039, -0.20813116431236267, -0.21257466077804565, -0.09026561677455902, -0.16600671410560608, -0.4677280783653259, 0.3773724138736725, 0.5760982036590576, -0.4042513370513916, -0.0769965723156929, -0.055706240236759186, 0.21966612339019775, -0.009172463789582253, -0.4108268916606903, 0.526329755783081, 0.3957381546497345, -0.3164457380771637, 0.7773312926292419, -0.07697506248950958, 0.8669382333755493, -0.41782984137535095, 0.3253019452095032, -0.503936231136322, 0.23751765489578247, -0.4729944169521332, -0.8656653165817261, 0.1568237692117691, 0.006672406569123268, 0.11800051480531693, 0.012949570082128048, 0.5265369415283203, -0.45090171694755554, -0.7922151684761047, 0.4783036410808563, 0.3423345685005188, -0.0024941882584244013, 0.050445426255464554, -1.0431499481201172, 0.16848061978816986, 0.49578726291656494, -0.2604628801345825, -0.03710440173745155, 0.683962881565094, 0.11601246148347855, 0.5764030814170837, 0.333793044090271, 0.33109205961227417, 0.005830503534525633, 0.3561899960041046, 0.86346435546875, -0.7461646199226379, -0.44472768902778625, -0.775347888469696, 0.4166412651538849, -0.46048668026924133, -0.48123598098754883, 1.2330904006958008, 0.6034970879554749, 0.5251063704490662, 0.03117033652961254, 1.0827734470367432, -0.42989128828048706, 0.8061746954917908, -0.17958877980709076, 0.847264289855957, -0.7423580288887024, 0.0441385954618454, -0.47005385160446167, -0.9509970545768738, -0.16695734858512878, 0.9332584142684937, -0.38588494062423706, 0.24633632600307465, 0.4551430642604828, 0.675621509552002, 0.07553602010011673, 0.18961754441261292, -0.06029408052563667, 0.5923842191696167, 0.07145457714796066, 0.5878539085388184, 0.6816229224205017, -1.0471822023391724, 0.39281681180000305, -0.593518078327179, -0.1510407030582428, -0.4290323555469513, -0.5665882229804993, -1.1079704761505127, -0.6544552445411682, -0.4113364815711975, -0.6007914543151855, -0.10827892273664474, 1.0358679294586182, 0.28802695870399475, -1.2756493091583252, -0.38856807351112366, 0.39014220237731934, -0.07770752906799316, -0.05175705626606941, -0.21441961824893951, 0.5511388778686523, 0.02804778330028057, -0.6340237855911255, -0.07999598979949951, 0.045426324009895325, 0.1733783483505249, 0.2295929342508316, -0.030542530119419098, -0.689638078212738, 0.12136951833963394, 0.5334416031837463, 0.3038013279438019, -0.3968040347099304, -0.08220851421356201, 0.0006403091829270124, -0.3143012821674347, 0.15935508906841278, 0.3010123670101166, -0.4508550763130188, 0.08554226160049438, 0.5820710062980652, 0.3640671372413635, 0.47888246178627014, 0.12776699662208557, 0.2491244375705719, -0.7442926168441772, 0.32252150774002075, 0.20418234169483185, 0.5810323357582092, 0.5005987882614136, -0.09919522702693939, 0.8643814325332642, 0.13220655918121338, -0.39862242341041565, -0.6079326868057251, -0.2818872034549713, -1.1438419818878174, 0.009875934571027756, 1.1986589431762695, -0.005033924710005522, -0.4350736737251282, -0.010996915400028229, -0.15428346395492554, 0.3132883310317993, -0.8950038552284241, 0.4860275089740753, 0.6265336275100708, 0.1341143101453781, -0.05698813125491142, -0.5717737674713135, 0.6148101091384888, 0.09422238171100616, -0.813734769821167, -0.2095487117767334, 0.3558536767959595, 0.17263619601726532, 0.220516636967659, 0.7718712687492371, -0.06698888540267944, 0.1907527893781662, -0.18150301277637482, 0.28939640522003174, 0.20368129014968872, -0.01340339332818985, -0.289137601852417, -0.20166441798210144, -0.3177413046360016, -0.42759642004966736 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
gigant/tib
gigant
2023-09-25T12:05:25Z
221
0
null
[ "task_categories:summarization", "size_categories:1K<n<10K", "language:en", "region:us" ]
2023-09-25T12:05:25Z
2023-04-11T15:22:07.000Z
2023-04-11T15:22:07
--- dataset_info: features: - name: doi dtype: string - name: title dtype: string - name: url dtype: string - name: video_url dtype: string - name: license dtype: string - name: subject dtype: string - name: genre dtype: string - name: release_year dtype: string - name: author dtype: string - name: contributors dtype: string - name: abstract dtype: string - name: transcript dtype: string - name: transcript_segments sequence: - name: id dtype: int32 - name: seek dtype: int32 - name: start dtype: float32 - name: end dtype: float32 - name: text dtype: string - name: tokens sequence: int32 - name: temperature dtype: float32 - name: avg_logprob dtype: float32 - name: compression_ratio dtype: float32 - name: no_speech_prob dtype: float32 - name: keyframes sequence: - name: slide dtype: string - name: frames sequence: int32 - name: timestamp sequence: float32 - name: language dtype: string splits: - name: valid num_bytes: 101380279 num_examples: 910 - name: train num_bytes: 827555875 num_examples: 7282 - name: test num_bytes: 102396941 num_examples: 911 download_size: 502166165 dataset_size: 1031333095 task_categories: - summarization language: - en pretty_name: "TIB: A Dataset for Abstractive Summarization of Long Multimodal Videoconference Records" size_categories: - 1K<n<10K pinned: True --- # Dataset Card for "TIB: A Dataset for Abstractive Summarization of Long Multimodal Videoconference Records" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Description - **Homepage:** [Dataset page](https://huggingface.co/datasets/gigant/tib) - **Repository:** [Dataset page](https://huggingface.co/datasets/gigant/tib) - **Paper:** [TIB: A Dataset for Abstractive Summarization of Long Multimodal Videoconference Records ](https://hal.science/hal-04168911) - **Point of Contact:** [Théo Gigant](mailto:theo.gigant@l2s.centralesupelec.fr) ## Dataset Summary TIB is an English dataset for abstractive summarization of multimodal presentations, introduced in [*TIB: A Dataset for Abstractive Summarization of Long Multimodal Videoconference Records* ](https://hal.science/hal-04168911). It is a collection of 9,103 videoconference records extracted from the German National Library of Science and Technology (TIB) archive, along with their metadata, an abstract and automatically processed transcripts and key frames. ### Supported Tasks and Leaderboards - `summarization` ### Languages The text in the dataset is in English, both for the transcripted audios and the abstracts. ## Usage To use within the [`datasets`](https://github.com/huggingface/datasets) library: ```python from datasets import load_dataset dataset = load_dataset("gigant/tib") ``` ## Dataset Structure ### Data Instances A typical data point represents a videoconference record, the `transcript` and `keyframes` are textual and visual modalities, processed from the video found at `video_url`, and the `abstract` is used as a target abstractive summary. ### Data Fields Each record consist of the following attributes: * `doi`: digital object identifier (DOI) of the record or the associated paper * `title`: title of the presentation * `url`: URL of the record in the TIB archive * `video_url`: URL of the video file * `license`: license of the record * `subject`: academic field (*eg* Computer Science, Mathematics, ...) * `genre`: type of presentation (*eg* Lecture, Conference, ...) * `release_year`: year the record was released * `author`: name of the author * `contributors`: name of the contributors * `abstract`: the abstract of the presentation, that serve as a target summary * `transcript`: the automatically extracted transcript * `transcript_segments`: the automatically extracted transcript with time codes, output of the speech recognition system * `keyframes`: the automatically extracted key frames time codes `doi`, `title`, `url`, `video_url`, `license`, `subject`, `genre`, `release_year`, `author`, `contributors` and `abstract` are provided as found in the TIB archive. The length, style, quality and content of the abstract can differ from video to video as it was likely provided by each author. For instance, some abstracts can provide very short title-like summaries, introduction of the conference, the lecture or the speaker, or longer descriptions of the content. We provide examples of transcripts and summaries in the paper's Appendix. ### Data Splits The data is split into a training, validation and test set. * Train: 7,282 (80%) * Validation: 910 (10%) * Test: 911 (10%) ## Dataset Creation ### Source Data #### Initial Data Collection and Normalization The dataset was first assembled by crawling the [TIB-AV portal](https://av.tib.eu/) which is a large archive of videos, developed by the German National Library of Science and Technology: *Technische Informationsbibliothek* (TIB). Entries with missing abstracts or abstracts that were too short (less than 30 characters) were filtered out. We also filtered out records for which the abstract or the transcript is in another language than English. In order to keep the abstracts that are relevant to the associated record, we removed documents if the abstract is the same as the abstract for another video. This allowed to get rid of all the abstracts that were written for a set of records such as conferences, instead of specifically written for a single presentation. More information about the dataset collection and filtering can be found in [TIB: A Dataset for Abstractive Summarization of Long Multimodal Videoconference Records ](https://hal.science/hal-04168911). ### Dataset Curators The dataset was initially created by Théo Gigant, Frédéric Dufaux, Camille Guinaudeau and Marc Decombas. ### Citation Information ``` @inproceedings{gigant:hal-04168911, TITLE = {{TIB: A Dataset for Abstractive Summarization of Long Multimodal Videoconference Records}}, AUTHOR = {GIGANT, Th{\'e}o and Dufaux, Fr{\'e}d{\'e}ric and Guinaudeau, Camille and Decombas, Marc}, URL = {https://hal.science/hal-04168911}, BOOKTITLE = {{Proc. 20th International Conference on Content-based Multimedia Indexing (CBMI 2023)}}, ADDRESS = {Orl{\'e}ans, France}, ORGANIZATION = {{ACM}}, YEAR = {2023}, MONTH = Sep, KEYWORDS = {multimedia dataset, multimodal documents, automatic summarization}, HAL_ID = {hal-04168911}, HAL_VERSION = {v1}, } ```
[ -0.6301745176315308, -0.6538706421852112, 0.15095028281211853, 0.1759556382894516, -0.4617518484592438, 0.008754175156354904, -0.35961654782295227, -0.24164041876792908, 0.6278806924819946, -0.04082736372947693, -0.3877018094062805, -0.7440103888511658, -0.7443687915802002, 0.18324261903762817, -0.3835948705673218, 1.1817805767059326, 0.06070953980088234, -0.11408977210521698, -0.3974721133708954, -0.39701107144355774, -0.0037608677521348, -0.41277015209198, -0.34657496213912964, -0.4327581524848938, 0.17487064003944397, 0.30780017375946045, 0.5947691202163696, 0.905326247215271, 0.5726738572120667, 0.32264289259910583, -0.2834530472755432, 0.21667151153087616, -0.20115715265274048, -0.5032626390457153, -0.0670008659362793, 0.028714442625641823, -0.7513521313667297, -0.18192248046398163, 1.081900715827942, 0.6934536099433899, -0.1640426516532898, 0.43320053815841675, 0.04226423427462578, 0.5667225122451782, -0.4491102993488312, 0.4693506360054016, -0.20990878343582153, 0.012130550108850002, -0.11484930664300919, -0.4479609429836273, -0.16724362969398499, -0.14226748049259186, 0.02670089527964592, -0.3722638785839081, 0.3759012222290039, -0.19931672513484955, 0.7948606610298157, 0.1438416987657547, -0.3236643671989441, -0.0074192192405462265, -0.4883563816547394, 0.6791077256202698, -0.6646397709846497, 0.2461584210395813, 0.4646178185939789, 0.055451251566410065, -0.014910349622368813, -0.6281194686889648, -0.5667879581451416, 0.1277514100074768, -0.03880106657743454, 0.1378132849931717, -0.3807823956012726, 0.33117616176605225, 0.5113452672958374, 0.34014028310775757, -0.7747287750244141, -0.08346729725599289, -0.799404501914978, -0.33138149976730347, 0.7811222076416016, 0.04083241894841194, 0.2566535174846649, -0.48686638474464417, -0.1403946429491043, -0.29350364208221436, -0.14954696595668793, 0.0632760226726532, 0.04655470699071884, 0.07752417773008347, -0.9869846701622009, 0.5608291625976562, -0.2463938146829605, 0.6241398453712463, 0.0144272455945611, -0.7164363861083984, 0.7670438885688782, -0.6111460328102112, -0.28050240874290466, 0.3664405941963196, 0.9396333694458008, 0.8182306289672852, 0.10114491730928421, 0.22739596664905548, 0.2110580950975418, -0.09232041984796524, -0.4656468331813812, -0.9985109567642212, -0.24664200842380524, 0.3729076385498047, -0.6466209292411804, 0.16538193821907043, 0.1744023859500885, -0.8443493247032166, -0.06381268054246902, -0.44470903277397156, 0.14981776475906372, -0.34849345684051514, -0.4327414333820343, -0.06022512912750244, -0.23391719162464142, 0.18989740312099457, 0.1632581651210785, -0.8391851782798767, 0.42581045627593994, 0.35198649764060974, 1.1960632801055908, -0.36575013399124146, -0.37844058871269226, -0.5731469988822937, 0.2239847034215927, -0.07271517813205719, 0.7809029221534729, -0.2454950213432312, -0.7057192325592041, -0.025014840066432953, 0.16587942838668823, 0.003882067045196891, -0.4587258994579315, 0.42376509308815, -0.15390683710575104, 0.18958021700382233, -0.08312162756919861, -0.40450313687324524, -0.23335576057434082, 0.1702335774898529, -0.572268545627594, 0.838981568813324, -0.2590603828430176, -0.7368004322052002, 0.22926655411720276, -0.720111608505249, -0.29963037371635437, -0.2567543685436249, -0.5031557083129883, -0.41171759366989136, -0.28946584463119507, 0.39462679624557495, 0.4456788897514343, -0.15376721322536469, 0.5345661640167236, -0.21716612577438354, -0.13800710439682007, 0.09663326293230057, -0.25223812460899353, 0.67203289270401, 0.21118173003196716, -0.08059969544410706, 0.18439756333827972, -1.0524414777755737, -0.23020201921463013, -0.2160561978816986, -0.19069337844848633, -0.08169431984424591, -0.09357604384422302, 0.06432580202817917, 0.3732806444168091, 0.10805602371692657, -0.5854685306549072, 0.061191920191049576, -0.3260440528392792, 0.3374483585357666, 0.5605427622795105, 0.17698830366134644, 0.27778977155685425, -0.2899920344352722, 0.49783048033714294, 0.11339742690324783, 0.07266867905855179, -0.42869147658348083, -0.32227474451065063, -0.2981008291244507, -0.5028377175331116, 0.14127735793590546, 0.2891385853290558, -0.7116928100585938, 0.25588729977607727, -0.7313539981842041, -0.5276722311973572, -0.40291690826416016, 0.08711905032396317, 0.6408984661102295, 0.4583113491535187, 0.5020027756690979, -0.3979979455471039, -0.7043014764785767, -0.9061647057533264, 0.3498650789260864, -0.11432132124900818, 0.06621580570936203, 0.46246737241744995, 0.7881048321723938, 0.04287458956241608, 0.9470548033714294, -0.6146667003631592, -0.360658198595047, -0.15768200159072876, 0.13741157948970795, 0.43464696407318115, 0.624333381652832, 0.5569875240325928, -1.056289792060852, -0.3816610276699066, -0.19984956085681915, -0.9679384827613831, 0.07557021826505661, -0.1015879362821579, 0.25126999616622925, 0.3126875162124634, 0.5322563648223877, -0.5718531012535095, 0.5274683237075806, 0.5502317547798157, -0.3287150263786316, 0.666999101638794, -0.36065447330474854, 0.4060983657836914, -1.1914020776748657, 0.2507658004760742, -0.009192592464387417, -0.09511466324329376, -0.343843936920166, -0.5392402410507202, -0.20776130259037018, -0.1725814938545227, -0.6816936135292053, 0.6326612830162048, -0.4455699622631073, -0.3102743625640869, -0.23523356020450592, 0.4320434331893921, -0.06017959490418434, 0.8724732995033264, 0.14929141104221344, 0.8900745511054993, 0.7326087355613708, -0.8984968066215515, 0.4308304488658905, 0.760209858417511, -0.2699179947376251, 0.5406795144081116, -0.7783294916152954, -0.16214047372341156, -0.24054041504859924, 0.2716030180454254, -0.9063591361045837, -0.4936682879924774, 0.1099611222743988, -0.8084555268287659, 0.3704639673233032, -0.19677171111106873, -0.35101085901260376, -0.016635358333587646, -0.5907152891159058, 0.6539769768714905, 0.23464395105838776, -0.2177255004644394, 0.7429313659667969, 0.563046395778656, -0.4345279633998871, -0.6799600124359131, -0.6816779971122742, 0.15049809217453003, -0.15783685445785522, -0.6534333229064941, 0.826388955116272, -0.3011203706264496, -0.23611599206924438, 0.12048279494047165, -0.24590587615966797, 0.10558304190635681, -0.46207085251808167, 0.5153073668479919, 0.29103347659111023, 0.07627994567155838, 0.020339790731668472, -0.03063257783651352, -0.11958460509777069, 0.08122238516807556, 0.07155606150627136, 0.45882901549339294, -0.21745043992996216, -0.18087297677993774, -0.6188400387763977, 0.5450822114944458, 0.34974730014801025, -0.125130757689476, 0.5712763667106628, 0.8719615340232849, -0.38181158900260925, 0.5472175478935242, -0.5893822312355042, -0.09503280371427536, -0.4067632555961609, 0.722846508026123, -0.16901512444019318, -0.5956484079360962, 0.8059589862823486, 0.40334415435791016, 0.11065442115068436, 0.6376255750656128, 0.6614618897438049, -0.14492052793502808, 0.7738276124000549, 0.6061688661575317, -0.08079748600721359, 0.6709356904029846, -0.6229028105735779, -0.35294777154922485, -0.8491054177284241, -0.5167133808135986, -0.4714163839817047, -0.13787752389907837, -0.7549968957901001, -0.19475097954273224, 0.6207595467567444, -0.2118077278137207, -0.21924981474876404, 0.22007296979427338, -0.2844877541065216, 0.3356863856315613, 0.5064870715141296, 0.12365943938493729, 0.2932915985584259, 0.16837096214294434, 0.14743177592754364, -0.05545177310705185, -0.5876335501670837, -0.38433220982551575, 1.0122158527374268, 0.21470846235752106, 0.47849515080451965, 0.301315039396286, 0.6133241057395935, 0.46639302372932434, -0.02144216187298298, -0.5231987833976746, 0.7588266730308533, -0.03562972694635391, -0.5245808959007263, -0.2513446509838104, -0.43284347653388977, -0.8736816644668579, 0.030826278030872345, -0.1468043178319931, -0.8799474835395813, 0.4610852003097534, 0.180406391620636, -0.41083917021751404, 0.34819671511650085, -0.6094478964805603, 0.7700725793838501, -0.010676035657525063, -0.45252349972724915, -0.37803447246551514, -1.0420387983322144, 0.1714460849761963, 0.11052282154560089, 0.5230969786643982, -0.0050695533864200115, 0.018518658354878426, 1.4140956401824951, -0.22212201356887817, 0.5899656414985657, -0.24034003913402557, 0.3251120150089264, 0.49197185039520264, -0.174830824136734, 0.08054359257221222, 0.1086265817284584, 0.10187406837940216, 0.23287005722522736, 0.26803162693977356, -0.25261566042900085, -0.46650564670562744, 0.5850693583488464, -0.7963128685951233, -0.39361628890037537, -0.48125413060188293, -0.45649415254592896, 0.030849741771817207, 0.21870994567871094, 0.25803786516189575, 1.058674693107605, 0.017037250101566315, 0.43507111072540283, 0.7145594954490662, -0.42663976550102234, 0.827501118183136, 0.3305976092815399, -0.12680421769618988, -1.0096440315246582, 0.8330934643745422, 0.11444476246833801, 0.2745494842529297, 0.40281617641448975, -0.029087524861097336, -0.3174348473548889, -0.6524353623390198, -0.21184533834457397, 0.49390947818756104, -0.7529027462005615, -0.16985565423965454, -0.6200893521308899, -0.15634456276893616, -0.6587746143341064, 0.20633769035339355, -0.28158190846443176, -0.4835478961467743, -0.38693514466285706, -0.4102754592895508, 0.40381506085395813, 0.06051424890756607, -0.5030072927474976, 0.31456267833709717, -0.9192581176757812, 0.5876403450965881, 0.05381200462579727, 0.46252119541168213, -0.238517627120018, -0.8734843730926514, -0.5250347256660461, -0.0008549243211746216, -0.4396968185901642, -0.5707284808158875, 0.43302345275878906, 0.6652648448944092, 0.4882327914237976, 0.3980453312397003, -0.024164050817489624, 0.8336151242256165, -0.19380155205726624, 1.1143518686294556, 0.44819915294647217, -0.5436780452728271, 0.5969409942626953, -0.3902638256549835, 0.4659753739833832, 0.5655173659324646, 0.45596572756767273, -0.40058308839797974, 0.1256510615348816, -0.9026024341583252, -1.0381269454956055, 0.9201188683509827, 0.2302379161119461, 0.051763977855443954, 0.038522303104400635, 0.16442494094371796, -0.06768849492073059, 0.3381659686565399, -0.7755903601646423, -0.7071199417114258, -0.3732055425643921, -0.08293476700782776, -0.2633134722709656, -0.39640071988105774, -0.33406001329421997, -0.30367568135261536, 0.9516041278839111, 0.0005214644479565322, 0.4868329167366028, 0.6221503615379333, -0.13635271787643433, 0.022927301004529, 0.2511952519416809, 0.8182903528213501, 0.8124203085899353, -0.6341620087623596, 0.04455072060227394, 0.035678088665008545, -0.6854832172393799, -0.09452777355909348, 0.339233934879303, 0.036943066865205765, 0.3087168037891388, 0.5970137119293213, 0.7745387554168701, 0.1227894052863121, -0.7581190466880798, 0.5011692643165588, 0.1332678645849228, -0.5806594491004944, -0.5356141924858093, -0.2625250816345215, -0.28650715947151184, 0.19544190168380737, 0.5100705027580261, -0.1370178759098053, 0.35905465483665466, -0.5024492740631104, 0.3583716154098511, 0.1340169906616211, -0.14892731606960297, -0.39938318729400635, 0.7270336747169495, 0.1462695449590683, -0.347095251083374, 0.3265743553638458, -0.19503138959407806, 0.013973102904856205, 0.4356750249862671, 0.180182084441185, 0.7945493459701538, 0.08704070001840591, 0.08798456192016602, 0.797140896320343, -0.016320832073688507, 0.05238281190395355, 0.23531438410282135, -0.41912081837654114, -0.5727932453155518, -0.7487041354179382, -0.4583001136779785, -0.4501970410346985, 0.16951744258403778, -0.8592966198921204, 0.3153185546398163, -0.15103758871555328, -0.4328495264053345, 0.23945827782154083, 0.059805091470479965, -0.41471007466316223, 0.10908570140600204, 0.2815669775009155, 0.9639739990234375, -0.7821254730224609, 0.5727065801620483, 0.6331197619438171, -0.766851007938385, -0.5779058933258057, -0.6187344193458557, 0.04260455071926117, -0.26304805278778076, 0.43981876969337463, -0.05622914806008339, -0.036978837102651596, -0.17618408799171448, -0.4802020788192749, -0.767676591873169, 1.1610184907913208, 0.3958786725997925, -0.33885976672172546, -0.2732953131198883, 0.060849450528621674, 0.30876076221466064, -0.10362064838409424, 0.3862512409687042, 0.48065289855003357, 0.326882541179657, 0.22233109176158905, -1.2752962112426758, -0.2683226764202118, -0.5534361600875854, -0.35738441348075867, 0.05651507154107094, -0.6495512127876282, 0.495041161775589, -0.20749729871749878, -0.06381263583898544, -0.2714567184448242, 0.8820256590843201, 0.3575659990310669, 0.6949307918548584, 0.21210311353206635, 0.36829063296318054, 0.294219046831131, -0.07542607188224792, 0.7519727945327759, -0.3065391480922699, 0.3656667470932007, 1.3293945789337158, 0.26453331112861633, 0.6147717833518982, 0.65273118019104, -0.41723737120628357, 0.42885684967041016, 0.5558152794837952, -0.20675472915172577, 0.620601236820221, -0.29695627093315125, -0.11159458011388779, -0.06923537701368332, -0.2752688527107239, -0.5832310914993286, 0.5431546568870544, 0.3012036085128784, -0.37504827976226807, -0.283518522977829, 0.28190189599990845, 0.05369507148861885, 0.09987333416938782, -0.46962374448776245, 0.9625873565673828, 0.20188230276107788, -0.5954532027244568, 0.6783236861228943, -0.12433716654777527, 0.6634979248046875, -0.7749454975128174, -0.05108240619301796, -0.1823553889989853, 0.06082383170723915, -0.6857041716575623, -0.776650607585907, 0.37793949246406555, 0.1883394569158554, -0.2699393928050995, -0.14697928726673126, 0.17848849296569824, -0.5357993841171265, -0.26391491293907166, 0.026984769850969315, 0.2654850482940674, 0.6688585877418518, 0.24393267929553986, -0.5610361695289612, 0.13120514154434204, 0.12165134400129318, -0.2774421274662018, 0.43777865171432495, 0.20158658921718597, 0.028928125277161598, 0.6895994544029236, 0.418622761964798, 0.06635047495365143, -0.2943151295185089, 0.031442224979400635, 0.7902511358261108, -0.7186526656150818, -0.6995172500610352, -0.9711639285087585, 0.6306795477867126, -0.24364453554153442, -0.2219896912574768, 0.6779671311378479, 1.078663945198059, 0.7983408570289612, 0.015539347194135189, 0.6416239142417908, -0.3789035677909851, 0.42765912413597107, -0.5110479593276978, 0.3650742471218109, -0.46241578459739685, 0.1596631407737732, -0.636455774307251, -0.61301189661026, -0.3098008334636688, 0.3524284362792969, -0.09654752910137177, 0.06389787793159485, 0.5522884726524353, 0.8544511198997498, -0.0641406774520874, -0.13355521857738495, 0.07901149243116379, 0.211458221077919, 0.47358494997024536, 0.37083694338798523, 0.20115627348423004, -0.618983805179596, 0.9049448370933533, -0.4186495542526245, -0.35544946789741516, -0.2016662210226059, -1.119224190711975, -0.8016003966331482, -0.9418222904205322, -0.7820838689804077, -0.5174168944358826, -0.07976002246141434, 1.4297305345535278, 0.6060553193092346, -0.7960551977157593, -0.44361284375190735, 0.49318867921829224, -0.03021419048309326, -0.2709386646747589, -0.18123315274715424, 1.0471266508102417, 0.4029413163661957, -0.7034992575645447, 0.0414714477956295, 0.09491534531116486, 0.238780677318573, 0.15796588361263275, -0.1391315460205078, -0.3443422317504883, -0.387801855802536, 0.5999322533607483, 0.6113409399986267, -0.3981488049030304, -0.06352152675390244, -0.11297594755887985, 0.2804359197616577, 0.33820468187332153, 0.38940179347991943, -0.619386613368988, 0.53877854347229, 0.34179049730300903, 0.2164866328239441, 0.8813638687133789, 0.09586488455533981, 0.2211245447397232, -0.8510668277740479, 0.4883165657520294, 0.09321069717407227, 0.5079247951507568, 0.3857434093952179, 0.030068213120102882, 0.5366483926773071, 0.3435201644897461, -0.48155689239501953, -0.9937717318534851, -0.275137722492218, -1.6733447313308716, 0.09536956995725632, 1.3605742454528809, 0.023836802691221237, -0.03846936672925949, 0.009863759391009808, -0.3721525967121124, 0.49150189757347107, -0.6742887496948242, 0.7767035961151123, 0.6464859247207642, -0.3091665506362915, -0.22290028631687164, -0.4643293619155884, 0.6202630400657654, -0.17621158063411713, -0.6042141318321228, 0.044409122318029404, 0.5719897150993347, 0.29421520233154297, 0.3516143560409546, 0.8736121654510498, -0.3400874137878418, 0.5466635823249817, -0.19722269475460052, 0.29174137115478516, -0.5892482399940491, -0.22757881879806519, -0.4252450168132782, 0.30290329456329346, -0.23054629564285278, -0.3849150538444519 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
chiayewken/bamboogle
chiayewken
2023-10-27T09:22:40Z
221
0
null
[ "arxiv:2210.03350", "region:us" ]
2023-10-27T09:22:40Z
2023-10-27T08:15:25.000Z
2023-10-27T08:15:25
--- dataset_info: features: - name: Question dtype: string - name: Answer dtype: string splits: - name: test num_bytes: 10747 num_examples: 125 download_size: 8383 dataset_size: 10747 configs: - config_name: default data_files: - split: test path: data/test-* --- # Bamboogle This repo contains the data for ["Measuring and Narrowing the Compositionality Gap in Language Models" paper](https://arxiv.org/abs/2210.03350). The original data link is here: https://docs.google.com/spreadsheets/d/1jwcsA5kE4TObr9YHn9Gc-wQHYjTbLhDGx6tmIzMhl_U/edit?usp=sharing This dataset is distributed with the MIT license.
[ -0.16279751062393188, -0.8760448694229126, 0.5043781995773315, 0.15861257910728455, -0.01027278695255518, 0.1415516883134842, -0.22665923833847046, -0.3169461190700531, 0.04765700548887253, 0.5881606936454773, -0.7890255451202393, -0.8097009062767029, -0.6962072253227234, -0.02050933428108692, -0.1597563773393631, 0.8626256585121155, -0.0572115033864975, 0.20944809913635254, -0.08675634860992432, -0.16003698110580444, -0.4279252588748932, 0.1670142561197281, -0.31297746300697327, -0.24471689760684967, 0.5160922408103943, 0.5998724699020386, 0.6172475218772888, 1.0469807386398315, 0.375375360250473, 0.21108324825763702, -0.25287896394729614, -0.28985658288002014, -0.5170061588287354, 0.11999119073152542, 0.10076335072517395, -0.7061756253242493, -0.6879822015762329, 0.3516155183315277, 1.1710145473480225, 1.048117995262146, -0.49156925082206726, 0.1135476604104042, 0.3084716200828552, 0.6805729269981384, -0.487544447183609, 0.2809094190597534, -0.5059300065040588, -0.030098354443907738, -0.5806480646133423, 0.5166181921958923, -0.3536379635334015, -0.5052433609962463, 0.05194644257426262, -0.9918519258499146, 0.4882650375366211, -0.30871620774269104, 1.2723480463027954, 0.18315741419792175, -0.6322759389877319, -0.26025858521461487, 0.04258355870842934, 0.8496876955032349, -0.9505294561386108, 0.609571099281311, 0.7112180590629578, 0.07450804859399796, -0.27654603123664856, -0.43547943234443665, -0.5107094049453735, -0.12769119441509247, -0.11523544043302536, 0.17207644879817963, 0.06523726135492325, -0.020569849759340286, 0.10913757979869843, 0.8390830755233765, -1.1142992973327637, -0.06293023377656937, -0.8232136964797974, -0.2971368730068207, 0.891366720199585, 0.2529672086238861, 0.6340718865394592, -0.2859545648097992, -0.10023758560419083, -0.20030076801776886, -0.6505839228630066, -0.016188785433769226, 0.7540762424468994, 0.17670269310474396, -0.798889696598053, 0.8292524218559265, 0.16029652953147888, 0.867582380771637, -0.5296260714530945, 0.17754481732845306, 0.543579638004303, -0.5816792845726013, -0.049711279571056366, -0.5538625121116638, 0.8726155161857605, 0.24199476838111877, -0.13490404188632965, 0.13807669281959534, 0.14571568369865417, 0.15643958747386932, -0.11199986934661865, -0.7262376546859741, -0.7252557873725891, 0.0007524033426307142, -0.36110642552375793, 0.1457810252904892, 0.4405566155910492, -0.6995133757591248, -0.3410537838935852, -0.35849326848983765, -0.1908273696899414, -0.6767382025718689, -0.6237160563468933, 0.045536402612924576, -0.32638105750083923, 0.19665838778018951, 0.16080601513385773, -0.9707351922988892, 0.28522399067878723, 0.9252328872680664, 1.2318402528762817, -0.124707892537117, -0.4557148516178131, -0.22632236778736115, 0.23143605887889862, -0.45451614260673523, 0.6227579712867737, -0.7482107877731323, -0.7186309695243835, -0.26018378138542175, 0.007957431487739086, -0.4584781229496002, -0.702008843421936, 0.574942409992218, -0.08046922832727432, 0.34839507937431335, -0.3051031827926636, -0.8050650954246521, 0.0009356220834888518, -0.09636347740888596, -1.1775128841400146, 1.2017626762390137, 0.4798851013183594, -0.47686606645584106, 0.44723019003868103, -0.8279455304145813, -0.2909412086009979, -0.07505917549133301, -0.12008268386125565, -0.3697199821472168, -0.03284895792603493, -0.10706763714551926, 0.1699729710817337, -0.07343076169490814, 0.20962165296077728, -0.6289119124412537, -0.16457827389240265, 0.5174529552459717, -0.13257789611816406, 1.3999074697494507, 0.34666579961776733, 0.17253729701042175, 0.02292386256158352, -0.9838615655899048, -0.19148574769496918, 0.06373559683561325, -0.6511363983154297, -0.5416643023490906, -0.2299525886774063, -0.03482118993997574, -0.15672849118709564, 0.41732344031333923, -0.7088546752929688, 0.4711957275867462, -0.262098491191864, 0.26593711972236633, 0.9211634993553162, -0.3519960343837738, 0.5659037232398987, -0.34150975942611694, 0.6361648440361023, 0.02829860709607601, 0.1589757651090622, -0.22622497379779816, -0.6697490811347961, -0.6702257990837097, -0.37336623668670654, 0.6800673007965088, 0.32243043184280396, -0.062338393181562424, 0.8723567128181458, -0.08354174345731735, -0.769436240196228, -1.0236002206802368, 0.46652811765670776, 0.41639700531959534, 0.44778797030448914, -0.01817428134381771, -0.4720688760280609, -0.14957520365715027, -0.6925930380821228, 0.09593619406223297, -0.24447466433048248, -0.37330830097198486, 0.3240136206150055, 0.4861500859260559, -0.3738379180431366, 0.7707147002220154, -1.078226089477539, -0.10991082340478897, 0.08183999359607697, 0.4204287528991699, 0.14267228543758392, 0.6908225417137146, 0.49287036061286926, -0.772762656211853, -0.9182049036026001, -0.00216302671469748, -0.5289480686187744, -0.6528303623199463, 0.47215136885643005, -0.2711372375488281, 0.44699493050575256, 0.246772900223732, -0.48649469017982483, 0.4467526078224182, 1.0779393911361694, -0.7043359875679016, 0.4892539381980896, 0.1909714639186859, 0.1508554071187973, -1.3381844758987427, 0.4221611022949219, 0.21931275725364685, 0.04181458055973053, -0.1733183115720749, 0.21084950864315033, 0.03689228743314743, -0.1148749515414238, -0.07600053399801254, 0.47453823685646057, -0.7140037417411804, 0.15045547485351562, 0.05646169185638428, 0.32470792531967163, 0.030326927080750465, 0.18589481711387634, -0.30354487895965576, 0.9848308563232422, 0.7790893316268921, -0.22535072267055511, 0.007946199737489223, 0.39412441849708557, -0.26420721411705017, 0.42208048701286316, -0.7553346157073975, 0.00446656346321106, 0.27063435316085815, 0.3995347023010254, -1.3000178337097168, -0.6280675530433655, 0.33833935856819153, -0.7817497253417969, 0.18533624708652496, -0.1097816452383995, -0.4443564713001251, 0.021586328744888306, -0.5949830412864685, 0.6955949664115906, 0.4268694221973419, -0.03719859942793846, 0.09634440392255783, 0.8368356227874756, -0.3315829634666443, -0.5552167296409607, -0.9107825756072998, -0.03475407883524895, -0.07899656146764755, -0.7135648727416992, 0.1240028664469719, -0.502151608467102, -0.20610012114048004, 0.08719936013221741, -0.08937940746545792, -0.2794856131076813, -0.14832089841365814, 0.1736631989479065, -0.0437992587685585, -0.2889462113380432, 0.08937972038984299, -0.027415240183472633, -0.22098785638809204, 0.12005110085010529, 0.35885295271873474, 0.6390611529350281, 0.11413021385669708, -0.30247962474823, -0.4422866106033325, 0.267302542924881, 0.2777797281742096, -0.24027422070503235, 0.4713459014892578, 0.6488831639289856, -0.3862357437610626, -0.5141297578811646, -0.2937365174293518, -0.21779043972492218, -0.5135806202888489, -0.036072444170713425, -0.21682092547416687, -1.0191935300827026, 1.0198136568069458, 0.10296940803527832, -0.35438430309295654, 0.5224329829216003, 0.24839316308498383, 0.23203788697719574, 0.9747857451438904, 0.7532649636268616, -0.20529842376708984, 0.6087411046028137, -0.6118634343147278, 0.03580503165721893, -1.0287057161331177, -0.32908013463020325, -0.6621337532997131, -0.11963145434856415, -0.658346951007843, -0.36580339074134827, 0.12710882723331451, 0.2548328638076782, 0.027884792536497116, 0.739825427532196, -0.5123472809791565, 0.6115861535072327, 0.5248530507087708, 0.10810746997594833, 0.4455621540546417, -0.30981868505477905, -0.1784401386976242, -0.5289510488510132, -0.5373417735099792, -0.4985487163066864, 1.1964191198349, 0.3234778344631195, 0.7298701405525208, 0.2817181944847107, 0.5042187571525574, 0.21265043318271637, 0.10803187638521194, -0.5572316646575928, 0.6077077388763428, -0.07265594601631165, -0.8580267429351807, -0.581254780292511, -0.6610009670257568, -1.5375005006790161, 0.1358560025691986, 0.3413439691066742, -0.9126237034797668, -0.09847065806388855, -0.01626569591462612, 0.44658878445625305, 0.08278748393058777, -0.7129005193710327, 1.2321836948394775, 0.3699873685836792, -0.1961774379014969, -0.3466867208480835, -0.7942875027656555, 0.657642126083374, -0.05413199961185455, 0.09784286469221115, -0.49318283796310425, -0.1169174537062645, 0.9929346442222595, -0.784289538860321, 0.9894425868988037, -0.06007438153028488, -0.671497106552124, 0.45825380086898804, 0.10978148877620697, 0.01870599016547203, 0.12369678914546967, -0.2884763777256012, 0.17323803901672363, -0.10652507841587067, -0.645097017288208, -0.35884571075439453, 0.8374889492988586, -0.7021840810775757, -0.23467262089252472, -0.4167415499687195, -0.7753799557685852, 0.093832828104496, 0.39213550090789795, 0.09930533915758133, 0.10456740856170654, -0.281779021024704, 0.4910717010498047, 0.5046193599700928, 0.0994548350572586, 0.16928549110889435, 0.8539497256278992, -0.08239886909723282, -0.23990561068058014, 0.8938491940498352, 0.49502861499786377, 0.18319696187973022, 0.30922725796699524, 0.4917607009410858, -0.34878426790237427, -0.3883523643016815, -0.26004210114479065, 0.48047009110450745, -0.6315074563026428, -0.13348954916000366, -0.2941196858882904, -0.2497892677783966, -0.6303017735481262, -0.11363061517477036, -0.18677520751953125, -0.477206289768219, -0.577393114566803, -0.4278079867362976, 0.3507930636405945, 0.8745627999305725, -0.5513652563095093, 0.7098081111907959, -0.8512912392616272, 0.2359987199306488, 0.0017673373222351074, 0.6993944644927979, -0.0800100788474083, -0.3757579028606415, -0.4464971721172333, 0.214691162109375, -0.6102882027626038, -1.0874675512313843, 0.28100788593292236, -0.13366654515266418, 0.7375114560127258, 0.3724440038204193, -0.10659721493721008, 0.631355881690979, -0.027150727808475494, 1.2326550483703613, 0.2221764177083969, -1.3174479007720947, 0.7316239476203918, -0.8170748353004456, 0.32418328523635864, 0.5829201936721802, 0.18469499051570892, -0.49806299805641174, -0.6961265802383423, -0.6714664101600647, -0.9534275531768799, 0.6466357111930847, 0.06032945215702057, 0.002382363425567746, 0.41341784596443176, 0.006592360325157642, 0.5167401432991028, -0.007161043118685484, -0.9944947957992554, -0.13118335604667664, 0.09626361727714539, -0.34076112508773804, 0.09095559269189835, 0.03481704369187355, -0.23211532831192017, -0.5692365169525146, 0.6624791622161865, -0.0016961616929620504, -0.10927847027778625, -0.19052965939044952, -0.2097151130437851, -0.5049911141395569, 0.1979868859052658, 0.5829138159751892, 0.9923023581504822, -0.15035198628902435, -0.15508528053760529, -0.05175061896443367, -0.7393282651901245, 0.08634109050035477, 0.33833763003349304, -0.005303621292114258, 0.11981520801782608, 0.5527368187904358, 0.5615042448043823, -0.05177595466375351, -0.8853931427001953, 0.646902322769165, 0.34398943185806274, -0.19199508428573608, -0.06365032494068146, 0.43349602818489075, 0.0027614941354840994, 0.1638856679201126, 0.3293789029121399, -0.5229471921920776, 0.40400969982147217, -0.41834062337875366, 0.3827829658985138, 0.23336553573608398, -0.3140386641025543, -0.6718764901161194, 0.6847838163375854, 0.06154227629303932, -0.27633970975875854, 0.5616835355758667, -0.22455644607543945, -0.053863611072301865, 0.6189777255058289, 0.5534966588020325, 0.7334856390953064, -0.5900237560272217, 0.5661211609840393, 0.38571569323539734, 0.3371430039405823, 0.26342689990997314, 0.7354668378829956, -0.2582143545150757, -0.4889867901802063, -0.39335110783576965, -0.2639259099960327, -0.43848469853401184, 0.4994446635246277, -0.8032039403915405, 0.26530590653419495, -0.25043460726737976, -0.18592043220996857, -0.19412901997566223, 0.12012176215648651, -0.1820368468761444, 0.09595359116792679, -0.08394072949886322, 0.9670644402503967, -1.1943163871765137, 0.8535381555557251, 0.6483747959136963, -0.5403863191604614, -0.7300629019737244, 0.24757073819637299, 0.2180861532688141, -0.8619073033332825, 0.10354028642177582, 0.10872823745012283, 0.04833204671740532, -0.3673257529735565, -0.9886629581451416, -0.9130394458770752, 1.2467670440673828, 0.5792466402053833, -0.48616722226142883, 0.17981059849262238, 0.4094306528568268, 0.6400299072265625, 0.12539391219615936, -0.12577849626541138, 0.6482457518577576, 0.8353717923164368, -0.12733830511569977, -0.9936379790306091, 0.08032441884279251, -0.7752023935317993, -0.1565367728471756, 0.4193224608898163, -0.9011399745941162, 1.106243371963501, 0.11038467288017273, -0.45803990960121155, 0.34886065125465393, 0.4560287594795227, 0.5991839170455933, 0.5135766267776489, 0.1723499596118927, 1.0046992301940918, 0.691737174987793, -0.3117475211620331, 0.5352053046226501, -0.2455713152885437, 0.4967060685157776, 1.066561222076416, -0.2831053137779236, 0.6860377192497253, 0.5305680632591248, -0.5088536739349365, 0.6551045775413513, 0.7660034894943237, -0.3337954878807068, 0.3546389639377594, 0.42570242285728455, -0.031495045870542526, 0.28915899991989136, -0.2218022644519806, -0.5105209946632385, 0.19276103377342224, 0.7928417325019836, -0.30905818939208984, -0.16604170203208923, -0.3783283829689026, 0.4603751003742218, 0.38895753026008606, 0.17975430190563202, 0.8129972815513611, 0.16509371995925903, -0.6274049282073975, 0.5146309733390808, -0.08969108015298843, 0.5071951150894165, -0.8554073572158813, -0.08711864799261093, -0.2952566146850586, 0.04973452165722847, -0.37263375520706177, -1.3090296983718872, 0.450605571269989, -0.08907996863126755, 0.024279944598674774, 0.04890422523021698, 0.5909671187400818, -0.701177716255188, -0.4257909059524536, 0.567160427570343, 0.5089582204818726, 0.015940509736537933, 0.6113433837890625, -0.9299138188362122, 0.3204987347126007, -0.26047283411026, -0.4909699857234955, -0.1353735327720642, 0.48723360896110535, 0.14699307084083557, 0.6622307896614075, 0.544853150844574, 0.06536316126585007, 0.28674373030662537, 0.06607924401760101, 0.8719912171363831, -0.5832145810127258, -0.6647113561630249, -0.754871666431427, 0.9208409786224365, -0.35158541798591614, -0.807811439037323, 1.1446056365966797, 1.2426387071609497, 1.2898465394973755, -0.06791222095489502, 1.0086963176727295, -0.11244514584541321, 0.527725875377655, -0.6271932721138, 0.8958955407142639, -0.7844871878623962, -0.009868178516626358, -0.35306844115257263, -0.9264258146286011, -0.6520419716835022, 0.4738842844963074, -0.087335504591465, -0.05852954089641571, 0.615063488483429, 1.1877011060714722, -0.378591924905777, -0.07312536239624023, 0.07567693293094635, 0.20512929558753967, 0.1514737755060196, 0.24895891547203064, 0.6753876209259033, -0.37022411823272705, 0.3736329674720764, -0.056664418429136276, -0.2384684830904007, -0.15199445188045502, -0.7057344317436218, -0.6913025379180908, -1.114399790763855, -0.43712368607521057, -0.4692372977733612, -0.07551464438438416, 0.42940858006477356, 0.5763660669326782, -0.7636088728904724, -0.7598778009414673, -0.40640220046043396, 0.2557164132595062, -0.05079641565680504, -0.37079522013664246, 0.4751524329185486, -0.10234102606773376, -0.9016392230987549, 0.35860130190849304, -0.10387047380208969, 0.32572853565216064, -0.26845505833625793, -0.37249940633773804, -0.3128594756126404, 0.19928866624832153, 0.13623251020908356, 0.3752904236316681, -0.6630166172981262, 0.06051488593220711, -0.03683995455503464, -0.294723778963089, 0.25209110975265503, 0.927651584148407, 0.061612214893102646, 0.5514037013053894, 1.0549126863479614, 0.24462993443012238, 0.49778422713279724, -0.11431621015071869, 0.8078122735023499, -0.977570116519928, 0.16324545443058014, -0.0402081161737442, 0.4495224058628082, 0.5081297159194946, -0.011607303284108639, 0.9204673767089844, 0.5398590564727783, -0.5616567134857178, -1.1057933568954468, 0.20337501168251038, -1.4196059703826904, -0.5168466567993164, 1.136875867843628, -0.1063244566321373, -0.2884145975112915, 0.1832607239484787, -0.36878955364227295, 0.6898007988929749, -0.6990398168563843, 0.8968504667282104, 0.9616208672523499, 0.13777491450309753, -0.35808655619621277, -0.34268778562545776, 0.4213663637638092, 0.1866488754749298, -0.9037262201309204, 0.24532048404216766, 0.7300174832344055, 0.29545363783836365, 0.0747281089425087, 0.639372706413269, -0.3766213059425354, 0.047745201736688614, 0.261233925819397, -0.03484658896923065, 0.1647798866033554, -0.28420230746269226, -0.4166364073753357, -0.18897202610969543, -0.23492743074893951, -0.22202011942863464 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nlpaueb/finer-139
nlpaueb
2022-10-23T05:05:03Z
220
13
null
[ "task_ids:named-entity-recognition", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:1M<n<10M", "language:en", "license:cc-by-sa-4.0", "arxiv:2203.06482", "region:us" ]
2022-10-23T05:05:03Z
2022-03-04T10:00:23.000Z
2022-03-04T10:00:23
--- annotations_creators: - expert-generated language_creators: - expert-generated language: - en license: - cc-by-sa-4.0 multilinguality: - monolingual pretty_name: FiNER-139 size_categories: - 1M<n<10M source_datasets: [] task_categories: - structure-prediction - named-entity-recognition - entity-extraction task_ids: - named-entity-recognition --- # Dataset Card for FiNER-139 ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks](#supported-tasks) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-instances) - [Data Splits](#data-instances) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [SEC-BERT](#sec-bert) - [About Us](#about-us) ## Dataset Description - **Homepage:** [FiNER](https://github.com/nlpaueb/finer) - **Repository:** [FiNER](https://github.com/nlpaueb/finer) - **Paper:** [FiNER, Loukas et al. (2022)](https://arxiv.org/abs/2203.06482) - **Point of Contact:** [Manos Fergadiotis](mailto:fergadiotis@aueb.gr) ### Dataset Summary <div style="text-align: justify"> <strong>FiNER-139</strong> is comprised of 1.1M sentences annotated with <strong>eXtensive Business Reporting Language (XBRL)</strong> tags extracted from annual and quarterly reports of publicly-traded companies in the US. Unlike other entity extraction tasks, like named entity recognition (NER) or contract element extraction, which typically require identifying entities of a small set of common types (e.g., persons, organizations), FiNER-139 uses a much larger label set of <strong>139 entity types</strong>. Another important difference from typical entity extraction is that FiNER focuses on numeric tokens, with the correct tag depending mostly on context, not the token itself. </div> ### Supported Tasks <div style="text-align: justify"> To promote transparency among shareholders and potential investors, publicly traded companies are required to file periodic financial reports annotated with tags from the eXtensive Business Reporting Language (XBRL), an XML-based language, to facilitate the processing of financial information. However, manually tagging reports with XBRL tags is tedious and resource-intensive. We, therefore, introduce <strong>XBRL tagging</strong> as a <strong>new entity extraction task</strong> for the <strong>financial domain</strong> and study how financial reports can be automatically enriched with XBRL tags. To facilitate research towards automated XBRL tagging we release FiNER-139. </div> ### Languages **FiNER-139** is compiled from approximately 10k annual and quarterly **English** reports ## Dataset Structure ### Data Instances This is a "train" split example: ```json { 'id': 40 'tokens': ['In', 'March', '2014', ',', 'the', 'Rialto', 'segment', 'issued', 'an', 'additional', '$', '100', 'million', 'of', 'the', '7.00', '%', 'Senior', 'Notes', ',', 'at', 'a', 'price', 'of', '102.25', '%', 'of', 'their', 'face', 'value', 'in', 'a', 'private', 'placement', '.'] 'ner_tags': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } ``` ### Data Fields **id**: ID of the example <br> **tokens**: List of tokens for the specific example. <br> **ner_tags**: List of tags for each token in the example. Tags are provided as integer classes.<br> If you want to use the class names you can access them as follows: ```python import datasets finer_train = datasets.load_dataset("nlpaueb/finer-139", split="train") finer_tag_names = finer_train.features["ner_tags"].feature.names ``` **finer_tag_names** contains a list of class names corresponding to the integer classes e.g. ``` 0 -> "O" 1 -> "B-AccrualForEnvironmentalLossContingencies" ``` ### Data Splits | Training | Validation | Test | -------- | ---------- | ------- | 900,384 | 112,494 | 108,378 ## Dataset Creation ### Curation Rationale The dataset was curated by [Loukas et al. (2022)](https://arxiv.org/abs/2203.06482) <br> ### Source Data #### Initial Data Collection and Normalization <div style="text-align: justify"> FiNER-139 is compiled from approximately 10k annual and quarterly English reports (filings) of publicly traded companies downloaded from the [US Securities and Exchange Commission's (SEC)](https://www.sec.gov/) [Electronic Data Gathering, Analysis, and Retrieval (EDGAR)](https://www.sec.gov/edgar.shtml) system. The reports span a 5-year period, from 2016 to 2020. They are annotated with XBRL tags by professional auditors and describe the performance and projections of the companies. XBRL defines approximately 6k entity types from the US-GAAP taxonomy. FiNER-139 is annotated with the 139 most frequent XBRL entity types with at least 1,000 appearances. We used regular expressions to extract the text notes from the Financial Statements Item of each filing, which is the primary source of XBRL tags in annual and quarterly reports. We used the <strong>IOB2</strong> annotation scheme to distinguish tokens at the beginning, inside, or outside of tagged expressions, which leads to 279 possible token labels. </div> ### Annotations #### Annotation process <div style="text-align: justify"> All the examples were annotated by professional auditors as required by the Securities & Exchange Commission (SEC) legislation. Even though the gold XBRL tags come from professional auditors there are still some discrepancies. Consult [Loukas et al. (2022)](https://arxiv.org/abs/2203.06482), (Section 9.4) for more details </div> #### Who are the annotators? Professional auditors ### Personal and Sensitive Information The dataset contains publicly available annual and quarterly reports (filings) ## Additional Information ### Dataset Curators [Loukas et al. (2022)](https://arxiv.org/abs/2203.06482) ### Licensing Information <div style="text-align: justify"> Access to SEC's EDGAR public database is free, allowing research of public companies' financial information and operations by reviewing the filings the companies makes with the SEC. </div> ### Citation Information If you use this dataset cite the following ``` @inproceedings{loukas-etal-2022-finer, title = {FiNER: Financial Numeric Entity Recognition for XBRL Tagging}, author = {Loukas, Lefteris and Fergadiotis, Manos and Chalkidis, Ilias and Spyropoulou, Eirini and Malakasiotis, Prodromos and Androutsopoulos, Ion and Paliouras George}, booktitle = {Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (ACL 2022)}, publisher = {Association for Computational Linguistics}, location = {Dublin, Republic of Ireland}, year = {2022}, url = {https://arxiv.org/abs/2203.06482} } ``` ## SEC-BERT <img align="center" src="https://i.ibb.co/0yz81K9/sec-bert-logo.png" alt="SEC-BERT" width="400"/> <div style="text-align: justify"> We also pre-train our own BERT models (<strong>SEC-BERT</strong>) for the financial domain, intended to assist financial NLP research and FinTech applications. <br> <strong>SEC-BERT</strong> consists of the following models: * [**SEC-BERT-BASE**](https://huggingface.co/nlpaueb/sec-bert-base): Same architecture as BERT-BASE trained on financial documents. * [**SEC-BERT-NUM**](https://huggingface.co/nlpaueb/sec-bert-num): Same as SEC-BERT-BASE but we replace every number token with a [NUM] pseudo-token handling all numeric expressions in a uniform manner, disallowing their fragmentation * [**SEC-BERT-SHAPE**](https://huggingface.co/nlpaueb/sec-bert-shape): Same as SEC-BERT-BASE but we replace numbers with pseudo-tokens that represent the number’s shape, so numeric expressions (of known shapes) are no longer fragmented, e.g., '53.2' becomes '[XX.X]' and '40,200.5' becomes '[XX,XXX.X]'. These models were pre-trained on 260,773 10-K filings (annual reports) from 1993-2019, publicly available at [U.S. Securities and Exchange Commission (SEC)](https://www.sec.gov/) </div> ## About Us <div style="text-align: justify"> [**AUEB's Natural Language Processing Group**](http://nlp.cs.aueb.gr) develops algorithms, models, and systems that allow computers to process and generate natural language texts. The group's current research interests include: * question answering systems for databases, ontologies, document collections, and the Web, especially biomedical question answering, * natural language generation from databases and ontologies, especially Semantic Web ontologies, text classification, including filtering spam and abusive content, * information extraction and opinion mining, including legal text analytics and sentiment analysis, * natural language processing tools for Greek, for example parsers and named-entity recognizers, machine learning in natural language processing, especially deep learning. The group is part of the Information Processing Laboratory of the Department of Informatics of the Athens University of Economics and Business. </div> [Manos Fergadiotis](https://manosfer.github.io) on behalf of [AUEB's Natural Language Processing Group](http://nlp.cs.aueb.gr)
[ -0.5720033645629883, -0.42460617423057556, 0.012196753174066544, 0.2011469155550003, -0.26819851994514465, 0.10992074757814407, -0.28394582867622375, -0.7973492741584778, 0.332240492105484, 0.30874863266944885, -0.44485360383987427, -0.6733227968215942, -0.4736080765724182, 0.16642075777053833, -0.3104524612426758, 1.3040136098861694, 0.13695493340492249, -0.15370909869670868, 0.25915539264678955, 0.01900884322822094, -0.25962814688682556, -0.6044477224349976, -0.7404636144638062, -0.049353282898664474, 0.4735928773880005, 0.04656786471605301, 0.6809041500091553, 0.8727332949638367, 0.8918824791908264, 0.3642968535423279, -0.15769629180431366, 0.26537013053894043, -0.3482937514781952, -0.5640025734901428, -0.10537523776292801, -0.28165435791015625, -0.7921165227890015, 0.04216434806585312, 0.7632767558097839, 0.7059299349784851, -0.038907334208488464, 0.40005943179130554, 0.011737512424588203, 0.6840264201164246, -0.4715529978275299, 0.6244481801986694, -0.6671878695487976, -0.053578123450279236, -0.4282056391239166, -0.25588658452033997, -0.4101506173610687, -0.15182611346244812, 0.23455815017223358, -0.6889737844467163, 0.23483256995677948, 0.38837939500808716, 1.6152050495147705, -0.012059860862791538, -0.13085658848285675, -0.3010564148426056, -0.3063007891178131, 0.8196784853935242, -0.8322564959526062, 0.5821012258529663, 0.4410828649997711, -0.03568499907851219, 0.10449834913015366, -1.0661265850067139, -0.3391609489917755, -0.09671344608068466, -0.3198072016239166, 0.13799850642681122, -0.4418576955795288, 0.02250610664486885, 0.2220550775527954, 0.4024805724620819, -0.5116361975669861, 0.04350743815302849, -0.5208775997161865, -0.18605753779411316, 0.7818434834480286, 0.13326464593410492, 0.013357717543840408, -0.3373645842075348, -0.5831516981124878, -0.3262026309967041, -0.41527462005615234, 0.19975747168064117, 0.40542149543762207, 0.7173726558685303, -0.28086206316947937, 0.218811497092247, 0.013710143975913525, 0.4787842929363251, 0.07447836548089981, -0.3452504873275757, 0.6745485663414001, -0.5746439099311829, -0.552865207195282, 0.36889392137527466, 0.6826567053794861, 0.3322482407093048, 0.1270078718662262, -0.16997911036014557, -0.46328216791152954, -0.17466901242733002, 0.10821907967329025, -0.6415218114852905, -0.416666716337204, 0.05834999680519104, -0.678759753704071, -0.2976580560207367, 0.35180947184562683, -0.6232552528381348, 0.06582053750753403, -0.4637899696826935, 0.3694364130496979, -0.4828141927719116, -0.09147615730762482, 0.20686717331409454, -0.3861834406852722, 0.435322105884552, 0.23067620396614075, -0.8674436807632446, 0.4537558853626251, 0.8232151865959167, 0.6493100523948669, 0.14900803565979004, -0.1022280901670456, -0.3773467242717743, 0.22558264434337616, -0.2249213606119156, 0.7654801607131958, -0.4757488965988159, -0.38640350103378296, -0.30562475323677063, 0.03293269872665405, 0.053561750799417496, -0.486261248588562, 0.645405113697052, -0.5022873878479004, 0.05559944361448288, -0.5103645920753479, -0.5624071955680847, -0.1971699744462967, 0.234328031539917, -0.6505779027938843, 1.0835018157958984, 0.20389439165592194, -0.9184373617172241, 0.7738914489746094, -0.8541069626808167, -0.1895829290151596, 0.23984013497829437, -0.17762528359889984, -0.4422629177570343, -0.20371434092521667, 0.22019729018211365, 0.3293376863002777, -0.3052479028701782, 0.345897912979126, -0.28319913148880005, -0.24627095460891724, 0.23474182188510895, -0.4725317358970642, 0.9058640599250793, 0.18582192063331604, -0.2689136564731598, -0.010811293497681618, -0.9317038655281067, 0.046908289194107056, 0.21097280085086823, -0.47009775042533875, -0.4037107527256012, -0.1272893100976944, 0.1558057814836502, 0.12886659801006317, 0.29023370146751404, -0.4580293893814087, 0.20073431730270386, -0.515114426612854, 0.3624856770038605, 0.9051256775856018, 0.0069802007637917995, 0.28992271423339844, -0.5104979872703552, 0.18119552731513977, 0.03270808979868889, 0.20399805903434753, -0.15342535078525543, -0.44980189204216003, -0.6447299122810364, -0.7187434434890747, 0.7605330348014832, 0.5752028822898865, -0.15133129060268402, 0.8524433970451355, -0.5934624671936035, -0.6572923064231873, -0.5841054916381836, 0.06538642942905426, 0.32552245259284973, 0.6280630826950073, 0.5677622556686401, -0.2587911784648895, -0.743177056312561, -0.9203978180885315, -0.0021202610805630684, -0.2725559175014496, 0.18541568517684937, 0.26403117179870605, 0.5330809950828552, -0.09599865972995758, 1.0897996425628662, -0.6377827525138855, -0.47672972083091736, -0.13577167689800262, 0.25672394037246704, 0.22041423618793488, 0.6289361715316772, 0.7791232466697693, -0.851195752620697, -0.41574835777282715, 0.0425507090985775, -0.5336357951164246, 0.0831904262304306, -0.48266085982322693, -0.187625914812088, 0.36700668931007385, 0.3407069146633148, -0.4173413813114166, 0.5526261329650879, 0.15516920387744904, -0.3786381483078003, 0.4033491909503937, -0.14689964056015015, -0.16330291330814362, -0.7345001697540283, 0.3568495810031891, 0.2917521595954895, -0.1721755713224411, -0.43117231130599976, -0.13485443592071533, 0.16263751685619354, 0.2391805648803711, -0.35367342829704285, 0.6772308945655823, -0.4944688677787781, -0.018640244379639626, 0.255571186542511, 0.06208309158682823, 0.2726179361343384, 0.6559557914733887, -0.04958881437778473, 0.7030865550041199, 0.5157532095909119, -0.5068586468696594, -0.003926439676433802, 0.4557139277458191, -0.4704727530479431, 0.13148565590381622, -0.5270066261291504, -0.4046303927898407, -0.06924362480640411, 0.28582051396369934, -0.9151012897491455, 0.07502443343400955, 0.35107335448265076, -0.5051135420799255, 0.6682853698730469, -0.12591984868049622, -0.6241031885147095, -0.24868550896644592, -0.5481735467910767, -0.022384045645594597, 0.4299973249435425, -0.3937140703201294, 0.5938544273376465, 0.17886576056480408, -0.36455604434013367, -0.6834890246391296, -1.0303630828857422, 0.20622606575489044, -0.2322155088186264, -0.7181715965270996, 0.5420446991920471, -0.0694689005613327, -0.33571237325668335, 0.16467460989952087, -0.19194065034389496, 0.03199733793735504, 0.33765435218811035, 0.17065519094467163, 0.651163637638092, -0.255765825510025, 0.005314612295478582, -0.06790505349636078, -0.21069219708442688, 0.06301631778478622, -0.0993739664554596, 0.5191684365272522, -0.37152889370918274, -0.18746083974838257, -0.5938981175422668, 0.2866884768009186, 0.09738703817129135, -0.5133454203605652, 0.6310948133468628, 0.5975650548934937, -0.269253134727478, 0.13742487132549286, -0.466826468706131, 0.050333552062511444, -0.5279675126075745, 0.22282889485359192, -0.25201383233070374, -0.6187096238136292, 0.8112030029296875, 0.2732609510421753, 0.3298395574092865, 0.8399259448051453, 0.4551403522491455, -0.02470310777425766, 0.8380023837089539, 0.3839741051197052, -0.0796385332942009, 0.5300053954124451, -0.7165515422821045, 0.38971999287605286, -0.5639433860778809, -0.4354724884033203, -0.6274561285972595, -0.38910919427871704, -0.7169094085693359, -0.10682181268930435, -0.1295461803674698, 0.12912634015083313, -0.3039851188659668, 0.39222949743270874, -0.487278550863266, 0.2515791058540344, 0.7584535479545593, -0.13864681124687195, 0.09962938725948334, 0.0741284042596817, -0.06329424679279327, -0.0017972184577956796, -0.3831290602684021, -0.6050546765327454, 0.9349219799041748, 0.5917081236839294, 0.6508980393409729, 0.07688110321760178, 1.0782051086425781, 0.40979987382888794, 0.2824482321739197, -0.6137402653694153, 0.5107294917106628, -0.24553517997264862, -0.8487483263015747, -0.2052101492881775, -0.5344519019126892, -0.9157065153121948, -0.012241067364811897, -0.14480318129062653, -0.831253707408905, 0.6262727379798889, -0.011618065647780895, -0.5815937519073486, 0.4095214903354645, -0.8751256465911865, 0.7502379417419434, -0.26255473494529724, -0.126437708735466, 0.27425047755241394, -0.881942629814148, 0.13406337797641754, -0.3065016567707062, 0.1764732003211975, -0.22087262570858002, -0.1579875946044922, 0.9353335499763489, -0.5945265889167786, 0.8778302669525146, -0.27806833386421204, -0.1925238072872162, 0.4006677269935608, -0.28433096408843994, 0.5522912740707397, 0.173320934176445, -0.07809397578239441, 0.44000494480133057, 0.06491177529096603, -0.3225691020488739, -0.31259697675704956, 0.44574686884880066, -0.7132576704025269, -0.3317384719848633, -0.5831655859947205, -0.5284518599510193, 0.10486990213394165, 0.329194039106369, 0.2341764122247696, 0.6728184819221497, 0.1847420483827591, 0.23392413556575775, 0.43423891067504883, -0.14010535180568695, 0.6901633739471436, 0.3642948865890503, -0.03849964588880539, -0.587590754032135, 1.0596134662628174, 0.5870547294616699, -0.02262175641953945, 0.5290559530258179, -0.007230748422443867, -0.5189499258995056, -0.6466004252433777, -0.1647694706916809, 0.21965965628623962, -0.7525391578674316, -0.6344019770622253, -0.7299190759658813, -0.2683599889278412, -0.7779809236526489, -0.3352201282978058, -0.1648654341697693, -0.4633736312389374, -0.6426721215248108, -0.35068973898887634, 0.5137106776237488, 0.3278116285800934, -0.4290867745876312, 0.27251866459846497, -1.0796923637390137, 0.1972789764404297, 0.09120006859302521, 0.43003541231155396, 0.13098791241645813, -0.5400001406669617, -0.3381052315235138, 0.1468602865934372, -0.13242226839065552, -0.44196513295173645, 0.5446639657020569, 0.3216496407985687, 0.6484783291816711, 0.6933507323265076, 0.24919593334197998, 1.0580750703811646, -0.2624073028564453, 0.8273382782936096, 0.1391720324754715, -0.9534845948219299, 0.23544251918792725, -0.18739889562129974, -0.0930103212594986, 0.7876424789428711, 0.46877437829971313, -0.3401162028312683, -0.3014909327030182, -1.0472917556762695, -1.2511004209518433, 0.8924668431282043, 0.1789836287498474, 0.07569001615047455, -0.30135107040405273, 0.2608988285064697, 0.04273311421275139, 0.2002340406179428, -0.6765601634979248, -0.6083384156227112, -0.10408107936382294, -0.20200257003307343, 0.24894076585769653, -0.21587194502353668, -0.07091395556926727, -0.30503976345062256, 0.9836236238479614, 0.09575241804122925, 0.4055711328983307, 0.2923238277435303, -0.022746391594409943, 0.21131305396556854, 0.05643702298402786, 0.47142282128334045, 0.606970489025116, -0.6412569880485535, -0.02323150262236595, 0.13359643518924713, -0.5186514854431152, -0.2539806365966797, 0.5355543494224548, -0.01489587314426899, 0.07094615697860718, 0.5755139589309692, 0.78529953956604, 0.2533062994480133, -0.7108274102210999, 0.38289082050323486, -0.09493283927440643, -0.4179477095603943, -0.2959935963153839, -0.027092862874269485, -0.11683456599712372, 0.29065948724746704, 0.6217861175537109, 0.14927701652050018, 0.3283231854438782, -0.38887932896614075, 0.40344205498695374, 0.26959457993507385, -0.2763391435146332, -0.2187187373638153, 0.45593348145484924, 0.03715719282627106, 0.008219300769269466, 0.6619725227355957, -0.5335023403167725, -0.3092462122440338, 0.6107683181762695, 0.3824178874492645, 0.8004081845283508, 0.3183498680591583, -0.0582357682287693, 0.3013073205947876, 0.3616681396961212, 0.02763369493186474, 0.5104817152023315, -0.08928108960390091, -0.5287343859672546, -0.42184334993362427, -0.7084645628929138, -0.09631090611219406, -0.0541759729385376, -0.8700387477874756, 0.46422722935676575, -0.6688517928123474, -0.43315204977989197, 0.5517494678497314, 0.3958003520965576, -0.7569300532341003, 0.3308623433113098, 0.5333365797996521, 1.3952559232711792, -0.6636781096458435, 0.62799072265625, 0.6253945231437683, -0.7622508406639099, -1.0440014600753784, -0.40255680680274963, -0.08017458766698837, -0.8079439997673035, 0.920357882976532, 0.125000461935997, 0.3004961609840393, 0.0013808469520881772, -0.5624063014984131, -1.049320936203003, 1.1321381330490112, 0.22008369863033295, -0.5677857995033264, -0.3234667181968689, 0.1381167322397232, 0.33257564902305603, -0.137472003698349, 0.04701170697808266, 0.6238248944282532, 0.7393317222595215, 0.06776261329650879, -0.9034625291824341, -0.02435765415430069, -0.4287915527820587, -0.16886714100837708, 0.4622807204723358, -0.7856261134147644, 0.8262256979942322, 0.00010168220615014434, -0.20305316150188446, -0.12108931690454483, 0.7831791043281555, 0.1981760859489441, 0.2961747944355011, 0.3604944348335266, 0.8528842329978943, 1.0460736751556396, -0.3417080044746399, 0.9314060211181641, -0.4338640868663788, 0.5786982774734497, 1.1786473989486694, -0.23352213203907013, 0.7800492644309998, 0.3582172393798828, -0.27696478366851807, 0.4583244025707245, 0.7455610632896423, -0.6530603170394897, 0.519278883934021, 0.058363791555166245, 0.011249132454395294, -0.12790311872959137, -0.15586909651756287, -0.4807785153388977, 0.47218266129493713, 0.33755436539649963, -0.6179370284080505, -0.2910672724246979, -0.2966514825820923, 0.3071768283843994, -0.4117584526538849, -0.40003371238708496, 0.8606165051460266, -0.020226994529366493, -0.19168323278427124, 0.5064899921417236, 0.21123859286308289, 0.7452200055122375, -0.901408314704895, 0.0745832771062851, -0.0899677723646164, 0.03137477487325668, -0.41330230236053467, -0.886117160320282, 0.3175064027309418, 0.0621911995112896, -0.21395641565322876, -0.3386693596839905, 0.6816192865371704, -0.13634730875492096, -0.6098538637161255, 0.12205435335636139, 0.1725076287984848, 0.18569640815258026, 0.10660052299499512, -0.8692020177841187, 0.01721920445561409, 0.1278931200504303, -0.35369715094566345, 0.31533506512641907, 0.6243898868560791, -0.13223080337047577, 0.510032594203949, 0.8726536631584167, 0.0086843091994524, 0.1694556325674057, -0.04178013652563095, 1.0710123777389526, -0.840470552444458, -0.6267056465148926, -0.8053503632545471, 0.6452558636665344, -0.15047188103199005, -0.35791075229644775, 0.7492409348487854, 0.9312587380409241, 1.00119948387146, 0.22591543197631836, 0.7389974594116211, -0.13398344814777374, 0.23966056108474731, -0.33189645409584045, 0.6431998014450073, -0.5166305303573608, 0.16276393830776215, -0.42310410737991333, -0.7379969954490662, -0.5645921230316162, 0.5771809816360474, -0.29769405722618103, 0.14176198840141296, 0.29458314180374146, 0.7253017425537109, 0.03624643012881279, 0.09997452795505524, 0.03690708056092262, 0.11970215290784836, 0.4531818628311157, 0.06293036043643951, 0.39962339401245117, -0.5334731340408325, 0.6962587833404541, -0.4836835265159607, 0.027388889342546463, -0.3312039077281952, -0.9436741471290588, -0.5726133584976196, -0.3749721944332123, -0.5969200134277344, -0.28621706366539, -0.3091059625148773, 1.2304750680923462, 0.5587911009788513, -0.7632970213890076, -0.024976439774036407, 0.2042527049779892, -0.2542572021484375, -0.16803498566150665, -0.26070645451545715, 0.650815486907959, -0.4511125385761261, -0.5735840201377869, 0.03002467378973961, 0.3627975881099701, 0.3255956470966339, 0.023113161325454712, 0.030673719942569733, -0.4070670008659363, 0.1642059087753296, 0.43221211433410645, 0.19260451197624207, -0.5388120412826538, -0.17634731531143188, 0.024879829958081245, -0.13014763593673706, 0.32587260007858276, 0.3684912919998169, -0.5773034691810608, 0.07580948621034622, 0.5255612134933472, 0.5988479852676392, 0.2675947844982147, 0.12339220941066742, -0.08317776769399643, -0.8652773499488831, 0.027760595083236694, 0.13022057712078094, 0.5268787741661072, 0.15664254128932953, -0.2851734161376953, 0.5683357119560242, 0.21054892241954803, -0.3696618378162384, -0.9864943027496338, -0.4963603913784027, -1.4078075885772705, -0.1833682805299759, 0.9573855400085449, -0.2487994134426117, -0.38436880707740784, -0.032989710569381714, -0.27292293310165405, 0.1437874585390091, -0.81996750831604, 0.38843387365341187, 0.5746586918830872, -0.011768922209739685, 0.19063293933868408, -0.2850474417209625, 0.437370628118515, 0.013906891457736492, -0.6124608516693115, 0.15615113079547882, 0.24663224816322327, 0.14901666343212128, 0.4547346532344818, 0.5448556542396545, -0.17403551936149597, 0.12692053616046906, 0.03435593470931053, 0.2752150297164917, -0.1910354346036911, -0.17243839800357819, -0.20900960266590118, 0.0758541077375412, -0.03233181685209274, -0.12027977406978607 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nielsr/funsd-iob-original
nielsr
2022-11-19T13:38:09Z
220
0
null
[ "region:us" ]
2022-11-19T13:38:09Z
2022-11-19T13:30:51.000Z
2022-11-19T13:30:51
Entry not found
[ -0.3227645754814148, -0.22568479180335999, 0.8622263669967651, 0.43461522459983826, -0.52829909324646, 0.7012971639633179, 0.7915719747543335, 0.07618614286184311, 0.774603009223938, 0.2563217282295227, -0.7852813005447388, -0.22573819756507874, -0.9104475975036621, 0.5715674161911011, -0.3992327153682709, 0.5791246294975281, -0.14494499564170837, -0.10751135647296906, 0.28233814239501953, -0.2768957316875458, -0.5409227013587952, -0.3685525059700012, -1.1902779340744019, 0.061491698026657104, 0.5316582918167114, 0.743514358997345, 0.7584061622619629, 0.3652168810367584, 0.643257737159729, 0.39322906732559204, -0.231389120221138, 0.48270541429519653, -0.04171793907880783, 0.0026038705836981535, -0.3524438440799713, -0.5516899824142456, -0.28596577048301697, 0.07584768533706665, 1.096130132675171, 0.9666873812675476, -0.28466421365737915, 0.05330856889486313, -0.30636167526245117, 0.3308892846107483, -0.4973427355289459, 0.3054097294807434, -0.022506216540932655, 0.16318757832050323, -0.704151451587677, -0.5535351634025574, 0.012795033864676952, -0.7361212968826294, 0.17926514148712158, -0.6900812387466431, 0.8269097208976746, 0.18583209812641144, 1.1533749103546143, 0.14819422364234924, -0.4624859392642975, -0.8161761164665222, -0.6538985371589661, 0.5711163282394409, -0.32703715562820435, 0.3968023657798767, 0.7028226256370544, -0.048573337495326996, -0.9820331335067749, -0.6745738983154297, -0.46466246247291565, 0.2923974096775055, 0.3540281355381012, -0.3411684036254883, -0.17522093653678894, -0.30589917302131653, 0.15791958570480347, 0.1281142681837082, -0.48419976234436035, -0.5543919205665588, -0.547515869140625, -0.39602571725845337, 0.6206656694412231, 0.34829503297805786, 0.24291737377643585, -0.18884189426898956, -0.3228582441806793, 0.0880165845155716, -0.41608554124832153, 0.3402574062347412, 0.6335517168045044, 0.711402416229248, -0.5811446309089661, 0.5602157711982727, -0.049275897443294525, 0.7439709901809692, 0.11445585638284683, -0.2747812569141388, 0.4146060049533844, -0.14724673330783844, 0.055171847343444824, 0.42263513803482056, 0.3152443468570709, 0.28413069248199463, -0.3273696303367615, 0.20322275161743164, -0.32151490449905396, -0.3049626648426056, -0.2233218252658844, -0.29490745067596436, -0.35921788215637207, 0.5492295026779175, -0.3314018249511719, -0.4285552501678467, 1.1431758403778076, -0.42007699608802795, -0.7302228808403015, 0.33156365156173706, 0.40652117133140564, -0.0994473472237587, -0.37146514654159546, -0.052260853350162506, -0.8458787202835083, -0.00790744461119175, 0.7491178512573242, -0.7198969125747681, 0.33717358112335205, 0.47280627489089966, 0.741721510887146, 0.1965060532093048, -0.14034466445446014, -0.4294945299625397, 0.2971963882446289, -0.8659994006156921, 0.6320174336433411, -0.20135276019573212, -1.0051976442337036, 0.11150483042001724, 0.8971704244613647, -0.3789643347263336, -1.2094870805740356, 1.0605157613754272, -0.6887932419776917, 0.16017864644527435, -0.6767609119415283, -0.14661164581775665, -0.07118469476699829, -0.005095955915749073, -0.6088155508041382, 0.7567099332809448, 0.5872676968574524, -0.49952778220176697, 0.21429462730884552, -0.2602984309196472, -0.3915135860443115, 0.38824939727783203, -0.0793546810746193, -0.21858906745910645, 0.7138336896896362, -0.6647078394889832, -0.2693284749984741, 0.2942773103713989, 0.23689350485801697, -0.357060968875885, -0.793192446231842, 0.08478079736232758, -0.05786222219467163, 1.5507503747940063, -0.03868860378861427, -0.35861143469810486, -0.6793836951255798, -1.1506236791610718, -0.07070811837911606, 0.6886887550354004, -0.9194992184638977, -0.27839499711990356, -0.046410247683525085, -0.26169371604919434, 0.0899493545293808, 0.7390591502189636, -1.119404911994934, 0.28327250480651855, -0.050927065312862396, -0.22794730961322784, 0.8271061182022095, 0.1538720428943634, 0.24758882820606232, 0.14913466572761536, 0.4295872151851654, 0.5277255773544312, 0.11115183681249619, 0.6835882663726807, -0.3472035229206085, -0.9694353938102722, 0.6154633164405823, 0.25266438722610474, 0.8121451139450073, -0.49945372343063354, 0.2685092091560364, 0.2702546715736389, -0.3409683108329773, -0.5682377815246582, -0.310282826423645, 0.09025713056325912, 0.14930608868598938, 0.11142496764659882, -0.5721707344055176, -0.6576128005981445, -0.9689135551452637, -0.13590654730796814, -0.43143755197525024, -0.35715678334236145, 0.2100687474012375, 0.5792907476425171, -1.1975533962249756, 0.4128877520561218, -0.7705622911453247, -0.703874409198761, -0.010655621066689491, -0.1933809369802475, 0.7540653944015503, 0.43240174651145935, 0.5033961534500122, -0.6397145390510559, -0.5661987066268921, -0.22470159828662872, -1.0333740711212158, -0.13280484080314636, 0.24819664657115936, 0.3065737783908844, -0.1342328041791916, -0.2744964361190796, -0.48740261793136597, 0.8100383877754211, 0.14789214730262756, -0.5391897559165955, 0.5220769643783569, -0.3020317554473877, 0.17224839329719543, -0.6369158029556274, -0.0691685602068901, -0.6616761684417725, -0.0009067110950127244, -0.36083078384399414, -0.5737436413764954, 0.14772333204746246, 0.07017548382282257, -0.16065415740013123, 0.2880837619304657, -0.909276008605957, -0.0010854422580450773, -0.744221568107605, 0.37907224893569946, 0.0639476627111435, -0.3145084083080292, -0.017516743391752243, 1.000038743019104, 0.7784457206726074, -0.3848040699958801, 0.7217439413070679, 0.4440040588378906, 0.19036099314689636, 0.7630518674850464, -0.18725158274173737, 0.16478213667869568, -0.5245421528816223, -0.12161099910736084, -0.8887605667114258, -1.0982943773269653, 0.7320572137832642, -0.6114250421524048, 0.36542850732803345, -0.42778605222702026, 0.2589159309864044, -0.6919258832931519, -0.038853395730257034, 0.4808599054813385, -0.05936374515295029, -0.6863952875137329, 0.5232571363449097, 0.4531749188899994, -0.2019244134426117, -0.6609036922454834, -0.5301570296287537, 0.39365914463996887, 0.6154113411903381, -0.16390396654605865, 0.06878498196601868, 0.14941087365150452, -0.5441920757293701, -0.040802545845508575, -0.3869187533855438, -0.4576674997806549, 0.05422405153512955, 0.13053379952907562, -0.005750161595642567, -0.40482011437416077, -0.08680257946252823, -0.35842010378837585, -0.4656125009059906, 0.21876463294029236, 0.30119529366493225, -0.04096344858407974, -0.42599743604660034, -0.36198148131370544, -0.8881808519363403, 0.6719611883163452, 0.5370280146598816, 0.05281474441289902, 0.7555550336837769, 0.16819244623184204, -0.801498293876648, -0.13532206416130066, -0.17607054114341736, 0.2696835994720459, -0.5588056445121765, 0.13849826157093048, -0.013484805822372437, -0.06374907493591309, 0.2629791498184204, 0.25386205315589905, -0.4300558567047119, 0.927625298500061, -0.26152747869491577, -0.3592526614665985, 0.7960182428359985, 0.5974737405776978, 0.4958309531211853, 0.16503198444843292, -0.044541094452142715, 0.9007097482681274, -1.196651816368103, -0.6563171744346619, -0.7409546375274658, -0.15945661067962646, -0.43510857224464417, -0.0321057066321373, 0.6254417300224304, 0.29009905457496643, -0.13333925604820251, 0.47563934326171875, -0.5243490934371948, 0.3556032180786133, 1.0119839906692505, 0.3574867248535156, 0.34357017278671265, -0.7570232152938843, -0.25157779455184937, -0.14024296402931213, -0.9998159408569336, -0.2631372809410095, 0.8871029615402222, 0.2275265008211136, 0.8444608449935913, 0.5992542505264282, 0.6784538626670837, 0.136723130941391, 0.2523833215236664, -0.305902898311615, 0.39202871918678284, 0.43760839104652405, -1.040114164352417, -0.42758411169052124, 0.02141888067126274, -0.9703332185745239, -0.14227578043937683, -0.03495054319500923, -0.42617106437683105, 0.7681738138198853, 0.00016635804786346853, -0.4076710641384125, 0.7732735872268677, -0.4555833339691162, 0.7562878727912903, -0.4473649859428406, -0.026638653129339218, 0.4699098467826843, -0.707064151763916, 0.4677433967590332, 0.12878736853599548, 0.6205845475196838, -0.015571946278214455, -0.04078621417284012, 0.7104931473731995, -0.9129164814949036, 0.25438612699508667, -0.6348398923873901, 0.22421303391456604, 0.24246959388256073, 0.5160625576972961, 0.5969962477684021, 0.4371241629123688, 0.10119915008544922, -0.23920848965644836, 0.04115789383649826, -0.8241121172904968, -0.21050670742988586, 0.6975144147872925, -0.7186897397041321, -0.6864195466041565, -1.2355334758758545, 0.14438661932945251, 0.2734704911708832, 0.3893047273159027, 0.7959297895431519, 0.5714079141616821, 0.12895449995994568, 0.6805254220962524, 0.9888579249382019, -0.06885591894388199, 0.916691780090332, 0.3224475085735321, 0.09175165742635727, -0.2194489687681198, 0.703682541847229, 0.2662784457206726, -0.2470790147781372, -0.11939744651317596, 0.20913469791412354, -0.11069414764642715, -0.5917618870735168, -0.4999074339866638, 0.3701755702495575, -0.6731783747673035, -0.1830393373966217, -0.6243732571601868, -0.6043766736984253, -0.5117589235305786, 0.0692739263176918, -0.7147684097290039, 0.23979082703590393, -0.7753568887710571, -0.10574901103973389, 0.04323358088731766, 0.9792002439498901, -0.5893120765686035, 0.5805228352546692, -1.12185800075531, 0.19345775246620178, -0.07949890196323395, 0.792106032371521, 0.2139579802751541, -0.7344390153884888, -0.39754199981689453, -0.11592598259449005, -0.37299054861068726, -1.3576757907867432, 0.21404962241649628, -0.24541422724723816, 0.2309398353099823, 0.6145407557487488, 0.13977040350437164, 0.5258244276046753, -0.3432632088661194, 0.7029102444648743, -0.057016827166080475, -0.7069293856620789, 0.7934491038322449, -0.5026893615722656, 0.4963533282279968, 0.9766002893447876, 0.5333840250968933, -0.7984007596969604, 0.0357406847178936, -1.041122555732727, -0.600869357585907, 0.38426393270492554, 0.1192895919084549, -0.03601125627756119, -0.665955662727356, -0.054019927978515625, -0.16143806278705597, 0.6043741703033447, -1.0390695333480835, -0.785835862159729, 0.25766894221305847, 0.5277299284934998, 0.08168502151966095, -0.5653401613235474, 0.2088075876235962, -0.5444163084030151, 1.0657776594161987, 0.45109352469444275, 0.32744958996772766, 0.8406059145927429, 0.4649237096309662, -0.38231605291366577, 0.09252502024173737, 0.7662692070007324, 0.6666228771209717, -0.5239795446395874, -0.2908027172088623, -0.0882752314209938, -0.9143400192260742, 0.05927503854036331, 0.1116887554526329, -0.013456095941364765, 0.9082115292549133, 0.579308032989502, 0.253970205783844, 0.4514276385307312, -0.7264610528945923, 0.8859445452690125, -0.1495419293642044, -0.1247284859418869, -1.0677239894866943, 0.19486205279827118, -0.23984935879707336, 0.5006400346755981, 1.0061331987380981, 0.525004506111145, -0.047630541026592255, -0.814338207244873, -0.014736384153366089, 0.6939173936843872, -0.7091119289398193, -0.17449775338172913, 0.9448539614677429, 0.38471025228500366, -1.295304536819458, 1.106776475906372, -0.5381773710250854, -0.5603317618370056, 0.9121302366256714, 0.5229570269584656, 1.1221849918365479, -0.44204193353652954, 0.0008675057324580848, 0.2662239074707031, 0.4137844443321228, 0.5423170328140259, 1.0869632959365845, 0.43141356110572815, -0.7931072115898132, 0.8826581835746765, -0.24776068329811096, -0.40361127257347107, -0.053475700318813324, -0.42859864234924316, 0.16892209649085999, -0.4406189024448395, -0.10712965577840805, -0.3444185256958008, 0.2854307293891907, -0.70720374584198, 0.42807644605636597, -0.08385642617940903, 0.8653066754341125, -0.8553729057312012, 0.47207602858543396, 0.6354700326919556, -0.33373481035232544, -0.8508192300796509, -0.26198476552963257, -0.1144845262169838, -0.6389466524124146, 0.30214792490005493, -0.45541054010391235, 0.044398874044418335, 0.09623479843139648, -0.6491509675979614, -1.1778273582458496, 0.9093631505966187, -0.6396117210388184, -0.2784458100795746, 0.20463958382606506, -0.1151471883058548, 0.28811654448509216, -0.2524648904800415, 0.010661328211426735, 0.4187661111354828, 0.7489396333694458, 0.28446561098098755, -0.7727053761482239, -0.36948859691619873, 0.0015033691888675094, -0.44474759697914124, 0.7582973837852478, -0.6002098917961121, 1.1840776205062866, -0.556353747844696, -0.05965423583984375, 0.4438447952270508, 0.24690861999988556, 0.21076245605945587, 0.6629217267036438, 0.144208163022995, 0.7282259464263916, 1.0701210498809814, -0.4083522856235504, 0.881180465221405, 0.26432785391807556, 0.4743083417415619, 0.7238510251045227, -0.6487718820571899, 0.7513747811317444, 0.3181043267250061, -0.5682927966117859, 0.9228019714355469, 1.290606141090393, -0.15699152648448944, 0.80793696641922, 0.051364265382289886, -1.0815999507904053, 0.32583361864089966, -0.20724761486053467, -0.7530062198638916, 0.31502565741539, 0.19055864214897156, -0.6920987367630005, -0.5770313739776611, -0.2404651641845703, -0.35662829875946045, -0.11552873998880386, -0.763173520565033, 0.6720565557479858, -0.01696927472949028, -0.5103673934936523, 0.18857470154762268, 0.28775009512901306, 0.17368444800376892, -0.5235736966133118, -0.029393965378403664, -0.22823575139045715, 0.2660652697086334, -0.5670853853225708, -0.5234523415565491, 0.5724437236785889, -0.32430148124694824, -0.5343252420425415, 0.181474968791008, 0.7635870575904846, -0.16923785209655762, -0.4515411853790283, 0.3247268795967102, 0.6959530115127563, 0.16658467054367065, 0.42502790689468384, -0.23511283099651337, 0.2448059767484665, -0.08044827729463577, -0.06651593744754791, 0.27714747190475464, 0.3449171781539917, 0.22435645759105682, 0.44501352310180664, 0.432856947183609, -0.018087303265929222, -0.10736559331417084, -0.38282057642936707, 0.41249361634254456, -0.9542784690856934, -0.5713290572166443, -0.630710780620575, 0.2740667760372162, -0.023154327645897865, -1.0836422443389893, 0.41451746225357056, 1.4406688213348389, 1.0359984636306763, -0.4756380617618561, 1.0672271251678467, -0.21818462014198303, 0.9594789743423462, 0.4148314893245697, 0.5420438051223755, -0.6030403971672058, 0.038353081792593, -0.43644052743911743, -1.0769634246826172, -0.3571633994579315, 0.4539390206336975, -0.02289981208741665, -0.3429867625236511, 0.8725717663764954, 0.5887162685394287, -0.3347362279891968, -0.11728022992610931, 0.04848663881421089, -0.029941599816083908, -0.12433874607086182, 0.5145372152328491, 0.764839768409729, -0.9344298243522644, -0.10680411010980606, -0.21577700972557068, -0.6382728815078735, -0.5047284364700317, -0.9632002711296082, -0.12959381937980652, -0.16037842631340027, 0.03534334897994995, -0.5662809014320374, 0.002556905150413513, 1.2083250284194946, 0.5684951543807983, -1.1113994121551514, -0.5303782224655151, 0.33718499541282654, 0.39204245805740356, -0.1874789297580719, -0.24202406406402588, 0.2984571158885956, 0.1538221836090088, -0.5908879041671753, 0.6875662803649902, 0.8089626431465149, 0.20888905227184296, 0.19554781913757324, 0.15893003344535828, -0.8229468464851379, -0.1491343379020691, 0.1744047999382019, 0.9450566172599792, -0.9398531913757324, -0.7114846110343933, -0.03168468177318573, -0.2709487974643707, -0.05765697360038757, 0.17102089524269104, -0.4046342968940735, 0.5180684924125671, 0.34591469168663025, 0.49933499097824097, 0.056160878390073776, -0.05474642664194107, 0.5409556031227112, -0.9069051742553711, 0.09425970166921616, 0.41343608498573303, 0.4154110848903656, -0.4000871181488037, -0.5910195112228394, 0.6713417172431946, 1.0073974132537842, -0.6594864130020142, -0.8743263483047485, -0.19846680760383606, -1.0016000270843506, 0.04189697653055191, 0.6762756109237671, 0.5009528994560242, -0.48065176606178284, -0.4174492359161377, -0.5617400407791138, -0.1254679411649704, -0.13699708878993988, 0.76216059923172, 1.1796802282333374, -0.7432100772857666, 0.07975788414478302, -1.0386393070220947, 0.6594987511634827, -0.2419460564851761, -0.3457580506801605, -0.4864429533481598, 0.3832802176475525, 0.3523699641227722, 0.44048118591308594, 0.6148120164871216, 0.14084689319133759, 0.8338428735733032, 0.31260576844215393, -0.17026856541633606, 0.2698982357978821, -0.4559198319911957, -0.02893332578241825, -0.05796259641647339, 0.3101596236228943, -1.026215672492981 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
IlyaGusev/ru_sharegpt_cleaned
IlyaGusev
2023-09-16T14:34:28Z
220
8
null
[ "task_categories:conversational", "task_categories:text-generation", "size_categories:n<1K", "language:ru", "region:us" ]
2023-09-16T14:34:28Z
2023-04-10T18:40:47.000Z
2023-04-10T18:40:47
--- language: - ru size_categories: - n<1K task_categories: - conversational - text-generation dataset_info: features: - name: messages sequence: - name: role dtype: string - name: content dtype: string - name: id dtype: string splits: - name: train num_bytes: 1993005 num_examples: 273 download_size: 2054401 dataset_size: 1993005 ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
kyujinpy/OpenOrca-KO
kyujinpy
2023-10-12T19:55:47Z
220
11
null
[ "task_categories:conversational", "task_categories:text-classification", "task_categories:token-classification", "task_categories:table-question-answering", "task_categories:question-answering", "task_categories:zero-shot-classification", "task_categories:summarization", "task_categories:feature-extraction", "task_categories:text-generation", "task_categories:text2text-generation", "size_categories:10K<n<50K", "language:ko", "license:mit", "arxiv:2306.02707", "arxiv:2301.13688", "region:us" ]
2023-10-12T19:55:47Z
2023-09-29T15:26:20.000Z
2023-09-29T15:26:20
--- language: - ko license: mit size_categories: - 10K<n<50K task_categories: - conversational - text-classification - token-classification - table-question-answering - question-answering - zero-shot-classification - summarization - feature-extraction - text-generation - text2text-generation pretty_name: OpenOrca configs: - config_name: default data_files: - split: train path: data/train-* dataset_info: features: - name: id dtype: string - name: input dtype: string - name: instruction dtype: string - name: output dtype: string splits: - name: train num_bytes: 44220539 num_examples: 21632 download_size: 22811589 dataset_size: 44220539 --- # OpenOrca-KO - OpenOrca dataset 중 약 2만개를 sampling하여 번역한 데이터셋 - 데이터셋 이용하셔서 모델이나 데이터셋을 만드실 때, 간단한 출처 표기를 해주신다면 연구에 큰 도움이 됩니다😭😭 ## Dataset inf0 1. **NIV** // 1571개 2. **FLAN** // 9434개 3. **T0** // 6351개 4. **CoT** // 2117개 5. **[KoCoT](https://huggingface.co/datasets/kyujinpy/KoCoT_2000)** // 2159개 ## Translation Using DeepL Pro API. Thanks. --- >Below is original dataset card ## Table of Contents - [Dataset Summary](#dataset-summary) - [Dataset Attribution](#dataset-attribution) - [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) - [Dataset Use](#dataset-use) - [Use Cases](#use-cases) - [Usage Caveats](#usage-caveats) - [Getting Started](#getting-started) <p><h1>🐋 The OpenOrca Dataset! 🐋</h1></p> ![OpenOrca Logo](https://huggingface.co/datasets/Open-Orca/OpenOrca/resolve/main/OpenOrcaLogo.png "OpenOrca Logo") <a name="dataset-announcement"></a> We are thrilled to announce the release of the OpenOrca dataset! This rich collection of augmented FLAN data aligns, as best as possible, with the distributions outlined in the [Orca paper](https://arxiv.org/abs/2306.02707). It has been instrumental in generating high-performing model checkpoints and serves as a valuable resource for all NLP researchers and developers! # Official Models ## OpenOrca-Platypus2-13B Our [latest release](https://huggingface.co/Open-Orca/OpenOrca-Platypus2-13B), the first 13B model to score higher than LLaMA1-65B on the HuggingFace Leaderboard! Released in partnership with Platypus. ## LlongOrca 7B & 13B * Our [first 7B release](https://huggingface.co/Open-Orca/LlongOrca-7B-16k), trained on top of LLongMA2 to achieve 16,000 tokens context. #1 long context 7B model at release time, with >99% of the overall #1 model's performance. * [LlongOrca-13B-16k](https://huggingface.co/Open-Orca/LlongOrca-13B-16k), trained on top of LLongMA2. #1 long context 13B model at release time, with >97% of the overall #1 model's performance. ## OpenOrcaxOpenChat-Preview2-13B Our [second model](https://huggingface.co/Open-Orca/OpenOrcaxOpenChat-Preview2-13B), highlighting that we've surpassed the performance reported in the Orca paper. Was #1 at release time, now surpassed by our own OpenOrca-Platypus2-13B. Released in partnership with OpenChat. ## OpenOrca-Preview1-13B [OpenOrca-Preview1-13B](https://huggingface.co/Open-Orca/OpenOrca-Preview1-13B) This model was trained in less than a day, for <$200, with <10% of our data. At release, it beat the current state of the art models on BigBench-Hard and AGIEval. Achieves ~60% of the improvements reported in the Orca paper. <a name="dataset-summary"></a> # Dataset Summary The OpenOrca dataset is a collection of augmented [FLAN Collection data](https://arxiv.org/abs/2301.13688). Currently ~1M GPT-4 completions, and ~3.2M GPT-3.5 completions. It is tabularized in alignment with the distributions presented in the ORCA paper and currently represents a partial completion of the full intended dataset, with ongoing generation to expand its scope. The data is primarily used for training and evaluation in the field of natural language processing. <a name="dataset-attribution"></a> # Dataset Attribution We would like to give special recognition to the following contributors for their significant efforts and dedication: Teknium WingLian/Caseus Eric Hartford NanoBit Pankaj Winddude Rohan http://AlignmentLab.ai: Autometa Entropi AtlasUnified NeverendingToast NanoBit WingLian/Caseus Also of course, as always, TheBloke, for being the backbone of the whole community. Many thanks to NanoBit and Caseus, makers of [Axolotl](https://github.com/OpenAccess-AI-Collective/axolotl), for lending us their expertise on the platform that developed and trained manticore, minotaur, and many others! We are welcoming sponsors or collaborators to help us build these models to the scale they deserve. Please reach out via our socials: http://Alignmentlab.ai https://discord.gg/n9hXaBPWxx Want to visualize our full dataset? Check out our [Nomic Atlas Map](https://atlas.nomic.ai/map/c1b88b47-2d9b-47e0-9002-b80766792582/2560fd25-52fe-42f1-a58f-ff5eccc890d2). [<img src="https://huggingface.co/Open-Orca/OpenOrca-Preview1-13B/resolve/main/OpenOrca%20Nomic%20Atlas.png" alt="Atlas Nomic Dataset Map" width="400" height="400" />](https://atlas.nomic.ai/map/c1b88b47-2d9b-47e0-9002-b80766792582/2560fd25-52fe-42f1-a58f-ff5eccc890d2) <a name="supported-tasks-and-leaderboards"></a> # Supported Tasks and Leaderboards This dataset supports a range of tasks including language modeling, text generation, and text augmentation. It has been instrumental in the generation of multiple high-performing model checkpoints which have exhibited exceptional performance in our unit testing. Further information on leaderboards will be updated as they become available. <a name="languages"></a> # Languages The language of the data is primarily English. <a name="dataset-structure"></a> # Dataset Structure <a name="data-instances"></a> ## Data Instances A data instance in this dataset represents entries from the FLAN collection which have been augmented by submitting the listed question to either GPT-4 or GPT-3.5. The response is then entered into the response field. <a name="data-fields"></a> ## Data Fields The fields are: 1) 'id', a unique numbered identifier which includes one of 'niv', 't0', 'cot', or 'flan' to represent which source FLAN Collection submix the 'question' is sourced from. 2) 'system_prompt', representing the System Prompt presented to the GPT-3.5 or GPT-4 API for the datapoint 3) 'question', representing a question entry as provided by the FLAN Collection 4) 'response', a response to that question received from a query to either GPT-3.5 or GPT-4. <a name="data-splits"></a> ## Data Splits The data is unsplit. <a name="dataset-creation"></a> # Dataset Creation <a name="curation-rationale"></a> ## Curation Rationale The dataset was created to provide a source of augmented text data for researchers and developers. The datapoints are intended primarily to provide an enhancement of the core FLAN Collection data which relies upon the detailed step by step reasoning capabilities of GPT-3.5 and GPT-4. This "reasoning trace" augmentation has demonstrated exceptional results, allowing a LLaMA-13B model trained with this data to rival or beat GPT-3.5 on broad sets of hard reasoning tasks which all models below 100B parameters had previously performed dramatically worse on. <a name="source-data"></a> ## Source Data The data is generated using techniques in alignment with the distributions outlined in the Orca paper, except as noted below: 1) There is not enough CoT data in the FLAN Collection to generate 150K zero-shot entries, as the paper purports to use. We suspect this portion was either undocumented or misrepresented. We have used the ~75K points available. 2) We used the pre-generated FLAN Collection datasets hosted on HuggingFace under conceptofmind, e.g. [conceptofmind/flan2021](https://huggingface.co/datasets/conceptofmind/flan2021_submix_original). These are referenced by the [official FLAN Collection repo](https://github.com/google-research/FLAN/tree/main/flan/v2) as the preferred data source. However, these are a subset of the full FLAN Collection data, and have less than the required entries for the flan2021 and t0 submixes, by ~1.25M and 200k respectively. Combined, this gave us ~1.5M fewer datapoints than in the original Orca paper. Completing the set is an ongoing work. <a name="dataset-use"></a> # Dataset Use <a name="use-cases"></a> ## Use Cases The dataset can be used for tasks related to language understanding, natural language processing, machine learning model training, and model performance evaluation. <a name="usage-caveats"></a> ## Usage Caveats Given that this is a work-in-progress dataset, it is recommended to regularly check for updates and improvements. Further, the data should be used in accordance with the guidelines and recommendations outlined in the Orca paper. <a name="getting-started"></a> ## Getting Started This dataset is organized such that it can be naively loaded via Hugging Face datasets library. We recommend using streaming due to the large size of the files. Regular updates and data generation progress can be monitored through the OpenOrca repository on Hugging Face. # Citation ```bibtex @misc{OpenOrca, title = {OpenOrca: An Open Dataset of GPT Augmented FLAN Reasoning Traces}, author = {Wing Lian and Bleys Goodson and Eugene Pentland and Austin Cook and Chanvichet Vong and "Teknium"}, year = {2023}, publisher = {HuggingFace}, journal = {HuggingFace repository}, howpublished = {\url{https://https://huggingface.co/Open-Orca/OpenOrca}, } ``` ```bibtex @misc{mukherjee2023orca, title={Orca: Progressive Learning from Complex Explanation Traces of GPT-4}, author={Subhabrata Mukherjee and Arindam Mitra and Ganesh Jawahar and Sahaj Agarwal and Hamid Palangi and Ahmed Awadallah}, year={2023}, eprint={2306.02707}, archivePrefix={arXiv}, primaryClass={cs.CL} } ``` ```bibtex @misc{longpre2023flan, title={The Flan Collection: Designing Data and Methods for Effective Instruction Tuning}, author={Shayne Longpre and Le Hou and Tu Vu and Albert Webson and Hyung Won Chung and Yi Tay and Denny Zhou and Quoc V. Le and Barret Zoph and Jason Wei and Adam Roberts}, year={2023}, eprint={2301.13688}, archivePrefix={arXiv}, primaryClass={cs.AI} } ``` ```bibtex @misc{touvron2023llama, title={Llama 2: Open Foundation and Fine-Tuned Chat Models}, author={Hugo Touvron and Louis Martin and Kevin Stone and Peter Albert and Amjad Almahairi and Yasmine Babaei and Nikolay Bashlykov and Soumya Batra and Prajjwal Bhargava and Shruti Bhosale and Dan Bikel and Lukas Blecher and Cristian Canton Ferrer and Moya Chen and Guillem Cucurull and David Esiobu and Jude Fernandes and Jeremy Fu and Wenyin Fu and Brian Fuller and Cynthia Gao and Vedanuj Goswami and Naman Goyal and Anthony Hartshorn and Saghar Hosseini and Rui Hou and Hakan Inan and Marcin Kardas and Viktor Kerkez and Madian Khabsa and Isabel Kloumann and Artem Korenev and Punit Singh Koura and Marie-Anne Lachaux and Thibaut Lavril and Jenya Lee and Diana Liskovich and Yinghai Lu and Yuning Mao and Xavier Martinet and Todor Mihaylov and Pushkar Mishra and Igor Molybog and Yixin Nie and Andrew Poulton and Jeremy Reizenstein and Rashi Rungta and Kalyan Saladi and Alan Schelten and Ruan Silva and Eric Michael Smith and Ranjan Subramanian and Xiaoqing Ellen Tan and Binh Tang and Ross Taylor and Adina Williams and Jian Xiang Kuan and Puxin Xu and Zheng Yan and Iliyan Zarov and Yuchen Zhang and Angela Fan and Melanie Kambadur and Sharan Narang and Aurelien Rodriguez and Robert Stojnic and Sergey Edunov and Thomas Scialom}, year={2023}, eprint= arXiv 2307.09288 } @software{touvron2023llama, title={LLaMA: Open and Efficient Foundation Language Models}, author={Touvron, Hugo and Lavril, Thibaut and Izacard, Gautier and Martinet, Xavier and Lachaux, Marie-Anne and Lacroix, Timoth{\'e}e and Rozi{\`e}re, Baptiste and Goyal, Naman and Hambro, Eric and Azhar, Faisal and Rodriguez, Aurelien and Joulin, Armand and Grave, Edouard and Lample, Guillaume}, journal={arXiv preprint arXiv:2302.13971}, year={2023} } ```
[ -0.6024972796440125, -0.6741927266120911, 0.1183197870850563, -0.03716045245528221, -0.10062733292579651, -0.1699821501970291, -0.18454159796237946, -0.8125753402709961, 0.4664972424507141, 0.4810161292552948, -0.4177263677120209, -0.6981513500213623, -0.37102454900741577, 0.09910966455936432, -0.2492978721857071, 1.099392294883728, -0.2831780016422272, -0.3737940788269043, -0.05985341593623161, -0.5106942653656006, -0.3103199601173401, -0.5887678861618042, -0.6974766850471497, -0.17779475450515747, 0.7111850380897522, 0.4175710380077362, 0.6386451125144958, 0.711990475654602, 0.508154571056366, 0.15826892852783203, -0.2337859719991684, 0.3391430675983429, -0.40285009145736694, -0.26732751727104187, -0.16724710166454315, -0.36209484934806824, -0.8497860431671143, 0.00736242113634944, 0.25469958782196045, 0.5117263197898865, -0.0955122634768486, 0.33925968408584595, -0.005940638016909361, 0.584385871887207, -0.6259981989860535, 0.3203096389770508, -0.1357371062040329, -0.07653146982192993, -0.4643580913543701, 0.1426551789045334, -0.09479094296693802, -0.4691917598247528, 0.08922799676656723, -0.8803481459617615, 0.12611600756645203, 0.02976023033261299, 1.1400202512741089, -0.03506370261311531, -0.24692532420158386, -0.43024957180023193, -0.4824869930744171, 0.53082674741745, -0.6133325099945068, 0.1610584259033203, 0.2958868443965912, 0.23301918804645538, -0.18411777913570404, -0.5563466548919678, -0.6385568976402283, -0.07469206303358078, 0.016541453078389168, 0.30372583866119385, -0.048307161778211594, -0.1743709146976471, 0.006595596205443144, 0.6727436184883118, -0.5743359327316284, 0.04361867904663086, -0.4229384958744049, -0.13889573514461517, 0.7849248647689819, -0.05207575112581253, 0.29780128598213196, -0.0795050710439682, -0.3828851878643036, -0.5763940215110779, -0.6174275279045105, 0.17124709486961365, 0.3807990252971649, 0.6092520952224731, -0.5063625574111938, 0.6773014068603516, -0.023529386147856712, 0.49156421422958374, -0.2666325867176056, -0.19035953283309937, 0.4540446102619171, -0.4834791421890259, -0.3455657660961151, 0.037746794521808624, 0.9036499261856079, 0.05673724040389061, 0.007845905609428883, 0.21624451875686646, -0.21757623553276062, -0.039531197398900986, -0.19695571064949036, -0.5731224417686462, -0.12557275593280792, 0.38935378193855286, -0.4258354604244232, -0.32491111755371094, 0.4575038552284241, -0.7964574694633484, -0.292208194732666, -0.07086081802845001, 0.14919444918632507, -0.3177819848060608, -0.6708179116249084, 0.289080411195755, 0.09915851801633835, 0.2511051595211029, 0.4186679422855377, -0.6409986019134521, 0.30704495310783386, 0.49754828214645386, 0.9449270367622375, 0.03635016828775406, -0.14819437265396118, -0.14297139644622803, -0.10859764367341995, -0.4106917083263397, 0.7842801809310913, -0.20188555121421814, -0.43201765418052673, -0.10487551987171173, -0.03138558194041252, -0.21939986944198608, -0.48778897523880005, 0.7807572484016418, -0.1890498548746109, 0.3228744566440582, -0.7488325238227844, -0.207809180021286, -0.32567623257637024, 0.16348682343959808, -0.7838765978813171, 1.16500985622406, 0.2383485585451126, -0.756441593170166, 0.322461873292923, -1.0279783010482788, -0.2046796679496765, -0.1928747296333313, -0.01660868339240551, -0.26663652062416077, -0.15939413011074066, 0.5633419156074524, 0.1930195540189743, -0.48867520689964294, -0.023191938176751137, -0.3414108157157898, -0.060367047786712646, 0.034327033907175064, 0.027878154069185257, 0.8763086199760437, 0.4604567289352417, -0.19992026686668396, -0.06994665414094925, -0.6378268003463745, -0.31157657504081726, 0.5416425466537476, -0.22483621537685394, -0.14651943743228912, -0.2869681715965271, 0.04898151010274887, 0.24364027380943298, 0.27435389161109924, -0.6928051710128784, 0.4422021806240082, -0.534045934677124, 0.38213852047920227, 0.5468086004257202, 0.007609112653881311, 0.2850332260131836, -0.4253479540348053, 0.6000253558158875, 0.15391355752944946, 0.26045554876327515, -0.11656505614519119, -0.7146501541137695, -0.7919366955757141, -0.32094767689704895, 0.4086472988128662, 0.5482231974601746, -0.5867632627487183, 0.5385732650756836, -0.33319589495658875, -0.7020031213760376, -0.4370288550853729, -0.032315827906131744, 0.4141024947166443, 0.5623920559883118, 0.38454240560531616, -0.4769163429737091, -0.429730623960495, -0.5265114307403564, 0.09294561296701431, -0.2889341413974762, 0.0421711690723896, 0.5040973424911499, 0.7860558032989502, 0.0778999850153923, 0.9322910904884338, -0.5082750916481018, -0.7157588601112366, -0.3038509786128998, -0.10009311884641647, 0.2181316465139389, 0.5495609045028687, 0.8549280762672424, -0.5759028792381287, -0.2705329954624176, 0.19687148928642273, -0.8651611804962158, 0.16107827425003052, 0.015556570142507553, -0.36503997445106506, 0.36107733845710754, 0.28032657504081726, -0.5893984436988831, 0.6782019138336182, 0.5101529359817505, -0.43547317385673523, 0.29655930399894714, -0.17456436157226562, -0.006144895683974028, -0.9648702144622803, 0.4929579496383667, -0.07339857518672943, 0.02228056639432907, -0.37666627764701843, -0.005181318148970604, -0.15825992822647095, -0.00718632061034441, -0.4257625937461853, 0.7739894390106201, -0.4344497621059418, 0.005888351239264011, 0.0814414843916893, 0.3609991669654846, 0.08095120638608932, 0.4511878490447998, 0.05109962075948715, 0.5588651299476624, 0.4976824223995209, -0.4544414281845093, 0.18475604057312012, 0.5809571743011475, -0.25168758630752563, 0.3312704861164093, -0.7075656056404114, 0.24508866667747498, -0.12211450934410095, 0.5483812093734741, -0.8768149018287659, -0.32597091794013977, 0.5639920234680176, -0.5301095843315125, 0.14040391147136688, 0.06983093917369843, -0.6197877526283264, -0.5460752844810486, -0.31138476729393005, 0.3778253197669983, 0.24412782490253448, -0.6352860927581787, 0.5587515830993652, 0.2552090287208557, 0.08840524405241013, -0.5297433137893677, -0.9813776612281799, -0.160747230052948, -0.18603019416332245, -0.7473445534706116, 0.30942004919052124, 0.08824365586042404, -0.026916291564702988, -0.015598487108945847, -0.15493199229240417, 0.23102909326553345, -0.2146344631910324, 0.34789153933525085, 0.2935676574707031, -0.3058512210845947, -0.12713442742824554, -0.09712138026952744, -0.11768468469381332, -0.19186078011989594, -0.464371919631958, 0.5103102326393127, -0.21250289678573608, -0.21648576855659485, -0.4445185661315918, -0.07941988855600357, 0.3806777596473694, -0.5281482338905334, 1.0362792015075684, 0.47263872623443604, -0.38643354177474976, 0.20724302530288696, -0.49801480770111084, -0.05953240394592285, -0.3866835832595825, -0.06930185109376907, -0.39244502782821655, -0.7045931816101074, 0.9107364416122437, 0.5400488972663879, 0.36530426144599915, 0.8054383397102356, 0.30929112434387207, 0.2761523723602295, 0.7657153606414795, 0.5081225633621216, -0.29251983761787415, 0.42804238200187683, -0.597190797328949, 0.15547814965248108, -0.6965097188949585, -0.4678005576133728, -0.5948587656021118, -0.37528592348098755, -0.571199357509613, -0.3195653259754181, 0.33467623591423035, 0.18320855498313904, -0.26479941606521606, 0.5266464352607727, -0.6148540377616882, 0.12848010659217834, 0.5434322357177734, 0.29154103994369507, 0.22549983859062195, 0.04446821287274361, -0.0998854711651802, 0.2728314697742462, -0.5755996108055115, -0.5116962790489197, 1.3001413345336914, 0.42142337560653687, 0.43844181299209595, 0.18372415006160736, 0.6398217678070068, 0.014372206293046474, 0.297723650932312, -0.20095781981945038, 0.4217612147331238, 0.08334534615278244, -0.7399916648864746, -0.11139541119337082, -0.4269087016582489, -1.0856043100357056, 0.010976353660225868, 0.003345030825585127, -0.8847087025642395, 0.6088135242462158, 0.11256097257137299, -0.5959171652793884, 0.46578750014305115, -0.5782856941223145, 1.0215831995010376, -0.0958424061536789, -0.1895042359828949, 0.1787160187959671, -0.7786173224449158, 0.3651552200317383, 0.15205354988574982, 0.21355301141738892, -0.06725993007421494, -0.22937791049480438, 0.8466926217079163, -0.8258617520332336, 0.6266261339187622, -0.33046630024909973, -0.2762027680873871, 0.6729684472084045, -0.026579350233078003, 0.42170363664627075, 0.11737269908189774, -0.1630443036556244, 0.3929339349269867, 0.1709863394498825, -0.5131381750106812, -0.3172081410884857, 0.7776119709014893, -0.9331215023994446, 0.029118938371539116, -0.6032747030258179, -0.23401108384132385, 0.16591830551624298, 0.18465451896190643, 0.31112954020500183, 0.4244244694709778, -0.010884040035307407, -0.0038531338796019554, 0.4244389235973358, -0.4987819194793701, 0.26742270588874817, 0.2171473652124405, -0.4531499147415161, -0.6130658388137817, 1.0083998441696167, 0.23249123990535736, 0.1629508137702942, 0.42499715089797974, 0.1526806801557541, -0.42127278447151184, -0.42701348662376404, -0.3811785578727722, 0.5426117777824402, -0.572627067565918, -0.3126397430896759, -0.6609651446342468, -0.09493113309144974, -0.5454097986221313, -0.09107720851898193, -0.4827137291431427, -0.4476052522659302, -0.5303823947906494, -0.27787476778030396, 0.5747748017311096, 0.6325082778930664, -0.23513779044151306, 0.23266781866550446, -0.42088550329208374, 0.10758747905492783, -0.1372639238834381, 0.23586317896842957, 0.05554010719060898, -0.5101924538612366, -0.07864629477262497, 0.23293134570121765, -0.31491488218307495, -0.5809664130210876, 0.3905028700828552, 0.15613922476768494, 0.22276157140731812, 0.4236311912536621, 0.03680548444390297, 0.74565190076828, 0.19760216772556305, 0.9974984526634216, -0.05223747715353966, -0.5605927109718323, 0.6918262839317322, -0.5114673376083374, 0.2456309050321579, 0.693164050579071, 0.2924346923828125, -0.339376837015152, -0.22742633521556854, -0.8720899820327759, -1.010005235671997, 0.9490430355072021, 0.42739105224609375, -0.15497764945030212, -0.019983459264039993, 0.536253809928894, 0.027234410867094994, 0.2465408593416214, -0.6296787858009338, -0.41486379504203796, -0.35064345598220825, -0.10400621592998505, -0.08427803963422775, -0.016523107886314392, -0.026476049795746803, -0.19549567997455597, 0.7446441650390625, 0.04056639224290848, 0.42568498849868774, 0.5120171308517456, 0.06988134980201721, -0.04020584374666214, -0.10960180312395096, 0.6820608377456665, 0.465082049369812, -0.4498147964477539, -0.27529364824295044, 0.006221169140189886, -0.7283933758735657, -0.3128873109817505, 0.2749776542186737, -0.1701255589723587, -0.18718387186527252, 0.34999382495880127, 0.7257763147354126, -0.1670345813035965, -0.7019875049591064, 0.4679037928581238, -0.048397086560726166, -0.29839643836021423, -0.28863072395324707, -0.011562125757336617, -0.10470739006996155, 0.09619855880737305, 0.250127911567688, 0.16894395649433136, -0.13345420360565186, -0.40936708450317383, -0.053368471562862396, 0.09416083246469498, -0.2323817014694214, -0.36411431431770325, 0.8841822147369385, -0.006463135126978159, 0.05675842612981796, 0.6066899299621582, -0.2207677662372589, -0.16537097096443176, 0.6675119400024414, 0.12712518870830536, 0.613900363445282, -0.08491899073123932, 0.1254943162202835, 0.6610521078109741, 0.2841798961162567, -0.20167763531208038, 0.5005152225494385, 0.0794687494635582, -0.5943892002105713, -0.12127145379781723, -0.6058045625686646, -0.1589067578315735, 0.2285127490758896, -0.7663184404373169, 0.4142308235168457, -0.638856828212738, -0.11839423328638077, -0.14401988685131073, 0.22580569982528687, -0.7120299339294434, 0.1952243596315384, 0.16431090235710144, 1.1540638208389282, -0.7283040881156921, 0.6554666757583618, 0.6788363456726074, -1.050400972366333, -1.0034093856811523, -0.2946001887321472, 0.1921585500240326, -0.6568189263343811, 0.27617278695106506, 0.209465891122818, 0.16718122363090515, -0.12329916656017303, -0.5175982713699341, -0.8791330456733704, 1.2830716371536255, 0.4257584810256958, -0.2732762396335602, 0.00739519065245986, 0.282565176486969, 0.5902843475341797, -0.43775036931037903, 0.6294326782226562, 0.7071707248687744, 0.5932759046554565, 0.24372252821922302, -1.0167853832244873, 0.15496279299259186, -0.2565876245498657, -0.021669656038284302, 0.12516115605831146, -0.9645293354988098, 0.8388999700546265, -0.14794591069221497, -0.20029962062835693, 0.29499682784080505, 0.8113387227058411, 0.3077959716320038, 0.2149689793586731, 0.3745006024837494, 0.6989006996154785, 0.7695916295051575, -0.31658974289894104, 1.1936157941818237, -0.03551485016942024, 0.3732873201370239, 0.8233324289321899, -0.09384176880121231, 0.8192297220230103, 0.1876796931028366, -0.2474483996629715, 0.5460116863250732, 0.7919867634773254, 0.09512821584939957, 0.3564304709434509, -0.1870325803756714, -0.059090785682201385, 0.18667389452457428, -0.39304935932159424, -0.6183087229728699, 0.3853580951690674, 0.31173262000083923, -0.31021589040756226, -0.24853196740150452, 0.1785852015018463, 0.3093598186969757, -0.16476060450077057, -0.21247714757919312, 0.5920873880386353, 0.07658994197845459, -0.5422025918960571, 0.8223746418952942, 0.04451396316289902, 0.5804144740104675, -0.595504641532898, 0.2027169018983841, -0.5230650901794434, 0.24138815701007843, -0.43977105617523193, -0.6221920847892761, 0.18847623467445374, -0.11322759836912155, 0.07303129881620407, -0.2564217746257782, 0.3513282537460327, -0.23952122032642365, -0.45596638321876526, 0.24951878190040588, 0.2798084318637848, 0.34081023931503296, -0.24716681241989136, -0.8069123029708862, 0.3263540267944336, 0.12480689585208893, -0.4502808749675751, 0.2640942633152008, 0.37132373452186584, -0.13036179542541504, 0.52293860912323, 0.6909927725791931, 0.10188616812229156, 0.015650803223252296, 0.04429122805595398, 0.976625382900238, -0.49844637513160706, -0.32208794355392456, -0.5316529870033264, 0.6077534556388855, 0.05943473055958748, -0.6400519013404846, 0.731318473815918, 0.8203750848770142, 1.053894281387329, 0.2693043351173401, 0.6878535747528076, -0.5580337047576904, 0.6458819508552551, -0.2646331191062927, 0.5122886300086975, -0.7423943281173706, 0.21217893064022064, -0.4286755919456482, -0.8002628087997437, -0.33014431595802307, 0.6079784035682678, -0.38093137741088867, 0.2537766695022583, 0.5662245154380798, 0.8543627262115479, -0.1435786783695221, 0.24949000775814056, -0.1558130979537964, 0.09089509397745132, 0.5819735527038574, 0.66440349817276, 0.3043760061264038, -0.8764628171920776, 0.7269966006278992, -0.45544302463531494, -0.313108891248703, -0.25557875633239746, -0.7122374176979065, -0.8668837547302246, -0.4817202687263489, -0.3292880952358246, -0.4926358759403229, -0.08553321659564972, 0.8180035948753357, 0.4768344461917877, -1.0247875452041626, -0.31745782494544983, -0.24469290673732758, -0.058199863880872726, -0.37963590025901794, -0.21806807816028595, 0.6108885407447815, 0.11993425339460373, -0.6652371883392334, 0.2161533534526825, 0.12603996694087982, 0.21401651203632355, -0.18075266480445862, -0.10084345936775208, -0.41580671072006226, -0.14779579639434814, 0.30704498291015625, 0.8321807980537415, -0.5912378430366516, -0.12992890179157257, 0.19795139133930206, -0.03607535362243652, 0.29139798879623413, 0.5347634553909302, -0.5996073484420776, 0.41280198097229004, 0.4351706802845001, 0.32217147946357727, 0.5801448822021484, 0.16044126451015472, 0.32522693276405334, -0.5350515246391296, 0.4930521547794342, 0.09179716557264328, 0.2980961501598358, 0.22840335965156555, -0.26841098070144653, 0.8269348740577698, 0.25032156705856323, -0.48196572065353394, -0.9070926308631897, -0.20874273777008057, -1.1099978685379028, 0.04719054326415062, 0.99022376537323, -0.12987488508224487, -0.34212595224380493, 0.09588763862848282, -0.3570319414138794, 0.18424396216869354, -0.6291934847831726, 0.3483583927154541, 0.5277073383331299, -0.1143675446510315, -0.02049628458917141, -0.6881546974182129, 0.2992815673351288, 0.27063101530075073, -0.8838937878608704, -0.058620885014534, 0.3253733813762665, 0.0298767052590847, 0.3313312828540802, 0.5751917958259583, -0.35734936594963074, -0.0018909383798018098, -0.07749565690755844, 0.23103183507919312, -0.25131502747535706, -0.2801364064216614, -0.10771390795707703, 0.06584294140338898, -0.04411324858665466, -0.2749848961830139 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Multimodal-Fatima/COCO_captions_train
Multimodal-Fatima
2023-03-17T21:59:22Z
219
2
null
[ "region:us" ]
2023-03-17T21:59:22Z
2023-03-14T16:05:25.000Z
2023-03-14T16:05:25
--- dataset_info: features: - name: image dtype: image - name: filepath dtype: string - name: sentids list: int32 - name: filename dtype: string - name: imgid dtype: int32 - name: split dtype: string - name: sentences_tokens list: list: string - name: sentences_raw list: string - name: sentences_sentid list: int32 - name: cocoid dtype: int32 - name: id dtype: int64 splits: - name: train num_bytes: 18595506212.0 num_examples: 113287 download_size: 18500220513 dataset_size: 18595506212.0 --- # Dataset Card for "COCO_captions_train" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.5661597847938538, -0.04351411759853363, 0.03968321159482002, 0.5795666575431824, -0.36408349871635437, 0.3395848274230957, 0.04969377815723419, -0.10068318247795105, 0.7425764799118042, 0.5718494057655334, -0.8274487853050232, -0.6621918678283691, -0.655220627784729, -0.12755711376667023, -0.4235374927520752, 1.4001725912094116, -0.1584397554397583, 0.2756131589412689, -0.7565732598304749, -0.1076153963804245, -0.7008371949195862, -0.5990310907363892, -0.617689311504364, -0.3858315944671631, 0.9149402976036072, 0.7739757895469666, 0.34722596406936646, 0.5440677404403687, 0.8944279551506042, 0.10731422901153564, 0.2043202966451645, -0.18175266683101654, -0.43546196818351746, -0.3313511908054352, -0.14349685609340668, -0.7464966773986816, -0.8285404443740845, 0.06726028770208359, 0.5063551068305969, 0.3729443848133087, -0.06193123385310173, 0.6703677773475647, -0.21427296102046967, 0.7780634760856628, -0.4781692624092102, 0.8489784598350525, -0.26715365052223206, 0.13251008093357086, -0.33825021982192993, -0.4336812496185303, 0.06281144171953201, -0.43003180623054504, -0.12969601154327393, -0.9919247627258301, 0.4479738771915436, 0.3531443476676941, 1.00517737865448, 0.2888159453868866, 0.07529508322477341, -0.20125438272953033, -0.21304893493652344, 0.30707862973213196, -0.14842048287391663, 0.12455587834119797, 0.7043085694313049, 0.6124395728111267, 0.3367612957954407, -0.6726239323616028, -0.36810654401779175, -0.1512891948223114, -0.1879769116640091, 0.23052872717380524, 0.2732549011707306, 0.010011161677539349, 0.5999598503112793, 0.8663171529769897, -0.4722737669944763, -0.25660470128059387, -0.7600664496421814, -0.4723801016807556, 0.8274991512298584, 0.2014520764350891, 0.48942893743515015, -0.003975769970566034, -0.1315915733575821, -0.4170392155647278, -0.5964608192443848, -0.06464870274066925, 0.4261382222175598, 0.2781585156917572, -1.2529860734939575, 0.8639144897460938, -0.10208432376384735, 0.5599104166030884, -0.17492060363292694, 0.6141943335533142, 0.5380076766014099, -0.22658494114875793, -0.32327917218208313, 0.37698623538017273, 0.6251420378684998, 0.37880465388298035, 0.4475099444389343, -0.08859175443649292, 0.05409344285726547, 0.2739338278770447, 0.09057971090078354, -0.8813819289207458, -1.0040466785430908, 0.23502890765666962, -0.2290429174900055, -0.478026807308197, 0.4063299894332886, -0.8910496830940247, -0.4597375988960266, -0.44079405069351196, -0.01728057488799095, 0.07116616517305374, -0.4284399151802063, -0.21470101177692413, -0.6668593287467957, 0.5523867011070251, 0.10045750439167023, -1.0212383270263672, 0.3206893801689148, 0.5052659511566162, 0.7019054889678955, 0.14090368151664734, -0.33311572670936584, -0.7424026727676392, 0.142348974943161, -0.22170275449752808, 0.9981576800346375, -0.5715821981430054, -0.20977547764778137, 0.11177560687065125, 0.5210416913032532, -0.2088000476360321, -0.23572967946529388, 0.792672336101532, -0.4737915098667145, -0.17152158915996552, -0.8949300050735474, -0.2856512665748596, 0.04163910076022148, 0.4683064818382263, -1.0885668992996216, 0.9634986519813538, 0.2934492826461792, -0.8751506209373474, 0.4920376241207123, -1.2465856075286865, -0.5603204369544983, 0.3126787543296814, -0.08710970729589462, -0.5648275017738342, 0.13741609454154968, 0.3488400876522064, 0.4569567143917084, -0.18881548941135406, 0.5183281302452087, -0.583747148513794, -0.3608657121658325, 0.2787870466709137, -0.04003253951668739, 0.952839195728302, 0.2692909240722656, 0.3527950346469879, 0.11786340177059174, -0.810012936592102, -0.4104675054550171, 0.33815619349479675, -0.16029231250286102, -0.09980575740337372, -0.3818449079990387, 0.44388750195503235, -0.1358402520418167, 0.26794350147247314, -0.38461580872535706, 0.5333648324012756, 0.05532937869429588, 0.2638772428035736, 0.5473504662513733, 0.07157212495803833, 0.31876033544540405, -0.4345911741256714, 0.7251147031784058, 0.07618206739425659, 0.41791051626205444, -0.05709022283554077, -0.46462196111679077, -0.9398587346076965, -0.0019388095242902637, 0.6369368433952332, 0.5113148093223572, -0.6717608571052551, 0.538819432258606, -0.07893645763397217, -0.5239243507385254, -0.4164044260978699, 0.03813355788588524, 0.13451144099235535, 0.07054607570171356, 0.3615282475948334, -0.7116304636001587, -0.8146081566810608, -0.7091771960258484, 0.49724385142326355, -0.03714734688401222, 0.18064147233963013, 0.36392727494239807, 0.890865683555603, -0.13363131880760193, 0.9037950038909912, -0.8193098902702332, -0.4315119683742523, -0.015624308958649635, -0.2347862869501114, 0.045980822294950485, 0.8365043997764587, 0.9456713199615479, -0.8091949820518494, -0.4143204391002655, -0.4752415418624878, -0.6722626686096191, 0.0027216502930969, 0.1270962804555893, -0.5546360611915588, -0.36288967728614807, 0.31618255376815796, -0.38813188672065735, 0.4345010817050934, 0.9022771120071411, -0.15304236114025116, 0.25863975286483765, 0.18425306677818298, 0.3464784026145935, -1.1318200826644897, 0.4396822154521942, -0.23795807361602783, -0.1740487962961197, -0.11709916591644287, -0.06756263971328735, 0.05419733747839928, -0.3593175709247589, -0.21323668956756592, 0.3683527112007141, -0.5341601967811584, -0.22341132164001465, -0.06474736332893372, 0.17816337943077087, 0.00530814565718174, 0.6046016812324524, 0.4473435580730438, 0.6339758038520813, 1.3014450073242188, -0.42738935351371765, 1.0601646900177002, 0.7435266375541687, -0.10004078596830368, 0.7766613364219666, -0.77976393699646, 0.1702435463666916, -0.30723831057548523, 0.4026769697666168, -0.884933590888977, -0.8726968169212341, 0.752379834651947, -0.5530371069908142, 0.4886707067489624, -0.6382359266281128, -0.6583890318870544, -0.8072371482849121, -0.36046069860458374, 0.7472514510154724, 0.2469605654478073, -0.7845892310142517, 0.13501617312431335, 0.5915610790252686, 0.10989031195640564, -0.3293651044368744, -1.049633264541626, 0.19154125452041626, -0.23220352828502655, 0.09774494171142578, 0.11331035941839218, -0.5010867714881897, 0.413983553647995, -0.2956077456474304, 0.3072948157787323, -0.2045205980539322, -0.25041529536247253, 0.5124993324279785, 0.1996101438999176, -0.09523075073957443, 0.2925880551338196, 0.25117355585098267, -0.4337550699710846, 0.2595045864582062, -0.06369206309318542, 0.5952657461166382, -0.020246950909495354, -0.08228877931833267, -0.4372657835483551, 0.14552658796310425, 0.329414963722229, -0.5214306116104126, 0.6614436507225037, 1.0461702346801758, -0.5608239769935608, -0.031557947397232056, -0.42884814739227295, -0.15642303228378296, -0.4312916696071625, -0.008273632265627384, -0.14972658455371857, -0.6466202735900879, 0.5189988613128662, 0.04591201990842819, -0.2477874755859375, 0.5431733727455139, 0.6226823925971985, 0.0727960467338562, 0.646950364112854, 0.5816246867179871, -0.5720860362052917, 0.49831220507621765, -0.6247376203536987, -0.2335215061903, -0.916069507598877, -0.4690098166465759, -0.6146202683448792, -0.15631894767284393, -0.6033430099487305, -0.4558063745498657, -0.18163351714611053, 0.15764851868152618, -0.14522795379161835, 0.9479697346687317, -0.7952175736427307, 0.4124312400817871, 0.6093780398368835, 0.1958523392677307, 0.07579204440116882, -0.014903504401445389, 0.24886152148246765, 0.31659817695617676, -1.010315179824829, -0.24423398077487946, 1.0898263454437256, 0.5203542709350586, 0.9259294867515564, -0.015089026652276516, 0.6210677027702332, 0.4223969876766205, 0.6691346168518066, -0.4157145321369171, 0.3623960316181183, 0.22193485498428345, -0.761267364025116, -0.029299432411789894, -0.11307519674301147, -0.7306058406829834, -0.6000306010246277, -0.4168912172317505, -0.18321287631988525, 0.26903870701789856, 0.6040269136428833, -0.0698949545621872, 0.17713326215744019, -0.6147567629814148, 1.0923715829849243, -0.23639962077140808, -0.08241809159517288, 0.03830867260694504, -0.8017529845237732, 0.2610183358192444, 0.23977358639240265, 0.013525888323783875, -0.130829319357872, 0.18630819022655487, 1.0950685739517212, -0.32566264271736145, 1.250571846961975, -0.35756707191467285, 0.11222163587808609, 0.5614740252494812, -0.322099894285202, 0.1922343522310257, 0.5536414384841919, 0.315613329410553, 0.2546097934246063, 0.008615296334028244, -0.5789421200752258, -0.22079266607761383, 0.909075915813446, -0.7576148509979248, 0.2847617566585541, -0.527565062046051, -0.5980126857757568, 0.01220477744936943, 0.21944423019886017, 0.4319297671318054, 0.638996422290802, -0.3324565589427948, -0.034786708652973175, 0.6361538171768188, -0.033454228192567825, 0.27953067421913147, 0.05181397125124931, -0.09921474754810333, -0.6100504994392395, 1.1591947078704834, -0.1294480264186859, -0.2774063050746918, 0.6690335869789124, 0.22388552129268646, -0.4028063714504242, -0.510625958442688, -0.6725725531578064, 0.34662550687789917, -0.5247495174407959, -0.5877016186714172, -0.3792106807231903, -0.3523885905742645, -0.6011412143707275, -0.3010292053222656, -0.3094203472137451, -0.45725151896476746, -0.8518378734588623, -0.673706591129303, 0.9122126698493958, 0.46151429414749146, -0.44827911257743835, 0.70246422290802, -0.7875381112098694, 0.43858712911605835, 0.17794013023376465, 0.9927904605865479, -0.117888443171978, -0.3257332742214203, -0.5547666549682617, 0.004797734785825014, -0.16048398613929749, -0.5323444604873657, 0.06169940158724785, 0.01879815198481083, 0.584179162979126, 0.3269106149673462, 0.0454142726957798, 0.6545235514640808, -0.07257132977247238, 0.8238377571105957, 0.4672245383262634, -0.6896103024482727, 0.7385885119438171, -0.271027147769928, 0.08711205422878265, 0.9217664003372192, 0.5610379576683044, -0.3221814036369324, -0.1302800327539444, -0.8265202641487122, -0.5065028667449951, 0.6439988613128662, 0.2800982594490051, 0.30073970556259155, 0.028115680441260338, 0.35689717531204224, -0.19084875285625458, 0.7032483816146851, -1.0434175729751587, -0.5124104619026184, -0.3960218131542206, -0.35993823409080505, -0.11081628501415253, -0.28155815601348877, -0.24531172215938568, -0.6111574172973633, 0.6479478478431702, -0.2041260302066803, 0.5353489518165588, 0.13585954904556274, -0.0296611487865448, -0.2520240247249603, -0.2515292465686798, 0.44919344782829285, 0.5124150514602661, -0.5082296133041382, -0.1447710245847702, 0.0049361917190253735, -0.3691978454589844, -0.4291391968727112, 0.38585466146469116, 0.15464580059051514, -0.2909969687461853, 0.7521193027496338, 1.0753611326217651, -0.2034834623336792, -0.4811723530292511, 0.4977869987487793, -0.008651109412312508, -0.17613734304904938, -0.7170754671096802, 0.3401738107204437, 0.04154227674007416, 0.001366785611025989, -0.19202978909015656, 0.013120568357408047, 0.13716427981853485, -0.5356574058532715, 0.30451148748397827, -0.03574605658650398, -1.0384856462478638, -0.34267544746398926, 0.8566117286682129, 0.4591720700263977, -0.29729926586151123, 0.9094176292419434, -0.025927074253559113, -0.615198016166687, 0.8078011870384216, 0.18046875298023224, 0.6470863819122314, -0.18995451927185059, 0.4560537040233612, 0.7550437450408936, 0.28981372714042664, -0.030264781787991524, 0.30313292145729065, -0.654181718826294, -0.6075232625007629, -0.11312469840049744, -0.4470221698284149, -0.3359125554561615, -0.1655825972557068, -1.1620876789093018, 0.47369930148124695, -0.5821974873542786, -0.07310356944799423, -0.17303529381752014, 0.06420699506998062, -0.9103397130966187, 0.3380186855792999, 0.23425807058811188, 1.3697160482406616, -1.142638921737671, 0.8262921571731567, 0.7608755826950073, -0.8685320615768433, -0.5726435780525208, -0.3741759657859802, -0.3345407247543335, -0.9186612367630005, 0.01878027617931366, 0.2375441938638687, 0.4768017530441284, -0.11429613828659058, -1.2966179847717285, -0.4954393208026886, 1.2754278182983398, 0.25750961899757385, -0.9140779376029968, 0.27688494324684143, 0.14842410385608673, 0.5359454154968262, -0.5773012042045593, 0.23103974759578705, 0.6595714688301086, 0.6853951215744019, 0.24202467501163483, -0.5763038992881775, -0.1373099386692047, -0.3239730894565582, -0.18219393491744995, -0.003625601064413786, -0.9800628423690796, 0.07486278563737869, -0.3479665517807007, 0.1578836590051651, 0.18339978158473969, 0.7719442248344421, 0.1771499514579773, 0.4808516502380371, 0.41118553280830383, 0.49312299489974976, 0.6241291761398315, -0.31361818313598633, 1.0875214338302612, -0.05891251191496849, 0.7901061177253723, 1.244559407234192, 0.054936982691287994, 0.20607838034629822, 0.5855275988578796, -0.01947532221674919, 0.3151411712169647, 0.7890670299530029, -0.7905023694038391, 0.575210690498352, 0.6811012625694275, 0.0007311957306228578, -0.31144440174102783, -0.20706038177013397, -0.5456183552742004, 0.08781059831380844, 0.3280193507671356, -0.5714977383613586, 0.1787220984697342, 0.1519211381673813, 0.08607882261276245, -0.12336627393960953, -0.37655046582221985, 0.6519187092781067, 0.13653182983398438, -0.4039812386035919, 0.09103407710790634, -0.26575198769569397, 0.2103147804737091, -0.7955357432365417, -0.47538354992866516, -0.13657790422439575, -0.16056719422340393, -0.5646712183952332, -1.0284560918807983, 0.5489868521690369, -0.17870919406414032, -0.14767314493656158, 0.1942707598209381, 0.3810158371925354, -0.6697226762771606, -0.8707970976829529, 0.2748235762119293, -0.13755381107330322, 0.25859299302101135, 0.01390750054270029, -1.198668122291565, 0.518044650554657, -0.04942150041460991, 0.1137305200099945, 0.004097527824342251, -0.15071123838424683, 0.07748962193727493, 0.5814673900604248, 0.6341155767440796, -0.00693200109526515, -0.32416805624961853, 0.6010578870773315, 1.1308071613311768, -0.53720623254776, -0.5149749517440796, -0.42517638206481934, 0.7171250581741333, -0.40014374256134033, -0.4553912878036499, 0.5100601315498352, 1.2250920534133911, 0.9876729846000671, -0.4595189690589905, 0.9113484025001526, -0.5273539423942566, 0.1991593986749649, -0.4608236849308014, 0.6386822462081909, -0.37695541977882385, -0.061822231858968735, -0.4036264717578888, -0.8954436182975769, -0.774974524974823, 0.6435341238975525, 0.03358815237879753, -0.05673772841691971, 0.5593013167381287, 0.9862319827079773, -0.4404330253601074, 0.145339235663414, -0.07445118576288223, 0.1803394854068756, 0.2821286618709564, 0.5208448767662048, 0.5666884779930115, -0.7764203548431396, 0.4582004249095917, -0.3952668309211731, -0.4388529360294342, 0.0007748717325739563, -1.0611732006072998, -1.2610645294189453, -0.7426068782806396, -0.8493642807006836, -0.416616827249527, -0.005392986815422773, 0.8340603709220886, 0.9993464350700378, -1.1785820722579956, -0.336955726146698, -0.24097837507724762, 0.25842782855033875, -0.11161994934082031, -0.1884678453207016, 0.8410148024559021, 0.14099280536174774, -0.7200811505317688, -0.2569412589073181, -0.19777709245681763, 0.17185190320014954, -0.11568134278059006, -0.07567095011472702, 0.032952290028333664, -0.18612998723983765, 0.3973199427127838, 0.45738425850868225, -0.00945977307856083, -0.35258352756500244, -0.5127699375152588, 0.17652329802513123, 0.20031128823757172, 1.2475712299346924, -0.3486839234828949, 0.3205472230911255, 0.39742034673690796, 0.1826704740524292, 0.8969306349754333, 0.12952584028244019, 0.45576387643814087, -0.8116130232810974, 0.21720513701438904, -0.155188649892807, 0.4697848856449127, 0.4722711145877838, -0.41760361194610596, 0.8102555274963379, 0.5782487392425537, -0.34554848074913025, -0.6532859206199646, -0.049519188702106476, -1.7834444046020508, 0.5078690052032471, 0.871147871017456, 0.07633863389492035, -0.5393174290657043, -0.04546162113547325, -0.635285496711731, 0.36443203687667847, -0.7093544602394104, 0.48003822565078735, 0.4888595640659332, 0.2703815698623657, -0.44494691491127014, -0.2654056251049042, 0.6486738324165344, -0.5225329995155334, -1.1532069444656372, 0.24645304679870605, 0.4538722634315491, 0.3850634694099426, 0.1877342313528061, 0.7459385991096497, -0.3337804079055786, 0.14505310356616974, 0.27137288451194763, 0.39057180285453796, -0.4784834384918213, -0.8038641214370728, -0.14592909812927246, -0.06332459300756454, -0.1700599044561386, -0.6707541942596436 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
csebuetnlp/squad_bn
csebuetnlp
2022-08-21T13:17:43Z
218
4
null
[ "task_categories:question-answering", "task_ids:open-domain-qa", "task_ids:extractive-qa", "annotations_creators:machine-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:extended", "language:bn", "license:cc-by-nc-sa-4.0", "arxiv:2101.00204", "arxiv:2007.01852", "arxiv:1606.05250", "arxiv:2003.05002", "region:us" ]
2022-08-21T13:17:43Z
2022-04-11T10:16:26.000Z
2022-04-11T10:16:26
--- annotations_creators: - machine-generated language_creators: - found multilinguality: - monolingual size_categories: - 100K<n<1M source_datasets: - extended task_categories: - question-answering task_ids: - open-domain-qa - extractive-qa language: - bn license: - cc-by-nc-sa-4.0 --- # Dataset Card for `squad_bn` ## Table of Contents - [Dataset Card for `squad_bn`](#dataset-card-for-squad_bn) - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Usage](#usage) - [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 - **Repository:** [https://github.com/csebuetnlp/banglabert](https://github.com/csebuetnlp/banglabert) - **Paper:** [**"BanglaBERT: Combating Embedding Barrier in Multilingual Models for Low-Resource Language Understanding"**](https://arxiv.org/abs/2101.00204) - **Point of Contact:** [Tahmid Hasan](mailto:tahmidhasan@cse.buet.ac.bd) ### Dataset Summary This is a Question Answering (QA) dataset for Bengali, curated from the [SQuAD 2.0](), [TyDI-QA]() datasets and using the state-of-the-art English to Bengali translation model introduced **[here](https://aclanthology.org/2020.emnlp-main.207/).** ### Supported Tasks and Leaderboards [More information needed](https://github.com/csebuetnlp/banglabert) ### Languages * `Bengali` ### Usage ```python from datasets import load_dataset dataset = load_dataset("csebuetnlp/squad_bn") ``` ## Dataset Structure ### Data Instances One example from the dataset is given below in JSON format. ``` { "title": "শেখ মুজিবুর রহমান", "paragraphs": [ { "qas": [ { "answers": [ { "answer_start": 19, "text": "১৭ মার্চ ১৯২০" } ], "id": "bengali--981248442377505718-0-2649", "question": "শেখ মুজিবুর রহমান কবে জন্মগ্রহণ করেন ?" } ], "context": "শেখ মুজিবুর রহমান (১৭ মার্চ ১৯২০ - ১৫ আগস্ট ১৯৭৫) বাংলাদেশের প্রথম রাষ্ট্রপতি ও ভারতীয় উপমহাদেশের একজন অন্যতম প্রভাবশালী রাজনৈতিক ব্যক্তিত্ব যিনি বাঙালীর অধিকার রক্ষায় ব্রিটিশ ভারত থেকে ভারত বিভাজন আন্দোলন এবং পরবর্তীতে পূর্ব পাকিস্তান থেকে বাংলাদেশ প্রতিষ্ঠার সংগ্রামে নেতৃত্ব প্রদান করেন। প্রাচীন বাঙ্গালি সভ্যতার আধুনিক স্থপতি হিসাবে শেখ মুজিবুর রহমানকে বাংলাদেশের জাতির জনক বা জাতির পিতা বলা হয়ে থাকে। তিনি মাওলানা আব্দুল হামিদ খান ভাসানী প্রতিষ্ঠিত আওয়ামী লীগের সভাপতি, বাংলাদেশের প্রথম রাষ্ট্রপতি এবং পরবর্তীতে এদেশের প্রধানমন্ত্রীর দায়িত্ব পালন করেন। জনসাধারণের কাছে তিনি শেখ মুজিব এবং শেখ সাহেব হিসাবে বেশি পরিচিত এবং তার উপাধি বঙ্গবন্ধু। তার কন্যা শেখ হাসিনা বাংলাদেশ আওয়ামী লীগের বর্তমান সভানেত্রী এবং বাংলাদেশের বর্তমান প্রধানমন্ত্রী।" } ] } ``` ### Data Fields The data fields are as follows: - `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 | split |count | |----------|--------| |`train`| 127771 | |`validation`| 2502 | |`test`| 2504 | ## Dataset Creation For the training set, we translated the complete [SQuAD 2.0](https://aclanthology.org/N18-1101/) dataset using the English to Bangla translation model introduced [here](https://aclanthology.org/2020.emnlp-main.207/). Due to the possibility of incursions of error during automatic translation, we used the [Language-Agnostic BERT Sentence Embeddings (LaBSE)](https://arxiv.org/abs/2007.01852) of the translations and original sentences to compute their similarity. A datapoint was accepted if all of its constituent sentences had a similarity score over 0.7. Since the TyDI-QA Gold Passage task guarantees that the given context contains the answer and we want to pose our QA task analogous to SQuAD 2.0, we also consider examples from the Passage selection task that don't have an answer for the given question. We distribute the resultant examples from the TyDI-QA training and validation sets (which are publicly available) evenly to our test and validation sets. ### Curation Rationale [More information needed](https://github.com/csebuetnlp/banglabert) ### Source Data [SQuAD 2.0](https://arxiv.org/abs/1606.05250), [TyDi-QA](https://arxiv.org/abs/2003.05002) #### Initial Data Collection and Normalization [More information needed](https://github.com/csebuetnlp/banglabert) #### Who are the source language producers? [More information needed](https://github.com/csebuetnlp/banglabert) ### Annotations [More information needed](https://github.com/csebuetnlp/banglabert) #### Annotation process [More information needed](https://github.com/csebuetnlp/banglabert) #### Who are the annotators? [More information needed](https://github.com/csebuetnlp/banglabert) ### Personal and Sensitive Information [More information needed](https://github.com/csebuetnlp/banglabert) ## Considerations for Using the Data ### Social Impact of Dataset [More information needed](https://github.com/csebuetnlp/banglabert) ### Discussion of Biases [More information needed](https://github.com/csebuetnlp/banglabert) ### Other Known Limitations [More information needed](https://github.com/csebuetnlp/banglabert) ## Additional Information ### Dataset Curators [More information needed](https://github.com/csebuetnlp/banglabert) ### Licensing Information Contents of this repository are restricted to only non-commercial research purposes under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/). Copyright of the dataset contents belongs to the original copyright holders. ### Citation Information If you use the dataset, please cite the following paper: ``` @misc{bhattacharjee2021banglabert, title={BanglaBERT: Combating Embedding Barrier in Multilingual Models for Low-Resource Language Understanding}, author={Abhik Bhattacharjee and Tahmid Hasan and Kazi Samin and Md Saiful Islam and M. Sohel Rahman and Anindya Iqbal and Rifat Shahriyar}, year={2021}, eprint={2101.00204}, archivePrefix={arXiv}, primaryClass={cs.CL} } ``` ### Contributions Thanks to [@abhik1505040](https://github.com/abhik1505040) and [@Tahmid](https://github.com/Tahmid04) for adding this dataset.
[ -0.43358486890792847, -0.7886477708816528, 0.10595202445983887, 0.3081909418106079, -0.275002658367157, 0.07537972182035446, -0.17398406565189362, -0.2816351354122162, 0.3569728136062622, 0.24749869108200073, -0.7377178072929382, -0.6726276278495789, -0.5304279923439026, 0.3607473373413086, -0.1527213305234909, 0.9022162556648254, -0.22349227964878082, -0.02273683063685894, -0.12868213653564453, -0.13844621181488037, -0.5879936218261719, -0.3758956491947174, -0.4175271987915039, -0.10901981592178345, 0.23723042011260986, 0.27304667234420776, 0.4248466193675995, 0.6068234443664551, 0.4902540445327759, 0.33264240622520447, -0.18744923174381256, 0.2656514048576355, -0.35046809911727905, 0.07630430907011032, -0.24793264269828796, -0.3887876868247986, -0.37145915627479553, -0.2393638640642166, 0.6831344366073608, 0.6284515857696533, 0.1028602123260498, 0.2809206545352936, 0.14801514148712158, 0.7718620300292969, -0.4456130266189575, 0.44708865880966187, -0.35665521025657654, -0.06472168117761612, -0.08456967025995255, -0.1685796082019806, -0.07783868163824081, -0.5363133549690247, -0.041705816984176636, -0.5806971192359924, 0.13442516326904297, 0.16863539814949036, 1.10603666305542, 0.13490083813667297, -0.3208579123020172, -0.337947279214859, -0.3760562837123871, 0.906574547290802, -0.7144190669059753, 0.3089371621608734, 0.6394224762916565, 0.2018745243549347, -0.017094502225518227, -0.2527782618999481, -0.6118985414505005, 0.22228361666202545, -0.24983756244182587, 0.3815423846244812, -0.046061720699071884, -0.29415538907051086, 0.07706841081380844, 0.11711419373750687, -0.8037141561508179, -0.2458251714706421, -0.6446266770362854, -0.1828674077987671, 0.9046453237533569, 0.08713018149137497, 0.37387463450431824, -0.5627241134643555, -0.3014802038669586, -0.17090490460395813, -0.4575376510620117, 0.4120464026927948, 0.3438219428062439, 0.41264739632606506, -0.6730722188949585, 0.6431379318237305, -0.37160491943359375, 0.6529150009155273, 0.06178751587867737, 0.002906444715335965, 0.7310420274734497, -0.7763508558273315, -0.08186394721269608, -0.08828426897525787, 0.8967295289039612, 0.35799136757850647, 0.2756485044956207, 0.029859347268939018, 0.18342332541942596, -0.15925316512584686, 0.041529107838869095, -0.8772717714309692, -0.031556036323308945, 0.4748617112636566, -0.3954964578151703, -0.3700495958328247, 0.06024773791432381, -1.1529605388641357, -0.12980176508426666, -0.03156295791268349, 0.13446272909641266, -0.48862338066101074, -0.3968849182128906, -0.09803617000579834, -0.16842544078826904, 0.4013586640357971, 0.2495957463979721, -0.7059983611106873, -0.012141019105911255, 0.29972344636917114, 0.8672159314155579, -0.016506975516676903, -0.1800525039434433, 0.07186663895845413, 0.26216235756874084, -0.2878588140010834, 0.8373237252235413, -0.2962094247341156, -0.4320874810218811, 0.11187668144702911, 0.2910023629665375, -0.3549724817276001, -0.35156723856925964, 0.44457298517227173, -0.3994503617286682, 0.15482205152511597, -0.3627815246582031, -0.5701746940612793, -0.27242717146873474, 0.4953933656215668, -0.4900325536727905, 0.9437759518623352, 0.2752053737640381, -0.6225664615631104, 0.1288251429796219, -0.7606885433197021, -0.36774611473083496, 0.048802584409713745, -0.1660211682319641, -0.43339046835899353, -0.3364187777042389, 0.5196861624717712, 0.5604484677314758, -0.31099051237106323, 0.1032310426235199, -0.20007234811782837, -0.23041540384292603, 0.3742777705192566, -0.06431666016578674, 1.2618211507797241, 0.19089004397392273, -0.28499504923820496, -0.13435471057891846, -0.6636949777603149, 0.19485247135162354, 0.37516939640045166, -0.4112069308757782, -0.11643204092979431, -0.23488721251487732, 0.03973231837153435, 0.49298015236854553, 0.28391578793525696, -0.4513663351535797, 0.0899447575211525, -0.5476086139678955, 0.3733825087547302, 0.8626929521560669, 0.2578365206718445, 0.3969344198703766, -0.6333001255989075, 0.6225122213363647, 0.18706698715686798, 0.06135886162519455, -0.07797720283269882, -0.7123929858207703, -0.5244967341423035, -0.19498729705810547, 0.30694156885147095, 0.7900651693344116, -0.7880215644836426, 0.6597323417663574, -0.3452831506729126, -0.6709540486335754, -0.8185533285140991, 0.26765355467796326, 0.6035906076431274, 0.31910672783851624, 0.6514392495155334, 0.07901740819215775, -0.6418581008911133, -0.7786407470703125, -0.02471543475985527, -0.3475967049598694, 0.16502058506011963, 0.44528570771217346, 0.7963021993637085, -0.2547764480113983, 1.016302227973938, -0.6899232268333435, -0.29142799973487854, -0.6083410978317261, -0.2761443555355072, 0.1392865926027298, 0.8774620294570923, 0.652994692325592, -1.1728100776672363, -0.5931758880615234, -0.15755020081996918, -0.8545346260070801, -0.2295207530260086, 0.04877199977636337, -0.26986053586006165, 0.4907737076282501, 0.3601756691932678, -0.42505642771720886, 0.5050894618034363, 0.5440403819084167, -0.4353228509426117, 0.6095176935195923, 0.08189816772937775, 0.4017345607280731, -1.4828420877456665, 0.13593347370624542, -0.09288515150547028, 0.037729404866695404, -0.6161675453186035, 0.03056124597787857, 0.0882427841424942, 0.08579830825328827, -0.4751800000667572, 0.7289132475852966, -0.4117894172668457, 0.31630319356918335, 0.22754310071468353, 0.2973155975341797, 0.14766938984394073, 0.8153417706489563, -0.13443131744861603, 0.7070505619049072, 0.3593067228794098, -0.5222876667976379, 0.26168572902679443, 0.7172355055809021, -0.4857381284236908, 0.5281556248664856, -0.8169136643409729, -0.057094354182481766, -0.1628599464893341, 0.19060005247592926, -1.2435709238052368, -0.332787424325943, 0.6183850169181824, -0.7795772552490234, 0.335172563791275, -0.3655330240726471, -0.6079570651054382, -0.42958053946495056, -0.45172348618507385, 0.4097764790058136, 0.496209055185318, -0.11888641119003296, 0.2026233673095703, 0.37684640288352966, -0.2056061029434204, -0.4315159320831299, -1.0860718488693237, -0.24633151292800903, -0.09888935834169388, -0.6419060230255127, 0.35133886337280273, -0.49180471897125244, -0.010123072192072868, 0.05572608858346939, 0.12208254635334015, -0.3997672200202942, -0.044826406985521317, 0.25905755162239075, 0.27973997592926025, 0.08450787514448166, 0.08335811644792557, 0.24087674915790558, 0.046591028571128845, -0.13569623231887817, 0.03266396000981331, 0.7480524778366089, -0.2448953092098236, -0.23769351840019226, -0.4806148409843445, 0.6115592122077942, 0.30695730447769165, -0.2738303244113922, 0.8733443021774292, 0.7476480007171631, -0.24951645731925964, 0.13599245250225067, -0.5052790641784668, 0.01724182814359665, -0.4630040228366852, 0.5854377746582031, -0.35639235377311707, -0.7755523324012756, 0.800844669342041, 0.18326404690742493, -0.0739387646317482, 0.6555027365684509, 0.6828826069831848, -0.18562085926532745, 1.0157952308654785, 0.3061537742614746, 0.011065901257097721, 0.32911333441734314, -0.5781645178794861, 0.26232650876045227, -0.9496632814407349, -0.6129662990570068, -0.4964631497859955, -0.23535475134849548, -0.9080901741981506, -0.5118248462677002, 0.29384803771972656, 0.2593638598918915, -0.23524215817451477, 0.4882136583328247, -0.5338320732116699, 0.10502327978610992, 0.2886989116668701, 0.268300324678421, -0.030341340228915215, -0.16551217436790466, -0.09580810368061066, -0.006827503442764282, -0.74228835105896, -0.3173866271972656, 1.1117010116577148, 0.11435715109109879, 0.4021947383880615, 0.315292090177536, 0.7533727288246155, 0.15096773207187653, -0.14052851498126984, -0.43412041664123535, 0.6919570565223694, 0.14575396478176117, -0.9809465408325195, -0.2794530987739563, -0.4565408229827881, -1.102792739868164, 0.21304914355278015, -0.26868513226509094, -0.7676597833633423, 0.4796604812145233, -0.10599222034215927, -0.3417564630508423, 0.22037217020988464, -0.7081418037414551, 0.922089695930481, -0.10075058043003082, -0.3797295391559601, -0.019022556021809578, -0.9508097171783447, 0.26790323853492737, -0.08961669355630875, 0.4613611400127411, -0.18647176027297974, -0.15524795651435852, 0.9747713208198547, -0.5483829975128174, 0.8386174440383911, -0.1784248948097229, 0.027300752699375153, 0.49688804149627686, -0.09841008484363556, 0.39114677906036377, 0.15115094184875488, -0.11344294250011444, 0.30454835295677185, 0.19118306040763855, -0.7128802537918091, -0.5352044105529785, 0.5695813298225403, -0.8834094405174255, -0.2997676730155945, -0.3875862658023834, -0.7539151310920715, 0.005782591179013252, 0.2503436803817749, 0.31551337242126465, 0.33172592520713806, 0.12303447723388672, 0.2941204011440277, 0.4733719825744629, -0.43255630135536194, 0.45919427275657654, 0.37605464458465576, -0.14630013704299927, -0.5559895634651184, 0.8512376546859741, 0.4950309693813324, 0.3000502288341522, 0.4540978968143463, 0.06292106211185455, -0.45245808362960815, -0.5692002773284912, -0.5590372681617737, 0.26146918535232544, -0.5098450779914856, -0.398592084646225, -0.6907011866569519, -0.25561556220054626, -0.8531131148338318, -0.3029034435749054, -0.23503118753433228, -0.5548953413963318, -0.11998380720615387, -0.1450227051973343, 0.6458557844161987, 0.44654592871665955, -0.18498463928699493, 0.13904699683189392, -0.6379490494728088, 0.2409585565328598, 0.02673453837633133, 0.14723512530326843, -0.10147709399461746, -0.6595731973648071, -0.5596583485603333, 0.27665814757347107, -0.2780032753944397, -1.0590341091156006, 0.5257201194763184, 0.0301191546022892, 0.48331379890441895, 0.18191613256931305, 0.17039930820465088, 0.7516205310821533, -0.2871650457382202, 0.9889671206474304, -0.08405230194330215, -0.6647234559059143, 0.8808675408363342, -0.4790567457675934, 0.3977912962436676, 0.7629682421684265, 0.47599440813064575, -0.45753809809684753, -0.3450239896774292, -0.6562320590019226, -1.117174506187439, 0.6990883946418762, 0.44752734899520874, 0.0020294860005378723, -0.12405023723840714, 0.17575901746749878, -0.21987147629261017, 0.46694764494895935, -0.7031879425048828, -0.6637251377105713, -0.19599631428718567, -0.19852657616138458, 0.13185878098011017, -0.21485932171344757, -0.05417821183800697, -0.5802378058433533, 0.8782438039779663, 0.2033945620059967, 0.5159513354301453, 0.4589148461818695, -0.17698822915554047, 0.12909071147441864, 0.3998749554157257, 0.5557804703712463, 0.5949937105178833, -0.43965885043144226, -0.2771286964416504, 0.16919122636318207, -0.47142502665519714, 0.18203137814998627, 0.23494167625904083, -0.5234500169754028, 0.07667966187000275, 0.5291010737419128, 0.6343183517456055, 0.12595953047275543, -0.6978169083595276, 0.6374368071556091, 0.23543547093868256, -0.2334042489528656, -0.3661056458950043, -0.11567669361829758, -0.011600272729992867, 0.3201695382595062, 0.34817785024642944, -0.06970799714326859, -0.06251472234725952, -0.45318055152893066, 0.13539567589759827, 0.1783142387866974, -0.20256301760673523, -0.2188073694705963, 0.5213658809661865, -0.019873211160302162, -0.30461522936820984, 0.4570024311542511, -0.5749558806419373, -0.7241187691688538, 0.7105230093002319, 0.5796429514884949, 0.6657788157463074, -0.4085494577884674, 0.3032725155353546, 0.7043474316596985, 0.42127755284309387, 0.15754081308841705, 0.5401825904846191, 0.026446666568517685, -0.8025273680686951, -0.3051221966743469, -0.659427285194397, -0.11903837323188782, 0.06229805946350098, -0.7133402824401855, 0.10263960063457489, -0.45958760380744934, 0.0736217126250267, -0.22131004929542542, 0.24776384234428406, -0.7616848349571228, 0.0315520279109478, -0.2234066128730774, 0.7773789167404175, -0.821624219417572, 0.7157108783721924, 0.7843977212905884, -0.9772743582725525, -0.8755205869674683, -0.08047262579202652, 0.02775789611041546, -0.8112815618515015, 0.5231640934944153, 0.11785466223955154, 0.3992551565170288, 0.046821217983961105, -0.504185676574707, -0.8104810118675232, 1.226428508758545, 0.03704721853137016, -0.2498796433210373, 0.045656971633434296, 0.4044012129306793, 0.5003155469894409, -0.2839052975177765, 0.31023499369621277, 0.6398120522499084, 0.703746497631073, -0.044291071593761444, -0.7135564088821411, 0.2605937719345093, -0.7171583771705627, 0.04463833197951317, -0.03483332321047783, -0.8434401750564575, 0.8042159080505371, -0.1677570790052414, 0.08486272394657135, 0.05323479697108269, 0.5181659460067749, 0.4749133884906769, 0.15456970036029816, 0.25965383648872375, 0.48004022240638733, 0.5456573963165283, -0.2320982813835144, 1.065061092376709, -0.3086112141609192, 0.4898216128349304, 0.9040528535842896, 0.06913822144269943, 0.7898329496383667, 0.44556090235710144, -0.5434196591377258, 0.5736584067344666, 0.631646990776062, -0.22325748205184937, 0.6239460110664368, 0.17946067452430725, -0.0004774618719238788, 0.010829093866050243, -0.25007808208465576, -0.586952269077301, 0.4087018072605133, 0.23404470086097717, -0.15837633609771729, -0.08743137121200562, 0.06792765855789185, 0.18636909127235413, 0.10122708976268768, -0.30033379793167114, 0.682477593421936, -0.07058084011077881, -0.34736186265945435, 0.8088429570198059, -0.10494108498096466, 0.7989822030067444, -0.7619718313217163, 0.03632542863488197, -0.29086264967918396, -0.037421856075525284, -0.32522115111351013, -0.9413706064224243, 0.4352116286754608, 0.000040993516449816525, -0.4215472936630249, -0.2739318907260895, 0.47679415345191956, -0.7804678678512573, -0.813741147518158, 0.40251338481903076, 0.6144824624061584, 0.34360063076019287, 0.051322273910045624, -1.0250942707061768, 0.12835487723350525, 0.16277433931827545, -0.2526465654373169, 0.29143887758255005, 0.3380001187324524, 0.05165639519691467, 0.633571445941925, 0.5999564528465271, 0.1704394519329071, 0.21696653962135315, -0.02282457984983921, 0.7219900488853455, -0.5939794182777405, -0.5546939969062805, -0.7944543957710266, 0.7265042066574097, -0.19511328637599945, -0.21379505097866058, 0.8811722993850708, 0.7888635993003845, 0.9875298738479614, -0.1496470421552658, 1.0365229845046997, -0.49617013335227966, 0.7228872776031494, -0.29796767234802246, 0.8828648328781128, -0.7236666083335876, 0.03870035335421562, -0.5765188336372375, -0.5529577732086182, -0.18941019475460052, 0.7167232632637024, -0.3021969795227051, 0.18666265904903412, 0.645843505859375, 1.0578391551971436, 0.21458454430103302, -0.1276974231004715, 0.014031365513801575, 0.4269426167011261, 0.25844553112983704, 0.7505032420158386, 0.4356609582901001, -0.9298492670059204, 0.8307735919952393, -0.4623899459838867, -0.08134070038795471, -0.2627303898334503, -0.4800519645214081, -0.9512867331504822, -0.9217200875282288, -0.43690598011016846, -0.503147304058075, 0.08336906880140305, 1.1488351821899414, 0.5074835419654846, -1.009181022644043, -0.2441934496164322, -0.019121376797556877, 0.42407357692718506, -0.37392306327819824, -0.32268771529197693, 0.7333745360374451, -0.1364920437335968, -0.9020878076553345, 0.24552616477012634, -0.014224064536392689, 0.2252521961927414, 0.06627380847930908, -0.14320503175258636, -0.7919449210166931, -0.02893773652613163, 0.5510255098342896, 0.2375938594341278, -0.5556966066360474, -0.17967554926872253, -0.06890922784805298, -0.0645441934466362, 0.1760634183883667, 0.22832681238651276, -0.560917854309082, 0.3018122911453247, 0.6641806960105896, 0.6857627630233765, 0.4045620262622833, -0.021411238238215446, 0.20522017776966095, -0.7125020027160645, 0.3161999583244324, 0.12313472479581833, 0.2967185974121094, 0.29156094789505005, -0.3687193691730499, 0.775538444519043, 0.42196452617645264, -0.5279371738433838, -0.9673330187797546, 0.03791020065546036, -1.1976118087768555, -0.34198322892189026, 1.3864835500717163, -0.14612120389938354, -0.3055405914783478, -0.33898696303367615, -0.24425309896469116, 0.5804900527000427, -0.5706021785736084, 0.6109853982925415, 0.6588971018791199, 0.0272985752671957, -0.0029886718839406967, -0.7137527465820312, 0.4739256501197815, 0.30136269330978394, -0.8987039923667908, -0.16259664297103882, 0.14553622901439667, 0.20062610507011414, 0.2315693497657776, 0.7472397089004517, -0.13346824049949646, 0.13122417032718658, -0.2986868619918823, 0.016304071992635727, -0.23297414183616638, 0.0172322578728199, -0.18451794981956482, -0.002800381276756525, -0.6090316772460938, -0.3606726825237274 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
GabeHD/pokemon-type-captions
GabeHD
2022-10-23T04:40:59Z
218
3
null
[ "region:us" ]
2022-10-23T04:40:59Z
2022-10-18T08:38:18.000Z
2022-10-18T08:38:18
--- dataset_info: features: - name: image dtype: image - name: text dtype: string splits: - name: train num_bytes: 19372532.0 num_examples: 898 download_size: 0 dataset_size: 19372532.0 --- # Dataset Card for Pokémon type captions Contains official artwork and type-specific caption for Pokémon #1-898 (Bulbasaur-Calyrex). Each Pokémon is represented once by the default form from [PokéAPI](https://pokeapi.co/) Each row contains `image` and `text` keys: - `image` is a 475x475 PIL jpg of the Pokémon's official artwork. - `text` is a label describing the Pokémon by its type(s) ## Attributions _Images and typing information pulled from [PokéAPI](https://pokeapi.co/)_ _Based on the [Lambda Labs Pokémon Blip Captions Dataset](https://huggingface.co/datasets/lambdalabs/pokemon-blip-captions)_
[ -0.3141840994358063, -0.09986601769924164, 0.06295254826545715, 0.3632641136646271, -0.5274065136909485, 0.20793545246124268, 0.13799810409545898, -0.3203493058681488, 0.7911314368247986, 0.5108557939529419, -0.6507758498191833, -0.3126108646392822, -0.37294715642929077, 0.43895411491394043, -0.14639389514923096, 0.8228495121002197, -0.03223811462521553, 0.06167967617511749, -0.22840313613414764, -0.16959233582019806, -0.2355027198791504, -0.34558847546577454, -0.6491702198982239, -0.11143746972084045, 0.85277259349823, 0.8936490416526794, 0.9112128019332886, 0.5006958246231079, 0.9180315732955933, 0.23405008018016815, 0.18631623685359955, -0.08790312707424164, -0.6592925190925598, -0.1923651099205017, -0.15454600751399994, -0.9889612793922424, -0.3720604479312897, 0.2186949998140335, 0.5113751888275146, 0.20395632088184357, 0.39150723814964294, 0.10571542382240295, -0.3600565791130066, 0.4862341284751892, -0.5676485896110535, 0.43664565682411194, -0.6739075779914856, 0.46531620621681213, -0.6613274812698364, -0.7416799664497375, -0.33852505683898926, -0.5246230363845825, 0.34860679507255554, -0.7873756885528564, 0.4408305287361145, 0.28671273589134216, 1.1474356651306152, -0.10910400003194809, -0.16611945629119873, -0.3523365259170532, -0.4495302438735962, 0.5006771683692932, -0.46155014634132385, -0.0715475007891655, 0.24925541877746582, 0.42225801944732666, -0.002708702115342021, -0.5818023681640625, -0.40847986936569214, 0.05048011243343353, -0.23092545568943024, 0.33270740509033203, -0.21398024260997772, -0.17810335755348206, 0.40395694971084595, 0.7512120604515076, -0.5900396108627319, 0.09964201599359512, -0.8316648602485657, -0.3638427257537842, 0.7063030004501343, 0.09866238385438919, 0.6023951768875122, -0.28796935081481934, -0.12601019442081451, -0.23680710792541504, -0.917866587638855, -0.2658594846725464, 0.008790690451860428, -0.011793828569352627, -0.3317486345767975, 0.9801668524742126, 0.1664535105228424, 0.3671903610229492, 0.07394832372665405, 0.17520789802074432, 0.6427717804908752, -0.13385872542858124, -0.11946218460798264, 0.40897855162620544, 1.0374078750610352, 0.5657797455787659, 0.3955494165420532, -0.5206055045127869, 0.14702196419239044, -0.04562646150588989, 0.11534057557582855, -0.7404541969299316, -0.503532886505127, 0.5606868267059326, -0.5845776200294495, -0.6012848019599915, 0.1960505098104477, -1.1345458030700684, -0.6400219798088074, -0.11665501445531845, 0.6070629358291626, -0.7162134647369385, -0.11942575871944427, -0.012632391415536404, -0.6716869473457336, 0.2778850197792053, 0.15590643882751465, -0.9449673295021057, 0.07999981939792633, 0.3397718369960785, 0.9485646486282349, 0.12705451250076294, -0.3894769251346588, -0.15192046761512756, 0.1988195776939392, -0.4326243996620178, 1.0025659799575806, -0.6379172801971436, -0.5852877497673035, 0.20447640120983124, 0.14883308112621307, -0.3080212473869324, -0.5418782234191895, 0.8521261215209961, -0.4202732443809509, 0.3150710165500641, -0.42591792345046997, -0.8815712332725525, -0.1694636195898056, -0.18008524179458618, -1.1756069660186768, 0.5768263339996338, -0.036581914871931076, -1.0903644561767578, 0.5984779596328735, -0.965855062007904, -0.06658034026622772, 0.4762738049030304, -0.1829465925693512, -0.4923369586467743, 0.23896385729312897, 0.07081255316734314, 0.458782434463501, 0.07008957862854004, -0.4329163730144501, -0.39065608382225037, -0.35934826731681824, 0.6468181014060974, -0.14314202964305878, 0.766943633556366, 0.34022995829582214, -0.15637119114398956, -0.051121849566698074, -1.1246211528778076, -0.11936738342046738, 0.2823133170604706, -0.06980139017105103, -0.3003835380077362, 0.03500273451209068, 0.25700879096984863, 0.01937035098671913, 0.43794846534729004, -0.7208006978034973, 0.5093607902526855, 0.10968366265296936, 0.464221715927124, 0.3466390371322632, 0.2320384532213211, 0.3451191186904907, -0.2762998342514038, 0.4051809012889862, -0.004387008957564831, 0.3184907138347626, -0.03325742483139038, -0.6453234553337097, -0.7294148206710815, -0.41452205181121826, 0.2525719702243805, 0.5801208019256592, -0.7293247580528259, 0.8121724128723145, -0.6683171987533569, -0.965911865234375, -0.6044551134109497, -0.3996351957321167, 0.2295408993959427, 0.5073804259300232, 0.18291637301445007, -0.250813364982605, -0.3752872347831726, -0.9906256198883057, 0.3939918577671051, -0.015329969115555286, -0.004795933607965708, 0.4463762044906616, 0.6433359384536743, -0.016084030270576477, 0.9105005860328674, -0.3737391531467438, -0.34603896737098694, -0.04322074353694916, 0.33070138096809387, 0.3928733468055725, 0.32323718070983887, 0.9939062595367432, -0.8473168611526489, -0.49882492423057556, -0.2699754536151886, -0.6494070887565613, -0.04599856957793236, -0.30299708247184753, -0.5525785088539124, -0.07939599454402924, 0.0072605200111866, -0.7170889377593994, 0.7002665996551514, 0.45614978671073914, -0.6938053965568542, 0.3146258592605591, -0.2345076948404312, 0.5529052019119263, -0.9033414721488953, 0.40558701753616333, 0.09743665158748627, 0.07086732238531113, -0.7455359697341919, -0.1082787960767746, 0.38254258036613464, -0.0486399307847023, -0.37912240624427795, 0.41535893082618713, -0.2743423879146576, -0.22914958000183105, -0.04576500505208969, -0.00006567475793417543, 0.10255154967308044, 0.1881897896528244, 0.7553315162658691, 0.9758734703063965, 1.0051263570785522, -0.38183173537254333, 0.672993540763855, 0.7137253880500793, -0.3319605886936188, 0.5676870346069336, -0.7008715867996216, -0.1851731836795807, -0.23131948709487915, 0.2969107925891876, -0.9627723693847656, -0.3912025988101959, 0.3979189395904541, -0.4204535186290741, 0.18992337584495544, -0.1976177990436554, -0.6151388883590698, -0.6865126490592957, -0.5670512914657593, 0.34243571758270264, 0.3505305051803589, -0.7171405553817749, 0.2377452403306961, -0.052945274859666824, -0.07230570167303085, -0.14903749525547028, -0.9078776836395264, 0.10536516457796097, -0.46819594502449036, -0.5477015972137451, 0.4226285219192505, -0.11046840995550156, 0.22112689912319183, -0.05162002518773079, 0.2888135313987732, -0.24849078059196472, -0.4621754288673401, 0.45888739824295044, 0.4363662898540497, 0.019353633746504784, 0.18353137373924255, -0.22455275058746338, 0.10865634679794312, -0.07565692067146301, 0.40495750308036804, 0.7743727564811707, 0.15663951635360718, -0.09095105528831482, -0.5973292589187622, 0.06484345346689224, 0.7107690572738647, -0.13051268458366394, 0.5669549703598022, 0.25937509536743164, -0.36690157651901245, 0.35588979721069336, -0.28707319498062134, -0.04597199708223343, -0.44114816188812256, 0.1415122151374817, -0.7454743981361389, -0.03329774737358093, 0.7635942101478577, 0.4548107385635376, 0.28654035925865173, 0.6580337882041931, 0.2564009428024292, -0.1263076514005661, 0.6650828719139099, 0.017123756930232048, -0.5240307450294495, 0.31238073110580444, -0.5391983389854431, -0.16758084297180176, -0.8575907945632935, -0.5885211229324341, -0.6054767370223999, -0.38093844056129456, -0.46950650215148926, -0.2555726170539856, -0.08226902782917023, 0.03892979398369789, -0.26688313484191895, 0.6384211778640747, -0.6926537752151489, 0.43550390005111694, 0.8328569531440735, 0.38053980469703674, 0.016345392912626266, 0.41158103942871094, 0.32947438955307007, -0.29124265909194946, -0.6873955726623535, -0.5835873484611511, 1.4818849563598633, 0.5399137139320374, 0.7646576762199402, 0.22955770790576935, 0.8904996514320374, 0.32368525862693787, 0.2617800831794739, -0.5103843212127686, 0.38340961933135986, -0.35580623149871826, -0.9697100520133972, -0.11701600253582001, -0.4322018623352051, -1.1905505657196045, -0.14958637952804565, -0.3842747211456299, -0.8038986325263977, 0.498868852853775, 0.14720800518989563, -0.07880130410194397, 0.3839111030101776, -0.8503422737121582, 0.7065455913543701, -0.43674278259277344, -0.07599003612995148, 0.009083885699510574, -0.2773928642272949, 0.15700039267539978, 0.0027702401857823133, 0.13330736756324768, -0.12716078758239746, 0.07517436891794205, 0.9626156687736511, -0.5543466806411743, 0.5201523900032043, -0.32440221309661865, -0.05038616433739662, 0.16149240732192993, 0.0072309901006519794, 0.1498274803161621, 0.21880793571472168, 0.043112218379974365, -0.00038291074451990426, 0.07407917827367783, -0.5232962965965271, -0.2958837151527405, 0.5649404525756836, -0.9404062032699585, 0.12020651996135712, -0.48851457238197327, -0.05967671424150467, -0.11367375403642654, 0.07310887426137924, 1.2113925218582153, 0.838294267654419, 0.04141465574502945, 0.13628391921520233, 1.0528450012207031, -0.39277175068855286, 0.301410049200058, 0.12488524615764618, -0.20531432330608368, -0.5266391634941101, 1.041845440864563, 0.06624164432287216, -0.03631818667054176, 0.6579841375350952, 0.10255332291126251, -0.6420732140541077, -0.2445204257965088, -0.19943645596504211, 0.3777555525302887, -0.5868415832519531, -0.30857956409454346, -0.052836205810308456, -0.47906407713890076, -0.25497737526893616, -0.15095651149749756, -0.1308588683605194, -0.557488739490509, -0.7408076524734497, 0.02109655551612377, 1.0616703033447266, 0.46950843930244446, -0.12639586627483368, 0.11917534470558167, -0.8632925152778625, 0.47134044766426086, 0.4946626126766205, 0.742544412612915, -0.24306246638298035, -0.6787818670272827, 0.2909848988056183, 0.13761858642101288, 0.013473247177898884, -1.0401318073272705, 0.3529577851295471, 0.4907260835170746, 0.5400651693344116, 0.8099752068519592, -0.40685030817985535, 0.6811566948890686, -0.7684155106544495, 0.9239955544471741, 0.42498648166656494, -0.4157789647579193, 0.7602996230125427, -0.2648009955883026, -0.05751698464155197, 0.5909987092018127, 0.5961693525314331, -0.5355562567710876, -0.22684340178966522, -0.8340858221054077, -0.48861783742904663, 0.6324480175971985, 0.5136694312095642, -0.02999078296124935, 0.10395754873752594, 0.4299692213535309, 0.2274821251630783, 0.05552949383854866, -0.9313876032829285, -0.6933801770210266, -0.6892644166946411, -0.41847264766693115, -0.27106544375419617, -0.36690908670425415, -0.23138472437858582, -0.3894517123699188, 0.5212751030921936, 0.3111782371997833, 0.7755433917045593, 0.26587241888046265, -0.1388102024793625, -0.12754389643669128, -0.005910289939492941, 0.6748573780059814, 0.5164551138877869, -0.8175740838050842, -0.07068493217229843, -0.573112428188324, -0.7540864944458008, -0.21828530728816986, 0.2023274153470993, -0.0999179556965828, 0.23634803295135498, 0.5970004200935364, 0.8970098495483398, 0.1990281343460083, -0.5099691152572632, 0.37645280361175537, -0.09927210956811905, -0.418523907661438, -0.44915974140167236, 0.2708646357059479, -0.45203036069869995, -0.047981832176446915, 0.7070631384849548, -0.12732917070388794, 0.4307875633239746, -0.5897238254547119, 0.3043421506881714, 0.09558515250682831, -0.1927034854888916, -0.2911031246185303, 0.6618044376373291, 0.21655720472335815, -0.0551917590200901, 0.49000313878059387, -0.22575710713863373, -0.28072962164878845, 0.6148006319999695, 0.2601545751094818, 0.5407339930534363, 0.07853752374649048, 0.7356513738632202, 0.45480799674987793, 0.05114807188510895, 0.2984828054904938, 0.7190908193588257, 0.4826820194721222, -0.662562906742096, 0.0720115378499031, -0.2735615372657776, -0.482861191034317, 0.35893845558166504, -0.5172559022903442, 0.11592471599578857, -0.44224119186401367, 0.037964168936014175, 0.3693932592868805, 0.20651285350322723, -0.77173912525177, 0.4200843870639801, 0.37528011202812195, 1.4276652336120605, -1.020429253578186, 0.4627549946308136, 0.8752832412719727, -0.8317242860794067, -0.567933201789856, -0.47472238540649414, -0.13220396637916565, -0.9279882907867432, 0.6090115904808044, -0.022801805287599564, 0.779427170753479, -0.11809247732162476, -1.0341068506240845, -1.001508116722107, 1.3972088098526, -0.2528504431247711, -0.618644118309021, 0.3867909610271454, 0.5475125908851624, 0.5064743161201477, -0.35127586126327515, 0.5076116919517517, 0.448198527097702, 0.3484354615211487, 0.2992362678050995, -0.6576181650161743, -0.31154823303222656, -0.5128925442695618, 0.017632413655519485, -0.2420559674501419, -0.6911322474479675, 0.583299458026886, 0.33264797925949097, -0.1039632186293602, 0.3026857376098633, 0.49310997128486633, 0.7485741376876831, -0.13149145245552063, 0.3534865081310272, 0.5287436246871948, 0.7450981140136719, -0.48659855127334595, 0.9111416339874268, -0.1699431985616684, 0.30701035261154175, 0.7549536228179932, -0.12445323169231415, 0.738298237323761, 0.4624716341495514, -0.2857547104358673, 0.49010342359542847, 1.0533452033996582, -0.7097122073173523, 0.8144503235816956, 0.226144477725029, -0.12159463763237, 0.2663158178329468, 0.2648531496524811, -0.4493117034435272, 0.0765201523900032, 0.5238803625106812, -0.4185360074043274, -0.057911068201065063, 0.11765230447053909, -0.06259886175394058, -0.21088695526123047, -0.7105115652084351, 0.5169731378555298, -0.4478735625743866, -0.3598371744155884, 0.23761090636253357, -0.46011465787887573, 0.8816084265708923, -0.36687013506889343, 0.03252493962645531, -0.5155040621757507, -0.2487117350101471, -0.4486877918243408, -1.27996826171875, -0.21872954070568085, -0.0684632807970047, -0.053710196167230606, 0.32226651906967163, 0.5928824543952942, -0.4510975778102875, -0.7622096538543701, -0.4636019170284271, -0.23190392553806305, 0.4553166329860687, 0.2193508893251419, -0.8442825078964233, 0.13744692504405975, 0.010237530805170536, -0.04935585707426071, -0.14219731092453003, 0.6380487084388733, 0.354295939207077, 0.8155731558799744, 0.0681457445025444, 0.3997545838356018, 0.6707674860954285, 0.32754889130592346, 0.5167481303215027, -0.43061256408691406, -0.10307660698890686, -0.1360205113887787, 0.6197370886802673, -0.7713339924812317, -0.5855820178985596, 0.5347141623497009, 1.1269537210464478, 0.12770532071590424, -0.7730352878570557, 1.0744956731796265, -0.45094314217567444, 0.7118302583694458, -0.5770291686058044, 0.6887984871864319, -0.34378761053085327, -0.2720418870449066, -0.2956201434135437, -0.7969546318054199, -0.3942716121673584, 0.9056424498558044, -0.18614335358142853, -0.4328482747077942, 0.44808429479599, 0.6112797260284424, -0.35071176290512085, -0.026651030406355858, -0.0859757512807846, -0.01726994849741459, 0.3697235584259033, 0.6184126734733582, 0.5486188530921936, -0.7084934115409851, 0.5015261769294739, -0.6066896319389343, -0.3636060059070587, -0.2916463017463684, -0.6721057295799255, -1.0527924299240112, -0.6646774411201477, -0.7272348403930664, -0.29053518176078796, -0.3325895369052887, 0.6157051920890808, 0.5538300275802612, -1.0232741832733154, 0.004307588562369347, -0.3188423812389374, -0.38558751344680786, 0.4581143856048584, -0.35292425751686096, 0.8202109336853027, -0.24307946860790253, -0.651543140411377, -0.17908748984336853, 0.19456914067268372, 0.46324387192726135, -0.07971150428056717, -0.11167728155851364, 0.10635669529438019, 0.04737298563122749, 0.2192862629890442, 0.6773238182067871, -0.39354172348976135, -0.4209059476852417, -0.14209063351154327, -0.12183600664138794, 0.29526451230049133, 0.5482624173164368, -0.3675726354122162, 0.44809240102767944, 0.495850533246994, 0.013424698263406754, 0.3333851099014282, -0.3434639275074005, 0.1863125115633011, -0.9222411513328552, 0.4173244833946228, 0.020411008968949318, 0.7173546552658081, -0.06276492029428482, -0.20044155418872833, 0.6163080930709839, 0.11902692168951035, -0.5207398533821106, -0.3876762092113495, -0.011663714423775673, -1.3780014514923096, -0.05003102496266365, 1.197066068649292, -0.08144821226596832, -0.30314210057258606, 0.13123662769794464, -0.6409600973129272, -0.19481956958770752, -0.45241406559944153, 1.041664958000183, 0.7044387459754944, -0.015986565500497818, -0.6548726558685303, -0.010550145991146564, 0.8061807155609131, -0.2053913027048111, -1.0015299320220947, -0.17210784554481506, 0.5088390111923218, 0.2039612978696823, 0.7246595025062561, 0.4599737524986267, -0.33195990324020386, 0.4399310350418091, -0.03300929069519043, 0.2257828265428543, 0.4733883738517761, -0.07268902659416199, 0.0310494527220726, -0.199502632021904, -0.06001828983426094, -0.5492262244224548 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
emrgnt-cmplxty/sciphi-textbooks-are-all-you-need
emrgnt-cmplxty
2023-09-30T21:57:36Z
218
118
null
[ "license:llama2", "region:us" ]
2023-09-30T21:57:36Z
2023-09-26T08:14:12.000Z
2023-09-26T08:14:12
--- dataset_info: features: - name: formatted_prompt dtype: string - name: completion dtype: string - name: first_task dtype: string - name: second_task dtype: string - name: last_task dtype: string - name: notes dtype: string - name: title dtype: string - name: model dtype: string - name: temperature dtype: float64 splits: - name: train num_bytes: 3175095649 num_examples: 681845 download_size: 1280399468 dataset_size: 3175095649 configs: - config_name: default data_files: - split: train path: data/train-* license: llama2 --- ## Textbooks are all you need : A SciPhi Collection Dataset Description With LLMs, we can create a fully open-source Library of Alexandria. As a first attempt, we have generated 650,000 unique textbook samples from a diverse span of courses, kindergarten through graduate school. These are open source samples, which likely fall under the Llama-2 license. They were generated using the [SciPhi](https://github.com/emrgnt-cmplxty/SciPhi) repository. All samples were created with [TheBloke/Phind-CodeLlama-34B-v2-AWQ](https://huggingface.co/TheBloke/Phind-CodeLlama-34B-v2-AWQ). Lastly, I owe thanks to Runpod for the generous GPU time to make this possible.
[ -0.3036450147628784, 0.0086638443171978, 0.44737136363983154, -0.1906692385673523, -0.36739861965179443, 0.0014035573694854975, 0.23912575840950012, 0.009437917731702328, 0.06902811676263809, 0.6680545210838318, -0.4398486316204071, -0.8225789070129395, -0.12929415702819824, 0.03491863235831261, -0.5530149936676025, 1.3173803091049194, 0.09672939032316208, 0.3639701008796692, 0.0202107485383749, -0.1463954895734787, 0.20190462470054626, -0.2047872245311737, -0.03391881659626961, -0.2928621470928192, 0.44153815507888794, 0.9003568291664124, 0.3935031294822693, 0.9148930907249451, 0.417863667011261, 0.15430514514446259, -0.15437181293964386, -0.012739872559905052, -0.2293228656053543, 0.12415874749422073, -0.4824218451976776, -0.39364010095596313, -0.46031394600868225, 0.03745194524526596, 0.5261303782463074, 0.35850784182548523, -0.29308080673217773, 0.5057567358016968, 0.06962094455957413, 0.5411068201065063, -0.8131641745567322, -0.24145643413066864, -0.18246886134147644, 0.26334482431411743, -0.4552198052406311, 0.05513399466872215, -0.2620231807231903, -0.570426881313324, 0.09832711517810822, -0.9953404664993286, 0.3524665832519531, 0.2174215018749237, 0.5661386251449585, -0.10002250969409943, -0.575398862361908, -0.6801719069480896, -0.4980592727661133, 0.8729107975959778, -0.5688629746437073, -0.10305242985486984, 0.5170613527297974, 0.21639849245548248, -0.35054460167884827, -1.1867854595184326, -0.362651526927948, -0.12623338401317596, 0.17422202229499817, 0.19508443772792816, -0.10867990553379059, -0.04874907433986664, 0.20194581151008606, 0.8215681314468384, -0.6555245518684387, -0.08802277594804764, -0.9884541034698486, -0.1595507115125656, 0.6447985768318176, 0.113461934030056, 0.4004952311515808, -0.37010660767555237, -0.5845224857330322, -0.12715904414653778, -0.9230972528457642, -0.17267340421676636, 0.3956783711910248, -0.16505570709705353, -0.27746284008026123, 1.015580415725708, 0.1560659408569336, 0.4609757661819458, -0.4617483913898468, -0.09345997869968414, 0.22482337057590485, -0.6112890839576721, -0.3836600184440613, 0.3043181598186493, 0.8251351714134216, 0.22883650660514832, 0.3251543939113617, 0.19862742722034454, 0.008210059255361557, -0.36154359579086304, 0.2848657965660095, -0.7246799468994141, -0.48599523305892944, 0.45477426052093506, -0.577155590057373, -0.45891496539115906, -0.27233245968818665, -0.9142846465110779, -0.7668330669403076, -0.25962597131729126, 0.11604472994804382, -0.5814550518989563, 0.053402941673994064, -0.060440562665462494, 0.019709153100848198, -0.0717676505446434, 0.2748781740665436, -0.8969349265098572, 0.2426796406507492, 0.5368872880935669, 1.188001036643982, 0.04639001935720444, -0.19071123003959656, -0.20902785658836365, 0.25489622354507446, -0.6198480129241943, 0.8640204668045044, -0.21455781161785126, -0.7304600477218628, 0.1781841367483139, 0.03007115051150322, 0.4690505266189575, -0.5428787469863892, 0.8539949059486389, -0.14983628690242767, 0.2951517105102539, -0.13134634494781494, -0.8474912643432617, -0.18095660209655762, -0.1279376596212387, -0.6579022407531738, 1.1259582042694092, -0.11343212425708771, -0.5757980346679688, -0.038532909005880356, -0.4924185872077942, -0.12846848368644714, 0.21617397665977478, -0.15705238282680511, -0.18511450290679932, 0.16745907068252563, 0.15306216478347778, 0.2618255913257599, -0.39431852102279663, 0.14350737631320953, -0.024447640404105186, -0.5199935436248779, 0.09050949662923813, 0.05494111031293869, 1.0473166704177856, 0.6970386505126953, -0.3448795974254608, -0.03597759082913399, -1.1993975639343262, -0.04747489094734192, -0.14297203719615936, -0.3235100507736206, -0.32846105098724365, 0.12436174601316452, 0.272416889667511, -0.08396405726671219, 0.3586477041244507, -0.6026657223701477, 0.8349671959877014, -0.21845726668834686, 0.29248082637786865, 0.9484057426452637, -0.20229338109493256, 0.4975503087043762, -0.6376451253890991, 0.6442155838012695, -0.0013973693130537868, -0.23486770689487457, -0.5292157530784607, -0.4895729422569275, -0.7489499449729919, -0.6148831248283386, 0.04388685151934624, 0.4045543074607849, -0.26304689049720764, 0.33439791202545166, 0.07302339375019073, -1.0421357154846191, -0.17940276861190796, 0.22156094014644623, 0.24796654284000397, 0.3530092239379883, 0.2665136158466339, -0.29215124249458313, -0.5065457820892334, -0.8580266237258911, 0.26431456208229065, -0.1850360780954361, -0.46497443318367004, 0.5600367188453674, 0.7270137071609497, 0.20211143791675568, 0.870975136756897, -0.4588550925254822, -0.2839653789997101, 0.1079988181591034, -0.22453263401985168, 0.40583324432373047, 0.35124850273132324, 0.46668756008148193, -0.29511481523513794, 0.11672687530517578, -0.13572077453136444, -0.7474896907806396, -0.26784026622772217, -0.03689441457390785, -0.4225362241268158, 0.0017645640764385462, 0.27133092284202576, -0.5868164300918579, 0.42745569348335266, 0.3714126944541931, -0.41672050952911377, 0.29142090678215027, -0.29541853070259094, 0.08210860937833786, -1.5997889041900635, 0.1191200464963913, -0.08691643178462982, 0.1918812245130539, -0.21395115554332733, -0.09769385308027267, 0.20027422904968262, -0.2908584177494049, -0.692905604839325, 0.5418519973754883, -0.4044795632362366, -0.2786591351032257, 0.028710898011922836, 0.39426273107528687, 0.15728791058063507, -0.14038494229316711, -0.13379321992397308, 0.8584983348846436, 0.6825032234191895, -0.6979048252105713, 0.6854760646820068, 0.49050599336624146, -0.6479145884513855, 0.2518610656261444, -0.6261341571807861, -0.09851063787937164, 0.08147761225700378, 0.3840101361274719, -0.866551399230957, -0.379260778427124, 0.6148083806037903, -0.03422647342085838, -0.10484732687473297, -0.015844739973545074, -0.4079435169696808, -0.00982749368995428, -0.41398969292640686, 0.37345409393310547, 0.5019053220748901, -0.7787842154502869, 0.4134384095668793, 0.23719270527362823, -0.2402263730764389, -0.9609377384185791, -0.7259608507156372, -0.0928589329123497, 0.011553150601685047, -0.17695336043834686, 0.3213563561439514, -0.38101738691329956, -0.3714863657951355, 0.13019129633903503, -0.12343697994947433, 0.016007011756300926, -0.11092829704284668, 0.6477596163749695, 0.41356170177459717, -0.2711331248283386, 0.6075199842453003, -0.04242585226893425, 0.13213251531124115, -0.14873747527599335, -0.6157823801040649, 0.5775635838508606, -0.08238481730222702, -0.5812114477157593, -0.20536881685256958, 0.10139472782611847, 0.7221570014953613, 0.15741807222366333, 0.26417168974876404, 0.1210777759552002, -0.3291688859462738, -0.28562262654304504, -0.08769124746322632, -0.038007330149412155, -0.4758792519569397, 0.13852854073047638, -0.07587366551160812, -0.7016108632087708, 0.29664450883865356, 0.23013517260551453, 0.4619207978248596, 0.09621462225914001, 0.9248527884483337, 0.008826584555208683, 0.02230021543800831, 0.11340842396020889, -0.2522173225879669, 0.08596761524677277, -0.04067724570631981, 0.0012919518630951643, -0.5928409695625305, -0.637493908405304, -0.689276397228241, -0.3021485507488251, -0.49307677149772644, -0.2991919219493866, -0.07963816821575165, 0.18397030234336853, -0.5116690397262573, 0.23440280556678772, -0.9116524457931519, 0.601177453994751, 1.0511536598205566, -0.013377643190324306, 0.6207947134971619, 0.4645397961139679, -0.2573646306991577, 0.06634663045406342, -0.3706277012825012, -0.8979493975639343, 1.7578479051589966, 0.047117237001657486, 0.9158305525779724, 0.45455411076545715, 0.885516345500946, 0.4907263517379761, 0.24555231630802155, -0.8317040205001831, 0.7386875152587891, 0.30230310559272766, -1.0475201606750488, 0.16112256050109863, 0.009663945063948631, -0.9963261485099792, 0.112540103495121, -0.00785598810762167, -0.6604387760162354, 0.16839827597141266, 0.01671600341796875, -0.2945374548435211, 0.3708077669143677, -0.29155319929122925, 0.336786687374115, -0.20691274106502533, -0.39860206842422485, -0.25316786766052246, -0.4242517352104187, 0.5164488554000854, -0.33876290917396545, 0.3729153275489807, -0.31654244661331177, -0.44835546612739563, 0.7614166736602783, -0.36282873153686523, 0.5032617449760437, 0.34855106472969055, -0.21358399093151093, 0.7097358107566833, 0.23905083537101746, -0.1538313776254654, 0.24722807109355927, -0.23550887405872345, 0.3177874684333801, 0.08839116990566254, -0.6699313521385193, -0.02863023802638054, 0.814521849155426, -1.094427466392517, -0.2922409772872925, -1.1967023611068726, -0.6431431174278259, 0.328816682100296, 0.22899474203586578, 0.49832436442375183, 0.4742209017276764, -0.03086317516863346, 0.22951959073543549, 0.5018693208694458, -0.3792543411254883, 0.7216591238975525, 0.5901206135749817, -0.5408279299736023, -0.6157062649726868, 0.7048303484916687, 0.182549849152565, -0.09861716628074646, -0.0028721389826387167, 0.2128009796142578, -0.03736168146133423, -0.5797273516654968, -0.5454371571540833, 0.20765279233455658, -0.8229967355728149, -0.04446766525506973, -0.17707279324531555, -0.15735867619514465, -0.4907539188861847, -0.21406866610050201, -0.24294674396514893, -0.5540173649787903, -0.7947626709938049, -0.22025619447231293, 0.5403770804405212, 1.3283873796463013, -0.47429221868515015, 0.33723175525665283, -0.9267822504043579, 0.011499552056193352, 0.16112054884433746, -0.06374058127403259, -0.2886853814125061, -0.5995662212371826, -0.1824459433555603, -0.3096258044242859, -0.5797948837280273, -0.9326534271240234, 0.44654613733291626, 0.3738795518875122, 0.3071679472923279, 0.4113991856575012, 0.16443563997745514, -0.00364719913341105, -0.7035742402076721, 1.2947558164596558, 0.031841397285461426, -0.7881175875663757, 0.6052924990653992, -0.41380399465560913, -0.009958765469491482, 0.188944011926651, 0.7514999508857727, -0.1554078608751297, 0.018859226256608963, -0.7489174604415894, -0.89515620470047, 0.710195004940033, 0.3187156319618225, 0.2537336051464081, 0.2811868488788605, 0.4705486595630646, -0.08852923661470413, 0.3517793118953705, -0.6561232209205627, -0.5552858114242554, -0.2678753137588501, -0.5658784508705139, -0.09144005924463272, -0.3641113340854645, -0.7060671448707581, -0.13601067662239075, 0.7802923321723938, 0.20850719511508942, -0.1585698276758194, 0.11357428133487701, 0.22185118496418, 0.022121673449873924, 0.4149710237979889, 0.8962013721466064, 0.9178687334060669, -0.3699510991573334, 0.13124631345272064, -0.19353634119033813, -1.0753527879714966, 0.4127514362335205, 0.05559023469686508, 0.03591509908437729, 0.14569325745105743, 0.20230959355831146, 0.2716495096683502, 0.03481540456414223, -0.9954258799552917, 0.29457154870033264, 0.05520579218864441, -0.11283307522535324, -0.7665982842445374, 0.1561165302991867, 0.22720292210578918, 0.40140390396118164, 0.6624163389205933, -0.2510780096054077, 0.08308739215135574, -0.2809451222419739, 0.45359909534454346, -0.09392909705638885, 0.11218661814928055, 0.027045905590057373, 0.4595956802368164, -0.002607865957543254, -0.33845943212509155, 0.625269889831543, -0.021700594574213028, -0.045370105654001236, 0.7502735257148743, 0.5821616649627686, 0.4182112216949463, -0.10083350539207458, 0.3977011740207672, 0.520250678062439, 0.29945865273475647, 0.05793328955769539, 0.14347785711288452, -0.3031231164932251, -0.631505012512207, -0.030442770570516586, -0.8404288291931152, -1.1591408252716064, 0.24471741914749146, -0.5980784893035889, 0.5611615180969238, -0.7491767406463623, 0.312059223651886, -0.20522423088550568, 0.01258606556802988, -0.06978727877140045, 0.26931458711624146, 0.21843081712722778, 1.0971221923828125, -0.5568951964378357, 0.9139853715896606, 0.8122528791427612, -0.4103319048881531, -0.8504168391227722, -0.3971031904220581, 0.3564886748790741, -0.7854462265968323, 0.8525567650794983, -0.18300554156303406, 0.18085454404354095, 0.12110210955142975, -0.6362994909286499, -1.0045920610427856, 1.3469269275665283, 0.26763877272605896, -1.0321927070617676, -0.13702185451984406, -0.024808071553707123, 0.19009850919246674, -0.2703423500061035, 0.522576093673706, 0.3132265508174896, -0.004312130622565746, 0.17910631000995636, -0.4601133465766907, -0.3240756094455719, -0.3782910704612732, -0.25561362504959106, -0.26749175786972046, -0.3967715799808502, 1.1318987607955933, -0.09601004421710968, 0.09421112388372421, 0.47784224152565, 0.4822545349597931, 0.82365483045578, 0.5167039632797241, -0.10300995409488678, 0.7955988645553589, 0.9698020219802856, -0.05659835413098335, 1.0237454175949097, -0.6403436660766602, 0.6172468662261963, 0.9866821765899658, -0.14288640022277832, 0.5800359845161438, 0.29326510429382324, -0.1999143809080124, 0.4635256826877594, 1.203244686126709, -0.2982359528541565, 0.41709402203559875, 0.3450085520744324, -0.8355904817581177, -0.026539113372564316, -0.21417236328125, -0.809394121170044, 0.1072770282626152, 0.4535890817642212, -0.611372709274292, -0.17536015808582306, 0.08142174780368805, 0.19462458789348602, -0.3383077085018158, -0.425675630569458, 0.3295074999332428, 0.41005828976631165, -0.35855311155319214, 0.36141642928123474, -0.3449400067329407, 0.4300539493560791, -0.49884796142578125, 0.0627722516655922, -0.3501323461532593, 0.26942190527915955, -0.4179960787296295, -0.7790394425392151, -0.362531840801239, 0.09549807757139206, 0.06557915359735489, 0.08831293880939484, 0.5145649313926697, -0.26001235842704773, -0.5969352126121521, -0.02226044051349163, 0.3438413143157959, 0.6977588534355164, 0.5964952111244202, -0.33714085817337036, 0.019107813015580177, 0.12070880085229874, -0.754051923751831, 0.38529324531555176, 0.17025867104530334, 0.4022805690765381, 0.6504959464073181, 0.7499197125434875, 0.46575501561164856, 0.11518152058124542, -0.399630069732666, 0.775810182094574, -0.43020474910736084, -0.0019340675789862871, -0.8326315879821777, 0.5152444243431091, -0.09859267622232437, -0.8928621411323547, 0.8639377355575562, 0.7645001411437988, 0.9876805543899536, -0.17447210848331451, 1.0414310693740845, -0.046063780784606934, 0.42006799578666687, -0.39866259694099426, 0.7668371796607971, -0.8652588129043579, 0.3435090482234955, -0.005224879831075668, -1.1535860300064087, -0.23459909856319427, 0.8833009600639343, 0.20773924887180328, -0.3990892469882965, 0.8071476221084595, 0.8097845911979675, 0.03865734115242958, 0.2277851700782776, 0.22294104099273682, -0.19496241211891174, 0.2526963949203491, 0.5401387214660645, 0.6704947352409363, -0.44106075167655945, 0.7502133846282959, -0.38545867800712585, -0.09606406837701797, -0.21735896170139313, -0.9229567050933838, -0.777772068977356, -0.528002917766571, -0.23575882613658905, -0.9045634865760803, 0.13956120610237122, 1.1939380168914795, 0.5466828346252441, -1.0696133375167847, -0.44812479615211487, -0.2674723267555237, 0.03596434369683266, 0.5810014605522156, -0.0947529673576355, 0.570236325263977, -0.23137755692005157, -1.1085981130599976, 0.5351628661155701, -0.038493718951940536, 0.1361648589372635, -0.2778608798980713, -0.04125762730836868, -0.09118632972240448, 0.09972420334815979, 0.02776285447180271, 0.4523061215877533, -0.4040925204753876, -0.15429696440696716, -0.0630154237151146, -0.5729457139968872, 0.07476973533630371, 0.963508665561676, -0.5551227927207947, 0.4554763436317444, 0.43815696239471436, 0.5768929719924927, 0.4712751507759094, -0.23439940810203552, 0.49413570761680603, -0.44727012515068054, 0.5767167806625366, 0.3543717861175537, 0.6088467836380005, 0.03266604617238045, 0.030009698122739792, 0.8349741697311401, 0.4996688663959503, -1.052045226097107, -0.8832924962043762, 0.27679383754730225, -0.9405427575111389, -0.25371572375297546, 1.1337254047393799, -0.3281598687171936, -0.09866499900817871, 0.008496781811118126, -0.3747102618217468, 0.34090590476989746, -0.30508020520210266, 0.5226486921310425, 0.8491267561912537, -0.001667946926318109, -0.20368675887584686, -0.6450368165969849, 0.3201063275337219, 0.41339442133903503, -0.8706005215644836, -0.5996387600898743, 0.81825190782547, 0.3552497923374176, 0.37172994017601013, 0.5041213631629944, -0.06289893388748169, 0.2061624825000763, 0.12495428323745728, 0.5926992893218994, -0.2256132960319519, -0.2348211109638214, -0.3734838366508484, 0.444568395614624, -0.08847933262586594, -0.47597479820251465 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
bigheiniuJ/CoTTrain-CoTCollection
bigheiniuJ
2023-11-17T04:59:52Z
218
0
null
[ "region:us" ]
2023-11-17T04:59:52Z
2023-11-17T04:07:30.000Z
2023-11-17T04:07:30
--- dataset_info: features: - name: source dtype: string - name: target dtype: string - name: rationale dtype: string - name: task dtype: string - name: type dtype: string - name: output dtype: string - name: input dtype: string splits: - name: train num_bytes: 861688211 num_examples: 384272 download_size: 522795521 dataset_size: 861688211 configs: - config_name: default data_files: - split: train path: data/train-* --- # Dataset Card for "CoTTrain-CoTCollection" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6892005205154419, -0.004940023645758629, 0.1672489196062088, 0.2549748420715332, -0.2690321207046509, 0.2752794623374939, 0.08641475439071655, -0.22044737637043, 0.7014303803443909, 0.48320358991622925, -0.8731019496917725, -0.8663085699081421, -0.6985352635383606, -0.40669745206832886, -0.42330092191696167, 1.338966727256775, -0.10376904159784317, 0.21478676795959473, -0.5311849117279053, -0.26562201976776123, -0.5337251424789429, -0.7771207094192505, -0.6734349131584167, -0.524046003818512, 0.9766517281532288, 0.7128632664680481, 0.23273330926895142, 0.2333855777978897, 0.675432562828064, 0.18190090358257294, -0.029137032106518745, -0.23182862997055054, -0.5817198753356934, -0.07144684344530106, -0.10997500270605087, -0.6729465126991272, -0.9745813608169556, 0.011934672482311726, 0.5103381872177124, 0.494674414396286, -0.06748897582292557, 0.7256172895431519, -0.17982952296733856, 0.7516906261444092, -0.629962146282196, 0.32932040095329285, -0.08350931853055954, 0.03222782164812088, -0.5176162123680115, -0.2390335351228714, 0.07953927665948868, -0.49550455808639526, -0.20340417325496674, -1.051397442817688, 0.44412752985954285, 0.03373994678258896, 0.7655556201934814, 0.2023497372865677, -0.012066143564879894, -0.20032638311386108, -0.41258615255355835, 0.2261502742767334, 0.071640744805336, 0.21996095776557922, 0.8036031723022461, 0.5741010308265686, 0.19805453717708588, -0.7078298926353455, -0.16747117042541504, 0.10379915684461594, -0.11841027438640594, 0.33090224862098694, 0.4923396706581116, 0.0793071836233139, 0.427173912525177, 0.7351136207580566, -0.4960520267486572, -0.3342541754245758, -0.7088268399238586, -0.29087722301483154, 0.8810123205184937, 0.2213747799396515, 0.24135145545005798, 0.06876297295093536, -0.3171361982822418, -0.41238492727279663, -0.5180068612098694, -0.16361072659492493, 0.3402431309223175, 0.17369812726974487, -1.3337006568908691, 0.6399509310722351, 0.010819699615240097, 0.4870341420173645, -0.06307424604892731, 0.6637279391288757, 0.5985128283500671, -0.39237314462661743, -0.09341700375080109, 0.22990067303180695, 0.3380257785320282, 0.26231467723846436, 0.16266858577728271, -0.15232084691524506, -0.11666597425937653, 0.15706223249435425, 0.026049770414829254, -0.9457835555076599, -0.8135090470314026, 0.4702190160751343, -0.5518646836280823, -0.3848884105682373, 0.3787623345851898, -0.9525343775749207, -0.5037251710891724, -0.6308135986328125, -0.04048864543437958, -0.09780031442642212, -0.7574036717414856, -0.31451302766799927, -0.8507225513458252, 0.6347357630729675, 0.11349556595087051, -0.7545007467269897, 0.3996753394603729, 0.8679298758506775, 0.7030823826789856, 0.15271638333797455, -0.47593289613723755, -0.6846205592155457, 0.2181154042482376, -0.047141604125499725, 1.0982000827789307, -0.6307322382926941, -0.6441092491149902, 0.005066410172730684, 0.48788636922836304, 0.08169125765562057, -0.12821494042873383, 0.6402887105941772, -0.2622029185295105, -0.1588662713766098, -0.8761342167854309, -0.5712195634841919, 0.2318699210882187, 0.46492063999176025, -0.9280480742454529, 1.0947564840316772, 0.456286758184433, -0.6113631129264832, 0.4776870310306549, -1.1845487356185913, -0.25041794776916504, 0.5229916572570801, -0.2548564672470093, -0.3756489157676697, 0.16614539921283722, -0.17128539085388184, 0.3958462178707123, -0.2132163643836975, 0.46760791540145874, -0.7436152696609497, -0.2412034124135971, 0.15821370482444763, 0.024802178144454956, 1.0073314905166626, 0.27006518840789795, 0.39005833864212036, 0.012052577920258045, -0.9374102354049683, -0.12715689837932587, 0.16547666490077972, 0.06719082593917847, -0.20098601281642914, -0.5507021546363831, 0.7026768326759338, -0.08477548509836197, 0.42829373478889465, -0.4627422094345093, 0.522983729839325, 0.2983371317386627, -0.15716737508773804, 0.7538874745368958, -0.023496683686971664, 0.2991955578327179, -0.6061476469039917, 0.7842250466346741, -0.09145692735910416, 0.43689122796058655, 0.4352092444896698, -0.34668242931365967, -0.6476495862007141, -0.05444469302892685, 0.7873450517654419, 0.3180757761001587, -0.5810958743095398, 0.579982340335846, 0.15835486352443695, -0.7633817195892334, -0.27654358744621277, -0.048712797462940216, 0.3292945921421051, 0.07300873100757599, 0.3850046694278717, -0.6713072657585144, -0.7791327238082886, -0.4047051668167114, 0.40252503752708435, -0.0009260593797080219, 0.2189427614212036, 0.2540140748023987, 0.7506905794143677, -0.41611021757125854, 0.7312074303627014, -0.7924529910087585, -0.27360931038856506, 0.11250396072864532, -0.05880597233772278, -0.04258289188146591, 0.8671170473098755, 1.0046836137771606, -0.7186306118965149, -0.31012892723083496, -0.49411383271217346, -0.5133872628211975, -0.08477787673473358, 0.2797241806983948, -0.8512218594551086, -0.25251200795173645, 0.19480809569358826, -0.3584325313568115, 0.654201328754425, 0.998633861541748, -0.6747958660125732, 0.35356444120407104, 0.08419321477413177, 0.1882912814617157, -1.34302818775177, 0.48328325152397156, -0.36489468812942505, -0.19484791159629822, -0.24860282242298126, -0.06703604012727737, -0.07494727522134781, -0.3170938789844513, -0.05133000761270523, 0.6005874276161194, -0.44759073853492737, -0.23366332054138184, -0.14946000277996063, 0.25135689973831177, 0.0622839629650116, 0.19246268272399902, 0.320831298828125, 0.5588224530220032, 1.1523209810256958, -0.4333411753177643, 0.871255099773407, 0.8180509805679321, 0.2640741169452667, 1.1235705614089966, -0.6614152193069458, 0.17950096726417542, -0.18906007707118988, 0.4513143301010132, -0.7084316611289978, -0.7085206508636475, 0.453732430934906, -0.4537244141101837, 0.4731845259666443, -0.6904253363609314, -0.39324384927749634, -0.4546888768672943, -0.397490531206131, 0.9036595225334167, 0.40208375453948975, -0.8641406893730164, 0.261568158864975, 0.7084763050079346, 0.1813173145055771, -0.09253828972578049, -0.9713714122772217, -0.012246601283550262, -0.12214664369821548, -0.0012335493229329586, 0.4240894019603729, -0.4320434033870697, 0.25418174266815186, -0.17145198583602905, 0.43471843004226685, -0.2262054979801178, -0.10259141027927399, 0.5410147905349731, 0.2928068935871124, -0.17196276783943176, 0.667506754398346, -0.06715712696313858, -0.7672147154808044, 0.09378185123205185, -0.0599699467420578, 0.6640475988388062, -0.014051013626158237, -0.18467366695404053, -0.24562612175941467, 0.383830189704895, 0.20233036577701569, -0.331223726272583, 0.6910245418548584, 1.235155463218689, -0.5584540367126465, -0.16607734560966492, -0.3920423686504364, -0.12855906784534454, -0.48092761635780334, -0.13454806804656982, -0.16355998814105988, -0.48202797770500183, 0.44741058349609375, -0.1380510777235031, -0.16191910207271576, 0.6706944108009338, 0.7361648678779602, 0.10033226758241653, 0.3988778293132782, 0.5936579704284668, -0.3207044005393982, 0.5343509316444397, -0.7299797534942627, -0.33061084151268005, -1.0538746118545532, -0.43690964579582214, -0.7383978962898254, -0.5053203701972961, -0.9072073698043823, -0.3392855226993561, -0.21382492780685425, -0.044334713369607925, -0.27272936701774597, 0.8722034096717834, -0.9034719467163086, 0.35038697719573975, 0.5926088690757751, 0.24494540691375732, -0.002807459095492959, -0.3519595265388489, 0.32807856798171997, 0.6343345046043396, -0.8366012573242188, -0.2896304130554199, 1.317492961883545, 0.26473841071128845, 0.9507737159729004, 0.11560278385877609, 1.1490439176559448, 0.21196849644184113, 0.49907684326171875, -0.3539641797542572, 0.28984105587005615, -0.011041542515158653, -0.7211282849311829, 0.005093526095151901, -0.24352024495601654, -0.9163272380828857, -0.6324917078018188, -0.3791247308254242, -0.26931026577949524, 0.6121639609336853, 0.5780529379844666, -0.052284713834524155, 0.2128278911113739, -0.8182966709136963, 0.9846334457397461, -0.372356653213501, -0.21982604265213013, -0.19700504839420319, -0.6250304579734802, 0.07846909761428833, 0.30063164234161377, 0.026399292051792145, -0.35761937499046326, -0.12005095928907394, 0.9578931331634521, -0.5183747410774231, 1.0910295248031616, -0.6745542883872986, 0.163370743393898, 0.24354799091815948, -0.3303442597389221, 0.19574598968029022, 0.4946567714214325, 0.025401992723345757, 0.06389506161212921, 0.48549574613571167, -0.7294148802757263, -0.17435355484485626, 0.8792316317558289, -0.9754628539085388, 0.4688759744167328, -0.484719842672348, -0.5092105269432068, -0.2005818635225296, 0.14934584498405457, 0.42692437767982483, 0.9495435357093811, -0.5322433114051819, -0.05281192436814308, 0.4759996831417084, 0.238127201795578, 0.2748609781265259, -0.0787518098950386, -0.31952357292175293, -0.4152604341506958, 1.1029796600341797, 0.058400094509124756, -0.1122271940112114, 0.2917170524597168, 0.2736213207244873, -0.2754656970500946, -0.3857877850532532, -0.49867525696754456, 0.24975089728832245, -0.44885584712028503, -0.5048382878303528, -0.22476118803024292, -0.3540107011795044, -0.4376259744167328, -0.3905467391014099, -0.39302414655685425, -0.6781324744224548, -0.7254056930541992, -0.4852510988712311, 1.226381540298462, 0.6901953816413879, -0.5225002765655518, 0.6682432889938354, -0.7508702278137207, 0.5267924070358276, 0.06370967626571655, 1.2248221635818481, -0.22195178270339966, -0.19305898249149323, -0.3665193021297455, 0.05104171857237816, -0.13970118761062622, -0.24690817296504974, -0.26625657081604004, 0.06643208116292953, 0.5643742680549622, 0.14675255119800568, 0.12930995225906372, 0.6595129370689392, 0.12070799618959427, 0.6886184811592102, 0.3964247703552246, -0.5528378486633301, 0.5566686987876892, -0.17453564703464508, 0.2705523669719696, 1.1685973405838013, 0.43860822916030884, -0.38253772258758545, 0.05305827036499977, -1.2059227228164673, -0.643444836139679, 0.5706096887588501, 0.15439815819263458, 0.07017485052347183, 0.2495633363723755, 0.3226393163204193, 0.026655172929167747, 0.40949746966362, -0.6700336337089539, -0.591164231300354, -0.26458314061164856, -0.4802190959453583, -0.0695607140660286, -0.3185555636882782, -0.44308075308799744, -0.38799038529396057, 0.7738274931907654, -0.034296732395887375, 0.6020155549049377, 0.10726122558116913, 0.13515865802764893, -0.08387605100870132, -0.21195383369922638, 0.3785172700881958, 0.5379345417022705, -0.4970071613788605, -0.13989053666591644, 0.011755099520087242, -0.4777029752731323, -0.20306117832660675, 0.5366160273551941, 0.18042999505996704, -0.21832436323165894, 0.5771963596343994, 0.7651674747467041, -0.3310171365737915, -0.17723338305950165, 0.4167352616786957, -0.24953094124794006, -0.3450576961040497, -0.7378865480422974, 0.32435929775238037, 0.1964297592639923, 0.1314282864332199, -0.37699028849601746, -0.017534149810671806, 0.15321919322013855, -0.4314674437046051, 0.3742732107639313, 0.06234827637672424, -0.8255136609077454, -0.34445062279701233, 0.43448740243911743, 0.6400113701820374, -0.6204256415367126, 0.7301948070526123, 0.0467643216252327, -0.513714611530304, 0.7655023336410522, 0.22194458544254303, 0.8503147959709167, -0.22120535373687744, 0.4764537513256073, 0.5400476455688477, 0.0014165525790303946, 0.1833302080631256, 0.5767147541046143, -0.7453761100769043, -0.5122138261795044, 0.14330004155635834, -0.3513889014720917, -0.5623584985733032, -0.35482272505760193, -1.1446470022201538, 0.5549762845039368, -0.6104631423950195, -0.29016217589378357, -0.2011631727218628, 0.0946006253361702, -1.0068671703338623, 0.26051202416419983, 0.3169685900211334, 1.4012627601623535, -0.8078678846359253, 0.7591623663902283, 0.6331397294998169, -0.44585472345352173, -0.62795490026474, -0.13817068934440613, -0.08849003165960312, -0.8968474268913269, -0.3061668276786804, 0.20751938223838806, 0.150361105799675, -0.23731796443462372, -0.8954995274543762, -0.5802768468856812, 1.43682861328125, 0.19793513417243958, -0.8519330620765686, 0.34123870730400085, -0.04924114793539047, 0.46678614616394043, -0.31798550486564636, 0.37381747364997864, 0.6559802293777466, 0.6946960091590881, 0.3009059727191925, -0.48072880506515503, -0.12952110171318054, -0.4445579946041107, -0.183181032538414, 0.40552622079849243, -1.0672019720077515, 0.0777885764837265, 0.14681942760944366, 0.25549039244651794, 0.1943640559911728, 0.42579054832458496, 0.24063371121883392, 0.4790356457233429, 0.35802969336509705, 0.5477515459060669, 0.9175512790679932, -0.3356877863407135, 1.0472955703735352, -0.32101187109947205, 0.75101637840271, 1.313242793083191, -0.02319936268031597, 0.23600813746452332, 0.5224131345748901, -0.022205421701073647, 0.3632698059082031, 0.6233916878700256, -0.43902453780174255, 0.40681663155555725, 0.3957420885562897, -0.34865304827690125, -0.23114967346191406, -0.14626669883728027, -0.8874823451042175, 0.12360792607069016, 0.41385072469711304, -0.44615882635116577, 0.02642279490828514, -0.005639284383505583, -0.06982088834047318, -0.3089393973350525, -0.49104005098342896, 0.7855717539787292, 0.15552902221679688, -0.2738521099090576, 0.18813219666481018, -0.3496556878089905, 0.20024317502975464, -0.8413079380989075, -0.3133879601955414, -0.004132724832743406, 0.08536507189273834, -0.5742546916007996, -1.0948927402496338, 0.6707723736763, -0.21929804980754852, -0.041741885244846344, -0.016917463392019272, 0.6245942711830139, -0.5412198305130005, -0.8999760150909424, 0.4852144122123718, 0.08188945800065994, 0.18451586365699768, 0.3867632746696472, -1.1682943105697632, 0.3332635462284088, -0.2931325435638428, -0.019776854664087296, 0.14950238168239594, 0.18569599092006683, 0.28676557540893555, 0.4452019929885864, 0.47651976346969604, 0.07802017033100128, -0.5006603598594666, 0.46816980838775635, 1.118587851524353, -0.5998007655143738, -0.39487650990486145, -0.28674495220184326, 0.70363450050354, -0.46057936549186707, -0.8498167991638184, 0.30982574820518494, 0.9785789847373962, 0.9620984196662903, -0.08040929585695267, 0.9041113257408142, -0.5740382075309753, 0.39509013295173645, -0.4157577455043793, 0.6193259358406067, -0.3367578387260437, -0.1745050847530365, -0.25174036622047424, -0.661537766456604, -0.6626498699188232, 0.6059203147888184, -0.012494622729718685, 0.10183114558458328, 0.5449021458625793, 1.0251058340072632, -0.3701229393482208, 0.3057344853878021, -0.0025962023064494133, 0.08749140053987503, 0.11529907584190369, 0.3662700653076172, 0.5140763521194458, -0.5518395900726318, 0.21203014254570007, -0.34051352739334106, -0.6098455190658569, 0.05986427143216133, -1.0243868827819824, -1.0943714380264282, -0.7563794255256653, -0.5786648988723755, -0.5879552960395813, 0.13665363192558289, 1.0857921838760376, 1.0095113515853882, -1.0885567665100098, -0.42889901995658875, -0.3804982006549835, 0.2571072578430176, 0.11689632385969162, -0.10571880638599396, 0.7911062240600586, 0.08707685023546219, -0.42659810185432434, -0.47939494252204895, -0.25683721899986267, 0.21978230774402618, -0.14968015253543854, -0.09543389081954956, -0.06899596750736237, -0.2414957731962204, 0.3076079785823822, 0.38250452280044556, 0.17062252759933472, -0.32269278168678284, -0.6879221200942993, 0.10517088323831558, 0.08965407311916351, 1.0931189060211182, -0.4745123088359833, 0.1705724149942398, 0.40140968561172485, 0.32584404945373535, 0.8921749591827393, 0.10697977989912033, 0.6730045080184937, -0.7094515562057495, 0.33370378613471985, 0.012535282410681248, 0.48017585277557373, 0.2183457762002945, -0.5288130640983582, 0.9293889999389648, 0.4624265134334564, -0.6532360315322876, -0.5152891874313354, 0.042284224182367325, -1.5351381301879883, 0.39095741510391235, 0.8469010591506958, 0.13285915553569794, -0.4941313564777374, -0.17052990198135376, -0.6332767009735107, 0.324496865272522, -0.661010205745697, 0.39929211139678955, 0.444644033908844, 0.1512184739112854, -0.20637570321559906, -0.150178000330925, 0.6340242624282837, -0.44224679470062256, -1.1950852870941162, 0.2871827483177185, 0.34646376967430115, 0.1461663395166397, 0.07615575194358826, 0.8210727572441101, -0.230035662651062, 0.4351344406604767, 0.35966330766677856, 0.4605870842933655, -0.13293102383613586, -0.5717654824256897, -0.08545536547899246, -0.15734106302261353, 0.06442253291606903, -0.5786167979240417 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ScandEval/norne-nn-mini
ScandEval
2023-07-05T09:41:26Z
217
0
null
[ "task_categories:token-classification", "size_categories:1K<n<10K", "language:nn", "license:other", "region:us" ]
2023-07-05T09:41:26Z
2022-06-14T18:21:22.000Z
2022-06-14T18:21:22
--- dataset_info: features: - name: text dtype: string - name: tokens sequence: string - name: labels sequence: string splits: - name: train num_bytes: 341534 num_examples: 1024 - name: test num_bytes: 721476 num_examples: 2048 - name: val num_bytes: 90956 num_examples: 256 download_size: 502871 dataset_size: 1153966 license: other task_categories: - token-classification language: - nn size_categories: - 1K<n<10K --- # Dataset Card for "norne-nn-mini" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6302911043167114, -0.36040163040161133, 0.12172083556652069, -0.06629092991352081, -0.2774046063423157, -0.36014991998672485, 0.38181376457214355, -0.043061450123786926, 1.0987123250961304, 0.6209487915039062, -1.1033761501312256, -0.7605175971984863, -0.4705582559108734, -0.10012556612491608, -0.36469125747680664, 1.288576602935791, 0.42653918266296387, 0.012891082093119621, -0.20567750930786133, -0.1911740005016327, -0.05391256511211395, -0.36013856530189514, -0.9567456841468811, -0.5850964188575745, 1.065944790840149, 1.0024383068084717, 0.37222808599472046, 0.6836947202682495, 0.7405975461006165, 0.11028766632080078, 0.020053505897521973, -0.3732999563217163, -0.4931802749633789, -0.2766079902648926, -0.10003979504108429, -0.5237810611724854, -1.5014872550964355, -0.06962194293737411, 0.6808423399925232, 0.5979021787643433, -0.002356252633035183, 0.9135545492172241, -0.09714824706315994, 0.764725387096405, -0.3503323495388031, 0.3956611752510071, -0.01598425582051277, -0.09762866795063019, -0.7905789017677307, 0.08583091199398041, 0.3651725649833679, -0.6307815909385681, 0.0663992166519165, -1.1178796291351318, 0.38697031140327454, 0.05062217637896538, 0.702394425868988, 0.23732784390449524, -0.13122275471687317, -0.1349496841430664, -0.24808254837989807, 0.1929793655872345, -0.369119256734848, 0.11555738002061844, 0.43591952323913574, 0.4160197377204895, -0.12052930146455765, -0.5760476589202881, -0.33058202266693115, 0.04186725616455078, -0.11952336132526398, 0.1584356278181076, 0.13016577064990997, -0.005758346989750862, 0.7570116519927979, 0.5818917751312256, -0.6334553360939026, -0.13823911547660828, -0.39362674951553345, -0.1865713745355606, 0.7058343291282654, 0.3493727445602417, 0.26323506236076355, -0.34843695163726807, 0.027082061395049095, -0.20758020877838135, -0.5668905973434448, -0.27640220522880554, 0.5163350701332092, 0.40134942531585693, -1.2956998348236084, 0.7189493775367737, -0.07228545099496841, 0.39071857929229736, 0.19885841012001038, 0.2518925368785858, 0.527424693107605, -0.4480699300765991, -0.2725642919540405, 0.09702783823013306, 0.5094770789146423, 0.42861878871917725, 0.12579545378684998, 0.3157055974006653, -0.09461715817451477, 0.011457419954240322, -0.27335697412490845, -1.181564211845398, -1.0725040435791016, 0.0906960666179657, -0.829181432723999, -0.28535276651382446, 0.22428369522094727, -1.221490740776062, -0.6822872161865234, -0.23174095153808594, 0.04774489253759384, 0.12046751379966736, -0.7445261478424072, -0.41305333375930786, -0.6271180510520935, 0.29086530208587646, 0.09718991816043854, -0.9183522462844849, 0.6410844326019287, 0.5120484828948975, 0.44631874561309814, 0.2957991361618042, -0.15860065817832947, -0.6732832789421082, 0.08693940192461014, -0.07958010584115982, 0.9551697969436646, -0.46859583258628845, -0.40141743421554565, -0.08292096853256226, 0.3466164171695709, -0.04227248579263687, -0.5326749086380005, 0.6117128729820251, -0.3220483064651489, -0.34628450870513916, -0.4824080169200897, -0.5035841464996338, 0.015515534207224846, 0.3628098964691162, -1.2167543172836304, 0.8681437969207764, 0.05699655041098595, -0.7157297134399414, 0.33397024869918823, -1.344099998474121, -0.2914084494113922, 0.4291291832923889, -0.14538432657718658, -0.32739442586898804, 0.43623703718185425, 0.023556511849164963, 0.2977961301803589, -0.3392145335674286, 0.03805467486381531, -0.7680627703666687, -0.13157273828983307, 0.032800447195768356, 0.10662022978067398, 0.8638721704483032, -0.0657818391919136, 0.3920050263404846, 0.08142492920160294, -1.0647640228271484, -0.2613462507724762, 0.33025145530700684, -0.03961113840341568, -0.27800747752189636, -0.7697489261627197, 0.34906870126724243, -0.3193165063858032, 0.47515565156936646, -0.6271496415138245, 0.4345707595348358, 0.0026973318308591843, 0.12682893872261047, 0.5988653302192688, 0.1640288382768631, 0.6854605674743652, -0.4257160425186157, 0.5347340703010559, -0.30447113513946533, 0.7116994857788086, 0.2908216714859009, -0.43921124935150146, -0.9614201188087463, 0.13712584972381592, 1.0636727809906006, 0.6822929382324219, -0.8363540172576904, 0.38784265518188477, -0.08072483539581299, -0.47339972853660583, -0.16549085080623627, 0.010202553123235703, 0.256557822227478, 0.2720720171928406, 0.21700835227966309, -0.34883174300193787, -0.970647394657135, -0.7444829940795898, 0.36488160490989685, -0.0410270094871521, 0.09534132480621338, 0.6595429182052612, 1.0788614749908447, -0.5121954679489136, 0.6196552515029907, -0.6268374919891357, -0.4262331426143646, -0.06844723224639893, -0.1416875123977661, 0.5124799013137817, 0.7652192115783691, 0.7562021017074585, -0.7032407522201538, -0.5844191908836365, -0.4962158799171448, -0.5908718109130859, -0.31053122878074646, 0.3627927303314209, -0.37133118510246277, -0.0516245998442173, 0.41499900817871094, -0.20320791006088257, 0.8644763231277466, 1.0059226751327515, -0.306816041469574, 0.37142956256866455, 0.1578928381204605, -0.0733795017004013, -1.1425102949142456, 0.4246256947517395, -0.23946362733840942, -0.26822686195373535, -0.4584864377975464, -0.025322383269667625, -0.02070758491754532, -0.20761233568191528, -0.0858592614531517, 0.7601040601730347, -0.29013606905937195, -0.05839443579316139, -0.212287038564682, 0.14636817574501038, -0.09899915009737015, 0.0507047176361084, 0.1994641125202179, 0.40528738498687744, 0.9852074384689331, -0.4992614686489105, 1.0217946767807007, 0.4313122630119324, 0.2673693299293518, 1.126178503036499, -0.8900506496429443, 0.24253976345062256, -0.08490981161594391, 0.37434834241867065, -0.48230016231536865, -0.7369094491004944, 0.6518436670303345, -0.40878915786743164, 0.3963594138622284, -1.0239245891571045, -0.7977396249771118, -0.47968921065330505, -0.24515250325202942, 0.8788370490074158, 0.40469640493392944, -0.6800596714019775, 0.5709008574485779, 0.554837703704834, -0.08876874297857285, 0.222258061170578, -1.0977528095245361, -0.06781383603811264, -0.27560898661613464, -0.2696417570114136, 0.3443128764629364, -0.2802233099937439, 0.117892786860466, 0.022118056192994118, 0.11372065544128418, -0.24589720368385315, -0.4123705327510834, 0.6881937980651855, 0.29652807116508484, -0.35627710819244385, 0.4044378399848938, -0.10222688317298889, -1.1001675128936768, -0.03663858026266098, -0.2764990031719208, 0.3218616843223572, -0.03716437146067619, 0.0538952499628067, -0.5504478216171265, 0.47093722224235535, 0.07998909056186676, 0.16911320388317108, 0.585532009601593, 0.8458446264266968, -0.6687859296798706, 0.004603446461260319, -0.613574743270874, -0.5160243511199951, -0.4203249514102936, -0.25841405987739563, -0.3262382745742798, -0.7122173309326172, 0.5753425359725952, -0.07698440551757812, -0.052893590182065964, 0.8956156969070435, 0.2919101119041443, -0.2397853434085846, 0.3664271831512451, 0.9841691255569458, -0.07314381003379822, 0.5606259107589722, -0.48929429054260254, -0.3079296350479126, -1.0052521228790283, -0.3254808187484741, -0.5163130760192871, -0.6960955858230591, -0.7632125020027161, -0.3329255282878876, 0.20782971382141113, 0.1109541654586792, -0.32087743282318115, 0.7793673276901245, -0.4270722270011902, 0.37965112924575806, 0.6679590940475464, 0.11492837220430374, -0.0019363071769475937, -0.13379579782485962, 0.1850641965866089, 0.3065098226070404, -0.9524044990539551, -0.2797791361808777, 1.371863603591919, 0.3152143359184265, 1.0302399396896362, 0.22925695776939392, 1.1189193725585938, 0.019824115559458733, 0.20359191298484802, -0.24705691635608673, 0.45163846015930176, -0.382724404335022, -0.8171234726905823, -0.25723791122436523, -0.4397202134132385, -0.7934223413467407, -0.6301665306091309, -0.4512070417404175, -0.31033408641815186, 0.6420761346817017, 0.5268605351448059, -0.6171745657920837, 0.2522710859775543, -0.6632537841796875, 1.0672695636749268, 0.05176496505737305, 0.21141290664672852, 0.0289369635283947, -0.6827445030212402, 0.07818160206079483, 0.31764650344848633, -0.02948438934981823, -0.2156727910041809, -0.269347220659256, 1.1583858728408813, -0.557034432888031, 1.1054903268814087, -0.416633665561676, 0.2698761224746704, 0.18219880759716034, -0.13674582540988922, 0.21342122554779053, 0.8272403478622437, -0.15675212442874908, 0.2121412754058838, 0.24558758735656738, -0.6115250587463379, -0.3664604127407074, 0.8913172483444214, -0.5995972752571106, 0.34786614775657654, -0.3112338185310364, -0.42339032888412476, 0.28734612464904785, 0.4259742200374603, 0.503704845905304, 0.8429311513900757, -0.3933507800102234, -0.06464828550815582, 1.0027661323547363, 0.20408742129802704, 0.3416668772697449, 0.2655065655708313, -0.5195807814598083, -0.5906529426574707, 0.9956851005554199, 0.3197522759437561, -0.1565338671207428, 0.3503008484840393, 0.534343957901001, -0.2085626870393753, -0.2851905822753906, -0.6975923180580139, 0.4107198715209961, -0.29741591215133667, -0.43029147386550903, -0.3955872654914856, -0.3578711748123169, -0.5730103254318237, -0.04177004098892212, -0.5006579160690308, -0.6238632202148438, -0.7667266130447388, -0.3380565047264099, 1.0337600708007812, 0.8607220649719238, -0.9416377544403076, 0.6376986503601074, -0.7374228239059448, 0.7250112295150757, 0.4234691858291626, 0.7824057936668396, -0.24379506707191467, -0.451009064912796, -0.12832531332969666, -0.023883238434791565, 0.21965083479881287, -0.4590444564819336, -0.34245821833610535, 0.12216367572546005, 0.4389941096305847, 0.2813355028629303, 0.09548331797122955, 0.657063901424408, -0.028099317103624344, 0.5510290861129761, 0.3381536602973938, -0.6148002743721008, 0.6975077390670776, -0.33090144395828247, 0.3779396414756775, 1.0878090858459473, 0.22201867401599884, -0.19474202394485474, 0.5439968705177307, -1.1572211980819702, -0.5144705772399902, 0.594998836517334, 0.09158042073249817, 0.15634317696094513, 0.3865886926651001, 0.5530135631561279, 0.08352161198854446, 0.4719181954860687, -0.8132637739181519, -1.0475945472717285, -0.16032114624977112, 0.12621727585792542, 0.10721788555383682, -0.8110418319702148, -0.25427955389022827, -0.5241525173187256, 0.7125416994094849, -0.10979131609201431, 0.5923405885696411, 0.020760109648108482, 0.2784634530544281, 0.06220804899930954, -0.1974286139011383, 0.42324894666671753, 0.20353835821151733, -0.571537971496582, -0.014011906459927559, 0.14325252175331116, -0.5040398240089417, -0.43547701835632324, 0.49179965257644653, -0.20748370885849, -0.15625762939453125, 0.5863842964172363, 0.5919941067695618, -0.4101737439632416, 0.13098040223121643, 0.41568371653556824, -0.2818605601787567, -0.4185246229171753, -0.5239782333374023, 0.034226495772600174, 0.21353957056999207, 0.18929898738861084, -0.32869964838027954, -0.013463836163282394, 0.3562684655189514, -0.4808766841888428, 0.3326334059238434, -0.12723709642887115, -0.8530275821685791, -0.4005771577358246, 0.14147421717643738, 0.5688763856887817, -0.48499682545661926, 1.0011463165283203, -0.4073764681816101, -0.3175978660583496, 0.7644497752189636, 0.2316373735666275, 0.8720717430114746, -0.17213644087314606, 0.3915388882160187, 0.4948726296424866, 0.31029799580574036, 0.38324499130249023, 0.8959733247756958, -0.18181240558624268, -0.45430684089660645, -0.06904798746109009, -0.24951283633708954, -0.20923840999603271, -0.16618934273719788, -0.9838479161262512, 0.2051890343427658, -0.8999207615852356, -0.4545651376247406, -0.0034963563084602356, 0.20147503912448883, -0.8562579154968262, 0.16482624411582947, 0.28005534410476685, 1.522331714630127, -0.9302194118499756, 0.9795399904251099, 0.8980250954627991, -0.3303969204425812, -0.7050670385360718, 0.020669154822826385, 0.27597466111183167, -0.5232908725738525, 0.22018228471279144, 0.003620237112045288, 0.22193987667560577, -0.2162940502166748, -0.8362823724746704, -0.799996018409729, 1.1284438371658325, 0.32270485162734985, -0.7234694957733154, 0.3956284523010254, -0.20748406648635864, 0.3747093379497528, -0.5750850439071655, 0.33418959379196167, 0.6815237402915955, 0.8819262981414795, 0.2779940366744995, -0.8377401828765869, -0.12204933166503906, -0.4720739722251892, -0.14005179703235626, 0.4453328847885132, -0.7207988500595093, 0.5458861589431763, 0.09076572954654694, 0.032506369054317474, 0.42481356859207153, 0.5691976547241211, 0.030767163261771202, 0.4746084213256836, 0.457014262676239, 0.7503798007965088, 0.782585859298706, -0.23941689729690552, 0.9291694164276123, 0.3048022389411926, 0.39931607246398926, 1.425742268562317, -0.028585117310285568, 0.2669260501861572, 0.5278948545455933, 0.13853397965431213, 0.5694218873977661, 0.46782469749450684, -0.41289597749710083, 0.45591938495635986, 0.4198465943336487, -0.008568905293941498, -0.35065338015556335, -0.5007497668266296, -0.7438931465148926, -0.07412408292293549, 0.4517974555492401, -0.3246017098426819, -0.15628476440906525, -0.11648517102003098, -0.084703229367733, -0.29624730348587036, -0.5770127773284912, 0.8642610907554626, 0.34208619594573975, 0.18481196463108063, -0.013767555356025696, -0.14463484287261963, 0.36389443278312683, -0.5598592162132263, -0.403417706489563, -0.14216282963752747, 0.07140936702489853, -0.7210944294929504, -0.918825089931488, 0.7726716995239258, -0.30614960193634033, -0.5653219819068909, 0.04838840663433075, 0.6451295018196106, -0.13356366753578186, -0.8779268264770508, 0.44103676080703735, 0.26906585693359375, 0.2651941776275635, 0.10139041393995285, -1.3013968467712402, 0.30450719594955444, -0.15233641862869263, 0.17062200605869293, 0.25636011362075806, 0.1842331886291504, 0.20702514052391052, 0.5094588994979858, 0.5650601387023926, -0.09729130566120148, -0.20047643780708313, 0.4551900625228882, 0.9283818006515503, -0.5264923572540283, -0.3494882583618164, -0.6204348802566528, 0.522518515586853, -0.38088035583496094, -0.6680435538291931, 0.704406201839447, 0.9368872046470642, 0.8085118532180786, -0.10432769358158112, 0.6120001673698425, -0.5762248039245605, 0.7230637073516846, -0.3780308961868286, 0.5236448645591736, -0.5369643568992615, -0.12258651852607727, -0.22483724355697632, -0.9683218598365784, -0.8026924133300781, 0.6235544681549072, -0.15799468755722046, -0.02928554266691208, 0.5494959950447083, 1.1444181203842163, -0.40429627895355225, 0.3799836039543152, 0.0778060108423233, 0.14835748076438904, -0.09449616074562073, 0.5254764556884766, 0.4699958562850952, -0.7536790370941162, 0.2954865097999573, -0.43753814697265625, -0.6409039497375488, -0.15931832790374756, -1.2615516185760498, -1.2308260202407837, -0.20055635273456573, -0.8187248706817627, -0.4892740845680237, 0.013375723734498024, 0.8303744792938232, 1.1987645626068115, -1.1595124006271362, -0.46081113815307617, -0.11668416112661362, 0.4329219460487366, 0.07649583369493484, -0.07453727722167969, 0.6247886419296265, 0.682259738445282, -0.4686093330383301, -0.03809712827205658, 0.08888401091098785, 0.3398723304271698, 0.0740257129073143, -0.02553626522421837, 0.009576741605997086, -0.15321362018585205, 0.0824517160654068, 0.5184101462364197, -0.14806008338928223, -0.05595185235142708, -0.47960296273231506, -0.006092792376875877, -0.14410369098186493, 0.9929873943328857, -0.43162381649017334, -0.008896457962691784, 0.6422485113143921, 0.14474594593048096, 0.5286427736282349, -0.010413593612611294, 0.4020465910434723, -0.5881969332695007, 0.08440658450126648, -0.09704604744911194, 0.2940550446510315, -0.01594385877251625, -0.263787180185318, 0.8807482719421387, 0.4134143590927124, -0.5354119539260864, -0.4587879478931427, 0.29736411571502686, -1.1639167070388794, 0.5193155407905579, 0.8562752604484558, 0.0835004597902298, -0.4515465497970581, -0.21214529871940613, -0.28032180666923523, -0.002069714944809675, -0.992713451385498, -0.18702927231788635, 0.0871095210313797, -0.034793559461832047, -0.535447895526886, -0.37676072120666504, 0.5019592046737671, -0.31466174125671387, -0.8897628784179688, -0.03160432353615761, 0.30809420347213745, 0.18686732649803162, 0.3373733460903168, 0.7130141258239746, -0.13312597572803497, 0.2827952206134796, 0.45734918117523193, 0.25854167342185974, -0.28850215673446655, -0.8234511613845825, -0.3663513958454132, -0.08240704238414764, -0.2562289535999298, -0.5400151610374451 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
shunk031/livedoor-news-corpus
shunk031
2023-10-28T05:40:17Z
217
3
null
[ "task_categories:text-classification", "task_ids:multi-class-classification", "language_creators:found", "multilinguality:monolingual", "language:ja", "license:cc-by-nd-4.0", "region:us" ]
2023-10-28T05:40:17Z
2023-01-18T08:30:24.000Z
2023-01-18T08:30:24
--- annotations_creators: [] language: - ja language_creators: - found license: - cc-by-nd-4.0 multilinguality: - monolingual pretty_name: livedoor-news-corpus size_categories: [] source_datasets: [] tags: [] task_categories: - text-classification task_ids: - multi-class-classification --- # Dataset Card for Livedoor News Corpus [![CI](https://github.com/shunk031/huggingface-datasets_livedoor-news-corpus/actions/workflows/ci.yaml/badge.svg)](https://github.com/shunk031/huggingface-datasets_livedoor-news-corpus/actions/workflows/ci.yaml) ![code-example](https://github.com/shunk031/huggingface-datasets_livedoor-news-corpus/assets/11523725/42f62297-bba6-4ba1-84dc-40623bb022f2) ## 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://www.rondhuit.com/download.html#ldcc - **Repository:** https://github.com/shunk031/huggingface-datasets_livedoor-news-corpus ### Dataset Summary > 本コーパスは、NHN Japan 株式会社が運営する「livedoor ニュース」のうち、下記のクリエイティブ・コモンズライセンスが適用されるニュース記事を収集し、可能な限り HTML タグを取り除いて作成したものです。 ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances ```python from datasets import load_dataset dataset = load_dataset( "shunk031/livedoor-news-corpus", train_ratio=0.8, val_ratio=0.1, test_ratio=0.1, random_state=42, shuffle=True, ) print(dataset) # DatasetDict({ # train: Dataset({ # features: ['url', 'date', 'title', 'content', 'category'], # num_rows: 5894 # }) # validation: Dataset({ # features: ['url', 'date', 'title', 'content', 'category'], # num_rows: 737 # }) # test: Dataset({ # features: ['url', 'date', 'title', 'content', 'category'], # num_rows: 736 # }) # }) ``` ### 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 > 各記事ファイルにはクリエイティブ・コモンズライセンス「表示 – 改変禁止」が適用されます。 クレジット表示についてはニュースカテゴリにより異なるため、ダウンロードしたファイルを展開したサブディレクトリにあるそれぞれの LICENSE.txt をご覧ください。 livedoor は NHN Japan 株式会社の登録商標です。 ### Citation Information [More Information Needed] ### Contributions Thanks to [RONDHUIT Co., Ltd.](https://www.rondhuit.com/) for creating this dataset.
[ -0.49031171202659607, -0.6398342251777649, 0.12429686635732651, 0.3801238238811493, -0.3377273976802826, 0.10273364931344986, -0.39409005641937256, -0.27249675989151, 0.7440299391746521, 0.3876463770866394, -0.6752325892448425, -1.1295379400253296, -0.6032503247261047, 0.06407414376735687, -0.256474107503891, 1.1611194610595703, -0.13025036454200745, -0.2494945377111435, -0.1626249998807907, -0.3050523102283478, -0.31015077233314514, -0.3557438254356384, -0.3684823215007782, -0.09905614703893661, 0.4351060688495636, 0.4571484327316284, 0.7374821305274963, 0.6627861857414246, 0.5103848576545715, 0.2200995534658432, -0.07696133852005005, 0.047547485679388046, -0.4311998188495636, -0.08023960143327713, 0.1314222514629364, -0.19811899960041046, -0.5963985919952393, 0.022402159869670868, 0.6321008205413818, 0.8687945604324341, -0.06896858662366867, 0.5400912761688232, 0.20874501764774323, 0.6800262928009033, -0.4381776452064514, 0.46275582909584045, -0.21619871258735657, 0.008383278734982014, -0.44157207012176514, -0.03489794209599495, 0.10588299483060837, -0.5507342219352722, -0.22909753024578094, -0.7972390651702881, 0.08605914562940598, 0.006384269800037146, 1.1534442901611328, 0.17097128927707672, -0.07315800338983536, -0.13180747628211975, -0.3113645911216736, 0.672208309173584, -0.7681030631065369, 0.24142159521579742, 0.6500299572944641, 0.1504596471786499, -0.007113433443009853, -0.8697040677070618, -0.6489406228065491, 0.20182035863399506, -0.2149471491575241, 0.3637116253376007, -0.08407550305128098, -0.3921590745449066, 0.3999011516571045, 0.4063740372657776, -0.6244226098060608, -0.19923321902751923, -0.6561666131019592, -0.2719537615776062, 0.8260517120361328, 0.1318429559469223, 0.29829269647598267, -0.7601854205131531, -0.12661398947238922, -0.3162194788455963, -0.37745141983032227, 0.07310472428798676, 0.4294668138027191, 0.4244353771209717, -0.7183537483215332, 0.6508409976959229, -0.35614386200904846, 0.4247124493122101, -0.26196178793907166, -0.1470833718776703, 0.7818789482116699, -0.5786884427070618, -0.03903033584356308, 0.0250542014837265, 0.8708040714263916, 0.5537084341049194, 0.13615424931049347, 0.2359093874692917, -0.06481150537729263, 0.08606874942779541, 0.03725909814238548, -0.7375312447547913, -0.2477061152458191, 0.5996881127357483, -0.6599140167236328, -0.46603164076805115, 0.1086132675409317, -1.2464587688446045, -0.2254924774169922, -0.24832941591739655, 0.12406157702207565, -0.2081589698791504, -0.5849871635437012, 0.020762071013450623, -0.17415840923786163, 0.20493613183498383, 0.21546514332294464, -0.5966785550117493, 0.1284736543893814, 0.6545132994651794, 0.9138957262039185, -0.1469203680753708, -0.41302669048309326, -0.23672501742839813, 0.07688640058040619, -0.12904968857765198, 0.7074422240257263, -0.3887054920196533, -0.43616020679473877, 0.29055339097976685, 0.26433679461479187, -0.14009059965610504, -0.3585141897201538, 0.823176383972168, -0.26422715187072754, 0.2982642948627472, -0.3985748887062073, -0.391539067029953, -0.03192469850182533, 0.33372440934181213, -0.7780933380126953, 1.4913053512573242, 0.30082324147224426, -1.1076703071594238, 0.49202778935432434, -0.8486663103103638, -0.4902198910713196, 0.08935265243053436, -0.34633591771125793, -0.6218571066856384, -0.47808489203453064, 0.26305001974105835, 0.7789463996887207, -0.061128709465265274, 0.3340075612068176, -0.5280177593231201, -0.19258828461170197, 0.14011283218860626, -0.048089634627103806, 1.2311991453170776, 0.29504525661468506, -0.26257869601249695, 0.11325810104608536, -1.1230204105377197, -0.23585398495197296, 0.33964991569519043, -0.43725141882896423, -0.2805175185203552, -0.23827189207077026, 0.36725977063179016, 0.17625872790813446, 0.3448227643966675, -0.553377628326416, 0.18266968429088593, -0.06370891630649567, 0.3841360807418823, 0.6821064352989197, 0.16848517954349518, 0.27288883924484253, -0.5070579051971436, 0.4715263545513153, 0.16610784828662872, 0.31370148062705994, -0.047595683485269547, -0.6344038248062134, -0.5768974423408508, -0.3478115200996399, 0.3814924359321594, 0.5744494795799255, -0.629720151424408, 0.6568913459777832, -0.6772072315216064, -0.6698240041732788, -0.7333613038063049, 0.05466563254594803, 0.12382970750331879, 0.4975733458995819, 0.3313230574131012, -0.23459428548812866, -0.8280360102653503, -0.5925865173339844, 0.02896272949874401, -0.15736164152622223, 0.1300443708896637, 0.42337197065353394, 0.8226033449172974, -0.3265766501426697, 0.9066252708435059, -0.6199343800544739, -0.2341742366552353, -0.3135375678539276, 0.06980890035629272, 0.5384420156478882, 0.5752547383308411, 0.5037751197814941, -1.0362837314605713, -0.39141184091567993, -0.30203673243522644, -0.9080921411514282, -0.14482749998569489, -0.06161456182599068, -0.3048841655254364, 0.2866688072681427, 0.37665465474128723, -0.5606492757797241, 0.7187995314598083, 0.4849861264228821, -0.4625767171382904, 0.5087099075317383, 0.09269258379936218, 0.1730089783668518, -1.4656691551208496, 0.2650875151157379, 0.09029144048690796, -0.059750862419605255, -0.4111338257789612, -0.2479349672794342, -0.012649263255298138, -0.07832270115613937, -0.44091734290122986, 0.7714498043060303, -0.30723807215690613, 0.024388762190937996, 0.12420064210891724, 0.274687796831131, 0.05508461967110634, 0.6412715911865234, 0.12762999534606934, 0.5465676784515381, 0.5355680584907532, -0.639001727104187, 0.3227827250957489, 0.5889424681663513, -0.49142390489578247, 0.5007933378219604, -0.7341664433479309, -0.38650619983673096, -0.1499244123697281, 0.35495322942733765, -1.0073562860488892, -0.5811069011688232, 0.5135164856910706, -0.7900260090827942, 0.17990146577358246, -0.2091701626777649, -0.7168055772781372, -0.432424396276474, -0.6578935980796814, 0.1327231377363205, 0.492780476808548, -0.4117426872253418, 0.41252702474594116, 0.6641674637794495, 0.01731555350124836, -0.552958607673645, -0.9013453722000122, -0.21480531990528107, -0.2905144989490509, -0.6825551390647888, 0.42314550280570984, -0.15830129384994507, -0.1202743798494339, 0.22060175240039825, 0.16639123857021332, 0.11237790435552597, 0.05057529732584953, 0.4500274658203125, 0.41465795040130615, -0.003956797067075968, -0.08503566682338715, -0.058689188212156296, -0.06697093695402145, 0.1327357143163681, 0.05007078871130943, 0.608504593372345, 0.05100313574075699, -0.34196141362190247, -0.3620035648345947, 0.2641000747680664, 0.46285203099250793, -0.10435906797647476, 0.8792008757591248, 1.145222544670105, -0.5287594795227051, 0.12325835973024368, -0.46535298228263855, -0.06660757958889008, -0.3770900070667267, 0.2237434983253479, -0.1517631858587265, -0.773497998714447, 0.9519153237342834, 0.029051370918750763, 0.2479390799999237, 0.8010150790214539, 0.6211260557174683, -0.07645858079195023, 0.6953151822090149, 0.23688121140003204, -0.30634427070617676, 0.48954132199287415, -0.5726417899131775, -0.040974900126457214, -0.9024537801742554, -0.40111470222473145, -0.6415969133377075, -0.2713799476623535, -0.9820107817649841, -0.2604469954967499, 0.18737100064754486, -0.034992534667253494, -0.39929914474487305, 0.43830710649490356, -0.7029781341552734, 0.06654487550258636, 0.6734129786491394, 0.1707925647497177, 0.013149215839803219, 0.05077788606286049, -0.19933950901031494, 0.028926538303494453, -0.6975018382072449, -0.4219886362552643, 1.2479822635650635, 0.5188242793083191, 0.5992918014526367, 0.047723088413476944, 0.897875964641571, 0.3991812467575073, 0.10687709599733353, -0.29959002137184143, 0.5207309126853943, -0.02668370120227337, -0.7145336270332336, -0.28146761655807495, -0.31433263421058655, -1.0131747722625732, -0.07651887834072113, -0.3388839662075043, -0.7524703741073608, 0.4799812436103821, -0.19155511260032654, -0.32381510734558105, 0.3362804055213928, -0.5481439232826233, 0.9615244269371033, 0.057720016688108444, -0.5547799468040466, 0.054527390748262405, -0.8562502861022949, 0.21509334444999695, 0.08789725601673126, 0.6066635847091675, -0.28848591446876526, 0.01125907339155674, 1.1725828647613525, -0.5399243235588074, 1.21567964553833, -0.2920052111148834, 0.17393256723880768, 0.4233112931251526, -0.3006768524646759, 0.49048227071762085, 0.3624283969402313, -0.12118005752563477, 0.47615760564804077, 0.1799723207950592, -0.5494003891944885, -0.34810638427734375, 0.6767393946647644, -0.9818975329399109, -0.1876651495695114, -0.5359767079353333, -0.27690544724464417, 0.10895214229822159, 0.3019469082355499, 0.3416083753108978, 0.3950437605381012, -0.06385044753551483, 0.3654654026031494, 0.5979037880897522, -0.2667689919471741, 0.40956273674964905, 0.21541883051395416, -0.3097758889198303, -0.7550538182258606, 0.8176118731498718, 0.25658589601516724, -0.08833042532205582, 0.32988372445106506, 0.09991481900215149, -0.36417049169540405, -0.3637635111808777, -0.507239580154419, 0.27024006843566895, -0.6755807399749756, -0.26493456959724426, -0.7910143733024597, -0.3663332760334015, -0.8030995726585388, -0.13465115427970886, -0.21538175642490387, -0.5623899102210999, -0.49433714151382446, -0.2523480951786041, 0.6882773637771606, 0.34533071517944336, -0.5268401503562927, 0.07749299705028534, -0.7470098733901978, 0.3985707759857178, -0.02861703559756279, 0.4553143084049225, 0.010273187421262264, -0.5243296027183533, -0.3576698899269104, 0.11553452163934708, -0.1665036827325821, -0.8395746946334839, 0.4826086461544037, -0.17950135469436646, 0.714209258556366, 0.13822044432163239, 0.21138104796409607, 0.5986388325691223, -0.05224429816007614, 1.1279077529907227, -0.05561693385243416, -0.5464809536933899, 0.7609553337097168, -0.6295331716537476, 0.28590211272239685, 0.8267064690589905, 0.5588919520378113, -0.7415109276771545, -0.14715243875980377, -0.9407811164855957, -1.1392041444778442, 0.6559634804725647, 0.3184823989868164, 0.20809075236320496, -0.18231266736984253, 0.27533793449401855, -0.004813969135284424, 0.22279183566570282, -0.8369316458702087, -0.7081921100616455, -0.40384793281555176, -0.3264521062374115, 0.2859841585159302, -0.1795860379934311, -0.21964770555496216, -0.5313413143157959, 0.9218101501464844, 0.11157296597957611, 0.36175763607025146, 0.35158535838127136, 0.028259798884391785, -0.022971564903855324, 0.13674046099185944, 0.47986340522766113, 0.5793058276176453, -0.48683908581733704, -0.11558616161346436, 0.02093796245753765, -0.7874879240989685, -0.37553855776786804, 0.3156432807445526, -0.31058064103126526, 0.11104711145162582, 0.49662402272224426, 0.8478088974952698, 0.26304715871810913, -0.44638463854789734, 0.6960296630859375, -0.08866636455059052, -0.3019324839115143, -0.7208925485610962, -0.025166938081383705, 0.07278185337781906, 0.2147836834192276, 0.3767319619655609, -0.14628800749778748, -0.057723402976989746, -0.4967208802700043, 0.29982343316078186, 0.020906664431095123, -0.28485405445098877, -0.20513346791267395, 0.7497116923332214, 0.1264333873987198, -0.11202104389667511, 0.6380512714385986, -0.292867511510849, -0.4329361617565155, 0.7203688621520996, 0.2354947179555893, 0.7775771617889404, 0.23728398978710175, 0.3244548439979553, 0.8659289479255676, 0.20668147504329681, -0.01512546744197607, 0.6067465543746948, -0.11853261291980743, -0.8619784116744995, -0.22882267832756042, -0.8225299119949341, -0.21614590287208557, 0.2645803689956665, -0.9532691836357117, 0.427891343832016, -0.4717629551887512, -0.14637455344200134, 0.06788525730371475, 0.35878369212150574, -0.8664233088493347, 0.17870782315731049, 0.026508910581469536, 1.1385958194732666, -1.052596926689148, 0.6607421636581421, 0.7931564450263977, -0.8891590237617493, -0.8139578700065613, -0.06007176637649536, 0.08954597264528275, -0.8305067420005798, 0.39413899183273315, 0.00613592192530632, 0.5296785831451416, -0.05950927734375, -0.7271170616149902, -0.7959319949150085, 1.4687705039978027, -0.08687515556812286, -0.2311251312494278, 0.24448013305664062, 0.2403191179037094, 0.49625006318092346, -0.3810637295246124, 0.3070746958255768, 0.5159556865692139, 0.7715668678283691, 0.09702226519584656, -0.6086993217468262, 0.20527160167694092, -0.6248096823692322, -0.13381557166576385, 0.018227556720376015, -0.8778855204582214, 0.6196900010108948, 0.023814702406525612, -0.10042820870876312, -0.31300804018974304, 0.8488643169403076, 0.5547300577163696, 0.6649458408355713, 0.3547072410583496, 0.7900713682174683, 0.7348030805587769, -0.14348995685577393, 1.148494839668274, -0.35466712713241577, 0.5229122042655945, 0.9678686857223511, 0.004683298524469137, 0.8205767273902893, 0.26960426568984985, -0.46354159712791443, 0.6290621161460876, 0.9393207430839539, -0.2435295283794403, 0.498646080493927, 0.04533892124891281, -0.02665764093399048, -0.021309396252036095, -0.3089269697666168, -0.5334469079971313, 0.3864227533340454, 0.36780253052711487, -0.29658812284469604, -0.11961977183818817, -0.032761991024017334, 0.48195114731788635, 0.05808659642934799, -0.2939499020576477, 0.7130315899848938, -0.09072719514369965, -0.46517518162727356, 0.5281025171279907, -0.12484119087457657, 0.8276752233505249, -0.5369578003883362, -0.04204610735177994, -0.3420011103153229, -0.2124590426683426, -0.5994580388069153, -1.1268997192382812, 0.4534793496131897, -0.031908534467220306, -0.30737605690956116, -0.18794499337673187, 0.7841730713844299, -0.3692885637283325, -0.6958049535751343, 0.21179421246051788, 0.4600169062614441, 0.34345880150794983, 0.22392235696315765, -0.9753299355506897, 0.46393752098083496, 0.1702655553817749, -0.4942352771759033, 0.2935873866081238, 0.48535647988319397, -0.09340111166238785, 0.3801683783531189, 0.8433630466461182, 0.26580381393432617, 0.023382481187582016, 0.3475775420665741, 1.0543113946914673, -0.7638344168663025, -0.4843277037143707, -0.6279876828193665, 0.744845449924469, -0.4321402907371521, -0.5021517872810364, 0.7444968223571777, 0.8743476867675781, 1.086800217628479, 0.09464564174413681, 1.0709182024002075, -0.47425588965415955, 0.8583502769470215, -0.33404454588890076, 0.9536604881286621, -0.6722927689552307, 0.14737600088119507, -0.44518256187438965, -0.7172014713287354, -0.4186260402202606, 0.605158269405365, -0.2954856753349304, 0.20590883493423462, 0.5406438708305359, 0.917483925819397, -0.039839327335357666, 0.14376956224441528, -0.021337049081921577, 0.384983628988266, 0.14542256295681, 0.248692587018013, 0.4540069103240967, -0.6807650923728943, 0.48641255497932434, -0.716699481010437, -0.21148565411567688, -0.2252826988697052, -0.9435857534408569, -0.9300100207328796, -0.9635165333747864, -0.6052377223968506, -0.7036533951759338, -0.08555074781179428, 0.959819495677948, 0.6234177947044373, -0.9695661664009094, -0.1047125905752182, 0.09670809656381607, 0.21948276460170746, -0.09160148352384567, -0.3450273275375366, 0.83062344789505, -0.006065679248422384, -0.6479963064193726, -0.16426348686218262, 0.015469939447939396, -0.1278410702943802, -0.15420502424240112, -0.12073168903589249, -0.43313783407211304, -0.2547927796840668, 0.4830467402935028, 0.42085328698158264, -0.48335886001586914, -0.23485054075717926, -0.049001842737197876, -0.12019055336713791, 0.12678369879722595, 0.38210946321487427, -0.5732657313346863, 0.12749481201171875, 0.7176574468612671, 0.5885606408119202, 0.6166746020317078, -0.023010896518826485, -0.04210931062698364, -0.7732062935829163, 0.12964345514774323, -0.016307981684803963, 0.4607992172241211, 0.39385485649108887, -0.5272236466407776, 0.8860839605331421, 0.5120378136634827, -0.5310690402984619, -0.839142382144928, -0.3307674825191498, -1.3947114944458008, -0.15067028999328613, 1.4223741292953491, 0.019915662705898285, -0.5680278539657593, -0.17615433037281036, -0.0966276302933693, 0.5552295446395874, -0.7216529846191406, 0.6666485667228699, 0.8040810823440552, 0.10367909073829651, -0.09163877367973328, -0.7744272947311401, 0.4424380958080292, -0.01880696788430214, -1.0226739645004272, 0.015678085386753082, 0.351325660943985, 0.26641276478767395, 0.2334359735250473, 0.8894392251968384, -0.31019237637519836, 0.15661561489105225, 0.041236426681280136, 0.21228152513504028, -0.08883187174797058, -0.019720003008842468, -0.1598411649465561, -0.0035104649141430855, -0.3457464277744293, -0.3751322627067566 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
HuggingFaceH4/stack-exchange-preferences
HuggingFaceH4
2023-03-08T03:37:53Z
217
84
null
[ "task_categories:question-answering", "size_categories:10M<n<100M", "language:en", "license:cc-by-sa-4.0", "RLHF", "preferences", "human-feedback", "Stack Exchange", "arxiv:2112.00861", "region:us" ]
2023-03-08T03:37:53Z
2023-02-11T03:24:28.000Z
2023-02-11T03:24:28
--- license: cc-by-sa-4.0 task_categories: - question-answering language: - en pretty_name: H4 Stack Exchange Preferences Dataset tags: - RLHF - preferences - human-feedback - Stack Exchange download_size: 22132072448 size_categories: - 10M<n<100M --- # Dataset Card for H4 Stack Exchange Preferences Dataset ## Dataset Description - **Homepage:** https://archive.org/details/stackexchange - **Repository:** (private for now) https://github.com/huggingface/h4 - **Point of Contact:** Nathan Lambert, nathan@huggingface.co - **Size of downloaded dataset:** 22.13 GB - **Number of instructions:** 10,741,532 ### Dataset Summary This dataset contains questions and answers from the [Stack Overflow Data Dump](https://archive.org/details/stackexchange) for the purpose of **preference model training**. Importantly, the questions have been filtered to fit the following criteria for preference models (following closely from [Askell et al. 2021](https://arxiv.org/abs/2112.00861)): *have >=2 answers*. This data could also be used for instruction fine-tuning and language model training. The questions are grouped with answers that are assigned a score corresponding to the Anthropic paper: ``` score = log2 (1 + upvotes) rounded to the nearest integer, plus 1 if the answer was accepted by the questioner (we assign a score of −1 if the number of upvotes is negative). ``` Some important notes when using this dataset for preference model pretraining (PMP), which can be ignored for other uses: * the data will likely need to be filtered more due to matching scores. * see section 4.1 of Askel et al 2021 for instructions on using each pair of samples twice via the following `binarization` (for better pre-training initialization): ``` Subsequently, we created a binary dataset by applying a ‘binarization’ procedure to the ranked dataset. That is, for every ranked pair A > B, we transform it into two independent binary comparisons: GOOD:A > BAD:A BAD:B > GOOD:B ``` To see all the stackexchanges used in this data, please see [this file](https://huggingface.co/datasets/HuggingFaceH4/pmp-stack-exchange/blob/main/stack_exchanges.json). Unfortunately, sharing the binarized data directly without metadata violates the license, so we have shared a script for binarization. ### Using the data Here is a script from our internal tooling used to create a binarized dataset: ``` # Copyright 2023 The HuggingFace Team. All rights reserved. # # 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. import random from argparse import ArgumentParser from pathlib import Path import numpy as np from datasets import Dataset, concatenate_datasets, load_dataset from h4.data.utils import save_dataset_shards H4_DIR = Path(__file__).resolve().parents[3] DATA_DIR = H4_DIR / "data" if __name__ == "__main__": parser = ArgumentParser() parser.add_argument("--debug", action="store_true", help="Added print statements / limit data size for debugging") parser.add_argument( "--output_dir", default=f"{DATA_DIR}/pmp-binarized", type=str, help="Where to save the processed dataset", ) parser.add_argument( "--exchange_name", type=str, default=None, help="Optional argument to specify a specific subsection of the dataset", ) parser.add_argument( "--binary_score", type=int, default=8, help="Score assigned to binarized pairs for preference data." ) parser.add_argument( "--stream_data", action="store_true", help="Optionally stream data, which can be useful with weaker computers" ) parser.set_defaults(debug=False, stream_data=False) # default will process full dataset args = parser.parse_args() specific_exchange = args.exchange_name stream_dataset = args.stream_data binary_score = args.binary_score if specific_exchange: data_dir = "data/" + args.exchange_name else: data_dir = None if args.debug: data_len_limit = 10000 else: data_len_limit = np.inf dataset = load_dataset( "HuggingFaceH4/pmp-stack-exchange", data_dir=data_dir, split="train", streaming=stream_dataset, ) pmp_data = [] for i, d in enumerate(iter(dataset)): # check debug limit, quit if in debug mode (don't save) if i > data_len_limit: print("Early exit for debug mode!") print(pmp_data) break question = d["question"] answers = d["answers"] num_answers = len(answers) answer_scores = [a["pm_score"] for a in answers] if len(np.unique(answer_scores)) < 2: print(f"PM Scores are {answer_scores}, skipping this question {i}") else: # Sample 2 unique scores for binarization dif_scores = False while not dif_scores: # print("infinite loop...?") two_answers = random.sample(answers, 2) if two_answers[0]["pm_score"] != two_answers[1]["pm_score"]: dif_scores = True answer_0 = two_answers[0] answer_1 = two_answers[1] text_0 = "Question: " + question + "\n" + "Answer: " + answer_0["text"] text_1 = "Question: " + question + "\n" + "Answer: " + answer_1["text"] score_0 = binary_score score_1 = binary_score pmp_data.append({"context": text_0, "score": score_0}) pmp_data.append({"context": text_1, "score": score_1}) # Save binarized data sublist_len = 100000 print(f"Dataset length is {len(pmp_data)}") # bypass known issue in arrow https://issues.apache.org/jira/browse/ARROW-17137 print(f"Processed dataset length > {sublist_len}, processing to HF dataset in chunks") chunks = [pmp_data[x : x + sublist_len] for x in range(0, len(pmp_data), sublist_len)] ds_chunks = [Dataset.from_list(ch) for ch in chunks] ds = concatenate_datasets(ds_chunks) save_dataset_shards(ds, args.output_dir, subset="stackexchange", shard_size="100MB") ``` ### Languages This is intended to be English only, thought other languages may be present. Some Stack Exchanges that are omitted include: ``` spanish: es.meta.stackoverflow.com, es.stackoverflow.com japanese: ja.meta.stackoverflow.com, ja.stackoverflow.com portugese: pt.stackoverflow.com, pt.meta.stackoverflow.com russian: ru.stackoverflow, ru.meta.stackoverflow ``` ### Licensing Information License: https://creativecommons.org/licenses/by-sa/4.0/ The cc-by-sa 4.0 licensing, while intentionally permissive, does require attribution: Attribution — You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). Specifically the attribution requirements are as follows: 1. Visually display or otherwise indicate the source of the content as coming from the Stack Exchange Network. This requirement is satisfied with a discreet text blurb, or some other unobtrusive but clear visual indication. 2. Ensure that any Internet use of the content includes a hyperlink directly to the original question on the source site on the Network (e.g., http://stackoverflow.com/questions/12345) 3. Visually display or otherwise clearly indicate the author names for every question and answer used 4. Ensure that any Internet use of the content includes a hyperlink for each author name directly back to his or her user profile page on the source site on the Network (e.g., http://stackoverflow.com/users/12345/username), directly to the Stack Exchange domain, in standard HTML (i.e. not through a Tinyurl or other such indirect hyperlink, form of obfuscation or redirection), without any “nofollow” command or any other such means of avoiding detection by search engines, and visible even with JavaScript disabled. For more information, see the Stack Exchange Terms of Service. ### Citation Information ``` @online{h4stackexchange, author = {Lambert, Nathan and Tunstall, Lewis and Rajani, Nazneen and Thrush, Tristan}, title = {HuggingFace H4 Stack Exchange Preference Dataset}, year = 2023, url = {https://huggingface.co/datasets/HuggingFaceH4/stack-exchange-preferences}, } ```
[ -0.6088443994522095, -0.7184345722198486, 0.2571633458137512, 0.3459832966327667, -0.40609273314476013, -0.18095852434635162, -0.1502496600151062, -0.4154054522514343, 0.3394407033920288, 0.5317427515983582, -0.4983968138694763, -0.5899335741996765, -0.4560425281524658, 0.35242730379104614, -0.14373879134655, 1.257393479347229, -0.0957404300570488, -0.23813842236995697, -0.438009649515152, -0.14573609828948975, -0.26683977246284485, -0.5668941140174866, -0.5666084885597229, -0.1023837998509407, 0.140075221657753, 0.5197802782058716, 0.6204020977020264, 0.7620583772659302, 0.5119227170944214, 0.3438987731933594, 0.0383320078253746, -0.08898714184761047, -0.3903551995754242, -0.01441004779189825, -0.11190139502286911, -0.2956555187702179, -0.4973275661468506, 0.11472795158624649, 0.7701757550239563, 0.6380302906036377, -0.04259787127375603, 0.4303252100944519, -0.037656642496585846, 0.6629055142402649, -0.4064473807811737, 0.3194327652454376, -0.42569461464881897, -0.07160500437021255, -0.20068353414535522, -0.24752262234687805, -0.12117397785186768, -0.4845952093601227, -0.03987761214375496, -0.5593774914741516, 0.05090950056910515, 0.33866268396377563, 1.0326368808746338, 0.0785994604229927, -0.25025615096092224, -0.18246066570281982, -0.2500511407852173, 0.9214221835136414, -0.805633008480072, 0.021106891334056854, 0.6603908538818359, -0.03677036613225937, -0.05799850448966026, -0.3164001703262329, -0.6293848752975464, 0.2474299520254135, -0.18161983788013458, 0.09944251924753189, -0.3419761061668396, -0.17132554948329926, 0.38728564977645874, 0.4279852509498596, -0.6211235523223877, -0.18386898934841156, -0.6102739572525024, -0.27881336212158203, 0.8177151083946228, 0.16661329567432404, 0.03961862251162529, -0.6899739503860474, -0.3936183452606201, -0.38679027557373047, -0.34891241788864136, 0.3535473346710205, 0.5841324925422668, 0.1642928570508957, -0.5044351816177368, 0.6118171811103821, -0.2044176608324051, 0.6638351678848267, 0.29121163487434387, -0.07997864484786987, 0.665822446346283, -0.5316358804702759, -0.11268579959869385, 0.05557664483785629, 0.9583244323730469, 0.6533243060112, -0.1330656111240387, 0.20313704013824463, 0.023913083598017693, -0.25968632102012634, -0.17212222516536713, -0.9877777695655823, -0.20253907144069672, 0.6169841885566711, -0.5348026752471924, -0.31028687953948975, -0.0015415046364068985, -0.8584014773368835, -0.11488663405179977, -0.06932825595140457, 0.3742915689945221, -0.3075166940689087, -0.35276755690574646, 0.1952008306980133, -0.4507632255554199, 0.1834145337343216, -0.01215307042002678, -0.9314927458763123, 0.40228453278541565, 0.5278482437133789, 0.7375184893608093, -0.05333086848258972, -0.39560285210609436, -0.4450479745864868, -0.16685912013053894, -0.25209519267082214, 0.8150049448013306, -0.42976534366607666, -0.2049839347600937, -0.39371806383132935, 0.29078906774520874, -0.08270993828773499, -0.5106987953186035, 0.4324367642402649, -0.40864619612693787, 0.37494415044784546, -0.4023726284503937, -0.46122631430625916, -0.16283713281154633, 0.4079674482345581, -0.5514999032020569, 0.9943554401397705, 0.39535748958587646, -0.9244836568832397, 0.04540092870593071, -0.5001407861709595, -0.17756706476211548, -0.06791985034942627, -0.10990355163812637, -0.5950972437858582, -0.3369747996330261, 0.2097112238407135, 0.506317675113678, -0.19698642194271088, 0.08876355737447739, -0.43543529510498047, -0.33635255694389343, 0.33411115407943726, -0.1890401691198349, 1.1202173233032227, 0.02454826794564724, -0.3328554928302765, 0.022665228694677353, -0.7457128763198853, 0.11034216731786728, 0.2545274794101715, -0.47701403498649597, -0.27696892619132996, -0.1860622763633728, -0.018827538937330246, 0.24767641723155975, 0.4629899859428406, -0.6256173849105835, 0.17586657404899597, -0.4094374477863312, 0.39517736434936523, 0.9489035606384277, 0.19338829815387726, 0.2866501212120056, -0.5321493744850159, 0.5314193964004517, 0.2198052555322647, 0.20330238342285156, -0.0364861935377121, -0.5789024829864502, -0.4672001600265503, 0.028722332790493965, 0.1327778398990631, 0.5589219331741333, -0.5055229663848877, 0.7756706476211548, -0.2022792249917984, -0.5080929398536682, -0.5390540361404419, 0.15137086808681488, 0.39492514729499817, 0.6262874007225037, 0.39961567521095276, -0.3965469300746918, -0.6535460352897644, -0.8173078894615173, 0.1608934998512268, -0.21671432256698608, 0.0870821550488472, 0.7062768936157227, 0.8087267279624939, -0.21554850041866302, 0.8849921822547913, -0.638212263584137, -0.07606957852840424, 0.004217821639031172, 0.09722072631120682, 0.5861269235610962, 0.7811213731765747, 0.525745689868927, -0.7909711003303528, -0.5364055037498474, -0.19397713243961334, -0.6639962792396545, -0.1531130075454712, -0.03989148885011673, -0.533096969127655, 0.358407199382782, 0.22145302593708038, -0.36188167333602905, 0.1665543168783188, 0.7469873428344727, -0.7045908570289612, 0.8141876459121704, -0.22820903360843658, 0.31835514307022095, -1.1424564123153687, 0.24068227410316467, -0.204984650015831, -0.09918373078107834, -0.20793770253658295, -0.2514178454875946, -0.08804447948932648, -0.0918995812535286, -0.47530755400657654, 0.6566139459609985, -0.45196083188056946, -0.19735637307167053, 0.009379739873111248, 0.1445755809545517, 0.14810533821582794, 0.7309883236885071, 0.07237508893013, 0.4631165564060211, 0.7758933305740356, -0.5117611885070801, 0.5486916303634644, 0.5935608148574829, -0.14428743720054626, 0.7105621099472046, -0.7518694400787354, 0.06611667573451996, -0.13693836331367493, 0.16227127611637115, -0.9873637557029724, -0.24163876473903656, 0.5389032959938049, -0.5709108114242554, 0.05596007779240608, -0.3529839813709259, -0.3322281837463379, -0.43995311856269836, -0.6877861022949219, 0.40281015634536743, 0.5785853862762451, -0.34406232833862305, 0.2656453847885132, 0.4404444098472595, -0.07791708409786224, -0.7501499652862549, -0.5768635272979736, -0.1533409208059311, -0.15494760870933533, -0.6747663021087646, 0.359549880027771, -0.4929087162017822, -0.23775705695152283, 0.36001360416412354, -0.08842986822128296, -0.10815688967704773, -0.06806742399930954, 0.3022324740886688, 0.3267969489097595, -0.11103475093841553, -0.13950702548027039, -0.062832772731781, -0.28697583079338074, 0.24533407390117645, -0.08818225562572479, 0.5362744927406311, -0.5740910768508911, -0.1436937153339386, -0.29432252049446106, 0.44143688678741455, 0.33482736349105835, -0.10969863831996918, 0.7142170667648315, 0.5150511264801025, -0.19437451660633087, 0.09243893623352051, -0.3467898964881897, -0.32570216059684753, -0.4753718376159668, 0.15206941962242126, -0.2322699874639511, -0.6679197549819946, 0.6651800870895386, 0.39057275652885437, 0.14918437600135803, 0.6671597361564636, 0.37478482723236084, -0.1890915036201477, 0.7966930866241455, 0.3814448118209839, 0.03786391764879227, 0.40686526894569397, -0.4028779864311218, -0.05437743291258812, -0.9852093458175659, -0.09248171746730804, -0.465406596660614, -0.33368587493896484, -0.7408579587936401, -0.4039250612258911, 0.30695056915283203, 0.16444295644760132, -0.420552134513855, 0.3195875585079193, -0.7563217878341675, 0.5024306178092957, 0.6151182055473328, 0.14837977290153503, 0.00883414875715971, -0.027550583705306053, 0.050722986459732056, 0.06961574405431747, -0.5139577388763428, -0.31953805685043335, 1.3038434982299805, 0.11729827523231506, 0.5438490509986877, -0.052934225648641586, 0.7977409958839417, 0.15690739452838898, -0.07365432381629944, -0.4899904429912567, 0.6948211193084717, -0.04207367077469826, -0.6598561406135559, -0.4066357910633087, -0.5380063056945801, -1.1267081499099731, 0.3227548897266388, -0.306395560503006, -0.5797818303108215, 0.29844075441360474, 0.1581677347421646, -0.3799544870853424, 0.24880088865756989, -0.5939214825630188, 1.1438300609588623, -0.18867293000221252, -0.5411146283149719, 0.009344261139631271, -0.9162552356719971, 0.21177540719509125, 0.06431702524423599, 0.24307924509048462, -0.2932303845882416, 0.015606523491442204, 1.2040889263153076, -0.5578426122665405, 0.7269505858421326, -0.24186716973781586, 0.3198864459991455, 0.32921427488327026, -0.14202572405338287, 0.3325464129447937, -0.02754444256424904, -0.20184603333473206, 0.5441848039627075, 0.2587941288948059, -0.5806639194488525, -0.3841346800327301, 0.7111494541168213, -0.9131492376327515, -0.4159102439880371, -0.6337629556655884, -0.3843044638633728, 0.12292610853910446, 0.4050517678260803, 0.12878091633319855, 0.3720210790634155, 0.16432514786720276, 0.36828047037124634, 0.6160989999771118, -0.24896597862243652, 0.47181186079978943, 0.5252541899681091, -0.15714170038700104, -0.6024753451347351, 0.736850917339325, 0.0857158899307251, 0.23232942819595337, 0.2211368978023529, 0.5564793944358826, -0.3749663829803467, -0.4077915549278259, -0.5582056641578674, 0.4605516195297241, -0.7451406121253967, -0.1582840085029602, -0.6400077939033508, -0.12501415610313416, -0.5665820240974426, -0.3226573169231415, -0.2508911192417145, -0.4340081810951233, -0.27392348647117615, -0.01979423314332962, 0.6332347393035889, 0.301068514585495, -0.42215442657470703, 0.020822878926992416, -0.6706013679504395, 0.3490816354751587, 0.18654830753803253, 0.3951887786388397, -0.24620623886585236, -0.4803919792175293, -0.17213721573352814, 0.07224566489458084, -0.22226500511169434, -0.8057481050491333, 0.5018011331558228, -0.04663383215665817, 0.427578866481781, 0.27108341455459595, 0.27559584379196167, 0.6875278949737549, -0.17510254681110382, 0.848949670791626, 0.04591023921966553, -0.8655575513839722, 0.6555532813072205, -0.29632285237312317, 0.22885233163833618, 0.6317903399467468, 0.5423221588134766, -0.6742015480995178, -0.28466278314590454, -0.8376372456550598, -1.0755411386489868, 0.9394267201423645, 0.18949797749519348, -0.02325418032705784, -0.1097521185874939, 0.2860747277736664, 0.1400422602891922, 0.3356274366378784, -0.8071707487106323, -0.5060012340545654, -0.3151717782020569, -0.10199682414531708, 0.0322343148291111, -0.13464203476905823, -0.22876879572868347, -0.5256000757217407, 0.965480387210846, -0.07131700217723846, 0.431785523891449, 0.27765733003616333, 0.0694391056895256, -0.18598899245262146, 0.2689853608608246, 0.3591225743293762, 0.6603828072547913, -0.4856765866279602, 0.14621217548847198, -0.02698052115738392, -0.5855621099472046, -0.07383205741643906, 0.17552825808525085, -0.14521022140979767, -0.1026235893368721, 0.12872624397277832, 0.8165258765220642, 0.3068917691707611, -0.5848457217216492, 0.6978160738945007, -0.07018016278743744, -0.3076059818267822, -0.4696742594242096, -0.014865766279399395, 0.05788002535700798, 0.1852847933769226, 0.2997962534427643, 0.19566552340984344, -0.09987448155879974, -0.48726311326026917, 0.22229737043380737, 0.3437655568122864, -0.053894516080617905, -0.22992229461669922, 0.6205852627754211, 0.06781645864248276, -0.13444474339485168, 0.790004312992096, -0.25197210907936096, -0.4921232759952545, 0.7236887812614441, 0.52039635181427, 0.5871486663818359, 0.08988010138273239, 0.17239652574062347, 0.8128706216812134, 0.26435235142707825, -0.0036401839461177588, 0.4115866720676422, -0.30360591411590576, -0.8129234910011292, -0.059541113674640656, -0.7417808771133423, -0.5831020474433899, 0.050385769456624985, -0.6504448056221008, 0.17784149944782257, -0.3741104006767273, 0.002009051386266947, 0.029431352391839027, 0.346885621547699, -0.5303283929824829, 0.11557383090257645, -0.01603531278669834, 0.45913487672805786, -0.9804570078849792, 0.4216310381889343, 0.5333203077316284, -0.675957202911377, -0.7743948698043823, -0.3991430401802063, -0.033101458102464676, -0.7467626333236694, 0.3181855082511902, 0.17036008834838867, 0.20570385456085205, -0.028460869565606117, -0.5829534530639648, -1.0484521389007568, 1.0210360288619995, 0.21505838632583618, -0.2188761830329895, 0.14298856258392334, 0.0773157849907875, 0.3474147319793701, -0.09555429965257645, 0.454853892326355, 0.5573749542236328, 0.689928412437439, 0.052712563425302505, -0.7377732396125793, 0.30726903676986694, -0.5771777629852295, -0.3086724877357483, 0.08760794997215271, -0.6445853114128113, 1.0986982583999634, -0.18167664110660553, -0.039294589310884476, -0.3108363449573517, 0.4277837872505188, 0.5249891877174377, 0.3487898111343384, 0.5785433053970337, 0.5681611895561218, 0.7883260846138, -0.0822368860244751, 1.0492945909500122, -0.3788240849971771, 0.46832168102264404, 0.805330753326416, -0.006524567026644945, 1.045762300491333, 0.48305660486221313, -0.32918310165405273, 0.7172037363052368, 0.6872475743293762, -0.3556922376155853, 0.3397548496723175, 0.0951898992061615, -0.01466880552470684, -0.07924970984458923, 0.15800534188747406, -0.4495876729488373, 0.35756978392601013, 0.04891502112150192, -0.308128297328949, -0.15611305832862854, -0.038210902363061905, 0.2688612937927246, -0.1305544227361679, -0.26046308875083923, 0.5721312165260315, -0.1192142590880394, -0.7166036367416382, 0.9392787218093872, -0.03215840831398964, 0.9371200799942017, -0.6517812013626099, -0.043381694704294205, -0.14018651843070984, 0.13985274732112885, -0.5604450702667236, -1.0583213567733765, 0.4943569004535675, -0.031132405623793602, -0.38858893513679504, -0.4023990333080292, 0.4623944163322449, -0.4897293150424957, -0.4408673346042633, 0.09898456931114197, 0.1525736004114151, 0.7854541540145874, 0.03016747161746025, -0.9153099656105042, 0.18454952538013458, 0.10545758903026581, -0.5297423005104065, 0.3731020987033844, 0.23365923762321472, 0.03698265179991722, 0.3944275379180908, 0.8684048056602478, 0.06199830397963524, 0.0010170114692300558, -0.3369181156158447, 0.708598792552948, -0.8319036960601807, -0.5801997184753418, -0.8070169687271118, 0.5178558826446533, -0.29316553473472595, -0.47026464343070984, 0.9396476149559021, 0.8640862703323364, 0.9503771662712097, -0.06537044793367386, 0.7606244087219238, -0.4465646743774414, 0.4213457405567169, -0.2901473343372345, 0.6862653493881226, -0.5008909106254578, 0.023079805076122284, -0.30329233407974243, -0.6267622709274292, -0.07695003598928452, 0.7336225509643555, -0.42563027143478394, 0.039820022881031036, 0.7950565218925476, 0.8138132095336914, 0.07871509343385696, -0.007100604474544525, 0.04478226229548454, 0.26701539754867554, 0.11824683099985123, 0.8585696816444397, 0.3103843629360199, -0.6606085300445557, 0.6226444244384766, -0.7517844438552856, -0.3943721652030945, -0.1558203399181366, -0.9558964967727661, -0.7385115623474121, -0.8089295625686646, -0.49764934182167053, -0.5023593902587891, -0.25247856974601746, 0.9187358021736145, 0.6952399015426636, -0.6526430249214172, -0.3410433828830719, 0.13167943060398102, 0.354532927274704, -0.4113459885120392, -0.32077354192733765, 0.6026883125305176, 0.12072005867958069, -0.6454384922981262, 0.053711164742708206, 0.0408317893743515, 0.03611502796411514, -0.10187015682458878, -0.08753711730241776, -0.20761290192604065, 0.045269858092069626, 0.5588462948799133, 0.4728683531284332, -0.4141061305999756, -0.18263760209083557, -0.13569088280200958, -0.0527186319231987, 0.3770572245121002, 0.2196786254644394, -0.5580008029937744, 0.368646502494812, 0.6109000444412231, 0.3534906506538391, 0.6660296320915222, 0.29189640283584595, 0.06210146099328995, -0.6296983957290649, 0.05736798048019409, 0.2498011589050293, 0.34223446249961853, 0.3353399634361267, -0.5480066537857056, 0.3952915072441101, 0.48818138241767883, -0.7921105027198792, -0.7917042970657349, -0.20285016298294067, -1.322859764099121, -0.2656794488430023, 1.306204080581665, -0.08496216684579849, -0.5719038844108582, -0.16669173538684845, -0.26822683215141296, -0.07614892721176147, -0.5225355625152588, 0.6026934385299683, 0.6928436756134033, -0.412972629070282, -0.00011093782086391002, -0.4153446555137634, 0.412582665681839, 0.1839342564344406, -0.8677377104759216, 0.13018062710762024, 0.5437047481536865, 0.5789129734039307, 0.17229518294334412, 1.0768373012542725, -0.18501245975494385, 0.3078759014606476, 0.23868609964847565, 0.17535607516765594, -0.19816169142723083, 0.10099458694458008, -0.3600049316883087, 0.23458632826805115, -0.384998083114624, -0.2679334580898285 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
RicardoRei/wmt-mqm-human-evaluation
RicardoRei
2023-02-16T18:29:11Z
217
0
null
[ "size_categories:100K<n<1M", "language:en", "language:de", "language:ru", "language:zh", "license:apache-2.0", "mt-evaluation", "WMT", "region:us" ]
2023-02-16T18:29:11Z
2023-02-16T17:14:16.000Z
2023-02-16T17:14:16
--- license: apache-2.0 language: - en - de - ru - zh tags: - mt-evaluation - WMT size_categories: - 100K<n<1M --- # Dataset Summary This dataset contains all MQM human annotations from previous [WMT Metrics shared tasks](https://wmt-metrics-task.github.io/) and the MQM annotations from [Experts, Errors, and Context](https://aclanthology.org/2021.tacl-1.87/). The data is organised into 8 columns: - lp: language pair - src: input text - mt: translation - ref: reference translation - score: MQM score - system: MT Engine that produced the translation - annotators: number of annotators - domain: domain of the input text (e.g. news) - year: collection year You can also find the original data [here](https://github.com/google/wmt-mqm-human-evaluation). We recommend using the original repo if you are interested in annotation spans and not just the final score. ## Python usage: ```python from datasets import load_dataset dataset = load_dataset("RicardoRei/wmt-mqm-human-evaluation", split="train") ``` There is no standard train/test split for this dataset but you can easily split it according to year, language pair or domain. E.g. : ```python # split by year data = dataset.filter(lambda example: example["year"] == 2022) # split by LP data = dataset.filter(lambda example: example["lp"] == "en-de") # split by domain data = dataset.filter(lambda example: example["domain"] == "ted") ``` ## Citation Information If you use this data please cite the following works: - [Experts, Errors, and Context: A Large-Scale Study of Human Evaluation for Machine Translation](https://aclanthology.org/2021.tacl-1.87/) - [Results of the WMT21 Metrics Shared Task: Evaluating Metrics with Expert-based Human Evaluations on TED and News Domain](https://aclanthology.org/2021.wmt-1.73/) - [Results of WMT22 Metrics Shared Task: Stop Using BLEU – Neural Metrics Are Better and More Robust](https://aclanthology.org/2022.wmt-1.2/)
[ -0.46331414580345154, -0.41967517137527466, 0.3094448447227478, 0.1667148619890213, -0.16214512288570404, 0.13480550050735474, -0.363467812538147, -0.34679320454597473, 0.3011781573295593, 0.5389567613601685, -0.6794239282608032, -0.6954017877578735, -0.5728324055671692, 0.44356054067611694, -0.07629198580980301, 1.207871437072754, -0.24620795249938965, 0.1140250712633133, -0.1257515400648117, -0.6133919954299927, -0.3452686667442322, -0.6052184700965881, -0.4693511724472046, -0.4170013666152954, 0.8443406224250793, 0.3837539255619049, 0.6804116368293762, 0.6198529005050659, 0.3530533015727997, 0.24897624552249908, 0.05857691913843155, 0.4200504720211029, 0.03470956161618233, -0.23986327648162842, -0.02362763322889805, -0.1392454206943512, -0.5642319321632385, 0.35347631573677063, 0.5592636466026306, 0.8188175559043884, -0.044563647359609604, 0.4218629002571106, 0.05369449034333229, 0.6605234742164612, -0.30252698063850403, 0.1408875584602356, -0.2779257595539093, 0.03770929574966431, -0.20895344018936157, -0.33246323466300964, -0.2521512806415558, -0.23065178096294403, 0.09254547953605652, -0.6650515794754028, 0.10104537755250931, 0.22055302560329437, 0.9029545187950134, 0.27212998270988464, -0.7784119248390198, 0.10603193193674088, -0.2228403240442276, 1.109553337097168, -0.5760669112205505, 0.30809706449508667, 0.46666714549064636, 0.2559886872768402, -0.27090054750442505, -0.5318661332130432, -0.5470159649848938, -0.030143236741423607, -0.18896515667438507, 0.20558695495128632, -0.0510849803686142, -0.07581806182861328, 0.25902724266052246, 0.3999015688896179, -0.7750705480575562, -0.13034044206142426, -0.5524875521659851, -0.5165261030197144, 0.7164756655693054, 0.3430873453617096, 0.1403443068265915, -0.49481716752052307, -0.5449713468551636, -0.35196617245674133, -0.268158495426178, -0.067890465259552, 0.20904377102851868, 0.21257586777210236, -0.20967383682727814, 0.6932368874549866, -0.5717740058898926, 0.6891682744026184, -0.5617172718048096, -0.2277587205171585, 0.7557637095451355, -0.6433171033859253, -0.1602259874343872, -0.19940946996212006, 1.3388276100158691, 0.6299973130226135, 0.2628019154071808, -0.23702363669872284, -0.23027902841567993, -0.17968477308750153, -0.0183402169495821, -0.6476168036460876, -0.14386937022209167, 0.2597300112247467, -0.3719286322593689, -0.22428065538406372, 0.14493989944458008, -0.5912056565284729, -0.17149947583675385, -0.4042222201824188, 0.294236421585083, -0.3471325635910034, -0.1254294216632843, 0.06735347956418991, -0.28439557552337646, 0.03420521318912506, 0.186618834733963, -0.3931288719177246, 0.2859944999217987, 0.43726903200149536, 1.0436311960220337, -0.38011634349823, -0.7611228227615356, -0.29061686992645264, -0.13678205013275146, -0.1326139122247696, 0.5425679683685303, 0.0077204774133861065, -0.01644297130405903, -0.040397632867097855, 0.3641176223754883, -0.22025303542613983, -0.49693000316619873, 0.9437255859375, -0.4021722078323364, 0.6680737137794495, -0.31915321946144104, -0.3050646483898163, -0.36362403631210327, 0.3359607458114624, -0.6182588934898376, 1.3351709842681885, 0.3880232572555542, -0.892656147480011, 0.4314730763435364, -1.0548121929168701, -0.3729475736618042, -0.06507352739572525, 0.13415077328681946, -0.5232558250427246, -0.05568858981132507, 0.1435263305902481, 0.33098849654197693, -0.46744802594184875, 0.411120742559433, -0.20047330856323242, -0.3992234468460083, 0.49692678451538086, -0.3104313313961029, 1.0858898162841797, 0.2743244469165802, -0.23664258420467377, 0.30897948145866394, -0.8093754649162292, 0.03810406103730202, -0.017680643126368523, -0.6188117861747742, -0.25329670310020447, -0.03820870816707611, 0.41955602169036865, 0.6523012518882751, 0.21425922214984894, -0.7208665013313293, 0.2571594715118408, -0.033744893968105316, 0.5173148512840271, 0.47125867009162903, 0.21070164442062378, 0.002776801586151123, -0.49810269474983215, 0.40419816970825195, 0.3886638879776001, 0.300455778837204, 0.1678459197282791, -0.7681365013122559, -0.6179539561271667, -0.20893330872058868, 0.44907233119010925, 0.5938142538070679, -0.864166796207428, 0.8132451176643372, -0.6122422218322754, -0.3527783155441284, -0.9913842678070068, 0.011123479343950748, 0.36194607615470886, 0.5558620691299438, 0.7035640478134155, -0.38386067748069763, -0.629554033279419, -1.133514642715454, -0.2616831660270691, -0.039665911346673965, -0.07363031059503555, -0.010100948624312878, 0.6940707564353943, -0.40265631675720215, 0.8046634197235107, -0.6027231812477112, -0.43422335386276245, 0.0653940886259079, 0.24736055731773376, 0.2811020314693451, 0.6605843305587769, 0.24103288352489471, -0.621892511844635, -0.29322299361228943, -0.03477016091346741, -0.6060020327568054, -0.05015162378549576, -0.07709115743637085, -0.4828605651855469, -0.015510263852775097, 0.023123567923903465, -0.6645467877388, 0.39206182956695557, 0.45452719926834106, -0.5436250567436218, 0.5991264581680298, 0.014341267757117748, 0.6055761575698853, -1.2789252996444702, 0.18262098729610443, 0.18062379956245422, -0.4523012340068817, -0.34443578124046326, -0.23795975744724274, 0.05194387957453728, 0.2625167667865753, -0.47359412908554077, 0.4201763868331909, -0.2225547432899475, -0.010388261638581753, -0.21186883747577667, 0.21179643273353577, 0.15831993520259857, 0.7521889209747314, -0.23684264719486237, 0.7754185795783997, 0.3002372086048126, -0.46862363815307617, 0.37401366233825684, 0.483104944229126, -0.4078761637210846, 0.26691964268684387, -0.5859563946723938, 0.014699668623507023, 0.28068944811820984, 0.12067050486803055, -0.9027747511863708, -0.22535039484500885, 0.4945216774940491, -0.731803297996521, -0.047905635088682175, -0.05237570032477379, -1.0342601537704468, -0.2533027231693268, -0.4450632333755493, 0.23278044164180756, 0.3572101593017578, -0.19683417677879333, 0.07338373363018036, 0.27699631452560425, 0.224180206656456, -0.707295835018158, -0.880534291267395, 0.2219891995191574, -0.3602597713470459, -0.40534132719039917, 0.1410156488418579, -0.15911823511123657, 0.004160851240158081, 0.14983588457107544, 0.07285016775131226, -0.2585490942001343, 0.36056584119796753, 0.25573524832725525, 0.2752000689506531, -0.1876850128173828, -0.02455998584628105, 0.08986853063106537, -0.1209600642323494, 0.13806816935539246, -0.3927081227302551, 0.4648028612136841, -0.009367119520902634, 0.012093815952539444, -0.5494714975357056, 0.23756688833236694, 0.6336125135421753, -0.37984171509742737, 1.0341087579727173, 1.027313470840454, -0.39872631430625916, 0.2995305061340332, -0.37613987922668457, -0.14038704335689545, -0.33414211869239807, 0.549199640750885, -0.3132976293563843, -0.8762630820274353, 0.42196473479270935, 0.14045776426792145, 0.19259479641914368, 0.8464504480361938, 0.6234256625175476, -0.08298376947641373, 1.0704493522644043, 0.06157057732343674, -0.22737157344818115, 0.4263096749782562, -0.2923164367675781, -0.397426575422287, -1.1776798963546753, -0.18767601251602173, -0.3588425815105438, -0.5521503686904907, -0.7426542043685913, -0.39530807733535767, 0.17506951093673706, -0.06303462386131287, -0.33991289138793945, 0.3530454635620117, -0.5500784516334534, 0.3306010365486145, 0.6624465584754944, 0.14800335466861725, 0.45732206106185913, 0.1236192062497139, -0.32816529273986816, -0.19617575407028198, -0.47850173711776733, -0.6089898347854614, 1.2513058185577393, 0.2913569211959839, 0.15617293119430542, 0.13046078383922577, 0.6225923895835876, 0.4102538824081421, 0.6087307333946228, -0.7809364795684814, 0.4197925925254822, 0.006196153350174427, -0.8011389970779419, -0.2829899489879608, -0.8495456576347351, -1.1668486595153809, 0.4726557433605194, -0.27791929244995117, -0.530404269695282, -0.08726950734853745, -0.32312095165252686, -0.09841206669807434, 0.1426728516817093, -0.6708382368087769, 0.9552792310714722, -0.07432694733142853, -0.2073906511068344, -0.00697304867208004, -0.8148056864738464, 0.4607102572917938, -0.2010428011417389, 0.2892332673072815, -0.41402047872543335, -0.1683596521615982, 1.2548694610595703, -0.3166581988334656, 0.7408238053321838, -0.3043598234653473, 0.29482191801071167, 0.22478996217250824, -0.20111748576164246, 0.09506378322839737, -0.10760606080293655, -0.1700882762670517, 0.18982701003551483, 0.15120400488376617, -0.5948006510734558, -0.3758978545665741, 0.6108556985855103, -0.9871443510055542, -0.3131120800971985, -0.6786634922027588, -0.8974943161010742, -0.09815847873687744, 0.3760409355163574, 0.17956437170505524, 0.4987379312515259, 0.06223505735397339, 0.2413252741098404, 0.11017929017543793, -0.10087379813194275, 0.4287112355232239, 0.5027338862419128, -0.04445115104317665, -0.8566226959228516, 0.6883583664894104, 0.15959692001342773, -0.031901244074106216, 0.27551916241645813, 0.22451251745224, -0.4600885808467865, -0.6112748980522156, -0.6187146306037903, 0.3840058445930481, -0.5152933597564697, -0.3506494164466858, -0.47729092836380005, 0.09405918419361115, -0.19892814755439758, 0.5346499681472778, -0.1812862604856491, -0.7162348628044128, -0.08148711919784546, -0.19362597167491913, 0.44906193017959595, 0.6393746137619019, 0.09222535789012909, 0.3456886410713196, -0.892297625541687, -0.032107461243867874, -0.23412518203258514, 0.1526871919631958, -0.15362633764743805, -0.597187876701355, -0.8341047763824463, 0.19493937492370605, -0.5758760571479797, -0.78139328956604, 0.5207484364509583, 0.15028801560401917, 0.5337680578231812, 0.06107081472873688, 0.20786625146865845, 0.733093798160553, -0.34839996695518494, 0.9489285945892334, 0.19296559691429138, -0.7532521486282349, 0.3433536887168884, -0.30350106954574585, 0.2976212799549103, 0.8158209323883057, 0.4913499653339386, -0.7931805849075317, -0.26418638229370117, -0.6536363363265991, -0.8167011141777039, 0.7728658318519592, 0.2639298439025879, -0.3070688247680664, 0.09971734136343002, 0.44432616233825684, 0.11725229024887085, 0.3206067681312561, -0.836877167224884, -0.6029878854751587, 0.07728808373212814, -0.5862116813659668, -0.36088791489601135, 0.0688956007361412, -0.5175727605819702, -0.48023006319999695, 0.692552924156189, -0.1515655219554901, 0.16785086691379547, 0.4336743950843811, -0.27643001079559326, -0.02243611216545105, 0.24413806200027466, 0.8186866044998169, 0.7891253232955933, -0.3342456519603729, 0.32374292612075806, 0.25971120595932007, -0.5378357172012329, 0.3160957396030426, 0.06161494925618172, -0.012983966618776321, 0.07725673913955688, 0.5683393478393555, 0.6267893314361572, 0.02001853846013546, -0.5112320780754089, 0.5357166528701782, -0.1043047234416008, -0.3396652340888977, -0.3270043134689331, -0.18359798192977905, 0.06933839619159698, 0.10755655169487, 0.5231873393058777, 0.2854199707508087, 0.2872028648853302, -0.23216864466667175, 0.49679049849510193, -0.10539870709180832, -0.7068285346031189, -0.5634632110595703, 0.6341017484664917, 0.015495597384870052, -0.0636194497346878, 0.5060756802558899, -0.5065897107124329, -0.6474778652191162, 0.2569660544395447, 0.09375384449958801, 0.8023325800895691, -0.03369808569550514, 0.031044844537973404, 0.3977791666984558, 0.49917909502983093, -0.08891016989946365, 0.41675350069999695, -0.045588165521621704, -0.6273257732391357, -0.6792476773262024, -0.5047422051429749, -0.2628084123134613, 0.06835540384054184, -0.9591471552848816, 0.1910591423511505, 0.08151331543922424, -0.436820387840271, -0.16588826477527618, 0.5059055089950562, -0.8691904544830322, 0.3747517168521881, -0.17193806171417236, 0.8515182733535767, -0.9234974980354309, 1.0890154838562012, 1.035286545753479, -0.616910994052887, -0.50974041223526, -0.133469820022583, -0.015861282125115395, -0.6746111512184143, 0.5454363822937012, 0.04681297764182091, 0.1959870457649231, -0.07221950590610504, -0.3819669783115387, -0.5442547798156738, 1.3676800727844238, 0.1278323531150818, -0.2710697650909424, 0.25720319151878357, 0.36620649695396423, 0.4814559817314148, -0.3757294714450836, 0.31719890236854553, 0.7824800610542297, 0.5477674603462219, -0.28922387957572937, -0.8990687727928162, 0.33667847514152527, -0.2535514831542969, -0.29750290513038635, 0.3290359079837799, -0.8340777158737183, 0.8083083033561707, 0.08756087720394135, 0.024708447977900505, -0.14365261793136597, 0.5969974994659424, 0.38966283202171326, 0.5612493753433228, 0.5817972421646118, 0.6551491618156433, 0.6951770782470703, -0.31422948837280273, 1.0286484956741333, -0.18521709740161896, 0.5799012184143066, 0.9515079855918884, 0.257833331823349, 0.9062543511390686, 0.6064374446868896, -0.37314432859420776, 0.35958510637283325, 0.9576529264450073, -0.062322329729795456, 0.4198935925960541, 0.20373934507369995, 0.051276590675115585, -0.05258425325155258, -0.20564261078834534, -0.31393536925315857, 0.3487904369831085, 0.05207311734557152, -0.4238707721233368, 0.11524730175733566, -0.15463164448738098, 0.3104454278945923, -0.3623802959918976, 0.043657924979925156, 0.6411758661270142, 0.06894052773714066, -0.5900389552116394, 0.7408901453018188, 0.16689427196979523, 0.8281692862510681, -0.3167889416217804, 0.21291276812553406, -0.2411917895078659, -0.016690729185938835, -0.45282089710235596, -0.8727331161499023, 0.36989930272102356, -0.06337301433086395, -0.2569930851459503, -0.028005003929138184, 0.27060768008232117, -0.6609557867050171, -0.4596154987812042, 0.2921779751777649, 0.7720854878425598, 0.3958190381526947, -0.18286316096782684, -0.7763618230819702, -0.01729719527065754, 0.18405120074748993, -0.4310026466846466, 0.29993703961372375, 0.6358758211135864, -0.12084227055311203, 0.46775737404823303, 0.6421580910682678, 0.13561464846134186, 0.24326734244823456, 0.11518384516239166, 0.8264178037643433, -1.049718976020813, -0.1597226858139038, -0.7943444848060608, 0.6619147062301636, -0.21625541150569916, -0.7749822735786438, 0.8249997496604919, 0.9625930190086365, 0.6464471817016602, -0.04173489660024643, 0.7566298246383667, 0.11255785077810287, 0.6028811931610107, -0.34114834666252136, 0.8828575015068054, -0.8356583118438721, -0.047106120735406876, -0.10394341498613358, -0.8551385998725891, -0.3126625120639801, 0.2324787974357605, -0.1366768777370453, -0.04520140960812569, 0.8171154260635376, 0.4999157190322876, 0.08860837668180466, -0.1622679978609085, 0.24436511099338531, 0.003774407086893916, 0.2343904823064804, 0.6837617754936218, 0.9184304475784302, -0.9034819602966309, 0.5689423084259033, -0.42780664563179016, -0.1853543072938919, -0.22431103885173798, -0.5857458710670471, -0.8712149262428284, -0.8145707249641418, -0.6635912656784058, -0.5117557644844055, -0.3112286627292633, 1.2244876623153687, 0.7768445611000061, -0.9208033680915833, -0.4069656729698181, 0.359723836183548, 0.14021991193294525, -0.3722277283668518, -0.25420185923576355, 0.5140788555145264, -0.1487829089164734, -0.8255307078361511, 0.3397011458873749, -0.04404779523611069, -0.015932168811559677, -0.06299189478158951, -0.26421642303466797, -0.2902878224849701, -0.3144809305667877, 0.6004413366317749, -0.05593029409646988, -0.6750155687332153, -0.38614803552627563, -0.00855177827179432, -0.20956863462924957, 0.3147640824317932, 0.47178518772125244, -0.42271688580513, 0.2874238193035126, 0.3726138770580292, 0.4974746108055115, 0.4806196689605713, 0.11377208679914474, 0.3633887767791748, -0.9303175210952759, 0.20895852148532867, 0.0444168783724308, 0.5441820025444031, 0.49270668625831604, -0.037448134273290634, 0.7933758497238159, 0.5246984958648682, -0.6115755438804626, -0.835155189037323, -0.2230057567358017, -1.2264254093170166, 0.07763364166021347, 0.958907425403595, -0.15041279792785645, -0.34325337409973145, -0.369010329246521, -0.23190966248512268, 0.5104177594184875, -0.6176111698150635, 0.6401998996734619, 0.9147002696990967, -0.23830418288707733, -0.15328212082386017, -0.8745057582855225, 0.4753321707248688, 0.27726808190345764, -0.8185945749282837, -0.1714758425951004, 0.21260231733322144, 0.42843031883239746, 0.2506532669067383, 0.3769623041152954, -0.1914236843585968, 0.01107915211468935, -0.2228936105966568, 0.450138658285141, -0.33644357323646545, -0.07393119484186172, -0.21016286313533783, -0.014255188405513763, 0.08134052157402039, -0.647389829158783 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
chenz16/curriculum_benchmark
chenz16
2022-07-11T01:51:34Z
216
0
null
[ "license:mit", "region:us" ]
2022-07-11T01:51:34Z
2022-07-11T01:50:55.000Z
2022-07-11T01:50:55
--- license: mit ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
MoritzLaurer/multilingual-NLI-26lang-2mil7
MoritzLaurer
2022-08-22T21:40:14Z
216
28
null
[ "task_categories:text-classification", "task_ids:natural-language-inference", "task_ids:multi-input-text-classification", "annotations_creators:crowdsourced", "language_creators:machinetranslation", "size_categories:1M<n<5", "source_datasets:multi_nli", "source_datasets:anli", "source_datasets:fever", "source_datasets:lingnli", "source_datasets:alisawuffles/WANLI", "language:multilingual", "language:zh", "language:ja", "language:ar", "language:ko", "language:de", "language:fr", "language:es", "language:pt", "language:hi", "language:id", "language:it", "language:tr", "language:ru", "language:bn", "language:ur", "language:mr", "language:ta", "language:vi", "language:fa", "language:pl", "language:uk", "language:nl", "language:sv", "language:he", "language:sw", "language:ps", "arxiv:2104.07179", "region:us" ]
2022-08-22T21:40:14Z
2022-08-17T15:28:16.000Z
2022-08-17T15:28:16
--- annotations_creators: - crowdsourced language_creators: - machinetranslation size_categories: - 1M<n<5 source_datasets: - multi_nli - anli - fever - lingnli - alisawuffles/WANLI task_categories: - text-classification task_ids: - natural-language-inference - multi-input-text-classification language: - multilingual - zh - ja - ar - ko - de - fr - es - pt - hi - id - it - tr - ru - bn - ur - mr - ta - vi - fa - pl - uk - nl - sv - he - sw - ps --- # Datasheet for the dataset: multilingual-NLI-26lang-2mil7 ## Dataset Summary This dataset contains 2 730 000 NLI text pairs in 26 languages spoken by more than 4 billion people. The dataset can be used to train models for multilingual NLI (Natural Language Inference) or zero-shot classification. The dataset is based on the English datasets [MultiNLI](https://huggingface.co/datasets/multi_nli), [Fever-NLI](https://github.com/easonnie/combine-FEVER-NSMN/blob/master/other_resources/nli_fever.md), [ANLI](https://huggingface.co/datasets/anli), [LingNLI](https://arxiv.org/pdf/2104.07179.pdf) and [WANLI](https://huggingface.co/datasets/alisawuffles/WANLI) and was created using the latest open-source machine translation models. The dataset is designed to complement the established multilingual [XNLI](https://huggingface.co/datasets/xnli) dataset. XNLI contains older machine translations of the MultiNLI dataset from 2018 for 14 languages, as well as human translations of 2490 texts for validation and 5010 texts for testing per language. multilingual-NLI-26lang-2mil7 is sourced from 5 different NLI datasets and contains 105 000 machine translated texts for each of 26 languages, leading to 2 730 000 NLI text pairs. The release of the dataset is accompanied by the fine-tuned [mDeBERTa-v3-base-xnli-multilingual-nli-2mil7](https://huggingface.co/MoritzLaurer/mDeBERTa-v3-base-xnli-multilingual-nli-2mil7) model, which can be used for NLI or zero-shot classification in 100 languages. ## Dataset Creation The languages in the dataset are: ['ar', 'bn', 'de', 'es', 'fa', 'fr', 'he', 'hi', 'id', 'it', 'ja', 'ko', 'mr', 'nl', 'pl', 'ps', 'pt', 'ru', 'sv', 'sw', 'ta', 'tr', 'uk', 'ur', 'vi', 'zh'] (see [ISO language codes](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)) plus the original English texts. The languages were chosen based on two criteria: (1) They are either included in the list of the [20 most spoken languages](https://en.wikipedia.org/wiki/List_of_languages_by_total_number_of_speakers) (excluding Telugu and Nigerian Pidgin, for which no machine translation model was available); (2) or they are spoken in polit-economically important countries such as the [G20](https://en.wikipedia.org/wiki/G20) or Iran and Israel. For each of the 26 languages, a different random sample of 25 000 hypothesis-premise pairs was taken from each of the following four datasets: [MultiNLI](https://huggingface.co/datasets/multi_nli) (392 702 texts in total), [Fever-NLI](https://github.com/easonnie/combine-FEVER-NSMN/blob/master/other_resources/nli_fever.md) (196 805 texts), [ANLI](https://huggingface.co/datasets/anli) (162 865 texts), [WANLI](https://huggingface.co/datasets/alisawuffles/WANLI) (102 885 texts). Moreover, a sample of 5000 texts was taken from [LingNLI](https://arxiv.org/pdf/2104.07179.pdf) (29 985 texts) given its smaller total size. This leads to a different random sample of 105 000 source texts per target language with a diverse distribution of data from 5 different NLI datasets. Each sample was then machine translated using the latest open-source machine translation models available for the respective language: - [opus-mt-tc-big models](https://huggingface.co/models?sort=downloads&search=opus-mt-tc-big) were available for English to ['ar', 'es', 'fr', 'it', 'pt', 'tr'] - [opus-mt-models](https://huggingface.co/models?sort=downloads&search=opus-mt) were available for English to ['de', 'he', 'hi', 'id', 'mr', 'nl', 'ru', 'sv', 'sw', 'uk', 'ur', 'vi', 'zh'] - [m2m100_1.2B](https://huggingface.co/facebook/m2m100_1.2B) was used for the remaining languages ['bn', 'fa', 'ja', 'ko', 'pl', 'ps', 'ta'] ## DatasetStructure ### Data Splits The dataset contains 130 splits (26 * 5), one for each language-dataset pair following the format '{language-iso}_{dataset}'. For example, split 'zh_mnli' contains the Chinese translation of 25 000 texts from the MultiNLI dataset etc. ### Data Fields - `premise_original`: The original premise from the English source dataset - `hypothesis_original`: The original hypothesis from the English source dataset - `label`: The classification label, with possible values `entailment` (0), `neutral` (1), `contradiction` (2). - `premise`: The machine translated premise in the target language - `hypothesis`: The machine translated premise in the target language ### Example of a data instance: ``` { "premise_original": "I would not be surprised if the top priority for the Navy was to build a new carrier.", "hypothesis_original": "The top priority for the Navy is to build a new carrier.", "label": 1, "premise": "Ich würde mich nicht wundern, wenn die oberste Priorität für die Navy wäre, einen neuen Träger zu bauen.", "hypothesis": "Die oberste Priorität für die Navy ist es, einen neuen Träger zu bauen." } ``` ## Limitations and bias Machine translation is not as good as human translation. Machine translation can introduce inaccuracies that can be problematic for complex tasks like NLI. In an ideal world, original NLI data would be available for many languages. Given the lack of NLI data, using the latest open-source machine translation seems like a good solution to improve multilingual NLI. You can use the Hugging Face data viewer to inspect the data and verify the translation quality for your language of interest. Note that grammatical errors are less problematic for zero-shot use-cases as grammar is less relevant for these applications. ## Other The machine translation for the full dataset took roughly 100 hours on an A100 GPU, especially due to the size of the [m2m100_1.2B](https://huggingface.co/facebook/m2m100_1.2B) model. ## Ideas for cooperation or questions? For updates on new models and datasets, follow me on [Twitter](https://twitter.com/MoritzLaurer). If you have questions or ideas for cooperation, contact me at m{dot}laurer{at}vu{dot}nl or on [LinkedIn](https://www.linkedin.com/in/moritz-laurer/) ### Citation Information If the dataset is useful for you, please cite the following article: ``` @article{laurer_less_2022, title = {Less {Annotating}, {More} {Classifying} – {Addressing} the {Data} {Scarcity} {Issue} of {Supervised} {Machine} {Learning} with {Deep} {Transfer} {Learning} and {BERT} - {NLI}}, url = {https://osf.io/74b8k}, language = {en-us}, urldate = {2022-07-28}, journal = {Preprint}, author = {Laurer, Moritz and Atteveldt, Wouter van and Casas, Andreu Salleras and Welbers, Kasper}, month = jun, year = {2022}, note = {Publisher: Open Science Framework}, } ```
[ -0.34615373611450195, -0.30856505036354065, 0.1305350661277771, 0.37961098551750183, -0.06482578068971634, -0.19703446328639984, -0.3220387399196625, -0.605096161365509, 0.3696058690547943, 0.37768757343292236, -0.42406272888183594, -0.5150313377380371, -0.42029792070388794, 0.5123022794723511, -0.1768798679113388, 0.9888119101524353, -0.09415575116872787, 0.1771024465560913, 0.07662717252969742, -0.33754464983940125, -0.19013096392154694, -0.5724166631698608, -0.6098331809043884, -0.2654202878475189, 0.5314222574234009, 0.2938406765460968, 0.5444940328598022, 0.6142026782035828, 0.5230028033256531, 0.23101119697093964, -0.07787613570690155, 0.1916174739599228, -0.317372590303421, -0.2570701837539673, 0.14566613733768463, -0.5174574255943298, -0.5322760343551636, 0.11436475068330765, 0.5338641405105591, 0.6558818817138672, 0.01742379739880562, 0.25559937953948975, -0.015453554689884186, 0.789811372756958, -0.25077199935913086, 0.09280014038085938, -0.34549492597579956, 0.0218335073441267, -0.345645934343338, 0.047006286680698395, -0.47107696533203125, -0.06843285262584686, 0.021934837102890015, -0.5489048957824707, -0.14699769020080566, 0.11186996847391129, 1.0179601907730103, -0.006943688262254, -0.44380271434783936, -0.08008839935064316, -0.3647773265838623, 1.009844422340393, -0.9467952251434326, 0.5428553223609924, 0.40409141778945923, -0.03548499569296837, -0.01538164634257555, -0.16911228001117706, -0.4721198081970215, -0.06818100064992905, -0.21780607104301453, 0.3882884383201599, -0.15970544517040253, -0.303827166557312, 0.11670514941215515, 0.35611024498939514, -1.005746603012085, 0.05223144590854645, -0.4349231421947479, -0.09130637347698212, 0.9562696218490601, -0.08894602954387665, 0.5265157222747803, -0.38826221227645874, -0.29187270998954773, -0.30269110202789307, -0.5651840567588806, 0.011940284632146358, 0.31418484449386597, 0.508506178855896, -0.6065080761909485, 0.5404086112976074, -0.20085033774375916, 0.7227858901023865, -0.162653386592865, -0.37033721804618835, 0.8969241976737976, -0.7466453313827515, -0.11666509509086609, -0.000191858722246252, 1.1760333776474, 0.48674049973487854, 0.2770816385746002, -0.09393811970949173, -0.04162844270467758, -0.257525771856308, -0.2954423725605011, -0.6968402862548828, 0.05699470639228821, 0.36981770396232605, -0.5236892700195312, -0.19141072034835815, 0.10084039717912674, -0.7583324909210205, -0.11003290861845016, -0.3562737703323364, 0.0844307690858841, -0.6496073007583618, -0.5039951801300049, 0.10667981207370758, -0.16390356421470642, 0.24766238033771515, -0.0772901251912117, -0.46672722697257996, -0.014146408997476101, 0.3062520921230316, 0.9087300300598145, -0.2314174324274063, -0.42013365030288696, -0.09611273556947708, 0.015630636364221573, -0.3020364046096802, 0.46304214000701904, -0.21240170300006866, -0.19218610227108002, -0.12597042322158813, 0.11636281758546829, -0.2839536964893341, -0.4057389795780182, 0.5699176788330078, -0.20975428819656372, 0.4586319625377655, -0.3309367001056671, -0.3138689398765564, -0.12213578820228577, 0.2783224582672119, -0.7443504929542542, 1.0498942136764526, 0.001006399397738278, -0.8746064901351929, 0.26234909892082214, -0.6552910208702087, -0.5129361152648926, -0.11700835078954697, 0.10288594663143158, -0.3975006937980652, -0.1144745722413063, 0.3136495053768158, 0.4517374634742737, -0.4412665367126465, 0.5302093029022217, -0.23545634746551514, -0.07592480629682541, 0.29868775606155396, -0.349795937538147, 1.1379919052124023, 0.4850877821445465, -0.3425781726837158, -0.06018293276429176, -0.8547775149345398, -0.03635543957352638, 0.31442368030548096, -0.33209940791130066, -0.3996582627296448, -0.19061975181102753, 0.25289610028266907, 0.47851333022117615, 0.1277627795934677, -0.6906967163085938, 0.10962159931659698, -0.751148521900177, 0.354939728975296, 0.21360944211483002, -0.0988323837518692, 0.4196508526802063, -0.49599510431289673, 0.3052503764629364, 0.20526909828186035, 0.17932385206222534, -0.15451905131340027, -0.7916248440742493, -0.713525652885437, -0.211680069565773, 0.3151208460330963, 0.9048558473587036, -0.932505190372467, 0.36012741923332214, -0.469095915555954, -0.49721458554267883, -0.7593188285827637, 0.25888577103614807, 0.6832758188247681, 0.18225404620170593, 0.4231298863887787, -0.0055616796016693115, -0.6813182234764099, -0.8712639808654785, 0.019955508410930634, -0.16917073726654053, -0.037771619856357574, 0.15717573463916779, 0.46276164054870605, -0.24244028329849243, 0.6196852922439575, -0.17173336446285248, -0.399785578250885, -0.48310068249702454, -0.1119641587138176, 0.4510011076927185, 0.4865306615829468, 0.6872342228889465, -0.9658662676811218, -0.62139892578125, 0.3500087261199951, -1.0323939323425293, -0.05453374981880188, -0.2577979862689972, -0.21643804013729095, 0.4848986566066742, 0.44883307814598083, -0.40034013986587524, 0.1808471977710724, 0.7667796015739441, -0.05034670978784561, 0.18424730002880096, -0.0997045487165451, 0.2565951943397522, -1.4421026706695557, 0.33833548426628113, 0.2364499568939209, 0.14906418323516846, -0.8263325691223145, 0.14309866726398468, 0.016625437885522842, -0.05832558497786522, -0.5450711250305176, 0.6961051225662231, -0.5175007581710815, 0.27410003542900085, 0.058740127831697464, 0.2788485884666443, -0.03609997406601906, 0.48014000058174133, -0.06141066551208496, 0.764333963394165, 0.4318492114543915, -0.6123314499855042, 0.19385409355163574, 0.35694319009780884, -0.1744328737258911, 0.32343342900276184, -0.6964659690856934, -0.18131551146507263, -0.18254275619983673, 0.1538311392068863, -0.614020586013794, -0.22685687243938446, 0.36927223205566406, -0.5643373727798462, 0.25970879197120667, -0.04725422337651253, -0.4519433081150055, -0.2760917544364929, -0.3453993499279022, 0.2676805555820465, 0.26931193470954895, -0.3264186978340149, 0.5045059323310852, 0.3884742856025696, -0.11793109029531479, -0.7142341732978821, -1.0086709260940552, 0.21434976160526276, -0.26762479543685913, -0.6220200657844543, 0.3310624361038208, -0.21716149151325226, -0.2996722459793091, 0.08925634622573853, 0.16756656765937805, -0.09539026021957397, 0.06520185619592667, 0.17623060941696167, 0.4004784822463989, -0.2854622006416321, -0.11988546699285507, 0.029166540130972862, -0.10941877216100693, -0.22615471482276917, -0.41711246967315674, 0.5049015283584595, -0.21026253700256348, -0.11790565401315689, -0.44737508893013, 0.5387201309204102, 0.5801063776016235, -0.33531731367111206, 0.9390100836753845, 0.7857126593589783, -0.3596916198730469, 0.32931405305862427, -0.45799538493156433, 0.18188044428825378, -0.35362187027931213, 0.232942134141922, -0.5940119028091431, -0.6250331401824951, 0.5120169520378113, 0.3419644236564636, 0.2692050635814667, 0.6939254999160767, 0.5087814331054688, 0.23446370661258698, 0.9939538836479187, 0.5246649980545044, -0.4731615483760834, 0.27620580792427063, -0.43671974539756775, 0.21019688248634338, -0.7474310994148254, -0.27705398201942444, -0.5438329577445984, -0.1308276504278183, -0.805789053440094, -0.34755057096481323, 0.31334397196769714, 0.08407092839479446, 0.11847556382417679, 0.6201493144035339, -0.30608654022216797, 0.27579355239868164, 0.568340539932251, -0.021519126370549202, 0.23060649633407593, 0.05525520071387291, -0.1963600069284439, -0.03736264631152153, -0.783559262752533, -0.408725768327713, 1.0876996517181396, 0.28525933623313904, 0.30021706223487854, 0.42227911949157715, 0.7614927291870117, -0.06020522862672806, 0.2796401083469391, -0.5084021687507629, 0.3931700885295868, -0.4132215678691864, -0.7693987488746643, -0.2491629719734192, -0.6933297514915466, -1.061333417892456, 0.16199234127998352, -0.25299766659736633, -0.5783432722091675, 0.28472211956977844, -0.08655817806720734, -0.1607111692428589, 0.24309517443180084, -0.828779399394989, 0.7286806106567383, -0.42177292704582214, -0.15521077811717987, 0.0668843686580658, -0.7402368783950806, 0.49051183462142944, -0.2907940447330475, 0.5074241161346436, -0.23639611899852753, 0.14277271926403046, 0.7983387112617493, -0.18073886632919312, 0.7701449394226074, -0.04931098222732544, -0.10344643890857697, 0.14717932045459747, -0.41894087195396423, 0.11771927773952484, 0.09399253129959106, -0.5100279450416565, 0.5881471037864685, 0.24415665864944458, -0.5321102738380432, -0.2637922167778015, 0.6612727642059326, -0.8233891129493713, -0.16935020685195923, -0.48087382316589355, -0.5085873007774353, 0.036308567970991135, 0.3860340416431427, 0.539669394493103, 0.36910074949264526, -0.09858442842960358, 0.23526200652122498, 0.522277295589447, -0.5786883234977722, 0.37940144538879395, 0.4348950982093811, -0.3598179519176483, -0.48408302664756775, 1.071205735206604, 0.17416329681873322, 0.24238184094429016, 0.5475025773048401, 0.23668117821216583, -0.19814327359199524, -0.49603238701820374, -0.7540085911750793, 0.5515063405036926, -0.3619947135448456, -0.20024916529655457, -0.8214083313941956, -0.22260256111621857, -0.6987506747245789, 0.022419802844524384, -0.23574192821979523, -0.2704976797103882, -0.1340426355600357, -0.006194740068167448, 0.43154439330101013, 0.4888623356819153, -0.15276947617530823, 0.13555404543876648, -0.8797688484191895, 0.2652430534362793, -0.22375673055648804, 0.19485028088092804, -0.16631574928760529, -0.5958199501037598, -0.3288254141807556, 0.3811115026473999, 0.08163104951381683, -0.7375471591949463, 0.7299582362174988, 0.46077391505241394, 0.6407166719436646, 0.26636257767677307, 0.14257119596004486, 0.7010866403579712, -0.45449909567832947, 0.7115462422370911, 0.26365914940834045, -0.7542380094528198, 0.5052869915962219, -0.3218282163143158, 0.316593199968338, 0.6342760324478149, 0.735149085521698, -0.7538753151893616, -0.49017712473869324, -0.4680227041244507, -0.9696871638298035, 0.7139126658439636, 0.23159334063529968, 0.060831982642412186, -0.012975862249732018, 0.35904690623283386, -0.10657107830047607, 0.07460097223520279, -0.7991986870765686, -0.6504090428352356, -0.08973422646522522, -0.3883652687072754, -0.3979606330394745, -0.09494805335998535, 0.024632515385746956, -0.330730676651001, 0.971092939376831, -0.14026162028312683, 0.3315383791923523, 0.2733745276927948, -0.17554007470607758, 0.10333525389432907, 0.27216148376464844, 0.6496837735176086, 0.3703659474849701, -0.22364749014377594, -0.1285085529088974, 0.271463543176651, -0.46940237283706665, -0.013619315810501575, 0.30077940225601196, -0.425126314163208, 0.18609313666820526, 0.44462379813194275, 0.8983635902404785, -0.0028779911808669567, -0.718025803565979, 0.4095956087112427, -0.119278185069561, -0.2421768605709076, -0.4003453254699707, -0.23951931297779083, 0.06796181201934814, 0.04585719481110573, 0.2815694808959961, 0.06363522261381149, 0.12720422446727753, -0.5054752826690674, 0.39850136637687683, 0.18688416481018066, -0.30834782123565674, -0.4482628107070923, 0.5473363995552063, 0.11996336281299591, 0.019634786993265152, 0.5310986638069153, -0.47178518772125244, -0.4080803692340851, 0.42401471734046936, 0.5070403218269348, 0.5054029822349548, -0.2746519446372986, 0.3592453896999359, 0.7177721858024597, 0.544550359249115, -0.13111302256584167, 0.3092636168003082, 0.44666609168052673, -0.8570044636726379, -0.6708329916000366, -0.6429222226142883, -0.18857021629810333, 0.2640945017337799, -0.7385109066963196, 0.3276485204696655, -0.12387517839670181, -0.020587820559740067, 0.12220330536365509, 0.04739547520875931, -0.5909433960914612, 0.08479223400354385, 0.27591973543167114, 0.9235355854034424, -1.0530223846435547, 1.0262607336044312, 0.7582775950431824, -0.636684775352478, -0.8204472661018372, -0.13506244122982025, 0.23038554191589355, -0.6274134516716003, 0.4712565541267395, 0.25427937507629395, 0.18377061188220978, -0.07628140598535538, -0.2472374588251114, -0.9792823195457458, 0.8108274340629578, 0.22859549522399902, -0.5205843448638916, 0.15984641015529633, 0.2942996323108673, 0.6169264912605286, -0.3402102589607239, 0.20071935653686523, 0.5385034680366516, 0.5533391833305359, -0.04909132048487663, -1.0082604885101318, 0.017960352823138237, -0.8425557017326355, -0.14015112817287445, 0.23794646561145782, -0.6103212237358093, 0.6639724969863892, -0.21461784839630127, -0.13233688473701477, 0.022320624440908432, 0.5607536435127258, 0.20092324912548065, 0.43358665704727173, 0.36982160806655884, 0.5012562870979309, 0.6457257866859436, -0.18727755546569824, 1.1390591859817505, -0.49315983057022095, 0.18848221004009247, 0.8278001546859741, -0.21854643523693085, 0.9796679019927979, 0.34816545248031616, -0.16434012353420258, 0.23741935193538666, 0.42216309905052185, -0.12093006074428558, 0.2601568102836609, -0.1338912844657898, 0.04398221895098686, 0.05863965302705765, -0.36109766364097595, -0.36244115233421326, 0.4056984484195709, 0.3125128149986267, -0.18130691349506378, 0.08533491939306259, 0.3236943483352661, 0.4830421209335327, -0.0676744282245636, 0.14878882467746735, 0.6660074591636658, 0.09232483804225922, -0.658670961856842, 0.8652086853981018, 0.18666106462478638, 0.9082923531532288, -0.5370451211929321, 0.1955910176038742, -0.3746350109577179, 0.04660036042332649, -0.28198182582855225, -0.6796503663063049, 0.4174107611179352, 0.18454678356647491, -0.2357274442911148, -0.3848934769630432, 0.3599419891834259, -0.6908649802207947, -0.7222283482551575, 0.4966527819633484, 0.6536411046981812, 0.3431949317455292, 0.06631144136190414, -0.9815530180931091, 0.1405828893184662, 0.41730090975761414, -0.20121490955352783, 0.3609102666378021, 0.3557751774787903, -0.11657050251960754, 0.6470816731452942, 0.7678928375244141, 0.2595198154449463, 0.06597317010164261, 0.096987783908844, 0.6607795357704163, -0.5497666597366333, -0.1167067363858223, -0.6541685461997986, 0.6012009978294373, -0.2175893485546112, -0.48155879974365234, 0.9959848523139954, 0.743257999420166, 1.0230528116226196, -0.03460180014371872, 0.8135080337524414, -0.257158100605011, 0.5921860337257385, -0.4931076467037201, 0.5849506855010986, -0.7777277827262878, 0.09527815878391266, -0.3751693367958069, -0.6434787511825562, -0.6179893016815186, 0.4418914318084717, -0.1845025271177292, -0.11513940989971161, 0.5542048811912537, 0.7583683729171753, 0.16024868190288544, -0.1795024871826172, 0.17741313576698303, 0.20533551275730133, 0.20804986357688904, 0.5885777473449707, 0.34033918380737305, -0.8359020352363586, 0.5847817659378052, -0.6247655153274536, -0.2735121250152588, -0.04884082451462746, -0.6377010345458984, -0.7618554830551147, -0.6691426038742065, -0.521704912185669, -0.35401099920272827, -0.056293733417987823, 1.0070281028747559, 0.6032524704933167, -1.1828981637954712, -0.3940564692020416, 0.22637830674648285, -0.010569890029728413, -0.3673662543296814, -0.18569551408290863, 0.36277860403060913, -0.0455436110496521, -0.8796354532241821, 0.5680142045021057, 0.1826845407485962, 0.10366784036159515, 0.05130992829799652, -0.19528688490390778, -0.5545343160629272, -0.08414091169834137, 0.7416847348213196, 0.2926095724105835, -0.6743467450141907, 0.15971212089061737, 0.44526031613349915, -0.17900484800338745, -0.0003788983740378171, 0.29283103346824646, -0.29896965622901917, 0.1286056488752365, 0.42289143800735474, 0.5841749310493469, 0.31674855947494507, -0.1947583556175232, 0.43128547072410583, -0.6753277778625488, 0.3573612868785858, -0.17264589667320251, 0.3504221439361572, 0.4362170398235321, -0.21778908371925354, 0.6979993581771851, 0.32807689905166626, -0.23081034421920776, -0.8112574219703674, 0.0007945201359689236, -1.0806748867034912, -0.2655329406261444, 1.271539330482483, -0.17886613309383392, -0.2876310646533966, -0.23820489645004272, -0.15134334564208984, 0.22630827128887177, -0.3994230031967163, 0.3488524854183197, 0.574781596660614, 0.07036566734313965, -0.27258265018463135, -0.8092477917671204, 0.3175814747810364, 0.4151897728443146, -0.8423651456832886, -0.16619664430618286, 0.1692318469285965, 0.11833370476961136, 0.4826974868774414, 0.5262538194656372, -0.214512899518013, -0.13538327813148499, -0.22698743641376495, 0.3187595009803772, 0.09590974450111389, -0.20428863167762756, -0.35594236850738525, -0.08861682564020157, -0.13592541217803955, -0.002661143895238638 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
jonathan-roberts1/NWPU-RESISC45
jonathan-roberts1
2023-03-31T16:57:43Z
216
0
null
[ "task_categories:image-classification", "task_categories:zero-shot-image-classification", "license:other", "region:us" ]
2023-03-31T16:57:43Z
2023-01-20T15:46:31.000Z
2023-01-20T15:46:31
--- dataset_info: features: - name: image dtype: image - name: label dtype: class_label: names: '0': airplane '1': airport '2': baseball diamond '3': basketball court '4': beach '5': bridge '6': chaparral '7': church '8': circular farmland '9': cloud '10': commercial area '11': dense residential '12': desert '13': forest '14': freeway '15': golf course '16': ground track field '17': harbor '18': industrial area '19': intersection '20': island '21': lake '22': meadow '23': medium residential '24': mobile home park '25': mountain '26': overpass '27': palace '28': parking lot '29': railway '30': railway station '31': rectangular farmland '32': river '33': roundabout '34': runway '35': sea ice '36': ship '37': snowberg '38': sparse residential '39': stadium '40': storage tank '41': tennis court '42': terrace '43': thermal power station '44': wetland splits: - name: train num_bytes: 381151705 num_examples: 31500 download_size: 424827902 dataset_size: 381151705 license: other task_categories: - image-classification - zero-shot-image-classification --- # Dataset Card for "NWPU-RESISC45" ## Dataset Description - **Paper** [Remote sensing image scene classification: Benchmark and state of the art](https://ieeexplore.ieee.org/iel7/5/8045830/07891544.pdf) ### Licensing Information [CC-BY-SA] ## Citation Information [Remote sensing image scene classification: Benchmark and state of the art](https://ieeexplore.ieee.org/iel7/5/8045830/07891544.pdf) ``` @article{cheng2017remote, title = {Remote sensing image scene classification: Benchmark and state of the art}, author = {Cheng, Gong and Han, Junwei and Lu, Xiaoqiang}, year = 2017, journal = {Proceedings of the IEEE}, publisher = {IEEE}, volume = 105, number = 10, pages = {1865--1883} } ```
[ -0.600753128528595, 0.1348533034324646, -0.05538445711135864, 0.0744561031460762, -0.40558701753616333, -0.2113047093153, 0.2664845287799835, -0.5472476482391357, -0.4592684507369995, 0.2592790424823761, -0.5599186420440674, -0.6657362580299377, -0.307344526052475, 0.2174847275018692, -0.25882449746131897, 0.48654308915138245, 0.18054352700710297, 0.14605076611042023, -0.48548659682273865, -0.5647915601730347, -0.009754359722137451, -0.2965661883354187, -0.4002191424369812, 0.1921425312757492, 0.3451579511165619, 0.2843751609325409, 0.320059597492218, 0.5922725796699524, 0.7236607670783997, 0.4441755414009094, 0.014788818545639515, 0.3151342570781708, -0.010965368710458279, -0.3384212255477905, -0.10281907021999359, -0.24579067528247833, -0.31093424558639526, 0.19086328148841858, 1.246241807937622, 0.3473411500453949, -0.23249074816703796, 0.5223662853240967, 0.12268853187561035, 0.6935698986053467, -0.6372091770172119, 0.20545248687267303, -0.4804428815841675, 0.361319363117218, -0.43462684750556946, -0.44172635674476624, -0.39971938729286194, -0.256038099527359, -0.23878319561481476, -0.7757999300956726, 0.6582057476043701, 0.5596435070037842, 1.51991868019104, 0.19803200662136078, -0.1994851678609848, 0.7790296077728271, -0.22448624670505524, 0.9908051490783691, -0.667098343372345, 0.1956634819507599, 0.3142905831336975, 0.6573339700698853, -0.20506209135055542, -0.9446631073951721, -0.4236389696598053, 0.10441026091575623, 0.07978644967079163, 0.0017149511259049177, -0.20961113274097443, -0.14885762333869934, 0.5703631639480591, 0.45060989260673523, -0.4293871223926544, 0.18976391851902008, -0.646655797958374, -0.4344821870326996, 0.5756263732910156, 0.4556323289871216, -0.06254100054502487, -0.5507943034172058, -0.7156296372413635, -0.22737827897071838, -0.12376851588487625, 0.09543288499116898, 0.1653502732515335, 0.18040357530117035, -0.5173385143280029, 0.2536042630672455, -0.41711723804473877, 0.6929884552955627, -0.3667180836200714, -0.40302303433418274, 0.9439688324928284, -0.42701256275177, -0.4487302601337433, -0.09772520512342453, 1.060124158859253, 0.7818033695220947, -0.29683730006217957, 0.16549302637577057, -0.08624120056629181, -0.4209778606891632, 0.2884587049484253, -1.0976042747497559, -0.2414090633392334, 0.08491361141204834, -0.9276753067970276, -0.3696964383125305, 0.6531851291656494, -1.2042548656463623, -0.20804272592067719, -0.22971723973751068, -0.20030327141284943, 0.0558461919426918, -0.5962976217269897, -0.33407217264175415, -0.2858635187149048, 0.7290379405021667, 0.6495656967163086, -0.06562978029251099, 0.46224427223205566, 0.596953809261322, 1.0162851810455322, -0.008387434296309948, -0.4441402554512024, -0.13361197710037231, -0.17153896391391754, -0.3819609582424164, 1.0746688842773438, -0.36730170249938965, -0.2206340879201889, -0.19531875848770142, 0.5606088638305664, -0.01968907192349434, -0.5858121514320374, 0.9210650324821472, -0.6190486550331116, 0.23987716436386108, -0.49001145362854004, -0.11030547320842743, -0.35592523217201233, 0.3391573131084442, -0.7653804421424866, 1.3172943592071533, 0.21848900616168976, -1.194434404373169, 0.36709970235824585, -0.46202197670936584, 0.09321881830692291, 0.3146458566188812, -0.2263972908258438, -0.6675840616226196, -0.17159517109394073, -0.0018117532599717379, 0.38152045011520386, -0.5769665241241455, 0.20913562178611755, -0.4642738699913025, -0.16699841618537903, 0.22342291474342346, -0.5667036175727844, 0.7610488533973694, 0.736390233039856, 0.20312504470348358, 0.075107641518116, -0.7690390944480896, 0.17253170907497406, 0.1641215831041336, -0.07265717536211014, -0.1049240231513977, -0.43047839403152466, 0.3908941149711609, 0.21709997951984406, 0.3613463342189789, -0.9368852376937866, -0.3199927508831024, 0.43802085518836975, 0.14288578927516937, 0.4982602894306183, 0.08038302510976791, 0.18926598131656647, -0.5420216917991638, 0.1978999376296997, 0.3057135343551636, 0.17386771738529205, 0.03480055555701256, -0.5957625508308411, -0.17564010620117188, -0.3870430290699005, 0.36235010623931885, 0.5019519329071045, -0.575279951095581, 0.7127459049224854, -0.22438769042491913, -0.8783801794052124, 0.09304653853178024, -0.37982285022735596, 0.2446867674589157, 1.012688398361206, 0.5203871726989746, -0.18975228071212769, -0.84300696849823, -0.8330777287483215, 0.2938899099826813, 0.04329067841172218, -0.043405428528785706, 0.4568827748298645, 0.3806721568107605, 0.22806811332702637, 0.7472465634346008, -0.7460058331489563, -0.4782859981060028, -0.14521342515945435, 0.07941635698080063, 0.16107900440692902, 0.677389919757843, 0.7874664664268494, -0.8844413757324219, -0.19183102250099182, -0.1682852953672409, -0.8114721775054932, -0.10328084230422974, 0.003975121304392815, -0.28435540199279785, 0.23017829656600952, 0.5001224279403687, -0.09554871171712875, 0.7814098596572876, 0.036075517535209656, -0.29407551884651184, 0.6770538687705994, -0.22702433168888092, 0.7177476286888123, -1.0223592519760132, 0.1310742199420929, 0.4852902293205261, 0.02610655687749386, -0.2305997908115387, 0.11821682006120682, -0.015023401007056236, -0.10394761711359024, -0.752852201461792, 0.1267194151878357, -0.2754706144332886, -0.3611963093280792, -0.34379833936691284, -0.33782413601875305, 0.23146386444568634, 0.5402970910072327, 0.5354856252670288, 0.3838198482990265, 0.736716628074646, -0.8118824362754822, 0.5618413686752319, 0.27571579813957214, -0.5429016947746277, 0.745356023311615, -0.6327695846557617, -0.2766913175582886, 0.006561333313584328, 0.40593671798706055, -0.8155603408813477, -0.18806709349155426, 0.09722133725881577, -0.2876564860343933, 0.21566207706928253, -0.30151334404945374, -0.6641258001327515, -0.19436241686344147, -0.3454257845878601, 0.7355260252952576, 0.5355896949768066, -0.7248551249504089, 0.37502360343933105, 0.11710835248231888, 0.3968454897403717, -0.48698633909225464, -0.8771798014640808, -0.16507922112941742, -0.4274604320526123, -0.1698371171951294, 0.5477466583251953, 0.39197713136672974, 0.16309237480163574, 0.24266667664051056, 0.050706181675195694, -0.19052624702453613, -0.2522033452987671, 0.45041269063949585, 0.36355477571487427, -0.29433131217956543, -0.10179848968982697, -0.35712406039237976, -0.3071504831314087, 0.21808567643165588, 0.22595776617527008, 0.24960604310035706, -0.44707775115966797, -0.21033701300621033, -0.6494208574295044, 0.10495897382497787, 0.44551974534988403, -0.05602136626839638, 0.5284812450408936, 0.7933807373046875, -0.5640010237693787, 0.03266120329499245, -0.38137248158454895, 0.10564108192920685, -0.44597622752189636, 0.5362592935562134, -0.3879546821117401, -0.11442597210407257, 0.7851460576057434, -0.37677520513534546, 0.05807682126760483, 0.8630995750427246, -0.40980038046836853, -0.19766438007354736, 0.13837726414203644, 0.11927570402622223, -0.018852803856134415, 0.5477210283279419, -0.5428151488304138, -0.35058146715164185, -1.5208899974822998, -0.6876437067985535, -1.0013155937194824, -0.6162837743759155, -0.6241060495376587, -0.4182239770889282, -0.13298927247524261, -0.17956413328647614, -0.8624611496925354, 0.6303463578224182, -0.8910872936248779, 0.26340582966804504, 0.5677701830863953, 0.4977906346321106, 0.052590496838092804, 0.22402362525463104, 0.018850667402148247, -0.24307763576507568, -0.6635523438453674, -0.27894362807273865, 0.7256796956062317, 0.4787518084049225, 0.526136577129364, 0.02376639097929001, 0.7474923133850098, 0.19200091063976288, -0.3328380286693573, -0.2656373381614685, 1.0981272459030151, -0.0898614153265953, -0.3530747592449188, -0.2326190322637558, -0.501274824142456, -1.0132547616958618, 0.3452332615852356, 0.0030710382852703333, -0.6605924963951111, 0.9567855000495911, -0.2790234088897705, -0.11494657397270203, 0.8709913492202759, -0.38335180282592773, 0.84543776512146, 0.015695633366703987, -0.3580673038959503, -0.028737958520650864, -0.5550724267959595, 0.3126641809940338, 0.3096168637275696, 0.1593480408191681, -0.25696447491645813, -0.46161535382270813, 1.0536493062973022, -0.7008823156356812, 0.7339595556259155, -0.6968756318092346, 0.5202996730804443, 0.6302919983863831, -0.48111990094184875, 0.2507948875427246, 0.21017591655254364, -0.25019571185112, 0.6213645935058594, 0.1026088297367096, -0.5032263994216919, -0.33222243189811707, 0.6587907671928406, -0.9001713395118713, -0.10489623993635178, -1.1765073537826538, -0.2751607894897461, 0.24277059733867645, 0.11290279775857925, 0.5658496618270874, 0.9680438041687012, -0.13262157142162323, 0.37294238805770874, 0.640830934047699, -0.24809733033180237, 0.6228763461112976, 0.44326984882354736, -0.0561688095331192, -0.531420886516571, 1.003389835357666, 0.2083173394203186, 0.002430313266813755, 0.38840171694755554, 0.16334061324596405, -0.33692169189453125, -0.680073618888855, -0.1478470265865326, -0.18336765468120575, -0.7976204752922058, -0.8766421675682068, -0.37938421964645386, -0.6980656981468201, -0.03359724208712578, 0.04663347080349922, -0.31879496574401855, -0.06947895139455795, -0.501305103302002, 0.061101071536540985, 0.6816727519035339, 0.20740056037902832, -0.2273803949356079, -0.034412771463394165, -0.8002389073371887, 0.3311152458190918, -0.04503640905022621, 0.4265371263027191, 0.2073684185743332, -0.8263518810272217, 0.046919986605644226, -0.24461588263511658, -0.3085189759731293, -0.4335555136203766, 0.325521856546402, 0.1749068945646286, 0.8498809337615967, 0.2388322800397873, 0.767033576965332, 0.9321027398109436, -0.055495426058769226, 0.869336724281311, 0.06490905582904816, -0.5755706429481506, 0.42340001463890076, 0.09110549092292786, 0.6312747001647949, 0.7457630038261414, 0.13126343488693237, -0.014795351773500443, 0.20208740234375, -1.052780032157898, -0.7257822751998901, 0.9435908794403076, -0.22126100957393646, -0.24212972819805145, 0.140513613820076, 0.07558787614107132, -0.17336112260818481, 0.14887213706970215, -0.6219871044158936, -0.12834589183330536, -0.6413037776947021, 0.23744311928749084, 0.5312474966049194, -0.10590954124927521, -0.18196938931941986, -0.5969236493110657, 0.5376656651496887, -0.13699224591255188, 0.8340855836868286, 0.37309327721595764, 0.3121972382068634, -0.02348998561501503, 0.11447559297084808, 0.5742278099060059, 0.27583444118499756, -0.40704500675201416, 0.182909294962883, 0.35244104266166687, -0.8134680986404419, -0.10241290181875229, -0.010349763557314873, 0.05202523618936539, -0.12544019520282745, 0.6269879937171936, 0.5755234956741333, 0.15559357404708862, 0.04012827202677727, 0.5527639985084534, -0.08719852566719055, -0.892711877822876, -0.33829647302627563, 0.025409996509552002, -0.3654445707798004, 0.13004346191883087, 0.5813009738922119, 0.7603282928466797, 0.4496161937713623, -0.1628676801919937, 0.259821355342865, 0.18965186178684235, 0.003143181325867772, 0.1550208479166031, 0.2708244025707245, 0.059743814170360565, 0.04227092117071152, 1.0442348718643188, -0.7779786586761475, -0.39173978567123413, 1.1277220249176025, 0.31796741485595703, 1.052069902420044, 0.06379886716604233, 0.03358141705393791, 1.0693737268447876, 0.16720466315746307, -0.005494897253811359, 0.5813076496124268, -0.29882925748825073, -0.7235664129257202, -0.0006838674307800829, -0.3814581334590912, -0.48335540294647217, 0.2566637396812439, -1.1008354425430298, 0.27550679445266724, -0.6944758296012878, 0.1018531545996666, -0.12513940036296844, 0.4445965588092804, -0.7452217936515808, 0.3046380281448364, -0.0881178006529808, 1.4370883703231812, -0.862317681312561, 0.8625419735908508, 0.6838275194168091, -0.14915166795253754, -0.8023739457130432, -0.09205486625432968, -0.1242847815155983, -0.2903136610984802, 0.49547916650772095, 0.3895813226699829, -0.028487587347626686, -0.3096340298652649, -0.622319221496582, -0.8906351923942566, 1.601218819618225, -0.134895458817482, -0.4560185968875885, 0.8698946833610535, -0.0608334019780159, 0.31948620080947876, -0.37756672501564026, 0.4382486343383789, -0.038235899060964584, 0.6479992866516113, 0.92690110206604, -0.6567291617393494, 0.21006791293621063, -0.4478197693824768, 0.1958025097846985, 0.06729554384946823, -0.7416478395462036, 0.4442260265350342, -0.36766278743743896, -0.44939079880714417, 0.2262273132801056, 1.0580055713653564, 0.34968459606170654, 0.7189074754714966, 0.507753312587738, 0.8224445581436157, 0.6680293679237366, -0.6220440864562988, 0.569799542427063, 0.19407297670841217, 0.1973010152578354, 1.0910903215408325, -0.34026288986206055, 1.2012931108474731, 0.2083088606595993, -0.620439350605011, 0.8111691474914551, 1.001647710800171, -0.8931909203529358, 1.1050386428833008, 0.06227237358689308, -0.012680848129093647, 0.002791216829791665, 0.0249542985111475, -0.7847475409507751, 0.2296632081270218, 0.13853563368320465, -0.20030604302883148, -0.4776347279548645, -0.02655024267733097, -0.45684778690338135, 0.1358126550912857, -0.46860721707344055, 0.7674137353897095, -0.15376494824886322, -0.2505549192428589, 0.393993616104126, -0.04815449193120003, 0.6679848432540894, -0.37705013155937195, -0.24343366920948029, 0.12189646065235138, 0.17272336781024933, -0.9651533365249634, -1.0097426176071167, 0.6627987623214722, -0.12685377895832062, -0.151141956448555, 0.12577617168426514, 0.459659606218338, 0.14260655641555786, -0.5490979552268982, -0.2942555546760559, -0.21448692679405212, 0.6034502983093262, 0.2731153964996338, -0.8729175925254822, 0.276998907327652, -0.08683314174413681, -0.15702006220817566, 0.5933117270469666, 0.5817956924438477, 0.04694035276770592, 0.6100850105285645, 0.5263364911079407, -0.3019193112850189, -0.11163832247257233, -0.14433661103248596, 0.9451320767402649, -0.8439477682113647, -0.6029136776924133, -0.37857744097709656, 0.6580458283424377, -0.5710061192512512, -0.6525830626487732, 0.6964321136474609, 0.9341994524002075, 0.6867252588272095, -0.09386732429265976, 0.5669082403182983, -0.37064921855926514, 0.33435311913490295, -0.3060957193374634, 0.11675999313592911, -0.30726292729377747, 0.38749685883522034, -0.16196702420711517, -0.7932013273239136, -0.3087542653083801, 0.5962071418762207, -0.10505492985248566, 0.4408169984817505, 1.0391488075256348, 0.8932859301567078, 0.03722565621137619, 0.2803371548652649, 0.2754523754119873, -0.27605679631233215, 0.03128781169652939, 0.27405789494514465, 0.6262049078941345, -0.9231961965560913, 0.2853822410106659, -0.5289750695228577, -0.3190699815750122, 0.15992389619350433, -1.4210413694381714, -0.6482913494110107, -0.7151820063591003, -0.9916854500770569, -0.2565999925136566, -0.573445737361908, 0.7260636687278748, 0.8492016196250916, -0.9072148203849792, -0.13274657726287842, -0.4016973078250885, 0.16029557585716248, -0.4367988407611847, -0.24494139850139618, 0.5528272390365601, -0.07801126688718796, -0.6083875298500061, -0.0607963465154171, -0.06258981674909592, 0.06955033540725708, -0.1009717732667923, -0.3928818702697754, -0.05231587588787079, -0.5063796043395996, -0.17520971596240997, 0.49231240153312683, -0.9459651708602905, 0.23658818006515503, -0.3276524543762207, -0.12353543937206268, 0.2390585094690323, 0.22283108532428741, -0.7256559729576111, -0.13575446605682373, 0.7709740400314331, 0.22338874638080597, 0.2822473645210266, 0.13369733095169067, 0.00021692729205824435, -0.8031641840934753, 0.34478700160980225, -0.08312277495861053, 0.5501099228858948, 0.2929382622241974, -0.47410744428634644, 0.6417632102966309, 0.3128283619880676, -0.7858729958534241, -0.9725617170333862, -0.11879035830497742, -1.4686195850372314, -0.0004285495087970048, 0.9215139150619507, -0.3560195565223694, -0.5121070742607117, -0.10344808548688889, -0.17973710596561432, -0.08640889078378677, -0.5479766130447388, 0.1419423669576645, 0.27180835604667664, 0.0935601219534874, -1.0441821813583374, -0.2578441798686981, 0.45850908756256104, -0.5235404372215271, -1.0337468385696411, -0.033408522605895996, 0.15145114064216614, 0.1499045491218567, 0.47685375809669495, -0.014842523261904716, -0.48340079188346863, 0.4902472198009491, 0.4248022735118866, 0.40213820338249207, -0.5729176998138428, -0.222552090883255, -0.43265247344970703, 0.31463754177093506, 0.2071612924337387, -1.1093051433563232 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
fujiki/japanese_hh-rlhf-49k
fujiki
2023-05-28T06:08:04Z
216
2
null
[ "language:ja", "license:mit", "region:us" ]
2023-05-28T06:08:04Z
2023-05-28T05:55:53.000Z
2023-05-28T05:55:53
--- license: mit dataset_info: features: - name: instruction dtype: string - name: input dtype: string - name: output dtype: string - name: index dtype: string splits: - name: train num_bytes: 34168978 num_examples: 49332 download_size: 18427777 dataset_size: 34168978 language: - ja --- - This is a little bit different version of [`kunishou/hh-rlhf-49k-ja`](https://huggingface.co/datasets/kunishou/hh-rlhf-49k-ja) without `ng_translation == 1` examples. - Please also refer to the original dataset [`kunishou/hh-rlhf-49k-ja`](https://huggingface.co/datasets/kunishou/hh-rlhf-49k-ja).
[ -0.3201635181903839, -0.5265271663665771, 0.2939685881137848, 0.34497904777526855, -0.6283565163612366, -0.22493015229701996, -0.1914072483778, -0.439037024974823, 0.9585498571395874, 0.5050045251846313, -1.3262807130813599, -0.40864694118499756, -0.6267452836036682, 0.4950641095638275, 0.05396588146686554, 0.8601764440536499, -0.16211970150470734, 0.290539413690567, -0.05101160332560539, -0.4447222948074341, -0.14526808261871338, -0.2761225402355194, -0.6724228858947754, -0.4245251715183258, 0.6234210133552551, 0.6153281927108765, 1.031272530555725, 0.6181092262268066, 0.8671055436134338, 0.19812709093093872, 0.07168886065483093, -0.41316068172454834, -0.4952177405357361, -0.26440465450286865, 0.3523600995540619, -0.4699341058731079, -0.9254522919654846, 0.014974855817854404, 0.7732512950897217, 0.6040406227111816, -0.058241963386535645, 0.3402023911476135, -0.3355243504047394, 1.0662096738815308, -0.3512677550315857, 0.3010941743850708, -0.197389617562294, 0.32553887367248535, -0.3574405014514923, 0.3775269687175751, -0.1581835001707077, -0.27233967185020447, 0.07226937264204025, -1.106819987297058, 0.10644201189279556, 0.2597670555114746, 1.3881160020828247, 0.13405901193618774, -0.08713492751121521, 0.17685990035533905, -0.08892061561346054, 0.7684662342071533, -1.2102949619293213, 0.37676090002059937, 0.787333071231842, 0.7233291268348694, -0.11953222751617432, -0.5082852840423584, -0.5304908156394958, -0.08301513642072678, -0.27057430148124695, 0.1457858681678772, 0.06281648576259613, -0.21482817828655243, 0.5092266201972961, 0.4008537828922272, -0.5162236094474792, -0.2831934988498688, -0.3992518484592438, -0.36781442165374756, 0.8471939563751221, 0.040675509721040726, 0.5446110963821411, -0.835067868232727, -0.31304869055747986, -0.7482878565788269, -1.0410525798797607, -0.31586435437202454, 0.33237218856811523, 0.5803247690200806, -0.9498135447502136, 0.5998985171318054, -0.5853001475334167, 0.6657695770263672, 0.36474016308784485, -0.34395724534988403, 1.0674973726272583, -0.11031392961740494, -0.3973349928855896, -0.10980536043643951, 1.0314886569976807, 0.7220119833946228, 0.4758922755718231, -0.0238450076431036, 0.17519892752170563, -0.344510942697525, -0.18857912719249725, -1.052476406097412, -0.4220147430896759, -0.17044484615325928, -0.8227021098136902, -0.4181956946849823, 0.4097866117954254, -1.14573073387146, -0.01578327640891075, -0.02966909483075142, 0.16852959990501404, -0.3433064818382263, -0.5700276494026184, -0.08454687893390656, 0.021583998575806618, 0.4234766662120819, 0.20543615520000458, -0.45386844873428345, 0.5463428497314453, 0.6062387228012085, 0.6375784873962402, -0.01600966602563858, -0.4066685140132904, -0.29839888215065, -0.2393721044063568, -0.16946427524089813, 0.26398926973342896, -0.5908108353614807, -0.6423762440681458, -0.040977396070957184, 0.4978397488594055, 0.20329606533050537, -0.5538591146469116, 0.7599623203277588, -0.4932897686958313, 0.30038219690322876, -1.08903968334198, -0.12665295600891113, -0.378263384103775, 0.11833745986223221, -0.9126850366592407, 0.8194164633750916, 0.6549352407455444, -0.6908905506134033, 0.4759822189807892, -0.5246326327323914, -0.45436012744903564, 0.027160266414284706, 0.18131111562252045, -0.7202422618865967, -0.10895856469869614, -0.10371148586273193, 0.12788553535938263, -0.08862215280532837, -0.04607752338051796, -0.7824379801750183, -0.10995588451623917, 0.21508073806762695, -0.21963824331760406, 0.9383095502853394, 0.4144207537174225, 0.0493946298956871, -0.15594223141670227, -0.9802170991897583, 0.018229292705655098, 0.4329651892185211, -0.04966764152050018, -0.44652965664863586, -0.1670181155204773, 0.21219728887081146, 0.2170298844575882, 0.43209215998649597, -0.7758877873420715, 0.4242597818374634, -0.2708491384983063, 0.02617640234529972, 0.4799078106880188, 0.06591115891933441, 0.6221120953559875, -0.7162615060806274, 0.900981605052948, 0.05444280803203583, 0.1437898427248001, 0.3200615644454956, -0.9604735970497131, -0.6585662364959717, -0.32621413469314575, 0.3900394141674042, 0.5141769647598267, -0.7979258298873901, 0.09036775678396225, -0.34333762526512146, -0.6203877329826355, -0.7792423367500305, 0.009734614752233028, 0.3473814129829407, 0.4850543439388275, 0.4199253022670746, -0.35122036933898926, -1.0824612379074097, -0.8971357345581055, -0.3282147943973541, -0.17178678512573242, 0.4544757306575775, 0.3620908856391907, 0.4723430573940277, -0.30326566100120544, 0.6179409027099609, -0.6735736131668091, 0.12699328362941742, 0.03463846817612648, 0.03863180801272392, 0.5193308591842651, 0.6084408164024353, 0.9058831334114075, -0.845663845539093, -0.9781305193901062, 0.07333411276340485, -0.7581943869590759, -0.2115701138973236, -0.19944721460342407, -0.7648365497589111, -0.09970691055059433, 0.15242736041545868, -0.8897539973258972, 0.7936530709266663, 0.2122231125831604, -0.5883063077926636, 0.41192626953125, 0.0763239786028862, 0.4400828778743744, -1.355940818786621, 0.19919206202030182, 0.007098861504346132, -0.8082922101020813, -0.7124336361885071, 0.6656240224838257, 0.3326103687286377, 0.17003414034843445, -0.6514708995819092, 0.647516131401062, -0.5108881592750549, 0.056008026003837585, -0.09151891618967056, -0.009116885252296925, -0.21171216666698456, 0.45053139328956604, -0.19325830042362213, 0.3365253508090973, 0.5490338802337646, -0.24895986914634705, 0.8581212759017944, 0.851021945476532, -0.28934910893440247, 0.5362018942832947, -0.7090334296226501, 0.004147909581661224, -0.18045006692409515, 0.2537155747413635, -0.5890907645225525, -0.5893701910972595, 1.1189322471618652, -0.2344498634338379, 0.35564279556274414, -0.41069281101226807, -0.5348409414291382, -0.27355656027793884, -0.7071475386619568, 0.8380112648010254, 1.0124396085739136, -0.33554840087890625, 0.13676871359348297, 0.1234491690993309, -0.3640815317630768, -0.669340193271637, -0.9801307916641235, 0.06963878124952316, -0.6153061985969543, -0.12093009054660797, 0.3114373981952667, -0.1261013150215149, -0.13150326907634735, 0.09547257423400879, -0.20494279265403748, -0.27175191044807434, -0.037403181195259094, 0.08443540334701538, 0.5010170936584473, -0.37616318464279175, -0.4225139915943146, 0.01240475196391344, -0.16048461198806763, 0.19638225436210632, 0.5254057049751282, 0.3890085816383362, 0.2842520475387573, -0.24386027455329895, -0.5378667116165161, 0.5027936697006226, 0.40688735246658325, 0.329788476228714, 0.4779004454612732, 0.8704192638397217, -0.6421884894371033, 0.3532968759536743, -0.17910237610340118, -0.16618670523166656, -0.49116528034210205, 0.0851064920425415, -0.5250426530838013, -0.42004844546318054, 1.0214461088180542, 0.39864224195480347, -0.3907448649406433, 0.9146880507469177, 0.09934830665588379, -0.1894485503435135, 0.933086097240448, 0.5272172093391418, -0.38421669602394104, 0.6631033420562744, 0.11510422080755234, -0.24121935665607452, -0.9153444170951843, -0.19334545731544495, -0.23275987803936005, -0.5476536154747009, -1.0322978496551514, -0.1040467917919159, 0.06787258386611938, 0.1116165816783905, -0.39034587144851685, 0.8069236874580383, -0.13003009557724, 0.42603033781051636, 0.2757228910923004, 0.4623152017593384, 0.1773546189069748, 0.17211458086967468, 0.3649437725543976, -0.4871752858161926, -0.7172222137451172, 0.11303570121526718, 0.9010807871818542, 0.18100816011428833, 0.9454522132873535, 0.5552775859832764, 0.538689911365509, -0.02855418063700199, 0.4342995584011078, -0.4475162625312805, 0.40944719314575195, -0.3269892930984497, -0.6764655113220215, -0.03829074278473854, -0.8393551707267761, -0.7993719577789307, 0.05619153752923012, -0.27362361550331116, -0.5827399492263794, 0.17209382355213165, -0.18817836046218872, -0.045610781759023666, -0.01608050800859928, -0.5655488967895508, 1.066389560699463, 0.23215043544769287, 0.11305603384971619, 0.018380844965577126, -0.7411357760429382, 0.22421665489673615, 0.03515256196260452, 0.3308788239955902, -0.3536527752876282, 0.12517516314983368, 0.905916690826416, -0.8996817469596863, 1.0872081518173218, -0.5336896777153015, 0.0026038410142064095, 0.36652863025665283, 0.1705216020345688, 0.6878045797348022, 0.18790091574192047, -0.21768060326576233, -0.06285747140645981, 0.15622445940971375, -0.5498685836791992, -0.40896663069725037, 0.8953329920768738, -0.8192042112350464, -0.3761537969112396, -0.22694921493530273, -0.2696819603443146, 0.10519549995660782, 0.43424293398857117, 0.6450086236000061, 0.5095343589782715, -0.12515677511692047, 0.12818890810012817, 0.31008216738700867, 0.19367840886116028, 0.45629388093948364, 0.43813440203666687, -0.5495482683181763, -0.46731093525886536, 0.6949976682662964, 0.046355314552783966, 0.3623450994491577, 0.4708903431892395, 0.6920744776725769, -0.3777488172054291, 0.10634902119636536, -0.7931151390075684, 0.5435348153114319, -0.6873077750205994, -0.41851767897605896, -0.17793917655944824, 0.06596121191978455, -0.4370260238647461, -0.05834479629993439, -0.1923176348209381, -0.757278561592102, -0.4915752112865448, 0.00448682252317667, 1.2607765197753906, 0.4195285141468048, -0.440105140209198, 0.5063126087188721, -0.8160790205001831, 0.8312302827835083, 0.1141086295247078, 0.5908681154251099, -0.15803225338459015, -0.8881143927574158, -0.25176188349723816, 0.3096145987510681, 0.24408499896526337, -1.247694969177246, 0.42755264043807983, 0.4018111228942871, 0.5739991068840027, -0.04073553532361984, 0.0030244411900639534, 0.902097761631012, -0.5823295712471008, 0.7670894861221313, 0.3423086702823639, -0.8144683837890625, 0.44865092635154724, -0.33920833468437195, 0.6161588430404663, 1.0797581672668457, 0.33374035358428955, -0.6400539875030518, 0.08920764923095703, -0.9676355123519897, -0.6996560096740723, 0.834740400314331, -0.044923439621925354, -0.0001978073560167104, 0.391978919506073, 0.6704763174057007, 0.6424455046653748, 0.20792852342128754, -0.9790380597114563, -0.9073710441589355, -0.4917222261428833, -0.5928279757499695, -0.08420175313949585, -0.13339608907699585, -0.16313141584396362, -0.5002148151397705, 0.8157733678817749, -0.15903319418430328, 0.2574455440044403, 0.2419918328523636, -0.19238147139549255, -0.6864121556282043, -0.2551405131816864, 0.5341871976852417, 0.18990154564380646, -0.54046231508255, -0.2958593964576721, 0.12283157557249069, -0.7099968194961548, -0.08810500055551529, 0.10090797394514084, -0.3924311399459839, 0.3350260257720947, 0.4026795029640198, 1.022809386253357, 0.4480036199092865, -0.2126377373933792, 0.6476879715919495, 0.01832406595349312, -0.07925144582986832, -0.3169283866882324, -0.14816056191921234, 0.03632790967822075, -0.03898592293262482, -0.11205238848924637, 0.2810772657394409, 0.1654408723115921, -0.4896219074726105, 0.36444124579429626, 0.31658998131752014, -0.4353247582912445, -0.4743199646472931, 0.4273943305015564, -0.01208524964749813, -0.49032336473464966, 0.42048710584640503, -0.48846742510795593, -0.24428723752498627, 0.6060248017311096, 0.5077697038650513, 1.1567482948303223, -0.055694252252578735, 0.44125524163246155, 0.6895108819007874, 0.18169668316841125, -0.14580869674682617, 0.8778752684593201, -0.21346871554851532, -0.6420329809188843, -0.5805098414421082, -0.4431489408016205, -0.414072185754776, -0.01979193463921547, -1.2979215383529663, 0.3156844675540924, -0.5893304347991943, 0.00828874297440052, -0.1409597247838974, -0.16539379954338074, -0.8969511389732361, 0.3057791292667389, -0.11825170367956161, 0.9171472787857056, -0.8263465166091919, 0.956656813621521, 1.1829426288604736, -0.2603839933872223, -0.7796988487243652, -0.19193589687347412, 0.009779808111488819, -0.9490561485290527, 0.1692643016576767, -0.21267075836658478, 0.3141196668148041, -0.4692136347293854, -0.8126538395881653, -1.0756975412368774, 0.9162412881851196, 0.045217644423246384, -0.5935279726982117, 0.22496411204338074, 0.32103824615478516, 0.4331549406051636, -0.25376424193382263, -0.07407251000404358, 0.37268465757369995, 0.725858747959137, -0.1869155615568161, -0.8132813572883606, 0.282747745513916, -0.37995702028274536, -0.20971673727035522, 0.3073350191116333, -1.0093529224395752, 0.6665557622909546, 0.058259665966033936, -0.2042257934808731, 0.5391091704368591, 0.4566327631473541, 0.18535754084587097, 0.18638953566551208, 0.3189247250556946, 0.8115182518959045, 0.19253884255886078, -0.3466954529285431, 1.0094407796859741, 0.09768010675907135, 0.9323574304580688, 1.1039155721664429, -0.08845075964927673, 0.8081042170524597, 0.6732561588287354, -0.5982452034950256, 0.7564604878425598, 0.7925599217414856, -0.12994426488876343, 1.0133224725723267, -0.004592015873640776, -0.07198163121938705, -0.05543910339474678, 0.45907512307167053, -0.8667500019073486, 0.2843705713748932, 0.1349073350429535, -0.020070303231477737, -0.27849748730659485, -0.21350565552711487, 0.49937257170677185, -0.014420382678508759, -0.15514948964118958, 0.6634773015975952, 0.39667999744415283, -0.2815908193588257, 0.644105076789856, 0.026332978159189224, 0.7328090667724609, -0.6738425493240356, 0.13786613941192627, -0.11876145750284195, -0.2288084179162979, -0.27838215231895447, -0.7347550988197327, 0.5112411975860596, 0.08991067856550217, -0.28950655460357666, -0.40536025166511536, 0.9419244527816772, -0.44316452741622925, -0.954095184803009, -0.04996028542518616, 0.5283321142196655, 0.2987101972103119, 0.39850935339927673, -1.0644562244415283, 0.16260303556919098, 0.30147913098335266, -0.4898045063018799, 0.20799461007118225, 0.21919287741184235, 0.46257299184799194, 0.4716666638851166, 0.4484279751777649, 0.06741262972354889, 0.008599115535616875, 0.19732193648815155, 0.3007033169269562, -0.9101108908653259, -0.554024875164032, -0.8742419481277466, 0.3444708585739136, -0.1756485402584076, -0.894597053527832, 0.7766954898834229, 0.09359022229909897, 0.8881412744522095, -0.5802727341651917, 0.643196702003479, -0.47315025329589844, 0.4771554172039032, -0.6896350979804993, 0.7874486446380615, -0.8382279276847839, -0.32756033539772034, -0.6573210954666138, -0.9580376744270325, -0.423267126083374, 1.10480535030365, 0.13726457953453064, 0.19706504046916962, 0.7150784730911255, 0.7353181838989258, -0.058683041483163834, 0.07367841899394989, 0.2104213833808899, 0.4226438105106354, -0.17631380259990692, 0.45817282795906067, 0.6365747451782227, -1.248045563697815, -0.04140966013073921, -0.6124652028083801, -0.07323230803012848, -0.21706923842430115, -1.278866171836853, -0.5605456233024597, -0.5803061723709106, -0.644037663936615, -0.4692417085170746, -0.30266061425209045, 1.0386892557144165, 0.7567793726921082, -0.9238521456718445, -0.05878988280892372, 0.08772562444210052, 0.06979247182607651, -0.19358870387077332, -0.32759907841682434, 0.15749241411685944, 0.6258135437965393, -0.609663188457489, 0.28820499777793884, -0.2769125699996948, 0.3331487774848938, 0.13985416293144226, -0.23677359521389008, -0.1391938030719757, -0.35320523381233215, 0.11473628878593445, 0.7710354924201965, -0.7226026058197021, -0.7815067768096924, -0.20563822984695435, -0.18608112633228302, 0.39775392413139343, 0.2879381775856018, -0.7164859175682068, 0.12663668394088745, 0.8882961273193359, 0.3664637804031372, 0.6446393728256226, -0.068041130900383, 0.3199364244937897, -0.739562451839447, 0.41061902046203613, -0.30644553899765015, 0.6624734997749329, 0.6734767556190491, -0.4791771173477173, 0.387873113155365, 0.549735426902771, -0.2074388861656189, -0.5911852121353149, 0.45260459184646606, -1.6032507419586182, 0.15141038596630096, 1.2325299978256226, 0.003322113770991564, -0.33353543281555176, 0.4923100173473358, -0.34121909737586975, 0.43343546986579895, -0.5547304153442383, 0.5350059270858765, 0.9324538111686707, 0.3839322328567505, -0.18192483484745026, -0.46607571840286255, 0.5187942981719971, 0.513978123664856, -0.6410399675369263, -0.22590887546539307, 0.07636760920286179, 0.5094422101974487, 0.09437508881092072, 0.6890149712562561, -0.36708056926727295, 0.3683848977088928, 0.1177668645977974, -0.05526111274957657, 0.20279337465763092, 0.1487022191286087, -0.33765900135040283, -0.3523316979408264, 0.08651639521121979, -0.33616840839385986 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
OdiaGenAI/sentiment_analysis_hindi
OdiaGenAI
2023-10-16T14:34:14Z
216
0
null
[ "task_categories:text-classification", "size_categories:1K<n<10K", "language:hi", "region:us" ]
2023-10-16T14:34:14Z
2023-10-16T14:22:08.000Z
2023-10-16T14:22:08
--- task_categories: - text-classification language: - hi size_categories: - 1K<n<10K --- Conventions followed to decide the polarity: - - labels consisting of a single value are left undisturbed, i.e. if label = 'pos', then it'll be pos - labels consisting of multiple values separated by '&' are processed. If all the labels are the same ('pos&pos&pos' or 'neg&neg'), then the shortened form of the multiple label is assigned as the final label. For example, if label = 'pos&pos&pos', then final label will be 'pos'. - labels consisting of mixed values ('pos&neg&pos' or 'neg&neu&pos') are rejected. Contributors: - - Kusumlata Patiyal
[ -0.6795996427536011, -0.4449094831943512, 0.47456952929496765, 0.30854758620262146, -0.8569353222846985, 0.06794780492782593, 0.05878733471035957, -0.29713937640190125, 0.5069599747657776, 0.5517950654029846, -0.4750211834907532, -0.4496159851551056, -0.7514509558677673, 0.43714284896850586, 0.19487683475017548, 1.3892525434494019, 0.016396362334489822, 0.13111118972301483, 0.016850922256708145, -0.8076895475387573, -0.18980243802070618, -0.7664638757705688, -0.34350693225860596, -0.5944314002990723, 0.21187613904476166, 0.7050383687019348, 0.9683871269226074, 0.10314752906560898, 0.4464830756187439, 0.18431872129440308, -0.5798442959785461, -0.20164065062999725, -0.3652011752128601, 0.33150988817214966, -0.18391399085521698, -0.37408971786499023, -0.4608919024467468, 0.7809078693389893, 0.4511277973651886, 1.2143436670303345, -0.036203183233737946, 0.46131178736686707, -0.05485265329480171, 1.0564961433410645, -0.8362216949462891, -0.07746098190546036, -0.18179503083229065, 0.3223437964916229, -0.060293640941381454, 0.021860601380467415, -0.583385169506073, -0.4290750026702881, 0.06155571714043617, -0.523432731628418, 0.14408525824546814, -0.04638233035802841, 0.9463587403297424, -0.14339756965637207, -0.7160890698432922, -0.4370080530643463, -0.9326799511909485, 0.7179428339004517, -0.3988829553127289, 0.1673440784215927, 0.3718057870864868, 0.18607570230960846, -0.08573680371046066, -0.37590542435646057, -0.7347497940063477, 0.1847219616174698, -0.06111353635787964, 0.7432600259780884, 0.4064890146255493, 0.017129838466644287, 0.38735800981521606, 0.5293024778366089, -0.16899864375591278, -0.2335258424282074, -0.5227166414260864, 0.258900910615921, 0.49137383699417114, 0.2587541341781616, 0.13831129670143127, -0.34843653440475464, -0.7628193497657776, 0.07086954265832901, -0.7894757390022278, 0.339729905128479, 0.6805756688117981, 0.2954051196575165, -0.011457095853984356, 1.0566149950027466, -0.17631888389587402, 0.5189851522445679, 0.34800609946250916, -0.3070060908794403, 0.33062753081321716, -0.8936192393302917, -0.18441241979599, 0.1256047934293747, 0.8425750732421875, 0.41101065278053284, 0.18408659100532532, 0.40366804599761963, -0.17942512035369873, 0.024729622527956963, -0.09986323118209839, -0.5823246836662292, -0.0025304744485765696, 0.2765813171863556, -0.7781090140342712, -0.2937653958797455, -0.012460070662200451, -0.8194551467895508, -0.4964000880718231, -0.5796641111373901, 0.27606838941574097, -0.10009092092514038, -0.4260033965110779, 0.23184029757976532, -0.4598526954650879, 0.5471012592315674, 0.4173339009284973, -0.7218090891838074, 0.3236483335494995, 0.5744239091873169, 0.5216951966285706, 0.23479510843753815, -0.0544070228934288, -0.008327562361955643, 0.017591234296560287, -0.31070828437805176, 0.7111611366271973, -0.8046196699142456, -0.7841037511825562, -0.36256349086761475, -0.18769997358322144, -0.09967945516109467, -0.5057238340377808, 0.8206575512886047, -0.5450999736785889, 0.4796466529369354, -0.5188006162643433, -0.30466753244400024, -0.21094481647014618, 0.007368563208729029, -0.8978285789489746, 0.5889559388160706, 0.18156374990940094, -0.8434653878211975, 0.7427036762237549, -0.18809574842453003, -0.4459688067436218, 0.17823436856269836, -0.24719016253948212, -0.813248336315155, 0.0003422049921937287, -0.2723735570907593, 0.3111870586872101, -0.35635384917259216, 0.4175921380519867, -0.7013095617294312, -0.10300928354263306, 0.2931169867515564, -0.24200762808322906, 1.4648948907852173, 0.32327795028686523, -0.15145882964134216, 0.1365349441766739, -0.9636968374252319, -0.16918553411960602, -0.19885973632335663, -0.28243929147720337, -0.3668578565120697, 0.08187740296125412, 0.00876298826187849, 0.5768017172813416, 0.019935324788093567, -0.7652724385261536, 0.5179322361946106, 0.03693397715687752, 0.44273313879966736, 0.9041692614555359, 0.09626481682062149, 0.5171357989311218, -0.22632023692131042, 0.8118804693222046, 0.3118087351322174, 0.5717254877090454, 0.4607895016670227, -1.0757554769515991, -0.7243720293045044, -0.27505433559417725, 0.2392626404762268, 0.7663742899894714, -0.6008945107460022, 0.21165968477725983, 0.2499917894601822, -0.5043670535087585, -0.23536686599254608, -0.1474171280860901, 0.20901672542095184, 0.6478484869003296, 0.17597602307796478, -0.337103933095932, -0.6169884204864502, -1.04592764377594, -0.11738482117652893, -0.42571473121643066, 0.4548969566822052, 0.1411585956811905, 0.6501635313034058, -0.06066006049513817, 1.0767097473144531, -0.7302852869033813, -0.38179177045822144, -0.1976945549249649, 0.358258455991745, 0.7354291677474976, 0.29206711053848267, 0.1717308759689331, -0.9657508134841919, -0.9625003337860107, 0.0415169894695282, -0.5302087068557739, -0.15165582299232483, -0.01926867477595806, -0.11185449361801147, 0.4395821988582611, 0.31032171845436096, -0.9165873527526855, 0.7919817566871643, 0.14139951765537262, -0.6273720860481262, 1.4380508661270142, -0.12496810406446457, 0.18666952848434448, -0.9147000312805176, 0.05630812793970108, 0.023073595017194748, 0.06070562079548836, -0.6294516921043396, -0.3349085748195648, -0.02521887980401516, -0.27078691124916077, -0.43671756982803345, 0.3194717764854431, -0.6595152616500854, 0.04121330380439758, 0.07888151705265045, -0.20173831284046173, 0.2752744257450104, 0.24247270822525024, -0.035245493054389954, 0.615765392780304, 0.6642858386039734, -0.5741699934005737, 0.277567595243454, 0.3396412432193756, 0.1802229881286621, 1.1324360370635986, -0.5855196118354797, -0.3791019320487976, -0.28907880187034607, 0.23102152347564697, -1.4676984548568726, 0.1826900690793991, 0.8304123878479004, -0.3781038224697113, 0.20959702134132385, -0.18573160469532013, -0.4573618769645691, -0.38325235247612, -0.41113388538360596, 0.9052667021751404, 0.5198623538017273, -0.2630358934402466, 0.6976271867752075, 0.5089411735534668, -0.05535050481557846, -0.4771016240119934, -0.35146644711494446, -0.2226264476776123, -0.30934765934944153, -0.40299171209335327, -0.13658909499645233, -0.41987740993499756, -0.3290567100048065, 0.049899954348802567, -0.22725960612297058, -0.0828096941113472, -0.2844941020011902, 0.5341905355453491, 0.09277017414569855, -0.18506436049938202, -0.3479071259498596, 0.06679335981607437, -0.3120763897895813, 0.02220025099813938, 0.04882879927754402, 0.2090495377779007, -0.30517107248306274, -0.21342059969902039, -0.6592531800270081, 0.7746370434761047, 0.9249728918075562, -0.022704601287841797, 0.7954261302947998, 0.27216553688049316, 0.027316585183143616, 0.3629697561264038, -0.47240424156188965, 0.34049007296562195, -0.4901919662952423, -0.47440099716186523, -0.7758724689483643, -0.3577509820461273, 1.0840954780578613, 0.04758717492222786, -0.38245442509651184, 0.7241249680519104, 0.3938731551170349, -0.34214407205581665, 1.1753060817718506, 0.7264062762260437, 0.14829716086387634, 0.27851390838623047, -0.07028767466545105, 0.8284658789634705, -0.8632372617721558, -0.652077853679657, -0.5843633413314819, -0.07535142451524734, -1.0587152242660522, -0.1742110252380371, 0.39307260513305664, 0.4296301007270813, -0.1876879781484604, 0.09334306418895721, -0.8554577827453613, 0.6352587342262268, 0.5122358202934265, 0.2589099109172821, 0.23091453313827515, 0.0183255635201931, -0.12974730134010315, -0.06956412643194199, -0.6648744344711304, -0.5328291654586792, 0.9589594006538391, -0.03472200036048889, 0.592898964881897, 0.23721721768379211, 0.9117153286933899, 0.09200526773929596, 0.6641541719436646, -0.8050678968429565, 0.5068398714065552, -0.19491389393806458, -0.7066235542297363, -0.17192402482032776, -0.17191322147846222, -1.2383008003234863, 0.5785420536994934, -0.0023597734980285168, -0.5489047765731812, 0.767822265625, -0.13102835416793823, -0.3661145567893982, 0.2390306293964386, -0.8991921544075012, 0.6889446377754211, 0.04020188748836517, -0.10843400657176971, 0.3222505748271942, -0.8035247921943665, 0.5917850136756897, 0.25780463218688965, 0.5521646738052368, -0.27999985218048096, -0.0036968146450817585, 1.0068079233169556, -0.5538908243179321, 0.979124903678894, 0.04642786830663681, 0.11843433231115341, 0.8757635951042175, 0.11679530143737793, -0.12907913327217102, 0.31312134861946106, 0.005403133574873209, 0.06825117021799088, 0.14439140260219574, -0.7248278856277466, -0.021755322813987732, 0.30675894021987915, -1.202951431274414, -0.6751391887664795, -1.0070849657058716, -0.1605243682861328, 0.262310266494751, 0.4943382740020752, 0.6051446795463562, 0.4331871569156647, 0.0705437883734703, -0.20694425702095032, 0.5278403759002686, -0.07571118324995041, 0.30491966009140015, 0.4411119222640991, -0.21412788331508636, -1.2980188131332397, 0.7178961634635925, 0.5396535992622375, 0.4475839138031006, 0.10006919503211975, 0.4112991690635681, -0.18552415072917938, 0.006991442292928696, -0.27740511298179626, 0.4437789022922516, -1.008553147315979, -0.07898621261119843, -0.5507677793502808, -0.24829570949077606, -0.5706284642219543, -0.47947099804878235, -0.33342212438583374, -0.6347724199295044, -0.5402507781982422, 0.2351686805486679, 0.040142860263586044, 1.027097225189209, -0.364492267370224, 0.022888679057359695, -0.5725452303886414, 0.6767901182174683, 0.31994351744651794, 0.6799120903015137, -0.38417840003967285, -0.38293519616127014, 0.2566477358341217, -0.07195862382650375, -0.24909062683582306, -1.477750539779663, 0.17883729934692383, -0.1695045828819275, 0.6399909257888794, 0.4484420716762543, 0.15258260071277618, 0.36186209321022034, -0.2648949921131134, 0.7293863892555237, 0.4215824007987976, -1.1082096099853516, 0.6124491095542908, -0.4518848657608032, 0.29346764087677, 0.803454577922821, 0.7490602135658264, -0.5970965027809143, -0.46795007586479187, -1.0658495426177979, -1.4767512083053589, 0.6221798062324524, 0.32169395685195923, -0.5576056241989136, 0.059538330882787704, 0.166889026761055, 0.6672783493995667, 0.3101632595062256, -0.9960064888000488, -0.7540327906608582, -0.46571412682533264, 0.1013866439461708, -0.1910003423690796, -0.6698821187019348, -0.4229579567909241, -0.6289151906967163, 0.5495312213897705, 0.21019962430000305, 0.09767047315835953, 0.13690558075904846, 0.14890502393245697, -0.16563181579113007, 0.5450487732887268, 0.7813067436218262, 0.8532368540763855, -0.5526240468025208, 0.4841766357421875, -0.5195359587669373, -0.6117479801177979, 0.7112817168235779, -0.15950292348861694, -0.6210410594940186, 0.11896207183599472, -0.04176095873117447, 0.6788997650146484, -0.43442994356155396, -0.14020654559135437, 0.3616514503955841, -0.09518015384674072, -0.3491179943084717, -0.4941376745700836, -0.417449414730072, -0.1327676624059677, -0.339287132024765, 0.14281950891017914, 0.5524714589118958, -0.03536107763648033, -0.606305718421936, -0.012143891304731369, 0.4525664746761322, -0.23348040878772736, -0.4124273955821991, 0.346377968788147, 0.14404098689556122, -0.38114795088768005, 0.5779179334640503, -0.5880935788154602, -0.7731912732124329, 0.8548303842544556, 0.25633418560028076, 0.9061414003372192, -0.17196273803710938, 0.6786018013954163, 0.5096542239189148, 0.5793198943138123, 0.07579991221427917, 0.5907161831855774, -0.2076791226863861, -0.7018647789955139, -0.2174585610628128, -0.4817066788673401, -0.8723917603492737, 0.042020756751298904, -0.901237964630127, 0.26624438166618347, -0.5978251695632935, -0.36805716156959534, 0.13494007289409637, -0.19372496008872986, -0.5211080312728882, 0.2338007241487503, 0.15345822274684906, 0.4073081612586975, -1.760294795036316, 0.33580338954925537, 0.9745011329650879, -0.7675380110740662, -0.631078839302063, -0.3422902226448059, -0.16099615395069122, -0.1092393547296524, 0.7620842456817627, 0.16071240603923798, 0.021678058430552483, -0.5026095509529114, -0.5211580395698547, -1.226958155632019, 0.6563688516616821, -0.13252505660057068, -0.031891804188489914, 0.9442238211631775, 0.6336979866027832, 0.7998371124267578, -0.11716149002313614, 0.5208098292350769, 0.6078639626502991, 0.7076441049575806, 0.009080997668206692, -1.0195364952087402, -0.027369726449251175, -0.5092180371284485, -0.2567407488822937, 0.34191563725471497, -1.0080983638763428, 1.2730377912521362, -0.10144706070423126, -0.23671752214431763, -0.5195378661155701, 0.35973066091537476, 0.5564813017845154, 0.713056206703186, 0.3079978823661804, 0.7628202438354492, 0.46333035826683044, -0.11875294148921967, 0.8443894386291504, -0.13227882981300354, 0.4700990617275238, 0.8157560229301453, -0.6685630083084106, 0.581473708152771, 0.8502299785614014, -0.604468822479248, 0.4056374430656433, 0.7655749320983887, 0.25591903924942017, 0.4952850341796875, -0.03819728642702103, -0.22780556976795197, -0.37594518065452576, -0.1832982748746872, -0.3487226068973541, 0.3380182087421417, 0.49782562255859375, 0.05523867905139923, -0.3913419246673584, 0.11703089624643326, -0.1391761749982834, -0.11418409645557404, -0.1934545636177063, 0.5639153122901917, 0.3307058811187744, -0.9344984889030457, 0.7111502289772034, -0.08072755485773087, 0.31343165040016174, -0.109682597219944, 0.1001124456524849, -0.22966572642326355, 0.237859845161438, -0.4388909339904785, -1.3450136184692383, 0.19084028899669647, -0.5536156892776489, -0.90244060754776, -0.7846174240112305, 0.8086904883384705, -0.34349876642227173, -0.648878812789917, 0.21726594865322113, 0.23594023287296295, 0.036382000893354416, 0.258537620306015, -0.5724396705627441, -0.06489083170890808, 0.035046081990003586, -0.568558931350708, 0.34526243805885315, 0.5364880561828613, -0.08401399850845337, 0.6457866430282593, 0.43682968616485596, 0.18929533660411835, 0.3714117407798767, 0.15835098922252655, 0.7733907103538513, -0.7692582011222839, -0.8200053572654724, -0.6435002684593201, 0.44314610958099365, -0.16682079434394836, -0.633743166923523, 0.8802364468574524, 0.5592321753501892, 0.7365559935569763, -0.20255859196186066, 0.7739507555961609, 0.1516156792640686, 0.29100480675697327, -0.28396347165107727, 0.40874040126800537, -0.2758057713508606, 0.16433116793632507, -0.3149542808532715, -0.7295334935188293, -0.39608314633369446, 0.42435598373413086, -0.6094449162483215, 0.062210485339164734, 0.9540507793426514, 0.31273153424263, 0.11265991628170013, 0.4006178081035614, 0.09710951149463654, 0.09436880052089691, 0.24844226241111755, 0.5037946701049805, 0.9717322587966919, -0.4359573721885681, 0.3087689280509949, -0.7888714075088501, -0.21323327720165253, -0.2676517069339752, -0.7036790251731873, -0.4965052008628845, -0.6135846376419067, -0.8301137685775757, -0.5731694102287292, -0.45434221625328064, 0.3132692575454712, 0.42768338322639465, -1.013938307762146, -0.36227312684059143, 0.02870488539338112, 0.7051693201065063, -0.20680472254753113, -0.24218034744262695, 0.3853185176849365, 0.012520218268036842, -0.2674410045146942, -0.36038342118263245, 0.560788631439209, 0.2373187094926834, 0.020301174372434616, 0.1434008777141571, -0.5284536480903625, 0.059330109506845474, 0.8829795122146606, 0.5058441162109375, -0.8051978349685669, -0.11707625538110733, -0.350649893283844, -0.4326256811618805, 0.34649011492729187, 0.9614119529724121, -0.5615925788879395, 0.567884624004364, 1.0130363702774048, -0.08478999137878418, 0.18663398921489716, 0.1615021824836731, 0.12704163789749146, -0.39157548546791077, 0.31519997119903564, 0.4563984274864197, 0.19100823998451233, 0.12763062119483948, -0.42529502511024475, 0.3330710828304291, 0.7617011666297913, -0.6944541335105896, -0.921386182308197, 0.5056618452072144, -1.438293218612671, -0.3327785134315491, 1.2670035362243652, 0.23443923890590668, -0.28902703523635864, -0.47107750177383423, -0.3965894281864166, 0.2669234275817871, -0.2493361085653305, 0.6460239887237549, 0.8712248206138611, -0.670096755027771, 0.06786108762025833, -0.3762039542198181, 0.2030189037322998, 0.8946125507354736, -0.3365704119205475, -0.18105095624923706, 0.39985159039497375, 0.24896042048931122, 0.3500550389289856, 1.112475037574768, -0.05853686481714249, 0.23633317649364471, 0.20664414763450623, 0.16217833757400513, 0.4212292730808258, -0.2523214519023895, -0.298418790102005, 0.6423109769821167, 0.16005654633045197, -0.0968310609459877 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
objects76/Anthropic-hh-rlhf-dpo
objects76
2023-11-15T06:46:29Z
216
0
null
[ "license:apache-2.0", "region:us" ]
2023-11-15T06:46:29Z
2023-11-15T06:39:50.000Z
2023-11-15T06:39:50
--- license: apache-2.0 --- # DPO formatted Helpful and Harmless RLHF Dataset This dataset is built from [Anthropic's hh-rlhf dataset.](https://huggingface.co/datasets/Anthropic/hh-rlhf) It is modified as follows: The prompt formatting is switched to the Llama 2 format with [INST] and [/INST] The data is split into prompt, chosen and rejected rows, as required by HuggingFace's DPO trainer. Purchase access to this dataset here. Purchase entitles the user to make use of the dataset for training large language models.
[ -0.10275831073522568, -0.7499821186065674, 0.3266921937465668, 0.36822372674942017, -0.4600643813610077, 0.07181915640830994, 0.08829772472381592, -0.5048642754554749, 0.5610718727111816, 0.7363191843032837, -0.7095273733139038, -0.26225587725639343, -0.5479403734207153, 0.4593202769756317, -0.03770650178194046, 1.1371897459030151, 0.17780837416648865, -0.07382716983556747, -0.1063191369175911, -0.21733494102954865, -0.31809815764427185, -0.603312611579895, -0.5132147669792175, -0.6017336845397949, 0.6738921403884888, 0.7817655205726624, 0.9639730453491211, 0.9906298518180847, 0.441686749458313, 0.17551003396511078, -0.09652179479598999, -0.05572231486439705, -0.46857553720474243, 0.19663284718990326, 0.03162265568971634, -0.11420886963605881, -0.8634559512138367, 0.19287219643592834, 0.6009615659713745, 0.7247196435928345, -0.4016593098640442, 0.33841946721076965, -0.2874591052532196, 0.5855855941772461, -0.3293168544769287, 0.2716136574745178, -0.4343261122703552, 0.24284806847572327, -0.25740402936935425, 0.17439669370651245, -0.3601953685283661, -0.262365460395813, -0.2631527781486511, -0.8641440868377686, -0.20759731531143188, 0.34825316071510315, 0.48058217763900757, 0.40500935912132263, -0.35888466238975525, -0.0872979685664177, -0.32794448733329773, 0.7347544431686401, -0.528891384601593, 0.18725386261940002, 0.9474723935127258, 0.4081772565841675, -0.5353674292564392, -0.5981842875480652, -0.6734512448310852, -0.1291876584291458, 0.01107141561806202, -0.054008059203624725, -0.31177353858947754, -0.14453613758087158, 0.3836427628993988, 0.38137003779411316, -0.5881561636924744, 0.3796893358230591, -0.30422472953796387, -0.28921130299568176, 1.0010870695114136, -0.03008393570780754, 0.43861493468284607, -0.28577783703804016, -0.362636536359787, -0.34501996636390686, -0.9122252464294434, -0.3212454319000244, 0.5170426368713379, 0.4351268410682678, -0.3960520923137665, 0.8432825207710266, -0.12376799434423447, 0.6967276930809021, -0.052055682986974716, -0.7091138958930969, 0.5518263578414917, -0.010347871109843254, -0.19236694276332855, 0.16344167292118073, 0.6746141910552979, 0.6121140122413635, 0.7011536955833435, 0.11315524578094482, -0.4541313350200653, -0.13471555709838867, -0.11141345649957657, -0.6996707916259766, -0.3252527713775635, 0.2942044734954834, -0.5615602731704712, -0.3940661549568176, -0.156327024102211, -0.7822502255439758, -0.6283856630325317, -0.1496007740497589, -0.21069307625293732, -0.18560700118541718, -0.41571536660194397, 0.011277207173407078, -0.011560074985027313, 0.1176658645272255, 0.2157353162765503, -0.9167436361312866, 0.325753778219223, 0.5044679641723633, 0.42289286851882935, 0.12054765969514847, -0.3532056212425232, -0.6940015554428101, -0.06489776819944382, -0.3050585389137268, 0.8644785284996033, -0.5741802453994751, -0.6447195410728455, 0.054087456315755844, 0.14034351706504822, 0.08079520612955093, -0.824027419090271, 0.5363296270370483, -0.494281530380249, 0.27100563049316406, -0.44700944423675537, -0.40055567026138306, -0.23329168558120728, 0.26616957783699036, -0.8076784610748291, 1.2803232669830322, 0.242001473903656, -0.9238623380661011, 0.3100306987762451, -0.47051459550857544, -0.4110545516014099, -0.03279632702469826, 0.007443612907081842, -0.6363329887390137, -0.36892202496528625, 0.044844284653663635, 0.3736886978149414, -0.04726200923323631, 0.38197994232177734, -0.5870340466499329, -0.2571708559989929, 0.3270769715309143, 0.017766324803233147, 0.9174671173095703, 0.3151560127735138, 0.009007050655782223, 0.060373082756996155, -1.345010757446289, -0.42332661151885986, 0.5382288694381714, -0.38594505190849304, -0.3886890411376953, -0.10592996329069138, 0.1303279995918274, 0.2439509481191635, 0.19663359224796295, -0.6756442189216614, 0.5974289178848267, 0.10268969088792801, 0.2753731906414032, 0.7802283763885498, 0.05127917230129242, 0.29484546184539795, -0.35617178678512573, 0.7600246071815491, -0.26526689529418945, 0.26130351424217224, 0.2393551766872406, -0.7598649859428406, -0.27101370692253113, -0.5371960401535034, -0.12618078291416168, 0.7858860492706299, -0.6265961527824402, 0.6926946640014648, 0.1557086706161499, -0.41353943943977356, -0.18691907823085785, 0.1594632863998413, 0.22020938992500305, 1.0031980276107788, 0.24899525940418243, -0.07574791461229324, -0.6305137276649475, -0.8528276681900024, 0.2616591453552246, -0.25770696997642517, 0.04963475465774536, 0.2781471610069275, 0.5849944353103638, -0.3718443810939789, 0.6623246669769287, -0.6173595190048218, -0.05068551003932953, -0.19740192592144012, -0.29384303092956543, 0.30313730239868164, 0.40327712893486023, 0.7149463295936584, -0.5287238955497742, -0.2618449628353119, -0.24968019127845764, -0.5477643013000488, -0.3684651255607605, 0.07709264755249023, -0.18964530527591705, 0.186029314994812, 0.32944047451019287, -0.4349111020565033, 0.3276291489601135, 0.656795859336853, -0.6539379954338074, 0.616800844669342, 0.008682130835950375, -0.15403547883033752, -1.0408003330230713, 0.23156273365020752, -0.1350681483745575, -0.47993436455726624, -0.34063035249710083, -0.18040315806865692, -0.027362827211618423, -0.1454668790102005, -0.3816300630569458, 0.6425819396972656, -0.32949039340019226, -0.31625452637672424, -0.29277685284614563, 0.059365686029195786, 0.01935642771422863, 0.21413087844848633, 0.13566242158412933, 0.8873147964477539, 0.6353551149368286, -0.38951626420021057, 0.6989421248435974, 0.8887597322463989, -0.1541525274515152, 0.35133713483810425, -0.8705626130104065, 0.2908962070941925, -0.07975445687770844, 0.5086408853530884, -0.7929402589797974, -0.6241653561592102, 0.8988950252532959, -0.14717057347297668, 0.18089066445827484, 0.024930140003561974, -0.7671452164649963, -0.18204346299171448, -0.6216735243797302, 0.670847475528717, 0.625659167766571, -0.7295403480529785, -0.049266014248132706, 0.5479581952095032, -0.2850392162799835, -0.5536823868751526, -0.8402338027954102, 0.0005533925141207874, -0.4837149381637573, -0.25621169805526733, 0.15938477218151093, -0.10412057489156723, -0.5050733089447021, -0.3035665452480316, 0.23407308757305145, -0.1214011088013649, -0.09316090494394302, 0.30415624380111694, 0.42080920934677124, 0.029759371653199196, 0.08402274549007416, -0.13520832359790802, -0.06711171567440033, 0.027159767225384712, 0.2685123383998871, 0.49276870489120483, 0.34519559144973755, -0.10843149572610855, -0.7130954265594482, 0.28086769580841064, 0.4539525508880615, -0.00169897242449224, 0.6036437153816223, 0.29825782775878906, -0.4006512463092804, 0.028736673295497894, -0.15578576922416687, -0.2398539036512375, -0.4184935986995697, 0.1160857081413269, -0.12934474647045135, -0.5339935421943665, 0.5621188282966614, 0.2028341144323349, -0.13054341077804565, 0.28874221444129944, 0.24662622809410095, 0.05068182945251465, 0.7191916108131409, 0.707065224647522, -0.1616956889629364, 0.6300386786460876, 0.13587686419487, -0.18464766442775726, -0.7677255272865295, -0.5258259773254395, -0.37857508659362793, -0.1263832151889801, -0.8281752467155457, -0.2314458191394806, 0.03619687259197235, -0.042768605053424835, -0.5845134854316711, 0.29242485761642456, -0.4619434177875519, 0.3366534411907196, 0.42735135555267334, 0.3378736674785614, 0.4062611162662506, 0.2531333267688751, 0.12404967844486237, -0.04272765293717384, -0.5074566006660461, -0.6118196249008179, 1.0038378238677979, 0.6652355194091797, 0.918394923210144, 0.09632851183414459, 0.5856469869613647, 0.21790741384029388, 0.26470381021499634, -1.003200888633728, 0.497640460729599, -0.06061585620045662, -0.5030623078346252, -0.24983520805835724, -0.2346043586730957, -0.9372236728668213, -0.14569903910160065, -0.18619368970394135, -0.641335666179657, 0.23094765841960907, 0.13239777088165283, -0.17712529003620148, 0.07423748075962067, -0.5209146738052368, 0.5715447664260864, -0.03853515908122063, 0.05994638800621033, 0.02159876562654972, -0.7989531755447388, 0.3567069172859192, -0.08540540188550949, 0.23406882584095, -0.4549385905265808, -0.3009960651397705, 0.9916028380393982, -0.5143855810165405, 1.1712605953216553, -0.22834177315235138, -0.40993770956993103, 0.2907944321632385, -0.036851830780506134, 0.35382696986198425, 0.35264915227890015, -0.4438096582889557, 0.03528551012277603, -0.4091542661190033, -0.5295506119728088, -0.10632874816656113, 0.3401847183704376, -0.8612331748008728, -0.43516960740089417, -0.6855595111846924, -0.4936971664428711, -0.0275946706533432, 0.10845246911048889, 0.09539856761693954, 0.3256506025791168, -0.06568966805934906, -0.053079165518283844, 0.5732269883155823, -0.28765663504600525, 0.42236679792404175, 0.2820575535297394, -0.3733326494693756, -0.6807777285575867, 0.4908773601055145, -0.1495637595653534, 0.18951667845249176, 0.3007497489452362, 0.40392550826072693, -0.590469479560852, -0.09645324945449829, -0.480376660823822, 0.553566038608551, -0.7439550757408142, -0.3471582531929016, -0.28187689185142517, -0.0210440494120121, -0.6255091428756714, 0.17529621720314026, -0.14063359797000885, -0.6587121486663818, -0.6479700207710266, -0.2896602153778076, 0.9723992943763733, 1.1264004707336426, -0.3049423396587372, 0.43430060148239136, -0.7057738900184631, 0.43866166472435, 0.36469414830207825, 0.382500022649765, -0.3663369119167328, -0.6398420333862305, 0.18839630484580994, -0.11086240410804749, -0.06542432308197021, -0.9801216125488281, 0.3441047966480255, 0.47909608483314514, 0.5587246417999268, 0.28897783160209656, 0.10892196744680405, 0.41866549849510193, -0.5214489698410034, 0.6371442079544067, 0.036282047629356384, -0.5754255652427673, 0.7430816888809204, -0.5426610112190247, 0.03828045725822449, 0.473949134349823, 0.45275646448135376, -0.4448833465576172, 0.12471100687980652, -0.5618675351142883, -0.6223056316375732, 0.7183326482772827, -0.12076984345912933, -0.031495023518800735, 0.050939831882715225, 0.5937874913215637, 0.5836331248283386, 0.12167266011238098, -0.8909580707550049, -0.34349480271339417, -0.2771216630935669, -0.11047172546386719, 0.00456294696778059, -0.5765367150306702, -0.4756152033805847, -0.3733379542827606, 0.4087989032268524, -0.18648743629455566, 0.0013164840638637543, 0.24225221574306488, 0.12500323355197906, -0.17311859130859375, -0.06284928321838379, 0.5341251492500305, 0.6515346169471741, -0.26441141963005066, 0.06788929551839828, -0.1940925270318985, -0.8277113437652588, 0.1213594526052475, 0.30062010884284973, 0.08265924453735352, -0.30752015113830566, 0.7213994264602661, 0.6243959665298462, -0.03431634604930878, -0.725249707698822, 0.2417922466993332, -0.048890914767980576, -0.03609047457575798, -0.5067359805107117, 0.08001626282930374, -0.09254980087280273, 0.0614045113325119, 0.23651009798049927, -0.2670353353023529, 0.11141012609004974, -0.5028719902038574, 0.27631404995918274, 0.02434803918004036, 0.03933902457356453, -0.44763004779815674, 0.41956326365470886, 0.28304600715637207, -0.3814200460910797, 0.9613447785377502, -0.15432682633399963, -0.34416821599006653, 0.6435309052467346, 0.7657710909843445, 0.5315163731575012, -0.24824506044387817, 0.4837898015975952, 0.5151030421257019, 0.012454092502593994, 0.1271057277917862, 0.6885859370231628, -0.20940527319908142, -0.7193222045898438, -0.3050691783428192, -0.666492223739624, -0.6016220450401306, 0.3695225715637207, -0.8605120182037354, 0.26835373044013977, -0.7502260208129883, 0.12243033945560455, -0.013501566834747791, 0.011851842515170574, -0.37474340200424194, 0.36661192774772644, 0.18081983923912048, 1.0291142463684082, -1.1232939958572388, 0.948597252368927, 1.0983326435089111, -0.2881019711494446, -0.6189286708831787, 0.15484263002872467, 0.015371032990515232, -1.4621766805648804, 0.4651809632778168, 0.07469639927148819, 0.16276319324970245, -0.2176218032836914, -0.8062036037445068, -0.9246875643730164, 1.057235598564148, 0.3583723306655884, -0.6406623721122742, 0.4754929542541504, 0.06478329747915268, 0.38705623149871826, -0.39896681904792786, -0.1719832718372345, 0.708042323589325, 0.6430836915969849, 0.20898643136024475, -0.904151439666748, 0.38172411918640137, -0.13994485139846802, -0.1614581197500229, -0.22444599866867065, -0.8178710341453552, 0.7065954804420471, -0.4452323615550995, -0.06249504163861275, -0.007044604513794184, 0.4548380374908447, 0.8092648386955261, 0.23096390068531036, 0.7285865545272827, 0.4921196699142456, 0.7933788895606995, 0.1314823478460312, 0.9191171526908875, 0.07828454673290253, 0.26483649015426636, 0.8701474666595459, -0.5555720925331116, 0.8203336596488953, 0.7513815760612488, -0.4073702096939087, 0.5339155793190002, 1.0847138166427612, -0.11271624267101288, 0.4852735996246338, 0.2943131923675537, -0.14181311428546906, -0.09078115969896317, -0.4278882145881653, -0.43338945508003235, 0.7886034846305847, 0.3147604167461395, -0.05247743800282478, -0.18637819588184357, -0.009703436866402626, 0.40123671293258667, 0.21244794130325317, -0.05246356874704361, 0.8609371185302734, 0.16923868656158447, -0.42885997891426086, 0.640725314617157, -0.35317263007164, 0.7123483419418335, -0.2817908525466919, -0.30826395750045776, -0.34368064999580383, -0.059554245322942734, -0.3593024015426636, -1.0936381816864014, 0.4967362880706787, -0.020103320479393005, -0.17635902762413025, -0.3854074478149414, 0.8908841013908386, -0.4056147038936615, -0.4726942479610443, 0.30052459239959717, 0.48238757252693176, 0.3500128388404846, 0.184176504611969, -0.7568969130516052, 0.2873654067516327, 0.00967344082891941, -0.5801478028297424, 0.22137506306171417, 0.14079897105693817, -0.10544499009847641, 0.6595296859741211, 0.4740852117538452, 0.0026799498591572046, -0.36960533261299133, 0.3711092174053192, 0.9569820165634155, -0.6909850239753723, -0.5117319822311401, -0.6319151520729065, 0.3736836910247803, -0.07351923733949661, -0.5973392724990845, 0.5494844913482666, 0.41800305247306824, 0.47083577513694763, -0.09602572023868561, 0.530502200126648, -0.15373817086219788, 0.5238531827926636, -0.48175132274627686, 0.7548211216926575, -0.6455829739570618, -0.01863780803978443, 0.00045814472832717, -0.765468418598175, -0.4612961411476135, 0.7069960236549377, 0.18687833845615387, 0.10244627296924591, 0.37870725989341736, 0.7024432420730591, 0.026959650218486786, 0.06792349368333817, 0.2213854044675827, 0.158402219414711, 0.2404935359954834, 0.17087110877037048, 0.7191739678382874, -0.26676109433174133, 0.22478674352169037, -0.6131405234336853, -0.6592940092086792, -0.22781716287136078, -1.2361704111099243, -0.9070420861244202, -0.4098299741744995, -0.3894479274749756, -0.33596423268318176, -0.06636177748441696, 1.001937985420227, 0.6540558934211731, -0.6858120560646057, -0.16220586001873016, 0.036971315741539, 0.1980517953634262, 0.1663440614938736, -0.19414900243282318, 0.32888177037239075, 0.21722230315208435, -0.6114915609359741, 0.49185505509376526, 0.027927687391638756, 0.6168715953826904, -0.1428801715373993, 0.09727797657251358, -0.2115926891565323, -0.358266681432724, 0.6309689879417419, 0.58714359998703, -0.45931029319763184, -0.5759447813034058, 0.17043887078762054, -0.12272108346223831, 0.02581048756837845, 0.3966667056083679, -0.5362349152565002, 0.09569483995437622, 0.42282941937446594, 0.22338156402111053, 0.03218870609998703, -0.028629114851355553, 0.5636860728263855, -0.9942120909690857, 0.7880121469497681, 0.2506065368652344, 0.47694966197013855, 0.7619078755378723, -0.7140159010887146, 0.6587327718734741, 0.3821743428707123, -0.8155232071876526, -0.7791279554367065, 0.23224963247776031, -1.2170804738998413, -0.1418568640947342, 1.4881393909454346, -0.054162152111530304, -0.4434807002544403, -0.0012787515297532082, -0.41626235842704773, 0.2645200490951538, -0.6819770932197571, 0.8386755585670471, 0.5587472915649414, -0.5631065964698792, -0.1328352838754654, -0.3340880274772644, 0.5470128655433655, 0.06302288919687271, -0.8804615139961243, 0.08009853214025497, 0.57323157787323, 0.44765549898147583, 0.00018206711683887988, 0.8301292061805725, -0.1283571869134903, 0.16830351948738098, 0.16930316388607025, 0.13599538803100586, -0.10332102328538895, -0.3433450162410736, -0.36819449067115784, -0.37440580129623413, 0.18971018493175507, -0.555120587348938 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
newbiettn/ops_transforms
newbiettn
2023-11-16T23:40:46Z
216
0
null
[ "license:apache-2.0", "region:us" ]
2023-11-16T23:40:46Z
2023-11-15T09:48:48.000Z
2023-11-15T09:48:48
--- license: apache-2.0 ---
[ -0.12853392958641052, -0.18616779148578644, 0.6529127955436707, 0.49436280131340027, -0.19319361448287964, 0.23607419431209564, 0.36072003841400146, 0.050563063472509384, 0.579365611076355, 0.7400140762329102, -0.6508104205131531, -0.23783954977989197, -0.7102249264717102, -0.047826025635004044, -0.38947510719299316, 0.847076416015625, -0.09598274528980255, 0.024005085229873657, 0.04711994528770447, -0.14317835867404938, -0.6121042966842651, -0.04771691560745239, -1.052453637123108, -0.06787451356649399, 0.3002277612686157, 0.5120974779129028, 0.8275896906852722, 0.39602914452552795, 0.5030563473701477, 1.7515555620193481, -0.08836923539638519, -0.22754408419132233, -0.4589202105998993, 0.42230677604675293, -0.3327735662460327, -0.42133715748786926, -0.2624173164367676, -0.07449357211589813, 0.3238038122653961, 0.7903714179992676, -0.38104137778282166, 0.1932809054851532, -0.22438450157642365, 1.008224606513977, -0.8202074766159058, 0.22630856931209564, -0.1669836789369583, 0.14053209125995636, 0.04230884835124016, -0.14591920375823975, -0.13263218104839325, -0.6440037488937378, 0.06469475477933884, -0.8995967507362366, 0.10274934768676758, -0.044611066579818726, 0.8789560198783875, 0.21909037232398987, -0.5102370977401733, -0.0459773950278759, -0.6883593797683716, 1.0972506999969482, -0.1755605936050415, 0.7615711688995361, 0.45078128576278687, 0.45288535952568054, -0.5849332809448242, -1.1782183647155762, -0.4441865086555481, -0.13578954339027405, 0.14722825586795807, 0.30556103587150574, -0.3453030586242676, -0.022343799471855164, 0.10801100730895996, 0.5610315203666687, -0.5003759264945984, -0.31195980310440063, -0.9579929113388062, -0.18164925277233124, 0.6820487976074219, 0.3193085789680481, 0.8340448141098022, 0.18731530010700226, -0.7347195148468018, 0.12866313755512238, -1.323970079421997, 0.07650710642337799, 0.6465022563934326, 0.23946774005889893, -0.5545986890792847, 0.8594784736633301, -0.28587964177131653, 0.6262496113777161, 0.27284669876098633, -0.1164529025554657, 0.27842557430267334, -0.23030753433704376, -0.2735063433647156, 0.033087875694036484, 0.3459727466106415, 0.8204495906829834, 0.1624865084886551, -0.01998494565486908, -0.2212396264076233, 0.0020716190338134766, 0.2684449553489685, -0.793509304523468, -0.47126680612564087, 0.1926698237657547, -0.558952808380127, -0.09108491986989975, 0.4327021837234497, -1.0976831912994385, -0.48129838705062866, -0.1879846304655075, 0.054681405425071716, -0.545169472694397, -0.36979490518569946, 0.07273277640342712, -0.7925415635108948, -0.1243419498205185, 0.5709511041641235, -0.6230257749557495, 0.4397463798522949, 0.5336257815361023, 0.7861636877059937, 0.2330387532711029, -0.23613610863685608, -0.6695021390914917, 0.48848289251327515, -0.8661866784095764, 0.3686073422431946, -0.3073781132698059, -0.8298643231391907, -0.09631041437387466, 0.539315938949585, 0.20664848387241364, -0.6653256416320801, 0.707404613494873, -0.5496982336044312, -0.07806532829999924, -0.43082869052886963, -0.243220254778862, 0.17460417747497559, 0.11115416139364243, -0.6238910555839539, 0.9402235746383667, 0.5551108121871948, -0.5841097831726074, 0.3170127868652344, -0.4869505763053894, -0.6865584850311279, 0.2674816846847534, -0.008750803768634796, -0.04715215414762497, 0.3279530704021454, -0.1598399579524994, -0.0020513907074928284, 0.10505764931440353, 0.00829961895942688, -0.21891693770885468, -0.47863051295280457, 0.06349954754114151, 0.15165002644062042, 1.2536835670471191, 0.40836217999458313, -0.3771880269050598, -0.13140134513378143, -1.0526151657104492, 0.025433078408241272, 0.05050114542245865, -0.4230678379535675, -0.2504568099975586, -0.14882178604602814, -0.20381587743759155, 0.43072614073753357, 0.211847186088562, -0.8131152987480164, 0.22643622756004333, -0.2064029574394226, 0.3644968271255493, 0.8222091794013977, 0.2703104317188263, 0.3976055383682251, -0.662528395652771, 0.6563140153884888, 0.2076188176870346, 0.49590182304382324, 0.3540418744087219, -0.38458251953125, -0.9641585350036621, -0.44216156005859375, -0.1011742651462555, 0.2975531816482544, -0.7744960188865662, 0.584732174873352, 0.012979812920093536, -0.583670437335968, -0.44652819633483887, -0.1548808366060257, 0.27553316950798035, -0.06606584787368774, 0.033349260687828064, -0.4049779772758484, -0.7394419312477112, -1.0127894878387451, -0.13788151741027832, -0.5021387338638306, -0.21892833709716797, 0.316058874130249, 0.26177406311035156, -0.34290045499801636, 0.7610751390457153, -0.6059278249740601, -0.7040643692016602, -0.1397356241941452, -0.09959873557090759, 0.6187719106674194, 0.9297673106193542, 0.7491384744644165, -0.7224894165992737, -0.8973820209503174, -0.05623088777065277, -0.5420041680335999, -0.0200444795191288, 0.038149844855070114, -0.18260671198368073, -0.10515005141496658, 0.2235255241394043, -0.6100807189941406, 0.8851077556610107, 0.4322497844696045, -0.6815470457077026, 0.5210592746734619, -0.44444164633750916, 0.6073800921440125, -0.8642842173576355, -0.2911489009857178, -0.16823577880859375, -0.1976119577884674, -0.7090163826942444, 0.19411532580852509, -0.3002234399318695, -0.33029866218566895, -0.7474033832550049, 0.5274897217750549, -0.949701189994812, -0.18781507015228271, -0.3367280066013336, -0.03423096239566803, 0.25807833671569824, 0.19490540027618408, -0.2356024831533432, 0.8900530338287354, 0.9160482883453369, -0.7121309041976929, 0.5487279295921326, 0.3930911421775818, -0.1920013725757599, 0.7131237983703613, -0.38877418637275696, 0.05161998048424721, -0.1234494149684906, 0.14374573528766632, -1.1263887882232666, -0.5611584186553955, 0.13677364587783813, -0.7127033472061157, 0.17686951160430908, -0.16556832194328308, -0.09428530186414719, -0.6608462929725647, -0.3380642533302307, 0.25910115242004395, 0.48612266778945923, -0.4796990752220154, 0.6188147068023682, 0.5728044509887695, 0.026518702507019043, -0.5307408571243286, -0.7206822633743286, 0.20418094098567963, 0.0396462008357048, -0.5569697618484497, 0.3011690378189087, 0.006543636322021484, -0.6622449159622192, -0.37112486362457275, -0.26354193687438965, -0.6043857932090759, -0.2267974317073822, 0.7826987504959106, 0.11994192004203796, -0.0901225358247757, -0.20310261845588684, -0.3199536204338074, -0.06167520955204964, 0.3048745393753052, -0.07575280219316483, 0.7232836484909058, -0.3362374007701874, -0.17850065231323242, -0.887734055519104, 0.6527543663978577, 0.9970463514328003, 0.09446695446968079, 0.8066439628601074, 0.46324220299720764, -0.3564748764038086, -0.13046619296073914, -0.3535460829734802, -0.15120592713356018, -0.6857745051383972, -0.18067993223667145, -0.5322474241256714, -0.541143536567688, 0.405306875705719, 0.10101432353258133, -0.002104341983795166, 0.5167046189308167, 0.25336089730262756, -0.2880684733390808, 0.7550322413444519, 1.0343406200408936, 0.139179527759552, 0.3602914810180664, -0.28547126054763794, 0.6341596245765686, -0.8329952955245972, -0.3405216336250305, -0.4548070430755615, -0.25635868310928345, -0.3121439814567566, -0.10750839114189148, 0.5791019797325134, 0.28182145953178406, -0.44634687900543213, 0.12506791949272156, -0.5994207859039307, 0.6587362885475159, 0.6273984909057617, 0.5719727277755737, 0.19973009824752808, -0.4619945287704468, 0.19982939958572388, 0.0481666699051857, -0.45745593309402466, -0.40091103315353394, 0.7711142301559448, 0.239962637424469, 0.836402416229248, 0.2092711329460144, 0.495777428150177, 0.33375436067581177, 0.25280576944351196, -0.6318978667259216, 0.20098097622394562, -0.222828209400177, -1.2459611892700195, -0.20642685890197754, -0.16551320254802704, -1.0080583095550537, -0.11792058497667313, -0.1828898787498474, -0.8406623601913452, 0.26657307147979736, -0.19225652515888214, -0.6640648245811462, 0.5206148624420166, -0.5103873014450073, 0.6934713125228882, -0.23555894196033478, -0.2817091941833496, 0.1193007081747055, -0.6889920234680176, 0.5254614949226379, 0.3667148947715759, 0.291684091091156, -0.3796897530555725, -0.31928759813308716, 0.5068994760513306, -0.8812246322631836, 0.4408113658428192, -0.10565005987882614, 0.19428130984306335, 0.5358880758285522, 0.4153594970703125, 0.38239696621894836, 0.28699085116386414, -0.2459375262260437, -0.23415438830852509, 0.22503438591957092, -0.7581344842910767, -0.27754613757133484, 0.9095459580421448, -0.7519426345825195, -0.8586918115615845, -0.6954257488250732, -0.3064495921134949, 0.28865256905555725, 0.027814753353595734, 0.7154771089553833, 0.645688533782959, -0.18821047246456146, 0.2377701848745346, 0.7208226919174194, -0.014694392681121826, 0.7235565185546875, 0.2941119372844696, -0.4056650400161743, -0.6169788241386414, 0.7182323932647705, 0.26270410418510437, 0.05162673443555832, 0.028327936306595802, 0.305873841047287, -0.17546698451042175, -0.15078604221343994, -0.6318324208259583, -0.0639532133936882, -0.7465730905532837, -0.09279506653547287, -0.7541394829750061, -0.25077366828918457, -0.711459219455719, -0.8068135976791382, -0.7080166339874268, -0.45604419708251953, -0.4301193058490753, -0.23352199792861938, 0.5163111090660095, 1.1627082824707031, -0.2613151967525482, 0.8011053204536438, -0.8900958299636841, 0.4193631410598755, 0.49695414304733276, 0.7519732117652893, -0.11060995608568192, -0.6746934056282043, -0.07836242020130157, -0.5338752865791321, -0.2948507070541382, -1.0156972408294678, 0.3177468180656433, -0.03688589483499527, 0.40537142753601074, 0.42938917875289917, 0.2519027590751648, 0.49392780661582947, -0.30073127150535583, 1.1130690574645996, 0.7274304628372192, -0.8033812046051025, 0.519527792930603, -0.7635002136230469, 0.16122305393218994, 0.9363657236099243, 0.5447748303413391, -0.4417076110839844, -0.15113931894302368, -1.0259766578674316, -0.8431372046470642, 0.5963036417961121, 0.154399111866951, 0.016843900084495544, 0.018214160576462746, 0.03168261796236038, 0.2946636974811554, 0.3591306209564209, -0.7847291231155396, -0.8240218758583069, -0.13851101696491241, 0.2580331265926361, 0.3145604729652405, -0.16485397517681122, -0.30038729310035706, -0.611615777015686, 0.8711388111114502, 0.1828646957874298, 0.3546234369277954, 0.12073377519845963, 0.04369349032640457, -0.35506927967071533, 0.14787030220031738, 0.552300214767456, 1.2529058456420898, -0.40983325242996216, 0.36739107966423035, 0.17512641847133636, -0.6540074348449707, 0.6494999527931213, -0.3036351501941681, -0.021784229204058647, 0.6203134655952454, 0.17760881781578064, 0.2852841913700104, 0.31559956073760986, -0.36214280128479004, 0.6047804355621338, -0.029421962797641754, -0.17758488655090332, -0.7005698084831238, 0.15866976976394653, 0.02935054898262024, 0.27507975697517395, 0.43920236825942993, 0.24443349242210388, 0.08246780931949615, -1.0602879524230957, 0.5711052417755127, 0.24493923783302307, -0.8676615953445435, -0.3011007606983185, 0.7047957181930542, 0.4075390696525574, -0.4759957194328308, 0.38749080896377563, 0.012702599167823792, -0.6710242033004761, 0.5987739562988281, 0.5510413646697998, 0.7569676637649536, -0.47024261951446533, 0.30880194902420044, 0.6245604157447815, 0.06711314618587494, 0.2055054008960724, 0.6923206448554993, 0.031493958085775375, -0.4473864436149597, 0.23022444546222687, -0.5986735820770264, -0.14689938724040985, 0.13735318183898926, -0.8047428131103516, 0.3515335023403168, -0.9312613010406494, -0.2408994436264038, 0.08751562982797623, 0.11761122196912766, -0.6130945682525635, 0.6674697995185852, -0.008525177836418152, 0.9280493259429932, -0.8549083471298218, 0.962627649307251, 0.855958104133606, -0.31830841302871704, -0.7709447145462036, -0.3355674147605896, 0.020139683037996292, -0.666053056716919, 0.7108277082443237, -0.18972992897033691, -0.4120742678642273, -0.09323986619710922, -0.622982919216156, -1.0003725290298462, 0.030618011951446533, 0.017415642738342285, -0.46250346302986145, 0.4454795718193054, -0.5157254934310913, 0.32896843552589417, -0.19169752299785614, 0.3050948977470398, 0.7719473838806152, 0.7958453297615051, 0.22960808873176575, -0.6354779005050659, -0.4466683268547058, -0.010275978595018387, -0.16682831943035126, 0.45458120107650757, -1.0710972547531128, 0.9677367806434631, -0.465257465839386, -0.3473321199417114, 0.2706642746925354, 0.7977622747421265, 0.25385016202926636, 0.35241299867630005, 0.6219539642333984, 0.901680588722229, 0.3645011782646179, -0.31178319454193115, 0.7276746034622192, 0.24263358116149902, 0.41525399684906006, 0.7364204525947571, -0.2271222174167633, 0.5403848886489868, 0.890641450881958, -0.786162257194519, 0.5381766557693481, 0.7879031896591187, 0.16047367453575134, 0.7758152484893799, 0.5944145321846008, -0.6119526624679565, -0.11859416216611862, -0.14641423523426056, -0.6171559691429138, 0.19797521829605103, 0.05292651057243347, -0.11974731832742691, -0.2846011519432068, -0.13567379117012024, 0.12295036017894745, 0.2836453914642334, -0.5959327816963196, 0.606866717338562, 0.34341585636138916, -0.6328279972076416, 0.21025118231773376, -0.2577958106994629, 0.6709499359130859, -0.597815752029419, 0.027336470782756805, -0.22699351608753204, 0.4181041717529297, -0.4618743360042572, -1.007582426071167, 0.47138410806655884, -0.2920239567756653, -0.4055127203464508, -0.2694243788719177, 0.8072364330291748, -0.2213391363620758, -0.5572859048843384, 0.3748602867126465, 0.13466602563858032, 0.41473665833473206, 0.4014597535133362, -0.548729419708252, 0.04779002070426941, 0.13760146498680115, -0.20061832666397095, 0.3601188063621521, 0.2973729968070984, 0.2548877000808716, 0.7100129723548889, 0.5052472352981567, 0.2219872921705246, 0.25694340467453003, -0.18668603897094727, 0.8387457728385925, -0.910279393196106, -0.8167636394500732, -0.9497334957122803, 0.38498952984809875, 0.025727514177560806, -0.8801448345184326, 0.792030930519104, 0.7652606964111328, 0.5113967061042786, -0.48778921365737915, 0.4755285382270813, -0.3264795243740082, 0.5047135949134827, -0.13870957493782043, 1.0010894536972046, -0.7607628703117371, -0.2958727777004242, -0.030554018914699554, -0.9216442108154297, -0.2533750832080841, 0.5375744104385376, 0.15408331155776978, -0.14608070254325867, 0.4385908544063568, 0.4421638548374176, 0.022173460572957993, 0.25223129987716675, 0.3286101222038269, 0.06042804569005966, 0.14508435130119324, 0.5510439872741699, 1.0931142568588257, -0.4339442551136017, 0.18694785237312317, -0.49234724044799805, -0.45362499356269836, -0.41534894704818726, -0.954805850982666, -0.6640312075614929, -0.4818545877933502, -0.2973933517932892, -0.5915579199790955, 0.11726466566324234, 0.9300887584686279, 0.9018136262893677, -0.6256729364395142, -0.4124363958835602, 0.257135272026062, 0.302933931350708, -0.22954198718070984, -0.14626771211624146, 0.2736491858959198, -0.006407761946320534, -0.7211180329322815, 0.39309436082839966, 0.8079761266708374, 0.38871288299560547, 0.08443976938724518, -0.07217144966125488, -0.4407082200050354, 0.02610170841217041, 0.537355899810791, 0.5729560256004333, -0.6281179785728455, -0.4099644422531128, -0.5328319668769836, -0.21386729180812836, 0.15529415011405945, 0.4807756543159485, -0.5166375041007996, 0.32661134004592896, 0.8128959536552429, 0.17017662525177002, 0.7187885046005249, -0.0022493302822113037, 0.6678643226623535, -0.8970248103141785, 0.4446263015270233, 0.39533841609954834, 0.5681870579719543, 0.08998032659292221, -0.7339165210723877, 0.9820243120193481, 0.49674344062805176, -0.6334056854248047, -1.0034244060516357, 0.03079952299594879, -1.1931145191192627, -0.37881749868392944, 0.9890843033790588, -0.09595756232738495, -0.9597461223602295, -0.36448946595191956, -0.36777186393737793, 0.07989630848169327, -0.3380977511405945, 0.3549822270870209, 0.8268198370933533, -0.2538071870803833, -0.22041818499565125, -0.950558066368103, 0.4752945005893707, 0.3102529048919678, -0.5886629819869995, -0.051143623888492584, 0.3293913006782532, 0.4523686170578003, 0.30097001791000366, 0.523955762386322, 0.10428232699632645, 0.8970535397529602, 0.25200408697128296, 0.30491408705711365, -0.045266419649124146, -0.5900783538818359, -0.01606648974120617, 0.2621474862098694, 0.04487812519073486, -0.6869445443153381 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
communityai/aptchatv1-template-micro-dataset-llm-v2-714k
communityai
2023-11-16T09:59:36Z
216
0
null
[ "region:us" ]
2023-11-16T09:59:36Z
2023-11-16T09:58:16.000Z
2023-11-16T09:58:16
--- dataset_info: features: - name: id dtype: int64 - name: source dtype: string - name: conversations list: - name: content dtype: string - name: role dtype: string splits: - name: train num_bytes: 1722474450.0482376 num_examples: 713591 - name: test num_bytes: 1206905.9517624504 num_examples: 500 download_size: 903719556 dataset_size: 1723681356.0 configs: - config_name: default data_files: - split: train path: data/train-* - split: test path: data/test-* ---
[ -0.12853392958641052, -0.18616779148578644, 0.6529127955436707, 0.49436280131340027, -0.19319361448287964, 0.23607419431209564, 0.36072003841400146, 0.050563063472509384, 0.579365611076355, 0.7400140762329102, -0.6508104205131531, -0.23783954977989197, -0.7102249264717102, -0.047826025635004044, -0.38947510719299316, 0.847076416015625, -0.09598274528980255, 0.024005085229873657, 0.04711994528770447, -0.14317835867404938, -0.6121042966842651, -0.04771691560745239, -1.052453637123108, -0.06787451356649399, 0.3002277612686157, 0.5120974779129028, 0.8275896906852722, 0.39602914452552795, 0.5030563473701477, 1.7515555620193481, -0.08836923539638519, -0.22754408419132233, -0.4589202105998993, 0.42230677604675293, -0.3327735662460327, -0.42133715748786926, -0.2624173164367676, -0.07449357211589813, 0.3238038122653961, 0.7903714179992676, -0.38104137778282166, 0.1932809054851532, -0.22438450157642365, 1.008224606513977, -0.8202074766159058, 0.22630856931209564, -0.1669836789369583, 0.14053209125995636, 0.04230884835124016, -0.14591920375823975, -0.13263218104839325, -0.6440037488937378, 0.06469475477933884, -0.8995967507362366, 0.10274934768676758, -0.044611066579818726, 0.8789560198783875, 0.21909037232398987, -0.5102370977401733, -0.0459773950278759, -0.6883593797683716, 1.0972506999969482, -0.1755605936050415, 0.7615711688995361, 0.45078128576278687, 0.45288535952568054, -0.5849332809448242, -1.1782183647155762, -0.4441865086555481, -0.13578954339027405, 0.14722825586795807, 0.30556103587150574, -0.3453030586242676, -0.022343799471855164, 0.10801100730895996, 0.5610315203666687, -0.5003759264945984, -0.31195980310440063, -0.9579929113388062, -0.18164925277233124, 0.6820487976074219, 0.3193085789680481, 0.8340448141098022, 0.18731530010700226, -0.7347195148468018, 0.12866313755512238, -1.323970079421997, 0.07650710642337799, 0.6465022563934326, 0.23946774005889893, -0.5545986890792847, 0.8594784736633301, -0.28587964177131653, 0.6262496113777161, 0.27284669876098633, -0.1164529025554657, 0.27842557430267334, -0.23030753433704376, -0.2735063433647156, 0.033087875694036484, 0.3459727466106415, 0.8204495906829834, 0.1624865084886551, -0.01998494565486908, -0.2212396264076233, 0.0020716190338134766, 0.2684449553489685, -0.793509304523468, -0.47126680612564087, 0.1926698237657547, -0.558952808380127, -0.09108491986989975, 0.4327021837234497, -1.0976831912994385, -0.48129838705062866, -0.1879846304655075, 0.054681405425071716, -0.545169472694397, -0.36979490518569946, 0.07273277640342712, -0.7925415635108948, -0.1243419498205185, 0.5709511041641235, -0.6230257749557495, 0.4397463798522949, 0.5336257815361023, 0.7861636877059937, 0.2330387532711029, -0.23613610863685608, -0.6695021390914917, 0.48848289251327515, -0.8661866784095764, 0.3686073422431946, -0.3073781132698059, -0.8298643231391907, -0.09631041437387466, 0.539315938949585, 0.20664848387241364, -0.6653256416320801, 0.707404613494873, -0.5496982336044312, -0.07806532829999924, -0.43082869052886963, -0.243220254778862, 0.17460417747497559, 0.11115416139364243, -0.6238910555839539, 0.9402235746383667, 0.5551108121871948, -0.5841097831726074, 0.3170127868652344, -0.4869505763053894, -0.6865584850311279, 0.2674816846847534, -0.008750803768634796, -0.04715215414762497, 0.3279530704021454, -0.1598399579524994, -0.0020513907074928284, 0.10505764931440353, 0.00829961895942688, -0.21891693770885468, -0.47863051295280457, 0.06349954754114151, 0.15165002644062042, 1.2536835670471191, 0.40836217999458313, -0.3771880269050598, -0.13140134513378143, -1.0526151657104492, 0.025433078408241272, 0.05050114542245865, -0.4230678379535675, -0.2504568099975586, -0.14882178604602814, -0.20381587743759155, 0.43072614073753357, 0.211847186088562, -0.8131152987480164, 0.22643622756004333, -0.2064029574394226, 0.3644968271255493, 0.8222091794013977, 0.2703104317188263, 0.3976055383682251, -0.662528395652771, 0.6563140153884888, 0.2076188176870346, 0.49590182304382324, 0.3540418744087219, -0.38458251953125, -0.9641585350036621, -0.44216156005859375, -0.1011742651462555, 0.2975531816482544, -0.7744960188865662, 0.584732174873352, 0.012979812920093536, -0.583670437335968, -0.44652819633483887, -0.1548808366060257, 0.27553316950798035, -0.06606584787368774, 0.033349260687828064, -0.4049779772758484, -0.7394419312477112, -1.0127894878387451, -0.13788151741027832, -0.5021387338638306, -0.21892833709716797, 0.316058874130249, 0.26177406311035156, -0.34290045499801636, 0.7610751390457153, -0.6059278249740601, -0.7040643692016602, -0.1397356241941452, -0.09959873557090759, 0.6187719106674194, 0.9297673106193542, 0.7491384744644165, -0.7224894165992737, -0.8973820209503174, -0.05623088777065277, -0.5420041680335999, -0.0200444795191288, 0.038149844855070114, -0.18260671198368073, -0.10515005141496658, 0.2235255241394043, -0.6100807189941406, 0.8851077556610107, 0.4322497844696045, -0.6815470457077026, 0.5210592746734619, -0.44444164633750916, 0.6073800921440125, -0.8642842173576355, -0.2911489009857178, -0.16823577880859375, -0.1976119577884674, -0.7090163826942444, 0.19411532580852509, -0.3002234399318695, -0.33029866218566895, -0.7474033832550049, 0.5274897217750549, -0.949701189994812, -0.18781507015228271, -0.3367280066013336, -0.03423096239566803, 0.25807833671569824, 0.19490540027618408, -0.2356024831533432, 0.8900530338287354, 0.9160482883453369, -0.7121309041976929, 0.5487279295921326, 0.3930911421775818, -0.1920013725757599, 0.7131237983703613, -0.38877418637275696, 0.05161998048424721, -0.1234494149684906, 0.14374573528766632, -1.1263887882232666, -0.5611584186553955, 0.13677364587783813, -0.7127033472061157, 0.17686951160430908, -0.16556832194328308, -0.09428530186414719, -0.6608462929725647, -0.3380642533302307, 0.25910115242004395, 0.48612266778945923, -0.4796990752220154, 0.6188147068023682, 0.5728044509887695, 0.026518702507019043, -0.5307408571243286, -0.7206822633743286, 0.20418094098567963, 0.0396462008357048, -0.5569697618484497, 0.3011690378189087, 0.006543636322021484, -0.6622449159622192, -0.37112486362457275, -0.26354193687438965, -0.6043857932090759, -0.2267974317073822, 0.7826987504959106, 0.11994192004203796, -0.0901225358247757, -0.20310261845588684, -0.3199536204338074, -0.06167520955204964, 0.3048745393753052, -0.07575280219316483, 0.7232836484909058, -0.3362374007701874, -0.17850065231323242, -0.887734055519104, 0.6527543663978577, 0.9970463514328003, 0.09446695446968079, 0.8066439628601074, 0.46324220299720764, -0.3564748764038086, -0.13046619296073914, -0.3535460829734802, -0.15120592713356018, -0.6857745051383972, -0.18067993223667145, -0.5322474241256714, -0.541143536567688, 0.405306875705719, 0.10101432353258133, -0.002104341983795166, 0.5167046189308167, 0.25336089730262756, -0.2880684733390808, 0.7550322413444519, 1.0343406200408936, 0.139179527759552, 0.3602914810180664, -0.28547126054763794, 0.6341596245765686, -0.8329952955245972, -0.3405216336250305, -0.4548070430755615, -0.25635868310928345, -0.3121439814567566, -0.10750839114189148, 0.5791019797325134, 0.28182145953178406, -0.44634687900543213, 0.12506791949272156, -0.5994207859039307, 0.6587362885475159, 0.6273984909057617, 0.5719727277755737, 0.19973009824752808, -0.4619945287704468, 0.19982939958572388, 0.0481666699051857, -0.45745593309402466, -0.40091103315353394, 0.7711142301559448, 0.239962637424469, 0.836402416229248, 0.2092711329460144, 0.495777428150177, 0.33375436067581177, 0.25280576944351196, -0.6318978667259216, 0.20098097622394562, -0.222828209400177, -1.2459611892700195, -0.20642685890197754, -0.16551320254802704, -1.0080583095550537, -0.11792058497667313, -0.1828898787498474, -0.8406623601913452, 0.26657307147979736, -0.19225652515888214, -0.6640648245811462, 0.5206148624420166, -0.5103873014450073, 0.6934713125228882, -0.23555894196033478, -0.2817091941833496, 0.1193007081747055, -0.6889920234680176, 0.5254614949226379, 0.3667148947715759, 0.291684091091156, -0.3796897530555725, -0.31928759813308716, 0.5068994760513306, -0.8812246322631836, 0.4408113658428192, -0.10565005987882614, 0.19428130984306335, 0.5358880758285522, 0.4153594970703125, 0.38239696621894836, 0.28699085116386414, -0.2459375262260437, -0.23415438830852509, 0.22503438591957092, -0.7581344842910767, -0.27754613757133484, 0.9095459580421448, -0.7519426345825195, -0.8586918115615845, -0.6954257488250732, -0.3064495921134949, 0.28865256905555725, 0.027814753353595734, 0.7154771089553833, 0.645688533782959, -0.18821047246456146, 0.2377701848745346, 0.7208226919174194, -0.014694392681121826, 0.7235565185546875, 0.2941119372844696, -0.4056650400161743, -0.6169788241386414, 0.7182323932647705, 0.26270410418510437, 0.05162673443555832, 0.028327936306595802, 0.305873841047287, -0.17546698451042175, -0.15078604221343994, -0.6318324208259583, -0.0639532133936882, -0.7465730905532837, -0.09279506653547287, -0.7541394829750061, -0.25077366828918457, -0.711459219455719, -0.8068135976791382, -0.7080166339874268, -0.45604419708251953, -0.4301193058490753, -0.23352199792861938, 0.5163111090660095, 1.1627082824707031, -0.2613151967525482, 0.8011053204536438, -0.8900958299636841, 0.4193631410598755, 0.49695414304733276, 0.7519732117652893, -0.11060995608568192, -0.6746934056282043, -0.07836242020130157, -0.5338752865791321, -0.2948507070541382, -1.0156972408294678, 0.3177468180656433, -0.03688589483499527, 0.40537142753601074, 0.42938917875289917, 0.2519027590751648, 0.49392780661582947, -0.30073127150535583, 1.1130690574645996, 0.7274304628372192, -0.8033812046051025, 0.519527792930603, -0.7635002136230469, 0.16122305393218994, 0.9363657236099243, 0.5447748303413391, -0.4417076110839844, -0.15113931894302368, -1.0259766578674316, -0.8431372046470642, 0.5963036417961121, 0.154399111866951, 0.016843900084495544, 0.018214160576462746, 0.03168261796236038, 0.2946636974811554, 0.3591306209564209, -0.7847291231155396, -0.8240218758583069, -0.13851101696491241, 0.2580331265926361, 0.3145604729652405, -0.16485397517681122, -0.30038729310035706, -0.611615777015686, 0.8711388111114502, 0.1828646957874298, 0.3546234369277954, 0.12073377519845963, 0.04369349032640457, -0.35506927967071533, 0.14787030220031738, 0.552300214767456, 1.2529058456420898, -0.40983325242996216, 0.36739107966423035, 0.17512641847133636, -0.6540074348449707, 0.6494999527931213, -0.3036351501941681, -0.021784229204058647, 0.6203134655952454, 0.17760881781578064, 0.2852841913700104, 0.31559956073760986, -0.36214280128479004, 0.6047804355621338, -0.029421962797641754, -0.17758488655090332, -0.7005698084831238, 0.15866976976394653, 0.02935054898262024, 0.27507975697517395, 0.43920236825942993, 0.24443349242210388, 0.08246780931949615, -1.0602879524230957, 0.5711052417755127, 0.24493923783302307, -0.8676615953445435, -0.3011007606983185, 0.7047957181930542, 0.4075390696525574, -0.4759957194328308, 0.38749080896377563, 0.012702599167823792, -0.6710242033004761, 0.5987739562988281, 0.5510413646697998, 0.7569676637649536, -0.47024261951446533, 0.30880194902420044, 0.6245604157447815, 0.06711314618587494, 0.2055054008960724, 0.6923206448554993, 0.031493958085775375, -0.4473864436149597, 0.23022444546222687, -0.5986735820770264, -0.14689938724040985, 0.13735318183898926, -0.8047428131103516, 0.3515335023403168, -0.9312613010406494, -0.2408994436264038, 0.08751562982797623, 0.11761122196912766, -0.6130945682525635, 0.6674697995185852, -0.008525177836418152, 0.9280493259429932, -0.8549083471298218, 0.962627649307251, 0.855958104133606, -0.31830841302871704, -0.7709447145462036, -0.3355674147605896, 0.020139683037996292, -0.666053056716919, 0.7108277082443237, -0.18972992897033691, -0.4120742678642273, -0.09323986619710922, -0.622982919216156, -1.0003725290298462, 0.030618011951446533, 0.017415642738342285, -0.46250346302986145, 0.4454795718193054, -0.5157254934310913, 0.32896843552589417, -0.19169752299785614, 0.3050948977470398, 0.7719473838806152, 0.7958453297615051, 0.22960808873176575, -0.6354779005050659, -0.4466683268547058, -0.010275978595018387, -0.16682831943035126, 0.45458120107650757, -1.0710972547531128, 0.9677367806434631, -0.465257465839386, -0.3473321199417114, 0.2706642746925354, 0.7977622747421265, 0.25385016202926636, 0.35241299867630005, 0.6219539642333984, 0.901680588722229, 0.3645011782646179, -0.31178319454193115, 0.7276746034622192, 0.24263358116149902, 0.41525399684906006, 0.7364204525947571, -0.2271222174167633, 0.5403848886489868, 0.890641450881958, -0.786162257194519, 0.5381766557693481, 0.7879031896591187, 0.16047367453575134, 0.7758152484893799, 0.5944145321846008, -0.6119526624679565, -0.11859416216611862, -0.14641423523426056, -0.6171559691429138, 0.19797521829605103, 0.05292651057243347, -0.11974731832742691, -0.2846011519432068, -0.13567379117012024, 0.12295036017894745, 0.2836453914642334, -0.5959327816963196, 0.606866717338562, 0.34341585636138916, -0.6328279972076416, 0.21025118231773376, -0.2577958106994629, 0.6709499359130859, -0.597815752029419, 0.027336470782756805, -0.22699351608753204, 0.4181041717529297, -0.4618743360042572, -1.007582426071167, 0.47138410806655884, -0.2920239567756653, -0.4055127203464508, -0.2694243788719177, 0.8072364330291748, -0.2213391363620758, -0.5572859048843384, 0.3748602867126465, 0.13466602563858032, 0.41473665833473206, 0.4014597535133362, -0.548729419708252, 0.04779002070426941, 0.13760146498680115, -0.20061832666397095, 0.3601188063621521, 0.2973729968070984, 0.2548877000808716, 0.7100129723548889, 0.5052472352981567, 0.2219872921705246, 0.25694340467453003, -0.18668603897094727, 0.8387457728385925, -0.910279393196106, -0.8167636394500732, -0.9497334957122803, 0.38498952984809875, 0.025727514177560806, -0.8801448345184326, 0.792030930519104, 0.7652606964111328, 0.5113967061042786, -0.48778921365737915, 0.4755285382270813, -0.3264795243740082, 0.5047135949134827, -0.13870957493782043, 1.0010894536972046, -0.7607628703117371, -0.2958727777004242, -0.030554018914699554, -0.9216442108154297, -0.2533750832080841, 0.5375744104385376, 0.15408331155776978, -0.14608070254325867, 0.4385908544063568, 0.4421638548374176, 0.022173460572957993, 0.25223129987716675, 0.3286101222038269, 0.06042804569005966, 0.14508435130119324, 0.5510439872741699, 1.0931142568588257, -0.4339442551136017, 0.18694785237312317, -0.49234724044799805, -0.45362499356269836, -0.41534894704818726, -0.954805850982666, -0.6640312075614929, -0.4818545877933502, -0.2973933517932892, -0.5915579199790955, 0.11726466566324234, 0.9300887584686279, 0.9018136262893677, -0.6256729364395142, -0.4124363958835602, 0.257135272026062, 0.302933931350708, -0.22954198718070984, -0.14626771211624146, 0.2736491858959198, -0.006407761946320534, -0.7211180329322815, 0.39309436082839966, 0.8079761266708374, 0.38871288299560547, 0.08443976938724518, -0.07217144966125488, -0.4407082200050354, 0.02610170841217041, 0.537355899810791, 0.5729560256004333, -0.6281179785728455, -0.4099644422531128, -0.5328319668769836, -0.21386729180812836, 0.15529415011405945, 0.4807756543159485, -0.5166375041007996, 0.32661134004592896, 0.8128959536552429, 0.17017662525177002, 0.7187885046005249, -0.0022493302822113037, 0.6678643226623535, -0.8970248103141785, 0.4446263015270233, 0.39533841609954834, 0.5681870579719543, 0.08998032659292221, -0.7339165210723877, 0.9820243120193481, 0.49674344062805176, -0.6334056854248047, -1.0034244060516357, 0.03079952299594879, -1.1931145191192627, -0.37881749868392944, 0.9890843033790588, -0.09595756232738495, -0.9597461223602295, -0.36448946595191956, -0.36777186393737793, 0.07989630848169327, -0.3380977511405945, 0.3549822270870209, 0.8268198370933533, -0.2538071870803833, -0.22041818499565125, -0.950558066368103, 0.4752945005893707, 0.3102529048919678, -0.5886629819869995, -0.051143623888492584, 0.3293913006782532, 0.4523686170578003, 0.30097001791000366, 0.523955762386322, 0.10428232699632645, 0.8970535397529602, 0.25200408697128296, 0.30491408705711365, -0.045266419649124146, -0.5900783538818359, -0.01606648974120617, 0.2621474862098694, 0.04487812519073486, -0.6869445443153381 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
heegyu/namuwiki-extracted
heegyu
2023-01-15T09:46:31Z
215
3
null
[ "task_categories:other", "language_creators:other", "multilinguality:monolingual", "size_categories:100K<n<1M", "language:ko", "license:cc-by-nc-sa-2.0", "region:us" ]
2023-01-15T09:46:31Z
2022-10-01T01:27:07.000Z
2022-10-01T01:27:07
--- license: cc-by-nc-sa-2.0 language: - ko language_creators: - other multilinguality: - monolingual size_categories: - 100K<n<1M task_categories: - other --- # namu.wiki database dump ## https://namu.wiki/ database dump 2022/03/01<br/> - 571308rows - download size: 2.19GB ## 주의사항 namu-wiki-extractor를 이용하여 전처리, 추가로 아래 전처리를 수행했습니다 1. 헤더 제거 `== 개요 ==` 1. 테이블 제거 1. `[age(1997-01-01)]` 는 전처리 시점 기준으로 적용(2022년 10월 2일) 1. `[math(a / b + c)]` 는 제거하지 않음. 1. math 마크다운이 각주 내에 있을 경우, 각주가 전처리되지 않은 문제 있음. ## Usage ```bash pip install datasets ``` ```python from datasets import load_dataset dataset = load_dataset("heegyu/namuwiki-extracted") print(dataset["train"][0]) ``` ``` { 'title': '!!아앗!!', 'text': '!!ああっと!! ▲신 세계수의 미궁 2에서 뜬 !!아앗!! 세계수의 미궁 시리즈에 전통으로 등장하는 대사. 2편부터 등장했으며 훌륭한 사망 플래그의 예시이다. 세계수의 모험가들이 탐험하는 던전인 수해의 구석구석에는 채취/벌채/채굴 포인트가 있으며, 이를 위한 채집 스킬에 ...', 'contributors': '110.46.34.123,kirby10,max0243,218.54.117.149,ruby3141,121.165.63.239,iviyuki,1.229.200.194,anatra95,kiri47,175.127.134.2,nickchaos71,chkong1998,kiwitree2,namubot,huwieblusnow', 'namespace': '' } ```
[ -0.5671911835670471, -0.6797465085983276, 0.17216941714286804, 0.19564376771450043, -0.37324872612953186, -0.43560662865638733, -0.14233441650867462, -0.1371321976184845, 0.48261693120002747, 0.5540899634361267, -0.5946372747421265, -0.5894873142242432, -0.5959388017654419, 0.39965519309043884, -0.21995513141155243, 1.0824534893035889, -0.0088754091411829, -0.1374867856502533, -0.1651315540075302, -0.03259788826107979, -0.5493926405906677, -0.31884634494781494, -0.7218980193138123, -0.321902871131897, 0.2959505617618561, 0.7521249055862427, 0.6560108065605164, 0.41016441583633423, 0.4050498604774475, 0.39223116636276245, 0.217958465218544, 0.03799878805875778, -0.4839378595352173, -0.0015486163320019841, -0.00002917509300459642, -0.5485537052154541, -0.5261749029159546, -0.09964118152856827, 0.6950944066047668, 0.256501168012619, 0.04598498344421387, 0.4954535663127899, -0.042003318667411804, 1.0294530391693115, -0.4536924362182617, 0.25017452239990234, -0.375744104385376, -0.09098129719495773, -0.34118539094924927, -0.18287412822246552, 0.07899495959281921, -0.6438093781471252, -0.18193787336349487, -0.9256406426429749, 0.06626608222723007, 0.08687194436788559, 1.8359322547912598, -0.052525632083415985, -0.5441865921020508, 0.0840669646859169, -0.4101170301437378, 1.0846375226974487, -1.089487075805664, -0.1496274322271347, 0.7152187824249268, 0.5400416851043701, -0.18232175707817078, -0.7570677399635315, -0.9103476405143738, 0.2386094331741333, -0.20976081490516663, 0.13175180554389954, 0.05374310910701752, -0.4538094401359558, 0.46611636877059937, 0.41307640075683594, -0.5372838377952576, 0.120582215487957, -0.7022062540054321, -0.1478521078824997, 0.9956419467926025, 0.3774409592151642, 0.7915447950363159, -1.0483378171920776, -0.5265493988990784, -0.2330542653799057, -0.35358506441116333, -0.056856147944927216, 0.42003875970840454, -0.052352216094732285, -0.3475244641304016, 0.6655431389808655, -0.4689110219478607, 0.38231512904167175, -0.2380559891462326, -0.6283714175224304, 0.5353795289993286, -0.4033011496067047, -0.39318686723709106, -0.008483882062137127, 1.3832687139511108, 0.6310238838195801, 0.2284235954284668, 0.26646390557289124, 0.07943379133939743, -0.2503125071525574, -0.08808273822069168, -0.7944834232330322, -0.543455958366394, 0.5535882115364075, -0.8161438703536987, -0.44059038162231445, 0.42219701409339905, -1.3624467849731445, -0.19206297397613525, -0.058068130165338516, 0.4324339032173157, -0.6046740412712097, -0.9309365749359131, -0.1566738486289978, -0.3848589062690735, 0.18239517509937286, 0.3868361711502075, -0.6396878361701965, 0.23365651071071625, 0.5127113461494446, 0.956053614616394, 0.09175626188516617, -0.4624212384223938, 0.10308379679918289, 0.2564268112182617, 0.036568861454725266, 0.614374577999115, 0.273937463760376, -0.3739437162876129, -0.39670512080192566, 0.2933115065097809, -0.19832341372966766, -0.3654167056083679, 0.7020354270935059, -0.3908419609069824, 0.2763180136680603, -0.4304986596107483, -0.3613242506980896, -0.31623712182044983, 0.4162749648094177, -0.9497352838516235, 1.1493709087371826, 0.4847889840602875, -1.339348554611206, 0.007689145393669605, -0.827949583530426, -0.24625428020954132, 0.09376882016658783, 0.08976579457521439, -0.6500882506370544, -0.34858644008636475, 0.24627548456192017, 0.3711773157119751, -0.24665461480617523, 0.10845156013965607, -0.07693208009004593, -0.16771699488162994, 0.4442814588546753, -0.21825054287910461, 1.7850723266601562, 0.546191394329071, -0.3167118728160858, -0.05400742217898369, -1.121082067489624, 0.32571953535079956, 0.5900096297264099, -0.3566551208496094, -0.7391340136528015, -0.35752779245376587, 0.26028406620025635, 0.5404805541038513, 0.547791600227356, -0.5937833189964294, 0.4790182411670685, -0.345889687538147, 0.26977506279945374, 0.8647854328155518, 0.23679398000240326, 0.406779021024704, -0.38587266206741333, 0.6321466565132141, 0.18734952807426453, 0.14930936694145203, 0.1962340921163559, -0.40946605801582336, -0.7382267117500305, -0.1495574712753296, 0.4627442955970764, 0.6925398707389832, -0.8276177644729614, 0.5970618724822998, -0.5668256282806396, -0.9022320508956909, -0.842023491859436, 0.010428044945001602, 0.11358626931905746, 0.515160322189331, 0.40856441855430603, -0.10701903700828552, -1.0396089553833008, -0.6532716155052185, -0.18026171624660492, -0.2382514327764511, -0.16348671913146973, 0.4357157349586487, 0.9236133694648743, -0.2035359889268875, 0.8257095813751221, -0.8013269901275635, -0.4694972038269043, -0.3212062120437622, 0.040371786803007126, 0.6075815558433533, 0.6197336316108704, 0.6264899373054504, -0.9511507749557495, -0.8182037472724915, -0.008173080161213875, -1.2665146589279175, -0.07961325347423553, -0.13396981358528137, -0.5580515265464783, -0.013751116581261158, 0.03769794851541519, -0.9296940565109253, 0.49948471784591675, 0.23927156627178192, -0.6675886511802673, 1.1835790872573853, -0.14023393392562866, 0.3497892916202545, -1.392747402191162, 0.3862420618534088, -0.35772964358329773, -0.06290580332279205, -0.4450525641441345, 0.2388910949230194, 0.07893835008144379, 0.08080137521028519, -0.2213142067193985, 0.5541910529136658, -1.0007197856903076, 0.2178657203912735, -0.1149958074092865, 0.4621373414993286, 0.1049288734793663, 0.2901802062988281, -0.34359487891197205, 0.43955859541893005, 0.5643185973167419, -0.670721173286438, 0.6975930333137512, 0.48689237236976624, -0.44019755721092224, 0.41945257782936096, -0.4804900884628296, -0.15052606165409088, 0.013791670091450214, 0.008132368326187134, -0.931000828742981, -0.4744451642036438, 0.4796347916126251, -0.5884645581245422, 0.3405483067035675, -0.33702918887138367, -0.3537226617336273, -0.43452292680740356, -0.46969783306121826, -0.0021750759333372116, 0.49190595746040344, -0.3557288944721222, 0.25003936886787415, 0.6148099899291992, -0.053731806576251984, -0.9360017776489258, -0.7392691373825073, 0.11764250695705414, -0.3261568546295166, -0.6963549256324768, 0.13448533415794373, -0.05041758716106415, -0.2765877842903137, 0.030938364565372467, 0.07094083726406097, -0.09048368781805038, 0.05727425962686539, 0.3451070189476013, 0.41421714425086975, -0.32845646142959595, -0.4966799318790436, -0.11213985085487366, -0.27405688166618347, 0.385343998670578, 0.06539789587259293, 0.6925050020217896, 0.18383796513080597, 0.060632914304733276, -0.5178344249725342, 0.2040356695652008, 0.5445831418037415, -0.07468515634536743, 0.9391087293624878, 1.0131845474243164, -0.1660606414079666, -0.03379610553383827, -0.2430482804775238, 0.09348057955503464, -0.509615957736969, 0.3441859483718872, -0.4691915810108185, -0.3294297158718109, 0.4859863519668579, -0.10622113943099976, 0.020939936861395836, 1.0672545433044434, 0.2715241611003876, -0.057642076164484024, 0.8827378749847412, 0.41879624128341675, -0.30334824323654175, 0.4436016380786896, -0.997277021408081, -0.12896080315113068, -1.043413758277893, -0.5159595608711243, -0.6245861649513245, -0.5167513489723206, -0.7311828136444092, -0.04054374247789383, 0.21432727575302124, 0.22174489498138428, -0.12353479117155075, 0.5149577856063843, -0.7880268096923828, 0.17250223457813263, 0.3907145857810974, 0.30029934644699097, 0.20697158575057983, -0.1358732432126999, 0.12527289986610413, -0.11646801233291626, -0.4334232211112976, -0.27847743034362793, 1.2314356565475464, 0.10931681841611862, 0.7190629243850708, 0.31853070855140686, 0.9622151255607605, -0.0709262490272522, -0.07761698961257935, -0.5977644324302673, 0.7170469164848328, 0.2985421419143677, -1.009138822555542, -0.5888575911521912, -0.6742586493492126, -1.3605289459228516, 0.39154428243637085, -0.29783356189727783, -0.9133459329605103, 0.40520551800727844, -0.40806490182876587, 0.20908722281455994, 0.8314732909202576, -0.5278463363647461, 1.0574593544006348, -0.09379783272743225, -0.1707756370306015, -0.10760388523340225, -0.830926239490509, 0.8487468361854553, -0.007627218496054411, 0.5213276743888855, -0.4841770827770233, -0.05189191922545433, 1.1553641557693481, -0.962283730506897, 0.37743377685546875, -0.5207155346870422, 0.008103587664663792, 0.40237486362457275, 0.0775589570403099, 0.31217798590660095, 0.39459553360939026, -0.15690912306308746, 0.3637053072452545, 0.18552342057228088, -0.6745066046714783, -0.5200362801551819, 1.2306123971939087, -1.2255220413208008, -0.3409579396247864, -0.683610200881958, -0.46982836723327637, 0.3970165252685547, 0.7190895080566406, 0.6601301431655884, 0.3349837064743042, 0.12864366173744202, 0.07449930161237717, 0.35485753417015076, -0.02683166228234768, 0.6231878399848938, 0.328559011220932, -0.3433404862880707, -0.5261721014976501, 1.0400397777557373, 0.507612943649292, -0.07259124517440796, 0.3690410852432251, 0.24720549583435059, -0.10648060590028763, -0.4104660749435425, -0.2697797119617462, 0.4872160851955414, -0.6601998805999756, -0.6193360686302185, -0.8808631896972656, -0.5182114839553833, -0.5567975044250488, 0.22002379596233368, -0.17061170935630798, -0.7385658025741577, -0.3842089772224426, -0.22323763370513916, 0.5898758769035339, 0.5021573901176453, -0.387813925743103, 0.2605457305908203, -0.9203639626502991, 0.6187132596969604, -0.06657686829566956, 0.1047729104757309, 0.3138352632522583, -0.3856731355190277, -0.49321117997169495, -0.015550067648291588, -0.3547845780849457, -1.2875784635543823, 0.9563049674034119, -0.039763614535331726, 0.6074846982955933, 0.6159509420394897, 0.4095093905925751, 0.8505386710166931, -0.046243589371442795, 1.0638337135314941, 0.21752490103244781, -0.5990343689918518, 0.8110004663467407, -0.27372151613235474, 0.13103176653385162, 0.5792773962020874, 0.6838216781616211, -0.5273470282554626, 0.0028263379354029894, -1.0521187782287598, -1.014001727104187, 0.9883581399917603, 0.37449195981025696, -0.193355992436409, 0.21362963318824768, 0.1848893016576767, 0.01902718096971512, -0.09323224425315857, -0.7851634621620178, -1.0139869451522827, -0.3808467984199524, -0.16313032805919647, 0.1580987125635147, -0.25270360708236694, -0.06032184138894081, -0.5800496339797974, 0.9637126326560974, 0.29657867550849915, 0.30673834681510925, 0.39177802205085754, -0.17954231798648834, -0.04759857803583145, 0.2689565122127533, 0.15867315232753754, 0.6862056255340576, -0.4181382656097412, 0.12889781594276428, 0.18401657044887543, -0.9961929321289062, 0.16143515706062317, 0.02762533538043499, -0.38503074645996094, 0.37782788276672363, 0.2292819619178772, 0.6323052048683167, 0.08634230494499207, -0.2698250114917755, 0.500799298286438, -0.26681068539619446, -0.023891346529126167, -0.6851106882095337, 0.16967616975307465, -0.06331545859575272, -0.016570840030908585, 0.4599708914756775, -0.09179481863975525, 0.14047598838806152, -0.4191409647464752, 0.05072031915187836, 0.169586643576622, -0.01590263843536377, -0.1278885006904602, 0.73228919506073, -0.3132643699645996, -0.07777867466211319, 0.7833191752433777, 0.05260605365037918, -0.4475621283054352, 0.828168511390686, 0.6088047623634338, 0.8156177401542664, -0.26224762201309204, 0.09755311161279678, 1.2442114353179932, 0.2525958716869354, 0.009721042588353157, 0.700599730014801, 0.06586887687444687, -0.46304383873939514, 0.03465571627020836, -0.6635544896125793, 0.06839354336261749, 0.42471063137054443, -1.0085124969482422, 0.38455742597579956, -0.4039923846721649, -0.4213752746582031, 0.0018729593139141798, 0.7112382054328918, -0.5243542790412903, 0.29949453473091125, -0.26983943581581116, 0.9481816291809082, -0.7668625712394714, 1.161623477935791, 0.6837034225463867, -0.7070099711418152, -1.0187537670135498, -0.2188616245985031, -0.0347774475812912, -0.5619175434112549, 0.371468722820282, 0.033888235688209534, 0.48033544421195984, 0.10445067286491394, -1.077268362045288, -1.1594152450561523, 1.5362999439239502, -0.0001915916072903201, -0.21220487356185913, -0.04739531874656677, -0.16812758147716522, 0.21557776629924774, 0.07226449251174927, 0.4014386236667633, 0.6049749255180359, 0.7993664145469666, -0.41923433542251587, -0.8334500193595886, 0.45855069160461426, -0.6767093539237976, -0.1746213287115097, 0.2500893175601959, -0.7663756608963013, 1.1492358446121216, -0.2607400417327881, -0.3663923442363739, 0.05070414021611214, 0.9247851371765137, 0.38850030303001404, 0.38306328654289246, 0.44534972310066223, 0.5029966235160828, 0.7466592788696289, -0.32062268257141113, 0.9865397214889526, 0.09353531152009964, 0.6692723631858826, 0.7398415803909302, 0.4724975824356079, 0.7587164640426636, 0.452540785074234, -0.6176482439041138, 1.1725736856460571, 0.3885091245174408, -0.3575867712497711, 0.5691182017326355, -0.2313012033700943, 0.045347072184085846, 0.08818478137254715, 0.22622080147266388, -0.5379207134246826, 0.27165791392326355, 0.3942914307117462, -0.15544067323207855, -0.08172237873077393, -0.08487673848867416, 0.5743997693061829, -0.17234592139720917, -0.24933600425720215, 0.7549355626106262, 0.23212309181690216, -0.5072181224822998, 0.8487899303436279, 0.1293223649263382, 0.7975361943244934, -0.9102356433868408, -0.12104079872369766, -0.1021556556224823, 0.17729510366916656, -0.6443873047828674, -1.0374099016189575, -0.021980781108140945, -0.11248113214969635, -0.23412826657295227, 0.27513331174850464, 1.1360704898834229, -0.3919272720813751, -0.3222070634365082, 0.20397402346134186, 0.25141990184783936, 0.57818204164505, 0.18460333347320557, -0.9547615647315979, -0.09543680399656296, 0.17764246463775635, -0.4422646760940552, 0.5565550327301025, 0.5966158509254456, 0.11357460916042328, 0.5773217678070068, 0.9860924482345581, 0.33658310770988464, 0.04409122094511986, -0.31774094700813293, 0.7892177700996399, -1.0041879415512085, -0.673946738243103, -1.0128434896469116, 0.7578961849212646, -0.6603044867515564, -0.6340255737304688, 1.3132647275924683, 0.7666918635368347, 0.6238479018211365, -0.18894754350185394, 1.0795226097106934, -0.6220051050186157, 0.46336910128593445, -0.39459046721458435, 1.2273255586624146, -0.7023624181747437, -0.13198238611221313, -0.6184269785881042, -0.617466926574707, 0.1029743030667305, 0.673642635345459, -0.045860227197408676, -0.07164274901151657, 0.7309126257896423, 0.586001455783844, -0.17062486708164215, -0.026482922956347466, 0.04037744551897049, 0.5006904602050781, 0.2111935019493103, 0.8217659592628479, 0.41868236660957336, -1.1646380424499512, 0.6463268399238586, -0.8157280087471008, -0.18584886193275452, -0.4220570921897888, -0.5942884683609009, -0.9695783853530884, -0.5162081718444824, -0.20376655459403992, -0.8740488290786743, -0.5941454172134399, 0.6930151581764221, 0.38103872537612915, -1.0421408414840698, -0.39077675342559814, 0.36307284235954285, 0.6177049875259399, -0.6450349688529968, -0.4146788716316223, 0.9807151556015015, 0.09768551588058472, -0.7832879424095154, 0.07101445645093918, -0.2792466878890991, -0.013307381421327591, -0.12118074297904968, -0.284861296415329, -0.7006843090057373, -0.2185736447572708, 0.39778754115104675, 0.5166241526603699, -0.45820021629333496, 0.2622700035572052, -0.20139753818511963, -0.4998050332069397, 0.19591756165027618, 0.2900439500808716, -0.5465155243873596, 0.34399813413619995, 1.019355058670044, -0.07731857150793076, 0.7666061520576477, 0.07988116145133972, 0.32427477836608887, -0.6429070830345154, 0.16572175920009613, -0.26964128017425537, 0.45904165506362915, 0.27298223972320557, -0.5176534652709961, 0.7902553081512451, 0.5830538868904114, -0.7675597071647644, -0.972031831741333, -0.3395662307739258, -1.1547139883041382, -0.49688783288002014, 1.2573102712631226, -0.17825184762477875, -0.6812196969985962, -0.2684479057788849, -0.6072413325309753, 0.6631369590759277, -0.369273841381073, 0.7328224778175354, 0.6146509647369385, 0.06119552254676819, -0.02275368757545948, -0.797471821308136, 0.6558293104171753, -0.0805559828877449, -0.9290189146995544, -0.2551104724407196, 0.18973547220230103, 0.5962435007095337, 0.32833683490753174, 0.8167374134063721, -0.17321228981018066, 0.1693057119846344, 0.3627907931804657, 0.2598694860935211, -0.31565600633621216, 0.08493928611278534, -0.28389284014701843, -0.04820336401462555, -0.44825980067253113, -0.3605727553367615 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Birchlabs/openai-prm800k-stepwise-critic
Birchlabs
2023-06-03T10:51:37Z
215
9
null
[ "license:mit", "region:us" ]
2023-06-03T10:51:37Z
2023-06-03T10:49:21.000Z
2023-06-03T10:49:21
--- license: mit ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
TanveerAman/AMI-Corpus-Text-Summarization
TanveerAman
2023-06-19T07:17:53Z
215
5
null
[ "task_categories:summarization", "language:en", "region:us" ]
2023-06-19T07:17:53Z
2023-06-17T22:51:54.000Z
2023-06-17T22:51:54
--- task_categories: - summarization language: - en ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
jackhhao/jailbreak-classification
jackhhao
2023-09-30T01:55:08Z
215
0
null
[ "task_categories:text-classification", "size_categories:10K<n<100K", "language:en", "license:apache-2.0", "jailbreak", "security", "moderation", "region:us" ]
2023-09-30T01:55:08Z
2023-09-30T00:56:39.000Z
2023-09-30T00:56:39
--- license: apache-2.0 task_categories: - text-classification language: - en tags: - jailbreak - security - moderation pretty_name: Jailbreak Classification size_categories: - 10K<n<100K configs: - config_name: default data_files: - split: train path: "balanced/jailbreak_dataset_train_balanced.csv" - split: test path: "balanced/jailbreak_dataset_test_balanced.csv" --- # Jailbreak Classification ### Dataset Summary Dataset used to classify prompts as jailbreak vs. benign. ## Dataset Structure ### Data Fields - `prompt`: an LLM prompt - `type`: classification label, either `jailbreak` or `benign` ## Dataset Creation ### Curation Rationale Created to help detect & prevent harmful jailbreak prompts when users interact with LLMs. ### Source Data Jailbreak prompts sourced from: <https://github.com/verazuo/jailbreak_llms> Benign prompts sourced from: - [OpenOrca](https://huggingface.co/datasets/Open-Orca/OpenOrca) - <https://github.com/teknium1/GPTeacher>
[ -0.31827598810195923, -0.7620972394943237, 0.4902574419975281, 0.23863479495048523, -0.14549514651298523, 0.17961332201957703, 0.02108936384320259, -0.265776664018631, 0.4356287717819214, 0.5430458784103394, -0.8595380783081055, -0.9458975791931152, -0.5360621809959412, 0.12784597277641296, -0.24693098664283752, 1.2329660654067993, -0.0009087161743082106, -0.050513364374637604, -0.16778814792633057, -0.14041543006896973, -0.8033718466758728, -0.4395350217819214, -0.5956078767776489, 0.15403592586517334, 0.7357314825057983, 0.7717433571815491, 0.38010597229003906, 0.5966187119483948, 0.3950633704662323, 0.18274599313735962, -0.21911269426345825, 0.07694191485643387, -0.3515540659427643, 0.20644861459732056, -0.20385369658470154, -0.4556184411048889, -0.32827237248420715, 0.23386584222316742, -0.07539388537406921, 0.1631142795085907, -0.09567215293645859, 0.23953768610954285, -0.17017534375190735, 0.6351445317268372, -0.6772469282150269, 0.10282491892576218, -0.6015687584877014, 0.10629058629274368, -0.5052759051322937, 0.06540275365114212, -0.4557298421859741, -0.8324505090713501, -0.26620572805404663, -0.41588786244392395, 0.21573372185230255, 0.2118040919303894, 0.5831576585769653, 0.12311922758817673, -0.3316672146320343, -0.3744261562824249, -0.23710942268371582, 0.3009520471096039, -0.38474029302597046, -0.06876937299966812, 0.7668638229370117, 0.4340238869190216, -0.25731611251831055, -0.5459350347518921, -0.23835453391075134, -0.2869156002998352, 0.17895066738128662, -0.2601841390132904, -0.3063245117664337, 0.04443199187517166, 0.3641584515571594, 0.36652612686157227, -0.5936626195907593, 0.6364457607269287, -0.7178159952163696, -0.6823535561561584, 0.5475524067878723, 0.48057135939598083, 0.3494669497013092, -0.3123825192451477, -0.2711353302001953, 0.10841520875692368, -1.0702285766601562, 0.2228224277496338, 0.5558581948280334, 0.46441954374313354, -0.6185815334320068, 0.7625174522399902, -0.04961100593209267, 0.7947755455970764, 0.10998126119375229, -0.26948991417884827, 0.5941587090492249, -0.2756902575492859, -0.04719774052500725, 0.30685752630233765, 0.8560431599617004, 0.6800890564918518, 0.23679788410663605, -0.2763092517852783, -0.12093809247016907, -0.019308287650346756, 0.19004394114017487, -0.8210258483886719, -0.22851566970348358, 0.3031478226184845, -0.5892342329025269, -0.7459555864334106, 0.3233962953090668, -0.7785742878913879, -1.0952186584472656, 0.13627208769321442, 0.16577722132205963, -0.15010930597782135, 0.1938968300819397, -0.02794618159532547, -0.19996774196624756, -0.01574660651385784, 0.2534346878528595, -0.9794034957885742, 0.16097469627857208, 0.46967074275016785, 0.9763255715370178, -0.1717110574245453, 0.0601082481443882, -0.1637057363986969, -0.1664842963218689, 0.02394757606089115, 0.9012956619262695, -0.1675126552581787, -0.7817140221595764, 0.013360824435949326, 0.19444188475608826, -0.00106558867264539, -0.7583726644515991, 0.8983728885650635, -0.42832574248313904, 0.3488815426826477, -0.40123820304870605, -0.44009819626808167, -0.391298770904541, 0.16594432294368744, -0.8188803195953369, 0.7778237462043762, 0.3611123859882355, -0.9683273434638977, 0.7066455483436584, -0.6015762090682983, -0.2611845135688782, 0.1112523004412651, 0.09388460218906403, -0.3981119394302368, -0.26922303438186646, -0.023484012112021446, 0.5729978084564209, -0.21356341242790222, 0.3830963969230652, -0.590470552444458, -0.221587672829628, 0.4884554147720337, -0.1973700225353241, 0.851892352104187, 0.719325602054596, -0.19558393955230713, 0.2516426146030426, -0.8316670060157776, -0.36626866459846497, 0.16083282232284546, -0.15746963024139404, -0.46635305881500244, 0.12745921313762665, -0.04422731325030327, 0.07693865895271301, 0.3861049711704254, -0.8496770858764648, 0.5579817891120911, -0.0840400978922844, 0.6449915170669556, 0.875333845615387, 0.26582127809524536, 0.031418804079294205, -0.3302598297595978, 0.49978339672088623, 0.22072122991085052, 0.4272283911705017, 0.049849770963191986, -0.7637359499931335, -0.15854357182979584, -0.4430060088634491, 0.09310607612133026, 0.9953718185424805, -0.3719554543495178, 0.7419650554656982, -0.01004714798182249, -0.7121297121047974, -0.28988394141197205, 0.1629534810781479, 0.33842992782592773, 1.0043796300888062, 0.435754656791687, -0.14252766966819763, -0.6089290380477905, -0.7139104008674622, 0.08397578448057175, -0.41988012194633484, 0.12430986016988754, 0.4537074565887451, 0.42674705386161804, -0.4852463901042938, 0.8371241092681885, -0.523203432559967, -0.1465616375207901, -0.20715558528900146, -0.14722132682800293, 0.6176232099533081, 0.4760633111000061, 0.8047468662261963, -0.4174678325653076, -0.23155826330184937, -0.46506232023239136, -0.7334705591201782, -0.5244717001914978, -0.005768289789557457, 0.19670113921165466, -0.04379088804125786, 0.45548540353775024, -0.3932834565639496, 0.756435751914978, 0.08590854704380035, -0.990482747554779, 0.8308637738227844, 0.19029465317726135, 0.3802781403064728, -0.9321823120117188, -0.05564090237021446, 0.055933915078639984, -0.10614645481109619, -0.42692896723747253, -0.2657589018344879, 0.09106601029634476, 0.24888326227664948, -0.6718302965164185, 0.5127214789390564, 0.006836903281509876, 0.12331756204366684, 0.06758308410644531, 0.15138618648052216, -0.11338969320058823, -0.15410059690475464, -0.36895644664764404, 1.071034550666809, 0.7003254294395447, -0.4540911018848419, 0.852598249912262, 0.5981812477111816, -0.495087593793869, 0.22591565549373627, -0.7616735100746155, 0.008143393322825432, 0.09845048934221268, 0.02922716736793518, -1.0712223052978516, -0.4314820468425751, 0.8847525715827942, -0.3321935534477234, 0.01115458644926548, -0.19325929880142212, -0.8265293836593628, -0.5780163407325745, -0.8498782515525818, 0.28913646936416626, 0.3068196475505829, -0.6580060720443726, -0.2300967574119568, 0.34691309928894043, -0.131863534450531, -0.4131721556186676, -0.8142162561416626, -0.17349711060523987, -0.679077684879303, -0.5926333665847778, 0.2986642122268677, -0.09247498214244843, -0.3575640022754669, -0.17489148676395416, -0.03132583200931549, -0.07646097242832184, 0.2468137890100479, 0.6298113465309143, 0.8441242575645447, -0.002235541120171547, -0.11863727867603302, 0.2855597734451294, -0.013729596510529518, 0.28109151124954224, 0.26793769001960754, 0.4912189543247223, 0.10135234892368317, -0.03549090400338173, -0.35780373215675354, -0.11410702764987946, 0.4874497652053833, 0.21884146332740784, 0.948796272277832, 0.273689866065979, -0.060957420617341995, -0.080656997859478, -0.37923651933670044, 0.048057470470666885, -0.5003340244293213, -0.18152186274528503, -0.2149011790752411, -1.0277302265167236, 0.9051413536071777, 0.09193833917379379, -0.05392967164516449, 0.419400691986084, 0.49271291494369507, 0.09916042536497116, 0.698778510093689, 0.4431436359882355, -0.5719230771064758, 0.5209787487983704, -0.006262979470193386, -0.18751545250415802, -0.7106870412826538, -0.7845211625099182, -0.8053909540176392, -0.20112842321395874, -0.7257835268974304, 0.01330362819135189, -0.07620031386613846, 0.1600644290447235, -0.6034572124481201, 0.5199769735336304, -0.7194293737411499, 0.4104051887989044, 0.4376288056373596, 0.4600825905799866, 0.07011902332305908, -0.015480817295610905, -0.37989065051078796, 0.047221895307302475, -0.41019588708877563, -0.619628369808197, 1.2554715871810913, 0.5284073948860168, 0.9956490397453308, 0.18833917379379272, 0.7636861801147461, 0.6555729508399963, 0.3074965476989746, -0.7824321389198303, 0.5188037157058716, -0.2164541482925415, -0.8422184586524963, 0.12179872393608093, -0.41481298208236694, -1.1318247318267822, -0.34756600856781006, -0.06747906655073166, -1.258200764656067, 0.3213580548763275, -0.16531698405742645, -0.3761671185493469, 0.3722357451915741, -0.7237960696220398, 0.9392595291137695, -0.17103277146816254, -0.028318526223301888, 0.010143594816327095, -0.9363923668861389, 0.5620677471160889, -0.11446671187877655, 0.34963589906692505, -0.20409981906414032, -0.15225009620189667, 0.9626762270927429, -0.7721294164657593, 0.958980143070221, -0.5357559323310852, 0.08227256685495377, 0.6202627420425415, -0.0003131027042400092, 0.15025931596755981, 0.39578765630722046, -0.11158913373947144, -0.02969571202993393, -0.18723487854003906, 0.03840317577123642, -0.08003450185060501, 0.7107336521148682, -0.9476454257965088, -0.186016246676445, -0.35100308060646057, -0.32530373334884644, -0.19121065735816956, 0.09320782870054245, 0.6611546874046326, 0.22001232206821442, 0.011745546013116837, -0.06904026865959167, 0.8598535060882568, -0.48028141260147095, 0.34076642990112305, 0.5208836793899536, -0.601251482963562, -0.5720325708389282, 0.6771645545959473, 0.03933728113770485, -0.16641445457935333, 0.12026655673980713, 0.1990220844745636, -0.5763254761695862, -0.9142600297927856, -0.3601582944393158, 0.14463859796524048, -0.7263317704200745, -0.45706942677497864, -0.2680202126502991, -0.3363804221153259, -0.4402354657649994, -0.13896778225898743, 0.281250536441803, -0.5446310043334961, -0.900657594203949, -0.7080519199371338, 1.1428165435791016, 0.6910418272018433, -0.3474425971508026, 0.5131135582923889, -0.9517757892608643, 0.5328163504600525, -0.009498568251729012, 0.42788657546043396, -0.5133978128433228, -0.6411662101745605, 0.07642614841461182, -0.14709484577178955, -0.40140411257743835, -1.3477439880371094, 0.3174574077129364, 0.043857187032699585, 0.718214750289917, 0.7033876776695251, 0.10878444463014603, 0.42424291372299194, -0.16482946276664734, 1.1838912963867188, 0.23667952418327332, -0.6309577226638794, 1.0787955522537231, -0.43354368209838867, -0.17265716195106506, 1.088155746459961, 0.5282798409461975, -0.41023969650268555, -0.16147850453853607, -0.5015822649002075, -1.0664341449737549, 0.7449378967285156, -0.22381164133548737, 0.07688470184803009, -0.183363676071167, 0.5663374662399292, 0.5382627844810486, 0.3465709984302521, -0.7979785203933716, -0.8062677383422852, -0.24714615941047668, -0.2578127682209015, -0.024821169674396515, -0.3848392069339752, -0.1230183094739914, -0.4198964834213257, 0.3162640333175659, 0.4092983603477478, 0.2230800837278366, -0.09076271206140518, -0.03269472345709801, 0.023755498230457306, 0.221280038356781, 0.497405081987381, 0.193184956908226, -0.5210184454917908, -0.047148026525974274, -0.21502430737018585, -0.9447387456893921, 0.4384787678718567, 0.062125492841005325, -0.3661022484302521, -0.1528370976448059, 0.2752205431461334, 0.7630648016929626, -0.29582831263542175, -0.5936447978019714, 0.47000938653945923, -0.1602262258529663, -0.15512330830097198, -0.10410653054714203, 0.6783695816993713, -0.3885677456855774, -0.047145090997219086, 0.24912779033184052, 0.2000720500946045, 0.4983460605144501, -0.3693736493587494, 0.2676372230052948, -0.042206402868032455, -0.29623863101005554, -0.18701034784317017, 0.7564953565597534, 0.1271728128194809, -0.11270689219236374, 0.9814134240150452, -0.3246475160121918, -0.22667787969112396, 0.7122935056686401, 0.5423624515533447, 1.1263030767440796, -0.21061193943023682, 0.4900820851325989, 0.45147883892059326, 0.281482070684433, 0.21925011277198792, 0.6502610445022583, -0.059385158121585846, -0.8559502363204956, -0.12713509798049927, -0.3724389374256134, -0.34424319863319397, 0.31923869252204895, -0.8068608641624451, 0.4881478250026703, -0.9484646320343018, -0.224529430270195, -0.01991867832839489, -0.1389172375202179, -0.283182829618454, 0.13954518735408783, 0.30092695355415344, 1.4779025316238403, -1.0428274869918823, 0.7609992027282715, 0.8239603042602539, -0.3341304063796997, -0.7679309248924255, -0.5371676683425903, 0.46835818886756897, -0.6081673502922058, 0.45169466733932495, 0.5150076746940613, 0.3014719784259796, -0.3028101623058319, -0.9796180129051208, -0.4782910645008087, 1.1447464227676392, 0.07131641358137131, -0.6170455813407898, 0.3615676164627075, -0.0627802312374115, 0.2587021291255951, -0.3849194049835205, 0.15756221115589142, 0.6694834232330322, 0.7207232117652893, -0.01887899823486805, -0.7029849290847778, 0.10821819305419922, -0.27166566252708435, -0.32654598355293274, 0.1545519232749939, -0.4196028709411621, 0.552863597869873, -0.5359275937080383, -0.014967426657676697, 0.20007091760635376, 0.27278202772140503, 0.729914665222168, 0.6756394505500793, 0.41919073462486267, 0.6109654903411865, 0.7142735123634338, -0.5675069093704224, 0.7286534905433655, -0.13425469398498535, 0.17886672914028168, 0.9841293096542358, -0.09324958920478821, 0.25643834471702576, 0.39569124579429626, -0.3143712878227234, 0.7595839500427246, 1.406636357307434, -0.5135228633880615, 1.0642907619476318, 0.2650716006755829, -0.2834959328174591, 0.26407670974731445, 0.025668708607554436, -0.5299650430679321, 0.1600380837917328, 0.6685987114906311, -0.4102327525615692, -0.19119051098823547, 0.36697328090667725, 0.38678157329559326, -0.21173621714115143, -0.8256337642669678, 0.8770118951797485, -0.1271253377199173, -0.24239861965179443, 0.34768417477607727, 0.24213704466819763, 0.8821617960929871, -0.5438789129257202, 0.30751240253448486, -0.16298428177833557, -0.270649790763855, -0.5621914863586426, -1.1608525514602661, 0.3766831159591675, 0.32325002551078796, -0.35018160939216614, 0.05546576529741287, 0.9712324142456055, 0.11093134433031082, -0.0710327997803688, 0.1639397144317627, 0.36667683720588684, 0.30199143290519714, 0.19900071620941162, -0.9805880188941956, 0.05367354676127434, 0.20805363357067108, -0.37631145119667053, 0.23421604931354523, 0.2790698707103729, -0.08719742298126221, 0.8645707964897156, 0.5675812363624573, 0.055715106427669525, 0.22619615495204926, 0.155743807554245, 1.2000130414962769, -0.7829481363296509, -0.5402905941009521, -1.0412464141845703, 0.6619787216186523, 0.02566877193748951, -0.6235489845275879, 0.8959041833877563, 0.6111948490142822, 0.5095923542976379, -0.14662833511829376, 0.7951059937477112, -0.6308553218841553, 0.5095250606536865, -0.46108001470565796, 0.600811243057251, -0.047598399221897125, 0.5044607520103455, -0.2709100544452667, -0.5883448123931885, -0.320597380399704, 0.7183239459991455, -0.49761420488357544, 0.04310933127999306, 0.43284937739372253, 0.9546061158180237, 0.24144347012043, 0.1356244683265686, -0.040807709097862244, 0.18898162245750427, -0.02214040420949459, 0.36274364590644836, 1.1368709802627563, -0.04681657254695892, 0.00933253113180399, -0.2539781332015991, -0.4304342567920685, -0.25951915979385376, -0.7564995884895325, -0.9589732885360718, -0.2315707951784134, -0.49435654282569885, -0.7623933553695679, -0.0337662436068058, 0.8451574444770813, 0.47512343525886536, -1.1729551553726196, -0.10670316219329834, -0.2903042733669281, 0.4267653524875641, 0.25545158982276917, -0.3093324303627014, 0.010415374301373959, -0.18829131126403809, -0.024443035945296288, 0.4869198799133301, -0.015130717307329178, 0.2535857856273651, 0.003860189113765955, 0.011992432177066803, 0.17857462167739868, -0.2165643870830536, 0.43530645966529846, 0.4147110879421234, -0.4114361107349396, -0.19648267328739166, -0.007972300052642822, -0.3483636975288391, 0.13430607318878174, 0.5045186281204224, -0.8561221361160278, 0.22112847864627838, 0.5303143262863159, 0.0796610414981842, 0.18311284482479095, 0.013473574072122574, 0.0008036792278289795, -0.7541425824165344, 0.285632848739624, 0.047631729394197464, 0.5106885433197021, 0.059651173651218414, -0.6318459510803223, 0.5914545059204102, 0.34493592381477356, -0.6370959877967834, -0.7221220135688782, 0.06159543618559837, -1.223482370376587, -0.33662867546081543, 1.1642853021621704, -0.3396793007850647, -0.21267005801200867, -0.4589109718799591, -0.5464634299278259, -0.08498184382915497, -0.747005045413971, 0.7459726333618164, 0.485964834690094, -0.2908170819282532, -0.06805799901485443, -0.2972370684146881, 0.35484567284584045, -0.4866526424884796, -0.9673552513122559, -0.24681350588798523, 0.766920804977417, 0.5396620631217957, 0.044224392622709274, 0.29193198680877686, -0.5236416459083557, 0.3152382969856262, -0.24699096381664276, 0.007687168661504984, -0.3809860348701477, -0.41655662655830383, -0.5546752214431763, 0.186311736702919, 0.11469253152608871, -0.40214547514915466 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nielsr/cord-layoutlmv3
nielsr
2022-05-02T16:41:30Z
214
2
null
[ "region:us" ]
2022-05-02T16:41:30Z
2022-05-02T16:37:54.000Z
2022-05-02T16:37:54
Entry not found
[ -0.3227645754814148, -0.22568479180335999, 0.8622264862060547, 0.43461528420448303, -0.52829909324646, 0.7012971639633179, 0.7915720343589783, 0.07618614286184311, 0.774603009223938, 0.2563217282295227, -0.7852813005447388, -0.22573819756507874, -0.9104477167129517, 0.5715674161911011, -0.3992327153682709, 0.5791246294975281, -0.14494498074054718, -0.10751134157180786, 0.28233814239501953, -0.2768957316875458, -0.5409227609634399, -0.3685525059700012, -1.1902780532836914, 0.061491698026657104, 0.5316582918167114, 0.7435142993927002, 0.7584062218666077, 0.3652168810367584, 0.643257737159729, 0.39322906732559204, -0.231389120221138, 0.48270541429519653, -0.04171793907880783, 0.0026038766372948885, -0.3524438440799713, -0.5516899824142456, -0.28596580028533936, 0.07584768533706665, 1.096130132675171, 0.9666873812675476, -0.28466421365737915, 0.05330856889486313, -0.30636167526245117, 0.3308892846107483, -0.4973427355289459, 0.3054097294807434, -0.022506212815642357, 0.16318757832050323, -0.704151451587677, -0.5535351634025574, 0.012795033864676952, -0.7361212968826294, 0.17926514148712158, -0.6900812387466431, 0.8269097208976746, 0.18583208322525024, 1.1533749103546143, 0.14819422364234924, -0.4624859392642975, -0.8161761164665222, -0.6538985371589661, 0.5711163878440857, -0.32703715562820435, 0.3968023657798767, 0.7028225660324097, -0.048573337495326996, -0.9820331335067749, -0.6745738387107849, -0.4646624028682709, 0.2923974096775055, 0.3540281355381012, -0.3411684036254883, -0.17522093653678894, -0.30589917302131653, 0.15791957080364227, 0.1281142681837082, -0.48419976234436035, -0.5543919801712036, -0.547515869140625, -0.39602574706077576, 0.6206656694412231, 0.34829503297805786, 0.24291737377643585, -0.18884189426898956, -0.3228582441806793, 0.0880165845155716, -0.41608554124832153, 0.3402574062347412, 0.6335517168045044, 0.711402416229248, -0.5811445713043213, 0.5602157711982727, -0.049275897443294525, 0.7439709901809692, 0.11445585638284683, -0.2747812569141388, 0.4146060049533844, -0.14724673330783844, 0.055171847343444824, 0.42263513803482056, 0.3152443468570709, 0.284130722284317, -0.3273696303367615, 0.20322275161743164, -0.32151490449905396, -0.3049626648426056, -0.2233218252658844, -0.29490745067596436, -0.35921788215637207, 0.5492295622825623, -0.3314017951488495, -0.4285551905632019, 1.1431758403778076, -0.42007699608802795, -0.7302228808403015, 0.33156365156173706, 0.40652117133140564, -0.0994473397731781, -0.37146514654159546, -0.052260853350162506, -0.8458786010742188, -0.007907438091933727, 0.749117910861969, -0.7198969125747681, 0.33717361092567444, 0.47280627489089966, 0.741721510887146, 0.1965060532093048, -0.14034466445446014, -0.4294945299625397, 0.2971963882446289, -0.8659994006156921, 0.6320174932479858, -0.2013527899980545, -1.0051976442337036, 0.11150483042001724, 0.8971704244613647, -0.3789643347263336, -1.2094870805740356, 1.0605157613754272, -0.6887932419776917, 0.16017864644527435, -0.6767609119415283, -0.14661164581775665, -0.0711846798658371, -0.005095955915749073, -0.6088155508041382, 0.7567099332809448, 0.5872676968574524, -0.4995277523994446, 0.2142946422100067, -0.2602984309196472, -0.3915135860443115, 0.38824939727783203, -0.0793546810746193, -0.21858903765678406, 0.7138336896896362, -0.6647078394889832, -0.2693285048007965, 0.2942773103713989, 0.23689353466033936, -0.357060968875885, -0.793192446231842, 0.08478078991174698, -0.05786222219467163, 1.5507503747940063, -0.03868861123919487, -0.35861143469810486, -0.6793837547302246, -1.1506236791610718, -0.07070811837911606, 0.6886887550354004, -0.9194992184638977, -0.27839499711990356, -0.046410251408815384, -0.26169371604919434, 0.0899493545293808, 0.7390591502189636, -1.119404911994934, 0.28327250480651855, -0.0509270615875721, -0.22794727981090546, 0.8271061182022095, 0.1538720428943634, 0.24758882820606232, 0.14913466572761536, 0.4295872747898102, 0.5277255773544312, 0.11115183681249619, 0.6835883259773254, -0.3472035229206085, -0.9694353938102722, 0.6154633164405823, 0.25266438722610474, 0.8121451139450073, -0.49945372343063354, 0.2685092091560364, 0.2702546715736389, -0.3409683108329773, -0.5682377219200134, -0.31028279662132263, 0.09025713056325912, 0.14930610358715057, 0.11142496764659882, -0.5721707344055176, -0.6576128005981445, -0.9689136743545532, -0.13590654730796814, -0.43143755197525024, -0.35715675354003906, 0.2100687474012375, 0.5792906880378723, -1.197553277015686, 0.4128877520561218, -0.7705622911453247, -0.7038743495941162, -0.010655623860657215, -0.1933809518814087, 0.7540653944015503, 0.43240171670913696, 0.5033961534500122, -0.6397145390510559, -0.5661987066268921, -0.22470159828662872, -1.0333740711212158, -0.13280484080314636, 0.24819664657115936, 0.3065738081932068, -0.1342327892780304, -0.2744964063167572, -0.48740261793136597, 0.8100383877754211, 0.14789216220378876, -0.5391896963119507, 0.5220770239830017, -0.3020317256450653, 0.17224839329719543, -0.6369158029556274, -0.0691685602068901, -0.6616761684417725, -0.0009067117935046554, -0.36083078384399414, -0.5737435817718506, 0.14772331714630127, 0.07017547637224197, -0.16065414249897003, 0.2880837917327881, -0.909276008605957, -0.001085443771444261, -0.744221568107605, 0.37907224893569946, 0.06394767016172409, -0.3145084083080292, -0.017516745254397392, 1.000038743019104, 0.7784457206726074, -0.3848040699958801, 0.7217439413070679, 0.4440040588378906, 0.19036099314689636, 0.7630518674850464, -0.18725158274173737, 0.16478213667869568, -0.5245421528816223, -0.12161099910736084, -0.8887605667114258, -1.0982943773269653, 0.7320572137832642, -0.61142498254776, 0.36542850732803345, -0.42778611183166504, 0.25891590118408203, -0.6919258832931519, -0.038853395730257034, 0.4808599054813385, -0.05936374515295029, -0.6863952875137329, 0.5232571363449097, 0.453174889087677, -0.2019244134426117, -0.6609036326408386, -0.5301569700241089, 0.39365917444229126, 0.6154112815856934, -0.16390395164489746, 0.06878498196601868, 0.14941087365150452, -0.5441920757293701, -0.040802545845508575, -0.3869187533855438, -0.45766744017601013, 0.054224055260419846, 0.13053379952907562, -0.005750161595642567, -0.404820054769516, -0.08680257946252823, -0.35842007398605347, -0.4656125009059906, 0.21876463294029236, 0.30119529366493225, -0.04096343368291855, -0.42599743604660034, -0.36198148131370544, -0.8881809115409851, 0.6719611883163452, 0.5370280146598816, 0.05281474441289902, 0.7555550932884216, 0.16819243133068085, -0.801498293876648, -0.13532207906246185, -0.17607054114341736, 0.2696835994720459, -0.5588056445121765, 0.13849826157093048, -0.01348480861634016, -0.06374907493591309, 0.2629791498184204, 0.25386205315589905, -0.4300558567047119, 0.927625298500061, -0.26152747869491577, -0.3592526614665985, 0.7960182428359985, 0.5974737405776978, 0.4958309233188629, 0.16503198444843292, -0.044541098177433014, 0.9007097482681274, -1.196651816368103, -0.6563172340393066, -0.740954577922821, -0.15945661067962646, -0.43510857224464417, -0.0321057066321373, 0.6254417300224304, 0.29009905457496643, -0.13333925604820251, 0.47563934326171875, -0.5243490934371948, 0.3556032180786133, 1.01198410987854, 0.357486754655838, 0.34357017278671265, -0.7570232152938843, -0.25157779455184937, -0.14024297893047333, -0.9998160600662231, -0.2631372809410095, 0.8871029019355774, 0.2275265008211136, 0.8444608449935913, 0.5992542505264282, 0.6784538626670837, 0.136723130941391, 0.2523833215236664, -0.305902898311615, 0.3920287489891052, 0.43760839104652405, -1.040114164352417, -0.427584171295166, 0.02141888067126274, -0.9703332781791687, -0.14227578043937683, -0.03495054692029953, -0.42617106437683105, 0.7681738138198853, 0.00016635804786346853, -0.40767112374305725, 0.7732735872268677, -0.455583393573761, 0.7562879323959351, -0.4473649859428406, -0.02663865126669407, 0.4699098467826843, -0.707064151763916, 0.4677433967590332, 0.12878736853599548, 0.6205845475196838, -0.015571946278214455, -0.04078621417284012, 0.7104930877685547, -0.912916362285614, 0.25438612699508667, -0.6348398923873901, 0.22421303391456604, 0.24246959388256073, 0.5160625576972961, 0.5969963073730469, 0.4371241629123688, 0.10119915008544922, -0.23920850455760956, 0.04115789383649826, -0.8241121172904968, -0.21050667762756348, 0.6975144147872925, -0.7186897397041321, -0.6864195466041565, -1.2355334758758545, 0.14438661932945251, 0.27347052097320557, 0.3893046975135803, 0.7959297895431519, 0.5714079141616821, 0.12895449995994568, 0.6805253624916077, 0.9888579249382019, -0.06885592639446259, 0.916691780090332, 0.3224475085735321, 0.09175165742635727, -0.21944895386695862, 0.703682541847229, 0.2662784457206726, -0.24707898497581482, -0.11939744651317596, 0.20913469791412354, -0.11069414764642715, -0.5917618870735168, -0.4999074935913086, 0.3701755404472351, -0.6731783151626587, -0.1830393373966217, -0.6243732571601868, -0.6043766736984253, -0.5117589235305786, 0.0692739263176918, -0.7147683501243591, 0.23979082703590393, -0.7753568887710571, -0.10574901103973389, 0.043233584612607956, 0.9792002439498901, -0.5893121361732483, 0.5805228352546692, -1.12185800075531, 0.19345775246620178, -0.07949890196323395, 0.792106032371521, 0.2139579802751541, -0.7344390153884888, -0.39754197001457214, -0.11592598259449005, -0.37299054861068726, -1.3576757907867432, 0.21404962241649628, -0.24541425704956055, 0.2309398651123047, 0.6145407557487488, 0.13977038860321045, 0.5258244276046753, -0.3432632088661194, 0.7029102444648743, -0.05701681971549988, -0.7069293856620789, 0.7934491038322449, -0.5026893615722656, 0.4963533282279968, 0.9766002893447876, 0.5333840250968933, -0.7984007596969604, 0.0357406847178936, -1.041122555732727, -0.6008694171905518, 0.38426393270492554, 0.1192895919084549, -0.036011260002851486, -0.665955662727356, -0.05401992052793503, -0.16143806278705597, 0.6043741703033447, -1.0390695333480835, -0.785835862159729, 0.25766894221305847, 0.527729868888855, 0.08168502151966095, -0.5653401613235474, 0.2088075578212738, -0.5444163084030151, 1.0657776594161987, 0.4510935842990875, 0.32744958996772766, 0.8406059145927429, 0.4649236798286438, -0.38231605291366577, 0.09252502024173737, 0.7662692070007324, 0.6666229367256165, -0.5239795446395874, -0.2908026874065399, -0.0882752314209938, -0.9143400192260742, 0.05927504226565361, 0.11168874800205231, -0.013456094078719616, 0.9082115292549133, 0.579308032989502, 0.253970205783844, 0.4514276385307312, -0.7264610528945923, 0.8859445452690125, -0.1495419293642044, -0.1247284859418869, -1.0677239894866943, 0.19486205279827118, -0.23984935879707336, 0.5006400346755981, 1.0061330795288086, 0.525004506111145, -0.047630541026592255, -0.814338207244873, -0.014736393466591835, 0.6939173936843872, -0.7091119885444641, -0.17449776828289032, 0.9448539614677429, 0.38471025228500366, -1.295304536819458, 1.106776475906372, -0.5381773710250854, -0.5603318214416504, 0.9121303558349609, 0.5229570269584656, 1.1221849918365479, -0.44204193353652954, 0.0008675068384036422, 0.2662239074707031, 0.4137844443321228, 0.5423170328140259, 1.086963176727295, 0.43141356110572815, -0.7931071519851685, 0.8826581835746765, -0.24776068329811096, -0.40361127257347107, -0.053475700318813324, -0.4285985827445984, 0.16892209649085999, -0.44061893224716187, -0.10712965577840805, -0.3444185256958008, 0.2854307293891907, -0.70720374584198, 0.42807650566101074, -0.08385643362998962, 0.8653066754341125, -0.8553729057312012, 0.47207602858543396, 0.6354700326919556, -0.33373481035232544, -0.8508192300796509, -0.2619847357273102, -0.1144845262169838, -0.6389466524124146, 0.30214792490005493, -0.45541056990623474, 0.04439886659383774, 0.09623479843139648, -0.6491509079933167, -1.1778273582458496, 0.9093630909919739, -0.6396117210388184, -0.2784458100795746, 0.20463955402374268, -0.1151471734046936, 0.28811654448509216, -0.2524648904800415, 0.010661326348781586, 0.4187661111354828, 0.7489396333694458, 0.28446558117866516, -0.7727053761482239, -0.36948859691619873, 0.0015033691888675094, -0.44474759697914124, 0.7582973837852478, -0.6002099514007568, 1.1840776205062866, -0.556353747844696, -0.05965423583984375, 0.4438447952270508, 0.24690861999988556, 0.21076245605945587, 0.6629217267036438, 0.144208163022995, 0.7282260060310364, 1.0701210498809814, -0.4083523154258728, 0.881180465221405, 0.26432785391807556, 0.47430840134620667, 0.7238510251045227, -0.6487718820571899, 0.7513748407363892, 0.3181042969226837, -0.5682927966117859, 0.9228019714355469, 1.290606141090393, -0.15699151158332825, 0.8079370260238647, 0.05136425420641899, -1.0815999507904053, 0.32583364844322205, -0.20724764466285706, -0.7530062794685364, 0.31502565741539, 0.19055864214897156, -0.6920987367630005, -0.5770313739776611, -0.2404651641845703, -0.35662832856178284, -0.11552872508764267, -0.763173520565033, 0.6720565557479858, -0.01696927472949028, -0.5103673934936523, 0.18857470154762268, 0.2877500653266907, 0.17368444800376892, -0.5235736966133118, -0.029393965378403664, -0.22823575139045715, 0.2660652697086334, -0.5670853853225708, -0.5234523415565491, 0.5724437236785889, -0.32430148124694824, -0.5343252420425415, 0.1814749836921692, 0.7635869979858398, -0.1692378669977188, -0.4515411853790283, 0.3247268795967102, 0.6959530115127563, 0.16658465564250946, 0.42502784729003906, -0.23511283099651337, 0.2448059767484665, -0.08044828474521637, -0.06651593744754791, 0.27714747190475464, 0.3449171483516693, 0.22435645759105682, 0.44501352310180664, 0.432856947183609, -0.018087303265929222, -0.10736560821533203, -0.38282057642936707, 0.41249361634254456, -0.9542783498764038, -0.5713291168212891, -0.630710780620575, 0.2740667760372162, -0.023154327645897865, -1.0836422443389893, 0.41451749205589294, 1.4406688213348389, 1.0359984636306763, -0.4756380617618561, 1.0672271251678467, -0.21818462014198303, 0.9594789743423462, 0.4148315489292145, 0.5420438051223755, -0.6030403971672058, 0.038353078067302704, -0.43644046783447266, -1.0769634246826172, -0.3571633994579315, 0.4539390504360199, -0.02289981208741665, -0.3429867625236511, 0.8725717663764954, 0.5887162089347839, -0.3347362279891968, -0.11728024482727051, 0.04848664999008179, -0.02994159795343876, -0.12433876097202301, 0.5145372152328491, 0.7648398280143738, -0.9344298243522644, -0.10680411010980606, -0.21577700972557068, -0.6382728815078735, -0.5047284364700317, -0.9632003903388977, -0.12959381937980652, -0.16037844121456146, 0.03534334897994995, -0.5662809610366821, 0.002556905150413513, 1.2083250284194946, 0.5684951543807983, -1.1113994121551514, -0.5303782224655151, 0.33718496561050415, 0.39204245805740356, -0.1874789297580719, -0.24202406406402588, 0.2984570860862732, 0.1538221836090088, -0.5908879041671753, 0.6875662803649902, 0.8089626431465149, 0.20888905227184296, 0.19554781913757324, 0.15893003344535828, -0.8229469060897827, -0.14913435280323029, 0.1744047999382019, 0.9450566172599792, -0.939853310585022, -0.7114846110343933, -0.03168468549847603, -0.2709487974643707, -0.05765698105096817, 0.17102089524269104, -0.4046342968940735, 0.5180684924125671, 0.34591469168663025, 0.49933499097824097, 0.056160878390073776, -0.054746419191360474, 0.5409556031227112, -0.9069050550460815, 0.09425969421863556, 0.41343602538108826, 0.4154110848903656, -0.4000871777534485, -0.5910195112228394, 0.6713417172431946, 1.0073974132537842, -0.6594864130020142, -0.8743263483047485, -0.19846680760383606, -1.0016000270843506, 0.04189697653055191, 0.6762756109237671, 0.5009528994560242, -0.48065176606178284, -0.4174492359161377, -0.5617400407791138, -0.1254679411649704, -0.13699710369110107, 0.76216059923172, 1.1796802282333374, -0.7432100772857666, 0.07975788414478302, -1.0386393070220947, 0.6594986915588379, -0.2419460266828537, -0.3457580506801605, -0.4864429533481598, 0.3832802176475525, 0.3523699641227722, 0.44048118591308594, 0.6148120164871216, 0.14084689319133759, 0.8338428735733032, 0.31260576844215393, -0.17026858031749725, 0.2698982357978821, -0.4559198319911957, -0.02893332578241825, -0.05796258896589279, 0.3101596236228943, -1.026215672492981 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mteb/raw_medrxiv
mteb
2022-09-27T19:15:18Z
214
1
null
[ "language:en", "region:us" ]
2022-09-27T19:15:18Z
2022-05-10T13:51:35.000Z
2022-05-10T13:51:35
--- language: - en ---
[ -0.1285335123538971, -0.1861683875322342, 0.6529128551483154, 0.49436232447624207, -0.19319400191307068, 0.23607441782951355, 0.36072009801864624, 0.05056373029947281, 0.5793656706809998, 0.7400146722793579, -0.650810182094574, -0.23784008622169495, -0.7102247476577759, -0.04782553389668465, -0.38947567343711853, 0.8470754623413086, -0.09598255157470703, 0.024005301296710968, 0.04711989313364029, -0.1431780606508255, -0.6121035814285278, -0.04771772027015686, -1.052453637123108, -0.06787454336881638, 0.30022722482681274, 0.5120980143547058, 0.827591061592102, 0.396028608083725, 0.5030559301376343, 1.7515556812286377, -0.08836911618709564, -0.22754397988319397, -0.45892009139060974, 0.42230671644210815, -0.3327728509902954, -0.4213376045227051, -0.2624169588088989, -0.07449327409267426, 0.32380378246307373, 0.7903715968132019, -0.3810409903526306, 0.19328100979328156, -0.22438451647758484, 1.0082244873046875, -0.8202077150344849, 0.2263088971376419, -0.1669832170009613, 0.14053183794021606, 0.042308785021305084, -0.1459192931652069, -0.132632315158844, -0.6440047025680542, 0.06469497084617615, -0.8995957374572754, 0.10274903476238251, -0.044610701501369476, 0.8789557218551636, 0.21909034252166748, -0.5102370381355286, -0.0459778755903244, -0.6883591413497925, 1.0972505807876587, -0.17556053400039673, 0.7615716457366943, 0.45078057050704956, 0.4528845548629761, -0.5849325656890869, -1.178217887878418, -0.444186270236969, -0.13578970730304718, 0.14722752571105957, 0.3055606484413147, -0.34530261158943176, -0.022343739867210388, 0.10801080614328384, 0.5610312819480896, -0.5003757476806641, -0.3119601309299469, -0.957992672920227, -0.18164905905723572, 0.6820485591888428, 0.3193078637123108, 0.8340443968772888, 0.18731552362442017, -0.7347202301025391, 0.12866359949111938, -1.3239705562591553, 0.07650737464427948, 0.6465021371841431, 0.2394677698612213, -0.5545985102653503, 0.8594784736633301, -0.285879909992218, 0.6262495517730713, 0.27284637093544006, -0.11645288020372391, 0.27842551469802856, -0.23030714690685272, -0.27350643277168274, 0.03308771923184395, 0.3459731340408325, 0.8204494714736938, 0.1624859869480133, -0.019984528422355652, -0.22124026715755463, 0.002071946859359741, 0.26844531297683716, -0.7935100793838501, -0.4712666869163513, 0.1926693618297577, -0.5589529871940613, -0.09108539670705795, 0.43270164728164673, -1.097684383392334, -0.4812983572483063, -0.18798448145389557, 0.05468184873461723, -0.5451682209968567, -0.36979442834854126, 0.07273299992084503, -0.7925408482551575, -0.12434210628271103, 0.5709508657455444, -0.6230251789093018, 0.43974602222442627, 0.5336250066757202, 0.786163330078125, 0.23303917050361633, -0.2361360788345337, -0.6695016622543335, 0.48848265409469604, -0.8661869764328003, 0.36860689520835876, -0.30737850069999695, -0.8298647403717041, -0.09631016105413437, 0.5393157005310059, 0.2066487818956375, -0.665324866771698, 0.7074040770530701, -0.549697995185852, -0.07806510478258133, -0.4308289587497711, -0.24321980774402618, 0.17460422217845917, 0.11115413904190063, -0.6238906979560852, 0.9402236342430115, 0.5551110506057739, -0.5841096639633179, 0.3170124292373657, -0.4869508147239685, -0.6865580081939697, 0.2674822211265564, -0.008751265704631805, -0.04715294390916824, 0.32795268297195435, -0.15983977913856506, -0.0020515620708465576, 0.10505715012550354, 0.008300501853227615, -0.21891629695892334, -0.47863084077835083, 0.06349922716617584, 0.15165063738822937, 1.2536829710006714, 0.40836217999458313, -0.37718790769577026, -0.13140133023262024, -1.0526151657104492, 0.02543264627456665, 0.05050137639045715, -0.42306792736053467, -0.2504563331604004, -0.14882251620292664, -0.20381605625152588, 0.4307262599468231, 0.21184733510017395, -0.8131154775619507, 0.22643575072288513, -0.20640233159065247, 0.3644976019859314, 0.8222091197967529, 0.2703099548816681, 0.39760541915893555, -0.6625280380249023, 0.6563136577606201, 0.2076185643672943, 0.49590179324150085, 0.3540418744087219, -0.3845820426940918, -0.9641578197479248, -0.4421607553958893, -0.10117406398057938, 0.2975529730319977, -0.7744959592819214, 0.584731936454773, 0.012979187071323395, -0.5836696028709412, -0.4465281069278717, -0.15488091111183167, 0.2755323648452759, -0.06606610864400864, 0.033349379897117615, -0.4049781262874603, -0.7394410371780396, -1.0127897262573242, -0.13788102567195892, -0.5021383762359619, -0.2189284861087799, 0.3160586953163147, 0.26177433133125305, -0.3429007828235626, 0.761074960231781, -0.605928361415863, -0.7040645480155945, -0.13973550498485565, -0.09959849715232849, 0.618772029876709, 0.9297672510147095, 0.7491389513015747, -0.7224891781806946, -0.8973815441131592, -0.05623132735490799, -0.5420036911964417, -0.020043618977069855, 0.03815015032887459, -0.18260695040225983, -0.10514965653419495, 0.22352561354637146, -0.6100800037384033, 0.8851075172424316, 0.43224942684173584, -0.6815470457077026, 0.521058976650238, -0.4444415867328644, 0.607380211353302, -0.8642836213111877, -0.2911486029624939, -0.1682354062795639, -0.1976117193698883, -0.7090163826942444, 0.1941153109073639, -0.30022329092025757, -0.3302987813949585, -0.7474029064178467, 0.5274896025657654, -0.9497008919715881, -0.1878155767917633, -0.33672797679901123, -0.03423091769218445, 0.258078396320343, 0.19490550458431244, -0.2356022596359253, 0.8900527954101562, 0.9160481691360474, -0.7121304869651794, 0.5487284064292908, 0.3930913209915161, -0.1920015811920166, 0.713123619556427, -0.3887737989425659, 0.05162034556269646, -0.12344932556152344, 0.14374586939811707, -1.1263889074325562, -0.5611576437950134, 0.13677352666854858, -0.7127033472061157, 0.1768694370985031, -0.16556863486766815, -0.09428544342517853, -0.6608470678329468, -0.33806464076042175, 0.25910061597824097, 0.48612281680107117, -0.4796994924545288, 0.6188153028488159, 0.5728035569190979, 0.026518523693084717, -0.5307413935661316, -0.7206829786300659, 0.20418179035186768, 0.03964628279209137, -0.5569695234298706, 0.3011685907840729, 0.006543658673763275, -0.6622449159622192, -0.37112465500831604, -0.26354193687438965, -0.6043857336044312, -0.22679749131202698, 0.7826980352401733, 0.11994287371635437, -0.09012241661548615, -0.20310327410697937, -0.3199535310268402, -0.061674781143665314, 0.3048747181892395, -0.07575264573097229, 0.7232831716537476, -0.3362368941307068, -0.17849993705749512, -0.8877336382865906, 0.6527547836303711, 0.9970458745956421, 0.09446781873703003, 0.8066442012786865, 0.463242769241333, -0.356474369764328, -0.13046561181545258, -0.3535457253456116, -0.15120631456375122, -0.6857743859291077, -0.1806795597076416, -0.5322473645210266, -0.5411435961723328, 0.40530624985694885, 0.10101401060819626, -0.0021039992570877075, 0.5167040824890137, 0.25336092710494995, -0.28806865215301514, 0.7550323605537415, 1.0343408584594727, 0.13917939364910126, 0.36029139161109924, -0.28547197580337524, 0.6341596841812134, -0.8329949378967285, -0.34052106738090515, -0.4548071026802063, -0.2563583254814148, -0.3121439814567566, -0.1075083538889885, 0.5791015028953552, 0.28182128071784973, -0.4463469982147217, 0.12506772577762604, -0.5994209051132202, 0.6587362289428711, 0.6273985505104065, 0.5719729661941528, 0.1997300386428833, -0.46199458837509155, 0.19982901215553284, 0.048167064785957336, -0.45745572447776794, -0.4009109139442444, 0.7711146473884583, 0.239962637424469, 0.8364018201828003, 0.20927003026008606, 0.4957771599292755, 0.3337545692920685, 0.25280603766441345, -0.6318972110748291, 0.20098070800304413, -0.222828209400177, -1.2459607124328613, -0.2064269483089447, -0.16551266610622406, -1.0080578327178955, -0.11792004108428955, -0.18289004266262054, -0.8406614661216736, 0.2665729522705078, -0.19225698709487915, -0.6640642285346985, 0.520614504814148, -0.5103870630264282, 0.6934709548950195, -0.23555895686149597, -0.2817087173461914, 0.11930041760206223, -0.6889921426773071, 0.5254610776901245, 0.3667148947715759, 0.29168447852134705, -0.3796895146369934, -0.3192877471446991, 0.5068991184234619, -0.8812236785888672, 0.44081082940101624, -0.10565068572759628, 0.1942814439535141, 0.5358878374099731, 0.4153590202331543, 0.38239675760269165, 0.2869906723499298, -0.24593809247016907, -0.23415403068065643, 0.2250344157218933, -0.7581348419189453, -0.2775455117225647, 0.9095457792282104, -0.7519429922103882, -0.8586916923522949, -0.6954255104064941, -0.30645009875297546, 0.2886526584625244, 0.02781439572572708, 0.7154765129089355, 0.6456883549690247, -0.18821007013320923, 0.23777063190937042, 0.720821738243103, -0.014694413170218468, 0.723556399345398, 0.29411089420318604, -0.4056652784347534, -0.6169788241386414, 0.718232274055481, 0.26270464062690735, 0.05162703990936279, 0.028327442705631256, 0.3058736324310303, -0.17546680569648743, -0.1507863998413086, -0.6318317651748657, -0.0639532208442688, -0.7465732097625732, -0.09279482066631317, -0.7541394829750061, -0.2507745921611786, -0.7114589214324951, -0.8068138360977173, -0.708016037940979, -0.45604345202445984, -0.4301196336746216, -0.2335222214460373, 0.5163102746009827, 1.1627084016799927, -0.26131507754325867, 0.8011049628257751, -0.8900954723358154, 0.41936272382736206, 0.4969545006752014, 0.7519727945327759, -0.11060971021652222, -0.6746928691864014, -0.07836240530014038, -0.5338752269744873, -0.29485076665878296, -1.01569664478302, 0.31774672865867615, -0.036885976791381836, 0.4053717255592346, 0.4293888807296753, 0.2519032955169678, 0.4939274191856384, -0.3007313311100006, 1.1130690574645996, 0.7274303436279297, -0.8033815026283264, 0.5195285677909851, -0.7634995579719543, 0.16122232377529144, 0.9363659024238586, 0.544775128364563, -0.4417074918746948, -0.15113961696624756, -1.0259764194488525, -0.8431367874145508, 0.5963038206100464, 0.15439960360527039, 0.01684429496526718, 0.018214639276266098, 0.03168323636054993, 0.29466331005096436, 0.3591306209564209, -0.784728467464447, -0.824022650718689, -0.13851124048233032, 0.25803354382514954, 0.3145602345466614, -0.16485458612442017, -0.3003879189491272, -0.6116158366203308, 0.8711379766464233, 0.1828640252351761, 0.3546237349510193, 0.12073374539613724, 0.04369324818253517, -0.35506951808929443, 0.14787019789218903, 0.5523004531860352, 1.2529062032699585, -0.4098334312438965, 0.3673911392688751, 0.1751268208026886, -0.6540066599845886, 0.6494988203048706, -0.30363473296165466, -0.021784666925668716, 0.6203134655952454, 0.17760910093784332, 0.2852843105792999, 0.3155992031097412, -0.36214208602905273, 0.6047801971435547, -0.029422320425510406, -0.17758524417877197, -0.7005689144134521, 0.15866941213607788, 0.029349908232688904, 0.27508044242858887, 0.43920302391052246, 0.2444339096546173, 0.08246828615665436, -1.0602877140045166, 0.571104884147644, 0.24493856728076935, -0.8676615953445435, -0.30110111832618713, 0.7047960758209229, 0.40753939747810364, -0.47599589824676514, 0.38749027252197266, 0.012702763080596924, -0.671023964881897, 0.5987740755081177, 0.551040768623352, 0.7569668292999268, -0.4702425003051758, 0.30880242586135864, 0.624560534954071, 0.06711313128471375, 0.20550544559955597, 0.6923208236694336, 0.03149370476603508, -0.44738680124282837, 0.23022504150867462, -0.5986737012863159, -0.1468992531299591, 0.13735288381576538, -0.804742693901062, 0.3515333831310272, -0.9312610030174255, -0.24089904129505157, 0.08751519024372101, 0.11761170625686646, -0.6130950450897217, 0.6674697995185852, -0.00852571427822113, 0.9280482530593872, -0.8549090623855591, 0.962628960609436, 0.8559577465057373, -0.31830841302871704, -0.7709447145462036, -0.3355675935745239, 0.0201396644115448, -0.6660529375076294, 0.7108281850814819, -0.18973003327846527, -0.41207355260849, -0.0932389348745346, -0.6229831576347351, -1.0003738403320312, 0.03062039613723755, 0.017416149377822876, -0.46250253915786743, 0.44547978043556213, -0.5157256722450256, 0.32896745204925537, -0.19169752299785614, 0.30509495735168457, 0.771946907043457, 0.7958443760871887, 0.22960850596427917, -0.6354780197143555, -0.44666823744773865, -0.010275822132825851, -0.1668277382850647, 0.45458102226257324, -1.071097493171692, 0.9677367210388184, -0.46525776386260986, -0.34733179211616516, 0.2706637978553772, 0.7977622747421265, 0.253851056098938, 0.3524123430252075, 0.621953547000885, 0.9016802310943604, 0.36450058221817017, -0.311782568693161, 0.7276740670204163, 0.2426334023475647, 0.41525477170944214, 0.736419677734375, -0.22712194919586182, 0.5403842329978943, 0.890641450881958, -0.7861624360084534, 0.5381764769554138, 0.7879026532173157, 0.16047346591949463, 0.7758153676986694, 0.5944147706031799, -0.6119515895843506, -0.11859343945980072, -0.14641447365283966, -0.617155909538269, 0.1979750394821167, 0.052926838397979736, -0.11974767595529556, -0.28460121154785156, -0.13567432761192322, 0.12295038253068924, 0.2836456894874573, -0.5959329605102539, 0.606866180896759, 0.34341561794281006, -0.6328276991844177, 0.21025121212005615, -0.2577953636646271, 0.6709502935409546, -0.5978153944015503, 0.027336426079273224, -0.2269938588142395, 0.41810357570648193, -0.4618743360042572, -1.007582426071167, 0.47138315439224243, -0.29202455282211304, -0.4055127203464508, -0.26942431926727295, 0.8072373867034912, -0.2213389277458191, -0.5572863221168518, 0.37486088275909424, 0.13466545939445496, 0.4147361218929291, 0.4014603793621063, -0.5487300157546997, 0.04779018461704254, 0.13760170340538025, -0.200618177652359, 0.3601188361644745, 0.29737287759780884, 0.25488775968551636, 0.7100129127502441, 0.5052477121353149, 0.22198741137981415, 0.2569434344768524, -0.18668603897094727, 0.8387457728385925, -0.9102790355682373, -0.8167629241943359, -0.9497329592704773, 0.38498955965042114, 0.025727245956659317, -0.8801437616348267, 0.7920297384262085, 0.7652614116668701, 0.5113964080810547, -0.48778945207595825, 0.4755285680294037, -0.32647913694381714, 0.5047132968902588, -0.13870932161808014, 1.0010888576507568, -0.7607624530792236, -0.2958727478981018, -0.030553333461284637, -0.9216437935829163, -0.2533755898475647, 0.5375738143920898, 0.15408295392990112, -0.1460803896188736, 0.4385911226272583, 0.44216352701187134, 0.02217365987598896, 0.2522309720516205, 0.32861030101776123, 0.06042800843715668, 0.14508432149887085, 0.5510439872741699, 1.0931134223937988, -0.4339442849159241, 0.18694785237312317, -0.49234768748283386, -0.45362502336502075, -0.4153490960597992, -0.9548052549362183, -0.664030909538269, -0.48185425996780396, -0.2973938286304474, -0.5915577411651611, 0.11726413667201996, 0.9300881028175354, 0.9018136262893677, -0.625672459602356, -0.41243696212768555, 0.2571353614330292, 0.3029336929321289, -0.22954161465168, -0.14626723527908325, 0.273649662733078, -0.00640781968832016, -0.7211176156997681, 0.39309418201446533, 0.8079767227172852, 0.3887123465538025, 0.08443966507911682, -0.07217182219028473, -0.4407084584236145, 0.02610129863023758, 0.5373559594154358, 0.5729556083679199, -0.6281191110610962, -0.4099642038345337, -0.5328325629234314, -0.21386754512786865, 0.15529415011405945, 0.4807758927345276, -0.5166380405426025, 0.32661089301109314, 0.8128958940505981, 0.1701769381761551, 0.7187885642051697, -0.00224892795085907, 0.667864203453064, -0.897024929523468, 0.44462692737579346, 0.3953385651111603, 0.5681867599487305, 0.0899801105260849, -0.7339168787002563, 0.9820244908332825, 0.4967435598373413, -0.6334061026573181, -1.003425121307373, 0.030799120664596558, -1.1931143999099731, -0.37881767749786377, 0.9890837669372559, -0.09595773369073868, -0.9597456455230713, -0.36448919773101807, -0.3677719235420227, 0.07989602535963058, -0.33809781074523926, 0.35498178005218506, 0.8268190026283264, -0.2538067698478699, -0.2204189896583557, -0.9505574703216553, 0.47529521584510803, 0.31025224924087524, -0.5886626839637756, -0.05114410072565079, 0.32939082384109497, 0.4523683488368988, 0.3009698987007141, 0.5239561200141907, 0.104281947016716, 0.8970535397529602, 0.25200384855270386, 0.30491432547569275, -0.045266687870025635, -0.5900777578353882, -0.016066333279013634, 0.26214760541915894, 0.04487806558609009, -0.6869444251060486 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
valurank/News_Articles_Categorization
valurank
2023-08-27T05:49:31Z
214
0
null
[ "task_categories:text-classification", "task_ids:multi-class-classification", "multilinguality:monolingual", "language:en", "license:other", "region:us" ]
2023-08-27T05:49:31Z
2022-05-25T21:46:45.000Z
2022-05-25T21:46:45
--- license: - other language: - en multilinguality: - monolingual task_categories: - text-classification task_ids: - multi-class-classification --- # Dataset Card for News_Articles_Categorization ## Table of Contents - [Dataset Description](#dataset-description) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Source Data](#source-data) ## Dataset Description 3722 News Articles classified into different categories namely: World, Politics, Tech, Entertainment, Sport, Business, Health, and Science ## Languages The text in the dataset is in English ## Dataset Structure The dataset consists of two columns namely Text and Category. The Text column consists of the news article and the Category column consists of the class each article belongs to ## Source Data The dataset is scrapped across different news platforms
[ -0.2984554171562195, -0.3863808810710907, -0.16421224176883698, 0.3556808531284332, -0.7407377362251282, 0.49985766410827637, 0.03561081364750862, -0.10635466873645782, 0.4890216886997223, 0.5160884261131287, -0.5025578141212463, -1.0367480516433716, -0.48060786724090576, 0.24134165048599243, -0.5080099701881409, 1.5135902166366577, -0.02233245223760605, 0.16973131895065308, -0.2136857807636261, -0.3167874217033386, -0.32794851064682007, -0.409663587808609, -0.5952843427658081, -0.09712005406618118, 0.5209726691246033, 0.7293131351470947, 0.7315062284469604, 0.8522537350654602, 0.7355025410652161, 0.1146884486079216, -0.09200039505958557, 0.1365502029657364, -0.28899165987968445, -0.5897284150123596, -0.34279516339302063, -0.5717194080352783, -0.5221638083457947, -0.0879448801279068, 0.7027601003646851, 0.4824863076210022, -0.27120938897132874, 0.5055203437805176, -0.006362375803291798, 0.8985869884490967, -0.22679828107357025, 0.5180172324180603, -0.6378695964813232, 0.18336127698421478, -0.4357560873031616, -0.36146047711372375, -0.2243305891752243, -0.31404945254325867, -0.3149028718471527, -0.6635898947715759, 0.14800716936588287, 0.1797477751970291, 1.0230176448822021, -0.04923481121659279, -0.7676297426223755, -0.4342123568058014, -0.5960357785224915, 0.6070789098739624, -0.2952060103416443, 0.3650290369987488, 0.5423645973205566, 0.2654756009578705, 0.17498187720775604, -0.7262519598007202, -0.5114701986312866, 0.6228363513946533, -0.24785298109054565, 0.14946626126766205, -0.1170162782073021, -0.4196197986602783, -0.029478857293725014, 0.5930371880531311, -0.9028452634811401, -0.03147413581609726, -0.8851181268692017, -0.14639291167259216, 0.9165459871292114, 0.4904939830303192, 0.41148316860198975, -0.5367040038108826, -0.07861468195915222, 0.05716676265001297, -0.6636844873428345, -0.2289094626903534, 0.5058969855308533, 0.5310391187667847, -0.412483811378479, 0.7589090466499329, -0.6205782294273376, 0.6998213529586792, -0.1376352161169052, -0.49550187587738037, 0.7391361594200134, -0.6736530065536499, -0.24397116899490356, 0.4035928547382355, 0.7200245261192322, 0.6930883526802063, -0.12931577861309052, -0.08607296645641327, 0.20682001113891602, 0.15887451171875, 0.2132006585597992, -0.46114858984947205, -0.05644996836781502, 0.3967340588569641, -1.1231045722961426, -0.5736449360847473, 0.21102842688560486, -1.1582919359207153, -0.29879531264305115, -0.12750443816184998, -0.051117926836013794, 0.3501046895980835, -0.3566734790802002, 0.3025454878807068, -0.01904953643679619, 0.19464951753616333, -0.09569989144802094, -0.768721342086792, 0.59034663438797, 0.578212320804596, 0.5506529808044434, -0.34562695026397705, 0.0015144074568524957, 0.20157261192798615, 0.1821226328611374, -0.21297642588615417, 0.8569570183753967, -0.6705026030540466, -0.15285803377628326, 0.12335219979286194, 0.3984755575656891, 0.12755721807479858, -0.37922781705856323, 1.114349126815796, -0.6317169070243835, 0.49151644110679626, -0.531996488571167, -0.28870221972465515, -0.39419469237327576, 0.32260268926620483, -1.2742133140563965, 1.023656964302063, 0.0519888699054718, -1.165035367012024, 0.880048930644989, -0.8060916066169739, -0.6190834641456604, 0.10122758150100708, -0.07551596313714981, -0.6525790691375732, -0.09657613188028336, 0.2736877202987671, 0.552719235420227, -0.2248670756816864, 0.6183035373687744, -0.022467073053121567, -0.13749375939369202, -0.02535221353173256, -0.2877345383167267, 0.7845755815505981, 0.6798061728477478, 0.23146362602710724, 0.011688834987580776, -1.4192675352096558, -0.20227159559726715, -0.0135914646089077, -0.6238718032836914, -0.2825717329978943, 0.45144400000572205, 0.5290963649749756, 0.4601132273674011, 0.17565636336803436, -0.5396733283996582, 0.5310096740722656, -0.018310725688934326, 0.4229562282562256, 0.07993581146001816, 0.38753950595855713, 0.2707758843898773, -0.23341898620128632, 0.28768396377563477, 0.6023701429367065, 0.07443181425333023, 0.2734818756580353, -0.5121908187866211, -0.6138851642608643, 0.10895703732967377, 0.6084425449371338, 0.8997156620025635, -0.8693883419036865, 0.69500333070755, -0.4797236919403076, -0.639065146446228, -0.5161415338516235, -0.025909509509801865, 0.14212463796138763, 0.2928653359413147, 0.25979816913604736, -0.2562538981437683, -0.8306952714920044, -0.9730022549629211, -0.11799956858158112, -0.15479514002799988, 0.2698855400085449, -0.0989590734243393, 0.6848813891410828, -0.009426803328096867, 0.6838740706443787, -0.48140570521354675, -0.43883270025253296, -0.5285016298294067, 0.05257147178053856, 0.45212996006011963, 0.3774549067020416, 0.2681780159473419, -1.2540751695632935, -0.3881736397743225, -0.042229730635881424, -0.5415990352630615, 0.023523835465312004, -0.2838090658187866, -0.29629868268966675, 0.47720134258270264, 0.31423911452293396, -0.29189884662628174, 0.9689919948577881, 0.2507017254829407, -0.47319918870925903, 0.24869532883167267, 0.3368310034275055, 0.29359865188598633, -1.4837573766708374, 0.17544609308242798, -0.0671551302075386, 0.2076815515756607, -0.361801415681839, -0.38065052032470703, -0.05229239910840988, -0.15374331176280975, -0.5243470668792725, 0.41723501682281494, -0.24507039785385132, 0.053663164377212524, -0.14141122996807098, -0.141499325633049, 0.16116806864738464, 0.4328191876411438, 0.4069003760814667, 0.34594225883483887, 0.6838977336883545, -0.7085677981376648, 0.7354410886764526, 0.6341032981872559, -0.5200411081314087, 0.5634342432022095, -0.5232896208763123, -0.5903118848800659, -0.30081114172935486, 0.37791264057159424, -0.874530553817749, -0.4170316457748413, 0.4956854581832886, -0.2996496260166168, 0.022545844316482544, 0.16526830196380615, -1.0286498069763184, -0.5805302262306213, -0.25748106837272644, 0.3026619255542755, 0.026149099692702293, -0.25184404850006104, 0.018855378031730652, 0.5271535515785217, 0.14781908690929413, -0.7500989437103271, -1.0308339595794678, 0.11611316353082657, -0.34733274579048157, -0.29021868109703064, 0.4090670347213745, -0.1151653304696083, -0.16180813312530518, 0.5042834281921387, -0.011211925186216831, -0.4816626310348511, -0.366544246673584, 0.033844348043203354, 0.24198073148727417, -0.10779022425413132, 0.44608378410339355, 0.16970305144786835, -0.05191362649202347, -0.278994619846344, 0.21660584211349487, 0.5840297341346741, 0.19604188203811646, -0.12543094158172607, -0.5280290842056274, 0.4339101016521454, 0.2539837658405304, -0.4720408320426941, 1.127090334892273, 0.7421939373016357, -0.6128793358802795, 0.03583425655961037, -0.2850184440612793, 0.29328325390815735, -0.35143011808395386, 0.6755335927009583, -0.443571001291275, -0.3728417158126831, 0.9320412278175354, 0.25716108083724976, 0.04275784268975258, 0.8619993329048157, 0.7541050910949707, 0.41555145382881165, 0.8979021906852722, 0.3492967188358307, -0.5948153734207153, 0.13032537698745728, -0.19739145040512085, 0.2617839574813843, -0.32549577951431274, -0.8574875593185425, -0.8588170409202576, -0.5192264914512634, -0.8581109642982483, 0.059412408620119095, -0.08529093116521835, -0.07004852592945099, -0.33145642280578613, 0.5006161332130432, -0.9947683811187744, 0.654844343662262, 0.6038740873336792, 0.27660733461380005, 0.5077614188194275, 0.4651395082473755, 0.248073011636734, -0.04334616661071777, -0.9481174945831299, -0.5542382597923279, 1.1397507190704346, 0.4536450505256653, 0.9390174150466919, -0.0930316373705864, 0.6370861530303955, 0.08159264177083969, 0.18076084554195404, -0.6095854043960571, 0.3828040361404419, -0.5636211633682251, -1.1327790021896362, -0.1121441051363945, -0.3330594003200531, -1.0277851819992065, -0.1553897112607956, -0.17105522751808167, -0.4244500994682312, 0.5813047289848328, -0.4011606276035309, -0.0040258304215967655, 0.7639151811599731, -0.2449258267879486, 0.7419819831848145, -0.00644522113725543, -0.11289124935865402, -0.07634283602237701, -0.5246413350105286, 0.34555575251579285, 0.12410109490156174, 0.34366750717163086, -0.012808891013264656, -0.3049222230911255, 1.2072224617004395, -0.12913121283054352, 0.6367697715759277, 0.1512826830148697, 0.0425790511071682, 0.5848637223243713, -0.6088259220123291, -0.012710083276033401, 0.2831716239452362, -0.19987812638282776, 0.11504576355218887, -0.04112699255347252, -0.40324604511260986, -0.06984895467758179, 0.5413236021995544, -0.7301894426345825, 0.1625809371471405, -0.7403282523155212, -0.3701370656490326, -0.08846490830183029, 0.12059498578310013, 0.5947510600090027, 0.8412905335426331, -0.27166277170181274, 0.6096450686454773, 0.6216040849685669, -0.3584379553794861, 0.5848597884178162, 0.6966592669487, -0.22624175250530243, -0.7751677632331848, 1.0249605178833008, 0.38318589329719543, -0.3576343059539795, 0.7072824835777283, -0.4177139103412628, -0.4370766282081604, -0.34106743335723877, -0.20241422951221466, -0.041557300835847855, -0.612773060798645, -0.765545129776001, -0.5128702521324158, -0.5545774102210999, -0.015959041193127632, 0.1925278753042221, -0.011820605024695396, -0.48720991611480713, -0.6247244477272034, -0.5477901101112366, 0.21521401405334473, 0.8641630411148071, -0.07321584969758987, 0.4603244364261627, -0.8891681432723999, 0.4681522846221924, 0.052067141979932785, 1.0230120420455933, -0.1535630226135254, -0.14017228782176971, -0.5084353089332581, -0.078748919069767, -0.6606057286262512, -0.9378668665885925, 0.46211719512939453, 0.252017617225647, 0.5627601742744446, 0.52793949842453, -0.0407710000872612, 0.6048219799995422, -0.3776096999645233, 0.9165789484977722, 0.20241962373256683, -0.6561397910118103, 0.5977789759635925, -0.403409481048584, 0.07846365869045258, 0.735927164554596, 0.6352804899215698, -0.6581408381462097, -0.10721489787101746, -0.8969424366950989, -0.6984564661979675, 0.7263734936714172, 0.057751916348934174, 0.3156913220882416, -0.2217492014169693, 0.22828859090805054, 0.4042900502681732, 0.498146653175354, -1.3570724725723267, -0.7499859929084778, -0.17123481631278992, -0.5007874369621277, 0.2530360221862793, -0.427586168050766, -0.20356006920337677, -0.6418774724006653, 0.7251867055892944, 0.31237247586250305, 0.3133166432380676, 0.04829291254281998, 0.3804836869239807, -0.2752622961997986, 0.5262987017631531, 0.4160672426223755, 0.9282388687133789, -0.08338122814893723, 0.07245253771543503, -0.23099923133850098, -0.6618744730949402, 0.03388012573122978, -0.11182330548763275, -0.062986820936203, 0.21569295227527618, 0.4715277850627899, 0.8830826878547668, -0.021806566044688225, -0.34901946783065796, 0.06978511065244675, -0.019727880135178566, -0.5454691052436829, -0.10807499289512634, 0.032589931041002274, 0.10022123157978058, -0.12258153408765793, 0.71319180727005, 0.024905161932110786, 0.36977025866508484, -0.8078960180282593, 0.5599263906478882, 0.029381120577454567, -0.11450578272342682, -0.13809387385845184, 0.6855378746986389, 0.2201496958732605, -0.06720798462629318, 0.5065140128135681, -0.17830410599708557, -0.2734943628311157, 0.8133934736251831, 0.4011203944683075, 0.4836901128292084, -0.06767705827951431, 0.7152526378631592, 0.6754873394966125, 0.4899917542934418, -0.2838786542415619, 0.9260995388031006, 0.5839176774024963, -0.6475473642349243, -0.43107372522354126, -0.8702126145362854, -0.022864092141389847, 0.5809468626976013, -0.8851633071899414, 0.4441552758216858, -0.07808049023151398, -0.0017248111544176936, 0.1294025033712387, 0.7139071226119995, -0.5652222633361816, 0.565811276435852, 0.085596963763237, 1.3778574466705322, -1.222627878189087, 0.891998291015625, 0.9526114463806152, -0.5792328119277954, -0.7873976826667786, -0.34487971663475037, -0.24299852550029755, -0.5765629410743713, 0.5246257185935974, -0.09561299532651901, 1.0523858070373535, -0.3791137635707855, -0.8636554479598999, -0.8036397695541382, 0.9269960522651672, -0.1381027102470398, -0.6289342641830444, 0.3466409146785736, 0.5244578123092651, 0.5823986530303955, -0.683738648891449, -0.26744136214256287, 0.4987837076187134, 0.8287091255187988, 0.05626479163765907, -0.9784581065177917, -0.3589184582233429, -0.5841588973999023, -0.33405324816703796, 0.08695906400680542, -0.9354134202003479, 0.7851524353027344, 0.31556230783462524, -0.06464821845293045, -0.1663890779018402, 0.6055476069450378, 0.10610565543174744, 0.797497570514679, 0.18967878818511963, 0.8228892087936401, 0.5713889002799988, -0.38763514161109924, 0.7350595593452454, -0.33099785447120667, 0.6330052018165588, 0.7817623019218445, -0.016949566081166267, 0.664172351360321, 0.12345974892377853, -0.3417157828807831, 0.5938625335693359, 1.0209060907363892, -0.4727902114391327, 0.9362017512321472, 0.11301662772893906, 0.13390818238258362, 0.041681017726659775, -0.26546597480773926, -0.5242360830307007, 0.8052836656570435, 0.490174800157547, -0.49836891889572144, -0.28098738193511963, 0.10255847871303558, 0.4447999596595764, -0.017778849229216576, -0.8958302140235901, 0.986175537109375, -0.2934885621070862, -0.4145057201385498, 0.2499663531780243, 0.2651924192905426, 0.3469836115837097, -0.5376855134963989, -0.1757347136735916, -0.031885966658592224, -0.10356346517801285, -0.6492645144462585, -1.149526596069336, 0.8704149723052979, -0.17337451875209808, -0.49986037611961365, 0.17381690442562103, 0.9253538846969604, -0.8527926206588745, -1.1772806644439697, -0.28802409768104553, 0.45235875248908997, 0.14008457958698273, 0.3678096532821655, -0.9146643877029419, 0.48238858580589294, 0.12458360195159912, -0.2939073443412781, 0.1212998628616333, 0.5153858661651611, -0.10609902441501617, 0.55507892370224, 0.2696002125740051, 0.034736938774585724, -0.18693043291568756, -0.18744957447052002, 0.9232313632965088, -0.6830466985702515, -0.7111561298370361, -0.7911009192466736, 0.3836302161216736, -0.3289652168750763, -0.584697961807251, 0.6865532994270325, 1.213969349861145, 0.7105605006217957, -0.19100920855998993, 0.8031946420669556, -0.6228675246238708, 0.5560177564620972, -0.4373636543750763, 0.8928447961807251, -0.6379271149635315, -0.033953916281461716, -0.1278163194656372, -0.7701046466827393, -0.6103848218917847, 0.41932761669158936, -0.022701280191540718, -0.051536206156015396, 0.7219372391700745, 0.5684096217155457, -0.10238726437091827, 0.2227873057126999, -0.1683882772922516, 0.1384614109992981, -0.20828363299369812, 0.3498014211654663, 0.15169745683670044, -0.48285436630249023, 0.6690165400505066, -0.4312243163585663, -0.05896037444472313, -0.04259304702281952, -0.7952892780303955, -1.0085328817367554, -0.8286343812942505, -0.564561665058136, -0.3650675117969513, -0.26463666558265686, 0.4315366744995117, 0.7683038115501404, -1.3192416429519653, -0.3247847557067871, 0.09220944344997406, 0.4544773995876312, -0.16868114471435547, -0.3419616222381592, 0.9527668356895447, 0.06246572360396385, -0.4507853090763092, -0.30450132489204407, 0.048129912465810776, -0.3734051287174225, -0.16403155028820038, 0.0861956998705864, -0.3646886646747589, 0.012374847196042538, 0.6482397317886353, 0.122488833963871, -0.35287708044052124, -0.11687403917312622, -0.1673869639635086, -0.1802154779434204, 0.23296590149402618, 0.4816993176937103, -0.5709319710731506, 0.0632210448384285, 0.6899155378341675, 0.07941751182079315, 0.09788885712623596, 0.11166837066411972, -0.012401252053678036, -1.0364547967910767, 0.43591970205307007, -0.12284044176340103, 0.16177314519882202, 0.10996423661708832, -0.6302450299263, 0.8442890048027039, 0.2891036570072174, -0.5263599753379822, -0.8409830331802368, -0.08805189281702042, -1.3658697605133057, -0.1878339946269989, 1.0975505113601685, 0.3862000107765198, -0.338615745306015, -0.37757956981658936, -0.3319530487060547, 0.2527543604373932, -0.5871562361717224, 0.6828570365905762, 0.9977948665618896, 0.05671638622879982, -0.23849132657051086, -0.6126224398612976, 0.5808066725730896, -0.45360875129699707, -1.1824654340744019, -0.26533007621765137, 0.2446645200252533, 0.2395266443490982, 0.16493231058120728, 0.637359619140625, -0.4902936518192291, 0.12168101966381073, 0.060447800904512405, 0.23007436096668243, 0.19890917837619781, -0.48505184054374695, 0.007009489461779594, 0.3458929657936096, -0.70767742395401, -0.4637821316719055 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
irds/clinicaltrials_2021_trec-ct-2021
irds
2023-01-05T02:54:09Z
214
1
null
[ "task_categories:text-retrieval", "source_datasets:irds/clinicaltrials_2021", "region:us" ]
2023-01-05T02:54:09Z
2023-01-05T02:54:03.000Z
2023-01-05T02:54:03
--- pretty_name: '`clinicaltrials/2021/trec-ct-2021`' viewer: false source_datasets: ['irds/clinicaltrials_2021'] task_categories: - text-retrieval --- # Dataset Card for `clinicaltrials/2021/trec-ct-2021` The `clinicaltrials/2021/trec-ct-2021` dataset, provided by the [ir-datasets](https://ir-datasets.com/) package. For more information about the dataset, see the [documentation](https://ir-datasets.com/clinicaltrials#clinicaltrials/2021/trec-ct-2021). # Data This dataset provides: - `queries` (i.e., topics); count=75 - `qrels`: (relevance assessments); count=35,832 - For `docs`, use [`irds/clinicaltrials_2021`](https://huggingface.co/datasets/irds/clinicaltrials_2021) ## Usage ```python from datasets import load_dataset queries = load_dataset('irds/clinicaltrials_2021_trec-ct-2021', 'queries') for record in queries: record # {'query_id': ..., 'text': ...} qrels = load_dataset('irds/clinicaltrials_2021_trec-ct-2021', 'qrels') for record in qrels: record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'iteration': ...} ``` Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the data in 🤗 Dataset format.
[ -0.14098408818244934, -0.1941363513469696, 0.2296011745929718, 0.2089887261390686, -0.3505408763885498, -0.0644325539469719, 0.06536490470170975, 0.009966815821826458, 0.392854243516922, 0.5601924061775208, -0.6363672614097595, -0.9646827578544617, -0.3559747338294983, 0.33573487401008606, -0.11514744907617569, 1.2324814796447754, 0.2799493372440338, 0.24687032401561737, -0.3744332790374756, -0.4478767514228821, -0.38118213415145874, -0.27418768405914307, -0.5030161738395691, -0.3218984603881836, 0.6678895354270935, 0.7420735955238342, 0.5138991475105286, 0.6009572744369507, 0.9920399188995361, 0.12233591824769974, 0.10785559564828873, 0.09626799076795578, -0.36087408661842346, 0.07901078462600708, -0.06781775504350662, -0.5830684304237366, -0.497631311416626, -0.12302125990390778, 0.5564874410629272, 0.5275667309761047, -0.32252511382102966, 0.29044437408447266, -0.47644826769828796, 0.5342227816581726, -0.34645187854766846, 0.27009424567222595, -0.45370742678642273, 0.0817749947309494, -0.2493932992219925, -0.5624027848243713, -0.1795688271522522, -0.500700831413269, 0.5858226418495178, -0.5851686596870422, 0.372153639793396, 0.11986357718706131, 1.0210309028625488, 0.02055330201983452, -0.5072370767593384, -0.23748251795768738, -0.18459834158420563, 0.662205696105957, -0.7800997495651245, 0.01548527367413044, 0.7845990657806396, 0.24259205162525177, -0.07477137446403503, -1.1580138206481934, -0.24788549542427063, -0.20272976160049438, -0.3111545443534851, 0.24489204585552216, 0.004694361239671707, 0.042863816022872925, 0.5237645506858826, 0.5609854459762573, -1.0206321477890015, -0.35555943846702576, -0.8454036712646484, -0.14984430372714996, 0.6775209307670593, 0.6963885426521301, 0.23555515706539154, -0.381772518157959, -0.4099809527397156, -0.3369518220424652, -0.5020034909248352, -0.20517073571681976, -0.21364784240722656, 0.41951921582221985, -0.39076048135757446, 0.6314129829406738, -0.3327578604221344, 0.4865895211696625, -0.2090161144733429, -0.0660763531923294, 0.8146476745605469, -0.6161623597145081, -0.11619679629802704, -0.00048570215585641563, 1.0215986967086792, 0.544398844242096, -0.0026586123276501894, 0.11756731569766998, 0.05508427694439888, -0.2668875753879547, 0.22238802909851074, -0.7274524569511414, -0.23853303492069244, 0.9230234622955322, -0.514938473701477, -0.18280568718910217, 0.2711646556854248, -0.8253318071365356, -0.07758746296167374, -0.1562505066394806, 0.3052828013896942, -0.6101061105728149, -0.18708859384059906, 0.2395271211862564, -0.30086714029312134, 0.12925738096237183, 0.024954676628112793, -0.3558277189731598, 0.47132155299186707, 0.36488449573516846, 0.941982626914978, -0.0988379642367363, -0.11928542703390121, -0.46385812759399414, 0.11675867438316345, 0.018243419006466866, 1.0050688982009888, -0.5083069205284119, -0.6466324329376221, 0.23222662508487701, 0.4418914020061493, -0.29396793246269226, -0.5491139888763428, 0.6560865044593811, -0.36815157532691956, 0.4561365842819214, -0.37753868103027344, -0.2778901755809784, 0.03304681181907654, 0.37824365496635437, -0.7348153591156006, 1.13335382938385, 0.5747668743133545, -0.9996222853660583, 0.24275125563144684, -0.7578120231628418, -0.5570371747016907, 0.2681769132614136, -0.06758716702461243, -0.5972500443458557, -0.22749029099941254, 0.0763062983751297, 0.20371787250041962, -0.3470003306865692, 0.25810566544532776, -0.3313665986061096, -0.10260488092899323, 0.27649107575416565, 0.03953731805086136, 0.7885332107543945, 0.5003796219825745, 0.19903700053691864, 0.01793924905359745, -0.8513709902763367, 0.3764388859272003, -0.030957572162151337, -0.32950708270072937, -0.22308491170406342, -0.29209214448928833, 0.2082948088645935, 0.08859482407569885, 0.2158665955066681, -0.41152244806289673, 0.428352028131485, -0.12072019279003143, 0.6236979365348816, 0.30014297366142273, 0.30099695920944214, -0.03639478236436844, -0.6311501860618591, 0.6006988883018494, 0.3278477191925049, 0.2965191900730133, 0.216388538479805, -0.5087730288505554, -0.2566952109336853, -0.1190323531627655, 0.4710656404495239, 0.5024898648262024, -0.6650537848472595, 0.5116413235664368, -0.526075005531311, -0.6128070950508118, -0.4780026376247406, -0.6642919778823853, 0.32254558801651, 0.5692318081855774, 0.4884099066257477, -0.32195377349853516, -0.41839098930358887, -0.7253132462501526, 0.027611158788204193, -0.21687370538711548, 0.0277617946267128, 0.6547300815582275, 0.9901411533355713, -0.2743054926395416, 0.7250301837921143, -0.9453417062759399, -0.7373734712600708, -0.05010237172245979, 0.2899341583251953, 0.5127109885215759, 0.7972890734672546, 0.5022982954978943, -0.7830846905708313, -0.515854001045227, -0.35289832949638367, -0.5993632078170776, -0.08955113589763641, -0.2091134637594223, -0.20686408877372742, -0.10783170163631439, 0.10332551598548889, -0.43447861075401306, 0.6314932107925415, 0.09135004878044128, -0.6656358242034912, 0.44297343492507935, -0.49229294061660767, 0.5321685075759888, -1.0971957445144653, 0.43546590209007263, 0.14811140298843384, -0.004090598784387112, -0.3984958231449127, -0.14669106900691986, 0.004048518370836973, -0.06513269990682602, -0.6566349267959595, 0.5192078948020935, -0.4281940162181854, 0.08371181786060333, 0.32090893387794495, -0.016217146068811417, 0.1880670040845871, 0.21495190262794495, 0.13865870237350464, 0.7432140111923218, 0.6644378900527954, -0.505023181438446, 0.406809002161026, 0.7168793082237244, -0.1948937028646469, 0.5779553651809692, -0.544395923614502, 0.026922011747956276, 0.07044968008995056, 0.1209908053278923, -0.7162887454032898, -0.4706454575061798, 0.31544673442840576, -0.5975407958030701, 0.2194886952638626, -0.2569572627544403, -0.3132416307926178, -0.5901723504066467, -0.5803580284118652, 0.42289111018180847, 0.2433839738368988, -0.06379114091396332, 0.3586367070674896, 0.3007924556732178, 0.035201508551836014, -0.557823896408081, -1.0239392518997192, 0.02352716587483883, -0.24225597083568573, -0.3211343586444855, 0.5878797173500061, -0.18462540209293365, -0.1504964679479599, 0.2379329800605774, 0.02685585618019104, -0.2878479063510895, -0.4025408923625946, 0.09742379933595657, 0.15071286261081696, -0.3647976219654083, 0.1130240261554718, -0.15993759036064148, -0.18091903626918793, 0.21282638609409332, -0.10178247839212418, 0.6977190971374512, -0.04001407325267792, -0.2921571433544159, -0.5905638933181763, 0.3040134608745575, 0.6581633687019348, -0.2899548411369324, 0.8433991074562073, 0.41240647435188293, -0.6034609079360962, 0.045325350016355515, -0.45030996203422546, -0.1270265281200409, -0.4207260310649872, 0.3212125599384308, -0.2629131078720093, -0.29034045338630676, 0.805393397808075, 0.2800924777984619, -0.13108593225479126, 0.9067094326019287, 0.378666490316391, -0.22703485190868378, 0.6619762182235718, 0.05516747385263443, 0.09646845608949661, 0.5185944437980652, -0.8315923810005188, -0.5047675967216492, -1.1264187097549438, -0.5800087451934814, -0.8623828291893005, -0.1617024540901184, -0.5797433853149414, -0.26142778992652893, 0.4757723808288574, -0.4094769358634949, -0.44224098324775696, 0.37534305453300476, -0.7105990648269653, 0.12185962498188019, 0.8070891499519348, 0.7609878778457642, 0.127656027674675, 0.3009622097015381, 0.04549427703022957, 0.06463731080293655, -0.7310465574264526, -0.22832675278186798, 1.6998987197875977, 0.05173627659678459, 0.7155086994171143, -0.08322103321552277, 0.6587523818016052, 0.5491315126419067, 0.3252440094947815, -0.5550008416175842, 0.30782783031463623, -0.39292511343955994, -0.7405191659927368, -0.08430387079715729, -0.5107488036155701, -1.157360553741455, -0.18317486345767975, -0.19096387922763824, -0.6172136068344116, 0.5203894972801208, -0.2774980664253235, -0.29587483406066895, 0.20406056940555573, -0.4008224308490753, 0.8500838279724121, -0.21170911192893982, -0.4423683285713196, -0.18326407670974731, -0.8903003931045532, -0.025802744552493095, 0.16041070222854614, -0.1517561823129654, -0.04633455350995064, -0.018435930833220482, 0.9840249419212341, -0.5906639695167542, 0.5887925624847412, -0.3622802793979645, 0.47467970848083496, 0.46472686529159546, -0.3068753182888031, 0.25914135575294495, 0.4226546585559845, -0.3278452157974243, 0.14671464264392853, 0.753692090511322, -0.4630841612815857, -0.22740019857883453, 0.5523363351821899, -0.7781350016593933, -0.32258567214012146, -0.9506041407585144, -0.5622249841690063, 0.04460902139544487, 0.32016289234161377, 0.3105904459953308, 1.2296292781829834, -0.06883612275123596, 0.31710827350616455, 0.5864843726158142, -0.3996801972389221, 0.03416439890861511, 0.7698966860771179, 0.2929311990737915, -0.8770831823348999, 0.8407421112060547, 0.24693875014781952, 0.23607094585895538, 0.6030368804931641, 0.3310169279575348, -0.7333948016166687, -0.7747201919555664, -0.09782905131578445, 0.3605143129825592, -0.5156036019325256, -0.47754281759262085, -0.6364103555679321, -0.376144140958786, -0.5439582467079163, 0.2789077162742615, 0.13728024065494537, -0.23921898007392883, -0.6826176643371582, 0.03769577294588089, 0.9372199773788452, 0.35375645756721497, -0.5180487632751465, 0.46206656098365784, -1.0558277368545532, 0.5152947902679443, -0.21135371923446655, 0.546608567237854, -0.2077154666185379, -0.6892783641815186, -0.1186416745185852, 0.13622698187828064, -0.3724675178527832, -0.7217810750007629, 0.6440199017524719, 0.32348090410232544, 0.579210638999939, 0.456735759973526, 0.5167933106422424, 0.9691640138626099, -0.028842350468039513, 0.9229100942611694, 0.06678111851215363, -0.3713361620903015, 0.9463052153587341, -0.5201762914657593, 0.11796161532402039, 0.9893817901611328, 0.5296773910522461, -0.5706750154495239, -0.05433964729309082, -1.1196345090866089, -0.9539837837219238, 1.0797659158706665, 0.22026632726192474, -0.2754136025905609, -0.19448398053646088, 0.7159758806228638, -0.012984775006771088, 0.15641741454601288, -0.571042001247406, -0.6067550182342529, -0.040848854929208755, -0.5877450108528137, 0.205595925450325, -0.24264153838157654, -0.5995752215385437, -0.29241684079170227, 0.6960713863372803, -0.2525549530982971, 0.6520780920982361, 0.7614786624908447, 0.18602314591407776, -0.16843263804912567, 0.33147063851356506, 0.6338611841201782, 0.7963686585426331, -0.8664894104003906, -0.11269397288560867, 0.01688455417752266, -1.0935043096542358, -0.22214843332767487, 0.2137075960636139, 0.14915424585342407, -0.07677580416202545, 0.5124595165252686, 0.34194326400756836, -0.3368734121322632, -0.5973296761512756, 0.3679804503917694, -0.35210490226745605, -0.3923256993293762, -0.3781837224960327, -0.015666211023926735, -0.20092369616031647, 0.14397716522216797, 0.3677821755409241, -0.018569089472293854, 0.020197544246912003, -0.5207335352897644, 0.514061450958252, 0.06567653268575668, -0.7761446833610535, -0.16460314393043518, 0.5806432366371155, -0.08771523088216782, -0.3173723518848419, 1.2392464876174927, 0.2571519911289215, -0.20425519347190857, 1.0638610124588013, 0.5400509238243103, 0.7895302176475525, 0.31859642267227173, 0.19012948870658875, 0.8398604393005371, -0.031016690656542778, -0.1419553905725479, 0.9946231245994568, 0.16500501334667206, -0.5392415523529053, 0.15228527784347534, -0.49650004506111145, -0.4574228525161743, 0.24894000589847565, -1.3064886331558228, 0.1727236807346344, -0.2869195342063904, -0.4471292495727539, -0.42103150486946106, 0.4732668101787567, -0.6764746308326721, 0.6121543049812317, -0.3169797658920288, 1.269389033317566, -0.5943869352340698, 0.7886771559715271, 0.7631629109382629, -0.8134238719940186, -0.7241874933242798, -0.2784219980239868, -0.2530687153339386, -0.9264028072357178, 0.49397510290145874, -0.04540959373116493, 0.5766196846961975, -0.0541355200111866, -0.5644627213478088, -0.7120792269706726, 1.4333003759384155, -0.14608193933963776, -0.46228575706481934, 0.23703381419181824, 0.46281036734580994, 0.6409823298454285, -0.3344167470932007, 0.737587571144104, 0.6219581961631775, 0.5895749926567078, 0.17576029896736145, -0.6797869801521301, 0.09865257143974304, -0.32370901107788086, -0.6232291460037231, -0.1561417430639267, -0.6864712834358215, 0.7193666100502014, -0.4343832731246948, -0.11119693517684937, 0.37568193674087524, 0.44519034028053284, 0.5439996123313904, 0.6510303616523743, 0.11286110430955887, 0.6651856899261475, 0.7450322508811951, -0.66795414686203, 0.8473761677742004, -0.3271494507789612, 0.545626699924469, 0.8306718468666077, -0.1729886531829834, 0.6857864856719971, 0.35402700304985046, -0.5825059413909912, 0.5105169415473938, 0.8265141844749451, -0.5399874448776245, 0.8846787214279175, 0.18500672280788422, -0.11623845249414444, -0.054373469203710556, -0.2856175899505615, -0.8709031343460083, 0.04328060522675514, 0.6131130456924438, -0.4069397449493408, -0.031083542853593826, -0.12483752518892288, -0.1895381212234497, -0.43073663115501404, -0.2658279836177826, 0.8019079566001892, 0.10335660725831985, -0.5663992762565613, 0.5853077173233032, -0.32901686429977417, 0.35419735312461853, -0.955675482749939, -0.1377686709165573, -0.3751317858695984, 0.21815961599349976, -0.5520046353340149, -1.1914310455322266, 0.26668453216552734, -0.2949472665786743, -0.2178175449371338, 0.039785899221897125, 0.5330120325088501, -0.32074111700057983, -0.45813214778900146, 0.002155823865905404, 0.45743316411972046, 0.3511531352996826, 0.39044636487960815, -0.980044960975647, -0.1549326777458191, 0.1621273159980774, -0.1520933210849762, 0.46930307149887085, 0.5569759011268616, 0.08106867223978043, 0.9671573042869568, 0.603312611579895, 0.4365943670272827, -0.4123954176902771, 0.20683139562606812, 1.0550516843795776, -1.0083417892456055, -0.4351328909397125, -0.3480052053928375, 0.5100337862968445, 0.09567669779062271, -0.9938392043113708, 0.14914396405220032, 0.8672133088111877, 0.4180011451244354, -0.1406865268945694, 0.6483318209648132, -0.4827286899089813, 0.4732537269592285, -0.4648185670375824, 0.960045337677002, -0.8794634342193604, 0.18594001233577728, -0.02222793735563755, -0.2025526612997055, -0.4904731810092926, 0.363920122385025, -0.23287418484687805, -0.07708041369915009, 0.931693971157074, 1.0000685453414917, 0.09369990229606628, 0.23453067243099213, -0.178743377327919, 0.35752996802330017, 0.36551138758659363, 0.45738309621810913, 0.5157487392425537, -0.8305845856666565, 0.5618886947631836, -0.4090457856655121, -0.2175910770893097, 0.027170995250344276, -0.7873044610023499, -0.8191125988960266, -0.4891715943813324, -0.6601385474205017, -0.7692035436630249, 0.07836885750293732, 0.874072253704071, 0.6351999044418335, -1.1935548782348633, -0.2657395005226135, 0.17059636116027832, 0.1046433076262474, -0.33592644333839417, -0.3304160237312317, 1.014360785484314, 0.006398683413863182, -0.3680376708507538, 0.04710521921515465, -0.1532638520002365, -0.094245046377182, 0.2663147449493408, 0.084658682346344, -0.4624115228652954, -0.5356363654136658, 0.1488206833600998, 0.4787338376045227, -0.39371395111083984, -0.17589673399925232, -0.0648009181022644, -0.1682252436876297, 0.5587034821510315, 0.48147308826446533, -1.0055694580078125, 0.31070005893707275, 0.7746008038520813, 0.03209743648767471, 0.4516730308532715, -0.01276857778429985, 0.40572062134742737, -0.4500282108783722, -0.09257525950670242, 0.4721086621284485, 0.33311137557029724, -0.12120391428470612, -0.29121410846710205, 0.8460801839828491, 0.5268285870552063, -0.5648136138916016, -0.9480943083763123, -0.46699845790863037, -1.3900799751281738, 0.024048401042819023, 1.0491230487823486, -0.04119684919714928, -0.3182898163795471, -0.27915647625923157, -0.23362897336483002, 0.22970247268676758, -0.7966578602790833, 0.5028213262557983, 0.1569298952817917, -0.3727726936340332, 0.09928728640079498, -0.46363306045532227, 0.4292674958705902, -0.023464161902666092, -0.8980291485786438, -0.00003702107278513722, 0.2151692807674408, 0.45933982729911804, 0.020595287904143333, 0.6957841515541077, -0.5321134924888611, 0.15879057347774506, 0.02650582417845726, -0.014718289487063885, -0.11716023832559586, -0.08425284177064896, -0.2808934450149536, 0.13917940855026245, -0.33532458543777466, -0.29834023118019104 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
jordyvl/rvl_cdip_100_examples_per_class
jordyvl
2023-03-23T20:55:18Z
214
0
null
[ "region:us" ]
2023-03-23T20:55:18Z
2023-03-23T19:58:02.000Z
2023-03-23T19:58:02
--- dataset_info: features: - name: image dtype: image - name: label dtype: class_label: names: '0': letter '1': form '2': email '3': handwritten '4': advertisement '5': scientific report '6': scientific publication '7': specification '8': file folder '9': news article '10': budget '11': invoice '12': presentation '13': questionnaire '14': resume '15': memo splits: - name: train num_bytes: 97000316.76 num_examples: 800 - name: test num_bytes: 48612840.21 num_examples: 400 - name: validation num_bytes: 48666549.76 num_examples: 400 download_size: 180034173 dataset_size: 194279706.73 --- # Dataset Card for "rvl_cdip_100_examples_per_class" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.7076529860496521, -0.3377656042575836, 0.16605834662914276, 0.3819771409034729, 0.012031477876007557, -0.0884443148970604, 0.19258761405944824, 0.17467564344406128, 0.27121812105178833, 0.6543382406234741, -0.7346834540367126, -1.0158610343933105, -0.1839519888162613, -0.11523175984621048, -0.49879249930381775, 1.298239827156067, -0.0562358982861042, 0.26581627130508423, -0.5067853927612305, -0.17861329019069672, -0.695756196975708, -0.5454092621803284, -0.6536941528320312, -0.38661110401153564, 0.6779486536979675, 0.9475584030151367, 0.09410795569419861, 0.25396570563316345, 0.5355888605117798, 0.09446229785680771, 0.22934499382972717, -0.29996225237846375, -0.2970852851867676, -0.31206566095352173, -0.04924945905804634, -0.5846508741378784, -1.1407978534698486, 0.09254030138254166, 0.8375561833381653, 0.551005482673645, -0.3283541202545166, 0.6697056293487549, -0.18213827908039093, 0.6334155201911926, -0.5677385330200195, 0.16811232268810272, -0.2845269441604614, 0.37501540780067444, -0.37441202998161316, -0.34154418110847473, -0.3253810405731201, -0.39745470881462097, 0.0020570296328514814, -0.8549374938011169, 0.3775533437728882, 0.020434269681572914, 0.9192115664482117, -0.019207583740353584, -0.08714419603347778, -0.1276567131280899, -0.48097512125968933, 0.4939378499984741, -0.3173696994781494, 0.23357339203357697, 0.5580350756645203, 0.3762095868587494, 0.06758035719394684, -0.8516368269920349, -0.6636529564857483, 0.2755182087421417, 0.10156449675559998, 0.16579490900039673, 0.15757912397384644, 0.11218272894620895, 0.6910645365715027, 0.6566860675811768, -0.8297924399375916, -0.2742258906364441, -0.34706640243530273, 0.004949035122990608, 0.6574075818061829, 0.36108794808387756, 0.22860047221183777, 0.20097361505031586, -0.33338692784309387, -0.5540734529495239, -0.7280052304267883, -0.0054364255629479885, 0.5638381838798523, 0.09762895852327347, -1.0869179964065552, 0.6932909488677979, -0.014002767391502857, 0.6685213446617126, -0.12041842937469482, 0.30212631821632385, 0.5915200114250183, -0.309074729681015, -0.320041298866272, 0.05490179732441902, 0.4518061578273773, 0.46316856145858765, 0.33481311798095703, 0.38983795046806335, -0.12773601710796356, -0.16315653920173645, 0.09791393578052521, -0.9624812602996826, -0.7604449391365051, 0.5410753488540649, -0.7992914319038391, -0.34333929419517517, 0.32340511679649353, -1.0520731210708618, -0.27316686511039734, -0.4250166714191437, 0.125274196267128, 0.0006811414496041834, -0.5357543230056763, 0.09807638078927994, -0.9089353084564209, 0.900446891784668, 0.05252368003129959, -0.7011518478393555, 0.6198880672454834, 0.7966083884239197, 0.48136842250823975, 0.14513908326625824, -0.464074969291687, -0.4427245855331421, 0.30865591764450073, 0.027997806668281555, 1.0602245330810547, -0.6026131510734558, -0.6206066012382507, 0.1746087223291397, 0.3056305944919586, 0.293917179107666, -0.34026116132736206, 0.819874107837677, -0.2080773562192917, 0.14744693040847778, -0.6533560156822205, -0.6567901372909546, 0.31053778529167175, 0.07676288485527039, -0.5498636364936829, 1.0796493291854858, 0.2077431082725525, -0.7306938171386719, 0.5913503170013428, -1.0223300457000732, -0.259694904088974, 0.7227780818939209, -0.24946729838848114, -0.7317034602165222, 0.08956152200698853, -0.3215348422527313, 0.46886107325553894, -0.11191781610250473, 0.15095749497413635, -0.5624831318855286, -0.24277855455875397, 0.1410023272037506, -0.026565875858068466, 1.0854310989379883, 0.3282850384712219, 0.3454391062259674, 0.2465878129005432, -0.8344883322715759, 0.15589231252670288, 0.14659078419208527, 0.06514202803373337, -0.5112058520317078, -0.4632874131202698, 0.6171582937240601, -0.23447412252426147, 0.11899209767580032, -0.3918530344963074, 0.6639298796653748, 0.4088888168334961, -0.38555458188056946, 0.8195440173149109, 0.13874699175357819, 0.20492006838321686, -0.45747342705726624, 0.579380452632904, -0.1579532027244568, 0.6513465642929077, 0.18592418730258942, -0.39998528361320496, -0.7281473278999329, -0.3387814164161682, 0.5113974213600159, 0.6631020903587341, -0.4862309992313385, 0.674802303314209, 0.002782416297122836, -0.6928496360778809, -0.21564342081546783, 0.1109151765704155, 0.36362484097480774, 0.1390121877193451, 0.3898889124393463, -0.8040087819099426, -0.786925733089447, -0.7219200134277344, 0.15880349278450012, -0.014621855691075325, -0.000822603702545166, 0.42616137862205505, 0.7179626226425171, -0.16252726316452026, 0.9175578355789185, -1.0272274017333984, -0.34044408798217773, -0.38343313336372375, 0.008737625554203987, 0.20113234221935272, 0.6710736155509949, 0.8635103702545166, -0.955943763256073, -0.5262609720230103, -0.6679850220680237, -0.7323067784309387, -0.08917715400457382, -0.02734735980629921, -0.3768607974052429, -0.24385994672775269, 0.12271908670663834, -0.23636479675769806, 0.6774224042892456, 0.7186846137046814, -0.7043641209602356, 0.2586228549480438, -0.15440547466278076, 0.06464308500289917, -1.0959405899047852, 0.053081218153238297, 0.16023464500904083, -0.08903229236602783, -0.6250588297843933, 0.01588571071624756, -0.0014991547213867307, -0.2517548203468323, -0.22755609452724457, 0.5200724005699158, -0.21913211047649384, -0.24237878620624542, -0.23833386600017548, -0.11626265197992325, -0.2278681993484497, -0.05641275644302368, 0.379517525434494, 0.6669976115226746, 0.9103025197982788, -0.617918848991394, 0.6565408706665039, 0.5707545876502991, 0.18634864687919617, 0.8937265872955322, -0.9657509922981262, 0.0023835795000195503, -0.14988471567630768, 0.6484613418579102, -0.7648456692695618, -0.5348178148269653, 0.1857021003961563, -0.08584574609994888, 0.43747231364250183, -0.7062265872955322, -0.5409770011901855, -0.5445037484169006, -0.4653942584991455, 0.6276924014091492, 0.6774963736534119, -0.6785001754760742, 0.24579942226409912, 0.7323514819145203, 0.1902308613061905, -0.48627182841300964, -0.7038021683692932, 0.11062327027320862, -0.31127336621284485, 0.0841568261384964, 0.3551798164844513, -0.5195373296737671, -0.03146148473024368, -0.3364895284175873, 0.42932674288749695, -0.09739642590284348, -0.13395415246486664, 0.6234686374664307, 0.4222885072231293, -0.0998612567782402, 0.3628324866294861, -0.0002527049509808421, -0.340912401676178, 0.11240943521261215, 0.05326738953590393, 1.0005509853363037, -0.2161850780248642, -0.2097744196653366, -0.5681071281433105, 0.26765549182891846, -0.030515721067786217, -0.07221966981887817, 0.6960335373878479, 0.7998703718185425, -0.3062697947025299, -0.6708150506019592, -0.46517589688301086, -0.133317232131958, -0.48035767674446106, 0.08268138021230698, -0.5437859892845154, -0.3615928888320923, 0.2520104944705963, -0.15003672242164612, -0.037556469440460205, 0.4191765785217285, 0.6748945116996765, 0.14573682844638824, 0.23070891201496124, 0.7741174697875977, -0.20966412127017975, 0.5503008365631104, -0.7258318662643433, -0.38216742873191833, -0.7996886968612671, -0.1420375406742096, -0.6131162643432617, 0.02513618767261505, -0.9273062348365784, -0.4727216362953186, -0.07534323632717133, -0.08569083362817764, -0.3801196217536926, 0.855694591999054, -0.8209250569343567, 0.5717276334762573, 0.4757138788700104, -0.0136212557554245, 0.05224178358912468, 0.12601663172245026, 0.2967914938926697, 0.42112112045288086, -0.8066390752792358, -0.5403195023536682, 1.5074867010116577, 0.6207777857780457, 0.9444100260734558, -0.03406764566898346, 1.0746794939041138, 0.4948218762874603, 0.6156713962554932, -0.24972626566886902, 0.7160931825637817, -0.34984299540519714, -0.7504734396934509, -0.20893317461013794, -0.29600921273231506, -0.5311715602874756, -0.40024349093437195, -0.2490326464176178, -0.010878375731408596, 0.766525387763977, 0.2455400675535202, 0.3745581805706024, 0.36443933844566345, -0.6407845616340637, 0.9997392892837524, 0.05221818760037422, -0.2300080955028534, -0.27429696917533875, -0.4602515697479248, 0.20624098181724548, 0.3385224938392639, 0.002393948147073388, -0.21014755964279175, -0.03130562603473663, 0.7185842990875244, -0.22801797091960907, 1.1157773733139038, -0.6604679226875305, -0.2022514045238495, 0.39378833770751953, -0.6021664142608643, 0.0892314612865448, 0.5886907577514648, 0.016415057703852654, 0.2946133613586426, 0.08154874294996262, -0.6458019614219666, 0.05302945896983147, 0.795418381690979, -0.845273494720459, 0.4901895821094513, -0.6054420471191406, -0.5041539669036865, 0.08279233425855637, -0.09371844679117203, 0.21137398481369019, 0.7418355941772461, -0.49739378690719604, -0.17923952639102936, 0.9518486857414246, -0.2743660807609558, 0.4091795086860657, 0.4078446626663208, -0.2297600656747818, -0.3825541138648987, 1.3110888004302979, -0.08956316858530045, -0.0611424520611763, 0.4224090576171875, 0.06067090854048729, -0.014751935377717018, -0.27083566784858704, -0.5050753951072693, 0.1479090303182602, -0.6148778200149536, -0.4015718400478363, -0.47802406549453735, -0.1163349449634552, -0.27545198798179626, -0.332323282957077, -0.393066942691803, -0.6753910779953003, -0.4650260806083679, -0.2744308412075043, 0.7931534647941589, 0.6242372989654541, -0.4282743036746979, 0.37541693449020386, -0.3490917384624481, 0.7016817927360535, 0.3197864592075348, 0.8726752400398254, -0.08594521135091782, -0.40395164489746094, 0.07425188273191452, -0.2231726497411728, -0.3070962429046631, -0.32662108540534973, 0.022611921653151512, 0.1500481516122818, 0.6016890406608582, 0.23706825077533722, 0.18483176827430725, 0.7802324295043945, -0.2513754069805145, 0.6476438641548157, 0.3902817666530609, -0.8548744320869446, 0.7090071439743042, -0.057167720049619675, 0.032816845923662186, 0.8869117498397827, 0.7777306437492371, -0.38764944672584534, -0.13590724766254425, -0.8567035794258118, -0.7942928075790405, 0.20708498358726501, -0.20060528814792633, 0.33367863297462463, 0.10839786380529404, 0.5329135060310364, 0.16273580491542816, 0.12106063216924667, -1.1321243047714233, -1.0508455038070679, -0.341919481754303, -0.4036966562271118, 0.2494657039642334, -0.446656733751297, -0.5074361562728882, -0.5224882960319519, 0.675214409828186, -0.1685495525598526, 0.5042367577552795, 0.13534635305404663, 0.4583732485771179, -0.07014838606119156, 0.3155463933944702, 0.739891529083252, 0.6789277195930481, -0.6519533395767212, -0.023249836638569832, 0.40149328112602234, -0.6577019691467285, -0.024982154369354248, 0.31933799386024475, -0.0723654180765152, -0.05882488563656807, 0.6203503012657166, 0.467438280582428, -0.6126407980918884, -0.4182594418525696, 0.5832355618476868, -0.5556045770645142, -0.24726949632167816, -1.0557297468185425, 0.3082141876220703, -0.27761411666870117, -0.037985604256391525, 0.32062581181526184, -0.4740583002567291, 0.24408237636089325, -0.6518782377243042, 0.4239861071109772, 0.31176677346229553, -0.8669361472129822, -0.192318856716156, 0.33459553122520447, 0.24718761444091797, -0.3044407367706299, 0.713064968585968, -0.16203686594963074, -0.24565456807613373, 0.6246334910392761, 0.37733274698257446, 0.8707872629165649, -0.08593017607927322, 0.5067818760871887, 0.5224053263664246, -0.07922519743442535, 0.09781989455223083, 0.8092559576034546, -0.30235254764556885, -0.5734536051750183, -0.19004608690738678, -0.49874675273895264, -0.48892146348953247, -0.2776705324649811, -1.037829041481018, 0.5858688950538635, -0.6791264414787292, -0.10203088074922562, 0.010409130714833736, 0.05694885924458504, -0.7681449055671692, 0.21093767881393433, 0.03582563251256943, 1.5252892971038818, -1.0954726934432983, 1.1303588151931763, 0.7646006941795349, -0.571924090385437, -0.4915767014026642, 0.07123236358165741, -0.31239598989486694, -0.7141310572624207, 0.5231154561042786, -0.21244101226329803, 0.4281894266605377, -0.2867622375488281, -1.1214237213134766, -0.02958422340452671, 1.3571579456329346, -0.18968644738197327, -0.7567777037620544, 0.3262588083744049, 0.20706099271774292, 0.5086283683776855, -0.699482262134552, 0.33579200506210327, 0.26857200264930725, 0.575639545917511, -0.10605418682098389, -0.5294221043586731, -0.060289137065410614, -0.024851946160197258, -0.19926080107688904, 0.06675010174512863, -0.8876397013664246, 0.39178988337516785, -0.11190471798181534, 0.27237334847450256, 0.16060736775398254, 0.5882675051689148, 0.3873960077762604, 0.7367714047431946, 0.5649208426475525, 0.8137381672859192, 0.4845373332500458, -0.12772643566131592, 1.315779209136963, 0.049354735761880875, 0.6511199474334717, 1.333962321281433, -0.3908728063106537, 0.553765594959259, 0.5123952627182007, -0.32239919900894165, 0.4919963777065277, 0.19564557075500488, -0.7590444684028625, 0.5604462623596191, 0.6023329496383667, -0.493285208940506, -0.3595098555088043, -0.2731468081474304, -0.8066359162330627, 0.164311483502388, 0.24150411784648895, -0.4802486300468445, 0.2976827025413513, 0.15676936507225037, -0.0032080174423754215, -0.3447902202606201, -0.3059944212436676, 0.9338581562042236, 0.03946743533015251, 0.0037182543892413378, 0.19765305519104004, -0.1608920395374298, 0.31543537974357605, -0.7816809415817261, -0.7490705251693726, -0.17955288290977478, 0.2036145180463791, -0.5086835622787476, -1.201955795288086, 0.22925955057144165, -0.19869722425937653, -0.2606997489929199, -0.2665258049964905, 0.5252541899681091, -0.2092808037996292, -0.7552321553230286, 0.1607467085123062, 0.007227896712720394, 0.2225760668516159, 0.6159422397613525, -0.9206635355949402, 0.2542451322078705, -0.03034295327961445, 0.025422900915145874, 0.4333195686340332, 0.2723276913166046, 0.2957864999771118, 0.7324486374855042, 0.4624817967414856, 0.21937908232212067, -0.3611752688884735, 0.3981579840183258, 1.0700397491455078, -0.6164408922195435, 0.09535889327526093, -0.3644239604473114, 0.6160885691642761, -0.553391695022583, -0.8418107628822327, 0.7030152678489685, 1.1980719566345215, 1.1875211000442505, -0.4312392771244049, 0.7802333235740662, -0.5408828854560852, 0.3653145432472229, -0.16929543018341064, 0.5237413048744202, -0.4183713495731354, 0.3001942038536072, -0.4429032504558563, -0.7633722424507141, -0.41996148228645325, 0.7333740592002869, 0.12923632562160492, -0.08017680048942566, 0.4225143492221832, 0.8092269897460938, -0.23429203033447266, 0.013106629252433777, 0.17035743594169617, 0.11127591133117676, 0.2976599633693695, 0.21351474523544312, 0.3575645387172699, -0.737130880355835, 0.22313012182712555, -0.5107694268226624, -0.5509430766105652, 0.1683901697397232, -0.9334603548049927, -0.9920336008071899, -0.6943369507789612, -0.786266565322876, -0.5628770589828491, 0.17109456658363342, 0.9128310680389404, 0.987712562084198, -1.2736790180206299, -0.7019417881965637, -0.26974475383758545, 0.33243927359580994, 0.06697440892457962, -0.25772103667259216, 0.6772878766059875, 0.011119301430881023, -0.4585631787776947, -0.21575887501239777, -0.12969303131103516, 0.2616604268550873, -0.18701782822608948, 0.013529516756534576, -0.05187090486288071, -0.1781894415616989, 0.4273678958415985, 0.5658738017082214, -0.03256163001060486, -0.20118802785873413, -0.7353107929229736, -0.005120249930769205, -0.13260149955749512, 1.1377907991409302, -0.5257816910743713, -0.007581707555800676, 0.302445650100708, -0.004698324017226696, 0.5879680514335632, 0.07123398035764694, 0.5012998580932617, -0.8281263113021851, 0.26410773396492004, -0.13385961949825287, 0.35168612003326416, -0.018916668370366096, -0.13818472623825073, 0.9807164072990417, 0.3950745761394501, -0.7529122233390808, -0.9507960677146912, 0.25191962718963623, -1.6100716590881348, 0.0519278310239315, 0.9238141775131226, 0.010354336351156235, -0.11088865995407104, -0.25676214694976807, -0.30073827505111694, -0.0039639947935938835, -0.654812216758728, 0.27555355429649353, 0.26013028621673584, 0.014794345945119858, -0.45043689012527466, -0.6354140639305115, 0.7252465486526489, -0.30868765711784363, -1.3686832189559937, 0.3043414056301117, 0.30350416898727417, 0.35195496678352356, -0.03745681419968605, 0.5626474618911743, -0.18827803432941437, 0.2847117781639099, 0.24674445390701294, 0.7393607497215271, 0.03068172000348568, -0.47765231132507324, -0.26425981521606445, 0.2459019273519516, 0.09242252260446548, -0.10743661224842072 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
clarin-knext/nfcorpus-pl
clarin-knext
2023-06-07T08:11:26Z
214
0
null
[ "language:pl", "arxiv:2305.19840", "region:us" ]
2023-06-07T08:11:26Z
2023-06-06T22:41:34.000Z
2023-06-06T22:41:34
--- 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
[ -0.2209915816783905, -0.9029768109321594, 0.5094643235206604, 0.2354193478822708, -0.3185211718082428, -0.1491904854774475, -0.16673950850963593, -0.4962919354438782, -0.018960798159241676, 0.4112257659435272, -0.5503100752830505, -0.691356897354126, -0.4166182279586792, -0.04830460250377655, -0.28065207600593567, 0.7076619267463684, 0.03316282108426094, 0.37434664368629456, 0.3830283284187317, -0.31142258644104004, -0.056415803730487823, -0.6188212633132935, -0.33011946082115173, -0.10705464333295822, 0.6542652249336243, 0.6115020513534546, 0.22780151665210724, 0.47316136956214905, 0.913843035697937, 0.166276752948761, 0.3685120940208435, -0.4779619574546814, -0.5472334027290344, 0.35305356979370117, -0.17400380969047546, -0.3773583173751831, -0.2042873650789261, -0.20798788964748383, 1.1306101083755493, 0.9135054349899292, -0.03765195608139038, 0.3307867646217346, -0.32050007581710815, 0.8254166841506958, -1.1019872426986694, 0.04471304640173912, -0.506165623664856, 0.20580372214317322, -1.0317022800445557, -0.05391162633895874, -0.6761700510978699, -0.0569947175681591, -0.4730432331562042, -0.3728539049625397, 0.44640710949897766, 0.0948711559176445, 1.1754015684127808, -0.2497911900281906, -0.2074013650417328, 0.22557224333286285, -0.7874126434326172, 0.7371729612350464, -0.46648672223091125, 0.5501417517662048, 0.2417077124118805, 0.3829087018966675, -0.3127712607383728, -0.5020386576652527, -0.5211018323898315, 0.12744279205799103, 0.22705219686031342, 0.3016538619995117, -0.33008190989494324, -0.01584317348897457, 0.432722270488739, 0.306316077709198, -0.7539462447166443, -0.4687129259109497, -0.48960474133491516, -0.24346838891506195, 0.6413173675537109, 0.3292172849178314, 0.1808784455060959, 0.16156214475631714, -0.2885766327381134, -0.38409730792045593, -0.7047502994537354, -0.1312844157218933, 0.5877283215522766, 0.5299229621887207, -0.08908427506685257, 0.9127991795539856, -0.8319380283355713, 1.0667860507965088, -0.07584890723228455, 0.11961881071329117, 0.95321124792099, -0.5425540804862976, 0.024715960025787354, 0.18913286924362183, 0.9293462634086609, 0.26643475890159607, -0.051005780696868896, -0.20660430192947388, -0.0886417105793953, -0.20063458383083344, -0.08412966132164001, -0.8889424204826355, -0.43771740794181824, -0.056797146797180176, -0.2534363865852356, 0.1934904307126999, 0.6032859086990356, -0.7288182377815247, 0.1905779242515564, 0.4230298399925232, 0.5445699095726013, -0.5794903039932251, -0.11956389248371124, 0.14419198036193848, -0.3400813043117523, 0.39590489864349365, -0.12479861080646515, -0.34923607110977173, 0.17774342000484467, 0.4042658805847168, 0.7055133581161499, 0.15484924614429474, -0.4635191559791565, -0.9801010489463806, 0.04263346269726753, -0.4356222152709961, 0.9398244023323059, -0.4005598723888397, -0.3883664309978485, 0.14688479900360107, 0.048406705260276794, 0.0868484303355217, -0.41450241208076477, 0.9571201801300049, -0.4231870472431183, 0.22371594607830048, -0.38491350412368774, -0.5280058979988098, 0.008947344496846199, 0.16512838006019592, -0.3662181496620178, 1.530479073524475, 0.31431087851524353, -0.8441509008407593, 0.3629946708679199, -0.4066861569881439, -0.37360334396362305, 0.4719209372997284, -0.238535076379776, -0.2874816358089447, 0.13037905097007751, -0.3983267545700073, 0.15722031891345978, 0.008962167426943779, -0.09308018535375595, -0.6308868527412415, -0.5152190327644348, 0.018865888938307762, -0.10619716346263885, 1.0853005647659302, 0.1549362987279892, -0.05786225199699402, -0.11256207525730133, -0.8514041900634766, 0.2861693799495697, 0.1968507319688797, -0.3568851053714752, -0.3300584554672241, -0.2901926040649414, 0.29466065764427185, 0.4730531871318817, 0.7001046538352966, -1.4070148468017578, 0.054522160440683365, -0.5142965316772461, -0.28445443511009216, -0.058158744126558304, 0.049278952181339264, 0.16905121505260468, -0.11208038032054901, 0.19711971282958984, -0.10972107201814651, 0.19487108290195465, 0.03493321314454079, -0.544269859790802, -0.6910496354103088, -0.047292888164520264, 0.33692291378974915, 0.8284245133399963, -0.8567700386047363, 0.33381882309913635, 0.05602168291807175, -0.7611067295074463, -0.5045881867408752, 0.12194456160068512, 0.6349400877952576, 0.9191422462463379, 0.3160504400730133, -0.4019716680049896, -0.571702241897583, -1.0445300340652466, -0.04856166988611221, -0.4050710201263428, -0.14372362196445465, 0.14577817916870117, 0.5119585394859314, 0.5074435472488403, 0.7324763536453247, -0.48954716324806213, -0.2572496831417084, -0.2257165014743805, 0.414535790681839, 0.6799178719520569, 0.1628461331129074, 0.7512953281402588, -0.6379212141036987, -1.1993030309677124, -0.14167897403240204, -0.7206182479858398, -0.5121024250984192, 0.449809193611145, -0.31250259280204773, 0.3424234986305237, 0.22323966026306152, -0.7999022603034973, 0.587236762046814, 0.03237813338637352, -0.7734044790267944, 0.6041538119316101, -0.2880186438560486, 0.2633805572986603, -0.5199384093284607, 0.6982454657554626, -0.32459893822669983, -0.08478967845439911, -0.7713587880134583, 0.1859743595123291, 0.5716978907585144, 0.0378914512693882, -0.9250516891479492, 0.7048702239990234, -0.764855146408081, -0.26059776544570923, -0.1817605048418045, 0.35915735363960266, -0.19429895281791687, 0.2560012638568878, 0.027472689747810364, 1.0581783056259155, 0.7530290484428406, -0.4511444568634033, 0.23139886558055878, 0.6100164651870728, -0.6048749685287476, 0.7869208455085754, -0.5755646228790283, -0.15307022631168365, -0.07558739185333252, -0.1621646285057068, -0.8150157928466797, -0.15636326372623444, 0.49744075536727905, -0.6048870086669922, 0.34958934783935547, -0.0666685700416565, -0.9245571494102478, -0.26005637645721436, -0.6421670913696289, 0.35472598671913147, 0.31084612011909485, -0.006097256205976009, 0.09372198581695557, 0.5087145566940308, -0.34082043170928955, -0.9904334545135498, -0.6053625345230103, 0.27367836236953735, 0.2739271819591522, -0.41975560784339905, 0.5484305620193481, -0.4533427953720093, -0.35265985131263733, 0.20848840475082397, 0.2527739405632019, -0.24465586245059967, -0.18116901814937592, 0.09364539384841919, 0.5842874646186829, -0.5897810459136963, 0.0882255882024765, -0.4654388427734375, -0.25883424282073975, -0.35992351174354553, 0.4191792905330658, 0.781059980392456, -0.277831494808197, -0.4180202782154083, -0.10266313701868057, 0.6425923109054565, 0.2809486389160156, 0.04850760102272034, 0.7371768355369568, 0.6300022602081299, -0.06081933155655861, 0.21595022082328796, -0.8471939563751221, 0.16610600054264069, -0.41048577427864075, 0.2121267467737198, -0.3897499442100525, -0.42642441391944885, 0.7160889506340027, 0.41806313395500183, -0.3263968825340271, 0.651769757270813, 0.5831049084663391, -0.14161019027233124, 0.8062824010848999, 0.7261016368865967, -0.1480208784341812, 0.6719048619270325, -0.07572107762098312, 0.20794624090194702, -0.834343671798706, -0.3903917372226715, -0.7193291783332825, -0.06885502487421036, -0.2896861433982849, -0.18789643049240112, 0.2024058997631073, 0.3455543518066406, -0.611261248588562, 0.49791988730430603, -0.06897196918725967, 0.5122243165969849, 0.7281540036201477, -0.013916405849158764, 0.24189937114715576, -0.15752217173576355, -0.4030667245388031, -0.04211004078388214, -0.7867240309715271, -0.05108775198459625, 0.7781146168708801, -0.17203426361083984, 0.4028796851634979, 0.23278580605983734, 0.6661338806152344, 0.0701289251446724, -0.08228354901075363, -0.6298511624336243, 0.8373920321464539, -0.37285542488098145, -1.0934605598449707, -0.30618807673454285, -0.17170840501785278, -1.07515287399292, 0.28959497809410095, -0.15990550816059113, -0.7766815423965454, 0.42559725046157837, -0.17306286096572876, -0.23551541566848755, 0.41706520318984985, -0.5051150918006897, 0.936567485332489, -0.23270879685878754, -0.5383319854736328, 0.05409928783774376, -0.862619161605835, -0.09453433007001877, -0.010679831728339195, 0.12986239790916443, -0.6836379766464233, -0.2630733251571655, 0.46655532717704773, -0.3319806158542633, 0.34843775629997253, -0.44855996966362, 0.44878527522087097, 0.18929226696491241, 0.27471280097961426, 0.17843034863471985, -0.546776533126831, -0.6913766860961914, 0.5339488983154297, 0.1685633659362793, -0.7958739995956421, -0.05377448350191116, 0.4972286522388458, -0.3781524896621704, -0.15899822115898132, -0.7469305396080017, -0.6084643006324768, -0.19521404802799225, 0.734582781791687, 0.5899240374565125, 0.5426797866821289, -0.6043097972869873, 0.6512378454208374, 0.47781088948249817, -0.2881298363208771, 0.7890859842300415, 1.4310829639434814, -0.14416195452213287, -0.11402568221092224, 0.44015806913375854, 0.3358345627784729, -0.1299424171447754, 0.6718477606773376, -0.14015989005565643, -0.17746499180793762, -0.5865683555603027, -0.518901526927948, 0.5381583571434021, -0.5590192079544067, -0.529675304889679, -0.48272475600242615, -0.3845949172973633, -0.3190881013870239, 0.07076706737279892, -0.406695157289505, -0.3773355484008789, -0.07228176295757294, 0.05530785769224167, 0.2528424561023712, 0.5149198174476624, -0.38211914896965027, 0.22139877080917358, -0.8764757513999939, 0.17888496816158295, -0.4663221538066864, 0.7435765862464905, -0.37639960646629333, -0.4782436788082123, -0.43012377619743347, -0.14858900010585785, -0.17744691669940948, -0.6855411529541016, 0.6946461796760559, 0.41638317704200745, 0.8534563779830933, 0.21626821160316467, 0.621543824672699, 0.4220747649669647, -0.7270183563232422, 0.9998593926429749, 0.2881767153739929, -0.6974793076515198, 0.7733833193778992, -0.44314971566200256, 0.7428019642829895, 1.0759751796722412, 0.3835383355617523, -0.2823564112186432, -0.4200628697872162, -0.552112340927124, -1.0746568441390991, 0.7048937082290649, 0.09207206219434738, 0.29201582074165344, -0.5295802354812622, 0.05326109379529953, 0.14606766402721405, -0.007445227354764938, -0.3306502103805542, -0.5804400444030762, 0.2750670909881592, -0.2379346340894699, 0.14769648015499115, -0.7183353304862976, 0.0617496483027935, -0.20415271818637848, 1.066581130027771, 0.2557412385940552, 0.44929608702659607, 0.3751843273639679, -0.2735052704811096, -0.4170990586280823, 0.4246818721294403, 0.7829911708831787, 0.6479330062866211, -0.7822266817092896, 0.00838436558842659, 0.029346777126193047, -0.5071855783462524, -0.11438901722431183, 0.06771542876958847, -0.3599763512611389, 0.4904923737049103, 0.2347312867641449, 0.5539408922195435, 0.43644604086875916, -0.836578905582428, 0.9339883923530579, 0.12120021134614944, -0.5139776468276978, -0.567562997341156, -0.07182278484106064, -0.3910772502422333, 0.2720368504524231, 0.7873164415359497, -0.44562044739723206, 0.3145585358142853, -0.6017507910728455, 0.6048274636268616, 0.4642743468284607, -0.6941534876823425, -0.3052814304828644, 0.40979671478271484, 0.029187036678195, -0.31282100081443787, 0.687812328338623, -0.3552987277507782, -0.25899529457092285, 0.04533746466040611, 0.63873291015625, 0.5357122421264648, -0.11703076213598251, 0.10005490481853485, 0.67665696144104, -0.0014316558372229338, -0.0031033314298838377, 0.8111158609390259, -0.06569665670394897, -0.8577653765678406, -0.32151782512664795, -0.5131654739379883, -0.4401431679725647, 0.041349392384290695, -0.6651696562767029, 0.33805572986602783, -0.1423490047454834, -0.27071744203567505, 0.050576288253068924, 0.127164825797081, -0.5600857138633728, -0.24869132041931152, 0.13209179043769836, 1.3084484338760376, -0.7550849318504333, 1.1506636142730713, 0.48121628165245056, -0.709007978439331, -0.26865798234939575, -0.13876618444919586, -0.0686798095703125, -0.7040117979049683, 0.9989794492721558, -0.2896133065223694, -0.35297977924346924, -0.4136110842227936, -0.3268290162086487, -0.8772586584091187, 0.7703776955604553, 0.6031513810157776, -0.7111546397209167, 0.4553818702697754, 0.058399368077516556, 0.6614370942115784, -0.028607163578271866, 0.07806765288114548, 0.23359771072864532, 0.5295506119728088, -0.013395214453339577, -0.9464188814163208, -0.3720526099205017, -0.8011102676391602, -0.2711337208747864, 0.6767753958702087, -0.5286343693733215, 1.0565444231033325, 0.03535181283950806, -0.47650837898254395, 0.26821109652519226, 0.4258219599723816, 0.027840549126267433, 0.47423306107521057, -0.03944260627031326, 0.67679363489151, 0.3803214132785797, -0.27054348587989807, 1.1575822830200195, -0.8035760521888733, 0.4120662808418274, 1.3851146697998047, -0.47035524249076843, 1.5182520151138306, 0.5448761582374573, -0.37300369143486023, 0.4816904067993164, 0.35724151134490967, -0.3718394935131073, 0.7685291767120361, -0.2849673926830292, -0.5223532915115356, -0.05924241617321968, -0.16659507155418396, -0.3963313698768616, 0.3205311596393585, 0.1227046400308609, -0.06260090321302414, -0.6537754535675049, -0.26412296295166016, -0.13322176039218903, -0.01558372750878334, -0.1346781700849533, 0.7040448784828186, -0.2886151969432831, -0.38166481256484985, 0.26360151171684265, -0.1474192887544632, 0.4996647834777832, -0.7560735940933228, -0.018450714647769928, -0.15326890349388123, 0.20156994462013245, -0.05757726728916168, -1.4116929769515991, 0.5785923600196838, 0.004566198214888573, -0.3364385962486267, -0.10779824107885361, 0.9653422236442566, -0.53359454870224, -0.7180606126785278, 0.6285530924797058, 0.6250869035720825, 0.5588090419769287, -0.03588586300611496, -0.7380463480949402, -0.0929112434387207, -0.19125787913799286, -0.12027885764837265, 0.45588117837905884, 0.49140021204948425, 0.1460874378681183, 0.5451662540435791, 0.4244046211242676, 0.48206761479377747, 0.2237243950366974, 0.08432464301586151, 0.46949201822280884, -0.9070137739181519, -0.07734175771474838, -0.7142583727836609, 0.534201979637146, -0.395190954208374, -0.3247488737106323, 0.9732106328010559, 1.2511751651763916, 1.3640310764312744, -0.45475679636001587, 0.6583487391471863, -0.45453497767448425, 0.836624264717102, -0.08912226557731628, 0.8222121000289917, -0.3658754527568817, -0.28598907589912415, -0.10310014337301254, -1.0594327449798584, -0.9359220266342163, 0.6487945318222046, -0.24782045185565948, -0.4487411379814148, 0.6597070693969727, 0.7597859501838684, -0.06468425691127777, -0.6491310596466064, 0.9656654596328735, 0.23569408059120178, -0.4453065097332001, 0.15415237843990326, 0.5310781002044678, -0.7313196063041687, 0.6490094065666199, -0.7495781183242798, 0.025470806285738945, -0.493843674659729, -1.017397403717041, -0.4774644076824188, -0.5833478569984436, -0.38170722126960754, -0.055789265781641006, 0.25020846724510193, 0.7627987265586853, 0.4433864653110504, -1.1762961149215698, -0.5128463506698608, 0.25057968497276306, -0.19123758375644684, 0.09400349855422974, -0.16683508455753326, 0.3210112750530243, -0.3672431409358978, -0.38540196418762207, 0.43843981623649597, 0.6939568519592285, -0.21473336219787598, 0.3441845774650574, 0.02529490552842617, -0.7427798509597778, -0.04564814269542694, 0.5520862340927124, 0.5359182357788086, -0.6531512141227722, -0.34855151176452637, 0.09916629642248154, -0.3862306475639343, 0.5698142647743225, 0.68138587474823, -0.4090226888656616, 0.5180551409721375, 0.9505307674407959, 0.15718591213226318, 0.7813472747802734, -0.126658633351326, 0.3016745448112488, -0.9202417135238647, 0.28448668122291565, 0.13885802030563354, 0.5203258395195007, 0.4764876961708069, -0.18784737586975098, 0.8352083563804626, 0.3558690547943115, -0.36270517110824585, -0.8923408389091492, -0.16409707069396973, -1.5383039712905884, -0.2681829035282135, 0.798903226852417, -0.2693040668964386, -0.2544170022010803, -0.3317738473415375, -0.26103895902633667, 0.3985613286495209, -0.6687983274459839, 0.6356342434883118, 0.8452492356300354, -0.2087864875793457, -0.4027262032032013, -0.8996222019195557, -0.07285618036985397, 0.027022240683436394, -0.40286684036254883, 0.04644335061311722, 0.3884253203868866, 0.6680359244346619, 0.19216182827949524, 0.8207347989082336, -0.4968582093715668, 0.2551904022693634, 0.37496256828308105, 0.5719168782234192, -0.11956731230020523, -0.16679693758487701, -0.13525716960430145, 0.3518523573875427, 0.13213816285133362, -0.0940086841583252 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
glaiveai/glaive-code-assistant
glaiveai
2023-09-27T22:51:02Z
214
47
null
[ "size_categories:100K<n<1M", "license:apache-2.0", "region:us" ]
2023-09-27T22:51:02Z
2023-09-21T18:56:47.000Z
2023-09-21T18:56:47
--- license: apache-2.0 size_categories: - 100K<n<1M --- # Glaive-code-assistant Glaive-code-assistant is a dataset of ~140k code problems and solutions generated using Glaive’s synthetic data generation platform. The data is intended to be used to make models act as code assistants, and so the data is structured in a QA format where the questions are worded similar to how real users will ask code related questions. The data has ~60% python samples. To report any problems or suggestions in the data, join the [Glaive discord](https://discord.gg/fjQ4uf3yWD)
[ -0.13099230825901031, -0.7852309346199036, 0.3479258120059967, 0.2493344247341156, -0.027358561754226685, 0.14224092662334442, 0.47615814208984375, -0.36370494961738586, 0.3494763970375061, 0.5900382995605469, -0.7272789478302002, -0.6207301616668701, -0.19716788828372955, -0.07611171156167984, -0.6421430110931396, 0.9252195358276367, 0.23405112326145172, -0.06049496307969093, -0.22647005319595337, -0.06561954319477081, -0.8303399682044983, -0.6181328892707825, -0.5441586971282959, 0.10775462538003922, 0.14749683439731598, 0.6379421353340149, 0.8689924478530884, 0.4468037486076355, 0.5385515689849854, 0.270367294549942, 0.4815346300601959, 0.1671668440103531, -0.40412700176239014, 0.03341023996472359, -0.06124573200941086, -0.5588079690933228, -0.5123246312141418, -0.011160856112837791, 0.07953125238418579, 0.3284383714199066, -0.2101161777973175, 0.7383666038513184, -0.10004550963640213, 0.7891710996627808, -0.6784858703613281, 0.3396606147289276, -0.32796770334243774, -0.1580081731081009, 0.03300642967224121, -0.0808238685131073, -0.2322232723236084, -0.7151656150817871, -0.1767663061618805, -0.9895482063293457, 0.2975992262363434, -0.13636410236358643, 0.7670770287513733, 0.3978891372680664, -0.2654224634170532, -0.6581708788871765, -0.6080307364463806, 0.6651866436004639, -0.23396873474121094, 0.19184386730194092, 0.3747490644454956, 0.4822094142436981, -0.3229019343852997, -0.6688774228096008, -0.5316044092178345, -0.1579267829656601, -0.10946162790060043, 0.06730732321739197, -0.5700183510780334, -0.02588057518005371, 0.3592064678668976, 0.4351460337638855, -0.9747454524040222, -0.43373581767082214, -0.5752286911010742, -0.2385254204273224, 0.7795003056526184, 0.26777422428131104, 0.6588132977485657, 0.004798426758497953, 0.08720444142818451, -0.027738183736801147, -0.571894109249115, 0.04212035611271858, 0.48046499490737915, -0.27593278884887695, -0.21155603229999542, 0.7123017311096191, -0.366220086812973, 1.0912755727767944, 0.04513325169682503, 0.002894036704674363, 0.4651283621788025, -0.6640201807022095, -0.41583651304244995, -0.03256172686815262, 0.739476203918457, 0.40842103958129883, 0.36536160111427307, -0.07060419768095016, -0.02170548029243946, 0.49336937069892883, 0.37674251198768616, -0.6716098189353943, -0.7502177953720093, 0.6480090022087097, -0.47544223070144653, -0.3473460376262665, 0.24986380338668823, -0.6897913813591003, -0.4568614661693573, -0.3144504129886627, 0.46582263708114624, -0.2256709486246109, -0.20457841455936432, 0.3676168620586395, -0.38031601905822754, 0.05980505049228668, 0.47549012303352356, -0.5350923538208008, 0.19960612058639526, 0.355511337518692, 0.7248132228851318, 0.35277920961380005, 0.06048167869448662, -0.6588699817657471, 0.05513032153248787, -0.3620176613330841, 0.6927266120910645, -0.4955742657184601, -0.8678126335144043, -0.08350712060928345, 0.26235097646713257, -0.020235061645507812, -0.6577959656715393, 0.21408933401107788, -0.40034812688827515, 0.18714609742164612, -0.10292193293571472, -0.39951127767562866, -0.11112595349550247, -0.020094502717256546, -1.046205997467041, 1.053273320198059, 0.2712908983230591, -0.562523603439331, 0.40731868147850037, -0.7072957158088684, 0.06073295697569847, 0.2894994616508484, -0.2685324251651764, -0.1910424828529358, 0.06929713487625122, 0.319415807723999, 0.3384057581424713, -0.1840057671070099, 0.3444618284702301, 0.019877709448337555, -0.5989325642585754, 0.5011208057403564, -0.06358321756124496, 0.856280505657196, 0.494171142578125, 0.007042497396469116, 0.11048424988985062, -1.073150634765625, 0.12776140868663788, -0.01379436906427145, -0.425609827041626, -0.2720029056072235, -0.1595584750175476, 0.025819359347224236, 0.1081133633852005, 0.3523807227611542, -0.3806665539741516, 0.8233726024627686, -0.10281629860401154, 0.23380935192108154, 0.4673868715763092, 0.303935170173645, 0.3009603023529053, -0.5682244896888733, 0.7789158821105957, -0.2364163100719452, 0.509954571723938, 0.03851249814033508, -0.9457611441612244, -0.636875569820404, -0.13925771415233612, 0.08439002186059952, 0.9003286361694336, -0.9160581827163696, 0.26979535818099976, 0.18149881064891815, -0.5955001711845398, -1.0399744510650635, 0.4254978895187378, 0.3496483564376831, 0.23327799141407013, 0.54818195104599, 0.08690763264894485, -0.6418135166168213, -0.9879306554794312, 0.10523785650730133, -0.38603273034095764, -0.2472831904888153, 0.06860616058111191, 0.6640965938568115, -0.6249375343322754, 0.9258639216423035, -0.707107663154602, -0.40635600686073303, -0.12019556015729904, 0.005462981760501862, 0.5394870638847351, 0.6185064315795898, 0.47495368123054504, -0.9017137885093689, -0.41201427578926086, -0.17537665367126465, -0.8695534467697144, -0.2199685275554657, -0.25006091594696045, -0.2835572361946106, 0.1793261468410492, 0.7609540820121765, -0.475067138671875, 0.4196009337902069, 0.9773740172386169, -0.44135427474975586, 0.691256582736969, -0.304926335811615, 0.41372793912887573, -1.5414034128189087, 0.4906494915485382, -0.02236844226717949, 0.09852579236030579, -0.6012756824493408, 0.37857651710510254, 0.03221258148550987, -0.23192113637924194, -0.4956096410751343, 0.3957761824131012, -0.4098357558250427, 0.25909456610679626, -0.005884970538318157, -0.2505840063095093, -0.030416350811719894, 0.23781074583530426, -0.11652301996946335, 1.2414079904556274, 0.46076613664627075, -0.43819567561149597, 0.8171846866607666, 0.3558763265609741, -0.11901246011257172, 0.30610719323158264, -1.146334171295166, 0.3846023678779602, 0.08140196651220322, 0.005148637108504772, -1.1307753324508667, -0.6616122722625732, 0.44277602434158325, -0.5953430533409119, -0.23805832862854004, -0.45058226585388184, -0.5722072124481201, -0.4021454155445099, -0.38819530606269836, 0.7006902098655701, 0.7234559059143066, -0.36798223853111267, 0.2660033404827118, 0.7046034336090088, 0.020085247233510017, -0.587074875831604, -0.5346930623054504, 0.07587771117687225, -0.1933455914258957, -0.7061629295349121, 0.07624903321266174, -0.24197523295879364, -0.4729927182197571, 0.1157694160938263, 0.3382303714752197, -0.1312166452407837, -0.1149931475520134, 0.6887614727020264, 0.37044450640678406, 0.09856750816106796, 0.4156177341938019, -0.24287836253643036, -0.15734340250492096, 0.13596460223197937, -0.08607227355241776, 0.7100661396980286, -0.1915183663368225, -0.28228652477264404, -0.5695226192474365, 0.3495703339576721, 0.3328317105770111, 0.1295129507780075, 0.48507818579673767, 0.38761210441589355, -0.41532662510871887, -0.23254388570785522, -0.29476484656333923, 0.17842058837413788, -0.557640790939331, 0.1531943380832672, -0.41060343384742737, -0.6478625535964966, 0.6831534504890442, 0.30321022868156433, -0.11118905991315842, 0.5760535001754761, 0.5123893022537231, 0.17194898426532745, 1.0979148149490356, 0.8075924515724182, -0.5472903847694397, 0.09594106674194336, -0.5843505859375, -0.13874657452106476, -0.348686546087265, -0.4670567810535431, -0.8632769584655762, -0.031541917473077774, -0.6271017789840698, -0.5848084092140198, 0.27089986205101013, 0.17101214826107025, -0.015663200989365578, 0.6361678838729858, -0.9667207598686218, 0.4146578907966614, 0.692644476890564, 0.0359736867249012, 0.45823511481285095, -0.24479155242443085, 0.5855493545532227, 0.17311787605285645, -0.5701811909675598, -0.4311569929122925, 1.2812992334365845, 0.13625876605510712, 1.1886318922042847, 0.1070004254579544, 0.780249297618866, 0.6426413655281067, -0.0499490424990654, -0.6973749995231628, 0.6005774736404419, 0.10337100923061371, -0.6224854588508606, 0.049163736402988434, -0.40571922063827515, -1.0083132982254028, -0.4838215112686157, -0.09245743602514267, -0.9003849625587463, 0.2895360589027405, 0.49657416343688965, -0.28580597043037415, -0.23564939200878143, -0.9986293911933899, 1.0413901805877686, 0.15606485307216644, 0.004608624614775181, -0.14675754308700562, -0.34429529309272766, 0.3900708258152008, -0.08180475980043411, 0.2856117784976959, 0.25282421708106995, 0.109047532081604, 0.968632698059082, -0.34445714950561523, 0.7076565623283386, -0.2066766917705536, -0.15143273770809174, 0.644252359867096, 0.28316405415534973, 0.2656092643737793, 0.5492690205574036, 0.21472273766994476, -0.12544451653957367, 0.12749414145946503, -0.5169584155082703, -0.23773735761642456, 0.6396556496620178, -0.9506050944328308, -0.19694291055202484, -0.6330709457397461, -0.7812806367874146, -0.14796575903892517, -0.0508154034614563, 0.30297330021858215, 0.5863240957260132, -0.267373651266098, 0.15499603748321533, 0.5665502548217773, -0.5396669507026672, 0.11655834317207336, 0.3722173869609833, -0.39901942014694214, -0.3267146646976471, 1.2967915534973145, 0.1378825455904007, 0.15065279603004456, 0.20296090841293335, -0.3508569300174713, -0.17513687908649445, -0.30248594284057617, -0.5432572960853577, 0.15362367033958435, -0.5197713375091553, -0.2879257798194885, -0.5650883316993713, -0.20464134216308594, -0.19618593156337738, -0.32867658138275146, 0.06711581349372864, -0.5310000777244568, -0.38988521695137024, 0.0003171888238284737, 0.46984249353408813, 1.0253928899765015, -0.017024671658873558, 0.3348888158798218, -1.0546283721923828, 0.664877712726593, 0.42216920852661133, -0.011015848256647587, -0.7045419216156006, -0.02102893590927124, -0.3507755398750305, 0.19972564280033112, -0.17639382183551788, -0.8924382925033569, 0.3941575288772583, 0.1724027395248413, 0.5436841249465942, 0.04116320610046387, -0.20289276540279388, 0.5519628524780273, 0.07808243483304977, 1.1189833879470825, -0.00723863672465086, -0.936805248260498, 0.829410195350647, -0.40114957094192505, 0.3741008937358856, 0.5402242541313171, 0.39441773295402527, -0.454181969165802, -0.5590664148330688, -0.8163570165634155, -0.6693356037139893, 0.38830995559692383, 0.21361295878887177, 0.024152185767889023, 0.3058944344520569, 0.3409872055053711, 0.06610935181379318, 0.3331577777862549, -0.2804209887981415, -0.07353968918323517, -0.10407188534736633, -0.20391705632209778, -0.12944169342517853, -0.07914615422487259, -0.2514217793941498, -0.1508646309375763, 0.6011842489242554, -0.39336085319519043, 0.509423553943634, -0.02207961305975914, -0.26825690269470215, -0.016725659370422363, 0.12478568404912949, 0.42273011803627014, 0.8033515214920044, -0.49567851424217224, -0.20128554105758667, -0.038164712488651276, -0.9685118198394775, 0.14835573732852936, 0.1450941562652588, -0.0026263089384883642, -0.06472861021757126, 0.3565579354763031, 0.08265011012554169, -0.5669711232185364, -0.8332090377807617, 0.31153935194015503, -0.36872172355651855, -0.346781849861145, -0.261566698551178, 0.5657718777656555, 0.024403376504778862, 0.1117878407239914, 0.6240682601928711, 0.07765404134988785, 0.5437125563621521, -0.5828912854194641, 0.5005708336830139, 0.18738912045955658, -0.24770522117614746, -0.3281994163990021, 0.7071501612663269, 0.09962746500968933, -0.14264322817325592, 0.7732189297676086, -0.2495761662721634, -0.2102070301771164, 0.9938273429870605, 0.27545487880706787, 0.7044273614883423, -0.09556347876787186, 0.7739074230194092, 0.23402069509029388, 0.20684577524662018, 0.12118339538574219, 0.904822051525116, 0.21154282987117767, -0.4591210186481476, -0.5719957947731018, -0.5259377360343933, -0.6044541001319885, 0.24951055645942688, -0.6943143010139465, 0.2929737865924835, -0.3700379431247711, -0.055704910308122635, 0.06321873515844345, 0.2264668494462967, -0.6558985710144043, 0.29316815733909607, -0.3105572760105133, 1.2294020652770996, -0.902165412902832, 0.95606529712677, 0.8231081962585449, -0.5557588934898376, -0.8614669442176819, -0.13196086883544922, -0.05170825496315956, -1.0623074769973755, 0.5262371301651001, 0.09124598652124405, 0.17121590673923492, -0.017565958201885223, -0.8807892203330994, -0.559160590171814, 0.9598356485366821, 0.4256160259246826, -0.3777470588684082, -0.02450975775718689, 0.27162060141563416, 0.6036468148231506, -0.147881418466568, -0.01704222522675991, 0.6307465434074402, 0.3558621406555176, -0.21152958273887634, -0.979831337928772, -0.028324345126748085, -0.8887270092964172, -0.15232113003730774, 0.09787654876708984, -0.3987313508987427, 0.883591890335083, -0.14508478343486786, -0.01228320226073265, 0.25092458724975586, 0.17629967629909515, 0.3310270607471466, 0.20213812589645386, 0.21493102610111237, 0.5292850732803345, 0.531092643737793, -0.3345705568790436, 0.9712538123130798, -0.4447936415672302, 0.339546799659729, 0.6259421706199646, 0.04330364987254143, 0.24640490114688873, 0.5563101768493652, -0.16940107941627502, 0.44372043013572693, 0.4851556122303009, -0.09936352074146271, 0.4190032184123993, 0.21693271398544312, -0.02626308798789978, -0.1490095853805542, -0.25686609745025635, -0.7038403153419495, 0.1869337558746338, 0.5033650994300842, -0.02439163066446781, -0.08049102127552032, -0.03494062274694443, -0.03692053630948067, -0.1678110510110855, -0.3512781858444214, 0.926214337348938, -0.06837138533592224, -0.47307589650154114, 0.5831430554389954, -0.2379509061574936, 0.22818483412265778, -0.6189741492271423, -0.6540365219116211, -0.2217167317867279, 0.4255608916282654, -0.4808932840824127, -1.0441906452178955, 0.24167919158935547, -0.18542999029159546, -0.12480562180280685, 0.19205056130886078, 0.8438116908073425, -0.2851419746875763, -0.5242000222206116, 0.04103740304708481, 0.6173632740974426, 0.0855686292052269, -0.10873842984437943, -0.8386384844779968, 0.2180933803319931, 0.016950830817222595, -0.06474268436431885, 0.1990119218826294, 0.26908496022224426, -0.08675147593021393, 0.8516273498535156, 0.689498782157898, 0.04259214922785759, 0.022907156497240067, -0.11772480607032776, 1.1695915460586548, -0.447184294462204, -0.6594375371932983, -0.4842911958694458, 0.8526021838188171, -0.11215586215257645, -0.6814146637916565, 0.8728459477424622, 0.7079113721847534, 0.8188469409942627, -0.4406721591949463, 1.0877090692520142, -0.30328837037086487, 0.28879135847091675, -0.5647977590560913, 0.3704804480075836, -0.41515693068504333, 0.10329878330230713, -0.5304978489875793, -0.8414594531059265, -0.3000148832798004, 0.5497736930847168, 0.007169993594288826, -0.2552459239959717, 0.17489786446094513, 1.146650791168213, -0.015698855742812157, 0.011243686079978943, 0.10305336862802505, -0.20397953689098358, 0.6744881272315979, 0.8727540373802185, 0.9720366597175598, -0.7877928018569946, 0.5429081916809082, -0.23023080825805664, -0.3729018568992615, -0.30690285563468933, -0.4175906181335449, -0.9485499262809753, -0.6623918414115906, -0.24882091581821442, -0.7598498463630676, 0.3131793737411499, 0.8461753129959106, 0.5879238247871399, -1.0474560260772705, -0.4329880177974701, -0.25706276297569275, -0.06127879023551941, -0.1387062668800354, -0.2625737190246582, 0.4518234431743622, -0.20330312848091125, -0.6500581502914429, 0.44377222657203674, -0.22490891814231873, 0.015015405602753162, -0.21207034587860107, -0.22326698899269104, 0.05664939805865288, 0.040965355932712555, 0.2734907865524292, 0.3405451774597168, 0.19943732023239136, -0.4553772807121277, 0.4470236301422119, -0.1783457249403, -0.470987468957901, 0.7031391859054565, -0.9016412496566772, 0.5325341820716858, 0.6017951965332031, 0.3547762930393219, -0.006633387878537178, 0.3221747577190399, 0.6510583162307739, -0.8134284019470215, 0.31140637397766113, -0.012442249804735184, 0.2603777050971985, -0.10341892391443253, -0.5971423983573914, 0.7935822010040283, 0.25662943720817566, -0.9996597766876221, -0.7742578983306885, 0.006352103315293789, -1.2173045873641968, -0.21033750474452972, 1.2636957168579102, 0.20147491991519928, -0.06079540774226189, -0.30669623613357544, -0.8698566555976868, -0.038904860615730286, -0.8140421509742737, 0.6844562292098999, 0.31924253702163696, -0.24754223227500916, 0.1690613180398941, -0.8311716914176941, 0.888444185256958, -0.21299125254154205, -1.1067043542861938, -0.21106109023094177, 0.8413857221603394, 0.13687007129192352, 0.5046706795692444, 0.8879480957984924, 0.05821796879172325, 0.808224081993103, 0.285580039024353, 0.024062009528279305, -0.17971919476985931, -0.6770108342170715, -0.22998203337192535, 0.3161390721797943, -0.013822093605995178, -0.5751888155937195 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
dinhbinh161/vi_text_news
dinhbinh161
2023-11-09T15:18:11Z
214
0
null
[ "region:us" ]
2023-11-09T15:18:11Z
2023-11-09T07:27:58.000Z
2023-11-09T07:27:58
--- dataset_info: features: - name: text dtype: string splits: - name: train num_bytes: 145710391 num_examples: 1020122 download_size: 79305270 dataset_size: 145710391 configs: - config_name: default data_files: - split: train path: data/train-* --- # Dataset Card for "vi_text_news" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.37009406089782715, -0.5276235342025757, 0.3126092255115509, 0.3374806046485901, -0.41922929883003235, -0.08303610235452652, -0.04276212677359581, -0.18845373392105103, 0.9213861227035522, 0.4734242260456085, -0.7258502244949341, -0.9429168701171875, -0.5763392448425293, -0.2815844714641571, -0.5824891328811646, 1.4211840629577637, 0.07429841160774231, 0.15456274151802063, -0.4550400674343109, -0.1306990683078766, -0.48624640703201294, -0.41892489790916443, -0.5008671283721924, -0.3594908118247986, 0.9821161031723022, 0.784997284412384, 0.40105459094047546, 0.5215054750442505, 1.0116201639175415, 0.16086825728416443, 0.011611917056143284, -0.14228788018226624, -0.488908052444458, -0.06501757353544235, -0.20322273671627045, -0.5828838348388672, -0.9984264373779297, -0.017272870987653732, 0.8902060985565186, 0.21816235780715942, -0.06347043812274933, 0.6902381777763367, -0.20713385939598083, 0.972463071346283, -0.2867175042629242, 0.40014562010765076, -0.3585342764854431, -0.03435191139578819, -0.6837303042411804, -0.22411571443080902, 0.039688147604465485, -0.6763400435447693, -0.02884327992796898, -0.971556544303894, 0.09186482429504395, -0.19621163606643677, 1.039136290550232, 0.06684998422861099, 0.016322778537869453, -0.04783898964524269, -0.4904240071773529, 0.16416138410568237, -0.14872761070728302, 0.24209080636501312, 0.4452786147594452, 0.33015748858451843, 0.10112354904413223, -0.7530304193496704, -0.40601983666419983, 0.3233899474143982, -0.03395502641797066, 0.31702521443367004, -0.08965805172920227, -0.08068029582500458, 0.39608871936798096, 0.7180830240249634, -0.5129878520965576, -0.4196701645851135, -0.8063768148422241, -0.29433220624923706, 0.769374668598175, 0.14772328734397888, 0.4684027433395386, -0.2003835290670395, -0.20539315044879913, -0.14233171939849854, -0.5064659714698792, -0.13837820291519165, 0.38921841979026794, 0.32626909017562866, -1.1693940162658691, 0.7413787841796875, -0.06777016073465347, 0.5823495388031006, -0.09035082906484604, 0.4907078444957733, 0.8511041402816772, -0.4616831839084625, -0.18905457854270935, -0.010143470019102097, 0.6077315807342529, 0.6290086507797241, 0.43529072403907776, 0.1439552903175354, 0.06359092146158218, 0.15110796689987183, 0.15617704391479492, -1.0808629989624023, -0.6132567524909973, 0.132927805185318, -0.7971848249435425, -0.3271218538284302, 0.33165016770362854, -1.2270750999450684, -0.4717975854873657, -0.37269777059555054, 0.2609071433544159, 0.10204873234033585, -0.7812228202819824, -0.040885113179683685, -0.9597823619842529, 0.2956802546977997, 0.3223722279071808, -0.8403395414352417, 0.15311191976070404, 0.5623377561569214, 0.7337823510169983, 0.1359877586364746, -0.07935737818479538, -0.7961944341659546, -0.00481300288811326, -0.04786555841565132, 1.039720058441162, -0.6768776774406433, -0.45863768458366394, 0.15195302665233612, 0.289648175239563, 0.034125056117773056, -0.045562829822301865, 0.9260370135307312, -0.23910605907440186, 0.02105426788330078, -0.7994402647018433, -0.4812241792678833, 0.017401985824108124, 0.320138543844223, -1.0231012105941772, 1.0188616514205933, 0.33972063660621643, -1.015165090560913, 0.4970738887786865, -1.0056370496749878, -0.520410418510437, 0.4425777494907379, -0.16944952309131622, -0.6222108006477356, 0.36878055334091187, 0.001767669920809567, 0.5513738989830017, -0.047912683337926865, 0.36478638648986816, -0.6778140068054199, -0.16919682919979095, 0.13628393411636353, -0.05097603797912598, 0.7231689095497131, 0.16806501150131226, 0.3874845802783966, 0.12044981122016907, -1.0329899787902832, -0.34174785017967224, 0.13008257746696472, -0.27010345458984375, -0.542417049407959, -0.2290898859500885, 0.5298361778259277, -0.2364085614681244, 0.3463629484176636, -0.5066307783126831, 0.6326373815536499, 0.0737617164850235, 0.024040741845965385, 0.586831271648407, 0.12677377462387085, 0.4600875675678253, -0.4134967625141144, 0.40526631474494934, -0.01474040187895298, 0.33464327454566956, -0.1570868194103241, -0.5803669095039368, -0.7447470426559448, 0.06545233726501465, 0.7259101271629333, 0.738470196723938, -0.8427214622497559, 0.33121246099472046, -0.12385322898626328, -0.7522944808006287, -0.370344877243042, -0.007230319548398256, 0.2373799979686737, 0.18765193223953247, 0.3261248767375946, -0.3981999456882477, -0.7996139526367188, -0.7196944355964661, -0.1647411733865738, -0.31600746512413025, 0.3446182906627655, 0.24725453555583954, 0.7457519769668579, -0.44280102849006653, 0.8292145133018494, -0.6580473184585571, -0.35881009697914124, -0.0040931664407253265, 0.04285839572548866, 0.30126821994781494, 0.6703263521194458, 0.9782387018203735, -1.0823533535003662, -0.26628389954566956, -0.3159556984901428, -0.5103179216384888, -0.12960921227931976, 0.09199712425470352, -0.527737021446228, -0.18718500435352325, 0.21787403523921967, -0.4371466338634491, 0.8251696228981018, 1.02900230884552, -0.7595685124397278, 0.13118880987167358, 0.07476715743541718, 0.23709441721439362, -1.488935947418213, 0.16388383507728577, 0.3440536856651306, -0.43757641315460205, -0.48947659134864807, -0.2378486841917038, 0.1101948693394661, -0.12875816226005554, -0.10146082937717438, 0.7878430485725403, -0.4542335867881775, -0.0724111869931221, -0.10158511251211166, 0.07897494733333588, -0.017920397222042084, 0.07793314009904861, 0.3432953953742981, 0.6394757628440857, 0.970956027507782, -0.5767704248428345, 0.8899434208869934, 0.556090235710144, -0.010079174302518368, 0.8113424181938171, -0.7937675714492798, -0.1794322431087494, -0.3756379783153534, 0.15358470380306244, -0.7174822092056274, -0.6253429651260376, 0.6006271839141846, -0.7010725736618042, 0.30358776450157166, -0.4569413661956787, -0.5323429703712463, -0.6204857230186462, -0.43778225779533386, 0.5494384169578552, 0.5714225769042969, -0.5630190968513489, 0.32608696818351746, 0.912804126739502, -0.16255946457386017, -0.10302325338125229, -1.1985864639282227, 0.13031941652297974, -0.2034182995557785, -0.12386888265609741, 0.48658573627471924, -0.4716281294822693, -0.031198617070913315, -0.08143462985754013, 0.39485669136047363, -0.24351689219474792, -0.2569357454776764, 0.2568909823894501, 0.1910996288061142, -0.2332509458065033, 0.6683720946311951, 0.11870696395635605, -0.5963482856750488, 0.10520965605974197, -0.0035645461175590754, 0.22310440242290497, -0.16321761906147003, 0.00009748051525093615, -0.5853679776191711, 0.38652265071868896, 0.20845115184783936, -0.29290440678596497, 0.5016133189201355, 1.0631037950515747, -0.6827834844589233, 0.025114411488175392, -0.4006795585155487, -0.04900939762592316, -0.41956543922424316, 0.0894467905163765, -0.07782228291034698, -0.671471893787384, 0.39061033725738525, -0.021741455420851707, 0.10041209310293198, 0.8947981595993042, 0.7739197611808777, 0.11098451167345047, 0.5172381401062012, 0.8853587508201599, -0.5048502683639526, 0.7057586908340454, -0.12511257827281952, -0.4675730764865875, -0.5061002969741821, -0.2595348358154297, -0.6431698203086853, -0.3341716229915619, -0.820783793926239, -0.47630575299263, -0.004388653673231602, -0.12927788496017456, 0.11702781170606613, 0.5826171636581421, -0.8702396154403687, 0.2740270793437958, 0.7028957605361938, 0.17885178327560425, 0.23459835350513458, 0.08726043254137039, 0.5108429193496704, 0.18245509266853333, -0.6112364530563354, -0.19014406204223633, 1.0813547372817993, 0.5907232165336609, 1.0896720886230469, 0.013237837702035904, 0.7924274802207947, 0.3534817099571228, 0.3543829619884491, -0.3203924000263214, 0.3207947909832001, -0.1894446760416031, -0.6029676795005798, -0.13032564520835876, -0.29021286964416504, -0.7586535215377808, -0.4261716604232788, -0.522955060005188, -0.4169542193412781, 0.5407490730285645, 0.3956345319747925, -0.08017225563526154, 0.3181910216808319, -0.6640567183494568, 0.8825333118438721, 0.05726657435297966, 0.004166543483734131, -0.16034947335720062, -0.4979303479194641, 0.11993997544050217, 0.31480783224105835, 0.17934368550777435, -0.3121601343154907, -0.03720322623848915, 1.0198252201080322, -0.2540930211544037, 1.1177946329116821, -0.4700385630130768, -0.09751366823911667, 0.2433072030544281, -0.6873382329940796, 0.2697398364543915, 0.8461935520172119, -0.09524194896221161, 0.021121487021446228, -0.08283133804798126, -0.3448561728000641, -0.08509404957294464, 0.7167642712593079, -0.6282805800437927, 0.19936341047286987, -0.49168720841407776, -0.3895527720451355, 0.08005829155445099, 0.31263571977615356, 0.4677165746688843, 0.9017379283905029, -0.6016272306442261, 0.1922772079706192, 1.0743257999420166, 0.13895004987716675, 0.41220515966415405, 0.20868584513664246, -0.444004625082016, -0.5440144538879395, 1.1563856601715088, 0.1187867671251297, -0.45711958408355713, 0.7222726941108704, 0.26975497603416443, -0.06029987335205078, -0.46826231479644775, -0.7081744074821472, 0.11155056208372116, -0.303416907787323, -0.6412138938903809, -0.5131842494010925, -0.40904325246810913, -0.3914663791656494, 0.00015417991380672902, -0.3860819935798645, -0.5621420741081238, -0.8956953287124634, -0.5147730708122253, 1.2379286289215088, 0.6787188649177551, -0.44287312030792236, 0.5280287861824036, -1.1319570541381836, 0.8057927489280701, 0.10631728172302246, 0.9789453148841858, -0.6717742681503296, -0.19797559082508087, -0.5255732536315918, 0.14374397695064545, 0.014912137761712074, -0.7974543571472168, -0.07134222239255905, 0.16003690659999847, 0.49982205033302307, 0.20565824210643768, 0.029711171984672546, 0.589126467704773, -0.22279395163059235, 0.654819905757904, 0.3346293270587921, -0.7454451322555542, 0.8299785852432251, -0.6093184351921082, 0.46981412172317505, 0.8695119619369507, 0.1933983564376831, -0.47416189312934875, -0.21206477284431458, -0.8540350198745728, -0.46242186427116394, 0.39589715003967285, 0.22329945862293243, 0.43619102239608765, 0.11020057648420334, 0.6512824296951294, 0.06541866064071655, 0.34067124128341675, -1.0511010885238647, -0.845594584941864, -0.03391345962882042, -0.4867027699947357, 0.21536864340305328, -0.6303007006645203, -0.11773663014173508, -0.6972948312759399, 0.6658250093460083, -0.08924618363380432, 0.6532914042472839, 0.26971718668937683, 0.1559295356273651, -0.1422249972820282, -0.0014601359143853188, 0.5436312556266785, 0.6762157678604126, -0.14956717193126678, -0.27567821741104126, -0.12659528851509094, -0.6384746432304382, -0.46247562766075134, 0.5944188237190247, -0.1757323145866394, 0.26826027035713196, 0.5153228640556335, 0.9769443273544312, -0.29201963543891907, -0.1847272664308548, 0.6760402917861938, -0.4980698823928833, -0.58260577917099, -0.5698333978652954, 0.24469834566116333, 0.1471419483423233, 0.2840088903903961, 0.05241495743393898, -0.030094554647803307, 0.41205230355262756, -0.48858901858329773, 0.4566534459590912, 0.044194966554641724, -0.9180001616477966, -0.5423220992088318, 0.5801723003387451, 0.7097054123878479, -0.2757178843021393, 0.6719405651092529, 0.02656584419310093, -0.4011223614215851, 0.6379202604293823, 0.14358124136924744, 0.7224959135055542, -0.2583887279033661, 0.6787660121917725, 0.4664147198200226, 0.3149375319480896, 0.04422175884246826, 0.986530065536499, -0.13983754813671112, -0.5349861979484558, -0.12129110097885132, -0.3678741455078125, -0.19609932601451874, -0.3803270161151886, -1.038756012916565, 0.5340453386306763, -0.41431981325149536, -0.42507854104042053, 0.044177938252687454, 0.16921471059322357, -0.7275010943412781, 0.38688328862190247, 0.2868850529193878, 1.5122175216674805, -0.921400785446167, 0.9085105061531067, 0.9189475178718567, -0.38675740361213684, -0.3987596035003662, -0.023259734734892845, 0.009885468520224094, -0.7210279703140259, -0.10945139825344086, 0.2005256712436676, 0.49735206365585327, -0.25401172041893005, -0.8234398365020752, -0.5964522361755371, 1.1335017681121826, 0.2917286455631256, -1.0069431066513062, 0.17713682353496552, -0.22302281856536865, 0.4644114673137665, -0.3148040473461151, 0.10781604051589966, 0.35956260561943054, 1.0446076393127441, -0.08730656653642654, -0.6870707273483276, -0.17093394696712494, -0.7267922163009644, -0.24674031138420105, 0.5267201066017151, -0.9605178236961365, 0.36577752232551575, -0.07927575707435608, -0.019816115498542786, 0.08090195804834366, 1.0398606061935425, -0.08061490952968597, 0.5941871404647827, 0.31886863708496094, 0.7079605460166931, 0.9965611100196838, -0.4002755582332611, 0.9560008645057678, 0.06553276628255844, 0.5126347541809082, 1.0459650754928589, 0.1252346932888031, 0.37764662504196167, 0.486858993768692, 0.06669622659683228, 0.5425627827644348, 0.5399234890937805, -0.5563568472862244, 0.5369611382484436, 0.36209210753440857, -0.12899677455425262, -0.20839349925518036, -0.22602364420890808, -0.9290986657142639, 0.13379555940628052, 0.5204883813858032, -0.6027306318283081, 0.055368538945913315, 0.10890685021877289, 0.15677067637443542, -0.049866482615470886, -0.6406735777854919, 0.9097546339035034, 0.10857963562011719, -0.1739359200000763, -0.2997684180736542, -0.07976680248975754, 0.4494191110134125, -0.6679408550262451, -0.39898681640625, 0.07410223037004471, 0.2213856726884842, -0.44068703055381775, -1.3059227466583252, 0.7924461364746094, -0.09864845871925354, -0.5833138227462769, -0.1550808846950531, 1.0414279699325562, -0.6957752108573914, -1.0066033601760864, 0.3395998179912567, 0.27188780903816223, -0.02438194677233696, 0.18713884055614471, -1.1359525918960571, 0.34131935238838196, -0.0679355040192604, -0.3625333905220032, 0.007091450970619917, 0.35678717494010925, 0.11909714341163635, 0.4610793888568878, 0.47697892785072327, 0.09719806909561157, -0.5206523537635803, 0.4464110732078552, 1.1411467790603638, -0.8218989968299866, -0.5901134610176086, -0.8411486148834229, 0.7941634654998779, -0.5267982482910156, -0.8443633317947388, 0.6464650630950928, 0.9449003338813782, 0.6868171691894531, 0.02608301118016243, 1.0185000896453857, -0.28896090388298035, 0.6590133309364319, -0.6412140727043152, 0.7564399838447571, -0.6380897164344788, -0.23294931650161743, -0.45734652876853943, -0.6210939884185791, -0.7556126713752747, 0.4468953609466553, 0.27857860922813416, -0.11616737395524979, 0.501314103603363, 0.6659448146820068, -0.1397625207901001, 0.3542827367782593, -0.1385612189769745, 0.1240236759185791, 0.06766532361507416, 0.2911657989025116, 0.4141668379306793, -0.597460925579071, 0.35024458169937134, -0.025220565497875214, -0.47821369767189026, -0.09769587218761444, -1.110852837562561, -1.2936639785766602, -0.8946642279624939, -0.6465306282043457, -0.4305802285671234, 0.15803158283233643, 0.6576253175735474, 0.907571017742157, -0.707984983921051, -0.14176152646541595, -0.16615375876426697, 0.5480369925498962, 0.12863478064537048, -0.16805921494960785, 0.5221127867698669, 0.253640741109848, -0.6624637842178345, -0.257286936044693, 0.09950316697359085, 0.23743242025375366, -0.020406123250722885, 0.185521200299263, -0.03868299350142479, -0.19253799319267273, 0.3913916349411011, 0.350184828042984, 0.051549624651670456, -0.2868310511112213, -0.4947267770767212, -0.06065797433257103, 0.19381704926490784, 1.1137720346450806, -0.6240847706794739, 0.14330412447452545, 0.9347283840179443, 0.5282784104347229, 0.6401885151863098, 0.004701356869190931, 0.8908295035362244, -0.7043396830558777, 0.1756267547607422, -0.2272992730140686, 0.4654610753059387, 0.1976390928030014, -0.703715980052948, 0.6907289624214172, 0.46280762553215027, -0.4768718183040619, -0.5521973371505737, 0.03857874870300293, -1.3561195135116577, 0.18021412193775177, 1.1383955478668213, 0.298166424036026, -0.6026076674461365, -0.018559256568551064, -0.4687420725822449, 0.22061458230018616, -1.0059758424758911, 0.051741037517786026, 0.5916890501976013, 0.42588308453559875, -0.40278977155685425, -0.42073655128479004, 0.7164252996444702, -0.4886741042137146, -1.3140305280685425, 0.14467865228652954, 0.4894521236419678, 0.06352446228265762, 0.05511939898133278, 1.0581910610198975, -0.23006704449653625, 0.4620973467826843, 0.06417036056518555, 0.3126635253429413, -0.0704682245850563, -0.7391067743301392, -0.27805525064468384, -0.18390358984470367, -0.38018104434013367, -0.5017181038856506 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
Lin-Chen/ShareGPT4V
Lin-Chen
2023-11-22T15:48:45Z
214
74
null
[ "task_categories:visual-question-answering", "task_categories:question-answering", "task_categories:conversational", "size_categories:1M<n", "language:en", "license:cc-by-nc-4.0", "arxiv:2311.12793", "region:us" ]
2023-11-22T15:48:45Z
2023-11-20T09:29:12.000Z
2023-11-20T09:29:12
--- license: cc-by-nc-4.0 task_categories: - visual-question-answering - question-answering - conversational language: - en pretty_name: ShareGPT4V Captions 1.2M Dataset Card size_categories: - 1M<n configs: - config_name: ShareGPT4V data_files: sharegpt4v_instruct_gpt4-vision_cap100k.json - config_name: ShareGPT4V-PT data_files: share-captioner_coco_lcs_sam_1246k_1107.json --- # ShareGPT4V 1.2M Dataset Card ## Dataset details **Dataset type:** ShareGPT4V Captions 1.2M is a set of GPT4-Vision-powered multi-modal captions data. It is constructed to enhance modality alignment and fine-grained visual concept perception in Large Multi-Modal Models (LMMs) during both the pre-training and supervised fine-tuning stages. This advancement aims to bring LMMs towards GPT4-Vision capabilities. * sharegpt4v_instruct_gpt4-vision_cap100k.json is generated by GPT4-Vision (ShareGPT4V). * share-captioner_coco_lcs_sam_1246k_1107.json is generated by our Share-Captioner trained on GPT4-Vision-generated data (ShareGPT4V-PT). * sharegpt4v_mix665k_cap23k_coco-ap9k_lcs3k_sam9k_div2k.json is curated from sharegpt4v_instruct_gpt4-vision_cap100k.json for the supervised fine-tuning stage. **Dataset date:** ShareGPT4V Captions 1.2M was collected in 11.07 2023. **Paper or resources for more information:** [[Project](https://ShareGPT4V.github.io/)] [[Paper](https://huggingface.co/papers/2311.12793)] [[Code](https://github.com/InternLM/InternLM-XComposer/tree/main/projects/ShareGPT4V)] **License:** Attribution-NonCommercial 4.0 International It should abide by the policy of OpenAI: https://openai.com/policies/terms-of-use ## Intended use **Primary intended uses:** The primary use of ShareGPT4V Captions 1.2M is research on large multimodal models and chatbots. **Primary intended users:** The primary intended users of this dataset are researchers and hobbyists in computer vision, natural language processing, machine learning, and artificial intelligence.
[ -0.4950666129589081, -0.2778609097003937, 0.2138129025697708, 0.23437431454658508, -0.5869576334953308, -0.015084274113178253, -0.09395934641361237, -0.3355241119861603, -0.07310181856155396, 0.44298985600471497, -0.7735634446144104, -0.4999605715274811, -0.7231993675231934, 0.011974623426795006, 0.023794295266270638, 1.2077360153198242, -0.3055451810359955, -0.15102937817573547, -0.22626492381095886, -0.33166491985321045, -0.6082484126091003, -0.35006245970726013, -0.5639522671699524, 0.1322614550590515, 0.5483056306838989, 0.601230263710022, 0.7650628685951233, 0.6263760924339294, 0.5015245079994202, 0.27562931180000305, 0.35203054547309875, 0.2667316496372223, -0.6601729393005371, -0.4473814070224762, 0.09886375069618225, -0.4046304523944855, -0.47992953658103943, 0.3271547257900238, 0.7173020243644714, -0.022749822586774826, -0.11128460615873337, 0.13202916085720062, 0.047813817858695984, 0.6025716066360474, -0.25805550813674927, 0.8091731071472168, -0.566849946975708, 0.20599718391895294, -0.4162731468677521, -0.4470098614692688, 0.05929727107286453, -0.2928977310657501, 0.18954503536224365, -0.9990734457969666, 0.35294589400291443, 0.33822086453437805, 1.1325737237930298, 0.5027735233306885, -0.2596419155597687, 0.10336443036794662, -0.22775483131408691, 0.7596836686134338, -0.6081900000572205, 0.15472003817558289, 0.2996150851249695, 0.4285622537136078, 0.29732775688171387, -0.8387817144393921, -0.7485122084617615, 0.10455108433961868, -0.10960652679204941, 0.3717973530292511, -0.26390141248703003, 0.17571337521076202, 0.5508853793144226, 0.6133305430412292, -0.7412102818489075, -0.030088141560554504, -0.76629239320755, -0.3164852559566498, 0.5760409832000732, 0.1454736292362213, 0.1513003408908844, -0.3867845833301544, -0.7291069030761719, -0.03710907697677612, -0.6491270065307617, 0.07883945107460022, 0.449248731136322, 0.03247183933854103, -0.5994023680686951, 0.5053479671478271, -0.22188901901245117, 0.47820496559143066, -0.08706766366958618, 0.08756589144468307, 0.7094497680664062, -1.0578908920288086, -0.3334895968437195, -0.08557018637657166, 0.9727624654769897, 0.8606473207473755, 0.3077273368835449, 0.1672898381948471, -0.009379595518112183, -0.041972290724515915, 0.1817622184753418, -0.8481948971748352, -0.40094518661499023, 0.10400060564279556, -0.3001546859741211, -0.40997305512428284, 0.11325321346521378, -0.808949887752533, -0.033108144998550415, -0.493865430355072, 0.6892042756080627, -0.36253589391708374, -0.30722591280937195, 0.11843374371528625, -0.07670634239912033, 0.6077775955200195, 0.4564889371395111, -0.7351403832435608, 0.36785492300987244, 0.5810004472732544, 1.0218430757522583, -0.3989923894405365, -0.3686703145503998, -0.29371851682662964, 0.14523224532604218, -0.13053643703460693, 0.4213464558124542, -0.08489351719617844, -0.12080591171979904, -0.10310108214616776, 0.34578511118888855, -0.04668639600276947, -0.36657819151878357, 0.6981418132781982, -0.383730411529541, 0.3860422670841217, -0.4209350645542145, -0.21483583748340607, -0.2992168068885803, 0.4624629020690918, -0.7357959747314453, 0.8797737956047058, 0.22203290462493896, -0.9439910650253296, 0.674407958984375, -1.0030134916305542, -0.11399142444133759, 0.36356106400489807, -0.3507991135120392, -0.6707385778427124, -0.3393329381942749, 0.3813789188861847, 0.45790669322013855, -0.18838517367839813, 0.2911771833896637, -0.01151549257338047, -0.22303850948810577, 0.047888655215501785, -0.6454780101776123, 0.5492438673973083, 0.20527306199073792, -0.2951473593711853, 0.5327258706092834, -0.2905126214027405, -0.09643299132585526, 0.16857528686523438, -0.087137870490551, 0.2554025948047638, -0.21021156013011932, 0.07928845286369324, 0.36809486150741577, 0.3326597809791565, -0.5438752770423889, 0.25585806369781494, -0.3089127540588379, 0.5867910385131836, 0.765783965587616, 0.0020429056603461504, 0.2893422544002533, -0.47545912861824036, 0.6163951754570007, 0.3345873951911926, 0.5417499542236328, -0.2941487729549408, -0.7222819328308105, -0.4657077193260193, -0.42938682436943054, 0.043748848140239716, 0.41487938165664673, -0.9397170543670654, 0.09473425149917603, -0.5760789513587952, -0.250247061252594, -0.550510585308075, -0.03816499188542366, 0.3301856219768524, 0.41105222702026367, 0.25052013993263245, -0.32208457589149475, -0.6093320250511169, -1.1447875499725342, 0.2661280333995819, 0.21425046026706696, 0.07983779162168503, 0.46233314275741577, 0.5176024436950684, -0.1428370326757431, 0.8767586350440979, -0.487209290266037, -0.5305031538009644, -0.07653573900461197, -0.02291015163064003, 0.10166449099779129, 0.51474529504776, 0.6828892230987549, -1.0871156454086304, -0.5216295123100281, -0.08861638605594635, -0.7477628588676453, 0.05978666618466377, 0.07202181220054626, -0.07987887412309647, 0.29579272866249084, 0.3187699019908905, -0.6461442112922668, 0.4364054799079895, 0.7246338129043579, -0.3323502838611603, 0.6273248791694641, -0.23650717735290527, 0.4156234860420227, -1.2758549451828003, 0.03226696699857712, 0.0064527601934969425, -0.4749264419078827, -0.23929446935653687, -0.08547873795032501, -0.1250864714384079, -0.1668645143508911, -0.6182806491851807, 0.3363742530345917, -0.48928505182266235, -0.1513386219739914, -0.03328096866607666, 0.1306656450033188, 0.004674809984862804, 0.7856910228729248, -0.18241813778877258, 0.9868452548980713, 0.7935282588005066, -0.3427619934082031, 0.6077885627746582, 0.5117354393005371, -0.31755560636520386, 0.27603331208229065, -0.8349263072013855, -0.1342848837375641, 0.007255961187183857, 0.1952201873064041, -1.0037113428115845, -0.4294472932815552, 0.8587693572044373, -0.5067675113677979, 0.41699036955833435, -0.18102645874023438, -0.5981360673904419, -0.22984687983989716, -0.6437492966651917, 0.7095839381217957, 0.26327672600746155, -0.5793604254722595, 0.341133713722229, 0.3980724811553955, -0.2500914931297302, -0.4476093053817749, -0.7019528746604919, 0.08981120586395264, -0.2223282754421234, -0.7957247495651245, 0.4126543402671814, -0.28082671761512756, 0.2878206670284271, 0.011053575202822685, -0.15291360020637512, 0.0026372037827968597, -0.4065084755420685, 0.5598019361495972, 0.40427833795547485, -0.0955069437623024, -0.16306032240390778, -0.010158608667552471, -0.2869872450828552, -0.0035599437542259693, -0.20267364382743835, 0.4425484836101532, -0.3686560392379761, -0.19444870948791504, -0.5704789757728577, 0.1683240383863449, 0.578747570514679, -0.35418760776519775, 0.4442797005176544, 0.8033463358879089, -0.21695995330810547, 0.2921096682548523, -0.3416527807712555, -0.03111054003238678, -0.5077123045921326, 0.5865655541419983, -0.47738346457481384, -1.0602424144744873, 0.5291275978088379, 0.22851720452308655, -0.13538971543312073, 0.5818409323692322, 0.4984716475009918, 0.04346045106649399, 0.7625476121902466, 0.1736057698726654, -0.08023539930582047, 0.5018911361694336, -0.524712860584259, 0.08812907338142395, -0.8327879905700684, -0.4796922206878662, -0.04437066614627838, -0.3947067856788635, -0.8344191908836365, -0.8811450004577637, 0.33669912815093994, -0.13678494095802307, -0.31271153688430786, 0.22593829035758972, -0.6728997826576233, 0.5018075108528137, 0.693920373916626, 0.23155391216278076, 0.18849648535251617, 0.23610703647136688, 0.15764911472797394, -0.2350911945104599, -0.8091100454330444, -0.3565012812614441, 1.1119848489761353, 0.5650274157524109, 0.5106509327888489, 0.11330647021532059, 0.23615390062332153, 0.3519238531589508, -0.06473427265882492, -0.7173476219177246, 0.5889508128166199, 0.04211561381816864, -0.5638300776481628, -0.24608010053634644, -0.5431044101715088, -0.8708885908126831, -0.015774771571159363, 0.024054881185293198, -0.5605067610740662, 0.06076782941818237, 0.29370006918907166, -0.19298310577869415, 0.36286792159080505, -0.6872385144233704, 1.3650001287460327, -0.17832794785499573, -0.3591560423374176, -0.09030678123235703, -1.0782511234283447, 0.3653877377510071, -0.029022041708230972, -0.09682828187942505, -0.017977751791477203, -0.037917472422122955, 0.8052442073822021, -0.39837145805358887, 0.8444043397903442, -0.3312795162200928, 0.007144944276660681, 0.5134484767913818, -0.2921007573604584, 0.42727288603782654, 0.22619634866714478, 0.3717498183250427, 0.690392792224884, 0.12294220924377441, -0.39368176460266113, -0.2312900573015213, 0.8916852474212646, -1.0589721202850342, -0.41152065992355347, -0.6610187292098999, -0.661063551902771, 0.054255157709121704, 0.12784065306186676, 0.5801146030426025, 0.6263830065727234, 0.07525498420000076, 0.34842807054519653, 0.4598035216331482, -0.15029743313789368, 0.45902031660079956, 0.30950024724006653, -0.11256174743175507, -0.5702829360961914, 0.9923090934753418, 0.09288313239812851, 0.28026339411735535, 0.15554344654083252, 0.01853244937956333, -0.4688132107257843, -0.6973709464073181, -0.47358936071395874, 0.12495484203100204, -0.5027216076850891, -0.38372692465782166, -0.46192851662635803, -0.3287225067615509, -0.2892901599407196, 0.0950678214430809, -0.3272549510002136, -0.345049113035202, -0.4075310230255127, -0.2913752794265747, 0.5750697255134583, 0.38664403557777405, -0.16016121208667755, 0.5111261010169983, -0.8459433913230896, 0.3153811991214752, 0.3179956376552582, 0.6274289488792419, -0.45732465386390686, -0.7351614832878113, -0.18167078495025635, 0.0146102923899889, -0.3496868908405304, -0.5660977959632874, 0.4522201120853424, 0.20865727961063385, 0.4497082829475403, 0.41034576296806335, -0.21110568940639496, 0.5756273865699768, -0.4564853608608246, 1.0244357585906982, 0.3238900303840637, -0.7781935930252075, 0.41424983739852905, -0.6108211874961853, 0.27866727113723755, 0.506263792514801, 0.3540690541267395, -0.3778078556060791, 0.06267272680997849, -0.5403153300285339, -0.7338409423828125, 1.175105094909668, 0.45574405789375305, 0.09412714093923569, 0.31944194436073303, 0.3354858458042145, 0.2801245152950287, 0.41487109661102295, -0.8853243589401245, -0.25157904624938965, -0.5759603381156921, -0.4364163279533386, -0.17341405153274536, -0.2722718417644501, -0.35603439807891846, -0.3383408784866333, 0.5797119736671448, -0.21803723275661469, 0.42936092615127563, 0.1608896106481552, 0.2000836282968521, -0.07107382267713547, -0.03859906643629074, 0.7760611772537231, 0.6806315779685974, -0.304800420999527, -0.07403531670570374, -0.13303808867931366, -0.5122193694114685, -0.30421262979507446, 0.4640105962753296, -0.009414841420948505, -0.21684132516384125, 0.10765624046325684, 1.2230030298233032, 0.11584565043449402, -0.3613456189632416, 0.8577338457107544, -0.10130517184734344, -0.6612210273742676, -0.44274666905403137, -0.02916801907122135, -0.2185957431793213, 0.41473305225372314, 0.2031986564397812, 0.4450300335884094, 0.10445035994052887, -0.3367237448692322, 0.27422285079956055, 0.19258403778076172, -0.35887786746025085, -0.6216011643409729, 0.7656780481338501, 0.15190231800079346, 0.13613802194595337, 0.3210737109184265, -0.34022897481918335, -0.6182498931884766, 0.46784886717796326, 0.21856221556663513, 0.698390007019043, -0.00234819739125669, 0.1624225676059723, 0.4926741421222687, 0.295332670211792, -0.0577399842441082, 0.3959035873413086, -0.019399812445044518, -0.8309904932975769, -0.5137312412261963, -0.4478951692581177, -0.24917884171009064, 0.184147447347641, -0.3623252511024475, 0.33915868401527405, -0.3113492429256439, 0.1873263418674469, -0.20672258734703064, 0.14031915366649628, -0.8933014869689941, 0.2663990259170532, 0.12071630358695984, 0.5712110996246338, -0.7959438562393188, 0.8724247813224792, 0.4561358690261841, -0.7095250487327576, -1.0519375801086426, -0.23787418007850647, 0.07319754362106323, -0.7987562417984009, 0.5440166592597961, 0.2641878128051758, 0.18533557653427124, 0.12115758657455444, -0.945013701915741, -0.7646012902259827, 1.3980427980422974, 0.13379427790641785, -0.6867225170135498, 0.04564126580953598, 0.34741052985191345, 0.15364472568035126, -0.4234439432621002, -0.02487708255648613, 0.25640159845352173, 0.6145451664924622, 0.39667248725891113, -1.0091562271118164, 0.17627331614494324, -0.12395025044679642, -0.24378760159015656, 0.11030227690935135, -0.8301241397857666, 0.7453406453132629, -0.19075708091259003, 0.012306449934840202, -0.059887781739234924, 0.44328442215919495, 0.2898820638656616, 0.5259048938751221, 0.4781340956687927, 0.5764555931091309, 0.4405760169029236, -0.46064120531082153, 1.1534568071365356, -0.19444844126701355, 0.4449285566806793, 1.2843146324157715, 0.14470548927783966, 0.38849979639053345, 0.5855689644813538, -0.08431484550237656, 0.014457330107688904, 0.6518279910087585, -0.35556140542030334, 0.7733923196792603, 0.02421334758400917, -0.183782160282135, 0.008839108049869537, 0.07097724080085754, -0.42052167654037476, 0.4450008273124695, 0.24812546372413635, -0.3373640775680542, 0.06193648278713226, 0.10506104677915573, -0.12197890132665634, -0.3721153140068054, -0.41619351506233215, 0.6221692562103271, -0.03880719095468521, -0.49269601702690125, 0.34952816367149353, -0.3369665741920471, 0.7495104074478149, -0.6962853074073792, -0.14864926040172577, -0.005044111516326666, 0.013394414447247982, -0.30480143427848816, -1.0724642276763916, 0.3386475145816803, -0.1248755231499672, -0.19612853229045868, -0.16229400038719177, 0.63491290807724, -0.47448301315307617, -0.266378790140152, 0.042373400181531906, 0.31216201186180115, 0.3280694782733917, -0.3530738949775696, -0.7118613719940186, 0.21463990211486816, 0.3581852614879608, -0.1468367725610733, 0.060486339032649994, 0.500396192073822, -0.0755985826253891, 0.4966205954551697, 0.5602623820304871, -0.054629288613796234, 0.16737204790115356, 0.2005055695772171, 1.093851923942566, -0.5379992127418518, -0.4291965365409851, -0.7151067852973938, 0.6516153216362, -0.19821558892726898, -0.32451435923576355, 0.806331217288971, 0.8547588586807251, 0.9779630303382874, -0.2536165416240692, 0.8787052035331726, -0.18615180253982544, 0.20691892504692078, -0.42190811038017273, 0.4943371117115021, -0.7001370787620544, 0.07414413243532181, -0.1829642355442047, -0.8375262022018433, -0.3543560206890106, 0.34073275327682495, -0.25387510657310486, 0.056042689830064774, 0.519212543964386, 0.9803590178489685, -0.35861021280288696, 0.02688884362578392, 0.43039900064468384, 0.19642236828804016, 0.3399006724357605, 0.485727995634079, 0.5917152166366577, -0.7493162751197815, 0.866560161113739, 0.029110578820109367, -0.2215978503227234, -0.1826140582561493, -0.6837393641471863, -0.6664171814918518, -0.518295168876648, -0.6552973985671997, -0.114741750061512, -0.07701443880796432, 0.7561168670654297, 0.8396544456481934, -0.6812126636505127, 0.27156466245651245, -0.14877501130104065, -0.31098097562789917, 0.06910502910614014, -0.2753705084323883, 0.42783620953559875, 0.06113153696060181, -0.8098686933517456, 0.0838615670800209, 0.32702189683914185, -0.022132230922579765, -0.2000887542963028, -0.5066412091255188, -0.17675183713436127, -0.21128274500370026, 0.5338164567947388, 0.1505172997713089, -0.7255485653877258, -0.43752220273017883, -0.16666212677955627, 0.061579324305057526, 0.5820056796073914, 0.43592143058776855, -0.45160937309265137, 0.6233647465705872, 0.4722784459590912, 0.24697358906269073, 0.8309587836265564, 0.1355467587709427, 0.3890490233898163, -1.1513961553573608, 0.23890447616577148, 0.07495495676994324, 0.47628799080848694, 0.41403695940971375, -0.2050197720527649, 0.5934231281280518, 0.4008457362651825, -0.8462817668914795, -0.34595704078674316, 0.16547782719135284, -1.704068660736084, 0.17284561693668365, 1.2073540687561035, -0.20434434711933136, 0.005419817753136158, 0.03990478068590164, -0.7521591186523438, 0.43142133951187134, -0.6124892234802246, 0.3693348169326782, 0.4016778767108917, 0.20352591574192047, -0.5880105495452881, -0.7905659079551697, 0.7092655301094055, 0.06443557888269424, -0.8023446798324585, -0.086707204580307, 0.6417496800422668, 0.523406982421875, 0.06816276907920837, 0.6569807529449463, -0.40168067812919617, 0.17018021643161774, -0.08419813215732574, 0.223939448595047, -0.5782007575035095, -0.09602706879377365, -0.39054012298583984, 0.182124063372612, -0.2683947682380676, -0.7885932326316833 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
vesteinn/swe-nerc
vesteinn
2022-11-30T12:40:35Z
213
0
null
[ "region:us" ]
2022-11-30T12:40:35Z
2022-11-30T10:26:32.000Z
2022-11-30T10:26:32
This is a Swedish NE dataset, Swe-NERC v1. Please see https://hdl.handle.net/10794/121 for more information. Included here is the manually tagged part.
[ -0.5261573195457458, -0.25528693199157715, 0.029405958950519562, -0.078728087246418, -0.36476898193359375, -0.189491868019104, 0.3086538016796112, -0.31744274497032166, 0.6766808032989502, 0.9345449805259705, -1.2782490253448486, -0.8927850723266602, -0.19496677815914154, 0.028271406888961792, -0.09214816242456436, 0.7780048251152039, 0.43668660521507263, 0.40569043159484863, -0.34692108631134033, -0.2425834685564041, -0.26821547746658325, -0.8975728154182434, -0.6755717396736145, 0.07609453052282333, 1.1226478815078735, 0.7286462783813477, 0.2437044382095337, 0.49604758620262146, 1.124804973602295, 0.2847345471382141, -0.06939632445573807, -0.4054037630558014, -0.3918802738189697, 0.2291918247938156, -0.37028706073760986, 0.05877731367945671, -1.1630421876907349, -0.3042044937610626, 0.8291957378387451, 0.33976325392723083, -0.02528291754424572, 0.65174400806427, -0.3036951720714569, 0.45586228370666504, -0.1830781251192093, -0.09366055577993393, -0.3246529996395111, -0.04280047491192818, -0.45039209723472595, 0.09045825153589249, -0.14755801856517792, -0.24545399844646454, -0.011452004313468933, -0.5170778632164001, 0.4231245517730713, 0.38661304116249084, 1.1791095733642578, 0.37735453248023987, -0.5724183917045593, -0.010246753692626953, -0.36370038986206055, 0.6673412322998047, -0.6876576542854309, 0.32511773705482483, 0.751253604888916, 0.5740699768066406, -0.010703225620090961, -0.7175738215446472, 0.027126120403409004, 0.3597816526889801, -0.06784842163324356, 0.014809447340667248, -0.20958472788333893, 0.02005663700401783, 0.2927038371562958, 0.149479940533638, -0.6788907051086426, 0.23413728177547455, -0.7334240078926086, -0.5747079849243164, 0.9947590827941895, 0.4299214780330658, 0.023802148178219795, -0.4067703187465668, -0.6882283687591553, -0.30500903725624084, -0.7213048338890076, -0.617354691028595, 0.5197750926017761, 0.49268439412117004, -0.41463956236839294, 0.8229071497917175, -0.03499344363808632, 0.8606942296028137, -0.43394315242767334, 0.2458733320236206, 0.588310956954956, -0.7544000148773193, -0.3005181849002838, 0.18897992372512817, 0.32281896471977234, 0.5341518521308899, 0.05187264457345009, 0.3774002492427826, -0.7062427997589111, -0.52048659324646, 0.12299424409866333, -0.6567127108573914, -0.14476753771305084, -0.053644824773073196, -0.6018284559249878, -0.2158847600221634, 0.3638516366481781, -0.5619783997535706, -0.4301668703556061, -0.40685927867889404, 0.018588213250041008, 0.050420377403497696, -0.6194639801979065, -0.11991193890571594, -0.47442206740379333, 0.6740289330482483, -0.04735082760453224, -0.4255811274051666, 0.48580408096313477, 0.34729886054992676, 0.6710513234138489, 0.01831343211233616, 0.0824008509516716, -0.15300510823726654, -0.3354794979095459, 0.02420690841972828, 0.7439978718757629, -0.024853410199284554, -0.6566653847694397, 0.016127029433846474, 0.45676150918006897, 0.3204904794692993, -0.4072721302509308, 0.7491911053657532, -0.8013827204704285, 0.21971416473388672, -0.7559206485748291, -0.350627064704895, -0.05866624042391777, 0.11521217972040176, -1.001649260520935, 1.4046746492385864, 0.44127440452575684, -1.1586486101150513, 0.6556694507598877, -0.5440936088562012, -0.23986725509166718, 0.36948034167289734, -0.20151035487651825, -0.25113388895988464, -0.09172099083662033, -0.3548668324947357, 0.24802903831005096, -0.2957654595375061, 0.17431338131427765, -0.4099717140197754, -0.13306377828121185, -0.2693515717983246, -0.2547476887702942, 0.9304589629173279, 0.2646143436431885, 0.3245783746242523, 0.5096427202224731, -1.0694931745529175, -0.0002474933862686157, 0.25486528873443604, 0.08374146372079849, -0.6950898170471191, -0.39564672112464905, 0.4500056505203247, 0.6418250799179077, 0.7931588292121887, -0.8964905738830566, 0.4035892188549042, -0.08566629886627197, -0.12373658269643784, 0.8098586201667786, 0.6049323678016663, 0.15441416203975677, -0.39535436034202576, 0.7754530310630798, -0.06173430755734444, 0.4653964042663574, 0.364042192697525, -0.3364950120449066, -0.3186964988708496, -0.28253015875816345, 0.5990197062492371, 0.5185944437980652, -0.8208785057067871, 0.5796199440956116, -0.1363534927368164, -0.7407090067863464, -0.4367905557155609, -0.18377310037612915, 0.1583785116672516, 0.3946135342121124, 0.12331482023000717, -0.15125225484371185, -1.1589359045028687, -1.350453495979309, 0.24141347408294678, 0.0411299429833889, -0.17133033275604248, 0.4440864026546478, 0.9939481616020203, 0.004179904703050852, 0.9386593699455261, -0.5484837889671326, -0.21849580109119415, -0.13087718188762665, 0.08807360380887985, 0.7717111706733704, 0.6579310297966003, 0.5848808884620667, -0.8413715362548828, -0.42853131890296936, -0.08271810412406921, -0.6125686764717102, -0.27458998560905457, 0.12963587045669556, -0.4412364065647125, 0.3323327302932739, 0.4506123960018158, 0.06237109377980232, 0.6069619655609131, 0.3099380433559418, -0.8862163424491882, 0.3632310926914215, -0.5714702606201172, -0.1511169970035553, -0.9213564395904541, 0.44737544655799866, 0.11150749772787094, -0.32079577445983887, -0.35736119747161865, -0.5165389180183411, 0.16067178547382355, 0.46139419078826904, -0.8173976540565491, 0.8867009282112122, -0.6560587286949158, -0.4640577733516693, -0.12778881192207336, -0.2704613208770752, -0.19824965298175812, 0.3834819793701172, 0.20858293771743774, 0.6112264394760132, 0.7182868123054504, -0.33479902148246765, 0.2825501263141632, 0.533974826335907, -0.5406159162521362, 0.4543960988521576, -0.9448977112770081, 0.3386751413345337, -0.4825989007949829, -0.194676473736763, -0.7120254039764404, -0.5139864087104797, 0.0854368582367897, -0.2903554141521454, 0.026941539719700813, -0.427505761384964, -0.6525154709815979, -0.4075353443622589, -0.08149884641170502, 0.4991869032382965, 0.4975215494632721, -0.16982401907444, 0.4371342360973358, 0.7199132442474365, -0.5512174963951111, -0.6554053425788879, -0.7703838348388672, -0.11828874796628952, -0.08829209953546524, -0.3570159375667572, 0.3680688440799713, 0.19137488305568695, -0.5402534008026123, 0.09046071767807007, -0.24903078377246857, -0.4680745601654053, -0.11673370003700256, 0.5471405982971191, 0.7093925476074219, -0.36885663866996765, 0.020659619942307472, -0.15960931777954102, -0.13109751045703888, 0.08948234468698502, 0.27885934710502625, 0.7133246064186096, -0.03545219078660011, -0.14226099848747253, -0.21461383998394012, 0.48983287811279297, 0.458087295293808, 0.10997269302606583, 0.48873719573020935, 0.35512757301330566, -0.7037777304649353, -0.03714350238442421, -0.23367637395858765, -0.3998135030269623, -0.46697545051574707, 0.16849268972873688, -0.362222820520401, -0.41493573784828186, 0.9704064726829529, 0.3966512382030487, 0.051828812807798386, 0.9970794320106506, -0.011471133679151535, -0.350087434053421, 1.038941740989685, 0.46632423996925354, -0.07700316607952118, 0.48526060581207275, -0.338592529296875, -0.5064375996589661, -0.6021667122840881, -0.5840514302253723, -0.4580409526824951, -0.38594329357147217, -0.5575382113456726, -0.37035611271858215, 0.1202394962310791, -0.20548343658447266, -0.8221676349639893, 0.44062772393226624, -0.7458812594413757, 0.5559523105621338, 0.6904475092887878, -0.18212924897670746, 0.04569195210933685, -0.28985074162483215, 0.05042125657200813, -0.31121936440467834, -0.9523709416389465, -0.16273018717765808, 0.8050000667572021, 0.39671167731285095, 0.9455657601356506, 0.056809891015291214, 0.6401609778404236, 0.7125774025917053, 0.2098386287689209, -0.2969342768192291, 0.6312748789787292, -0.19395680725574493, -1.3948179483413696, -0.25939348340034485, -0.15518249571323395, -0.8162939548492432, 0.08074235171079636, -0.3726321756839752, -0.08249182254076004, 0.42465806007385254, -0.07279037684202194, 0.026546219363808632, 0.2493683099746704, -0.3347553312778473, 0.8129065632820129, -0.30828654766082764, -0.052232444286346436, 0.1392883062362671, -1.0216189622879028, -0.0012352094054222107, 0.08738657087087631, 0.08263828605413437, -0.30279460549354553, 0.04325706139206886, 0.99798983335495, -0.4377985894680023, 1.0381466150283813, -0.7433298230171204, 0.0775507241487503, 0.18729738891124725, -0.33771786093711853, 0.5505877733230591, -0.056351978331804276, -0.13894955813884735, 0.21820680797100067, 0.03540922328829765, -0.6626052856445312, 0.24918071925640106, 0.7193282246589661, -0.3898078501224518, 0.18248005211353302, -0.9541780352592468, -0.09121619910001755, 0.45849156379699707, 0.5319437384605408, 0.5054548382759094, 0.8228558897972107, -0.39444002509117126, 0.2279120832681656, 0.6973302960395813, -0.08284759521484375, 0.5848726034164429, 0.584269106388092, -0.4585706293582916, -0.5782121419906616, 0.6978793740272522, 0.33636271953582764, 0.09025537967681885, -0.10781886428594589, -0.1624191403388977, -0.7663987278938293, -0.3995419442653656, -0.15398775041103363, 0.5465215444564819, -0.9423160552978516, -0.42680248618125916, -0.25827446579933167, -0.5117234587669373, -0.4263196885585785, -0.26139310002326965, -0.23354293406009674, -0.29314330220222473, -0.2871405780315399, -0.3672599792480469, 0.6404590010643005, 1.28456711769104, -0.25280749797821045, 0.46874746680259705, -0.5802584290504456, -0.05342795327305794, -0.11544697731733322, 0.6754044890403748, -0.7206571102142334, -0.5363382697105408, -0.10536158829927444, -0.0349126011133194, 0.4069952964782715, -0.7169062495231628, 0.5065445303916931, -0.13816343247890472, 0.829686164855957, 0.013913231901824474, 0.1309460550546646, 0.3593106269836426, -0.1484285444021225, 0.8933296203613281, 0.06899812817573547, -0.6611498594284058, 0.409656286239624, -0.6370954513549805, 0.6644864678382874, 0.9997279047966003, 0.28039947152137756, -0.6182870268821716, 0.2348325103521347, -1.030033826828003, -1.2210978269577026, 0.6269053220748901, -0.1715700626373291, -0.2725566327571869, -0.01988166570663452, 0.14608056843280792, 0.25738000869750977, 0.13704542815685272, -0.5102478265762329, -0.5816650390625, -0.16910262405872345, -0.20462137460708618, 0.2301408052444458, -0.21088725328445435, -0.07192472368478775, -0.7265495657920837, 0.9228547215461731, -0.003860366763547063, 0.29167404770851135, 0.4343416690826416, -0.18851761519908905, 0.17356441915035248, -0.263102650642395, 1.099089503288269, 0.6052728295326233, -0.7182776927947998, 0.027986153960227966, 0.3527412414550781, -0.5494565367698669, -0.21583782136440277, -0.23066961765289307, 0.1441909223794937, 0.47451409697532654, 0.5824867486953735, 1.0067344903945923, 0.14353829622268677, -0.3128589689731598, 0.6571260094642639, -0.018690602853894234, -0.7000964283943176, -1.0293337106704712, -0.2969241738319397, -0.12677277624607086, -0.06160391494631767, 0.4791298806667328, 0.04930912330746651, 0.11359188705682755, 0.13957403600215912, 0.617941677570343, 0.2214459627866745, -0.7158406376838684, -0.47321048378944397, 0.5024285912513733, 0.2656204402446747, -0.3741317689418793, 0.8227856755256653, -0.4415697157382965, -0.15976011753082275, 0.8803114295005798, 0.4027322828769684, 0.8070103526115417, -0.08351219445466995, 0.19062002003192902, 0.9780666828155518, 0.42300963401794434, 0.36059287190437317, 1.2141271829605103, 0.18634696304798126, -0.3244493901729584, -0.7667900919914246, -0.5559926629066467, -0.28380998969078064, 0.18984538316726685, -1.0692529678344727, 0.6591402888298035, -0.29690292477607727, -0.19844193756580353, -0.12395869940519333, -0.06995448470115662, -0.8819458484649658, 0.1939360648393631, 0.3699294328689575, 1.5415120124816895, -1.1669539213180542, 1.3070592880249023, 0.7542495727539062, -0.06966707110404968, -0.21806049346923828, -0.6223161816596985, -0.10956812649965286, -0.8127216696739197, 0.7294465899467468, -0.13080273568630219, -0.30206024646759033, -0.07320776581764221, -0.8220627903938293, -1.411299705505371, 1.1929212808609009, -0.19293707609176636, -0.6848241686820984, 0.09040083736181259, -0.13357709348201752, 0.5545883178710938, -0.17142732441425323, 0.2256547063589096, 0.40610432624816895, 1.029453158378601, 0.4130944311618805, -0.7243607640266418, -0.2625426948070526, -0.5845416188240051, -0.317832350730896, 0.5062726140022278, -0.2896635830402374, 0.736020565032959, 0.10731156915426254, -0.3610447943210602, -0.3381511867046356, 0.7522161602973938, 0.0554928183555603, 0.2824794054031372, 0.6567986607551575, 0.41638752818107605, 0.6850531101226807, -0.065875343978405, 0.8481126427650452, -0.09884968400001526, 0.4933412969112396, 1.4765058755874634, -0.6519880890846252, 0.5369937419891357, 0.6435659527778625, 0.022150322794914246, 0.2577908933162689, 0.8122523427009583, -0.3872201144695282, 0.7145701050758362, 0.28399619460105896, -0.1804363876581192, -0.032146137207746506, -0.0038692380767315626, -0.5641133785247803, 0.3606450855731964, 0.40051499009132385, -0.3050278127193451, -0.6118870377540588, 0.11309066414833069, 0.04248009994626045, -0.4021104872226715, -0.4650566577911377, 1.0405545234680176, -0.2947411835193634, -0.2976003885269165, 0.2881138026714325, -0.4241234064102173, 0.7005047798156738, -0.7559514045715332, -0.16798575222492218, -0.028132421895861626, -0.2921176254749298, -0.10139145702123642, -1.2352386713027954, 0.6868239045143127, -0.08534350991249084, -0.2046690136194229, -0.4599010944366455, 1.3497775793075562, -0.3594924509525299, -0.5443791747093201, 0.07629964500665665, 0.3969064950942993, 0.4048668444156647, 0.4027291536331177, -0.6028054356575012, -0.1275760531425476, 0.031149141490459442, -0.3746670186519623, 0.15487933158874512, -0.20217947661876678, -0.27548518776893616, 0.41501227021217346, 0.2330188900232315, 0.11571189761161804, 0.22155922651290894, -0.03429929167032242, 0.6518734097480774, -1.2187367677688599, -0.20093607902526855, -0.32844313979148865, 0.9222738742828369, -0.8963224291801453, -1.0174859762191772, 0.8213217854499817, 1.0464109182357788, 0.64841228723526, -0.23248593509197235, 0.9038841724395752, -0.5530320405960083, 0.6321232318878174, -0.14676599204540253, 0.6196746826171875, -0.3611178696155548, -0.3306269645690918, 0.36276987195014954, -0.710314929485321, -0.4164983332157135, 0.4380670487880707, -0.009050345979630947, -0.29756101965904236, 0.38851842284202576, 0.745013415813446, -0.036531392484903336, 0.11012399196624756, 0.43375882506370544, 0.2951454222202301, -0.3089030981063843, -0.1777149885892868, 0.7308112978935242, -0.16413423418998718, -0.3330232799053192, -0.6026995778083801, 0.08720636367797852, -0.2110852748155594, -1.1639924049377441, -0.5874813199043274, -0.9492081999778748, -0.31785136461257935, -0.41433706879615784, -0.3243516981601715, 1.0594004392623901, 0.7536077499389648, -0.8500189781188965, -0.027131304144859314, 0.029201989993453026, 0.0279619749635458, 0.04523736238479614, -0.10666374117136002, 0.3666890561580658, 0.3490046262741089, -0.32161226868629456, 0.4460814893245697, 0.057579901069402695, 0.32918497920036316, -0.22887076437473297, -0.030016278848052025, -0.30259600281715393, 0.2345065474510193, 0.08260033279657364, 0.32793018221855164, -0.23517049849033356, -0.258249968290329, 0.20452189445495605, -0.3238503038883209, 0.08898875117301941, 0.6626908183097839, -0.23932510614395142, 0.22573302686214447, 1.057521104812622, 0.036712486296892166, 0.7263751029968262, 0.13210763037204742, 0.17590273916721344, -1.2812117338180542, 0.19745254516601562, 0.6788050532341003, 0.36236822605133057, -0.06894998997449875, -0.24838070571422577, 0.49469640851020813, 0.10880672186613083, -0.9430926442146301, -1.0443633794784546, -0.1362786740064621, -1.6165646314620972, -0.16390390694141388, 1.2116376161575317, 0.2600289285182953, -0.70555180311203, -0.3267786204814911, -0.5289039015769958, 0.05147160217165947, -0.2980455458164215, -0.33194029331207275, 1.104906678199768, 0.01321198046207428, 0.13026538491249084, -0.8881193995475769, 0.5740371346473694, 0.042574819177389145, -0.6701693534851074, -0.10369008034467697, 0.6750301718711853, 0.33431240916252136, -0.19108633697032928, 0.663899838924408, -0.3646667003631592, 0.14226685464382172, 0.18094861507415771, 1.058576226234436, 0.09157561510801315, -0.6159758567810059, -0.7766509652137756, 0.038065019994974136, -0.12745918333530426, -0.28140905499458313 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
HuggingFaceM4/NoCaps
HuggingFaceM4
2022-12-14T04:08:38Z
213
1
null
[ "license:cc-by-2.0", "region:us" ]
2022-12-14T04:08:38Z
2022-12-08T17:11:21.000Z
2022-12-08T17:11:21
--- license: cc-by-2.0 --- # Dataset Card for NoCaps ## 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://nocaps.org/](https://nocaps.org/) - **Paper:** [nocaps: novel object captioning at scale](https://openaccess.thecvf.com/content_ICCV_2019/papers/Agrawal_nocaps_novel_object_captioning_at_scale_ICCV_2019_paper.pdf) - **Leaderboard:** - **Point of Contact:**: contact@nocaps.org ### Dataset Summary Dubbed NoCaps for novel object captioning at scale, NoCaps consists of 166,100 human-generated captions describing 15,100 images from the Open Images validation and test sets. The associated training data consists of COCO image-caption pairs, plus Open Images image-level labels and object bounding boxes. Since Open Images contains many more classes than COCO, nearly 400 object classes seen in test images have no or very few associated training captions (hence, nocaps). ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances Each instance has the following structure: ``` { 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=L size=732x1024 at 0x7F574A3A9B50>, 'image_coco_url': 'https://s3.amazonaws.com/nocaps/val/0013ea2087020901.jpg', 'image_date_captured': '2018-11-06 11:04:33', 'image_file_name': '0013ea2087020901.jpg', 'image_height': 1024, 'image_width': 732, 'image_id': 0, 'image_license': 0, 'image_open_images_id': '0013ea2087020901', 'annotations_ids': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], 'annotations_captions': [ 'A baby is standing in front of a house.', 'A little girl in a white jacket and sandals.', 'A young child stands in front of a house.', 'A child is wearing a white shirt and standing on a side walk. ', 'A little boy is standing in his diaper with a white shirt on.', 'A child wearing a diaper and shoes stands on the sidewalk.', 'A child is wearing a light-colored shirt during the daytime.', 'A little kid standing on the pavement in a shirt. ', 'Black and white photo of a little girl smiling.', 'a cute baby is standing alone with white shirt' ] } ``` ### Data Fields - `image`: The image - `image_coco_url`: URL for the image - `image_date_captured`: Date at which the image was captured - `image_file_name`: The file name for the image - `image_height`: Height of the image - `image_width`: Width of the image - `image_id`: Id of the image - `image_license`: Not sure what this is, it is always at 0 - `image_open_images_id`: Open image id - `annotations_ids`: Unique ids for the captions (to use in conjunction with `annotations_captions`) - `annotations_captions`: Captions for the image (to use in conjunction with `annotations_ids`) ### 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 [@VictorSanh](https://github.com/VictorSanh) for adding this dataset.
[ -0.625243604183197, -0.4316430389881134, 0.08489080518484116, 0.19545897841453552, -0.19187895953655243, 0.22879280149936676, -0.07643874734640121, -0.6422868371009827, 0.4102434813976288, 0.6285518407821655, -0.7948194742202759, -0.936564564704895, -0.6026391983032227, 0.26743173599243164, -0.3051687777042389, 1.1161571741104126, -0.1109631285071373, -0.26419445872306824, -0.33021292090415955, -0.40176883339881897, -0.4229133427143097, -0.312305748462677, -0.40766239166259766, 0.07229037582874298, 0.36065253615379333, 0.8936790227890015, 0.6242444515228271, 0.8709412217140198, 0.6299039721488953, 0.14239606261253357, -0.05406542867422104, 0.1638840287923813, -0.5224739909172058, -0.429242879152298, 0.06660117208957672, -0.30825790762901306, -0.4379992187023163, 0.18331174552440643, 0.5247477293014526, 0.5840944051742554, 0.21858669817447662, 0.5768603086471558, -0.017088817432522774, 0.6522560715675354, -0.6351470351219177, 0.6298284530639648, -0.33118507266044617, 0.238405242562294, -0.23729519546031952, -0.12131606042385101, -0.12471289187669754, -0.2218284010887146, -0.14878037571907043, -0.8684496879577637, 0.5329724550247192, 0.19095487892627716, 1.1055424213409424, 0.024735109880566597, -0.24403968453407288, -0.35004308819770813, -0.37059521675109863, 0.9102063179016113, -0.6433092355728149, -0.16497892141342163, 0.5923863053321838, 0.22686780989170074, 0.0574481263756752, -0.6477097272872925, -0.7878963947296143, -0.002820426831021905, -0.3256274461746216, 0.2630171477794647, -0.11277144402265549, -0.30899810791015625, 0.511978268623352, 0.5845620632171631, -0.5962209105491638, -0.1851346790790558, -0.6770339608192444, -0.194604754447937, 1.0045441389083862, 0.35139110684394836, 0.42699456214904785, -0.42763978242874146, -0.3736104667186737, -0.2682996690273285, -0.5544068813323975, 0.1719224601984024, 0.3434883654117584, 0.44922080636024475, -0.9350715279579163, 0.7882227897644043, -0.3959011435508728, 0.7091066241264343, -0.119288370013237, -0.16201315820217133, 0.663628101348877, -0.6176190376281738, -0.04727780073881149, -0.012239845469594002, 1.0335625410079956, 0.8405163884162903, 0.03373129665851593, 0.04003583639860153, -0.0261128768324852, -0.017651136964559555, -0.07244366407394409, -0.7492688298225403, -0.3230590522289276, 0.3134864866733551, -0.5561338067054749, -0.6045607328414917, 0.2608395516872406, -1.1796685457229614, -0.252566397190094, -0.1966705024242401, 0.1009206548333168, -0.14554165303707123, -0.15089447796344757, 0.014193258248269558, -0.06865639984607697, 0.5857837796211243, 0.18458107113838196, -0.7787205576896667, 0.42813050746917725, 0.21028372645378113, 1.0226361751556396, -0.17128770053386688, -0.1529737114906311, -0.15656134486198425, 0.1795678287744522, -0.3671398460865021, 0.7790100574493408, -0.40371182560920715, -0.3671877682209015, -0.08732717484235764, 0.5292409658432007, -0.09211964160203934, -0.22667542099952698, 0.6807605624198914, -0.07103034853935242, 0.19246549904346466, -0.6329828500747681, -0.18460500240325928, -0.24567770957946777, 0.47923994064331055, -0.9153313040733337, 1.2050483226776123, 0.1393006294965744, -0.9572722315788269, 0.4252919554710388, -1.0660737752914429, -0.49082258343696594, -0.0669466108083725, -0.3118163049221039, -0.6994765400886536, -0.23954881727695465, 0.5917109251022339, 0.4579944312572479, -0.40239784121513367, -0.04472305253148079, -0.2880226671695709, -0.21518327295780182, 0.06274771690368652, -0.2086198776960373, 1.3693668842315674, 0.29821550846099854, -0.33504751324653625, 0.046741943806409836, -0.7573279142379761, -0.2984261214733124, 0.6634474396705627, -0.0800490453839302, 0.2626054883003235, -0.2833194434642792, 0.29241615533828735, 0.16192863881587982, 0.33892905712127686, -0.6189960241317749, 0.3269546926021576, 0.10084475576877594, 0.6810660362243652, 0.30525103211402893, 0.3613989055156708, 0.39575159549713135, -0.5429019927978516, 0.5509783029556274, 0.1165747195482254, 0.7474527359008789, -0.31521305441856384, -0.7968044877052307, -0.775152325630188, -0.28491494059562683, 0.05420370399951935, 0.48228371143341064, -0.6675664186477661, 0.53394615650177, -0.4256497621536255, -0.6780455708503723, -0.2785801589488983, 0.04160759970545769, 0.253162145614624, 0.6483842134475708, 0.4669420123100281, -0.6623052954673767, -0.5863001942634583, -0.8606576323509216, 0.48271745443344116, -0.023709341883659363, 0.24633009731769562, 0.7105956077575684, 0.9702178239822388, 0.06859833002090454, 1.0861303806304932, -0.6999375820159912, -0.4147709310054779, -0.26985782384872437, 0.08907835185527802, 0.34992220997810364, 0.5675013661384583, 1.0052491426467896, -0.9089647531509399, -0.5154299736022949, -0.2693712115287781, -0.8441634774208069, 0.00044052916928194463, -0.1224854588508606, -0.2017892748117447, 0.1499168425798416, 0.34026312828063965, -0.4542508125305176, 0.5827974677085876, 0.45285820960998535, -0.21458886563777924, 0.6189773678779602, 0.01191685814410448, 0.24872133135795593, -0.9169188737869263, 0.3401246964931488, -0.015266003087162971, 0.06396185606718063, -0.5264584422111511, 0.017522204667329788, 0.02340654842555523, -0.16964298486709595, -0.5963084697723389, 0.4529692828655243, -0.586759090423584, 0.05738561972975731, 0.10067902505397797, 0.10749618709087372, 0.18504765629768372, 0.5688443779945374, 0.14181117713451385, 0.6048300266265869, 0.8163924217224121, -0.31851518154144287, 0.4320348799228668, 0.5591303110122681, -0.45239320397377014, 0.5454170107841492, -0.7273633480072021, 0.1257878541946411, -0.3658975660800934, 0.23036812245845795, -1.2551326751708984, -0.46357133984565735, 0.6259380578994751, -0.6562560200691223, 0.2736304700374603, -0.10134072601795197, -0.8283311724662781, -0.6452128291130066, -0.5541777610778809, 0.46548333764076233, 0.30121710896492004, -0.3929251730442047, 0.16498245298862457, 0.4631989896297455, 0.1943817287683487, -0.6013883948326111, -0.859155535697937, 0.17522720992565155, -0.10919519513845444, -0.3817885220050812, 0.32124876976013184, -0.27641165256500244, 0.22236499190330505, 0.15922418236732483, -0.042307037860155106, -0.11634127795696259, -0.08047402650117874, 0.37689509987831116, 0.4231690466403961, -0.13595163822174072, -0.29008814692497253, -0.21744874119758606, 0.16278432309627533, -0.15817515552043915, 0.07864454388618469, 0.520220160484314, 0.0006766520673409104, -0.2774006724357605, -0.5367476344108582, 0.20917938649654388, 0.4824536442756653, -0.25901123881340027, 0.8005766868591309, 0.6820393204689026, -0.48273107409477234, 0.27326974272727966, -0.41970935463905334, -0.17831602692604065, -0.36494725942611694, -0.09973116219043732, -0.12813203036785126, -0.5572393536567688, 0.8151446580886841, 0.5354512929916382, 0.21092970669269562, 0.7115551829338074, 0.346309632062912, -0.12079384922981262, 0.6370136737823486, 0.385249525308609, -0.36144712567329407, 0.6368300318717957, -1.0260143280029297, 0.06710918247699738, -0.8260229229927063, -0.5879579186439514, -0.4079187214374542, -0.4670814573764801, -0.5726811289787292, -0.6946976184844971, -0.01154917199164629, 0.11902806907892227, -0.2754667103290558, 0.7356277108192444, -0.7410926222801208, 0.5887256860733032, 0.5677782893180847, 0.2056809961795807, 0.1556144505739212, 0.15935920178890228, 0.013330206274986267, 0.06982061266899109, -0.7230380177497864, -0.5835882425308228, 1.2275348901748657, 0.17082081735134125, 0.3456127643585205, -0.09518222510814667, 0.6758700609207153, 0.32712846994400024, 0.36091887950897217, -0.41676560044288635, 0.5791208148002625, -0.05652044713497162, -0.9563098549842834, -0.2797941267490387, -0.24228957295417786, -1.099884271621704, -0.16249854862689972, -0.5396988391876221, -0.7030244469642639, 0.49031099677085876, 0.014371504075825214, -0.4445436894893646, 0.3563591539859772, -0.6531051993370056, 1.0096025466918945, -0.20552808046340942, -0.35726022720336914, 0.28431686758995056, -1.0376322269439697, 0.23635704815387726, 0.19021818041801453, 0.46802011132240295, -0.25514087080955505, -0.027380365878343582, 0.8865250945091248, -0.4578675329685211, 1.207595944404602, -0.12021878361701965, 0.38472047448158264, 0.8814003467559814, -0.2766467332839966, 0.3547888398170471, 0.09314104914665222, 0.11565302312374115, 0.5621926188468933, -0.08736838400363922, -0.6267188191413879, -0.4183034598827362, 0.5042761564254761, -0.9158352017402649, -0.18250031769275665, -0.4742559492588043, -0.5992171764373779, 0.3350100517272949, 0.3254565894603729, 0.4118860960006714, 0.3292456269264221, 0.08131547272205353, 0.3442627191543579, 0.31148210167884827, -0.4527738690376282, 0.32634177803993225, 0.2950981855392456, 0.0163579061627388, -0.6925702691078186, 0.9275969862937927, 0.4746735692024231, 0.08032552152872086, 0.4964560270309448, 0.11052747070789337, -0.354765385389328, -0.4615418016910553, -0.39733344316482544, 0.32582974433898926, -0.6143675446510315, -0.4161490797996521, -0.5383445024490356, -0.22338396310806274, -0.6865679621696472, -0.3039534389972687, -0.14879843592643738, -0.5290349125862122, -0.5886909365653992, -0.41721388697624207, 0.5933080911636353, 0.5266158580780029, -0.17508383095264435, 0.34608811140060425, -0.46094709634780884, 0.37953367829322815, 0.08792503923177719, 0.2584555447101593, 0.04949711635708809, -0.3185917139053345, -0.18336695432662964, 0.02208215370774269, -0.5803663730621338, -0.8679197430610657, 0.41399770975112915, -0.06569943577051163, 0.6975044012069702, 0.5020622611045837, 0.365778386592865, 0.8026504516601562, -0.015803027898073196, 1.184670329093933, 0.35916799306869507, -0.6878378391265869, 0.6178962588310242, -0.5247747898101807, 0.14650531113147736, 0.5716537833213806, 0.3321976363658905, -0.5075807571411133, -0.19149959087371826, -0.8833334445953369, -1.1460713148117065, 0.8605110049247742, 0.4872720539569855, 0.17111200094223022, -0.1512138396501541, 0.2677181363105774, -0.0745166540145874, 0.34949392080307007, -0.9855126738548279, -0.678293764591217, -0.42613252997398376, -0.2612818479537964, -0.11610617488622665, -0.13748770952224731, -0.2658756673336029, -0.5432668328285217, 0.4403265714645386, -0.04966854676604271, 0.38417330384254456, 0.280676007270813, -0.01972568780183792, -0.03714670613408089, -0.25270381569862366, 0.6372283697128296, 0.4027511775493622, -0.2185957282781601, 0.04575048014521599, 0.15670959651470184, -0.4690110385417938, -0.22038644552230835, -0.08479512482881546, -0.3187945783138275, -0.18993191421031952, 0.7469894289970398, 0.8633309602737427, 0.16979949176311493, -0.48214229941368103, 0.7085504531860352, 0.11009781807661057, -0.42089393734931946, -0.5907047390937805, 0.022928791120648384, -0.23772594332695007, 0.10578147321939468, 0.3408096730709076, 0.0369659848511219, 0.08851815015077591, -0.6213496327400208, 0.15165388584136963, 0.12149844318628311, -0.27783453464508057, -0.2201618105173111, 0.8008752465248108, -0.04300478473305702, -0.12790675461292267, 0.6779571175575256, -0.4937145709991455, -0.2195078432559967, 1.1281932592391968, 0.30443692207336426, 0.6087200045585632, 0.16442567110061646, 0.4142236113548279, 0.9259653687477112, 0.5687962174415588, -0.005043066572397947, 0.46658703684806824, -0.2514638304710388, -0.6336038708686829, -0.1547611802816391, -0.3524848222732544, -0.31081852316856384, 0.35414841771125793, -0.7512243986129761, 0.45590540766716003, -0.6667650938034058, -0.0478934571146965, -0.06746364384889603, 0.23900863528251648, -1.064268946647644, 0.2987431585788727, 0.05737890303134918, 0.945669949054718, -1.1715397834777832, 0.49158966541290283, 0.616294264793396, -0.9591737389564514, -0.8043575882911682, -0.2827540338039398, 0.007092599757015705, -0.8537403345108032, 0.38175535202026367, 0.39710164070129395, 0.3912186324596405, -0.14984720945358276, -1.1132756471633911, -0.9573048949241638, 1.6537809371948242, 0.29632946848869324, -0.35812458395957947, 0.2557132840156555, 0.40144380927085876, 0.4521902799606323, -0.6981220245361328, 0.32122543454170227, 0.5104341506958008, 0.6098255515098572, 0.42720213532447815, -0.44126802682876587, 0.1756063550710678, -0.37619444727897644, -0.014632431790232658, -0.23297001421451569, -0.9219000935554504, 0.7512306571006775, -0.45988786220550537, -0.30705663561820984, 0.09933587908744812, 0.47629010677337646, 0.30869099497795105, 0.48262283205986023, 0.504671037197113, 0.6017895936965942, 0.5050010681152344, -0.20842579007148743, 1.1350656747817993, -0.3562561273574829, 0.6170350313186646, 1.0239582061767578, 0.10777886211872101, 0.6619446277618408, 0.34525150060653687, -0.24372519552707672, 0.37814950942993164, 0.8740043640136719, -0.6122809052467346, 0.5417057871818542, 0.1560925990343094, 0.01602991484105587, 0.037099920213222504, -0.3470974266529083, -0.2564053535461426, 0.3402611017227173, 0.31302276253700256, -0.45846888422966003, -0.0751047432422638, -0.052190154790878296, 0.17726711928844452, -0.19577574729919434, -0.3043923079967499, 0.5440016984939575, -0.1835786998271942, -0.21730870008468628, 0.4599497318267822, -0.2470978945493698, 0.4237186908721924, -0.26523515582084656, -0.10007781535387039, -0.18837720155715942, -0.25984036922454834, -0.6652442216873169, -1.077105164527893, 0.41076210141181946, 0.024258993566036224, -0.2708761692047119, -0.09372375160455704, 0.3997684717178345, -0.18834789097309113, -0.8006873726844788, 0.2044200599193573, 0.13784952461719513, 0.48308447003364563, 0.17033067345619202, -0.9596517086029053, 0.23457379639148712, 0.06381314247846603, -0.34752702713012695, -0.0023536907974630594, 0.331428587436676, -0.23173320293426514, 0.2835834324359894, 0.7730899453163147, 0.01622493378818035, 0.2027280330657959, 0.20238281786441803, 0.8395717740058899, -0.556354284286499, -0.25469905138015747, -0.6530857682228088, 0.7525020241737366, -0.48301056027412415, -0.2671869099140167, 0.82366544008255, 0.958057165145874, 1.0984371900558472, -0.19324758648872375, 0.830052375793457, -0.5329064130783081, 0.1444210410118103, -0.19939377903938293, 0.7250183820724487, -0.6221936345100403, -0.13699983060359955, -0.522805392742157, -0.788564920425415, -0.7753332257270813, 0.8487994074821472, -0.49461647868156433, -0.008657603524625301, 0.4364258646965027, 0.9204077124595642, -0.014908348210155964, 0.062810018658638, 0.13852521777153015, 0.21890906989574432, 0.23071496188640594, 0.42624038457870483, 0.37603721022605896, -0.7328921556472778, 0.7896444201469421, -0.7489518523216248, -0.2715369164943695, -0.20180688798427582, -1.0681308507919312, -0.8435648083686829, -0.6850064396858215, -0.7080375552177429, -0.15182864665985107, -0.18736445903778076, 0.6781993508338928, 0.8832538723945618, -1.1474847793579102, -0.29778385162353516, -0.1540626734495163, 0.1296212375164032, -0.31257233023643494, -0.30374637246131897, 0.5187807679176331, 0.17661157250404358, -0.6910123229026794, -0.1451517641544342, 0.08914154022932053, 0.2525038719177246, 0.05099250376224518, -0.14155496656894684, -0.12194815278053284, -0.16742277145385742, 0.6130232810974121, 0.5189175009727478, -0.45345595479011536, -0.26925408840179443, 0.00988724920898676, 0.1163908839225769, 0.3430212140083313, 0.5374873876571655, -0.30036720633506775, 0.5039871335029602, 0.5500089526176453, 0.07984183728694916, 0.7507292032241821, -0.061859820038080215, -0.24940697848796844, -0.7855598330497742, 0.19652795791625977, 0.02616487443447113, 0.4746258556842804, 0.4433600604534149, -0.3772321939468384, 0.7699735164642334, 0.4717249572277069, -0.4749873876571655, -0.9092006087303162, -0.05290021002292633, -1.4076745510101318, 0.09570233523845673, 1.0035018920898438, -0.1361086666584015, -0.4365716576576233, -0.15741533041000366, -0.3234069049358368, 0.37603944540023804, -0.6574137210845947, 0.8007795214653015, 0.6454824209213257, -0.13517217338085175, -0.45671823620796204, -0.7074257135391235, 0.054170627146959305, -0.2787724733352661, -0.8387399315834045, -0.07212020456790924, 0.3998974561691284, 0.3554673492908478, 0.6339475512504578, 0.7195795774459839, -0.5577964782714844, -0.07475929707288742, 0.12099738419055939, 0.3866193890571594, -0.1837719976902008, -0.32962465286254883, -0.06579294800758362, 0.04626064375042915, -0.1369827389717102, -0.5795519351959229 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
andstor/the_pile_github
andstor
2023-03-20T23:39:53Z
213
3
null
[ "task_categories:text-generation", "task_categories:fill-mask", "task_categories:text-classification", "annotations_creators:no-annotation", "language_creators:found", "multilinguality:monolingual", "source_datasets:original", "language:en", "license:other", "arxiv:2101.00027", "arxiv:2201.07311", "region:us" ]
2023-03-20T23:39:53Z
2023-03-07T15:53:05.000Z
2023-03-07T15:53:05
--- annotations_creators: - no-annotation language: - en language_creators: - found license: - other multilinguality: - monolingual pretty_name: The Pile GitHub size_categories: [] source_datasets: - original tags: [] task_categories: - text-generation - fill-mask - text-classification task_ids: [] --- # Dataset Card for The Pile GitHub ## Table of Contents - [Dataset Card for Smart Contracts](#dataset-card-for-the-pile-github) - [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) - [Additional Information](#additional-information) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [ElutherAI](https://pile.eleuther.ai) - **Repository:** [GitHub](https://github.com/andstor/the-pile-github) - **Paper:** [arXiv](https://arxiv.org/abs/2101.00027) - **Leaderboard:** [Needs More Information] - **Point of Contact:** [Needs More Information] ### Dataset Summary This is the GitHub subset of EleutherAi/The Pile dataset and contains GitHub repositories. The programming languages are identified using the [guesslang library](https://github.com/yoeo/guesslang). A total of 54 programming languages are included in the dataset. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages The following languages are covered by the dataset: ``` 'Assembly', 'Batchfile', 'C', 'C#', 'C++', 'CMake', 'COBOL', 'CSS', 'CSV', 'Clojure', 'CoffeeScript', 'DM', 'Dart', 'Dockerfile', 'Elixir', 'Erlang', 'Fortran', 'Go', 'Groovy', 'HTML', 'Haskell', 'INI', 'JSON', 'Java', 'JavaScript', 'Julia', 'Kotlin', 'Lisp', 'Lua', 'Makefile', 'Markdown', 'Matlab', 'None', 'OCaml', 'Objective-C', 'PHP', 'Pascal', 'Perl', 'PowerShell', 'Prolog', 'Python', 'R', 'Ruby', 'Rust', 'SQL', 'Scala', 'Shell', 'Swift', 'TOML', 'TeX', 'TypeScript', 'Verilog', 'Visual Basic', 'XML', 'YAML' ``` The [guesslang library](https://github.com/yoeo/guesslang) is used to identify the programming languages. It has a guessing accuracy of above 90%. Hence, there will be some misclassifications in the language identification. ## Dataset Structure ### Data Instances [More Information Needed] ``` { 'text': ..., 'meta': {'language': ...} } ``` ### Data Fields - `text` (`string`): the source code. - `meta` (`dict`): the metadata of the source code. - `language` (`string`): the programming language of the source code. ### Data Splits [More Information Needed] | | train | validation | test | |-------------------------|------:|-----------:|-----:| | Input Sentences | | | | | Average Sentence Length | | | | ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data The data is purely a subset of the [EleutherAI/The Pile dataset](https://huggingface.co/datasets/the_pile). See the original [dataset](https://arxiv.org/abs/2201.07311) for more details. ## Additional Information ### Licensing Information The Pile dataset was released on January 1st, 2021. It is licensed under the MIT License. See the [dataset](https://arxiv.org/abs/2201.07311) for more details. ### Citation Information Provide the [BibTex](http://www.bibtex.org/)-formatted reference for the dataset. For example: ``` @article{pile, title={The {P}ile: An 800GB Dataset of Diverse Text for Language Modeling}, author={Gao, Leo and Biderman, Stella and Black, Sid and Golding, Laurence and Hoppe, Travis and Foster, Charles and Phang, Jason and He, Horace and Thite, Anish and Nabeshima, Noa and Presser, Shawn and Leahy, Connor}, journal={arXiv preprint arXiv:2101.00027}, year={2020} } ``` ### Contributions Thanks to [@andstor](https://github.com/andstor) for adding this dataset.
[ -0.492367684841156, -0.5299909114837646, 0.15657909214496613, 0.08172404766082764, -0.1258634626865387, 0.28519219160079956, -0.2268715649843216, -0.39297914505004883, 0.42327699065208435, 0.5160645842552185, -0.315960556268692, -0.8168615698814392, -0.4284817576408386, 0.021639248356223106, -0.42048439383506775, 1.3700816631317139, 0.14547395706176758, -0.32375022768974304, -0.20129422843456268, -0.23731708526611328, -0.23147492110729218, -0.3532320261001587, -0.2317170798778534, -0.06907881796360016, 0.2590395510196686, 0.628754734992981, 0.7874382138252258, 0.996734619140625, 0.4768529236316681, 0.3059655725955963, 0.041953954845666885, -0.05054585635662079, -0.24332648515701294, -0.32407131791114807, -0.011701550334692001, -0.5260085463523865, -0.4718775451183319, -0.03509485721588135, 0.5855022668838501, 0.5587142705917358, -0.22634640336036682, 0.3786776065826416, -0.27761921286582947, 0.9383392333984375, -0.48382291197776794, 0.19861362874507904, -0.47649410367012024, -0.11939119547605515, -0.5287906527519226, -0.2120804637670517, -0.21327747404575348, -0.42059987783432007, -0.0754057988524437, -0.7188357710838318, 0.12983830273151398, 0.30246028304100037, 0.9924766421318054, 0.28289633989334106, -0.06738113611936569, -0.48233193159103394, -0.44596153497695923, 0.7311534285545349, -0.9236078858375549, 0.1991787701845169, 0.6387215852737427, 0.24154503643512726, -0.0591023787856102, -0.5909430980682373, -0.5814171433448792, -0.15255706012248993, -0.3587252199649811, 0.1735702008008957, 0.14189167320728302, -0.3138411343097687, 0.44688794016838074, 0.5045939683914185, -1.0484338998794556, -0.030007895082235336, -0.6732348799705505, -0.3221989870071411, 0.8912106156349182, -0.07991701364517212, 0.43580976128578186, -0.604885995388031, -0.18101897835731506, -0.2511706054210663, -0.42759808897972107, 0.22886095941066742, 0.6137180924415588, 0.3011956214904785, -0.6312978863716125, 0.8170017004013062, -0.25430595874786377, 0.7336761355400085, -0.009024995379149914, -0.2020668089389801, 0.8304904103279114, -0.36425119638442993, -0.19385267794132233, -0.05559086427092552, 1.1028742790222168, 0.19977186620235443, 0.1666247695684433, 0.00027572718681767583, 0.000002910188868554542, -0.054754070937633514, 0.021287601441144943, -0.4398595094680786, -0.6002479791641235, 0.881191074848175, -0.37017354369163513, -0.42233365774154663, 0.3593599498271942, -0.847990095615387, -0.3779841661453247, -0.022219214588403702, -0.14521735906600952, -0.6002299785614014, -0.28811806440353394, 0.016027603298425674, -0.29659995436668396, 0.4117949903011322, -0.03061435930430889, -0.728255569934845, 0.3424515426158905, 0.6704468727111816, 0.7456133365631104, -0.012047797441482544, -0.4823022186756134, -0.4371032416820526, 0.020533349364995956, -0.28031477332115173, 0.8966048955917358, -0.3095913231372833, -0.013450446538627148, 0.007153137121349573, 0.14553487300872803, -0.09689493477344513, -0.5066077709197998, 0.6716046929359436, -0.2965635657310486, 0.6443579792976379, -0.16671019792556763, -0.5382692813873291, -0.21247850358486176, 0.2578592300415039, -0.9290850162506104, 1.381327509880066, 0.3635742664337158, -1.2484517097473145, 0.37097981572151184, -0.7808337211608887, -0.4790845215320587, 0.37984415888786316, -0.16629843413829803, -0.6036982536315918, -0.2995321750640869, 0.06468811631202698, 0.34679558873176575, -0.12636885046958923, 0.4003118574619293, -0.193253755569458, -0.29213911294937134, 0.13445180654525757, 0.1733826994895935, 1.3518340587615967, 0.42941486835479736, -0.29962965846061707, 0.05150869861245155, -0.8681851625442505, 0.04648421332240105, 0.2871813178062439, -0.47304466366767883, -0.17208589613437653, 0.04750286787748337, 0.11314300447702408, 0.18824920058250427, 0.4462427794933319, -0.36351755261421204, 0.2350061684846878, -0.47777682542800903, 0.3972891569137573, 0.49956247210502625, -0.2682800889015198, 0.5418562889099121, -0.6611074805259705, 0.6532186269760132, 0.02163618989288807, -0.06951382756233215, -0.12397674471139908, -0.5957807898521423, -0.6758154630661011, -0.2894207835197449, 0.4367292523384094, 1.0826869010925293, -0.8028594851493835, 0.7550563216209412, -0.5126237869262695, -0.7170803546905518, -0.5877459645271301, 0.06823145598173141, 0.23175552487373352, 0.3546000123023987, 0.23014138638973236, -0.09913235902786255, -0.7741672396659851, -0.8029276132583618, 0.02466772124171257, -0.4073333740234375, -0.05355551466345787, 0.41620540618896484, 0.7830484509468079, -0.023567190393805504, 1.0155186653137207, -0.5758475065231323, -0.1279156506061554, -0.26537391543388367, -0.03595574200153351, 0.4988941550254822, 0.5167470574378967, 0.7117714285850525, -0.8393430709838867, -0.7326112985610962, 0.24493572115898132, -0.5953478813171387, -0.008368665352463722, -0.11700929701328278, -0.06590113788843155, 0.46892431378364563, 0.40960440039634705, -0.5185825228691101, 0.04556228965520859, 0.7958341836929321, -0.39617258310317993, 0.801226019859314, -0.2803838849067688, 0.16374997794628143, -1.1736118793487549, 0.5638545751571655, -0.19438202679157257, -0.11157664656639099, -0.4102290868759155, 0.07048268616199493, 0.07266439497470856, 0.017481600865721703, -0.5013298392295837, 0.622829020023346, -0.4552508294582367, -0.07066281139850616, 0.2634678781032562, 0.28954750299453735, -0.09731898456811905, 0.6417011022567749, -0.15815763175487518, 0.709730327129364, 0.9558805227279663, -0.5882038474082947, 0.4548909068107605, 0.2675049304962158, -0.4443327784538269, 0.33090609312057495, -0.6612024307250977, 0.11708589643239975, -0.17455467581748962, 0.19543340802192688, -0.9046691060066223, -0.4172065854072571, 0.5757803916931152, -0.6216772198677063, 0.1283654272556305, -0.2897186279296875, -0.5122323036193848, -0.7075335383415222, -0.6209136843681335, 0.11107329279184341, 0.5110215544700623, -0.09717018902301788, 0.3694034516811371, 0.5820485353469849, -0.08675792813301086, -0.8122159838676453, -0.7948996424674988, -0.037616413086652756, -0.42346176505088806, -0.528685450553894, 0.38308408856391907, -0.5564870238304138, -0.20643262565135956, 0.13811951875686646, 0.26896563172340393, -0.1804802119731903, -0.028932735323905945, 0.12484350055456161, 0.07443781942129135, 0.07865489274263382, -0.008965627290308475, -0.2616621255874634, -0.25205695629119873, -0.15602724254131317, -0.3420347571372986, 0.55805504322052, -0.26699528098106384, -0.22495464980602264, -0.07014308869838715, 0.19740277528762817, 0.6464517712593079, -0.3344971239566803, 0.7100330591201782, 0.6712179780006409, -0.31948480010032654, -0.05415160208940506, -0.43363669514656067, 0.23735901713371277, -0.44625601172447205, 0.39276832342147827, -0.4141730070114136, -0.835348904132843, 0.9685698747634888, 0.23068174719810486, 0.20680966973304749, 0.6317416429519653, 0.5679166316986084, -0.22013279795646667, 0.59907466173172, 0.4531240165233612, -0.3979516327381134, 0.45846056938171387, -0.4560304284095764, 0.021223468706011772, -0.6849724054336548, -0.12091376632452011, -0.9510635137557983, -0.13111461699008942, -1.0821243524551392, -0.5362672209739685, -0.06298007816076279, 0.11084428429603577, -0.25793734192848206, 0.7377455830574036, -0.6641792058944702, 0.4305533766746521, 0.7749944925308228, -0.08408273011445999, 0.1957050859928131, 0.01400019321590662, -0.24354447424411774, 0.28190332651138306, -0.8215407133102417, -0.6070342063903809, 1.0809121131896973, 0.2581678628921509, 0.23265589773654938, 0.04474472254514694, 0.7452656030654907, 0.4271300435066223, 0.03568662330508232, -0.6162005662918091, 0.5155483484268188, -0.23471924662590027, -0.7955144643783569, -0.45627087354660034, -0.4840751588344574, -1.2008956670761108, -0.04822947829961777, 0.03929060697555542, -0.7171334028244019, 0.0433632917702198, 0.09916791319847107, -0.14282110333442688, 0.31922391057014465, -0.7205938696861267, 0.9479079246520996, -0.2168385237455368, 0.07114876061677933, 0.06576810777187347, -0.7757636308670044, 0.22813023626804352, 0.010465334169566631, 0.7866806983947754, -0.14951349794864655, -0.06848255544900894, 0.9471414089202881, -0.5141467452049255, 0.6473838090896606, -0.08325307071208954, -0.041826993227005005, 0.6859967708587646, 0.02076146751642227, 0.7183722853660583, -0.06500416249036789, -0.24123245477676392, 0.3397309482097626, 0.10269081592559814, -0.6044774055480957, -0.3028109669685364, 0.6482471823692322, -0.7423985600471497, -0.20561471581459045, -0.49683254957199097, -0.6020138263702393, 0.25443214178085327, 0.46868133544921875, 0.3713146150112152, 0.19048896431922913, -0.030484367161989212, 0.18743553757667542, 0.43766599893569946, -0.47637611627578735, 0.4145102798938751, 0.4075908362865448, -0.17049144208431244, -0.6263507604598999, 1.0194799900054932, 0.16986846923828125, 0.009780255146324635, 0.664092481136322, 0.35033440589904785, -0.20297999680042267, -0.663865864276886, -0.5410063862800598, 0.39084887504577637, -0.5054513216018677, -0.13751734793186188, -0.6983681321144104, -0.09331785142421722, -0.6045854687690735, -0.13719268143177032, -0.15286602079868317, -0.5329832434654236, -0.10444068163633347, -0.2948605418205261, 0.5706835389137268, 0.4916725754737854, -0.0366361103951931, 0.04909979924559593, -0.7537830471992493, 0.22133466601371765, 0.01570102572441101, 0.6805499792098999, -0.3354964554309845, -0.4236529767513275, -0.5489656329154968, 0.16738852858543396, 0.07127368450164795, -0.8746507167816162, 0.5817782878875732, 0.09850215911865234, 0.752960741519928, 0.07326389849185944, 0.16429375112056732, 0.3550376296043396, -0.35836002230644226, 0.9021305441856384, -0.11276561766862869, -0.774917483329773, 0.7161586880683899, -0.6607312560081482, 0.4814244508743286, 0.6051626205444336, 0.4610270857810974, -0.7400014996528625, -0.5329015254974365, -0.9273485541343689, -0.8317844271659851, 0.8502240777015686, 0.1857910454273224, -0.21631234884262085, -0.04398558288812637, -0.02041095867753029, 0.03456968814134598, 0.2884877920150757, -0.8971716165542603, -0.6503950953483582, -0.12098913639783859, -0.33907148241996765, -0.04267336428165436, -0.0928935632109642, -0.10478587448596954, -0.036288123577833176, 0.7445053458213806, -0.191696897149086, 0.26017463207244873, -0.04273483157157898, -0.14993064105510712, -0.20683653652668, 0.27400636672973633, 0.6011438369750977, 0.5915572643280029, -0.3339148759841919, 0.05296294391155243, 0.023492934182286263, -0.6586524248123169, -0.27000752091407776, 0.11852134019136429, -0.37342914938926697, -0.10007216781377792, 0.49870437383651733, 0.6830416321754456, -0.08469364792108536, -0.9135962724685669, 0.36026087403297424, 0.24924300611019135, -0.3064063489437103, -0.5046827793121338, -0.12400830537080765, 0.10947109758853912, 0.07347708940505981, 0.3913223445415497, 0.13721297681331635, 0.23347048461437225, -0.36875098943710327, 0.3938267230987549, 0.22002056241035461, -0.23703403770923615, -0.13213394582271576, 0.383609414100647, -0.006358259357511997, -0.40306562185287476, 0.6076374053955078, -0.5193700194358826, -0.5806329250335693, 0.9088210463523865, 0.17953750491142273, 0.7706159353256226, 0.005650200881063938, 0.4549867808818817, 0.675435483455658, 0.5277585387229919, 0.08613528311252594, 0.4771987199783325, 0.21788689494132996, -0.8386439681053162, -0.5332391262054443, -0.46421387791633606, -0.19961827993392944, 0.09612319618463516, -0.44690948724746704, 0.35493355989456177, -0.3493679165840149, 0.15479843318462372, -0.19189317524433136, 0.369646281003952, -0.7355455756187439, 0.08579054474830627, 0.11150959879159927, 0.8127776384353638, -1.0401709079742432, 0.8601752519607544, 1.119875431060791, -0.591376543045044, -0.8245739340782166, -0.32471907138824463, -0.023582464084029198, -0.6721704602241516, 0.2832701802253723, -0.10809215903282166, 0.4681946635246277, -0.012962919659912586, -0.7233614325523376, -1.0710989236831665, 1.1402662992477417, 0.24192267656326294, -0.38229086995124817, 0.2794952690601349, 0.1683790534734726, 0.5378519892692566, -0.12951968610286713, 0.4687338173389435, 0.527449369430542, 0.7737665176391602, 0.0021191106643527746, -1.1257882118225098, 0.09338758885860443, -0.6554363369941711, -0.3411361277103424, 0.20184695720672607, -0.681891918182373, 0.7518605589866638, -0.253507137298584, -0.24476273357868195, -0.18813471496105194, 0.5122946500778198, 0.5846216678619385, 0.17707909643650055, 0.48444560170173645, 0.8166099190711975, 1.0948302745819092, -0.19080005586147308, 1.3365215063095093, -0.4348682165145874, 0.6183602213859558, 1.127799153327942, 0.1073729395866394, 0.7829727530479431, 0.27833279967308044, -0.5527352094650269, 0.8044212460517883, 0.6801765561103821, -0.1958271563053131, 0.33826902508735657, 0.23590239882469177, 0.3374331295490265, 0.1386433243751526, -0.08988983929157257, -0.440192848443985, 0.17730265855789185, 0.33073222637176514, -0.08551763743162155, 0.1529027372598648, -0.2037193924188614, 0.19563131034374237, 0.02843361347913742, 0.0745445117354393, 0.6785314679145813, -0.18443216383457184, -0.5622416734695435, 0.6340292692184448, -0.029419463127851486, 0.7965466380119324, -0.5655472874641418, 0.04791930690407753, -0.22236990928649902, -0.11428201198577881, -0.5410682559013367, -0.9009541273117065, 0.41353267431259155, -0.21406319737434387, -0.3182215392589569, -0.2273944616317749, 0.5319895148277283, -0.5588743686676025, -0.5982016921043396, 0.13479933142662048, 0.5175337791442871, 0.3984276354312897, 0.18537238240242004, -1.0530900955200195, 0.12278289347887039, 0.21561193466186523, -0.35922133922576904, 0.2870928943157196, 0.6998889446258545, -0.08426164835691452, 0.8547213077545166, 0.7304883599281311, 0.2074565589427948, 0.09938332438468933, 0.059411536902189255, 0.7127050757408142, -0.7650540471076965, -0.6232307553291321, -0.585283637046814, 0.9077035784721375, -0.2002527415752411, -0.3993180990219116, 0.8164534568786621, 0.8401376008987427, 1.1109222173690796, -0.18819841742515564, 0.9755135774612427, -0.8137642741203308, 0.6608615517616272, -0.36627769470214844, 0.5659958720207214, -0.46754464507102966, 0.1284894198179245, -0.5542985200881958, -0.8926121592521667, -0.40814751386642456, 0.621774435043335, -0.30724090337753296, 0.21710816025733948, 0.8871234655380249, 0.7901962995529175, 0.23174673318862915, -0.2744345963001251, 0.11641144007444382, 0.27403101325035095, 0.20907460153102875, 0.5668651461601257, 0.37397128343582153, -0.6903303861618042, 0.6979556679725647, -0.6645509600639343, -0.22979648411273956, -0.19888585805892944, -1.0955982208251953, -0.6691750288009644, -0.707390546798706, -0.6378084421157837, -0.34230199456214905, -0.18826064467430115, 0.7816853523254395, 0.7020958662033081, -1.2303601503372192, -0.5330761075019836, -0.1798422634601593, 0.38183021545410156, -0.4854632616043091, -0.3382161259651184, 0.6940629482269287, -0.010228218510746956, -0.7349570393562317, 0.13988381624221802, 0.04621228948235512, -0.06405074149370193, -0.12292913347482681, -0.3234109878540039, -0.4863508939743042, -0.34403708577156067, 0.332315593957901, 0.5364536643028259, -0.5300722122192383, -0.136472687125206, 0.12850748002529144, -0.2830790877342224, 0.13598129153251648, 0.5728640556335449, -0.6354209184646606, 0.21291445195674896, 1.0205891132354736, 0.323467880487442, 0.327266663312912, 0.1015855073928833, 0.3153703212738037, -0.6955474615097046, 0.30342257022857666, 0.19272637367248535, 0.41423824429512024, 0.37561091780662537, -0.5550322532653809, 0.7760594487190247, 0.16939303278923035, -0.5218826532363892, -0.5276347398757935, -0.05146326869726181, -1.1458048820495605, -0.2907092571258545, 1.0669465065002441, -0.07461952418088913, -0.1820361316204071, -0.38900911808013916, -0.22183336317539215, 0.15820780396461487, -0.5157594084739685, 0.5413583517074585, 0.8406752943992615, 0.14787088334560394, -0.21620790660381317, -0.5607492923736572, 0.5480759739875793, 0.18114787340164185, -1.0295449495315552, 0.045790717005729675, 0.518212080001831, 0.1981048434972763, 0.43348556756973267, 0.8668550848960876, -0.20368598401546478, 0.012561514973640442, -0.005813720170408487, 0.29476839303970337, -0.017582008615136147, -0.24355007708072662, -0.14954185485839844, 0.08773810416460037, -0.028628408908843994, -0.035140909254550934 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
pkr7098/bookcorpus-wikipedia-full
pkr7098
2023-10-31T01:06:21Z
213
0
null
[ "region:us" ]
2023-10-31T01:06:21Z
2023-10-30T11:59:38.000Z
2023-10-30T11:59:38
--- dataset_info: config_name: 20220301.en features: - name: text dtype: string splits: - name: train num_bytes: 24500165181 num_examples: 80462898 download_size: 0 dataset_size: 24500165181 configs: - config_name: 20220301.en data_files: - split: train path: 20220301.en/train-* --- # Dataset Card for "bookcorpus-wikipedia-full" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6278618574142456, -0.14876925945281982, -0.018703393638134003, 0.19362512230873108, -0.3499329090118408, -0.08987855166196823, 0.0379062220454216, -0.1501096785068512, 0.7443425059318542, 0.6410779356956482, -0.8940422534942627, -0.8961302042007446, -0.36988967657089233, -0.03744061663746834, -0.4241218864917755, 1.592820405960083, 0.07589945197105408, 0.006161290220916271, -0.5778005123138428, -0.08209488540887833, -0.1978076547384262, -0.45995956659317017, -0.5651696920394897, -0.5618507862091064, 1.0061968564987183, 0.8893578052520752, 0.6408636569976807, 0.5600162744522095, 0.6146389245986938, 0.1237860918045044, 0.21213990449905396, -0.25558340549468994, -0.5982255935668945, -0.11651365458965302, -0.5048457384109497, -0.42831510305404663, -0.7833532094955444, 0.01991891860961914, 0.735051155090332, 0.6958423852920532, -0.3061130940914154, 0.9829401969909668, -0.11527714878320694, 0.8609750270843506, -0.4118698239326477, 0.6865541338920593, 0.09492743015289307, -0.001428987830877304, -0.4086190462112427, -0.20447809994220734, 0.08693963289260864, -0.252191960811615, -0.03365273401141167, -1.4274425506591797, 0.5341457724571228, 0.29881784319877625, 0.838614821434021, 0.1880555897951126, -0.20401370525360107, -0.36830660700798035, -0.6392339468002319, 0.03734888881444931, 0.06330818682909012, 0.3838837742805481, 0.5718300342559814, 0.14376185834407806, -0.06766555458307266, -0.6747812628746033, -0.7785858511924744, -0.015962252393364906, -0.12649178504943848, 0.3744342029094696, 0.0021259579807519913, 0.03069869428873062, 0.5592507123947144, 0.6922550201416016, -0.5163302421569824, -0.22447022795677185, -0.7441087365150452, -0.24098454415798187, 0.7567085027694702, -0.06237497553229332, 0.3807348310947418, -0.16041384637355804, -0.22543129324913025, -0.471617728471756, -0.5619910359382629, 0.05603363364934921, 0.520954966545105, 0.12012439221143723, -0.9725475907325745, 0.7814939022064209, -0.09107913076877594, 0.3628593683242798, -0.06744542717933655, 0.639387845993042, 0.5500141382217407, -0.3913027346134186, -0.33652758598327637, 0.33693787455558777, 0.44995737075805664, 0.3411734402179718, 0.40033286809921265, -0.3251112103462219, 0.3849376142024994, -0.17373865842819214, 0.27166852355003357, -1.0897387266159058, -0.6795980930328369, 0.5822837352752686, -0.45491278171539307, -0.2769494354724884, 0.3758094012737274, -0.8830634355545044, -0.7321162223815918, -0.5734390020370483, 0.06410400569438934, -0.13378304243087769, -0.7420562505722046, -0.14363569021224976, -0.8876050710678101, 0.4351191818714142, -0.03749918192625046, -0.8407428860664368, 0.3490268290042877, 0.8203072547912598, 0.6038832664489746, 0.3214852809906006, -0.40609970688819885, -0.7750004529953003, 0.7956058979034424, -0.4106188416481018, 1.0305225849151611, -0.4133031666278839, -0.6966938972473145, 0.18628379702568054, 0.46377578377723694, 0.3133343458175659, -0.33475741744041443, 0.9809105396270752, -0.41374173760414124, -0.26438474655151367, -0.8637913465499878, -0.7625365257263184, 0.04207611829042435, 0.1712431013584137, -1.1896553039550781, 0.9357213377952576, 0.12144707143306732, -0.7869138717651367, 0.3718777298927307, -1.153883457183838, -0.32309627532958984, 0.6695363521575928, -0.027951592579483986, -0.11965783685445786, 0.08732578903436661, -0.26330289244651794, 0.32344865798950195, -0.14268739521503448, 0.35219743847846985, -0.7530375123023987, -0.3275102972984314, 0.2533719539642334, 0.31862330436706543, 1.1025246381759644, -0.003528207540512085, 0.35716861486434937, 0.06710793823003769, -1.121396780014038, -0.35171210765838623, 0.20849831402301788, -0.07051409035921097, -0.5708123445510864, -0.3704148530960083, 0.1839832067489624, -0.34114229679107666, 0.4655334949493408, -0.5379587411880493, 0.6542085409164429, 0.0523173063993454, -0.45607227087020874, 0.6410424709320068, 0.053968530148267746, 0.4737175703048706, -0.39667242765426636, 0.3709013760089874, -0.06472919881343842, 0.5529619455337524, 0.1613926887512207, -0.438970685005188, -0.8195618987083435, -0.17851175367832184, 0.6852837204933167, 0.8315044641494751, -0.5680074095726013, 0.6909056901931763, -0.37252652645111084, -0.9592820405960083, -0.21717655658721924, 0.25686901807785034, 0.22706669569015503, 0.3317667245864868, 0.3409101665019989, -0.4397922456264496, -0.5249835252761841, -0.8580484390258789, 0.2038094401359558, -0.14645160734653473, -0.2133159041404724, 0.39432504773139954, 0.8514755368232727, -0.4557684063911438, 0.610040545463562, -0.752718448638916, -0.34558290243148804, 0.23997977375984192, -0.2265002727508545, 0.3541263937950134, 0.4032345414161682, 0.5566877126693726, -0.9405937790870667, -0.45545801520347595, -0.3301182687282562, -0.5603238940238953, 0.04684514179825783, 0.37582269310951233, -0.9164671301841736, -0.2752533257007599, 0.04648974910378456, -0.8377216458320618, 0.5869938731193542, 0.7090804576873779, -0.7883239984512329, 0.3463325798511505, -0.14859707653522491, 0.20990443229675293, -1.4188406467437744, 0.47373273968696594, 0.07882210612297058, 0.06512323766946793, -0.462314635515213, -0.06275898218154907, 0.24174226820468903, -0.2520560622215271, 0.3009442687034607, 0.6247742772102356, -0.34779980778694153, -0.04675301909446716, 0.10885269939899445, 0.17028126120567322, 0.060389310121536255, 0.22076693177223206, 0.0721738338470459, 0.5269495248794556, 1.055880069732666, -0.7172913551330566, 1.298958659172058, 0.9003729224205017, -0.027796389535069466, 0.7480061054229736, -0.5820649862289429, -0.0916268453001976, -0.17169241607189178, 0.5491631031036377, -0.9824478626251221, -0.7082287073135376, 0.6780610084533691, -0.38474488258361816, 0.5474755764007568, -0.41113466024398804, -0.8095362782478333, -0.6626560091972351, -0.5075806975364685, 0.4060862064361572, 0.32816147804260254, -0.799500584602356, 0.41271525621414185, 0.6344500780105591, -0.33006471395492554, -0.3803943991661072, -0.7765511870384216, 0.22303754091262817, 0.09344091266393661, -0.2488742619752884, 0.8149808645248413, -0.6229348182678223, 0.005745191127061844, 0.10810591280460358, 0.31576961278915405, -0.2902502119541168, -0.4812904894351959, 0.6267175078392029, 0.46713539958000183, -0.07177239656448364, 0.6683995723724365, 0.056646738201379776, -0.5659646987915039, 0.005408798344433308, -0.10097081959247589, 0.22934316098690033, 0.05944909155368805, -0.008253760635852814, -0.44851166009902954, 0.3584001660346985, 0.15194201469421387, -0.03239602595567703, 0.6634142994880676, 0.8842239379882812, -0.48157042264938354, -0.18903520703315735, -0.6138305068016052, 0.1554233878850937, -0.45009303092956543, -0.05991320312023163, 0.0018547885119915009, -0.43309128284454346, 0.43207913637161255, -0.036743804812431335, 0.0668797567486763, 0.8225678205490112, 0.5900552272796631, -0.08308668434619904, 0.11210468411445618, 0.7031770944595337, -0.361336350440979, 0.3076322376728058, -0.41870298981666565, -0.13337886333465576, -0.6864798069000244, -0.537553071975708, -0.7342133522033691, -0.31655940413475037, -0.6425506472587585, -0.42685505747795105, -0.24510863423347473, 0.19938147068023682, -0.17851081490516663, 0.6206823587417603, -0.8285358548164368, 0.44317105412483215, 0.8684796690940857, -0.0005392450839281082, 0.3354005217552185, 0.2278488576412201, 0.21408067643642426, 0.4599784016609192, -0.5726293921470642, -0.3276100754737854, 1.2628675699234009, 0.11100798845291138, 0.7364413738250732, 0.34765759110450745, 0.7841068506240845, 0.43530774116516113, 0.5356432199478149, -0.5188610553741455, 0.35590702295303345, 0.036236733198165894, -0.9787881374359131, -0.3667733073234558, -0.14457976818084717, -0.807243824005127, -0.5353479385375977, -0.31369656324386597, -0.2213868796825409, 0.5623383522033691, 0.3058484196662903, -0.2201901078224182, 0.18696418404579163, -0.9819396138191223, 1.0382940769195557, -0.14181041717529297, -0.19715353846549988, -0.3147789239883423, -0.3017655909061432, 0.04446767643094063, 0.16390559077262878, 0.4129877984523773, -0.06904589384794235, -0.5007756948471069, 0.9519057273864746, -0.36715900897979736, 1.0525388717651367, -0.49255889654159546, -0.17262372374534607, 0.3010939359664917, -0.29435214400291443, 0.16264137625694275, 0.4967647194862366, -0.08776986598968506, 0.31077539920806885, 0.4145476222038269, -0.6261751651763916, -0.1894480586051941, 0.7442091703414917, -0.8539131879806519, 0.11887001246213913, -0.6025769710540771, -0.33201247453689575, -0.2443799078464508, 0.36086326837539673, 0.273315966129303, 0.6894470453262329, -0.47112852334976196, 0.23568964004516602, 0.8888013362884521, -0.04830316826701164, 0.27819645404815674, 0.4259073734283447, -0.18871769309043884, -0.6999099254608154, 1.0528144836425781, 0.2342313677072525, -0.6275560855865479, 0.4291325509548187, 0.21265968680381775, -0.37920480966567993, -0.27690792083740234, -0.685433030128479, 0.45758336782455444, -0.3889273405075073, -0.34888485074043274, -0.1283665895462036, -0.32731127738952637, -0.6371965408325195, -0.03452716022729874, -0.12065952271223068, -0.461238294839859, -0.5364245176315308, -0.6784881949424744, 0.93443763256073, 0.8022921085357666, -0.5227024555206299, 0.2862589359283447, -0.9571573734283447, 0.783759593963623, 0.32814162969589233, 1.0847212076187134, -0.06462915241718292, -0.2334640622138977, -0.5464875102043152, -0.04162486270070076, -0.06529577076435089, -0.6383436918258667, -0.264564573764801, 0.2309211641550064, 0.6448342800140381, 0.2690433859825134, 0.1628311574459076, 0.5772989988327026, -0.3335946798324585, 0.6481560468673706, 0.3872468173503876, -0.5373247861862183, 0.3757484555244446, -0.33057650923728943, 0.11691877990961075, 0.7656885385513306, 0.8016422986984253, -0.5485427379608154, 0.30537837743759155, -1.0256383419036865, -0.6403630971908569, 0.5901469588279724, 0.16338177025318146, 0.39089691638946533, 0.31028422713279724, 0.6049787402153015, 0.2106795310974121, 0.3962354063987732, -0.8715730905532837, -0.8278385400772095, -0.24960091710090637, -0.37715595960617065, 0.02903173863887787, -0.7625318765640259, -0.4202613830566406, -0.6944125890731812, 1.0567245483398438, 0.20367100834846497, 0.1126377135515213, 0.2567123472690582, 0.3376893997192383, -0.1841946244239807, -0.008305173367261887, 0.1837919056415558, 0.7045316696166992, -0.36881333589553833, -0.35561603307724, -0.19653862714767456, -0.5470280647277832, -0.4007164239883423, 0.7617172002792358, -0.029386868700385094, -0.037116639316082, 0.5868262052536011, 0.7214029431343079, -0.16732379794120789, -0.38282328844070435, 0.4958265721797943, -0.1501760184764862, -0.34827351570129395, -0.9019713997840881, 0.2608931064605713, 0.48257291316986084, 0.322996586561203, 0.31628933548927307, -0.4132779836654663, 0.3248055577278137, -0.46133992075920105, 0.29460859298706055, 0.012639522552490234, -0.514252781867981, -0.25878772139549255, 0.11919231712818146, 0.6191906929016113, -0.47444838285446167, 0.7318155765533447, -0.1754281371831894, -0.16105370223522186, 0.6432353258132935, 0.25605854392051697, 0.5709153413772583, -0.27276450395584106, 0.5880538821220398, 0.6365940570831299, 0.1818477213382721, 0.3263634741306305, 0.3238273859024048, -0.6837618350982666, -0.6610530018806458, -0.09486241638660431, -0.6923263669013977, -0.6835361123085022, -0.15570296347141266, -0.9123803377151489, 0.381938636302948, -0.5794925689697266, -0.16426675021648407, 0.1334090530872345, 0.22761839628219604, -0.8201506733894348, 0.20346203446388245, 0.3699427545070648, 1.470423698425293, -0.45771703124046326, 0.7973963022232056, 0.6614425778388977, -0.691618800163269, -0.6784858703613281, -0.18609242141246796, -0.36892208456993103, -0.6649428606033325, 0.1007108986377716, 0.0718451514840126, 0.26799818873405457, 0.0014488445594906807, -0.8605895042419434, -0.679023027420044, 1.2287142276763916, 0.22149696946144104, -0.904892086982727, -0.13889174163341522, 0.004679315257817507, 0.3578379154205322, -0.16218772530555725, -0.07501550018787384, 0.3467216491699219, 0.8539607524871826, 0.3024473190307617, -0.5949347019195557, -0.09574457257986069, -0.5087007284164429, -0.3658175766468048, 0.1377219259738922, -0.7131604552268982, 0.05330567806959152, 0.07846444845199585, 0.07245785742998123, 0.08711622655391693, 0.46481990814208984, 0.08956008404493332, 0.4989350140094757, 0.43668848276138306, 0.6809033155441284, 1.1547592878341675, -0.12182869017124176, 1.28128182888031, -0.37115052342414856, 0.5944503545761108, 1.1009092330932617, -0.08763206005096436, 0.4847652316093445, 0.3941931128501892, -0.17889878153800964, 0.5664106011390686, 0.5463475584983826, -0.7999492287635803, 0.26214152574539185, 0.3211740255355835, -0.23585066199302673, -0.2530800402164459, -0.29452991485595703, -0.8042292594909668, -0.17307570576667786, 0.44209611415863037, -0.2647371292114258, 0.1338634341955185, -0.27588942646980286, -0.07374250888824463, -0.40266871452331543, -0.5312457084655762, 0.8504063487052917, 0.14375419914722443, -0.3988279402256012, 0.0393550805747509, -0.20533683896064758, 0.4213137626647949, -0.9817562103271484, -0.2067650705575943, 0.05514075234532356, -0.006233828142285347, -0.62857985496521, -1.0414032936096191, 0.427523136138916, -0.029787153005599976, -0.5178847312927246, 0.17942750453948975, 0.6441175937652588, -0.5661921501159668, -0.9536223411560059, 0.48666059970855713, -0.020839007571339607, 0.04738935828208923, 0.06961663067340851, -0.9576239585876465, -0.08609677106142044, -0.12855300307273865, -0.11808639764785767, 0.017587218433618546, 0.3629899024963379, 0.45658817887306213, 0.5001386404037476, 0.8368386626243591, 0.12989114224910736, -0.36182570457458496, 0.3651571571826935, 0.762675940990448, -0.7556595802307129, -0.513916015625, -0.624996542930603, 0.5530179738998413, -0.7722632884979248, -0.6196776628494263, 0.552075982093811, 1.2150286436080933, 0.9836552143096924, -0.3524925112724304, 0.9121181964874268, -0.26033228635787964, 0.5953084230422974, 0.021760039031505585, 0.8397727012634277, -0.6139920949935913, -0.48485010862350464, -0.1948867291212082, -0.8891054391860962, -0.5061778426170349, 0.39792877435684204, 0.20724138617515564, -0.3140968382358551, 0.5299354791641235, 0.7925975322723389, -0.3393208682537079, 0.36005881428718567, -0.010258641093969345, 0.28936153650283813, 0.16504478454589844, 0.013726625591516495, 0.2980872392654419, -0.4223029613494873, 0.7858574390411377, -0.4101317524909973, -0.6802340745925903, 0.042102787643671036, -1.011021614074707, -0.873663067817688, -0.7428245544433594, -0.6185507774353027, -0.5310776233673096, -0.2778146266937256, 0.813546895980835, 0.8218321800231934, -1.0264047384262085, -0.4693835973739624, 0.0731867328286171, 0.22569921612739563, 0.2761528789997101, -0.14200608432292938, 0.7007079720497131, 0.23362888395786285, -0.48622214794158936, -0.30747243762016296, 0.16767001152038574, 0.06406513601541519, -0.018162481486797333, -0.08497395366430283, 0.015596124343574047, 0.05289749056100845, 0.3848019242286682, 0.4525953233242035, 0.038203880190849304, -0.05664042383432388, -0.683726966381073, -0.008768781088292599, -0.20538780093193054, 1.0656532049179077, -0.29115137457847595, 0.16756755113601685, 0.29935377836227417, 0.5259003639221191, 0.7634816765785217, -0.03567356616258621, 0.49994000792503357, -0.47405779361724854, 0.20875731110572815, -0.21531346440315247, 0.4758187532424927, 0.27415502071380615, -0.6057901382446289, 0.8591031432151794, 0.6021728515625, -0.4909733235836029, -0.5194328427314758, 0.040665652602910995, -1.4746508598327637, 0.1203732043504715, 1.0861539840698242, 0.3907203674316406, -0.6525835990905762, -0.027260243892669678, -0.4361361563205719, 0.6752868890762329, -0.7468552589416504, 0.4707593619823456, 0.9315373301506042, 0.18391099572181702, 0.24842584133148193, -0.36219072341918945, 0.5851544737815857, -0.5670093297958374, -0.9661357402801514, 0.3152129650115967, 0.706020712852478, 0.4217735528945923, 0.4635668396949768, 0.8122515082359314, 0.03825961425900459, 0.2367425262928009, 0.32532304525375366, 0.537315845489502, -0.477885365486145, -0.49363723397254944, 0.14708395302295685, 0.11246924102306366, -0.20465506613254547, -0.2767155170440674 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
PoolC/1-fold-clone-detection-600k-5fold
PoolC
2022-06-01T06:49:02Z
212
2
null
[ "region:us" ]
2022-06-01T06:49:02Z
2022-06-01T06:36:28.000Z
2022-06-01T06:36:28
Entry not found
[ -0.3227645754814148, -0.22568479180335999, 0.8622263669967651, 0.43461522459983826, -0.52829909324646, 0.7012971639633179, 0.7915719747543335, 0.07618614286184311, 0.774603009223938, 0.2563217282295227, -0.7852813005447388, -0.22573819756507874, -0.9104475975036621, 0.5715674161911011, -0.3992327153682709, 0.5791246294975281, -0.14494499564170837, -0.10751135647296906, 0.28233814239501953, -0.2768957316875458, -0.5409227013587952, -0.3685525059700012, -1.1902779340744019, 0.061491698026657104, 0.5316582918167114, 0.743514358997345, 0.7584061622619629, 0.3652168810367584, 0.643257737159729, 0.39322906732559204, -0.231389120221138, 0.48270541429519653, -0.04171793907880783, 0.0026038705836981535, -0.3524438440799713, -0.5516899824142456, -0.28596577048301697, 0.07584768533706665, 1.096130132675171, 0.9666873812675476, -0.28466421365737915, 0.05330856889486313, -0.30636167526245117, 0.3308892846107483, -0.4973427355289459, 0.3054097294807434, -0.022506216540932655, 0.16318757832050323, -0.704151451587677, -0.5535351634025574, 0.012795033864676952, -0.7361212968826294, 0.17926514148712158, -0.6900812387466431, 0.8269097208976746, 0.18583209812641144, 1.1533749103546143, 0.14819422364234924, -0.4624859392642975, -0.8161761164665222, -0.6538985371589661, 0.5711163282394409, -0.32703715562820435, 0.3968023657798767, 0.7028226256370544, -0.048573337495326996, -0.9820331335067749, -0.6745738983154297, -0.46466246247291565, 0.2923974096775055, 0.3540281355381012, -0.3411684036254883, -0.17522093653678894, -0.30589917302131653, 0.15791958570480347, 0.1281142681837082, -0.48419976234436035, -0.5543919205665588, -0.547515869140625, -0.39602571725845337, 0.6206656694412231, 0.34829503297805786, 0.24291737377643585, -0.18884189426898956, -0.3228582441806793, 0.0880165845155716, -0.41608554124832153, 0.3402574062347412, 0.6335517168045044, 0.711402416229248, -0.5811446309089661, 0.5602157711982727, -0.049275897443294525, 0.7439709901809692, 0.11445585638284683, -0.2747812569141388, 0.4146060049533844, -0.14724673330783844, 0.055171847343444824, 0.42263513803482056, 0.3152443468570709, 0.28413069248199463, -0.3273696303367615, 0.20322275161743164, -0.32151490449905396, -0.3049626648426056, -0.2233218252658844, -0.29490745067596436, -0.35921788215637207, 0.5492295026779175, -0.3314018249511719, -0.4285552501678467, 1.1431758403778076, -0.42007699608802795, -0.7302228808403015, 0.33156365156173706, 0.40652117133140564, -0.0994473472237587, -0.37146514654159546, -0.052260853350162506, -0.8458787202835083, -0.00790744461119175, 0.7491178512573242, -0.7198969125747681, 0.33717358112335205, 0.47280627489089966, 0.741721510887146, 0.1965060532093048, -0.14034466445446014, -0.4294945299625397, 0.2971963882446289, -0.8659994006156921, 0.6320174336433411, -0.20135276019573212, -1.0051976442337036, 0.11150483042001724, 0.8971704244613647, -0.3789643347263336, -1.2094870805740356, 1.0605157613754272, -0.6887932419776917, 0.16017864644527435, -0.6767609119415283, -0.14661164581775665, -0.07118469476699829, -0.005095955915749073, -0.6088155508041382, 0.7567099332809448, 0.5872676968574524, -0.49952778220176697, 0.21429462730884552, -0.2602984309196472, -0.3915135860443115, 0.38824939727783203, -0.0793546810746193, -0.21858906745910645, 0.7138336896896362, -0.6647078394889832, -0.2693284749984741, 0.2942773103713989, 0.23689350485801697, -0.357060968875885, -0.793192446231842, 0.08478079736232758, -0.05786222219467163, 1.5507503747940063, -0.03868860378861427, -0.35861143469810486, -0.6793836951255798, -1.1506236791610718, -0.07070811837911606, 0.6886887550354004, -0.9194992184638977, -0.27839499711990356, -0.046410247683525085, -0.26169371604919434, 0.0899493545293808, 0.7390591502189636, -1.119404911994934, 0.28327250480651855, -0.050927065312862396, -0.22794730961322784, 0.8271061182022095, 0.1538720428943634, 0.24758882820606232, 0.14913466572761536, 0.4295872151851654, 0.5277255773544312, 0.11115183681249619, 0.6835882663726807, -0.3472035229206085, -0.9694353938102722, 0.6154633164405823, 0.25266438722610474, 0.8121451139450073, -0.49945372343063354, 0.2685092091560364, 0.2702546715736389, -0.3409683108329773, -0.5682377815246582, -0.310282826423645, 0.09025713056325912, 0.14930608868598938, 0.11142496764659882, -0.5721707344055176, -0.6576128005981445, -0.9689135551452637, -0.13590654730796814, -0.43143755197525024, -0.35715678334236145, 0.2100687474012375, 0.5792907476425171, -1.1975533962249756, 0.4128877520561218, -0.7705622911453247, -0.703874409198761, -0.010655621066689491, -0.1933809369802475, 0.7540653944015503, 0.43240174651145935, 0.5033961534500122, -0.6397145390510559, -0.5661987066268921, -0.22470159828662872, -1.0333740711212158, -0.13280484080314636, 0.24819664657115936, 0.3065737783908844, -0.1342328041791916, -0.2744964361190796, -0.48740261793136597, 0.8100383877754211, 0.14789214730262756, -0.5391897559165955, 0.5220769643783569, -0.3020317554473877, 0.17224839329719543, -0.6369158029556274, -0.0691685602068901, -0.6616761684417725, -0.0009067110950127244, -0.36083078384399414, -0.5737436413764954, 0.14772333204746246, 0.07017548382282257, -0.16065415740013123, 0.2880837619304657, -0.909276008605957, -0.0010854422580450773, -0.744221568107605, 0.37907224893569946, 0.0639476627111435, -0.3145084083080292, -0.017516743391752243, 1.000038743019104, 0.7784457206726074, -0.3848040699958801, 0.7217439413070679, 0.4440040588378906, 0.19036099314689636, 0.7630518674850464, -0.18725158274173737, 0.16478213667869568, -0.5245421528816223, -0.12161099910736084, -0.8887605667114258, -1.0982943773269653, 0.7320572137832642, -0.6114250421524048, 0.36542850732803345, -0.42778605222702026, 0.2589159309864044, -0.6919258832931519, -0.038853395730257034, 0.4808599054813385, -0.05936374515295029, -0.6863952875137329, 0.5232571363449097, 0.4531749188899994, -0.2019244134426117, -0.6609036922454834, -0.5301570296287537, 0.39365914463996887, 0.6154113411903381, -0.16390396654605865, 0.06878498196601868, 0.14941087365150452, -0.5441920757293701, -0.040802545845508575, -0.3869187533855438, -0.4576674997806549, 0.05422405153512955, 0.13053379952907562, -0.005750161595642567, -0.40482011437416077, -0.08680257946252823, -0.35842010378837585, -0.4656125009059906, 0.21876463294029236, 0.30119529366493225, -0.04096344858407974, -0.42599743604660034, -0.36198148131370544, -0.8881808519363403, 0.6719611883163452, 0.5370280146598816, 0.05281474441289902, 0.7555550336837769, 0.16819244623184204, -0.801498293876648, -0.13532206416130066, -0.17607054114341736, 0.2696835994720459, -0.5588056445121765, 0.13849826157093048, -0.013484805822372437, -0.06374907493591309, 0.2629791498184204, 0.25386205315589905, -0.4300558567047119, 0.927625298500061, -0.26152747869491577, -0.3592526614665985, 0.7960182428359985, 0.5974737405776978, 0.4958309531211853, 0.16503198444843292, -0.044541094452142715, 0.9007097482681274, -1.196651816368103, -0.6563171744346619, -0.7409546375274658, -0.15945661067962646, -0.43510857224464417, -0.0321057066321373, 0.6254417300224304, 0.29009905457496643, -0.13333925604820251, 0.47563934326171875, -0.5243490934371948, 0.3556032180786133, 1.0119839906692505, 0.3574867248535156, 0.34357017278671265, -0.7570232152938843, -0.25157779455184937, -0.14024296402931213, -0.9998159408569336, -0.2631372809410095, 0.8871029615402222, 0.2275265008211136, 0.8444608449935913, 0.5992542505264282, 0.6784538626670837, 0.136723130941391, 0.2523833215236664, -0.305902898311615, 0.39202871918678284, 0.43760839104652405, -1.040114164352417, -0.42758411169052124, 0.02141888067126274, -0.9703332185745239, -0.14227578043937683, -0.03495054319500923, -0.42617106437683105, 0.7681738138198853, 0.00016635804786346853, -0.4076710641384125, 0.7732735872268677, -0.4555833339691162, 0.7562878727912903, -0.4473649859428406, -0.026638653129339218, 0.4699098467826843, -0.707064151763916, 0.4677433967590332, 0.12878736853599548, 0.6205845475196838, -0.015571946278214455, -0.04078621417284012, 0.7104931473731995, -0.9129164814949036, 0.25438612699508667, -0.6348398923873901, 0.22421303391456604, 0.24246959388256073, 0.5160625576972961, 0.5969962477684021, 0.4371241629123688, 0.10119915008544922, -0.23920848965644836, 0.04115789383649826, -0.8241121172904968, -0.21050670742988586, 0.6975144147872925, -0.7186897397041321, -0.6864195466041565, -1.2355334758758545, 0.14438661932945251, 0.2734704911708832, 0.3893047273159027, 0.7959297895431519, 0.5714079141616821, 0.12895449995994568, 0.6805254220962524, 0.9888579249382019, -0.06885591894388199, 0.916691780090332, 0.3224475085735321, 0.09175165742635727, -0.2194489687681198, 0.703682541847229, 0.2662784457206726, -0.2470790147781372, -0.11939744651317596, 0.20913469791412354, -0.11069414764642715, -0.5917618870735168, -0.4999074339866638, 0.3701755702495575, -0.6731783747673035, -0.1830393373966217, -0.6243732571601868, -0.6043766736984253, -0.5117589235305786, 0.0692739263176918, -0.7147684097290039, 0.23979082703590393, -0.7753568887710571, -0.10574901103973389, 0.04323358088731766, 0.9792002439498901, -0.5893120765686035, 0.5805228352546692, -1.12185800075531, 0.19345775246620178, -0.07949890196323395, 0.792106032371521, 0.2139579802751541, -0.7344390153884888, -0.39754199981689453, -0.11592598259449005, -0.37299054861068726, -1.3576757907867432, 0.21404962241649628, -0.24541422724723816, 0.2309398353099823, 0.6145407557487488, 0.13977040350437164, 0.5258244276046753, -0.3432632088661194, 0.7029102444648743, -0.057016827166080475, -0.7069293856620789, 0.7934491038322449, -0.5026893615722656, 0.4963533282279968, 0.9766002893447876, 0.5333840250968933, -0.7984007596969604, 0.0357406847178936, -1.041122555732727, -0.600869357585907, 0.38426393270492554, 0.1192895919084549, -0.03601125627756119, -0.665955662727356, -0.054019927978515625, -0.16143806278705597, 0.6043741703033447, -1.0390695333480835, -0.785835862159729, 0.25766894221305847, 0.5277299284934998, 0.08168502151966095, -0.5653401613235474, 0.2088075876235962, -0.5444163084030151, 1.0657776594161987, 0.45109352469444275, 0.32744958996772766, 0.8406059145927429, 0.4649237096309662, -0.38231605291366577, 0.09252502024173737, 0.7662692070007324, 0.6666228771209717, -0.5239795446395874, -0.2908027172088623, -0.0882752314209938, -0.9143400192260742, 0.05927503854036331, 0.1116887554526329, -0.013456095941364765, 0.9082115292549133, 0.579308032989502, 0.253970205783844, 0.4514276385307312, -0.7264610528945923, 0.8859445452690125, -0.1495419293642044, -0.1247284859418869, -1.0677239894866943, 0.19486205279827118, -0.23984935879707336, 0.5006400346755981, 1.0061331987380981, 0.525004506111145, -0.047630541026592255, -0.814338207244873, -0.014736384153366089, 0.6939173936843872, -0.7091119289398193, -0.17449775338172913, 0.9448539614677429, 0.38471025228500366, -1.295304536819458, 1.106776475906372, -0.5381773710250854, -0.5603317618370056, 0.9121302366256714, 0.5229570269584656, 1.1221849918365479, -0.44204193353652954, 0.0008675057324580848, 0.2662239074707031, 0.4137844443321228, 0.5423170328140259, 1.0869632959365845, 0.43141356110572815, -0.7931072115898132, 0.8826581835746765, -0.24776068329811096, -0.40361127257347107, -0.053475700318813324, -0.42859864234924316, 0.16892209649085999, -0.4406189024448395, -0.10712965577840805, -0.3444185256958008, 0.2854307293891907, -0.70720374584198, 0.42807644605636597, -0.08385642617940903, 0.8653066754341125, -0.8553729057312012, 0.47207602858543396, 0.6354700326919556, -0.33373481035232544, -0.8508192300796509, -0.26198476552963257, -0.1144845262169838, -0.6389466524124146, 0.30214792490005493, -0.45541054010391235, 0.044398874044418335, 0.09623479843139648, -0.6491509675979614, -1.1778273582458496, 0.9093631505966187, -0.6396117210388184, -0.2784458100795746, 0.20463958382606506, -0.1151471883058548, 0.28811654448509216, -0.2524648904800415, 0.010661328211426735, 0.4187661111354828, 0.7489396333694458, 0.28446561098098755, -0.7727053761482239, -0.36948859691619873, 0.0015033691888675094, -0.44474759697914124, 0.7582973837852478, -0.6002098917961121, 1.1840776205062866, -0.556353747844696, -0.05965423583984375, 0.4438447952270508, 0.24690861999988556, 0.21076245605945587, 0.6629217267036438, 0.144208163022995, 0.7282259464263916, 1.0701210498809814, -0.4083522856235504, 0.881180465221405, 0.26432785391807556, 0.4743083417415619, 0.7238510251045227, -0.6487718820571899, 0.7513747811317444, 0.3181043267250061, -0.5682927966117859, 0.9228019714355469, 1.290606141090393, -0.15699152648448944, 0.80793696641922, 0.051364265382289886, -1.0815999507904053, 0.32583361864089966, -0.20724761486053467, -0.7530062198638916, 0.31502565741539, 0.19055864214897156, -0.6920987367630005, -0.5770313739776611, -0.2404651641845703, -0.35662829875946045, -0.11552873998880386, -0.763173520565033, 0.6720565557479858, -0.01696927472949028, -0.5103673934936523, 0.18857470154762268, 0.28775009512901306, 0.17368444800376892, -0.5235736966133118, -0.029393965378403664, -0.22823575139045715, 0.2660652697086334, -0.5670853853225708, -0.5234523415565491, 0.5724437236785889, -0.32430148124694824, -0.5343252420425415, 0.181474968791008, 0.7635870575904846, -0.16923785209655762, -0.4515411853790283, 0.3247268795967102, 0.6959530115127563, 0.16658467054367065, 0.42502790689468384, -0.23511283099651337, 0.2448059767484665, -0.08044827729463577, -0.06651593744754791, 0.27714747190475464, 0.3449171781539917, 0.22435645759105682, 0.44501352310180664, 0.432856947183609, -0.018087303265929222, -0.10736559331417084, -0.38282057642936707, 0.41249361634254456, -0.9542784690856934, -0.5713290572166443, -0.630710780620575, 0.2740667760372162, -0.023154327645897865, -1.0836422443389893, 0.41451746225357056, 1.4406688213348389, 1.0359984636306763, -0.4756380617618561, 1.0672271251678467, -0.21818462014198303, 0.9594789743423462, 0.4148314893245697, 0.5420438051223755, -0.6030403971672058, 0.038353081792593, -0.43644052743911743, -1.0769634246826172, -0.3571633994579315, 0.4539390206336975, -0.02289981208741665, -0.3429867625236511, 0.8725717663764954, 0.5887162685394287, -0.3347362279891968, -0.11728022992610931, 0.04848663881421089, -0.029941599816083908, -0.12433874607086182, 0.5145372152328491, 0.764839768409729, -0.9344298243522644, -0.10680411010980606, -0.21577700972557068, -0.6382728815078735, -0.5047284364700317, -0.9632002711296082, -0.12959381937980652, -0.16037842631340027, 0.03534334897994995, -0.5662809014320374, 0.002556905150413513, 1.2083250284194946, 0.5684951543807983, -1.1113994121551514, -0.5303782224655151, 0.33718499541282654, 0.39204245805740356, -0.1874789297580719, -0.24202406406402588, 0.2984571158885956, 0.1538221836090088, -0.5908879041671753, 0.6875662803649902, 0.8089626431465149, 0.20888905227184296, 0.19554781913757324, 0.15893003344535828, -0.8229468464851379, -0.1491343379020691, 0.1744047999382019, 0.9450566172599792, -0.9398531913757324, -0.7114846110343933, -0.03168468177318573, -0.2709487974643707, -0.05765697360038757, 0.17102089524269104, -0.4046342968940735, 0.5180684924125671, 0.34591469168663025, 0.49933499097824097, 0.056160878390073776, -0.05474642664194107, 0.5409556031227112, -0.9069051742553711, 0.09425970166921616, 0.41343608498573303, 0.4154110848903656, -0.4000871181488037, -0.5910195112228394, 0.6713417172431946, 1.0073974132537842, -0.6594864130020142, -0.8743263483047485, -0.19846680760383606, -1.0016000270843506, 0.04189697653055191, 0.6762756109237671, 0.5009528994560242, -0.48065176606178284, -0.4174492359161377, -0.5617400407791138, -0.1254679411649704, -0.13699708878993988, 0.76216059923172, 1.1796802282333374, -0.7432100772857666, 0.07975788414478302, -1.0386393070220947, 0.6594987511634827, -0.2419460564851761, -0.3457580506801605, -0.4864429533481598, 0.3832802176475525, 0.3523699641227722, 0.44048118591308594, 0.6148120164871216, 0.14084689319133759, 0.8338428735733032, 0.31260576844215393, -0.17026856541633606, 0.2698982357978821, -0.4559198319911957, -0.02893332578241825, -0.05796259641647339, 0.3101596236228943, -1.026215672492981 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ScandEval/scandiqa-da-mini
ScandEval
2023-07-05T09:44:29Z
212
0
null
[ "task_categories:question-answering", "size_categories:1K<n<10K", "language:da", "license:cc-by-3.0", "region:us" ]
2023-07-05T09:44:29Z
2022-12-05T16:41:50.000Z
2022-12-05T16:41:50
--- dataset_info: features: - name: id dtype: string - name: question dtype: string - name: answers struct: - name: answer_start sequence: int64 - name: text sequence: string - name: context dtype: string - name: answers_en struct: - name: answer_start sequence: int64 - name: text sequence: string - name: context_en dtype: string - name: title_en dtype: string splits: - name: train num_bytes: 3238964 num_examples: 1024 - name: val num_bytes: 1096223 num_examples: 256 - name: test num_bytes: 6668816 num_examples: 2048 download_size: 6456003 dataset_size: 11004003 license: cc-by-3.0 task_categories: - question-answering language: - da size_categories: - 1K<n<10K --- # Dataset Card for "scandiqa-da-mini" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.9426583051681519, -0.272250771522522, 0.2920210063457489, 0.033614784479141235, -0.35415637493133545, 0.01854080893099308, 0.5547708868980408, -0.1405957043170929, 1.0553159713745117, 0.3237212300300598, -0.9117300510406494, -0.6240582466125488, -0.6614565253257751, -0.14611095190048218, -0.23380309343338013, 1.2184500694274902, 0.2017466425895691, 0.09677360206842422, -0.37766608595848083, -0.129201740026474, -0.20606671273708344, -0.4709216356277466, -0.7267389893531799, -0.3291090130805969, 0.9303494691848755, 0.8957799673080444, 0.5780380964279175, 0.6263904571533203, 0.7515395879745483, 0.0635802298784256, -0.05508601665496826, -0.06368307024240494, -0.3502081036567688, -0.2500518560409546, -0.26435285806655884, -0.4652852416038513, -1.2330641746520996, 0.07139630615711212, 0.5007282495498657, 0.5518144369125366, -0.10339883714914322, 0.8855623006820679, -0.2462010532617569, 0.7893203496932983, -0.39469170570373535, 0.45480719208717346, 0.07857050746679306, -0.3862993121147156, -0.8155311346054077, 0.004294702783226967, 0.28907597064971924, -0.5531775951385498, -0.09853832423686981, -1.0766923427581787, 0.2344076931476593, -0.025084950029850006, 0.8448754549026489, 0.47674840688705444, -0.27056097984313965, -0.45219480991363525, -0.4559004008769989, -0.033301908522844315, -0.008267324417829514, 0.022442929446697235, 0.8653156757354736, 0.5550907254219055, 0.03446004539728165, -0.6386760473251343, -0.413656085729599, 0.25914856791496277, -0.050942208617925644, 0.22238123416900635, -0.008773960173130035, -0.017398495227098465, 0.7243391275405884, 0.7082258462905884, -0.4789692759513855, -0.3222844898700714, -0.6402105689048767, -0.3741387724876404, 0.7169167995452881, 0.34724128246307373, 0.2776402533054352, -0.09407230466604233, 0.08178195357322693, -0.2774750590324402, -0.6413264274597168, 0.017023883759975433, 0.4734419584274292, 0.06737492233514786, -1.3012741804122925, 0.7288768887519836, -0.13273021578788757, 0.14483964443206787, 0.333060622215271, 0.3819817006587982, 0.6502861976623535, -0.5637942552566528, -0.0958757996559143, -0.1664436310529709, 0.21460264921188354, 0.1889171600341797, 0.05085098370909691, 0.5471287369728088, -0.0029424522072076797, 0.13477075099945068, -0.1358829289674759, -1.2432291507720947, -0.9500581622123718, 0.2532200813293457, -0.8122913837432861, -0.1625034511089325, 0.22559046745300293, -1.0021178722381592, -0.6830859184265137, -0.21552905440330505, 0.13662683963775635, 0.031078597530722618, -0.7017428278923035, -0.30689743161201477, -0.6129269599914551, 0.4148506820201874, 0.1335679590702057, -0.7405132055282593, 0.3952831029891968, 0.388938307762146, 0.5406463146209717, 0.2967621088027954, -0.14853063225746155, -0.7184522747993469, 0.2965775728225708, -0.21857190132141113, 1.0099314451217651, -0.6630034446716309, -0.6873213052749634, -0.11820962280035019, 0.29085665941238403, 0.14117683470249176, -0.44554823637008667, 0.9087449312210083, -0.3453591465950012, -0.21426139771938324, -0.8543268442153931, -0.3890397846698761, -0.05215767025947571, 0.22526174783706665, -1.3563824892044067, 1.0714685916900635, 0.22724314033985138, -0.9662677049636841, 0.35698795318603516, -1.2498682737350464, -0.29493141174316406, 0.6649483442306519, -0.1996174305677414, -0.38964158296585083, 0.3288102447986603, 0.22201098501682281, 0.19285617768764496, -0.27662765979766846, 0.07798171788454056, -0.7419247627258301, -0.34403494000434875, -0.040521666407585144, 0.22517719864845276, 1.1295928955078125, 0.31799501180648804, 0.4607389569282532, 0.03969225287437439, -0.8426857590675354, -0.39454373717308044, 0.3535623550415039, -0.12599557638168335, -0.4393872022628784, -0.5147775411605835, 0.3121645748615265, -0.0998833030462265, 0.4629731774330139, -0.40893441438674927, 0.5563457012176514, 0.04589790850877762, -0.31621044874191284, 0.5667628049850464, 0.255925714969635, 0.5020080208778381, -0.733292818069458, 0.8351974487304688, 0.05604896694421768, 0.40072429180145264, 0.02335675247013569, -0.440075159072876, -0.7974567413330078, -0.5270077586174011, 0.84136962890625, 0.6547255516052246, -0.9379996061325073, 0.34875068068504333, -0.03909758850932121, -0.7334582209587097, -0.5352497100830078, -0.1409842073917389, 0.05061271786689758, 0.019635450094938278, 0.24626782536506653, -0.4091870188713074, -0.9484719634056091, -0.7467798590660095, 0.4830586314201355, -0.13023161888122559, 0.06583632528781891, 0.4715404808521271, 1.0487912893295288, -0.8380356431007385, 0.6770474910736084, -0.7274472713470459, -0.36984872817993164, 0.07202557474374771, -0.18870678544044495, 0.2594382166862488, 0.6089692115783691, 1.0308539867401123, -0.7308599948883057, -0.5118629932403564, -0.7265389561653137, -0.2219405323266983, -0.23556338250637054, 0.314683198928833, -0.5102841258049011, -0.1675955355167389, 0.09456682205200195, -0.5317144393920898, 0.8869113326072693, 0.8453192710876465, -0.473140686750412, 0.22202463448047638, 0.035706065595149994, 0.11502950638532639, -1.3777284622192383, 0.34484732151031494, -0.27239006757736206, -0.0931161493062973, -0.35382363200187683, 0.07667094469070435, 0.09450969099998474, -0.1524755358695984, 0.041413791477680206, 0.7182121276855469, -0.3725642263889313, -0.061292603611946106, -0.14110705256462097, -0.2473008930683136, -0.10716085880994797, 0.08374781906604767, 0.17158293724060059, 0.6876338720321655, 1.0773048400878906, -0.4130059778690338, 0.929802417755127, 0.5435144901275635, 0.12001299858093262, 0.9456076622009277, -0.7757714986801147, 0.19450893998146057, -0.10195378214120865, 0.4126957058906555, -0.7780370712280273, -0.6801714897155762, 0.610918402671814, -0.4147113561630249, 0.3306020498275757, -0.6881240010261536, -0.7164849638938904, -0.616229236125946, -0.48485785722732544, 1.0857551097869873, 0.5684165954589844, -0.7313728928565979, 0.5193593502044678, 0.9296401739120483, -0.17270806431770325, 0.09909773617982864, -0.7434930801391602, 0.030148912221193314, -0.20715121924877167, -0.13056327402591705, 0.3458516597747803, -0.5802703499794006, 0.004176381975412369, -0.21420632302761078, 0.3934699594974518, -0.2923579216003418, -0.21703855693340302, 0.6495035886764526, 0.24353092908859253, -0.04595017433166504, 0.35795947909355164, 0.24003897607326508, -0.7756090760231018, 0.07674828171730042, 0.27182942628860474, 0.4161894917488098, -0.06179925054311752, -0.11881233751773834, -0.4327242374420166, 0.7280256748199463, 0.3111657500267029, -0.23007537424564362, 0.4395575523376465, 0.8843156099319458, -0.8428173065185547, -0.12491711974143982, -0.3383200168609619, -0.18436181545257568, -0.42855340242385864, -0.047635480761528015, -0.6735885739326477, -0.46664249897003174, 0.6623761653900146, -0.1729990839958191, -0.21076053380966187, 0.8783581256866455, 0.9169126749038696, -0.34466883540153503, 0.7781896591186523, 1.0051980018615723, -0.1563805341720581, 0.32214975357055664, -0.3884356617927551, -0.3225303888320923, -0.809387743473053, -0.3010466396808624, -0.7364410161972046, -0.25404036045074463, -0.7788602709770203, -0.47746166586875916, 0.0944371223449707, -0.06745056807994843, -0.18468999862670898, 0.45424962043762207, -0.5060619115829468, 0.2609335780143738, 0.697323739528656, 0.09306593239307404, -0.04993782192468643, -0.08397144824266434, 0.07701429724693298, 0.19655048847198486, -0.6837927103042603, -0.23160983622074127, 1.1546205282211304, 0.5263347029685974, 1.0606324672698975, 0.3082500696182251, 1.0480674505233765, 0.5142448544502258, 0.20804789662361145, -0.4627859592437744, 0.28698790073394775, -0.006157495081424713, -0.7377773523330688, 0.04140600562095642, -0.08767558634281158, -0.7268856763839722, -0.5428734421730042, -0.3008989989757538, 0.05040808767080307, 0.7462515234947205, 0.3269021511077881, -0.31061631441116333, 0.022975612431764603, -0.6477425694465637, 0.8176934123039246, 0.03468673303723335, 0.2753852605819702, -0.23822477459907532, -0.39323538541793823, 0.1230090856552124, 0.07836362719535828, 0.2602074444293976, -0.28930145502090454, -0.30782344937324524, 1.1016108989715576, -0.47440600395202637, 1.0558022260665894, -0.5900114178657532, 0.013561425730586052, 0.11646720767021179, -0.026920322328805923, 0.05685225874185562, 0.625740110874176, -0.017858125269412994, 0.16013109683990479, 0.6585943698883057, -0.6970949172973633, 0.018299272283911705, 0.556688666343689, -0.7134531736373901, 0.22121363878250122, -0.6683659553527832, -0.6018864512443542, 0.02274629846215248, 0.3735920786857605, 0.37014222145080566, 0.6261060833930969, -0.4523411989212036, -0.15025395154953003, 0.848505973815918, 0.28435808420181274, 0.2423398196697235, 0.17077139019966125, -0.2981906831264496, -0.4839021563529968, 0.8194738626480103, 0.1944231390953064, -0.46960514783859253, 0.12914806604385376, 0.2694498300552368, -0.25155630707740784, -0.43401822447776794, -0.7885472774505615, 0.5123744010925293, -0.393459677696228, -0.46633243560791016, -0.16270115971565247, -0.41214287281036377, -0.5222998857498169, -0.14099881052970886, -0.24359950423240662, -0.4936986565589905, -0.6811141967773438, -0.40336525440216064, 0.8356177806854248, 0.7381693720817566, -0.8389270305633545, 0.450729638338089, -0.8190112113952637, 0.8246095180511475, 0.2128148376941681, 0.6977933645248413, -0.42434442043304443, -0.5246841311454773, -0.4629617929458618, 0.24726003408432007, 0.23120950162410736, -0.6762865781784058, -0.24843531847000122, 0.276022732257843, 0.5887444019317627, 0.2549092769622803, 0.20658132433891296, 0.5844980478286743, 0.01645869016647339, 0.5511789321899414, 0.020882345736026764, -0.6897051334381104, 0.779574453830719, -0.34884241223335266, 0.5412291884422302, 0.9059389233589172, 0.6562050580978394, -0.19793887436389923, 0.3225048780441284, -0.8493239283561707, -0.3336213231086731, 0.5326865911483765, -0.09024865180253983, 0.12042728066444397, 0.1977594494819641, 0.44477593898773193, 0.10248512774705887, 0.14938026666641235, -0.5307753086090088, -0.8402608036994934, -0.0676608607172966, -0.43220803141593933, 0.26569801568984985, -0.9151657223701477, -0.523368775844574, -0.6984792947769165, 0.7073709964752197, -0.15085038542747498, 0.4382200539112091, -0.04528278857469559, 0.1831042319536209, -0.03231697902083397, -0.2570353150367737, 0.392190158367157, 0.5331525802612305, -0.420521080493927, -0.09442627429962158, -0.056353405117988586, -0.734215259552002, -0.27752286195755005, 0.5826543569564819, -0.3013482093811035, -0.19107447564601898, 0.4653947949409485, 0.4244517683982849, -0.7041417360305786, -0.1535923033952713, 0.5293431282043457, -0.39067161083221436, -0.43458712100982666, -0.4677942991256714, 0.04250374436378479, 0.24114809930324554, 0.18726150691509247, 0.016973022371530533, -0.13560037314891815, 0.4406835734844208, -0.4989852011203766, 0.42294782400131226, 0.0380319282412529, -0.5500177145004272, -0.376473605632782, 0.23064853250980377, 0.6026183366775513, -0.3593079447746277, 0.6751553416252136, -0.24291551113128662, -0.47156822681427, 0.7604333162307739, 0.14689907431602478, 0.6470117568969727, -0.3984047770500183, 0.519145131111145, 0.5583255290985107, 0.29505395889282227, 0.4526965618133545, 0.9588799476623535, -0.5265707969665527, -0.4547837972640991, 0.09646748751401901, -0.3093279004096985, -0.45682257413864136, -0.4069167971611023, -1.1061142683029175, 0.21050338447093964, -0.6368056535720825, -0.3322991132736206, -0.06277547776699066, 0.4920097589492798, -0.876366376876831, 0.2344023883342743, 0.33886438608169556, 1.5032165050506592, -0.901479959487915, 1.1945984363555908, 0.8805082440376282, -0.5061489343643188, -0.5337183475494385, -0.10598553717136383, 0.18058264255523682, -0.6732276082038879, 0.02086196094751358, -0.025963669642806053, 0.035407375544309616, -0.3830285668373108, -0.7390186786651611, -0.8823688626289368, 1.1445424556732178, 0.10586994886398315, -0.6808488965034485, 0.2283635139465332, -0.12229102849960327, 0.43595942854881287, -0.4549722969532013, 0.25927409529685974, 0.77130526304245, 0.6986823678016663, 0.32766589522361755, -0.7896003127098083, 0.03379392623901367, -0.6155516505241394, -0.22386422753334045, 0.24065440893173218, -0.6127955913543701, 0.3413446247577667, -0.14975616335868835, -0.18324652314186096, 0.25147563219070435, 0.571979820728302, 0.1136869266629219, 0.47282102704048157, 0.45979833602905273, 0.7450888156890869, 1.0350043773651123, -0.2581242322921753, 0.8181653618812561, 0.14814579486846924, 0.3599599003791809, 1.2598785161972046, -0.11104260385036469, 0.2625935971736908, 0.4956597089767456, -0.03154371678829193, 0.37737923860549927, 0.8564304113388062, -0.46955347061157227, 0.6402090787887573, 0.14241300523281097, 0.019963275641202927, -0.1878775656223297, -0.32978639006614685, -0.7957812547683716, 0.18817391991615295, 0.6716881990432739, -0.19853569567203522, -0.01343316026031971, -0.022369541227817535, -0.10664406418800354, -0.2574809193611145, -0.5673866271972656, 0.8491010665893555, 0.011974971741437912, 0.118150994181633, 0.045317307114601135, -0.0613858588039875, 0.38798555731773376, -0.599749743938446, -0.37678760290145874, -0.22518453001976013, 0.060328349471092224, -0.4589401185512543, -0.9607222080230713, 0.8839411735534668, -0.2591339349746704, -0.5328503847122192, 0.17355185747146606, 0.5007556676864624, -0.31426477432250977, -0.8341875076293945, 0.36127138137817383, 0.36630749702453613, 0.06213132664561272, 0.18132717907428741, -1.2742078304290771, 0.38404130935668945, -0.11369935423135757, 0.1121988296508789, 0.13785284757614136, 0.018326472491025925, 0.04086243361234665, 0.5237288475036621, 0.5740026831626892, 0.11625538021326065, -0.36697134375572205, 0.25858190655708313, 1.0039613246917725, -0.47053003311157227, -0.5059764981269836, -0.37308061122894287, 0.5088295340538025, -0.3590294122695923, -0.5277828574180603, 0.5325267314910889, 0.9628555774688721, 0.9482482671737671, -0.04458203166723251, 0.7070870399475098, -0.4901871085166931, 0.927138090133667, -0.16941173374652863, 0.7060211300849915, -0.460942804813385, -0.13728530704975128, -0.013021089136600494, -0.7336998581886292, -0.5363887548446655, 0.4651916027069092, 0.093765988945961, -0.08843010663986206, 0.4669632315635681, 1.1260250806808472, -0.2311418652534485, -0.003732377663254738, 0.00375216081738472, 0.1355399191379547, 0.24097484350204468, 0.48882821202278137, 0.5522152185440063, -0.5822614431381226, 0.29038500785827637, -0.46474286913871765, -0.7521418929100037, -0.06476722657680511, -0.874433159828186, -1.1278635263442993, -0.814033031463623, -0.580659031867981, -0.42275771498680115, -0.14352451264858246, 0.8507295846939087, 1.067788004875183, -1.0373913049697876, -0.2435740828514099, 0.4552767276763916, 0.30364206433296204, 0.07997121661901474, -0.055288489907979965, 0.8563151955604553, 0.7529522180557251, -0.6461372375488281, -0.21134436130523682, 0.022223059087991714, 0.39061954617500305, 0.011043516919016838, -0.09477373957633972, -0.16665580868721008, 0.316313236951828, 0.12860135734081268, 0.514206051826477, -0.15127617120742798, -0.13743455708026886, -0.6138050556182861, -0.2603839933872223, -0.11413496732711792, 0.9180644750595093, -0.4845815598964691, 0.1545013189315796, 0.6538165211677551, 0.4921882748603821, 0.7373290657997131, 0.07813193649053574, 0.3948381841182709, -0.32399043440818787, 0.19118666648864746, -0.013633465394377708, 0.5218778848648071, -0.005131736397743225, -0.36481773853302, 0.7841251492500305, 0.2917148172855377, -0.3962424695491791, -0.5225151777267456, 0.27680742740631104, -1.3949657678604126, 0.3408985435962677, 0.7249687910079956, 0.11692169308662415, -0.2599450349807739, -0.2545647621154785, -0.6771911382675171, 0.10874820500612259, -0.7006436586380005, 0.25561264157295227, 0.42835235595703125, 0.1345631629228592, -0.40191203355789185, 0.03647064417600632, 0.8173773288726807, -0.38162529468536377, -1.1262378692626953, -0.06435558944940567, 0.5788258910179138, 0.10481488704681396, 0.056547001004219055, 1.0051485300064087, -0.16084687411785126, 0.5771414041519165, 0.4914763569831848, 0.21081605553627014, -0.40399473905563354, -0.7104902267456055, -0.43888118863105774, -0.1249718964099884, -0.1293213814496994, -0.6071621179580688 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
keremberke/pokemon-classification
keremberke
2023-01-15T18:41:29Z
212
5
null
[ "task_categories:image-classification", "roboflow", "roboflow2huggingface", "Gaming", "region:us" ]
2023-01-15T18:41:29Z
2023-01-15T18:40:15.000Z
2023-01-15T18:40:15
--- task_categories: - image-classification tags: - roboflow - roboflow2huggingface - Gaming --- <div align="center"> <img width="640" alt="keremberke/pokemon-classification" src="https://huggingface.co/datasets/keremberke/pokemon-classification/resolve/main/thumbnail.jpg"> </div> ### Dataset Labels ``` ['Porygon', 'Goldeen', 'Hitmonlee', 'Hitmonchan', 'Gloom', 'Aerodactyl', 'Mankey', 'Seadra', 'Gengar', 'Venonat', 'Articuno', 'Seaking', 'Dugtrio', 'Machop', 'Jynx', 'Oddish', 'Dodrio', 'Dragonair', 'Weedle', 'Golduck', 'Flareon', 'Krabby', 'Parasect', 'Ninetales', 'Nidoqueen', 'Kabutops', 'Drowzee', 'Caterpie', 'Jigglypuff', 'Machamp', 'Clefairy', 'Kangaskhan', 'Dragonite', 'Weepinbell', 'Fearow', 'Bellsprout', 'Grimer', 'Nidorina', 'Staryu', 'Horsea', 'Electabuzz', 'Dratini', 'Machoke', 'Magnemite', 'Squirtle', 'Gyarados', 'Pidgeot', 'Bulbasaur', 'Nidoking', 'Golem', 'Dewgong', 'Moltres', 'Zapdos', 'Poliwrath', 'Vulpix', 'Beedrill', 'Charmander', 'Abra', 'Zubat', 'Golbat', 'Wigglytuff', 'Charizard', 'Slowpoke', 'Poliwag', 'Tentacruel', 'Rhyhorn', 'Onix', 'Butterfree', 'Exeggcute', 'Sandslash', 'Pinsir', 'Rattata', 'Growlithe', 'Haunter', 'Pidgey', 'Ditto', 'Farfetchd', 'Pikachu', 'Raticate', 'Wartortle', 'Vaporeon', 'Cloyster', 'Hypno', 'Arbok', 'Metapod', 'Tangela', 'Kingler', 'Exeggutor', 'Kadabra', 'Seel', 'Voltorb', 'Chansey', 'Venomoth', 'Ponyta', 'Vileplume', 'Koffing', 'Blastoise', 'Tentacool', 'Lickitung', 'Paras', 'Clefable', 'Cubone', 'Marowak', 'Nidorino', 'Jolteon', 'Muk', 'Magikarp', 'Slowbro', 'Tauros', 'Kabuto', 'Spearow', 'Sandshrew', 'Eevee', 'Kakuna', 'Omastar', 'Ekans', 'Geodude', 'Magmar', 'Snorlax', 'Meowth', 'Pidgeotto', 'Venusaur', 'Persian', 'Rhydon', 'Starmie', 'Charmeleon', 'Lapras', 'Alakazam', 'Graveler', 'Psyduck', 'Rapidash', 'Doduo', 'Magneton', 'Arcanine', 'Electrode', 'Omanyte', 'Poliwhirl', 'Mew', 'Alolan Sandslash', 'Mewtwo', 'Weezing', 'Gastly', 'Victreebel', 'Ivysaur', 'MrMime', 'Shellder', 'Scyther', 'Diglett', 'Primeape', 'Raichu'] ``` ### Number of Images ```json {'train': 4869, 'valid': 1390, 'test': 732} ``` ### How to Use - Install [datasets](https://pypi.org/project/datasets/): ```bash pip install datasets ``` - Load the dataset: ```python from datasets import load_dataset ds = load_dataset("keremberke/pokemon-classification", name="full") example = ds['train'][0] ``` ### Roboflow Dataset Page [https://universe.roboflow.com/robert-demo-qvail/pokedex/dataset/14](https://universe.roboflow.com/robert-demo-qvail/pokedex/dataset/14?ref=roboflow2huggingface) ### Citation ``` @misc{ pokedex_dataset, title = { Pokedex Dataset }, type = { Open Source Dataset }, author = { Lance Zhang }, howpublished = { \\url{ https://universe.roboflow.com/robert-demo-qvail/pokedex } }, url = { https://universe.roboflow.com/robert-demo-qvail/pokedex }, journal = { Roboflow Universe }, publisher = { Roboflow }, year = { 2022 }, month = { dec }, note = { visited on 2023-01-14 }, } ``` ### License Public Domain ### Dataset Summary This dataset was exported via roboflow.com on December 20, 2022 at 5:34 PM GMT Roboflow is an end-to-end computer vision platform that helps you * collaborate with your team on computer vision projects * collect & organize images * understand unstructured image data * annotate, and create datasets * export, train, and deploy computer vision models * use active learning to improve your dataset over time It includes 6991 images. Pokemon are annotated in folder format. The following pre-processing was applied to each image: * Auto-orientation of pixel data (with EXIF-orientation stripping) * Resize to 224x224 (Fit (black edges)) No image augmentation techniques were applied.
[ -0.6463289260864258, -0.12652842700481415, 0.22408878803253174, 0.1064591184258461, -0.08450353145599365, 0.1580912470817566, 0.14983093738555908, -0.24994108080863953, 0.7590609192848206, 0.19002856314182281, -0.4578780233860016, -0.7046860456466675, -0.7733798027038574, 0.3935511112213135, -0.09362359344959259, 0.6299420595169067, 0.06303616613149643, -0.11887244135141373, 0.18511411547660828, -0.0165344700217247, -0.3475111424922943, -0.22018925845623016, -0.5699107646942139, -0.2868451178073883, 0.5450752377510071, 0.5978343486785889, 1.0767258405685425, 0.45490801334381104, 0.5717687010765076, 0.4694662392139435, -0.12972605228424072, 0.13273492455482483, -0.31960529088974, -0.27241435647010803, -0.080515056848526, -0.8783413767814636, -0.4282380938529968, -0.19431135058403015, 0.43735024333000183, 0.6724532246589661, 0.17774531245231628, 0.012230041436851025, -0.11193197965621948, 0.6440354585647583, -0.7185139060020447, -0.02438238263130188, -0.48674944043159485, 0.43234577775001526, -0.2440377175807953, -0.25319233536720276, -0.11115411669015884, -0.438963383436203, 0.14737571775913239, -0.8167832493782043, 0.24542289972305298, -0.008086152374744415, 1.4109095335006714, 0.020179012790322304, -0.05418781936168671, -0.32699036598205566, -0.1264272779226303, 0.620932936668396, -0.669532060623169, 0.2683902084827423, 0.4373185932636261, 0.04430893436074257, -0.27141836285591125, -0.7323082089424133, -0.7594664096832275, 0.21968626976013184, -0.2830946147441864, 0.30926787853240967, -0.42277729511260986, -0.4837138056755066, 0.19131486117839813, 0.4859684407711029, -0.5687394142150879, -0.03572617098689079, -0.6832377910614014, -0.21352910995483398, 0.6496023535728455, 0.14350873231887817, 0.4997060000896454, -0.2993085980415344, -0.3488881587982178, -0.3156541585922241, -0.1297818124294281, 0.30477669835090637, 0.26919230818748474, 0.010479497723281384, -0.3245733380317688, 0.7301927208900452, -0.15476089715957642, 0.5220552086830139, 0.4108043611049652, -0.27744296193122864, 0.9466668367385864, -0.25543317198753357, -0.2136598527431488, 0.2548971176147461, 1.0770760774612427, 0.9663198590278625, 0.05565672740340233, 0.004925258923321962, 0.18257415294647217, -0.16486865282058716, 0.02537483163177967, -0.8377353549003601, -0.6446502208709717, 0.6319307088851929, -0.706852912902832, -0.6759071946144104, 0.43584296107292175, -1.3808045387268066, -0.4347141683101654, 0.3112383782863617, 0.715347945690155, -0.5095564723014832, -0.39383044838905334, 0.08752594888210297, -0.7475014925003052, 0.16105271875858307, 0.28399690985679626, -0.9999362826347351, 0.12269297987222672, 0.17980016767978668, 1.054546594619751, 0.059153154492378235, -0.4953134059906006, 0.0518861785531044, 0.1678871065378189, -0.7444865703582764, 0.8223634362220764, -0.5154496431350708, -0.5106448531150818, -0.21356968581676483, 0.5747742652893066, -0.3141818940639496, -0.7017160058021545, 0.5439127087593079, -0.16280776262283325, 0.3145475387573242, -0.22935356199741364, -0.4743785858154297, -0.21737328171730042, 0.2688352167606354, -0.7922207117080688, 0.9354106187820435, 0.42673683166503906, -0.9852513074874878, 0.7425128817558289, -0.5985613465309143, -0.2305261790752411, 0.23419368267059326, -0.12189631164073944, -0.7461687922477722, -0.09278779476881027, 0.3238166570663452, 0.7114611864089966, 0.006007731892168522, -0.40146586298942566, -0.22754262387752533, -0.310773640871048, 0.24602647125720978, 0.15012714266777039, 1.2084078788757324, 0.2507845461368561, -0.5873016715049744, -0.08490019291639328, -1.0345999002456665, 0.1682409793138504, 0.7613458037376404, -0.0881919413805008, -0.1196390688419342, -0.2879904508590698, -0.4281666874885559, 0.27562639117240906, 0.3681347668170929, -0.5023618936538696, 0.2632286250591278, -0.031238926574587822, 0.40208226442337036, 0.5362726449966431, 0.25478431582450867, 0.5524582266807556, -0.6591691374778748, 0.3796832263469696, 0.1693706512451172, 0.3860776424407959, -0.15360064804553986, -0.8266730904579163, -0.6689729690551758, -0.758548378944397, 0.18422538042068481, 0.7746608853340149, -0.4850907325744629, 1.5306084156036377, -0.17557115852832794, -0.8534877300262451, -0.5850265622138977, 0.01911422424018383, 0.020573953166604042, 0.40616917610168457, 0.22589211165905, -0.2512815296649933, -0.4846389591693878, -1.0053657293319702, 0.3508116602897644, -0.11472665518522263, 0.12310510873794556, 0.4038985073566437, 0.6919436454772949, -0.3248669505119324, 0.6438603401184082, -0.7167274951934814, -0.46666643023490906, -0.18904869258403778, -0.16735807061195374, 0.5922167897224426, 0.46562451124191284, 0.9960070848464966, -0.7136179208755493, -0.601456880569458, 0.2486100047826767, -0.8558432459831238, 0.12697365880012512, -0.25588706135749817, -0.23951129615306854, -0.13839183747768402, 0.2192865014076233, -0.6007642149925232, 0.7171749472618103, 0.4073202610015869, -0.6380183696746826, 0.3559752106666565, -0.4278227388858795, 0.6025381684303284, -0.9420037269592285, 0.3548407554626465, -0.19721269607543945, 0.0814189463853836, -0.6847653388977051, -0.15673331916332245, 0.3722913861274719, 0.0523141548037529, -0.5186696648597717, 0.388297438621521, -0.24259577691555023, -0.02374141477048397, -0.02827852964401245, -0.016216309741139412, 0.2516620457172394, 0.40042656660079956, 0.2746114134788513, 0.7635747790336609, 1.1032911539077759, -0.7056148052215576, 0.7195548415184021, 0.5320196747779846, -0.5362994074821472, 0.7920609712600708, -0.39305055141448975, -0.5205060839653015, -0.0735035240650177, 0.29642099142074585, -1.0445716381072998, -0.4321784973144531, 0.4147171378135681, -0.6247081160545349, 0.07138691842556, -0.362554669380188, -0.629426896572113, -0.9613235592842102, -0.6639528870582581, 0.2331957072019577, 0.767753541469574, -0.6344990730285645, 0.1868337094783783, 0.1947045624256134, 0.07035881280899048, -0.668942391872406, -0.6849913597106934, -0.08399923145771027, -0.3147585391998291, -0.668984055519104, 0.5191449522972107, 0.019087396562099457, -0.180209681391716, 0.2391044795513153, -0.032009776681661606, -0.11971377581357956, 0.09606277942657471, 0.06958190351724625, 0.6195318102836609, 0.14175303280353546, -0.3113515377044678, -0.24447420239448547, -0.05731869861483574, -0.06309368461370468, 0.11834245175123215, 0.9859183430671692, 0.142239511013031, -0.09962711483240128, -0.9253593683242798, 0.09800003468990326, 0.6963171362876892, 0.007309516426175833, 0.8757830262184143, 0.6028340458869934, -0.39531803131103516, 0.12654955685138702, -0.22110530734062195, -0.08731769025325775, -0.4750979542732239, 0.2307763695716858, -0.5828489065170288, -0.3085857331752777, 0.8329998254776001, 0.1853116899728775, 0.12290938943624496, 0.9102225303649902, 0.5508543848991394, -0.5146788954734802, 1.0801184177398682, 0.11141706258058548, 0.049548447132110596, 0.34016597270965576, -0.7757436633110046, 0.00775269977748394, -0.6952236890792847, -0.8568789958953857, -0.5413818359375, -0.5076190829277039, -0.6995857357978821, -0.32332536578178406, 0.15502910315990448, 0.3950570523738861, -0.41579827666282654, 0.5655752420425415, -0.8843896985054016, 0.740435779094696, 0.6555482745170593, 0.5003270506858826, -0.027408244088292122, 0.00767004769295454, -0.25169816613197327, -0.044171299785375595, -0.5928874611854553, -0.24952392280101776, 1.2768269777297974, 0.24155370891094208, 0.6574378609657288, 0.09496629238128662, 0.9313161373138428, 0.23067376017570496, -0.09207799285650253, -0.6933572292327881, 0.5265180468559265, -0.2970326244831085, -0.8935635089874268, -0.2475515455007553, -0.42802000045776367, -1.215414047241211, 0.21122217178344727, -0.4320853054523468, -0.9805832505226135, 0.450765997171402, -0.09313533455133438, -0.5621189475059509, 0.6918410062789917, -0.9406983852386475, 0.7032459378242493, -0.24721968173980713, -0.4639219045639038, 0.17160362005233765, -0.6402559876441956, 0.25627636909484863, 0.017772061750292778, 0.24138906598091125, -0.3604297339916229, -0.01867348700761795, 0.9125062227249146, -0.9531558156013489, 0.5685018301010132, -0.37024515867233276, 0.025363579392433167, 0.5185155272483826, -0.09355200082063675, 0.6234254240989685, 0.012700000777840614, 0.24347764253616333, -0.04440288990736008, 0.05668370798230171, -0.562802791595459, -0.18809279799461365, 1.0332523584365845, -1.2195559740066528, -0.32624080777168274, -0.7124456763267517, 0.010853570885956287, 0.0387391597032547, 0.33202365040779114, 0.8126449584960938, 0.3374194800853729, 0.44481563568115234, 0.23270875215530396, 0.9954016804695129, -0.3622700870037079, 0.33070310950279236, -0.008608462288975716, -0.28069210052490234, -0.6622220873832703, 0.9689297676086426, 0.20784251391887665, 0.17970649898052216, 0.27194613218307495, 0.3875666856765747, -0.44689610600471497, -0.2036839872598648, -0.13417509198188782, 0.36560192704200745, -0.700465738773346, -0.41486039757728577, -0.6894118785858154, -0.2774980664253235, -0.6161258816719055, -0.6039513945579529, -0.21248719096183777, -0.4154437780380249, -0.35462865233421326, -0.014683404937386513, 0.8400024175643921, 0.5528317093849182, -0.3393476605415344, 0.30410680174827576, -0.6888340711593628, 0.49214062094688416, 0.5918912887573242, 0.29385632276535034, -0.27593210339546204, -0.5737274885177612, 0.46254292130470276, -0.24335214495658875, -0.30677008628845215, -0.9800211191177368, 0.6148343086242676, 0.19525210559368134, 0.7699273228645325, 0.46172311902046204, -0.14582251012325287, 1.1135964393615723, -0.5415005087852478, 1.0309786796569824, 0.8694835305213928, -0.41160058975219727, 0.8455424904823303, -0.17338167130947113, 0.3673713803291321, 0.6228463649749756, 0.581851065158844, -0.5647742748260498, -0.24204370379447937, -1.198560357093811, -0.9724298715591431, 0.8935962915420532, 0.31248369812965393, -0.11788579076528549, 0.06985103338956833, 0.14752042293548584, 0.13939079642295837, 0.10376358032226562, -0.6877659559249878, -0.9996475577354431, -0.46123453974723816, -0.364728182554245, -0.06844222545623779, 0.027829613536596298, -0.08621663600206375, -0.541906476020813, 0.7750396132469177, 0.24784746766090393, 0.5954311490058899, 0.5136933326721191, -0.13019128143787384, -0.34943559765815735, 0.10173434019088745, 0.77519690990448, 0.6058939099311829, -0.7032023668289185, 0.10506947338581085, 0.08505705744028091, -0.8120011687278748, 0.028967389836907387, 0.18425095081329346, -0.2354295700788498, 0.1488673985004425, 0.4082297682762146, 0.4132331907749176, 0.23681142926216125, -0.5289139151573181, 0.6678733229637146, 0.011197028681635857, -0.703416109085083, -0.21053779125213623, 0.36688360571861267, -0.20585879683494568, 0.34491339325904846, 0.8626101613044739, 0.24127526581287384, 0.05233628675341606, -0.7659626007080078, 0.4146822988986969, 0.22107350826263428, -0.19549016654491425, -0.060644518584012985, 0.7616302967071533, -0.08998428285121918, -0.028479650616645813, 0.4507141709327698, -0.07166494429111481, -0.6250028014183044, 0.9890936613082886, 0.33024829626083374, 0.5361462831497192, -0.17212606966495514, 0.3365268111228943, 0.904987633228302, 0.18157386779785156, 0.08341426402330399, 0.4911132752895355, 0.43597516417503357, -0.5829396843910217, 0.1388600617647171, -0.30887526273727417, -0.24945738911628723, 0.5589540004730225, -0.4755975604057312, 0.30299901962280273, -0.7735020518302917, -0.22532707452774048, 0.2830550968647003, 0.2632134258747101, -0.7789638042449951, 0.418205589056015, 0.24405363202095032, 0.8797401785850525, -0.9118592739105225, 0.4709155261516571, 0.6981104016304016, -0.3846742510795593, -0.6470781564712524, -0.22120261192321777, -0.169432133436203, -1.023848295211792, 0.5850725173950195, 0.18737418949604034, 0.5573540925979614, -0.11279060691595078, -0.7882155776023865, -0.8952085971832275, 1.31844961643219, -0.08174630999565125, -0.5981506705284119, 0.40562137961387634, -0.04950731247663498, 0.27013853192329407, 0.05354990065097809, 0.5983331203460693, 0.6628350019454956, 0.6127020716667175, 0.26605212688446045, -0.8943469524383545, -0.10118571668863297, -0.4322517216205597, -0.2650323808193207, 0.2010984718799591, -0.9892337322235107, 0.8109028935432434, -0.24284856021404266, -0.030500538647174835, -0.003210103837773204, 0.4378232955932617, 0.5991454124450684, 0.12405693531036377, 0.6075851321220398, 0.8341749310493469, 0.847583532333374, -0.3010323941707611, 0.8231391906738281, -0.11825539916753769, 0.5129625797271729, 0.7811505794525146, 0.0033205426298081875, 0.6077548861503601, 0.3865024149417877, -0.5180957913398743, 0.30499133467674255, 1.0245616436004639, -0.40958303213119507, 0.9677823781967163, 0.03238736465573311, -0.18457338213920593, -0.17993538081645966, 0.26068398356437683, -0.8224206566810608, 0.1309988796710968, 0.47058284282684326, -0.6321831941604614, -0.17204521596431732, 0.1315687745809555, 0.21404701471328735, -0.0982552021741867, -0.7694573998451233, 0.5180985927581787, -0.6205432415008545, -0.3245232105255127, 0.7149602770805359, -0.329598605632782, 0.873602032661438, -0.5349251627922058, 0.1221030056476593, -0.28615131974220276, 0.3140231966972351, -0.772585928440094, -1.5626463890075684, -0.18465925753116608, -0.14965207874774933, 0.02377316728234291, 0.3458445966243744, 0.5779039263725281, -0.04057267680764198, -0.5769553184509277, -0.031605418771505356, 0.13131138682365417, 0.4558948576450348, 0.44508299231529236, -1.1300337314605713, 0.0750700831413269, 0.16347356140613556, -0.27107948064804077, 0.2792203724384308, 0.6006186604499817, 0.1696438491344452, 0.937559187412262, 0.6450343728065491, 0.008484218269586563, 0.6402956247329712, -0.24562391638755798, 0.8946374654769897, -0.55320805311203, -0.3890778422355652, -0.6219517588615417, 0.5479931235313416, -0.3559412956237793, -0.49364173412323, 0.7845208644866943, 0.8278745412826538, 0.6920487880706787, -0.3160528242588043, 0.792113184928894, -0.7125745415687561, 0.5193809270858765, -0.31004467606544495, 0.580085277557373, -0.6700079441070557, -0.44710835814476013, -0.20020394027233124, -0.6753433346748352, -0.45313549041748047, 1.169031023979187, -0.2543313503265381, 0.08174869418144226, 0.7752718925476074, 0.5113406181335449, -0.003959095571190119, -0.19142313301563263, 0.37153422832489014, 0.047177065163850784, 0.11673013120889664, 0.4957369863986969, 0.8036611676216125, -0.7933474779129028, 0.68067467212677, -1.1825624704360962, -0.2994668483734131, -0.43363457918167114, -0.5379505753517151, -1.186442494392395, -0.7306967973709106, -0.6780950427055359, -0.44157686829566956, -0.18748348951339722, 0.9928135275840759, 0.7578442692756653, -1.0815823078155518, 0.0561923049390316, -0.12913136184215546, -0.08207155764102936, -0.23369373381137848, -0.2794400751590729, 0.5633134245872498, -0.2636018991470337, -0.9464807510375977, 0.1545601189136505, 0.06244868412613869, 0.3894009292125702, 0.29448965191841125, -0.05556272715330124, -0.22112290561199188, -0.1694524586200714, 0.3053499162197113, 0.5899075865745544, -0.5999115109443665, -0.2800436317920685, -0.20227406919002533, -0.12810029089450836, 0.5271183848381042, 0.07024259120225906, -0.5090156197547913, 0.5371302962303162, 0.6295938491821289, 0.0942530706524849, 0.2501973807811737, -0.3425844609737396, -0.3023558557033539, -0.5747293829917908, 0.32006222009658813, 0.05490802228450775, 0.5869770050048828, -0.0440763384103775, -0.49670398235321045, 0.7515594363212585, 0.3390387296676636, -0.5125586986541748, -0.8182752132415771, -0.4949495196342468, -1.343417763710022, -0.4911902844905853, 1.0956361293792725, -0.18459118902683258, -0.5327885150909424, -0.032717619091272354, -0.42406901717185974, -0.04893402382731438, -0.586262047290802, 0.4633897840976715, 0.5342410206794739, -0.15788638591766357, -0.3998391926288605, -0.5278878211975098, 0.5009793639183044, -0.17409437894821167, -1.086280345916748, -0.17271672189235687, -0.0188201405107975, 0.37961345911026, 0.6205288171768188, 0.26325806975364685, -0.29738134145736694, 0.44090908765792847, 0.19136500358581543, 0.26868936419487, 0.27647629380226135, 0.03461924567818642, 0.05827747657895088, 0.15073920786380768, -0.16245977580547333, -0.6861966252326965 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
tilyupo/trivia_qa
tilyupo
2023-08-03T17:00:54Z
212
0
null
[ "region:us" ]
2023-08-03T17:00:54Z
2023-08-02T19:44:00.000Z
2023-08-02T19:44:00
--- configs: - config_name: default data_files: - split: train path: data/train-* - split: validation path: data/validation-* dataset_info: features: - name: question dtype: string - name: question_id dtype: string - name: question_source dtype: string - name: answer struct: - name: aliases sequence: string - name: normalized_aliases sequence: string - name: matched_wiki_entity_name dtype: string - name: normalized_matched_wiki_entity_name dtype: string - name: normalized_value dtype: string - name: type dtype: string - name: value dtype: string - name: passages list: - name: answer dtype: string - name: passage dtype: string - name: precise_score dtype: float64 - name: rough_score dtype: float64 - name: source dtype: string - name: title dtype: string splits: - name: train num_bytes: 3065861634 num_examples: 137282 - name: validation num_bytes: 402091161 num_examples: 17817 download_size: 1805238996 dataset_size: 3467952795 --- # Dataset Card for "trivia_qa_passages" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.42939743399620056, -0.3721219003200531, 0.5645676851272583, 0.1579795628786087, -0.3483928143978119, 0.16620567440986633, 0.4034437835216522, -0.09245821833610535, 0.796949028968811, 0.5505317449569702, -0.7540956735610962, -0.8124756813049316, -0.3201064467430115, -0.15432196855545044, -0.2661779522895813, 1.3856480121612549, 0.16927850246429443, 0.24220412969589233, -0.5467438697814941, -0.19211992621421814, -0.5564960837364197, -0.4795747399330139, -0.6619626879692078, -0.2387855499982834, 0.9151358604431152, 0.7970601320266724, 0.5340443849563599, 0.29152047634124756, 0.785496175289154, 0.04344479739665985, -0.05164847895503044, -0.17327383160591125, -0.43311524391174316, 0.05917206034064293, -0.2664870023727417, -0.8823591470718384, -0.7980222105979919, 0.03415687754750252, 0.6985647678375244, 0.3035832643508911, -0.3029434084892273, 0.9951068758964539, -0.38366198539733887, 0.7466583251953125, -0.29086971282958984, 0.48867061734199524, -0.05475040525197983, -0.1408177614212036, -0.8804160356521606, -0.43997877836227417, 0.37146231532096863, -0.9765839576721191, 0.17993959784507751, -1.1627590656280518, 0.19571174681186676, 0.184413343667984, 0.8517004251480103, 0.28862184286117554, 0.1293760985136032, -0.3013058304786682, -0.262148916721344, 0.06385545432567596, -0.2078963816165924, 0.05467361956834793, 0.5963307023048401, 0.6162428855895996, 0.222307950258255, -0.7190449237823486, -0.6310306787490845, 0.2086176872253418, 0.0838228389620781, 0.04374737665057182, 0.07449568808078766, -0.022903840988874435, 0.5180332660675049, 0.6508357524871826, -0.41747260093688965, -0.5704569816589355, -0.6880496740341187, -0.21124306321144104, 0.6831402778625488, 0.3599966764450073, 0.5241019129753113, -0.25513380765914917, 0.19757431745529175, -0.36869800090789795, -0.4679952561855316, 0.22849082946777344, 0.3022828698158264, 0.05741932615637779, -0.9408774971961975, 0.7125211954116821, -0.11966036260128021, 0.3817864656448364, -0.0032103415578603745, 0.4735744595527649, 0.7865490913391113, -0.6885154247283936, 0.11427851021289825, -0.1802080273628235, 0.4180064797401428, 0.4113880395889282, 0.3923594355583191, -0.05919478461146355, 0.08087264001369476, -0.17244327068328857, 0.02571876347064972, -0.9148021340370178, -0.7495071887969971, 0.4657459855079651, -0.4492083489894867, -0.2110714167356491, 0.11244383454322815, -1.0075666904449463, -0.5178416967391968, -0.1595257967710495, 0.3155088424682617, -0.11674516648054123, -0.4533146023750305, -0.052085842937231064, -0.9023808240890503, 0.45815208554267883, -0.0834842175245285, -0.6678407192230225, 0.11223312467336655, 0.5527858734130859, 0.6554262638092041, 0.3577404320240021, -0.23986729979515076, -0.799350380897522, 0.08765305578708649, 0.005416872911155224, 1.0845320224761963, -0.851289689540863, -0.42573416233062744, -0.03357979282736778, 0.11128446459770203, 0.07440071552991867, -0.22249621152877808, 0.8527919054031372, -0.6827086806297302, 0.1285390853881836, -0.7639118432998657, -0.6023329496383667, -0.06674885004758835, 0.30210089683532715, -1.2211909294128418, 1.063502311706543, 0.2762431204319, -0.7012287378311157, 0.2703981101512909, -1.3356144428253174, -0.2665087580680847, 0.6466193199157715, -0.08686099946498871, -0.41005927324295044, 0.27614083886146545, 0.1412029266357422, 0.2011832892894745, -0.2797200083732605, 0.40480637550354004, -0.8300411105155945, -0.2719016969203949, 0.30823299288749695, 0.12191665917634964, 1.0727458000183105, 0.1456386297941208, 0.4904954433441162, -0.06613562256097794, -0.8769583702087402, 0.06338737905025482, 0.21031396090984344, -0.03677515685558319, -0.42810046672821045, -0.47593754529953003, 0.23262596130371094, -0.12051083147525787, 0.3947523832321167, -0.41230520606040955, 0.40700843930244446, 0.07887044548988342, -0.10720062255859375, 0.3631371855735779, 0.5066444277763367, 0.31067362427711487, -0.6204252243041992, 0.7694835662841797, -0.12679781019687653, 0.43465954065322876, 0.3428660035133362, -0.44621729850769043, -0.645046055316925, 0.27754127979278564, 0.7600468397140503, 0.9595582485198975, -0.965878963470459, 0.2991828918457031, 0.1616489589214325, -0.6469788551330566, -0.8297053575515747, -0.04995846003293991, 0.21722374856472015, 0.22802606225013733, 0.35518988966941833, -0.2680022716522217, -0.5848419666290283, -0.5348241329193115, 0.16962240636348724, -0.2510688602924347, -0.0006415937095880508, 0.4613786041736603, 0.789821982383728, 0.00018771737813949585, 0.6820287108421326, -0.8264869451522827, -0.3652864098548889, 0.1939159780740738, -0.09884849190711975, 0.27483344078063965, 0.5104504823684692, 0.9393813610076904, -0.8199194669723511, -0.3741210699081421, -0.8864959478378296, -0.46381399035453796, -0.30559951066970825, 0.3560059070587158, -0.635437548160553, -0.3754429817199707, 0.17059192061424255, -0.3376263678073883, 0.5206217169761658, 0.7934162616729736, -0.7854546904563904, 0.16323266923427582, 0.2842755913734436, 0.2650271952152252, -1.5125513076782227, 0.3404427766799927, -0.26110705733299255, 0.02312958426773548, -0.4296768009662628, -0.009008020162582397, -0.07092992961406708, -0.12890002131462097, -0.03580192103981972, 0.609516978263855, -0.2750425934791565, -0.04786047339439392, 0.12899991869926453, 0.3052785396575928, 0.03954123333096504, 0.2657906413078308, 0.26806914806365967, 0.8118362426757812, 1.040428638458252, -0.44062191247940063, 0.9180143475532532, 0.8797791004180908, 0.04154923930764198, 1.1129462718963623, -0.8497982621192932, 0.20660780370235443, -0.11831700801849365, 0.2675268054008484, -0.8739867210388184, -0.5026930570602417, 0.5866206288337708, -0.7265396118164062, 0.19440199434757233, -0.30229252576828003, -0.6397578716278076, -0.47081995010375977, -0.45135653018951416, 0.9840947985649109, 0.41495540738105774, -0.43646562099456787, 0.31218084692955017, 0.8013544678688049, -0.21333757042884827, -0.09270366281270981, -0.6854443550109863, 0.11626094579696655, -0.2367326319217682, -0.2459249347448349, 0.17614150047302246, -0.602584958076477, 0.08170804381370544, -0.10895700007677078, 0.5984487533569336, -0.21023701131343842, -0.09327661991119385, 0.23165112733840942, 0.2635025680065155, -0.22320254147052765, 0.763180136680603, -0.013376524671912193, -0.4571946859359741, 0.2825964391231537, -0.08572596311569214, 0.38278335332870483, -0.21625816822052002, -0.012935502454638481, -0.5710844993591309, 0.519558310508728, 0.056053031235933304, -0.47968167066574097, 0.5380192995071411, 0.9594544172286987, -0.45165762305259705, -0.08339142799377441, -0.6345411539077759, -0.1448287069797516, -0.384932279586792, -0.055321428924798965, -0.300931841135025, -0.854576826095581, 0.674957275390625, 0.23904383182525635, -0.06804308295249939, 0.7658646106719971, 0.4001636505126953, -0.3749980330467224, 0.24906092882156372, 0.5797191858291626, -0.14614993333816528, 0.4872453212738037, -0.21752315759658813, -0.2842082679271698, -0.843108057975769, -0.3681228756904602, -0.6913451552391052, -0.26377934217453003, -0.7485880851745605, -0.5310144424438477, 0.3588252067565918, -0.0933675765991211, 0.10249748826026917, 0.210129052400589, -0.45445165038108826, 0.5686314702033997, 0.8824664354324341, 0.2505115568637848, 0.12917283177375793, -0.17904353141784668, 0.29600489139556885, 0.29502856731414795, -0.8582298159599304, -0.22360248863697052, 1.420122742652893, 0.46155744791030884, 0.7005329132080078, 0.3130508065223694, 1.0156474113464355, 0.3040955066680908, 0.21755623817443848, -0.2680737376213074, 0.36577078700065613, 0.023404795676469803, -0.9402866959571838, -0.5465027093887329, -0.17604951560497284, -0.5787690877914429, -0.7101351618766785, -0.369920551776886, -0.22396951913833618, 0.45010292530059814, 0.22882747650146484, -0.6082112193107605, 0.24593353271484375, -0.593833327293396, 0.8879976272583008, -0.019762873649597168, -0.005025218240916729, -0.1260586977005005, -0.7119952440261841, 0.11226120591163635, 0.16578669846057892, -0.13414925336837769, -0.16563181579113007, -0.08438748121261597, 1.1656566858291626, -0.10838186740875244, 1.0142347812652588, -0.5221104025840759, -0.024550240486860275, 0.4488680958747864, -0.17535114288330078, 0.04024064168334007, 0.7497625350952148, 0.014124145731329918, 0.08095081895589828, 0.5724552869796753, -0.5479074716567993, -0.3443186581134796, 0.273197740316391, -0.6579713821411133, 0.10765200853347778, -0.46431487798690796, -0.6498500108718872, -0.263826459646225, 0.21756628155708313, 0.3060905635356903, 0.730099081993103, -0.4222579002380371, 0.07318724691867828, 0.9249628186225891, 0.1205175369977951, 0.20230796933174133, 0.347059041261673, -0.14752958714962006, -0.5915197134017944, 0.991344690322876, 0.06663788855075836, -0.2885187268257141, 0.5601774454116821, 0.22488626837730408, -0.6445456743240356, -0.6022374629974365, -0.5196649432182312, 0.4868696928024292, -0.5036121606826782, -0.39996469020843506, -0.14217546582221985, -0.35910409688949585, -0.3954668939113617, 0.12781395018100739, 0.02618371695280075, -0.6949370503425598, -0.8433172702789307, -0.5410045981407166, 1.0646904706954956, 0.6579150557518005, -0.5758985280990601, 0.46139398217201233, -1.1196614503860474, 0.7315852642059326, 0.2574935257434845, 1.1120197772979736, -0.32048940658569336, -0.4021863341331482, -0.3051551878452301, -0.12401679158210754, 0.08948170393705368, -0.7552393674850464, -0.24235445261001587, 0.2318703681230545, 0.49623799324035645, 0.04475892335176468, 0.08696922659873962, 0.5668391585350037, 0.017528897151350975, 0.7171430587768555, 0.042010799050331116, -0.6708627939224243, 0.5780897736549377, -0.37883371114730835, 0.35542798042297363, 1.1959880590438843, 0.38284963369369507, -0.5905526876449585, -0.15810111165046692, -0.9195886850357056, -0.2651931047439575, 0.5667946338653564, 0.13181155920028687, 0.06528381258249283, 0.15645954012870789, 0.620313286781311, -0.01449445728212595, 0.428064227104187, -0.7078163623809814, -0.6284170150756836, -0.11649367213249207, -0.37364619970321655, 0.0608237087726593, -0.6529700756072998, -0.324311763048172, -0.4160018563270569, 0.6570073366165161, -0.13458751142024994, 0.19111686944961548, 0.1253972351551056, 0.28328737616539, -0.1298931986093521, 0.16359815001487732, 0.32675281167030334, 0.7011836171150208, -0.5602421760559082, -0.3025316596031189, -0.0029820268973708153, -0.5069221258163452, -0.2114720642566681, 0.6325219869613647, -0.3072962462902069, -0.10690511018037796, 0.4923378527164459, 0.7098695039749146, -0.45390766859054565, -0.22438696026802063, 0.2851904630661011, -0.2495967447757721, -0.2829397916793823, -0.6019259691238403, 0.22915741801261902, 0.23697015643119812, 0.3998563289642334, 0.1251857727766037, -0.5642550587654114, 0.48505574464797974, -0.40881893038749695, 0.563575029373169, -0.01830228418111801, -0.5860159397125244, -0.3127645254135132, 0.2985868752002716, 0.6037335395812988, -0.4322909414768219, 0.8057771921157837, -0.26304352283477783, -0.4053661823272705, 0.5056639313697815, -0.08106158673763275, 0.9705635905265808, -0.28951239585876465, 0.7472994327545166, 0.5000049471855164, 0.09960515797138214, 0.31615298986434937, 1.036630630493164, -0.4853856563568115, -0.5064594745635986, 0.05549415200948715, -0.4856976866722107, -0.4341200590133667, -0.2859872579574585, -0.958782434463501, 0.05474943295121193, -0.4363999366760254, -0.34556734561920166, -0.11396845430135727, 0.36162781715393066, -0.7455075979232788, 0.13554874062538147, 0.29392266273498535, 1.4395077228546143, -0.8493084907531738, 0.6662328243255615, 0.7122681736946106, -0.7623237371444702, -0.7361111640930176, -0.013423997908830643, -0.21705931425094604, -0.7375963926315308, -0.04358099400997162, -0.30474135279655457, 0.28520745038986206, -0.18683502078056335, -0.9577226042747498, -0.8082190752029419, 1.3235971927642822, -0.08902134001255035, -0.6610664129257202, -0.2133236825466156, 0.30429238080978394, 0.740702211856842, -0.3459796905517578, 0.29137733578681946, 0.7920162081718445, 0.7429088354110718, 0.22802987694740295, -0.8160954713821411, 0.033693064004182816, -0.4965614080429077, -0.3099633753299713, 0.18397173285484314, -0.8273816108703613, 0.04986890032887459, -0.3208051919937134, -0.167863130569458, 0.24673956632614136, 0.758743166923523, 0.5085835456848145, 0.758449912071228, 0.3370022177696228, 0.5868186354637146, 1.0469375848770142, -0.36499276757240295, 0.9484889507293701, -0.019119098782539368, 0.3342401087284088, 1.3027392625808716, 0.012676913291215897, 0.4970841407775879, 0.6099725961685181, -0.05879916995763779, 0.39523422718048096, 0.6957539916038513, -0.4850325286388397, 0.4296165406703949, 0.3634669780731201, 0.1133747547864914, -0.380405455827713, -0.4329449236392975, -0.7241275310516357, 0.15874379873275757, 0.47109296917915344, -0.22472482919692993, -0.023363547399640083, -0.2901178002357483, -0.09420330822467804, -0.16409127414226532, -0.39786702394485474, 0.8585890531539917, 0.16240555047988892, -0.3886619210243225, -0.06360940635204315, -0.5222486257553101, 0.1611456573009491, -0.6600075364112854, -0.4834613800048828, -0.19785478711128235, -0.29716676473617554, -0.3506245017051697, -1.5860849618911743, 0.5420112609863281, -0.31072723865509033, -0.21403883397579193, 0.1766778528690338, 0.2833811044692993, -0.6489198207855225, -0.6822504997253418, 0.1439501941204071, 0.44117552042007446, 0.09866980463266373, 0.08883251249790192, -1.132340431213379, -0.024008868262171745, -0.060926564037799835, 0.030746888369321823, -0.3330768346786499, 0.41741567850112915, 0.09049021452665329, 0.6840567588806152, 0.4502143859863281, 0.06293666362762451, -0.35156890749931335, 0.5368307828903198, 0.8530476093292236, -0.94472336769104, -0.734325647354126, -0.4046904444694519, 0.5483155250549316, -0.28834354877471924, -0.8377281427383423, 0.4710807800292969, 0.9024052619934082, 0.7853319644927979, -0.0756683498620987, 0.7386179566383362, -0.28153568506240845, 0.822066605091095, -0.6986642479896545, 0.7807685732841492, -0.6061688661575317, -0.018053153529763222, -0.12234518676996231, -0.6554802656173706, -0.5124969482421875, 0.08704804629087448, 0.006737725809216499, -0.050516389310359955, 0.6739206910133362, 0.8824894428253174, -0.07845300436019897, 0.19950278103351593, -0.14175662398338318, 0.0711357593536377, 0.21413607895374298, 0.7934457063674927, 0.6518685817718506, -0.5179589986801147, 0.5105116367340088, -0.25175321102142334, -0.3786863684654236, -0.01688753254711628, -0.839241623878479, -1.172858476638794, -0.9555083513259888, -0.5393937826156616, -0.6198664903640747, -0.05915690213441849, 0.754623532295227, 0.6349289417266846, -1.0750813484191895, -0.2727755904197693, 0.2546791434288025, 0.5036826133728027, 0.20485538244247437, -0.1884543001651764, 0.7079038619995117, 0.21521398425102234, -0.41272425651550293, -0.31549739837646484, -0.15784785151481628, 0.2993435859680176, -0.1704268902540207, 0.1914353221654892, -0.11183823645114899, 0.08880026638507843, 0.12196630984544754, 0.4398598372936249, -0.16399377584457397, -0.30299338698387146, -0.13349585235118866, 0.054509811103343964, 0.057291705161333084, 0.8976247906684875, -0.4111327528953552, 0.2886884808540344, 0.8433308601379395, 0.411389023065567, 0.5695574283599854, 0.11237598210573196, 0.6902308464050293, -0.472652792930603, -0.39468511939048767, 0.22507691383361816, 0.22392961382865906, 0.1251899152994156, -0.467956006526947, 0.9058092832565308, 0.35208237171173096, -0.3781810700893402, -0.5383504033088684, 0.051569171249866486, -1.4323971271514893, 0.3422248363494873, 1.0400519371032715, 0.3302823305130005, -0.5945488214492798, -0.2587401270866394, -0.3902616500854492, 0.29655495285987854, -0.9422478079795837, 0.5770293474197388, 0.8126241564750671, 0.13881003856658936, -0.3561404347419739, -0.24261429905891418, 0.9964209198951721, -0.2847335934638977, -1.3069519996643066, 0.006728192791342735, 0.5464173555374146, 0.3265751898288727, 0.3153080940246582, 0.9025506973266602, -0.22800862789154053, 0.6411820650100708, 0.07193464040756226, 0.2214263379573822, -0.2440626323223114, -0.5666390657424927, -0.4908169209957123, 0.16422979533672333, -0.13683676719665527, -0.6211417317390442 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
vblagoje/wikipedia_snippets_streamed
vblagoje
2021-07-01T15:32:09Z
211
0
null
[ "region:us" ]
2021-07-01T15:32:09Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
Entry not found
[ -0.32276472449302673, -0.22568407654762268, 0.8622258901596069, 0.4346148371696472, -0.5282984972000122, 0.7012965679168701, 0.7915717363357544, 0.07618629932403564, 0.7746022939682007, 0.2563222646713257, -0.785281777381897, -0.22573848068714142, -0.9104482531547546, 0.5715669393539429, -0.3992331624031067, 0.5791243314743042, -0.14494486153125763, -0.10751184076070786, 0.28233760595321655, -0.27689510583877563, -0.5409225225448608, -0.36855223774909973, -1.1902780532836914, 0.061491094529628754, 0.5316579341888428, 0.7435142397880554, 0.7584059834480286, 0.3652164936065674, 0.6432580947875977, 0.3932291567325592, -0.2313893735408783, 0.4827055037021637, -0.04171811789274216, 0.002603769302368164, -0.3524438738822937, -0.5516899824142456, -0.28596606850624084, 0.07584748417139053, 1.096130132675171, 0.9666875600814819, -0.2846639156341553, 0.05330846458673477, -0.3063625693321228, 0.33088910579681396, -0.4973434805870056, 0.3054102659225464, -0.022506307810544968, 0.16318818926811218, -0.7041515707969666, -0.5535354614257812, 0.012794638983905315, -0.7361210584640503, 0.17926540970802307, -0.690081000328064, 0.8269097208976746, 0.1858314424753189, 1.153375267982483, 0.1481940746307373, -0.4624869227409363, -0.8161762356758118, -0.6538985371589661, 0.5711170434951782, -0.3270367681980133, 0.39680251479148865, 0.7028236985206604, -0.048573367297649384, -0.9820335507392883, -0.6745744943618774, -0.46466144919395447, 0.2923961281776428, 0.3540281355381012, -0.3411676287651062, -0.1752210557460785, -0.30589887499809265, 0.15792015194892883, 0.12811514735221863, -0.4841992259025574, -0.5543918013572693, -0.5475160479545593, -0.39602550864219666, 0.6206660270690918, 0.3482949137687683, 0.2429179698228836, -0.18884186446666718, -0.3228585124015808, 0.08801652491092682, -0.4160858988761902, 0.3402571380138397, 0.6335514783859253, 0.711401641368866, -0.5811445713043213, 0.5602161288261414, -0.04927612096071243, 0.7439702749252319, 0.11445526778697968, -0.2747807800769806, 0.4146057963371277, -0.14724718034267426, 0.05517200380563736, 0.42263442277908325, 0.315244197845459, 0.28413110971450806, -0.3273695409297943, 0.20322325825691223, -0.32151469588279724, -0.3049620985984802, -0.2233220636844635, -0.29490748047828674, -0.35921812057495117, 0.5492290258407593, -0.33140188455581665, -0.42855483293533325, 1.143175721168518, -0.42007699608802795, -0.7302223443984985, 0.3315642774105072, 0.40652066469192505, -0.09944798052310944, -0.3714655041694641, -0.05226077511906624, -0.8458787798881531, -0.007907616905868053, 0.7491171956062317, -0.7198969721794128, 0.33717361092567444, 0.4728066325187683, 0.7417216300964355, 0.1965055614709854, -0.1403450071811676, -0.4294942021369934, 0.29719701409339905, -0.8659994006156921, 0.6320171356201172, -0.20135235786437988, -1.0051977634429932, 0.1115049496293068, 0.8971706628799438, -0.37896397709846497, -1.2094879150390625, 1.060516119003296, -0.6887933015823364, 0.16017858684062958, -0.676761269569397, -0.1466120183467865, -0.07118489593267441, -0.005096477456390858, -0.6088160276412964, 0.7567108869552612, 0.587267279624939, -0.49952763319015503, 0.2142949402332306, -0.2602987289428711, -0.3915135860443115, 0.3882487416267395, -0.07935424149036407, -0.21858899295330048, 0.713833212852478, -0.6647079586982727, -0.26932841539382935, 0.29427704215049744, 0.23689396679401398, -0.35706067085266113, -0.7931919097900391, 0.08478138595819473, -0.05786247178912163, 1.550750494003296, -0.038688354194164276, -0.35861048102378845, -0.6793831586837769, -1.1506237983703613, -0.07070822268724442, 0.6886888742446899, -0.91949862241745, -0.2783950865268707, -0.04641031473875046, -0.26169344782829285, 0.08994942903518677, 0.7390592098236084, -1.1194050312042236, 0.2832726538181305, -0.05092623084783554, -0.22794684767723083, 0.8271058797836304, 0.15387234091758728, 0.24758955836296082, 0.14913421869277954, 0.42958736419677734, 0.5277256965637207, 0.11115224659442902, 0.6835876703262329, -0.3472035527229309, -0.9694350361824036, 0.615463137626648, 0.252663791179657, 0.8121445775032043, -0.499453067779541, 0.2685090899467468, 0.27025526762008667, -0.3409680724143982, -0.5682372450828552, -0.3102838397026062, 0.09025733917951584, 0.14930537343025208, 0.11142478138208389, -0.5721713304519653, -0.6576123237609863, -0.9689142107963562, -0.13590645790100098, -0.43143749237060547, -0.3571569323539734, 0.2100692242383957, 0.579290509223938, -1.1975524425506592, 0.41288718581199646, -0.7705629467964172, -0.7038741111755371, -0.010655385442078114, -0.19338127970695496, 0.7540653347969055, 0.43240171670913696, 0.5033965110778809, -0.6397148370742798, -0.566198468208313, -0.2247016429901123, -1.0333747863769531, -0.1328047662973404, 0.24819645285606384, 0.30657368898391724, -0.13423338532447815, -0.2744963765144348, -0.4874034523963928, 0.8100384473800659, 0.1478918045759201, -0.5391896963119507, 0.5220763087272644, -0.3020314574241638, 0.17224827408790588, -0.6369147300720215, -0.06916819512844086, -0.6616761088371277, -0.0009071171516552567, -0.3608308434486389, -0.5737441182136536, 0.147722989320755, 0.07017489522695541, -0.16065482795238495, 0.2880844175815582, -0.9092768430709839, -0.00108518754132092, -0.7442208528518677, 0.3790720999240875, 0.06394755840301514, -0.3145078718662262, -0.01751749776303768, 1.000038743019104, 0.7784460783004761, -0.3848043978214264, 0.7217440605163574, 0.4440038204193115, 0.19036145508289337, 0.7630521059036255, -0.18725094199180603, 0.16478231549263, -0.5245417952537537, -0.12161092460155487, -0.888759970664978, -1.0982941389083862, 0.7320570945739746, -0.6114252209663391, 0.3654291033744812, -0.42778706550598145, 0.25891587138175964, -0.6919257640838623, -0.03885354846715927, 0.4808601438999176, -0.05936328321695328, -0.6863945126533508, 0.5232570171356201, 0.45317578315734863, -0.20192423462867737, -0.6609035134315491, -0.530157208442688, 0.3936580419540405, 0.615411639213562, -0.16390354931354523, 0.06878522783517838, 0.14941099286079407, -0.5441924929618835, -0.04080290347337723, -0.3869200646877289, -0.4576675295829773, 0.05422424152493477, 0.130534365773201, -0.005750787444412708, -0.40481987595558167, -0.08680295944213867, -0.3584199547767639, -0.4656123220920563, 0.21876534819602966, 0.3011946678161621, -0.040963124483823776, -0.4259975552558899, -0.3619818687438965, -0.8881809115409851, 0.6719611883163452, 0.5370279550552368, 0.052815359085798264, 0.755554735660553, 0.16819341480731964, -0.8014991879463196, -0.13532225787639618, -0.17607052624225616, 0.26968297362327576, -0.5588056445121765, 0.1384984701871872, -0.013484853319823742, -0.06374941021203995, 0.2629789412021637, 0.25386226177215576, -0.4300557076931, 0.927625298500061, -0.2615275979042053, -0.359252005815506, 0.7960182428359985, 0.5974744558334351, 0.4958311915397644, 0.165032297372818, -0.04454191401600838, 0.900708794593811, -1.1966516971588135, -0.6563180088996887, -0.7409547567367554, -0.15945665538311005, -0.4351082742214203, -0.03210575133562088, 0.6254408955574036, 0.29009902477264404, -0.13333889842033386, 0.4756394922733307, -0.5243489146232605, 0.35560333728790283, 1.01198410987854, 0.35748666524887085, 0.34356993436813354, -0.7570229768753052, -0.2515779137611389, -0.1402425616979599, -0.9998161196708679, -0.26313742995262146, 0.8871029019355774, 0.2275262326002121, 0.8444607853889465, 0.5992540121078491, 0.6784541010856628, 0.136723130941391, 0.25238245725631714, -0.305902898311615, 0.39202943444252014, 0.4376083016395569, -1.0401140451431274, -0.4275839328765869, 0.021418366581201553, -0.9703342318534851, -0.14227499067783356, -0.034950122237205505, -0.4261711537837982, 0.7681735754013062, 0.0001656308741075918, -0.40767034888267517, 0.7732732892036438, -0.45558327436447144, 0.7562877535820007, -0.4473649859428406, -0.026638764888048172, 0.46990957856178284, -0.7070638537406921, 0.4677431583404541, 0.1287880688905716, 0.6205843687057495, -0.015572493895888329, -0.04078594967722893, 0.710493803024292, -0.9129161834716797, 0.2543860375881195, -0.6348399519920349, 0.2242128551006317, 0.24246926605701447, 0.5160627365112305, 0.59699547290802, 0.4371240735054016, 0.10119893401861191, -0.23920860886573792, 0.041157983243465424, -0.8241125345230103, -0.2105061262845993, 0.6975153684616089, -0.7186892032623291, -0.6864198446273804, -1.2355339527130127, 0.14438650012016296, 0.27347075939178467, 0.3893052935600281, 0.7959296107292175, 0.5714086294174194, 0.12895460426807404, 0.6805253028869629, 0.9888585805892944, -0.06885646283626556, 0.9166921377182007, 0.32244759798049927, 0.09175185859203339, -0.21944837272167206, 0.7036821246147156, 0.2662787139415741, -0.24707922339439392, -0.11939706653356552, 0.20913486182689667, -0.11069419234991074, -0.5917614698410034, -0.4999066889286041, 0.37017586827278137, -0.6731789708137512, -0.1830388903617859, -0.6243735551834106, -0.6043767929077148, -0.5117591619491577, 0.06927362829446793, -0.714768648147583, 0.23979046940803528, -0.7753567695617676, -0.10574917495250702, 0.043234020471572876, 0.979200541973114, -0.5893118977546692, 0.580522358417511, -1.1218582391738892, 0.19345781207084656, -0.07949893176555634, 0.7921057939529419, 0.2139577567577362, -0.7344393134117126, -0.39754214882850647, -0.11592614650726318, -0.372991144657135, -1.3576762676239014, 0.21404938399791718, -0.24541446566581726, 0.2309402972459793, 0.6145400404930115, 0.1397707313299179, 0.5258243680000305, -0.3432627320289612, 0.7029105424880981, -0.05701683834195137, -0.7069284319877625, 0.7934494018554688, -0.502689778804779, 0.4963536262512207, 0.9765998721122742, 0.5333833694458008, -0.7984006404876709, 0.03574132174253464, -1.041123390197754, -0.6008695363998413, 0.3842642307281494, 0.11928961426019669, -0.036011070013046265, -0.6659555435180664, -0.05401993542909622, -0.16143807768821716, 0.6043745875358582, -1.0390697717666626, -0.7858359813690186, 0.2576696276664734, 0.5277299284934998, 0.0816856250166893, -0.5653399229049683, 0.2088066041469574, -0.5444162487983704, 1.06577730178833, 0.45109423995018005, 0.32744982838630676, 0.8406060338020325, 0.46492424607276917, -0.3823164403438568, 0.09252481162548065, 0.766269326210022, 0.6666231155395508, -0.5239794254302979, -0.29080286622047424, -0.08827538043260574, -0.914340615272522, 0.059274692088365555, 0.11168905347585678, -0.013455855660140514, 0.9082112312316895, 0.5793076753616333, 0.25397080183029175, 0.4514279365539551, -0.7264606356620789, 0.8859450221061707, -0.14954161643981934, -0.12472894042730331, -1.0677241086959839, 0.19486203789710999, -0.23984971642494202, 0.5006402134895325, 1.0061326026916504, 0.5250049829483032, -0.04763036221265793, -0.8143383264541626, -0.014736054465174675, 0.6939169764518738, -0.709112286567688, -0.17449811100959778, 0.9448537826538086, 0.3847096860408783, -1.2953052520751953, 1.1067763566970825, -0.5381773114204407, -0.5603321194648743, 0.9121301770210266, 0.5229569673538208, 1.1221847534179688, -0.44204115867614746, 0.000867673777975142, 0.2662237286567688, 0.4137844443321228, 0.542316734790802, 1.0869632959365845, 0.4314131736755371, -0.793106198310852, 0.8826586008071899, -0.24776001274585724, -0.4036117196083069, -0.053475599735975266, -0.42859917879104614, 0.1689220666885376, -0.4406189024448395, -0.10713016986846924, -0.3444187641143799, 0.28543174266815186, -0.7072038650512695, 0.4280761778354645, -0.08385655283927917, 0.8653066754341125, -0.8553726077079773, 0.47207650542259216, 0.6354702711105347, -0.33373579382896423, -0.8508188128471375, -0.2619844377040863, -0.11448466777801514, -0.6389464139938354, 0.3021481931209564, -0.4554104208946228, 0.04439902305603027, 0.09623464196920395, -0.6491515040397644, -1.1778271198272705, 0.90936279296875, -0.6396118402481079, -0.2784457802772522, 0.20464053750038147, -0.11514759063720703, 0.2881166338920593, -0.25246450304985046, 0.010661316104233265, 0.4187658727169037, 0.7489398121833801, 0.2844657301902771, -0.7727051973342896, -0.3694884181022644, 0.0015030235517770052, -0.4447476863861084, 0.7582977414131165, -0.6002104878425598, 1.184078335762024, -0.5563539266586304, -0.059654295444488525, 0.4438447952270508, 0.2469092160463333, 0.21076229214668274, 0.6629219651222229, 0.14420786499977112, 0.7282264828681946, 1.070121169090271, -0.4083523750305176, 0.8811809420585632, 0.26432865858078003, 0.474308580160141, 0.7238502502441406, -0.6487724184989929, 0.7513746619224548, 0.3181045651435852, -0.5682923793792725, 0.9228013753890991, 1.2906066179275513, -0.1569923460483551, 0.8079376220703125, 0.051364921033382416, -1.0816001892089844, 0.32583338022232056, -0.20724764466285706, -0.7530066967010498, 0.3150254487991333, 0.19055874645709991, -0.6920984983444214, -0.5770307779312134, -0.24046500027179718, -0.35662785172462463, -0.11552879959344864, -0.7631730437278748, 0.6720568537712097, -0.01696902886033058, -0.5103684663772583, 0.18857550621032715, 0.2877497375011444, 0.1736842691898346, -0.5235732793807983, -0.029394347220659256, -0.22823579609394073, 0.2660658359527588, -0.5670852661132812, -0.523452877998352, 0.5724428296089172, -0.32430219650268555, -0.5343255996704102, 0.18147483468055725, 0.763587236404419, -0.16923828423023224, -0.451541006565094, 0.32472726702690125, 0.6959522366523743, 0.16658523678779602, 0.4250282347202301, -0.23511271178722382, 0.24480605125427246, -0.08044805377721786, -0.06651528179645538, 0.27714768052101135, 0.3449169099330902, 0.22435645759105682, 0.4450145661830902, 0.4328567385673523, -0.018087238073349, -0.10736498981714249, -0.3828195333480835, 0.41249412298202515, -0.9542785882949829, -0.5713286399841309, -0.6307113766670227, 0.2740660011768341, -0.023154232650995255, -1.0836423635482788, 0.41451674699783325, 1.4406683444976807, 1.0359985828399658, -0.4756380617618561, 1.0672266483306885, -0.21818478405475616, 0.9594789743423462, 0.41483086347579956, 0.5420441627502441, -0.6030413508415222, 0.03835355490446091, -0.4364401698112488, -1.0769627094268799, -0.35716333985328674, 0.4539388120174408, -0.022899528965353966, -0.34298649430274963, 0.8725717663764954, 0.5887163281440735, -0.3347361087799072, -0.11727993190288544, 0.04848712682723999, -0.029941773042082787, -0.12433848530054092, 0.514537513256073, 0.7648398876190186, -0.9344307780265808, -0.10680420696735382, -0.2157774418592453, -0.6382726430892944, -0.5047280788421631, -0.9632006883621216, -0.12959416210651398, -0.16037806868553162, 0.03534342721104622, -0.5662806034088135, 0.002557134721428156, 1.2083250284194946, 0.5684956312179565, -1.1113994121551514, -0.5303786993026733, 0.3371853232383728, 0.3920420706272125, -0.1874793916940689, -0.2420240342617035, 0.29845699667930603, 0.15382221341133118, -0.5908879041671753, 0.6875661611557007, 0.8089622259140015, 0.20888903737068176, 0.19554772973060608, 0.1589304357767105, -0.8229473829269409, -0.1491345763206482, 0.17440465092658997, 0.9450567364692688, -0.9398533701896667, -0.7114842534065247, -0.03168461471796036, -0.2709485590457916, -0.057657390832901, 0.17102092504501343, -0.4046342372894287, 0.5180677175521851, 0.34591469168663025, 0.4993346333503723, 0.05616121366620064, -0.054746728390455246, 0.540955662727356, -0.9069057703018188, 0.0942598432302475, 0.41343602538108826, 0.41541171073913574, -0.4000867009162903, -0.5910195112228394, 0.6713421940803528, 1.0073970556259155, -0.659486711025238, -0.8743268847465515, -0.1984672248363495, -1.0016001462936401, 0.04189668968319893, 0.6762763261795044, 0.5009525418281555, -0.48065152764320374, -0.4174496531486511, -0.5617401003837585, -0.1254674196243286, -0.1369975507259369, 0.7621601819992065, 1.1796807050704956, -0.7432090640068054, 0.07975694537162781, -1.038639783859253, 0.6594985723495483, -0.24194566905498505, -0.34575849771499634, -0.4864429533481598, 0.38328030705451965, 0.3523696959018707, 0.44048061966896057, 0.6148121953010559, 0.14084652066230774, 0.8338427543640137, 0.3126052916049957, -0.1702684909105301, 0.26989835500717163, -0.4559202194213867, -0.028933102265000343, -0.05796218663454056, 0.3101596236228943, -1.0262160301208496 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
c-s-ale/alpaca-gpt4-data
c-s-ale
2023-04-07T19:27:51Z
211
17
null
[ "task_categories:text-generation", "size_categories:10K<n<100K", "language:en", "license:cc-by-4.0", "gpt", "alpaca", "fine-tune", "instruct-tune", "instruction", "arxiv:2304.03277", "region:us" ]
2023-04-07T19:27:51Z
2023-04-07T18:20:58.000Z
2023-04-07T18:20:58
--- dataset_info: features: - name: instruction dtype: string - name: input dtype: string - name: output dtype: string splits: - name: train num_bytes: 40178951 num_examples: 52002 download_size: 24027484 dataset_size: 40178951 license: cc-by-4.0 language: - en pretty_name: Instruction Tuning with GPT-4 size_categories: - 10K<n<100K task_categories: - text-generation tags: - gpt - alpaca - fine-tune - instruct-tune - instruction --- # Dataset Description - **Project Page:** https://instruction-tuning-with-gpt-4.github.io - **Repo:** https://github.com/Instruction-Tuning-with-GPT-4/GPT-4-LLM - **Paper:** https://arxiv.org/abs/2304.03277 # Dataset Card for "alpaca-gpt4-data" All of the work is done by [this team](https://github.com/Instruction-Tuning-with-GPT-4/GPT-4-LLM). # Usage and License Notices The data is intended and licensed for research use only. The dataset is CC BY NC 4.0 (allowing only non-commercial use) and models trained using the dataset should not be used outside of research purposes. # Chinese Dataset [Found here](https://huggingface.co/datasets/c-s-ale/alpaca-gpt4-data-zh) # Citation ``` @article{peng2023gpt4llm, title={Instruction Tuning with GPT-4}, author={Baolin Peng, Chunyuan Li, Pengcheng He, Michel Galley, Jianfeng Gao}, journal={arXiv preprint arXiv:2304.03277}, year={2023} } ```
[ -0.2738930583000183, -0.6843739748001099, 0.41068488359451294, 0.3064538240432739, -0.6141679883003235, -0.38939544558525085, -0.17123016715049744, -0.43091586232185364, -0.008620988577604294, 0.33959928154945374, -0.7665427923202515, -0.8792377710342407, -0.5926985740661621, 0.01847982034087181, 0.08124510943889618, 1.3339519500732422, -0.2608446478843689, 0.03194858133792877, 0.2311381995677948, -0.25120052695274353, -0.2441519945859909, -0.21257872879505157, -0.8939115405082703, -0.09393531084060669, 0.26198458671569824, 0.2621125876903534, 0.6092471480369568, 1.1978542804718018, 0.5160507559776306, 0.2747417092323303, 0.33135366439819336, 0.16626575589179993, -0.24093586206436157, -0.6121993064880371, 0.2529982030391693, -0.08833741396665573, -0.9747637510299683, 0.3514520227909088, 0.6683501601219177, 0.1327092945575714, -0.40817737579345703, 0.2768949568271637, 0.2710057497024536, 0.6864075660705566, -0.4049188792705536, 0.836965024471283, -0.6808317303657532, -0.10037513822317123, -0.4553529620170593, -0.49019527435302734, -0.014521408826112747, -0.7002469897270203, -0.060016930103302, -1.0413309335708618, 0.6908082962036133, -0.08252846449613571, 1.2198368310928345, 0.25296550989151, -0.3079336881637573, -0.41460350155830383, -0.25686225295066833, 0.6570412516593933, -0.9508724808692932, 0.0946914479136467, 0.7450733780860901, 0.002304250607267022, -0.04356994107365608, -0.560398519039154, -0.5535688996315002, 0.14395713806152344, -0.019946349784731865, 0.31220999360084534, 0.04936471953988075, 0.04597487300634384, 0.44711434841156006, 0.36972203850746155, -0.587982714176178, 0.025308329612016678, -0.5948169231414795, -0.42291274666786194, 0.6407308578491211, 0.15370416641235352, -0.018623609095811844, 0.12472517788410187, -0.608760416507721, -0.17127762734889984, -0.8603081703186035, 0.12600359320640564, 0.8339249491691589, 0.4528784453868866, -0.8424537181854248, 0.3367479145526886, -0.10621042549610138, 0.8336583971977234, -0.015460568480193615, -0.14570309221744537, 0.9892470836639404, -0.7023316621780396, -0.34737342596054077, -0.10469400137662888, 0.9940629005432129, 0.47382739186286926, -0.2687537968158722, 0.1791815459728241, -0.14790141582489014, -0.34855949878692627, -0.01216617040336132, -0.9630501866340637, -0.47260791063308716, -0.0735931247472763, -0.21349358558654785, -0.0601578913629055, 0.3587633967399597, -0.8371300101280212, 0.1601453572511673, -0.17112977802753448, 0.34951940178871155, -0.12984171509742737, -0.1648363322019577, 0.1067194938659668, 0.14700078964233398, 0.9566762447357178, -0.03358202427625656, -1.13686203956604, 0.21758799254894257, 0.6610411405563354, 0.8700871467590332, -0.06921810656785965, -0.3029201030731201, -0.36886000633239746, 0.3618429899215698, -0.30184975266456604, 0.5858651995658875, -0.1274024248123169, -0.5649347901344299, -0.19563433527946472, 0.6804494261741638, -0.3717517554759979, -0.33467817306518555, 1.2185823917388916, -0.5367989540100098, 0.18136432766914368, -0.6852587461471558, -0.2489394247531891, -0.10469647496938705, 0.15264581143856049, -0.8443657755851746, 1.0253533124923706, 0.19199924170970917, -0.7087879180908203, 0.4414026439189911, -0.6736278533935547, -0.3071911334991455, 0.00043659910443238914, -0.38159722089767456, -1.154951810836792, -0.5001880526542664, 0.45496025681495667, 0.2670416533946991, -0.2650376856327057, -0.02058272995054722, -0.19571919739246368, -0.5838283896446228, -0.28802698850631714, -0.5808318257331848, 0.6138859987258911, 0.10752510279417038, -0.5073595643043518, 0.1156553104519844, -0.7236469388008118, 0.14239934086799622, 0.27141714096069336, -0.5165026783943176, 0.02765195071697235, -0.32578524947166443, -0.392738401889801, 0.026364987716078758, 0.6099934577941895, -0.5802409648895264, 0.3513643145561218, -0.21044006943702698, 0.3519253134727478, 1.0539140701293945, -0.058251943439245224, 0.16607587039470673, -0.4412212669849396, 0.5625074505805969, -0.060169920325279236, 0.3951851427555084, 0.12506991624832153, -0.8682003021240234, -0.658231794834137, -0.22983814775943756, -0.003459973493590951, 0.5714333653450012, -0.7845456004142761, 0.5820972323417664, -0.1066516563296318, -0.46830496191978455, -0.47847115993499756, -0.009611129760742188, 0.43900763988494873, 0.848955512046814, 0.6656140685081482, -0.08206433057785034, -0.22798894345760345, -0.8810949325561523, 0.09262353926897049, 0.09160447120666504, 0.028391700237989426, 0.5354419946670532, 0.39304736256599426, -0.05196557193994522, 0.5122528672218323, -0.686620831489563, -0.32503196597099304, 0.1530950516462326, 0.17280247807502747, 0.5342614650726318, 0.654218316078186, 0.6170998811721802, -0.4689803421497345, -0.5425313115119934, -0.13060010969638824, -0.5448399186134338, -0.248819962143898, 0.08382825553417206, -0.38181373476982117, 0.3948267698287964, 0.018865829333662987, -0.5321305394172668, 0.6209233403205872, 0.7461696267127991, -0.44676151871681213, 0.7104218006134033, -0.46946799755096436, 0.4255563020706177, -0.9280470013618469, 0.005071915220469236, 0.07119792699813843, 0.278037965297699, -0.10294277966022491, -0.1452961266040802, 0.20733530819416046, 0.042292580008506775, -0.4181426167488098, 0.24687814712524414, -0.5896509289741516, -0.10291182994842529, -0.2198159247636795, -0.3619304597377777, 0.06397255510091782, 0.8180122971534729, -0.09584562480449677, 1.2247079610824585, 0.6487447023391724, -0.513846218585968, 0.2625601887702942, 0.40921103954315186, -0.23499709367752075, -0.03682580590248108, -1.0545620918273926, 0.27422595024108887, 0.5122730731964111, 0.2689474821090698, -0.3428979218006134, -0.18467634916305542, 0.920182466506958, -0.24759937822818756, 0.3807625472545624, -0.14146265387535095, -0.48900261521339417, -0.27010682225227356, -0.6635293960571289, 0.5521613955497742, 0.2901519536972046, -0.5957436561584473, 0.387529194355011, 0.054352711886167526, 0.06503760069608688, -0.6517505049705505, -0.5492613315582275, -0.6685166954994202, -0.33385205268859863, -0.3824305534362793, 0.5806468725204468, -0.405970960855484, 0.46389761567115784, 0.004233004990965128, -0.13892893493175507, -0.07170937210321426, -0.355640709400177, 0.19078999757766724, 0.5541565418243408, -0.1824180632829666, -0.07079644501209259, 0.2008247971534729, -0.2295590043067932, 0.23031751811504364, -0.04103400558233261, 0.46733367443084717, -0.3226166367530823, -0.4689452350139618, -0.736728847026825, -0.025547470897436142, 0.003994205500930548, -0.19671185314655304, 0.8636760115623474, 0.8578097224235535, -0.026425020769238472, 0.05548594519495964, -0.2287740856409073, -0.17572475969791412, -0.5815405249595642, 0.32408127188682556, -0.3710000514984131, -0.5398386716842651, 0.6908991932868958, 0.16534951329231262, 0.07221681624650955, 0.7498480677604675, 0.39172443747520447, 0.07657555490732193, 0.6561132073402405, 0.3916205167770386, -0.20384295284748077, 0.3804106116294861, -0.5064555406570435, -0.12532655894756317, -1.124955415725708, -0.2748975455760956, -0.654543936252594, -0.10353822261095047, -0.9910845756530762, -0.526752233505249, 0.3796863555908203, -0.14956551790237427, -0.8352335691452026, 0.30748194456100464, -0.819308876991272, 0.5078928470611572, 0.5884232521057129, 0.2607216238975525, 0.12508930265903473, -0.02611667662858963, -0.09226378798484802, 0.17896321415901184, -0.5257253050804138, -0.5214613080024719, 1.3063758611679077, 0.27750498056411743, 0.5983424782752991, -0.07100111246109009, 0.5459542870521545, -0.024535182863473892, 0.13322220742702484, -0.41073691844940186, 0.4607236981391907, -0.10790000855922699, -0.41665294766426086, -0.2886929214000702, -0.682407021522522, -1.2494924068450928, -0.036785148084163666, 0.007285306230187416, -0.3682185113430023, -0.003946990240365267, 0.29970869421958923, -0.3145028054714203, 0.45011430978775024, -0.6471042633056641, 1.0104258060455322, -0.278274804353714, -0.32531341910362244, 0.22006535530090332, -0.6123475432395935, 0.3036956787109375, -0.07875541597604752, 0.21819522976875305, -0.25934240221977234, -0.3313910663127899, 0.9671149253845215, -0.5502657294273376, 0.7928690910339355, -0.4788283705711365, -0.4502660632133484, 0.4902622401714325, -0.7346412539482117, 0.847210168838501, 0.09993929415941238, -0.44501054286956787, 0.7256407141685486, -0.11785478889942169, -0.5765122771263123, -0.13819418847560883, 1.0856457948684692, -1.3461158275604248, -0.48017221689224243, -0.6988898515701294, -0.5768411755561829, -0.019466297701001167, 0.11216073483228683, 0.5782021880149841, 0.48477017879486084, 0.2541058361530304, -0.07711076736450195, 0.42580074071884155, -0.15566857159137726, 0.5413321852684021, 0.7211053371429443, 0.3475808799266815, -0.505943238735199, 1.0648226737976074, 0.20703288912773132, 0.22594860196113586, -0.05690940469503403, 0.19114333391189575, -0.3440999388694763, -0.7331828474998474, -0.8002648949623108, 0.5221199989318848, -0.5763798952102661, -0.2172282338142395, -0.1174071878194809, -0.3214692175388336, -0.2648492753505707, 0.09262403845787048, -0.34054407477378845, -0.21874934434890747, -0.7965883016586304, -0.3116931617259979, 0.6323655843734741, 0.32509544491767883, -0.09884049743413925, 0.6115483045578003, -0.8556064963340759, 0.2929784953594208, 0.21095982193946838, 0.6651797890663147, -0.27766022086143494, -0.7730227708816528, -0.6312162280082703, 0.27697041630744934, -0.6840267181396484, -0.6543382406234741, 0.4766331911087036, 0.3533315062522888, 0.7766523957252502, 0.23015330731868744, -0.06659930944442749, 0.7147535681724548, -0.3729146718978882, 0.8149268627166748, -0.09096872806549072, -0.7684699296951294, 0.5659166574478149, -0.7142322659492493, 0.5074388980865479, 0.5585936307907104, 0.5207754373550415, 0.27991485595703125, -0.11569302529096603, -0.6292123198509216, -1.0780458450317383, 0.8805521726608276, 0.19083264470100403, 0.05208541080355644, 0.14006364345550537, 0.7304860353469849, 0.2485477328300476, 0.03509170934557915, -0.9740442633628845, -0.39168834686279297, -0.4365374445915222, -0.21507328748703003, 0.11558140814304352, 0.02024086005985737, -0.3506196439266205, -0.3424619138240814, 1.220225214958191, -0.34524857997894287, 0.6263942122459412, -0.1061493530869484, 0.41961902379989624, -0.37141820788383484, -0.030915508046746254, 0.7584704756736755, 0.8200043439865112, -0.3383576273918152, -0.41715139150619507, 0.07742881029844284, -0.9129036664962769, 0.009855533950030804, 0.4947575032711029, -0.19004805386066437, -0.4427812993526459, 0.4247286319732666, 0.9651011228561401, -0.06832101941108704, -0.047722622752189636, 0.3983800709247589, -0.2158215492963791, -0.5383919477462769, -0.4700602889060974, 0.3360629677772522, 0.08194374293088913, 0.13874809443950653, 0.3888850212097168, -0.005282890517264605, 0.0953088328242302, -0.05215279757976532, 0.07530486583709717, 0.28207436203956604, -0.08614989370107651, -0.571716845035553, 0.6265575885772705, 0.25938916206359863, 0.13569557666778564, 0.7498174905776978, -0.41820719838142395, -0.14988653361797333, 0.9563331604003906, 0.5802054405212402, 0.6162380576133728, -0.16193817555904388, -0.13429617881774902, 0.8419781923294067, 0.4083596467971802, 0.03592364117503166, 0.5007069706916809, -0.0004928265116177499, -0.8954474329948425, -0.323311984539032, -0.6128236055374146, -0.32854005694389343, 0.5682872533798218, -0.9306672215461731, 0.5116199254989624, -0.4145292341709137, -0.07667717337608337, -0.33767491579055786, 0.41211870312690735, -0.6849159002304077, 0.21148261427879333, -0.15568378567695618, 0.6629392504692078, -0.9811086058616638, 1.2060463428497314, 0.2610494792461395, -0.41948771476745605, -1.4076627492904663, 0.05595758557319641, -0.06204165145754814, -0.9750180244445801, 0.17477832734584808, 0.27828478813171387, -0.21334269642829895, 0.03816934674978256, -0.6142789721488953, -0.9212812781333923, 1.7281643152236938, 0.40222615003585815, -0.719660758972168, 0.23550909757614136, 0.11541276425123215, 0.20503272116184235, -0.23686623573303223, 0.2803126275539398, 0.718233048915863, 0.6021807789802551, 0.3118514120578766, -1.0041130781173706, 0.026223542168736458, -0.36146506667137146, -0.28688138723373413, 0.28761082887649536, -1.197265386581421, 1.0577348470687866, -0.15418477356433868, -0.026497872546315193, 0.0625624805688858, 0.8235829472541809, 0.7045093178749084, 0.5200257897377014, 0.3404234051704407, 0.7874459028244019, 0.634102463722229, -0.375033974647522, 0.7941224575042725, -0.5354983806610107, 0.42126426100730896, 1.2973082065582275, -0.10569557547569275, 0.45097747445106506, 0.12914922833442688, -0.2336394041776657, 0.585357129573822, 0.932364284992218, -0.4296007454395294, 0.894095242023468, -0.024610187858343124, -0.27648669481277466, 0.32869112491607666, 0.4643561542034149, -0.9927155375480652, 0.3769443929195404, 0.48663750290870667, -0.4716039001941681, -0.04567691683769226, -0.3153374493122101, 0.18592879176139832, -0.3238222897052765, -0.41146254539489746, 0.6192404627799988, -0.1841631382703781, -0.44057509303092957, 0.7992197871208191, 0.007766168564558029, 0.7956257462501526, -0.8828985691070557, -0.27885937690734863, -0.13586117327213287, -0.07877593487501144, -0.2762909531593323, -0.6825262308120728, 0.3632308542728424, -0.08904317021369934, -0.17881813645362854, 0.08248879015445709, 0.32873937487602234, -0.3659515380859375, -0.6370773315429688, 0.17021971940994263, 0.14142169058322906, 0.36239275336265564, 0.5791399478912354, -1.0009486675262451, 0.2705279588699341, 0.2602985203266144, -0.592709481716156, 0.3561371862888336, 0.45264074206352234, 0.008869273588061333, 0.5164579153060913, 0.7503500580787659, 0.185188427567482, 0.07370743155479431, 0.09433575719594955, 1.1763995885849, -0.6464537382125854, -0.527565598487854, -0.8444584608078003, 0.1501786857843399, 0.08052992820739746, -0.6096153259277344, 0.9109914898872375, 0.9086084365844727, 0.931074857711792, 0.05604453384876251, 0.879436731338501, 0.05543499439954758, 0.3684115707874298, -0.7150487899780273, 0.5957046747207642, -0.2614419758319855, 0.4845621585845947, -0.21711067855358124, -0.8096847534179688, -0.0015029775677248836, 0.7339130640029907, -0.3417600095272064, 0.505265474319458, 0.5391343832015991, 1.0319359302520752, -0.036754902452230453, 0.3591947555541992, -0.06394375115633011, 0.02048555016517639, 0.5308281779289246, 0.5282143950462341, 0.19853202998638153, -0.6301900148391724, 0.4929616451263428, -0.3846074938774109, -0.3896774649620056, 0.06976956129074097, -0.9997677803039551, -0.46945059299468994, -0.37784895300865173, -0.3604794144630432, -0.031352002173662186, -0.10661227256059647, 0.7478511333465576, 0.7512632608413696, -0.7373874187469482, -0.15871191024780273, -0.14113222062587738, -0.19570377469062805, -0.4619434177875519, -0.1875835657119751, 1.061615228652954, -0.030935287475585938, -0.8192262053489685, 0.31793802976608276, -0.18441280722618103, 0.20793721079826355, 0.08145763725042343, -0.42059457302093506, -0.14044086635112762, -0.07235344499349594, 0.1252700388431549, 0.32987362146377563, -0.4759567081928253, -0.17177407443523407, -0.28002771735191345, -0.019882548600435257, 0.2548903226852417, 0.45106974244117737, -0.3585057258605957, 0.18153637647628784, 0.05000204220414162, 0.17037534713745117, 0.6676647067070007, 0.09620989859104156, 0.2979542911052704, -0.7819098830223083, 0.3624703288078308, -0.07658686488866806, 0.39210206270217896, 0.31554242968559265, -0.7399219870567322, 0.7810400724411011, 0.2841724455356598, -1.0586248636245728, -0.27157849073410034, -0.17143487930297852, -1.2962251901626587, 0.23661436140537262, 1.0830501317977905, -0.4987322688102722, -0.27071380615234375, 0.1575189232826233, -0.017798129469156265, 0.6217429637908936, -0.8001278042793274, 0.7145633101463318, 0.45456063747406006, -0.4533174932003021, -0.25112438201904297, -0.8490477204322815, 0.6507862210273743, -0.08919577300548553, -1.1644564867019653, -0.12806491553783417, 0.3592560589313507, 0.41580209136009216, -0.14315561950206757, 0.7123812437057495, -0.19737714529037476, 0.23525205254554749, -0.28314247727394104, 0.20928071439266205, -0.5502343773841858, 0.13960370421409607, -0.1954638659954071, -0.04598771780729294, -0.07527414709329605, -0.6252052187919617 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
minoosh/IEMOCAP_Speech_dataset
minoosh
2023-05-16T11:58:34Z
211
0
null
[ "region:us" ]
2023-05-16T11:58:34Z
2023-05-16T11:40:01.000Z
2023-05-16T11:40:01
--- dataset_info: features: - name: TURN_NAME dtype: string - name: audio dtype: audio: sampling_rate: 16000 - name: emotion dtype: class_label: names: '0': ang '1': hap '2': neu '3': sad splits: - name: Session1 num_bytes: 165158903.64 num_examples: 1085 - name: Session2 num_bytes: 154202695.13 num_examples: 1023 - name: Session3 num_bytes: 158294386.59 num_examples: 1151 - name: Session4 num_bytes: 147780976.55 num_examples: 1031 - name: Session5 num_bytes: 170101711.098 num_examples: 1241 download_size: 788474562 dataset_size: 795538673.0080001 --- # Dataset Card for "IEMOCAP_Speech_dataset" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.5198929905891418, -0.24526138603687286, -0.16833634674549103, 0.19631905853748322, 0.015523006208240986, -0.01171476487070322, 0.019900847226381302, -0.38152143359184265, 0.9053110480308533, 0.30304014682769775, -0.8827072978019714, -0.7282599806785583, -0.6378348469734192, -0.2705576717853546, -0.20829755067825317, 1.1436806917190552, 0.38553962111473083, 0.21542038023471832, -0.3656853437423706, -0.20474933087825775, -0.4588165283203125, -0.44608035683631897, -0.793219268321991, -0.5305363535881042, 0.8152689337730408, 0.7776886820793152, 0.09960054606199265, 0.40360158681869507, 0.6109696626663208, 0.13495805859565735, -0.03335452452301979, -0.08955788612365723, -0.3479155898094177, 0.038691308349370956, -0.1116076111793518, -0.689453125, -1.1768213510513306, 0.07048008590936661, 0.6198716163635254, 0.482664555311203, -0.4437105059623718, 0.6586410403251648, -0.11863976716995239, 0.40351685881614685, -0.2934780418872833, 0.6510346531867981, -0.3850942850112915, -0.012825091369450092, -0.7005329132080078, -0.2807307541370392, 0.09893861413002014, -0.2708764374256134, -0.07212474942207336, -0.8695141077041626, 0.04594757780432701, 0.18995340168476105, 0.8085578083992004, 0.07978719472885132, 0.11841565370559692, -0.35465216636657715, -0.3944031894207001, 0.2979118824005127, -0.4231298267841339, 0.3317914605140686, 0.8766587972640991, 0.389156699180603, 0.23459763824939728, -0.8092378973960876, -0.6221482753753662, 0.13377396762371063, 0.17477041482925415, 0.42563870549201965, -0.21174731850624084, 0.15135252475738525, 0.44771963357925415, 0.49673667550086975, -0.49706214666366577, -0.05187287554144859, -0.8379872441291809, -0.6734659075737, 0.44740477204322815, 0.13505589962005615, 0.4362202286720276, -0.06454268097877502, 0.05734832584857941, -0.24977193772792816, -0.44549617171287537, -0.023488707840442657, 0.6649454832077026, 0.46107420325279236, -0.9061899781227112, 0.757258951663971, -0.05230081081390381, 0.5366632342338562, -0.021156806498765945, 0.2341512143611908, 0.7847064137458801, -0.2005407214164734, -0.01888694427907467, 0.22420428693294525, 0.3900229334831238, 0.3983394205570221, 0.27734726667404175, 0.2729214131832123, -0.013706443831324577, 0.1283547729253769, -0.12634941935539246, -1.135686993598938, -0.5897698998451233, 0.3738553524017334, -0.5396780371665955, -0.06702475994825363, 0.2164638787508011, -0.9711285829544067, -0.2299579679965973, -0.3559585213661194, 0.20213626325130463, -0.032138191163539886, -0.6034657955169678, -0.12122077494859695, -0.6596850752830505, 0.4106733202934265, -0.09377037733793259, -0.9704635739326477, 0.3560754656791687, 0.6305687427520752, 0.7653437852859497, 0.2533912658691406, -0.2763693332672119, -0.731288492679596, 0.25432872772216797, 0.09112641215324402, 1.0833287239074707, -0.8155988454818726, -0.3529263436794281, 0.05264291912317276, 0.18552576005458832, -0.12980931997299194, -0.4374942183494568, 1.0496402978897095, -0.06342625617980957, 0.297916442155838, -0.3809684216976166, -0.6008910536766052, 0.09737956523895264, 0.15576158463954926, -0.8108579516410828, 0.908128023147583, -0.02149321511387825, -0.6761288046836853, 0.33484354615211487, -1.5181238651275635, -0.3574199676513672, 0.45957109332084656, -0.18765607476234436, -0.38811707496643066, -0.018743809312582016, 0.21116593480110168, 0.5803208351135254, -0.19042924046516418, 0.2034050077199936, -0.6984472274780273, -0.10423807054758072, 0.09596352279186249, 0.024355893954634666, 1.0872023105621338, 0.44136136770248413, 0.2951905131340027, -0.06850005686283112, -0.9858123660087585, -0.29106733202934265, 0.11806119978427887, -0.01613704301416874, -0.2635839879512787, -0.21739652752876282, 0.4692063331604004, -0.3146837651729584, 0.2623947858810425, -0.5630084872245789, 0.34045296907424927, -0.024512864649295807, 0.3336338698863983, 0.7774924039840698, -0.027580533176660538, 0.16510994732379913, -0.3787187933921814, 0.6792460680007935, -0.016667259857058525, 0.2846178114414215, -0.15205225348472595, -0.5796812772750854, -0.6782294511795044, -0.4003254175186157, 0.6503887176513672, 0.7905566692352295, -0.44299960136413574, 0.5049888491630554, 0.06696868687868118, -0.5801809430122375, -0.6651322245597839, -0.11992891132831573, 0.07202903181314468, 0.46332982182502747, 0.19879746437072754, -0.414267897605896, -0.8765057325363159, -0.8876551985740662, 0.21422342956066132, -0.4215353727340698, -0.2181532382965088, 0.473592072725296, 0.6957548260688782, -0.44005754590034485, 0.7461968064308167, -0.5912899374961853, -0.5105507969856262, 0.20029528439044952, 0.07282346487045288, 0.2516906261444092, 0.7204418182373047, 0.7815862894058228, -0.6231545209884644, -0.17880582809448242, -0.5873300433158875, -0.37084394693374634, -0.5656476616859436, 0.330659955739975, -0.2576444149017334, -0.3784670829772949, 0.24176403880119324, -0.3297172486782074, 0.2938660979270935, 1.0710352659225464, -0.44316428899765015, 0.0549478717148304, 0.3495694100856781, 0.23924770951271057, -1.5343127250671387, 0.37978193163871765, -0.07992387562990189, -0.17524263262748718, -0.45647957921028137, -0.14946484565734863, -0.11031731963157654, -0.3301756978034973, -0.1888817697763443, 0.474700927734375, -0.35048651695251465, -0.036422546952962875, 0.04924854263663292, 0.20660488307476044, -0.056485291570425034, 0.17974695563316345, -0.04884704574942589, 0.91045743227005, 1.2816424369812012, -0.38392311334609985, 0.9086827039718628, 0.6832522749900818, -0.0045055001974105835, 1.1277804374694824, -1.0500975847244263, 0.24631324410438538, -0.12663283944129944, 0.2021234780550003, -0.8418653607368469, -0.7422122359275818, 0.5707805752754211, -0.7371072769165039, 0.39813345670700073, -0.3446713387966156, -0.6257688403129578, -0.481240838766098, -0.3401356339454651, 0.5577216744422913, 0.4130553901195526, -0.5750157237052917, 0.3521059453487396, 1.1662311553955078, -0.38660064339637756, -0.11906799674034119, -1.0485197305679321, 0.1621435582637787, -0.3661177456378937, -0.16435787081718445, 0.5505408644676208, -0.5503078699111938, 0.040031787008047104, -0.378089964389801, 0.6024034023284912, -0.2882976830005646, -0.3063422441482544, 0.4242292642593384, 0.12044022232294083, -0.12839579582214355, 0.6039007902145386, -0.010448052547872066, -0.5352752804756165, 0.04175955802202225, -0.009525272995233536, 0.45334479212760925, -0.1219523474574089, -0.14898018538951874, -0.6904732584953308, 0.46330496668815613, 0.2916300594806671, -0.1883450746536255, 0.3764740824699402, 0.98981112241745, -0.7264118194580078, -0.04454635828733444, -0.4891715943813324, -0.29310885071754456, -0.4400760233402252, 0.1307598352432251, -0.23499459028244019, -0.7752465009689331, 0.7162848711013794, -0.09612222015857697, -0.06911963224411011, 0.7131667137145996, 0.7289252877235413, -0.2924548089504242, 0.6761871576309204, 0.6099885702133179, -0.4850282669067383, 0.5880228877067566, -0.11077891290187836, -0.3223189413547516, -0.9201366901397705, -0.34277287125587463, -0.7276363372802734, -0.40741413831710815, -0.6254157423973083, -0.28199732303619385, 0.04247978329658508, -0.09366437047719955, 0.1040269285440445, 0.606020987033844, -0.6591717004776001, 0.3020642399787903, 0.6705764532089233, -0.0002835035265889019, -0.10374436527490616, 0.13939940929412842, 0.1541835516691208, 0.16112679243087769, -0.7591080665588379, -0.22053730487823486, 1.0925943851470947, 0.5513482093811035, 0.9180650115013123, 0.07820554822683334, 0.5781792402267456, 0.3389604389667511, 0.10511644929647446, -0.5143427848815918, 0.3998694121837616, 0.22360800206661224, -0.6778855323791504, -0.1609080731868744, -0.1698027104139328, -0.9628291130065918, -0.45746511220932007, -0.2750011682510376, -0.445637971162796, 0.45457106828689575, 0.4590669572353363, -0.16532045602798462, 0.03278719261288643, -0.6833569407463074, 0.6979670524597168, 0.22150753438472748, 0.15243563055992126, -0.2073909193277359, -0.5667964220046997, -0.07782470434904099, 0.3654962182044983, 0.00454019196331501, -0.3344151973724365, -0.15985459089279175, 1.3106168508529663, -0.18752136826515198, 1.265360713005066, -0.44943320751190186, 0.06506207585334778, 0.3827919661998749, -0.5249345898628235, 0.1252630352973938, 0.32143154740333557, -0.1750098168849945, 0.37058475613594055, 0.0823119580745697, -0.4201549291610718, -0.07079190760850906, 0.6983029842376709, -0.7102503180503845, 0.20727522671222687, -0.3484528958797455, -0.5055423974990845, -0.1979120373725891, 0.16091588139533997, 0.36175018548965454, 0.8537788391113281, -0.44004178047180176, 0.17324207723140717, 0.7440901398658752, 0.19525213539600372, 0.28685182332992554, 0.2925094664096832, -0.16864104568958282, -0.6581997275352478, 0.9158219695091248, 0.393228679895401, -0.3288811445236206, 0.3041645884513855, 0.36862388253211975, -0.2762991189956665, -0.4091290533542633, -0.4147355854511261, 0.18243196606636047, -0.45002976059913635, -0.49487656354904175, -0.44815587997436523, -0.20009936392307281, -0.6642791628837585, 0.15383119881153107, -0.17843814194202423, -0.7891991138458252, -0.7470302581787109, -0.6876233816146851, 1.0559098720550537, 0.34558582305908203, -0.7263384461402893, 0.49660608172416687, -0.6634371876716614, 0.6401992440223694, 0.35983145236968994, 0.8465442657470703, -0.4593048691749573, -0.5897505283355713, -0.20832818746566772, 0.02695508673787117, -0.01990910992026329, -0.5978485345840454, -0.018137933686375618, 0.675528883934021, 0.7640500664710999, 0.28375741839408875, -0.09580628573894501, 0.8717226386070251, -0.1885640025138855, 0.7400194406509399, 0.1909034252166748, -0.8384613990783691, 0.8842374086380005, -0.33684486150741577, 0.45375922322273254, 0.7589967846870422, 0.41369181871414185, -0.4878997206687927, -0.15457655489444733, -0.8066832423210144, -0.6043598055839539, 0.5115736722946167, 0.24591705203056335, 0.349284827709198, 0.03148382157087326, 0.27019649744033813, 0.00995724555104971, 0.4355088770389557, -0.7739948034286499, -0.8128169775009155, -0.12355434894561768, -0.38983216881752014, 0.18524318933486938, -0.46397897601127625, -0.42926183342933655, -0.7157806754112244, 0.6376664638519287, -0.19054506719112396, 0.7403514981269836, 0.16012373566627502, 0.20198413729667664, 0.000587506452575326, -0.016569525003433228, 0.6375932097434998, 0.552807629108429, -0.2931213974952698, -0.1084710881114006, -0.005889388266950846, -0.6125706434249878, -0.5539852380752563, 0.4591590166091919, 0.026081476360559464, -0.06164434179663658, 0.6637662649154663, 0.9973494410514832, -0.4972846508026123, -0.4462414085865021, 0.45046278834342957, -0.10609249025583267, -0.4067370891571045, -0.6195997595787048, 0.1358613520860672, 0.3012654185295105, 0.10026513785123825, 0.17194418609142303, -0.09267804026603699, 0.4804995357990265, -0.5555108785629272, 0.5160089135169983, 0.014673356898128986, -0.7365816831588745, -0.5798372030258179, 0.5139541625976562, 0.6315319538116455, -0.5763505101203918, 0.7961050271987915, 0.1405995935201645, -0.4943501353263855, 0.6205387711524963, 0.41849803924560547, 0.8361381888389587, -0.4479583203792572, 0.3822048604488373, 0.49880897998809814, 0.26863569021224976, 0.46876955032348633, 0.8296492695808411, -0.3596419394016266, -0.6935405135154724, -0.0845819041132927, -0.3198259770870209, -0.4403513967990875, -0.17565733194351196, -1.0896021127700806, 0.2174416333436966, -0.446523517370224, -0.43192651867866516, -0.04100982844829559, -0.16722065210342407, -0.7637831568717957, 0.07738202065229416, 0.3218317925930023, 1.1590845584869385, -0.8220440149307251, 0.9235792756080627, 0.6234461069107056, -0.33488091826438904, -0.47751155495643616, -0.185531884431839, 0.10046186298131943, -1.0138753652572632, 0.10236222296953201, 0.23095479607582092, 0.12615717947483063, -0.076024129986763, -1.020605444908142, -0.4744054973125458, 1.2546480894088745, 0.46879661083221436, -0.9467083811759949, 0.43994325399398804, -0.00301835173740983, 0.4020542502403259, -0.5040839314460754, 0.3511970639228821, 0.45012167096138, 0.7870863080024719, 0.05944949388504028, -0.9579736590385437, -0.3552200496196747, -0.6224995851516724, -0.3122793436050415, 0.047609373927116394, -0.7662686705589294, 0.25538888573646545, -0.07146347314119339, -0.1252920776605606, -0.1751013547182083, 0.8913191556930542, 0.07250378280878067, 0.46297430992126465, 0.5082682967185974, 0.59470134973526, 1.2093331813812256, -0.18821348249912262, 0.6932703852653503, -0.1256040632724762, 0.3895641565322876, 1.276850938796997, -0.19181475043296814, 0.6413237452507019, 0.6313205361366272, -0.06730452179908752, 0.2814875543117523, 0.5222158432006836, -0.45407766103744507, 0.5122692584991455, 0.2564324140548706, -0.2828729450702667, -0.09482686221599579, -0.4706762135028839, -0.7852914929389954, 0.37546786665916443, 0.5940379500389099, -0.34494054317474365, 0.2818293571472168, 0.24500931799411774, -0.03511921688914299, -0.17877620458602905, -0.4368995726108551, 0.8696474432945251, 0.06798986345529556, -0.01949659176170826, 0.028119483962655067, -0.2740577161312103, 0.6153644323348999, -0.7662056088447571, -0.45616579055786133, -0.002469913801178336, -0.1803680658340454, -0.3857229948043823, -1.0314359664916992, 0.7518988251686096, -0.17868199944496155, -0.2448773980140686, -0.10183875262737274, 0.6171634793281555, -0.6256546378135681, -0.7561408281326294, 0.3485339283943176, 0.04236137121915817, 0.24652662873268127, 0.30763310194015503, -1.2696396112442017, 0.3421277105808258, -0.11728868633508682, -0.17777040600776672, -0.07137662172317505, 0.03366153687238693, 0.3946465253829956, 0.733030378818512, 0.5890130400657654, 0.24712102115154266, -0.22916963696479797, 0.4953150749206543, 0.8329827189445496, -0.4786521792411804, -0.41876816749572754, -0.5016664266586304, 0.6356379389762878, -0.42154964804649353, -0.7404207587242126, 0.45388495922088623, 0.887444019317627, 1.0692086219787598, -0.1005132794380188, 0.7804465889930725, -0.49072128534317017, 0.7493869066238403, -0.5010145306587219, 0.7519135475158691, -0.3475838005542755, -0.0849214419722557, -0.1467151939868927, -0.7508448958396912, -0.6884593963623047, 0.8209917545318604, 0.35081082582473755, -0.1996401846408844, 0.44045189023017883, 1.235697627067566, -0.2074006348848343, 0.13572801649570465, 0.22694645822048187, 0.36194515228271484, 0.19055300951004028, 0.22576352953910828, 0.33461689949035645, -0.5714741945266724, 0.29229336977005005, -0.10828042775392532, -0.5229192972183228, 0.09964537620544434, -1.0334819555282593, -0.9084851741790771, -0.9758347272872925, -0.7331801056861877, -0.2982635796070099, 0.07851602882146835, 1.096085786819458, 1.047150731086731, -1.102126121520996, -0.4646132290363312, 0.18875771760940552, -0.005076199769973755, -0.05226782709360123, -0.16854913532733917, 0.41032081842422485, 0.3513011038303375, -0.9315147995948792, 0.09180554002523422, 0.060955293476581573, 0.16776525974273682, -0.06489159166812897, 0.07649547606706619, -0.0021078118588775396, 0.12585215270519257, 0.4268220365047455, 0.5206595659255981, -0.3177374601364136, -0.3065354824066162, -0.6128067970275879, 0.09376963973045349, 0.17572787404060364, 0.8680840730667114, -0.3752318024635315, 0.499411016702652, 0.6412594318389893, 0.29626190662384033, 0.5245227813720703, -0.25276994705200195, 0.695420503616333, -0.6448233723640442, 0.25494566559791565, 0.08374965190887451, 0.6229872703552246, 0.20496535301208496, -0.24493326246738434, 0.7233631014823914, 0.3283376395702362, -0.5379591584205627, -0.7286618947982788, 0.04477183148264885, -1.4869189262390137, 0.5004878044128418, 0.8786135315895081, 0.07921048253774643, -0.23179040849208832, -0.048222657293081284, -0.6021190881729126, 0.22732989490032196, -1.008100152015686, 0.2820664346218109, 0.6680525541305542, 0.09053956717252731, -0.38743114471435547, -0.38634955883026123, 0.43893030285835266, -0.3252900242805481, -1.1445521116256714, 0.0570143386721611, 0.5072957873344421, 0.01084781065583229, 0.16269104182720184, 0.8143009543418884, -0.21631526947021484, 0.018122125416994095, 0.2561468780040741, 0.4551697075366974, -0.31971561908721924, -0.6419079303741455, -0.3874063193798065, 0.1397963911294937, -0.14590996503829956, -0.6273067593574524 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nielsr/XFUN
nielsr
2022-09-18T10:57:50Z
210
3
null
[ "region:us" ]
2022-09-18T10:57:50Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
Entry not found
[ -0.32276472449302673, -0.22568407654762268, 0.8622258901596069, 0.4346148371696472, -0.5282984972000122, 0.7012965679168701, 0.7915717363357544, 0.07618629932403564, 0.7746022939682007, 0.2563222646713257, -0.785281777381897, -0.22573848068714142, -0.9104482531547546, 0.5715669393539429, -0.3992331624031067, 0.5791243314743042, -0.14494486153125763, -0.10751184076070786, 0.28233760595321655, -0.27689510583877563, -0.5409225225448608, -0.36855223774909973, -1.1902780532836914, 0.061491094529628754, 0.5316579341888428, 0.7435142397880554, 0.7584059834480286, 0.3652164936065674, 0.6432580947875977, 0.3932291567325592, -0.2313893735408783, 0.4827055037021637, -0.04171811789274216, 0.002603769302368164, -0.3524438738822937, -0.5516899824142456, -0.28596606850624084, 0.07584748417139053, 1.096130132675171, 0.9666875600814819, -0.2846639156341553, 0.05330846458673477, -0.3063625693321228, 0.33088910579681396, -0.4973434805870056, 0.3054102659225464, -0.022506307810544968, 0.16318818926811218, -0.7041515707969666, -0.5535354614257812, 0.012794638983905315, -0.7361210584640503, 0.17926540970802307, -0.690081000328064, 0.8269097208976746, 0.1858314424753189, 1.153375267982483, 0.1481940746307373, -0.4624869227409363, -0.8161762356758118, -0.6538985371589661, 0.5711170434951782, -0.3270367681980133, 0.39680251479148865, 0.7028236985206604, -0.048573367297649384, -0.9820335507392883, -0.6745744943618774, -0.46466144919395447, 0.2923961281776428, 0.3540281355381012, -0.3411676287651062, -0.1752210557460785, -0.30589887499809265, 0.15792015194892883, 0.12811514735221863, -0.4841992259025574, -0.5543918013572693, -0.5475160479545593, -0.39602550864219666, 0.6206660270690918, 0.3482949137687683, 0.2429179698228836, -0.18884186446666718, -0.3228585124015808, 0.08801652491092682, -0.4160858988761902, 0.3402571380138397, 0.6335514783859253, 0.711401641368866, -0.5811445713043213, 0.5602161288261414, -0.04927612096071243, 0.7439702749252319, 0.11445526778697968, -0.2747807800769806, 0.4146057963371277, -0.14724718034267426, 0.05517200380563736, 0.42263442277908325, 0.315244197845459, 0.28413110971450806, -0.3273695409297943, 0.20322325825691223, -0.32151469588279724, -0.3049620985984802, -0.2233220636844635, -0.29490748047828674, -0.35921812057495117, 0.5492290258407593, -0.33140188455581665, -0.42855483293533325, 1.143175721168518, -0.42007699608802795, -0.7302223443984985, 0.3315642774105072, 0.40652066469192505, -0.09944798052310944, -0.3714655041694641, -0.05226077511906624, -0.8458787798881531, -0.007907616905868053, 0.7491171956062317, -0.7198969721794128, 0.33717361092567444, 0.4728066325187683, 0.7417216300964355, 0.1965055614709854, -0.1403450071811676, -0.4294942021369934, 0.29719701409339905, -0.8659994006156921, 0.6320171356201172, -0.20135235786437988, -1.0051977634429932, 0.1115049496293068, 0.8971706628799438, -0.37896397709846497, -1.2094879150390625, 1.060516119003296, -0.6887933015823364, 0.16017858684062958, -0.676761269569397, -0.1466120183467865, -0.07118489593267441, -0.005096477456390858, -0.6088160276412964, 0.7567108869552612, 0.587267279624939, -0.49952763319015503, 0.2142949402332306, -0.2602987289428711, -0.3915135860443115, 0.3882487416267395, -0.07935424149036407, -0.21858899295330048, 0.713833212852478, -0.6647079586982727, -0.26932841539382935, 0.29427704215049744, 0.23689396679401398, -0.35706067085266113, -0.7931919097900391, 0.08478138595819473, -0.05786247178912163, 1.550750494003296, -0.038688354194164276, -0.35861048102378845, -0.6793831586837769, -1.1506237983703613, -0.07070822268724442, 0.6886888742446899, -0.91949862241745, -0.2783950865268707, -0.04641031473875046, -0.26169344782829285, 0.08994942903518677, 0.7390592098236084, -1.1194050312042236, 0.2832726538181305, -0.05092623084783554, -0.22794684767723083, 0.8271058797836304, 0.15387234091758728, 0.24758955836296082, 0.14913421869277954, 0.42958736419677734, 0.5277256965637207, 0.11115224659442902, 0.6835876703262329, -0.3472035527229309, -0.9694350361824036, 0.615463137626648, 0.252663791179657, 0.8121445775032043, -0.499453067779541, 0.2685090899467468, 0.27025526762008667, -0.3409680724143982, -0.5682372450828552, -0.3102838397026062, 0.09025733917951584, 0.14930537343025208, 0.11142478138208389, -0.5721713304519653, -0.6576123237609863, -0.9689142107963562, -0.13590645790100098, -0.43143749237060547, -0.3571569323539734, 0.2100692242383957, 0.579290509223938, -1.1975524425506592, 0.41288718581199646, -0.7705629467964172, -0.7038741111755371, -0.010655385442078114, -0.19338127970695496, 0.7540653347969055, 0.43240171670913696, 0.5033965110778809, -0.6397148370742798, -0.566198468208313, -0.2247016429901123, -1.0333747863769531, -0.1328047662973404, 0.24819645285606384, 0.30657368898391724, -0.13423338532447815, -0.2744963765144348, -0.4874034523963928, 0.8100384473800659, 0.1478918045759201, -0.5391896963119507, 0.5220763087272644, -0.3020314574241638, 0.17224827408790588, -0.6369147300720215, -0.06916819512844086, -0.6616761088371277, -0.0009071171516552567, -0.3608308434486389, -0.5737441182136536, 0.147722989320755, 0.07017489522695541, -0.16065482795238495, 0.2880844175815582, -0.9092768430709839, -0.00108518754132092, -0.7442208528518677, 0.3790720999240875, 0.06394755840301514, -0.3145078718662262, -0.01751749776303768, 1.000038743019104, 0.7784460783004761, -0.3848043978214264, 0.7217440605163574, 0.4440038204193115, 0.19036145508289337, 0.7630521059036255, -0.18725094199180603, 0.16478231549263, -0.5245417952537537, -0.12161092460155487, -0.888759970664978, -1.0982941389083862, 0.7320570945739746, -0.6114252209663391, 0.3654291033744812, -0.42778706550598145, 0.25891587138175964, -0.6919257640838623, -0.03885354846715927, 0.4808601438999176, -0.05936328321695328, -0.6863945126533508, 0.5232570171356201, 0.45317578315734863, -0.20192423462867737, -0.6609035134315491, -0.530157208442688, 0.3936580419540405, 0.615411639213562, -0.16390354931354523, 0.06878522783517838, 0.14941099286079407, -0.5441924929618835, -0.04080290347337723, -0.3869200646877289, -0.4576675295829773, 0.05422424152493477, 0.130534365773201, -0.005750787444412708, -0.40481987595558167, -0.08680295944213867, -0.3584199547767639, -0.4656123220920563, 0.21876534819602966, 0.3011946678161621, -0.040963124483823776, -0.4259975552558899, -0.3619818687438965, -0.8881809115409851, 0.6719611883163452, 0.5370279550552368, 0.052815359085798264, 0.755554735660553, 0.16819341480731964, -0.8014991879463196, -0.13532225787639618, -0.17607052624225616, 0.26968297362327576, -0.5588056445121765, 0.1384984701871872, -0.013484853319823742, -0.06374941021203995, 0.2629789412021637, 0.25386226177215576, -0.4300557076931, 0.927625298500061, -0.2615275979042053, -0.359252005815506, 0.7960182428359985, 0.5974744558334351, 0.4958311915397644, 0.165032297372818, -0.04454191401600838, 0.900708794593811, -1.1966516971588135, -0.6563180088996887, -0.7409547567367554, -0.15945665538311005, -0.4351082742214203, -0.03210575133562088, 0.6254408955574036, 0.29009902477264404, -0.13333889842033386, 0.4756394922733307, -0.5243489146232605, 0.35560333728790283, 1.01198410987854, 0.35748666524887085, 0.34356993436813354, -0.7570229768753052, -0.2515779137611389, -0.1402425616979599, -0.9998161196708679, -0.26313742995262146, 0.8871029019355774, 0.2275262326002121, 0.8444607853889465, 0.5992540121078491, 0.6784541010856628, 0.136723130941391, 0.25238245725631714, -0.305902898311615, 0.39202943444252014, 0.4376083016395569, -1.0401140451431274, -0.4275839328765869, 0.021418366581201553, -0.9703342318534851, -0.14227499067783356, -0.034950122237205505, -0.4261711537837982, 0.7681735754013062, 0.0001656308741075918, -0.40767034888267517, 0.7732732892036438, -0.45558327436447144, 0.7562877535820007, -0.4473649859428406, -0.026638764888048172, 0.46990957856178284, -0.7070638537406921, 0.4677431583404541, 0.1287880688905716, 0.6205843687057495, -0.015572493895888329, -0.04078594967722893, 0.710493803024292, -0.9129161834716797, 0.2543860375881195, -0.6348399519920349, 0.2242128551006317, 0.24246926605701447, 0.5160627365112305, 0.59699547290802, 0.4371240735054016, 0.10119893401861191, -0.23920860886573792, 0.041157983243465424, -0.8241125345230103, -0.2105061262845993, 0.6975153684616089, -0.7186892032623291, -0.6864198446273804, -1.2355339527130127, 0.14438650012016296, 0.27347075939178467, 0.3893052935600281, 0.7959296107292175, 0.5714086294174194, 0.12895460426807404, 0.6805253028869629, 0.9888585805892944, -0.06885646283626556, 0.9166921377182007, 0.32244759798049927, 0.09175185859203339, -0.21944837272167206, 0.7036821246147156, 0.2662787139415741, -0.24707922339439392, -0.11939706653356552, 0.20913486182689667, -0.11069419234991074, -0.5917614698410034, -0.4999066889286041, 0.37017586827278137, -0.6731789708137512, -0.1830388903617859, -0.6243735551834106, -0.6043767929077148, -0.5117591619491577, 0.06927362829446793, -0.714768648147583, 0.23979046940803528, -0.7753567695617676, -0.10574917495250702, 0.043234020471572876, 0.979200541973114, -0.5893118977546692, 0.580522358417511, -1.1218582391738892, 0.19345781207084656, -0.07949893176555634, 0.7921057939529419, 0.2139577567577362, -0.7344393134117126, -0.39754214882850647, -0.11592614650726318, -0.372991144657135, -1.3576762676239014, 0.21404938399791718, -0.24541446566581726, 0.2309402972459793, 0.6145400404930115, 0.1397707313299179, 0.5258243680000305, -0.3432627320289612, 0.7029105424880981, -0.05701683834195137, -0.7069284319877625, 0.7934494018554688, -0.502689778804779, 0.4963536262512207, 0.9765998721122742, 0.5333833694458008, -0.7984006404876709, 0.03574132174253464, -1.041123390197754, -0.6008695363998413, 0.3842642307281494, 0.11928961426019669, -0.036011070013046265, -0.6659555435180664, -0.05401993542909622, -0.16143807768821716, 0.6043745875358582, -1.0390697717666626, -0.7858359813690186, 0.2576696276664734, 0.5277299284934998, 0.0816856250166893, -0.5653399229049683, 0.2088066041469574, -0.5444162487983704, 1.06577730178833, 0.45109423995018005, 0.32744982838630676, 0.8406060338020325, 0.46492424607276917, -0.3823164403438568, 0.09252481162548065, 0.766269326210022, 0.6666231155395508, -0.5239794254302979, -0.29080286622047424, -0.08827538043260574, -0.914340615272522, 0.059274692088365555, 0.11168905347585678, -0.013455855660140514, 0.9082112312316895, 0.5793076753616333, 0.25397080183029175, 0.4514279365539551, -0.7264606356620789, 0.8859450221061707, -0.14954161643981934, -0.12472894042730331, -1.0677241086959839, 0.19486203789710999, -0.23984971642494202, 0.5006402134895325, 1.0061326026916504, 0.5250049829483032, -0.04763036221265793, -0.8143383264541626, -0.014736054465174675, 0.6939169764518738, -0.709112286567688, -0.17449811100959778, 0.9448537826538086, 0.3847096860408783, -1.2953052520751953, 1.1067763566970825, -0.5381773114204407, -0.5603321194648743, 0.9121301770210266, 0.5229569673538208, 1.1221847534179688, -0.44204115867614746, 0.000867673777975142, 0.2662237286567688, 0.4137844443321228, 0.542316734790802, 1.0869632959365845, 0.4314131736755371, -0.793106198310852, 0.8826586008071899, -0.24776001274585724, -0.4036117196083069, -0.053475599735975266, -0.42859917879104614, 0.1689220666885376, -0.4406189024448395, -0.10713016986846924, -0.3444187641143799, 0.28543174266815186, -0.7072038650512695, 0.4280761778354645, -0.08385655283927917, 0.8653066754341125, -0.8553726077079773, 0.47207650542259216, 0.6354702711105347, -0.33373579382896423, -0.8508188128471375, -0.2619844377040863, -0.11448466777801514, -0.6389464139938354, 0.3021481931209564, -0.4554104208946228, 0.04439902305603027, 0.09623464196920395, -0.6491515040397644, -1.1778271198272705, 0.90936279296875, -0.6396118402481079, -0.2784457802772522, 0.20464053750038147, -0.11514759063720703, 0.2881166338920593, -0.25246450304985046, 0.010661316104233265, 0.4187658727169037, 0.7489398121833801, 0.2844657301902771, -0.7727051973342896, -0.3694884181022644, 0.0015030235517770052, -0.4447476863861084, 0.7582977414131165, -0.6002104878425598, 1.184078335762024, -0.5563539266586304, -0.059654295444488525, 0.4438447952270508, 0.2469092160463333, 0.21076229214668274, 0.6629219651222229, 0.14420786499977112, 0.7282264828681946, 1.070121169090271, -0.4083523750305176, 0.8811809420585632, 0.26432865858078003, 0.474308580160141, 0.7238502502441406, -0.6487724184989929, 0.7513746619224548, 0.3181045651435852, -0.5682923793792725, 0.9228013753890991, 1.2906066179275513, -0.1569923460483551, 0.8079376220703125, 0.051364921033382416, -1.0816001892089844, 0.32583338022232056, -0.20724764466285706, -0.7530066967010498, 0.3150254487991333, 0.19055874645709991, -0.6920984983444214, -0.5770307779312134, -0.24046500027179718, -0.35662785172462463, -0.11552879959344864, -0.7631730437278748, 0.6720568537712097, -0.01696902886033058, -0.5103684663772583, 0.18857550621032715, 0.2877497375011444, 0.1736842691898346, -0.5235732793807983, -0.029394347220659256, -0.22823579609394073, 0.2660658359527588, -0.5670852661132812, -0.523452877998352, 0.5724428296089172, -0.32430219650268555, -0.5343255996704102, 0.18147483468055725, 0.763587236404419, -0.16923828423023224, -0.451541006565094, 0.32472726702690125, 0.6959522366523743, 0.16658523678779602, 0.4250282347202301, -0.23511271178722382, 0.24480605125427246, -0.08044805377721786, -0.06651528179645538, 0.27714768052101135, 0.3449169099330902, 0.22435645759105682, 0.4450145661830902, 0.4328567385673523, -0.018087238073349, -0.10736498981714249, -0.3828195333480835, 0.41249412298202515, -0.9542785882949829, -0.5713286399841309, -0.6307113766670227, 0.2740660011768341, -0.023154232650995255, -1.0836423635482788, 0.41451674699783325, 1.4406683444976807, 1.0359985828399658, -0.4756380617618561, 1.0672266483306885, -0.21818478405475616, 0.9594789743423462, 0.41483086347579956, 0.5420441627502441, -0.6030413508415222, 0.03835355490446091, -0.4364401698112488, -1.0769627094268799, -0.35716333985328674, 0.4539388120174408, -0.022899528965353966, -0.34298649430274963, 0.8725717663764954, 0.5887163281440735, -0.3347361087799072, -0.11727993190288544, 0.04848712682723999, -0.029941773042082787, -0.12433848530054092, 0.514537513256073, 0.7648398876190186, -0.9344307780265808, -0.10680420696735382, -0.2157774418592453, -0.6382726430892944, -0.5047280788421631, -0.9632006883621216, -0.12959416210651398, -0.16037806868553162, 0.03534342721104622, -0.5662806034088135, 0.002557134721428156, 1.2083250284194946, 0.5684956312179565, -1.1113994121551514, -0.5303786993026733, 0.3371853232383728, 0.3920420706272125, -0.1874793916940689, -0.2420240342617035, 0.29845699667930603, 0.15382221341133118, -0.5908879041671753, 0.6875661611557007, 0.8089622259140015, 0.20888903737068176, 0.19554772973060608, 0.1589304357767105, -0.8229473829269409, -0.1491345763206482, 0.17440465092658997, 0.9450567364692688, -0.9398533701896667, -0.7114842534065247, -0.03168461471796036, -0.2709485590457916, -0.057657390832901, 0.17102092504501343, -0.4046342372894287, 0.5180677175521851, 0.34591469168663025, 0.4993346333503723, 0.05616121366620064, -0.054746728390455246, 0.540955662727356, -0.9069057703018188, 0.0942598432302475, 0.41343602538108826, 0.41541171073913574, -0.4000867009162903, -0.5910195112228394, 0.6713421940803528, 1.0073970556259155, -0.659486711025238, -0.8743268847465515, -0.1984672248363495, -1.0016001462936401, 0.04189668968319893, 0.6762763261795044, 0.5009525418281555, -0.48065152764320374, -0.4174496531486511, -0.5617401003837585, -0.1254674196243286, -0.1369975507259369, 0.7621601819992065, 1.1796807050704956, -0.7432090640068054, 0.07975694537162781, -1.038639783859253, 0.6594985723495483, -0.24194566905498505, -0.34575849771499634, -0.4864429533481598, 0.38328030705451965, 0.3523696959018707, 0.44048061966896057, 0.6148121953010559, 0.14084652066230774, 0.8338427543640137, 0.3126052916049957, -0.1702684909105301, 0.26989835500717163, -0.4559202194213867, -0.028933102265000343, -0.05796218663454056, 0.3101596236228943, -1.0262160301208496 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
VanessaSchenkel/translation-en-pt
VanessaSchenkel
2022-08-06T21:52:26Z
210
2
null
[ "task_categories:translation", "annotations_creators:found", "language_creators:found", "multilinguality:translation", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "language:pt", "license:afl-3.0", "region:us" ]
2022-08-06T21:52:26Z
2022-07-06T00:29:28.000Z
2022-07-06T00:29:28
--- annotations_creators: - found language: - en - pt language_creators: - found license: - afl-3.0 multilinguality: - translation pretty_name: VanessaSchenkel/translation-en-pt size_categories: - 100K<n<1M source_datasets: - original tags: [] task_categories: - translation task_ids: [] --- How to use it: ``` from datasets import load_dataset remote_dataset = load_dataset("VanessaSchenkel/translation-en-pt", field="data") remote_dataset ``` Output: ``` DatasetDict({ train: Dataset({ features: ['id', 'translation'], num_rows: 260482 }) }) ``` Exemple: ``` remote_dataset["train"][5] ``` Output: ``` {'id': '5', 'translation': {'english': 'I have to go to sleep.', 'portuguese': 'Tenho de dormir.'}} ```
[ -0.29185861349105835, -0.1673094779253006, -0.3051319122314453, 0.18042784929275513, -0.6431054472923279, -0.1362176090478897, -0.5141068696975708, 0.025648875162005424, 0.5440030097961426, 0.4263700246810913, -0.4679233133792877, -0.8302074074745178, -0.37063276767730713, 0.564087986946106, -0.7222686409950256, 1.0822060108184814, -0.3040606379508972, 0.18172305822372437, 0.05710579827427864, -0.2397860884666443, -0.273233026266098, -0.5284281969070435, -0.28240758180618286, -0.3644450306892395, 0.32671013474464417, 0.44912204146385193, 0.6045016050338745, 0.66680508852005, 0.6721045970916748, 0.4481898248195648, 0.3084143102169037, 0.2136746644973755, -0.4116915762424469, 0.08930200338363647, -0.07279694080352783, -0.8969013094902039, -0.13561049103736877, 0.026933884248137474, 0.8450490832328796, 0.6973692774772644, 0.1897359937429428, 0.1835232526063919, -0.2552931308746338, 0.4387308955192566, -0.08490604907274246, 0.26005104184150696, -0.4850725829601288, 0.3790610134601593, -0.27834171056747437, -0.0723014697432518, 0.004886959213763475, -0.43192484974861145, 0.16771379113197327, -0.9391940236091614, 0.11485780030488968, -0.05752493441104889, 1.3972623348236084, 0.2306620180606842, -0.44157740473747253, 0.15250426530838013, -0.6230148077011108, 1.0109814405441284, -0.6005618572235107, 0.08653285354375839, 0.7906562685966492, 0.5927114486694336, -0.32623490691185, -0.9100944995880127, -0.47649723291397095, -0.09297826886177063, -0.38308408856391907, 0.07952553033828735, 0.3473566770553589, -0.2832334637641907, 0.38098469376564026, 0.5046263933181763, -0.44452524185180664, -0.3786136209964752, -0.6859132647514343, -0.03557557240128517, 0.7246572971343994, 0.12526443600654602, 0.30678674578666687, -0.20770053565502167, 0.038721904158592224, -0.3521008789539337, -0.4107089936733246, -0.2613067626953125, 0.1689104437828064, 0.8230746388435364, -0.4512922167778015, 0.48554614186286926, -0.702674925327301, 0.697511613368988, -0.38920557498931885, 0.054181985557079315, 0.779066264629364, -0.21598368883132935, -0.356330543756485, -0.15337815880775452, 1.1829216480255127, 0.39755895733833313, 0.27194133400917053, -0.24649065732955933, -0.11299411207437515, -0.23287823796272278, -0.05687171220779419, -0.6861327886581421, -0.3069494068622589, 0.5096977949142456, -0.5863746404647827, -0.5434726476669312, 0.24993878602981567, -0.8731523156166077, -0.07733029127120972, -0.09936457872390747, 0.3013942539691925, -0.3570106625556946, -0.27713915705680847, 0.0360378660261631, -0.367927610874176, -0.07779485732316971, -0.05499974638223648, -0.7695661187171936, 0.2694421708583832, 0.3281004726886749, 0.9061996340751648, 0.2274562269449234, -0.6671633720397949, -0.4537662863731384, -0.1308489441871643, -0.2299061119556427, 0.5890395641326904, -0.21522043645381927, -0.31203001737594604, 0.31390097737312317, 0.40801721811294556, 0.038215864449739456, -0.5262871980667114, 0.5159027576446533, -0.22682645916938782, 0.3848401606082916, -0.5035263895988464, 0.09790468215942383, -0.5097910761833191, 0.2897537648677826, -0.8028686046600342, 1.2411326169967651, 0.4575250446796417, -0.5838699340820312, 0.5421862602233887, -0.6292839646339417, -0.8910680413246155, 0.16407662630081177, 0.007992842234671116, -0.47100162506103516, 0.1657865047454834, 0.3119601607322693, 0.665449321269989, -0.2477857619524002, 0.05821555480360985, -0.3398003578186035, -0.0830853283405304, 0.4693731665611267, -0.08230645954608917, 0.6393809914588928, 0.4261552393436432, 0.1270151287317276, -0.3621540069580078, -0.8510220050811768, -0.27303701639175415, 0.2878437042236328, -0.5092297792434692, -0.6225329637527466, 0.17259067296981812, 0.33346179127693176, 0.17365378141403198, 0.1993110030889511, -0.4309675097465515, 0.437546044588089, -0.5533540844917297, 0.6611140370368958, -0.006827749311923981, -0.05982533469796181, 0.35315948724746704, -0.2751271426677704, 0.2905192971229553, 0.09246329218149185, -0.09717370569705963, 0.007637212984263897, -0.19326971471309662, -0.3486950099468231, -0.29487496614456177, 0.5672836899757385, 0.46137702465057373, -1.0850720405578613, 0.48717746138572693, -0.6643253564834595, -0.5310086607933044, -0.8373614549636841, 0.16364805400371552, 0.06852234154939651, 0.13265901803970337, 0.44526031613349915, 0.0515160970389843, -0.8719441890716553, -0.5034878253936768, -0.16917747259140015, 0.23478616774082184, 0.014620925299823284, 0.08871255815029144, 0.9260931015014648, 0.06999725103378296, 0.7247584462165833, -0.34835612773895264, -0.47458744049072266, -0.46799176931381226, -0.07047438621520996, 0.8661506175994873, 0.7467369437217712, 0.6023228168487549, -0.7717699408531189, -0.4692910611629486, 0.12909547984600067, -1.1612118482589722, 0.04639659821987152, -0.3908502757549286, -0.3660631775856018, -0.28216761350631714, 0.1349385678768158, -0.5995368957519531, 0.22026599943637848, 0.17906266450881958, -0.37352994084358215, 0.11743692308664322, -0.14761167764663696, 0.38211023807525635, -1.499847173690796, 0.2200147658586502, -0.11871398985385895, -0.3316090703010559, -0.6264240145683289, 0.14206083118915558, -0.033516645431518555, 0.15602272748947144, -0.5592523217201233, 0.24145901203155518, -0.4937012493610382, -0.1985224038362503, 0.0039463043212890625, 0.17363956570625305, 0.23105309903621674, 0.0447135828435421, 0.1214856505393982, 0.34883642196655273, 0.7151115536689758, -0.6188133358955383, 1.426943302154541, 0.7089200615882874, -0.737148106098175, 0.3114657402038574, -0.347348690032959, -0.2083890289068222, -0.022104566916823387, 0.2513808012008667, -0.6135361194610596, -0.4160078167915344, 0.33020028471946716, -0.2991947531700134, 0.06773791462182999, -0.33328476548194885, -0.5093146562576294, -0.6473754644393921, -0.31987589597702026, 0.3076973557472229, 0.1793660819530487, -0.5814863443374634, 0.4575049877166748, 0.21794356405735016, 0.16934974491596222, -0.5274995565414429, -1.1416563987731934, 0.3851298391819, -0.7338558435440063, -0.2366546094417572, 0.35849276185035706, 0.6011325716972351, -0.15396147966384888, 0.1866328865289688, 0.2353561520576477, -0.04267777130007744, 0.10434729605913162, 0.00849392544478178, 0.13979336619377136, -0.051900818943977356, 0.1498705893754959, 0.0793161541223526, -0.1748577058315277, -0.01209863368421793, -0.2921328842639923, 0.7120130062103271, 0.044886041432619095, 0.1851958930492401, -0.5034816861152649, 0.4247521460056305, 0.5388950705528259, -0.18320271372795105, 0.7271939516067505, 0.6943477392196655, -0.5593364834785461, -0.45046547055244446, 0.1611100286245346, -0.13740158081054688, -0.4334504306316376, 0.6016659140586853, -0.8135383129119873, 0.055235542356967926, 0.7962981462478638, -0.2564156949520111, -0.02189437486231327, 0.4382522404193878, 0.5623151063919067, -0.21838532388210297, 0.6251512169837952, 0.13979564607143402, -0.5397533178329468, 0.5282005667686462, -0.8682897686958313, 0.07359806448221207, -0.8175792694091797, -0.37078917026519775, -0.6181551218032837, -0.5383586883544922, -0.3975435495376587, -0.2321023941040039, 0.22134223580360413, 0.19584472477436066, -0.17648093402385712, 0.8169176578521729, -0.567054808139801, 0.24908381700515747, 0.8831948041915894, 0.41398945450782776, 0.009340060874819756, 0.19761969149112701, 0.09676645696163177, 0.11598214507102966, -0.47071459889411926, -0.22434654831886292, 1.1740467548370361, 0.14519359171390533, 0.9697902798652649, -0.04190274327993393, 0.6491326093673706, 0.145548015832901, -0.1910824477672577, -0.9090388417243958, 0.41315537691116333, -0.4347263276576996, -0.4075661897659302, -0.2504886984825134, -0.3729384243488312, -1.1018651723861694, 0.2560015916824341, -0.21990901231765747, -0.6076757907867432, 0.22148004174232483, -0.2232160121202469, -0.2385861575603485, 0.08940381556749344, -0.3903636932373047, 0.8909657597541809, -0.4871242344379425, -0.10149479657411575, -0.1326134204864502, -0.6698227524757385, 0.1187763586640358, 0.0891510471701622, 0.13869424164295197, -0.17209847271442413, 0.07698765397071838, 0.8421697616577148, -0.6846833825111389, 0.9224579334259033, -0.2957296073436737, 0.19425906240940094, -0.0022805039770901203, 0.0455155186355114, 0.5105869174003601, 0.19531191885471344, -0.11019039899110794, 0.36582067608833313, 0.15298675000667572, -0.17333289980888367, -0.5290403366088867, 0.8776809573173523, -1.0739686489105225, 0.026050716638565063, -0.39540109038352966, -0.6943843960762024, 0.2746983468532562, 0.44232282042503357, 0.4248141348361969, 0.7206334471702576, -0.12445122748613358, 0.11335135996341705, 0.059925660490989685, -0.32186082005500793, 0.6147233247756958, 0.4073573052883148, -0.2928411364555359, -0.7812884449958801, 1.0201586484909058, 0.2606767416000366, -0.07793700695037842, 0.8568851351737976, 0.3578017055988312, -0.4355708360671997, -0.2874266803264618, -0.47574642300605774, 0.10768955945968628, -0.6533757448196411, -0.528517484664917, -0.4742901027202606, -0.0871891900897026, -0.3041575849056244, -0.012350380420684814, -0.2948293089866638, -0.6466918587684631, -0.21105243265628815, -0.3049900531768799, 0.8752254247665405, 0.36053669452667236, -0.35100364685058594, 0.4460678696632385, -0.7151185274124146, 0.7005321979522705, -0.06392326951026917, 0.19819973409175873, -0.7043090462684631, -0.3420127034187317, -0.6550844311714172, 0.18392761051654816, 0.10421349108219147, -0.8358867764472961, 0.8807857632637024, 0.42487964034080505, 0.5640663504600525, 0.4949248731136322, 0.34546664357185364, 0.5691273212432861, -0.267890065908432, 0.9175667762756348, -0.12091691792011261, -0.8334595561027527, 0.9102252125740051, -0.24978651106357574, -0.08489350229501724, 0.5075993537902832, 0.29601824283599854, -0.6198641657829285, -0.21943379938602448, -0.3358570635318756, -1.131742238998413, 0.9410109519958496, 0.2475513219833374, 0.015593405812978745, 0.17679360508918762, 0.25794824957847595, 0.1898423135280609, 0.41641953587532043, -0.6665707230567932, -0.5802493691444397, -0.7167649865150452, -0.45459431409835815, 0.004417559131979942, 0.28028950095176697, -0.5952355265617371, -0.6782956123352051, 0.8769171833992004, -0.043810438364744186, 0.661574125289917, 0.1761602759361267, -0.12116144597530365, 0.05334244295954704, -0.35903671383857727, 0.3307710886001587, 0.07142416387796402, -0.39964914321899414, 0.10510452836751938, 0.275429368019104, -0.4680306315422058, -0.02580331265926361, 0.11465255171060562, -0.09070824086666107, 0.3183162808418274, 0.3838220238685608, 0.8783296942710876, -0.19372765719890594, -0.15868163108825684, 0.40558701753616333, 0.08990634977817535, -0.03700118139386177, -0.4966672658920288, -0.1411709040403366, -0.3036728501319885, 0.3365078270435333, -0.004648659378290176, -0.09684104472398758, 0.004344020504504442, -0.3601207137107849, 0.3484783172607422, 0.1884489208459854, -0.09002464264631271, -0.2632354497909546, 0.6853042840957642, 0.29039907455444336, -0.143855482339859, 0.9290932416915894, 0.1716018170118332, -0.5914238691329956, 0.8996027708053589, 0.5308206677436829, 1.043212652206421, 0.05008983612060547, 0.31363099813461304, 0.4033605754375458, 0.2978303134441376, -0.11735328286886215, 0.7107837200164795, -0.1903587430715561, -1.2008442878723145, -0.5242785811424255, -0.5227519869804382, -0.16927403211593628, 0.32813751697540283, -0.8602954149246216, 0.31362852454185486, 0.011306840926408768, -0.13154464960098267, -0.2391049712896347, 0.14805886149406433, -0.9372401237487793, 0.2866760790348053, -0.009315594099462032, 1.1707053184509277, -1.1065491437911987, 1.2424381971359253, 1.1770325899124146, -0.7026051878929138, -0.6267808079719543, -0.2959131896495819, -0.3481890857219696, -1.0342835187911987, 0.6583946347236633, 0.025787606835365295, 0.6742631196975708, -0.18145695328712463, -0.6857835650444031, -0.8811013698577881, 0.9455622434616089, -0.07839407026767731, -0.17732912302017212, 0.4941340386867523, 0.591636598110199, 0.40065544843673706, -0.3896450400352478, 0.38911619782447815, 0.918756902217865, 0.626541256904602, -0.23397481441497803, -0.5259019732475281, 0.13148170709609985, -0.6386198401451111, 0.15966525673866272, 0.030464107170701027, -0.7332624793052673, 0.6343762874603271, 0.04319358617067337, 0.25381454825401306, -0.007103972136974335, 0.7872684597969055, -0.3150937557220459, -0.09605120122432709, 0.02869165875017643, 0.5780424475669861, 0.6141990423202515, -0.5668025016784668, 0.8784623742103577, -0.39538276195526123, 0.8222835063934326, 0.8178344368934631, 0.017078261822462082, 0.698400616645813, 0.5035017728805542, -0.24504125118255615, 0.46741896867752075, 0.6348916888237, -0.5641375780105591, 1.3180283308029175, 0.2901259660720825, -0.2669908404350281, 0.01544987689703703, 0.03627726435661316, -0.40955591201782227, 0.41194748878479004, 0.5844205021858215, -0.36775583028793335, -0.3046613037586212, 0.38632842898368835, 0.31796735525131226, -0.1963699609041214, -0.1942880004644394, 0.6641368269920349, 0.2272808998823166, -0.542029857635498, 0.7596797347068787, 0.1544349193572998, 0.24443022906780243, -0.7054198384284973, -0.043794311583042145, -0.4368237853050232, 0.33167561888694763, -0.41928020119667053, -0.805454432964325, 0.29352062940597534, -0.17509685456752777, -0.20920009911060333, -0.3191816210746765, 0.5194905400276184, -0.711879312992096, -0.5506844520568848, 0.13955490291118622, 0.18708652257919312, 0.5890851020812988, -0.026310181245207787, -0.7226166129112244, -0.11614148318767548, 0.1760277897119522, -0.2959951162338257, 0.17792870104312897, 0.6892251372337341, 0.3691893517971039, 0.8002784252166748, 0.6179998517036438, 0.5620473623275757, -0.06294529139995575, 0.14913173019886017, 0.8829818964004517, -0.858825147151947, -0.43594685196876526, -0.7285301089286804, 0.7150163650512695, -0.2247088998556137, -0.6468613743782043, 0.5737491846084595, 0.6348158121109009, 0.8110905885696411, -0.2851945161819458, 1.4080541133880615, -0.611353874206543, 0.38625240325927734, -0.39391186833381653, 0.7043206691741943, -0.29405221343040466, -0.08123444020748138, -0.018631629645824432, -0.5604667067527771, -0.4944656789302826, 1.0164532661437988, -0.22150106728076935, -0.20115835964679718, 0.8186531662940979, 0.7777018547058105, -0.1512937843799591, -0.24863307178020477, 0.2849942147731781, 0.6790043115615845, 0.17377795279026031, 0.4000537693500519, 0.6624476909637451, -0.9284378886222839, 0.29777538776397705, -0.8080229163169861, -0.23210658133029938, -0.0885254368185997, -0.8162599802017212, -1.15278160572052, -0.5265601277351379, -0.4181945025920868, -0.7561699748039246, -0.19373081624507904, 1.1629695892333984, 0.5802018046379089, -1.3731162548065186, -0.32243818044662476, -0.09838803857564926, 0.3280259072780609, -0.7189380526542664, -0.23962993919849396, 0.7962300777435303, -0.34106671810150146, -1.151749610900879, 0.6163268685340881, -0.35238152742385864, -0.02025911770761013, 0.05821152403950691, 0.24406257271766663, -0.0925389975309372, -0.5357798933982849, 0.2390332818031311, 0.2282133400440216, -0.2720291018486023, -0.043340981006622314, -0.6812613010406494, -0.11170196533203125, -0.015846161171793938, 0.36767759919166565, -0.9427551627159119, 0.42830798029899597, 0.9018285870552063, 0.3206889033317566, 0.4251989424228668, 0.042951080948114395, 0.9260815382003784, -0.7910799980163574, 0.4002040922641754, -0.15667134523391724, 0.7524542808532715, 0.28589093685150146, -0.4287484884262085, 0.7356698513031006, 0.5699352622032166, -0.34777796268463135, -0.7386471629142761, -0.31978484988212585, -0.8995331525802612, 0.014913666062057018, 1.1432085037231445, -0.23082949221134186, -0.2928079068660736, -0.13279063999652863, -0.11985859274864197, 0.47464805841445923, -0.6721659302711487, 0.6404581069946289, 0.3681662380695343, 0.41570714116096497, 0.136087566614151, -0.7336249947547913, 0.5104811787605286, -0.014753283932805061, -0.6725295186042786, -0.33304357528686523, -0.17433013021945953, 0.31421181559562683, -0.008928336203098297, 0.09657952189445496, -0.14577223360538483, -0.28673291206359863, 0.2888853847980499, 0.3357662856578827, -0.1519109308719635, -0.21853357553482056, -0.30175867676734924, -0.14542321860790253, -0.5592103600502014, -1.0995076894760132 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ScandEval/scandiqa-no-mini
ScandEval
2023-07-05T09:44:15Z
210
0
null
[ "task_categories:question-answering", "size_categories:1K<n<10K", "language:nb", "language:no", "language:nn", "license:cc-by-3.0", "region:us" ]
2023-07-05T09:44:15Z
2022-12-05T16:42:53.000Z
2022-12-05T16:42:53
--- dataset_info: features: - name: id dtype: string - name: question dtype: string - name: answers struct: - name: answer_start sequence: int64 - name: text sequence: string - name: context dtype: string - name: answers_en struct: - name: answer_start sequence: int64 - name: text sequence: string - name: context_en dtype: string - name: title_en dtype: string splits: - name: train num_bytes: 2865871 num_examples: 1024 - name: val num_bytes: 673315 num_examples: 256 - name: test num_bytes: 6556814 num_examples: 2048 download_size: 5956802 dataset_size: 10096000 license: cc-by-3.0 task_categories: - question-answering language: - nb - 'no' - nn size_categories: - 1K<n<10K --- # Dataset Card for "scandiqa-no-mini" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.9444248676300049, -0.2267182469367981, 0.2883804142475128, 0.014935515820980072, -0.38529831171035767, -0.025479041039943695, 0.5711907148361206, -0.03921759873628616, 1.08562171459198, 0.41931799054145813, -1.014434814453125, -0.7000813484191895, -0.5799694061279297, -0.11240199208259583, -0.3227471709251404, 1.2990498542785645, 0.2034963220357895, 0.14163917303085327, -0.48911309242248535, -0.12633773684501648, -0.12974832952022552, -0.40922364592552185, -0.6108800172805786, -0.329103022813797, 0.8492070436477661, 0.965186595916748, 0.5569374561309814, 0.568550169467926, 0.6974960565567017, 0.04133184999227524, -0.029340587556362152, -0.06813747435808182, -0.38445568084716797, -0.2500286102294922, -0.23545366525650024, -0.5135589838027954, -1.1960467100143433, 0.03282950818538666, 0.5615968704223633, 0.5162630081176758, -0.02074476331472397, 0.9021045565605164, -0.2681656777858734, 0.7187064290046692, -0.41867950558662415, 0.38442134857177734, 0.012983066961169243, -0.27786940336227417, -0.7812806367874146, -0.061986856162548065, 0.26478442549705505, -0.6264573931694031, -0.1098862886428833, -1.0969040393829346, 0.35688021779060364, 0.014135168865323067, 0.8740910887718201, 0.49300092458724976, -0.22119422256946564, -0.34377339482307434, -0.44158315658569336, 0.07830074429512024, -0.039309024810791016, 0.018957823514938354, 0.828960120677948, 0.4480603337287903, -0.004032047465443611, -0.5564894080162048, -0.36905762553215027, 0.22829344868659973, -0.01906619966030121, 0.25299909710884094, -0.016885807737708092, 0.006350744049996138, 0.7272822856903076, 0.7383260726928711, -0.5434648394584656, -0.35232123732566833, -0.6293116807937622, -0.42191725969314575, 0.6280972957611084, 0.3427726626396179, 0.2709914445877075, -0.14395785331726074, 0.009672710672020912, -0.20007526874542236, -0.6295697689056396, 0.022551242262125015, 0.414170503616333, 0.10814559459686279, -1.3377578258514404, 0.7485512495040894, -0.18285968899726868, 0.04502929747104645, 0.30519431829452515, 0.3734401762485504, 0.7158800363540649, -0.5930917263031006, -0.16677838563919067, -0.08736690878868103, 0.29234516620635986, 0.06880182772874832, 0.02333417348563671, 0.45854929089546204, -0.020475337281823158, 0.16508309543132782, -0.21913552284240723, -1.2522962093353271, -0.9033435583114624, 0.2907729148864746, -0.7397175431251526, -0.27016764879226685, 0.09811557829380035, -1.020062804222107, -0.7478428483009338, -0.13788458704948425, 0.11563554406166077, -0.04225286468863487, -0.6663797497749329, -0.3242422938346863, -0.5942655801773071, 0.5227549076080322, 0.15979814529418945, -0.6829862594604492, 0.3792082667350769, 0.34066665172576904, 0.5368424654006958, 0.4077064096927643, -0.09510190784931183, -0.7246242761611938, 0.24267300963401794, -0.2538111209869385, 1.0409859418869019, -0.6491308808326721, -0.7181740999221802, -0.1941361427307129, 0.29792940616607666, 0.07395537197589874, -0.4505818486213684, 0.9309900999069214, -0.17887628078460693, -0.2017359882593155, -0.7316106557846069, -0.34477531909942627, -0.011047417297959328, 0.2569715082645416, -1.3173348903656006, 1.0639393329620361, 0.14071018993854523, -0.9426931142807007, 0.25995904207229614, -1.2786402702331543, -0.32890480756759644, 0.6982349753379822, -0.23602654039859772, -0.38991209864616394, 0.31650716066360474, 0.2461680769920349, 0.09726478159427643, -0.2346692532300949, 0.049964748322963715, -0.7786172032356262, -0.42436593770980835, -0.04054916277527809, 0.1422668695449829, 1.0847349166870117, 0.21905118227005005, 0.40115031599998474, 0.060177259147167206, -0.764944314956665, -0.3077249526977539, 0.3165028691291809, -0.13571235537528992, -0.3581727147102356, -0.574394166469574, 0.26185521483421326, -0.029278181493282318, 0.541102409362793, -0.5194475650787354, 0.5450210571289062, 0.02902064099907875, -0.3278517723083496, 0.5608687400817871, 0.23577554523944855, 0.5856609344482422, -0.7495458722114563, 0.7851605415344238, 0.019812999293208122, 0.5373815298080444, 0.03629562258720398, -0.46767091751098633, -0.9158062934875488, -0.5659307241439819, 0.8375116586685181, 0.6879092454910278, -1.0715728998184204, 0.25322920083999634, -0.028918232768774033, -0.7477841377258301, -0.5804575085639954, -0.07845734059810638, 0.09918608516454697, 0.029378194361925125, 0.2857931852340698, -0.3710515797138214, -1.0189995765686035, -0.8131763935089111, 0.46194761991500854, -0.07362952828407288, 0.051994919776916504, 0.48399409651756287, 1.0287790298461914, -0.7700133323669434, 0.6507457494735718, -0.5808684229850769, -0.37196558713912964, -0.030882686376571655, -0.17107509076595306, 0.3234279751777649, 0.5922591090202332, 0.9569187164306641, -0.6571084260940552, -0.47077977657318115, -0.7503231167793274, -0.3378521502017975, -0.1803773045539856, 0.3119475245475769, -0.4927400052547455, -0.14212846755981445, 0.07463565468788147, -0.6070924997329712, 0.9129413366317749, 0.8156025409698486, -0.3986034393310547, 0.17806971073150635, 0.0988999605178833, 0.005548879504203796, -1.2841594219207764, 0.4115455150604248, -0.19799762964248657, -0.1311708688735962, -0.45765018463134766, 0.09648629277944565, 0.12249476462602615, -0.18539345264434814, -0.03799598664045334, 0.7851332426071167, -0.28306490182876587, 0.04889910668134689, -0.06991853564977646, -0.27371346950531006, -0.10859715938568115, 0.14050638675689697, 0.19585591554641724, 0.6275328397750854, 1.0295771360397339, -0.4030824899673462, 0.760336697101593, 0.5696494579315186, 0.15057924389839172, 0.899824857711792, -0.732921838760376, 0.1397068202495575, -0.15459343791007996, 0.34840846061706543, -0.7853730916976929, -0.590961217880249, 0.6853437423706055, -0.5340908765792847, 0.29640698432922363, -0.674038827419281, -0.6815052628517151, -0.5786241292953491, -0.5805673599243164, 0.9874612092971802, 0.5458736419677734, -0.5983723402023315, 0.5106511116027832, 0.7573014497756958, -0.13049660623073578, 0.07410967350006104, -0.7557034492492676, -0.08498600125312805, -0.11939016729593277, -0.0876612514257431, 0.2146928608417511, -0.6138665676116943, 0.11450313776731491, -0.17017340660095215, 0.22801953554153442, -0.33605027198791504, -0.2232459932565689, 0.6404365301132202, 0.3058691620826721, -0.11542165279388428, 0.2786649465560913, 0.23402529954910278, -0.8217289447784424, -0.042373694479465485, 0.3237667977809906, 0.35366612672805786, -0.0653834119439125, -0.06389135867357254, -0.4884408414363861, 0.6867313385009766, 0.3928004503250122, -0.25195908546447754, 0.4650856852531433, 0.9300891160964966, -0.8254016637802124, -0.0414712093770504, -0.3366347849369049, -0.14634011685848236, -0.4155249297618866, -0.11705280840396881, -0.5251728296279907, -0.5588831305503845, 0.5767683982849121, -0.13584880530834198, -0.17443734407424927, 0.8146156072616577, 0.8386890888214111, -0.3446725010871887, 0.7924954295158386, 0.9596390724182129, -0.08712446689605713, 0.3777475357055664, -0.36375704407691956, -0.1909988969564438, -0.8850084543228149, -0.33465373516082764, -0.744722306728363, -0.216487318277359, -0.7888361215591431, -0.482927143573761, 0.13598226010799408, -0.05616198480129242, -0.233356773853302, 0.4338158965110779, -0.4835263788700104, 0.22447341680526733, 0.7136142253875732, 0.05576571077108383, -0.07199815660715103, -0.008071798831224442, 0.012192782014608383, 0.2107851654291153, -0.715258777141571, -0.17259830236434937, 1.167781114578247, 0.4535091519355774, 1.0657222270965576, 0.31136125326156616, 1.0919212102890015, 0.49546998739242554, 0.23359259963035583, -0.4667837619781494, 0.330863893032074, -0.024159859865903854, -0.7450248003005981, -0.05557817220687866, -0.2294590175151825, -0.7180608510971069, -0.4417436420917511, -0.42688244581222534, -0.009705867618322372, 0.7580433487892151, 0.238027885556221, -0.36887890100479126, 0.09112761914730072, -0.6414039134979248, 0.8367045521736145, 0.016899438574910164, 0.22856347262859344, -0.058167967945337296, -0.34940454363822937, 0.17768891155719757, 0.087521493434906, 0.3507990837097168, -0.3577057719230652, -0.3127078413963318, 1.061072826385498, -0.49502110481262207, 1.092081069946289, -0.5925272703170776, 0.17316657304763794, 0.09360983967781067, 0.05423736572265625, 0.01975153759121895, 0.5832505822181702, -0.04275767505168915, 0.22086641192436218, 0.7355982661247253, -0.7598849534988403, 0.06294628977775574, 0.5445550680160522, -0.7869523763656616, 0.2362075299024582, -0.6658155918121338, -0.5721046924591064, 0.014412900432944298, 0.45731067657470703, 0.410175621509552, 0.5821355581283569, -0.38532784581184387, -0.08258123695850372, 0.9018554091453552, 0.19193190336227417, 0.20821528136730194, 0.23479193449020386, -0.24365290999412537, -0.5572000741958618, 0.8956944346427917, 0.18075771629810333, -0.5034551024436951, 0.15532013773918152, 0.27351608872413635, -0.27138328552246094, -0.3988608717918396, -0.8005375862121582, 0.5868344306945801, -0.34825170040130615, -0.509795069694519, -0.15879882872104645, -0.45381486415863037, -0.5697557330131531, -0.062626913189888, -0.305742084980011, -0.49822375178337097, -0.6556282043457031, -0.37464794516563416, 0.7921066880226135, 0.7106517553329468, -0.8451520204544067, 0.40898633003234863, -0.8460698127746582, 0.8062041997909546, 0.08314985781908035, 0.67335045337677, -0.35182034969329834, -0.474590003490448, -0.44146206974983215, 0.2304343730211258, 0.19020840525627136, -0.5973401665687561, -0.22336158156394958, 0.2242632657289505, 0.6586600542068481, 0.2108309268951416, 0.32355600595474243, 0.5868768095970154, 0.0780094638466835, 0.523044764995575, 0.059075407683849335, -0.8241392374038696, 0.7329244613647461, -0.351909339427948, 0.586864709854126, 0.9253296852111816, 0.642245888710022, -0.256123811006546, 0.23506250977516174, -0.8579647541046143, -0.46304845809936523, 0.5880640149116516, 0.006616593338549137, 0.16835634410381317, 0.23574408888816833, 0.36233532428741455, 0.010204686783254147, 0.29858678579330444, -0.5396809577941895, -0.8477221727371216, -0.12847638130187988, -0.33553433418273926, 0.2990488111972809, -0.8576756119728088, -0.45742666721343994, -0.7554265260696411, 0.732505202293396, -0.10549063980579376, 0.4860551059246063, 0.004900004714727402, 0.20400665700435638, -0.038856688886880875, -0.16857309639453888, 0.4385066032409668, 0.4739627540111542, -0.46141350269317627, -0.0937487781047821, -0.024726146832108498, -0.620503306388855, -0.304853230714798, 0.5021172761917114, -0.35243549942970276, -0.15910452604293823, 0.5355077981948853, 0.38880592584609985, -0.5667622685432434, -0.1538214236497879, 0.5938200950622559, -0.46822261810302734, -0.5580139756202698, -0.45021164417266846, 0.042320966720581055, 0.19207391142845154, 0.13287705183029175, -0.03449687361717224, -0.06943833827972412, 0.384583055973053, -0.39333096146583557, 0.4296053647994995, 0.04532516002655029, -0.6213918924331665, -0.3185798227787018, 0.19465142488479614, 0.5536916255950928, -0.30354875326156616, 0.7281771898269653, -0.3030151128768921, -0.3811076283454895, 0.7179737687110901, 0.15699206292629242, 0.6227707862854004, -0.4604172706604004, 0.6192891597747803, 0.5291488766670227, 0.40036386251449585, 0.5322818160057068, 0.9613649845123291, -0.5277751684188843, -0.48234474658966064, 0.06601983308792114, -0.31701862812042236, -0.5607585906982422, -0.29693591594696045, -1.1257805824279785, 0.19555047154426575, -0.7784700393676758, -0.1933726668357849, -0.10695715993642807, 0.44371503591537476, -0.9155067801475525, 0.18502871692180634, 0.3590277433395386, 1.5273172855377197, -0.9492579102516174, 1.1827216148376465, 0.8569356203079224, -0.47243285179138184, -0.5767961144447327, -0.08508403599262238, 0.1621214747428894, -0.6607872843742371, -0.15725907683372498, -0.003514278680086136, 0.051889922469854355, -0.39579564332962036, -0.805199384689331, -0.8990642428398132, 1.1208086013793945, 0.18999597430229187, -0.6294252872467041, 0.25367528200149536, -0.0890474021434784, 0.4577394127845764, -0.3438003659248352, 0.26709818840026855, 0.6781216263771057, 0.705565333366394, 0.43258678913116455, -0.7765734791755676, 0.07086734473705292, -0.6563750505447388, -0.2424289882183075, 0.2518698573112488, -0.6196616291999817, 0.4280499815940857, -0.04584706574678421, -0.21387767791748047, 0.40210554003715515, 0.45889708399772644, 0.08245712518692017, 0.4754945635795593, 0.31830430030822754, 0.764098048210144, 1.077364206314087, -0.2212468981742859, 0.8431107997894287, 0.12571385502815247, 0.4361685812473297, 1.2730560302734375, -0.1984308511018753, 0.29264697432518005, 0.5074106454849243, 0.11318860203027725, 0.40485846996307373, 0.8296977877616882, -0.41923603415489197, 0.6443755626678467, 0.10464510321617126, -0.04281344264745712, -0.36472439765930176, -0.41757410764694214, -0.8521153926849365, 0.1808934360742569, 0.6656267642974854, -0.1598689705133438, -0.16002388298511505, -0.12627163529396057, -0.06465725600719452, -0.39114466309547424, -0.5983055233955383, 0.7902159690856934, 0.010310428217053413, 0.22399216890335083, 0.16648080945014954, -0.020949719473719597, 0.38932082056999207, -0.6065673828125, -0.356718510389328, -0.2917959690093994, 0.047705188393592834, -0.5652491450309753, -0.8982149362564087, 0.8633232116699219, -0.21183960139751434, -0.48242664337158203, 0.23874519765377045, 0.52128005027771, -0.22902381420135498, -0.8782438635826111, 0.3400552272796631, 0.44087740778923035, 0.12285196781158447, 0.187966451048851, -1.2663612365722656, 0.29003676772117615, -0.057314805686473846, 0.1902470737695694, 0.1994554102420807, 0.05218705162405968, 0.06001688167452812, 0.5196523666381836, 0.6843873858451843, -0.0039701564237475395, -0.39907997846603394, 0.23400266468524933, 0.9973732829093933, -0.4905063509941101, -0.41496914625167847, -0.4010157287120819, 0.48221805691719055, -0.3089161515235901, -0.46728789806365967, 0.6264469623565674, 1.0080997943878174, 0.9433145523071289, -0.010669496841728687, 0.7743006348609924, -0.4097117781639099, 0.8915612101554871, -0.08892624825239182, 0.6254538297653198, -0.5178536176681519, -0.16340848803520203, -0.049087442457675934, -0.6128864288330078, -0.6802246570587158, 0.48210209608078003, -0.09177981317043304, -0.13836994767189026, 0.47887367010116577, 1.164143443107605, -0.25705695152282715, 0.0395234078168869, 0.08432727307081223, 0.157871276140213, 0.1873716413974762, 0.5128260254859924, 0.5692449808120728, -0.5715365409851074, 0.42614614963531494, -0.37481552362442017, -0.7218338847160339, -0.04578152671456337, -0.7992900609970093, -1.1866130828857422, -0.574714720249176, -0.48532015085220337, -0.4747370481491089, -0.1800798624753952, 0.813119649887085, 1.0334839820861816, -1.0573437213897705, -0.22938194870948792, 0.4102450907230377, 0.419840931892395, 0.1724129319190979, -0.07807686924934387, 0.7512724995613098, 0.7746949195861816, -0.5270424485206604, -0.133602112531662, 0.057462502270936966, 0.3636453151702881, 0.009280942380428314, -0.05150701105594635, -0.15461769700050354, 0.37042537331581116, 0.09752295911312103, 0.5534428358078003, -0.11499038338661194, -0.15107277035713196, -0.5286273956298828, -0.23587806522846222, -0.00957615114748478, 0.8429448008537292, -0.48288625478744507, 0.07056664675474167, 0.6243762969970703, 0.45018166303634644, 0.708736777305603, -0.048831757158041, 0.23288175463676453, -0.3661567270755768, 0.1711314618587494, -0.027150291949510574, 0.4909537434577942, 0.02321484312415123, -0.3590729236602783, 0.7192761898040771, 0.3477668762207031, -0.3527414798736572, -0.5201390385627747, 0.28915536403656006, -1.290848970413208, 0.3918441832065582, 0.6875418424606323, 0.11473935097455978, -0.36486268043518066, -0.29361146688461304, -0.5606322884559631, 0.06436780095100403, -0.8261648416519165, 0.176658496260643, 0.3104863166809082, 0.008676230907440186, -0.4359959363937378, 0.01472758874297142, 0.7311162352561951, -0.2863680124282837, -1.032006025314331, -0.1539701670408249, 0.4792376756668091, 0.2087603062391281, 0.0720876082777977, 1.049588680267334, -0.19292595982551575, 0.5734522342681885, 0.5062205195426941, 0.2637579143047333, -0.41767629981040955, -0.7160521745681763, -0.4904704988002777, -0.09702393412590027, -0.106951043009758, -0.6347310543060303 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
hezarai/persian-license-plate-v1
hezarai
2023-11-09T10:36:12Z
210
0
null
[ "task_categories:image-to-text", "language:fa", "region:us" ]
2023-11-09T10:36:12Z
2023-10-14T12:56:01.000Z
2023-10-14T12:56:01
--- task_categories: - image-to-text language: - fa pretty_name: PersianLicensePlate --- > Dataset is downloaded from [here](https://ceit.aut.ac.ir/~keyvanrad/download/ML971/project/) which was provided at Amirkabir University of Technology. > The datas then labeled by the authors. > Experimental results show that the fine-tuned model works well in Persian License Plate.
[ -0.5999212265014648, -0.5456712245941162, 0.36999380588531494, 0.006473589688539505, -0.5260801911354065, 0.1269722580909729, -0.11649540811777115, -0.5314024686813354, 0.08183339238166809, 0.46921539306640625, -0.5295794606208801, -0.5046549439430237, -0.035883184522390366, -0.15964718163013458, -0.22106517851352692, 0.5855823755264282, 0.08002778887748718, 0.46530336141586304, 0.2805761992931366, -0.12297320365905762, -0.3507853150367737, -0.1536949872970581, -0.46694618463516235, -0.1442016214132309, 0.47439834475517273, 0.8014515042304993, 0.7195054292678833, 0.8335954546928406, 0.9432692527770996, 0.3491148054599762, -0.14456653594970703, -0.05699017643928528, -0.06695045530796051, -0.006613361649215221, -0.4826352000236511, -0.2607429027557373, -0.4913913309574127, -0.0960514098405838, 0.7937631011009216, 0.4806521534919739, -0.2497633993625641, 0.3311121463775635, -0.036022838205099106, 0.9303916096687317, -0.4521249234676361, -0.05808121711015701, -0.35888946056365967, -0.30505236983299255, -0.887715220451355, -0.07378912717103958, -0.0017107041785493493, -0.5726539492607117, -0.13581548631191254, -0.6688981056213379, 0.177872896194458, 0.38040047883987427, 1.176199197769165, 0.21090389788150787, -0.5183658003807068, -0.0032327400986105204, -0.9375401735305786, 0.5144792199134827, -0.7559689283370972, 0.15487827360630035, 0.30296000838279724, 0.7020923495292664, -0.2964996099472046, -0.5017387270927429, -0.6719686985015869, 0.042425498366355896, 0.18821103870868683, -0.09376605600118637, 0.2711123824119568, -0.2018716037273407, 0.3903453052043915, 0.7501810789108276, -0.5048471093177795, -0.07484552264213562, -0.5262027382850647, -0.06216757744550705, 0.7117598652839661, 0.58634352684021, 0.41718196868896484, -0.1940383017063141, -0.4654415547847748, -0.720025897026062, -0.6454747915267944, -0.008800406008958817, 0.528079092502594, 0.47854363918304443, -0.5085660815238953, 0.6004995703697205, -0.7919396758079529, 0.9041866064071655, -0.10991039872169495, 0.17054955661296844, 0.9437097311019897, -0.4920198321342468, -0.13945190608501434, 0.03312698006629944, 0.5414407253265381, 0.23580224812030792, 0.4713169038295746, 0.19994257390499115, -0.21026386320590973, -0.050380222499370575, -0.27132993936538696, -0.6973152756690979, -0.46564701199531555, -0.02660929039120674, -0.5607220530509949, -0.2822224199771881, 0.31863299012184143, -0.6227289438247681, -0.23752164840698242, -0.5433593988418579, 0.21671625971794128, -0.6028310060501099, -0.6687137484550476, 0.2569447159767151, -0.05972544848918915, 0.4086403548717499, 0.22940218448638916, -0.605326771736145, 0.11333712935447693, 0.2747158706188202, 0.7496511936187744, -0.15434592962265015, 0.2124895304441452, -0.07706426084041595, -0.04563805088400841, 0.06886766850948334, 1.1608335971832275, -0.32921311259269714, -0.4227738678455353, -0.18327955901622772, 0.21186953783035278, -0.10801225900650024, -0.4380946159362793, 0.8393166661262512, -0.7287094593048096, -0.3473566770553589, -0.2313462793827057, -0.544515073299408, -0.4032444953918457, 0.21756196022033691, -0.9181545376777649, 0.8546953797340393, -0.05111251398921013, -0.817218542098999, 0.26398995518684387, -0.5464774966239929, -0.3907920718193054, 0.15244194865226746, 0.13239024579524994, -0.9313700199127197, -0.0159138310700655, 0.10537870973348618, 0.365282267332077, 0.08701688796281815, 0.24366028606891632, -0.3445400595664978, 0.06472985446453094, 0.5789135098457336, -0.2873624563217163, 0.9685482382774353, 0.6223800182342529, 0.0036606048233807087, 0.14795950055122375, -1.3675175905227661, 0.10432430356740952, 0.22694222629070282, -0.4427463114261627, -0.5828619599342346, -0.2268834114074707, 0.7260544896125793, 0.19317395985126495, 0.40669548511505127, -0.9578609466552734, 0.011576373130083084, -0.742665708065033, -0.12363257259130478, 0.5014387965202332, 0.2995874285697937, 0.36521753668785095, -0.3557465076446533, 0.3614497184753418, 0.18095935881137848, 0.09908760339021683, 0.5727732181549072, -0.28357893228530884, -0.47322314977645874, -0.12830546498298645, 0.8905678987503052, 0.3501042425632477, -0.5589057207107544, -0.050316523760557175, 0.17997905611991882, -0.9789022207260132, 0.07811271399259567, -0.3772546648979187, 0.41240498423576355, 0.3474087715148926, 0.02454858087003231, -0.6379461288452148, -0.42992866039276123, -0.8486091494560242, -0.016189828515052795, 0.5491693615913391, 0.36831048130989075, 0.3202088177204132, 0.6815478801727295, 0.28139427304267883, 0.8361300826072693, -0.37707534432411194, -0.30699506402015686, -0.22884298861026764, 0.0293094664812088, 0.5099283456802368, 0.7812678813934326, 0.5019177794456482, -0.9279325604438782, -0.8557642698287964, -0.04676732048392296, -0.3209584355354309, 0.1525278240442276, -0.031870804727077484, -0.5119015574455261, -0.07468647509813309, 0.03823096305131912, -0.3754747211933136, 0.7174718379974365, 0.403875470161438, -0.5890066623687744, 0.5074944496154785, -0.19250741600990295, 0.23171639442443848, -1.4241360425949097, 0.3726760149002075, 0.10589765012264252, -0.7238299250602722, -0.4849050045013428, -0.028153808787465096, 0.27672943472862244, 0.20826031267642975, -0.7830453515052795, 0.27281975746154785, -0.5662074089050293, -0.13835865259170532, -0.34831371903419495, -0.33173152804374695, -0.48092371225357056, 0.2723196744918823, -0.02092921920120716, 1.2749063968658447, 0.6732317805290222, -0.6384869813919067, 0.20786058902740479, 0.5422598719596863, -0.7481136918067932, 0.35433149337768555, -0.688008725643158, -0.08043283224105835, -0.20598897337913513, -0.22971196472644806, -0.7910953760147095, -0.5434760451316833, 0.2860521674156189, -0.0059260218404233456, 0.2839575409889221, 0.12224403768777847, -0.6799635291099548, 0.03690775856375694, -0.144759401679039, 0.5501824617385864, 0.3128648102283478, -0.28023892641067505, 0.17695017158985138, 0.8706409931182861, -0.1851104348897934, -0.08873918652534485, -0.09687700122594833, -0.25996696949005127, -0.20119021832942963, -0.13233605027198792, 0.42803293466567993, 0.026571881026029587, -0.34179073572158813, -0.11552970111370087, 0.28900599479675293, -0.14261680841445923, 0.15225796401500702, 0.5466203093528748, 0.36627206206321716, -0.45448893308639526, 0.10997883230447769, -0.23306013643741608, -0.2288716733455658, -0.20240575075149536, 0.6237097978591919, 0.8939802050590515, -0.29614996910095215, -0.056773826479911804, -0.82960444688797, -0.0815613865852356, 0.09920114278793335, -0.2778801918029785, 0.7921160459518433, 0.3820248246192932, -0.44075968861579895, -0.12176971137523651, -0.09738573431968689, 0.10076475888490677, -0.5173250436782837, 0.02921375446021557, -0.38433119654655457, -0.33925455808639526, 0.5956676602363586, -0.5712129473686218, -0.2602715492248535, 0.8957415223121643, 0.8060980439186096, -0.10450688004493713, 1.250565528869629, 0.6579216122627258, -0.14542265236377716, 0.6260651350021362, -0.245828777551651, -0.2637559175491333, -0.7980766892433167, -0.3966127336025238, -0.8012675046920776, -0.009518406353890896, -0.415581613779068, 0.1308814287185669, 0.23257185518741608, 0.0776807889342308, -0.41055601835250854, 0.2208031713962555, -0.6324332356452942, 0.8467893004417419, 0.6304950714111328, 0.6880719065666199, 0.38267937302589417, 0.015797875821590424, -0.0452926941215992, -0.12425372004508972, -0.25010862946510315, -0.3910377621650696, 1.1147569417953491, 0.38662803173065186, 0.9813282489776611, 0.16070996224880219, 0.44412872195243835, 0.5214254856109619, 0.005686563905328512, -0.23909957706928253, 0.3058251142501831, -0.06567507237195969, -1.0105557441711426, -0.19426913559436798, -0.22494463622570038, -0.8552957773208618, -0.2671995162963867, -0.4291686415672302, -0.3946250379085541, 0.4053139388561249, 0.3862055540084839, -0.380811870098114, 0.21252356469631195, -0.2329929620027542, 0.7066904902458191, -0.23548845946788788, -0.12875482439994812, -0.3412639796733856, -0.810458242893219, 0.45680826902389526, -0.04140469804406166, 0.21015964448451996, -0.5507625937461853, 0.7701975107192993, 1.0374565124511719, -0.828660786151886, 0.5519388914108276, -0.4632633626461029, 0.1750032752752304, 0.19622133672237396, -0.20350141823291779, 0.18983271718025208, 0.0012000127462670207, -0.23299697041511536, -0.08130189776420593, -0.3085938096046448, -0.09275726974010468, 0.14956502616405487, 0.5301899909973145, -0.9059005975723267, 0.1392894834280014, -0.5659803748130798, -0.6458914279937744, -0.06156690791249275, 0.5450505018234253, 0.22382576763629913, 0.8207948803901672, -0.2757081687450409, -0.07029976695775986, 0.9106764197349548, -0.1564192920923233, 0.3838352859020233, 0.29036620259284973, -0.2597410976886749, -0.09016299247741699, 0.9626883864402771, -0.09004473686218262, 0.10889485478401184, -0.07434596866369247, 0.04570246860384941, -0.23409147560596466, -0.41835901141166687, -0.8114869594573975, 0.45499831438064575, -0.6406306624412537, -0.5583693385124207, -0.06019384786486626, -0.5575628280639648, 0.09970393031835556, 0.30547645688056946, -0.6362531185150146, -0.9270931482315063, -0.250669926404953, 0.13866141438484192, 0.6565662622451782, 0.8595945239067078, -0.49761682748794556, 0.7752600908279419, -0.331146240234375, 0.31439241766929626, 0.05544232577085495, 0.2739051878452301, 0.04769059643149376, -0.3984953761100769, -0.35246777534484863, 0.21949511766433716, -0.5428958535194397, -0.643703818321228, 0.5081096887588501, 0.3234788775444031, 0.3214026391506195, 0.27274391055107117, 0.0568864680826664, 0.391872763633728, -0.5463691353797913, 0.35390836000442505, -0.016147522255778313, -0.718197226524353, 0.7426525950431824, -0.5640109181404114, 0.1693439930677414, 0.8068768382072449, 0.19868968427181244, 0.07666841894388199, -0.2997867166996002, -0.32027503848075867, -0.7404354214668274, 0.5770820379257202, 0.28842055797576904, -0.16163703799247742, 0.4591086208820343, 0.3584190607070923, -0.047139689326286316, 0.09817865490913391, -0.573263943195343, -0.6650249361991882, -0.05711815506219864, -0.44418904185295105, 0.11804969608783722, -0.016655495390295982, 0.2062264382839203, -0.4575982987880707, 0.9407705664634705, 0.49578413367271423, 0.31308168172836304, 0.11874817311763763, -0.23036715388298035, -0.35415393114089966, 0.275700181722641, 0.9696800112724304, 0.6743780374526978, -0.5682056546211243, -0.1987285017967224, -0.17046625912189484, -0.6060380339622498, -0.053245242685079575, -0.01223446149379015, -0.07741771638393402, 0.029797136783599854, -0.29526346921920776, 0.4278343915939331, -0.35942405462265015, -0.3081210255622864, 0.5082220435142517, -0.11299209296703339, -0.29219257831573486, -0.6761029362678528, 0.5063334107398987, -0.023315202444791794, 0.48391878604888916, 0.22932231426239014, 0.3906790316104889, 0.5878976583480835, -0.25769057869911194, 0.3381054997444153, 0.5028822422027588, -0.3418337404727936, -0.25461843609809875, 1.1624915599822998, 0.05148296803236008, -0.280737966299057, 0.6819800138473511, -0.07715325057506561, -0.67326819896698, 0.8474054336547852, 0.6099993586540222, 0.1920018494129181, -0.2997514307498932, 0.11886869370937347, 0.724144458770752, -0.07856793701648712, -0.19636672735214233, 0.803432822227478, -0.02328883297741413, -0.7856807708740234, -0.164106085896492, -0.5898924469947815, -0.6584421992301941, -0.09665732085704803, -0.878896951675415, 0.05411854386329651, -0.5181208848953247, -0.17900963127613068, 0.21759431064128876, 0.08013521879911423, -0.9002668857574463, 0.4002048075199127, 0.32966896891593933, 1.2059366703033447, -1.050812005996704, 1.1861709356307983, 0.5671201348304749, -0.5386348962783813, -1.12606942653656, -0.35683584213256836, -0.1461292803287506, -1.1163341999053955, 0.7097322344779968, 0.03860063478350639, -0.08246571570634842, 0.37147054076194763, -0.8522078990936279, -1.1486729383468628, 0.8699482679367065, -0.2527364194393158, -0.8926402926445007, 0.4379779100418091, 0.5065117478370667, 0.331023633480072, -0.01060568355023861, -0.21162430942058563, 0.5253165364265442, 0.4791216254234314, -0.06739641726016998, -0.9340046048164368, 0.0821186974644661, -0.46469488739967346, 0.0964188426733017, 0.28530624508857727, -0.36963024735450745, 0.9848296642303467, 0.18151770532131195, -0.0664571225643158, 0.5323953032493591, 0.6296653151512146, 0.10817693173885345, -0.02156556025147438, 0.6123771071434021, 0.884441614151001, 0.4047776758670807, -0.0324605256319046, 0.4698841869831085, -0.33277466893196106, 0.861515462398529, 0.8873001337051392, -0.18147823214530945, 0.9216842651367188, 0.3713867962360382, -0.18497417867183685, 0.6094812154769897, 0.7374561429023743, -0.277530312538147, 1.2781639099121094, 0.006705167703330517, -0.09032617509365082, -0.35038959980010986, -0.2645944654941559, -0.6470103859901428, 0.26183849573135376, 0.4886482357978821, -0.23083558678627014, -0.3790784180164337, 0.249310702085495, -0.1877574473619461, -0.22031351923942566, -0.4992249310016632, 0.7080152630805969, -0.030673276633024216, 0.04853249341249466, 0.2510527968406677, 0.2723601460456848, 0.37599897384643555, -0.13260558247566223, -0.1201043650507927, 0.08738371729850769, 0.462921679019928, -0.2588733732700348, -0.9743750691413879, 0.1751166433095932, -0.1573033481836319, -0.1332811564207077, 0.12035174667835236, 0.9836567044258118, -0.26383623480796814, -0.8283328413963318, -0.5986981987953186, 0.360444039106369, 0.19072143733501434, 0.2138260006904602, -0.7194475531578064, 0.005819089710712433, 0.1190955638885498, -0.5372604131698608, -0.025379540398716927, 0.05871717259287834, -0.049517352133989334, 0.24606552720069885, 0.4377591013908386, 0.5492895841598511, -0.010284927673637867, 0.13344839215278625, 0.8710505962371826, -0.783760666847229, -0.3902578353881836, -0.5646824836730957, 0.7907611727714539, -0.5470711588859558, -0.6843258142471313, 0.8975828886032104, 0.8384243249893188, 0.8459532260894775, -0.15032456815242767, 0.6290220618247986, -0.09511024504899979, 1.1025121212005615, -0.5967248678207397, 0.9853857755661011, -0.47674044966697693, -0.09523496776819229, -0.16540126502513885, -0.8309981226921082, -0.701590895652771, 1.034626841545105, -0.19934575259685516, -0.24164755642414093, 0.19095413386821747, 0.9231383800506592, -0.5283830761909485, 0.039123907685279846, 0.0057207210920751095, -0.0760250836610794, -0.1981687694787979, 0.27491870522499084, 0.9430304169654846, -0.647983193397522, -0.22553128004074097, -0.7292214632034302, -0.04843944311141968, -0.33328038454055786, -0.47865569591522217, -1.0287398099899292, -0.5379530787467957, -0.2514045238494873, -0.19290883839130402, -0.05280541628599167, 0.8240868449211121, 0.5947554111480713, -1.060651183128357, -0.1474853754043579, -0.11057931184768677, -0.1428694725036621, 0.2830774486064911, -0.14022120833396912, 0.7023392915725708, 0.13478408753871918, -0.42798545956611633, -0.056784242391586304, -0.24829120934009552, 0.2624930143356323, 0.029811402782797813, -0.05922630801796913, -0.11730048060417175, -0.2405911237001419, -0.15196777880191803, 0.2593390643596649, -0.11956989765167236, -0.08253078162670135, -0.446087121963501, -0.5144277811050415, 0.3493484854698181, 0.5251791477203369, -0.6159655451774597, 0.07365551590919495, 0.4643290936946869, 0.2678198516368866, 0.4319356083869934, 0.3789578080177307, 0.37699416279792786, -0.4039786756038666, 0.18432137370109558, -0.2466290444135666, 0.35619843006134033, 0.19787488877773285, -0.3417220413684845, 0.4435870349407196, 0.02487887628376484, -0.7380308508872986, -0.44711077213287354, -0.02131720259785652, -1.1748765707015991, -0.05325834080576897, 0.8093940019607544, 0.2765442430973053, -0.5452852249145508, -0.16039356589317322, -0.29835042357444763, 0.6585779190063477, -0.32467129826545715, 0.5972843170166016, 0.22754697501659393, 0.143842414021492, -0.14519403874874115, -0.6486412882804871, 0.6448509097099304, 0.2417057305574417, -0.8714718222618103, -0.4669572412967682, 0.35865646600723267, 0.5845919251441956, -0.09970986098051071, 0.20808084309101105, -0.052712779492139816, 0.3667261600494385, -0.16228355467319489, 0.15754084289073944, -0.06847307085990906, -0.2140856832265854, -0.36720478534698486, -0.19250516593456268, 0.3848731517791748, -0.594632089138031 ]
null
null
null
null
null
null
null
null
null
null
null
null
null