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
wnut_17
null
2023-04-05T13:45:05Z
9,296
10
wnut-2017-emerging-and-rare-entity
[ "task_categories:token-classification", "task_ids:named-entity-recognition", "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:en", "license:cc-by-4.0", "region:us" ]
2023-04-05T13:45:05Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - found language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - original task_categories: - token-classification task_ids: - named-entity-recognition paperswithcode_id: wnut-2017-emerging-and-rare-entity pretty_name: WNUT 17 dataset_info: features: - name: id dtype: string - name: tokens sequence: string - name: ner_tags sequence: class_label: names: '0': O '1': B-corporation '2': I-corporation '3': B-creative-work '4': I-creative-work '5': B-group '6': I-group '7': B-location '8': I-location '9': B-person '10': I-person '11': B-product '12': I-product config_name: wnut_17 splits: - name: train num_bytes: 1078379 num_examples: 3394 - name: validation num_bytes: 259383 num_examples: 1009 - name: test num_bytes: 405536 num_examples: 1287 download_size: 800955 dataset_size: 1743298 --- # Dataset Card for "wnut_17" ## 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://noisy-text.github.io/2017/emerging-rare-entities.html](http://noisy-text.github.io/2017/emerging-rare-entities.html) - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 0.80 MB - **Size of the generated dataset:** 1.74 MB - **Total amount of disk used:** 2.55 MB ### Dataset Summary WNUT 17: Emerging and Rare entity recognition This shared task focuses on identifying unusual, previously-unseen entities in the context of emerging discussions. Named entities form the basis of many modern approaches to other tasks (like event clustering and summarisation), but recall on them is a real problem in noisy text - even among annotators. This drop tends to be due to novel entities and surface forms. Take for example the tweet “so.. kktny in 30 mins?” - even human experts find entity kktny hard to detect and resolve. This task will evaluate the ability to detect and classify novel, emerging, singleton named entities in noisy text. The goal of this task is to provide a definition of emerging and of rare entities, and based on that, also datasets for detecting these entities. ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances - **Size of downloaded dataset files:** 0.80 MB - **Size of the generated dataset:** 1.74 MB - **Total amount of disk used:** 2.55 MB An example of 'train' looks as follows. ``` { "id": "0", "ner_tags": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 8, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0], "tokens": ["@paulwalk", "It", "'s", "the", "view", "from", "where", "I", "'m", "living", "for", "two", "weeks", ".", "Empire", "State", "Building", "=", "ESB", ".", "Pretty", "bad", "storm", "here", "last", "evening", "."] } ``` ### Data Fields The data fields are the same among all splits: - `id` (`string`): ID of the example. - `tokens` (`list` of `string`): Tokens of the example text. - `ner_tags` (`list` of class labels): NER tags of the tokens (using IOB2 format), with possible values: - 0: `O` - 1: `B-corporation` - 2: `I-corporation` - 3: `B-creative-work` - 4: `I-creative-work` - 5: `B-group` - 6: `I-group` - 7: `B-location` - 8: `I-location` - 9: `B-person` - 10: `I-person` - 11: `B-product` - 12: `I-product` ### Data Splits |train|validation|test| |----:|---------:|---:| | 3394| 1009|1287| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @inproceedings{derczynski-etal-2017-results, title = "Results of the {WNUT}2017 Shared Task on Novel and Emerging Entity Recognition", author = "Derczynski, Leon and Nichols, Eric and van Erp, Marieke and Limsopatham, Nut", booktitle = "Proceedings of the 3rd Workshop on Noisy User-generated Text", month = sep, year = "2017", address = "Copenhagen, Denmark", publisher = "Association for Computational Linguistics", url = "https://www.aclweb.org/anthology/W17-4418", doi = "10.18653/v1/W17-4418", pages = "140--147", abstract = "This shared task focuses on identifying unusual, previously-unseen entities in the context of emerging discussions. Named entities form the basis of many modern approaches to other tasks (like event clustering and summarization), but recall on them is a real problem in noisy text - even among annotators. This drop tends to be due to novel entities and surface forms. Take for example the tweet {``}so.. kktny in 30 mins?!{''} {--} even human experts find the entity {`}kktny{'} hard to detect and resolve. The goal of this task is to provide a definition of emerging and of rare entities, and based on that, also datasets for detecting these entities. The task as described in this paper evaluated the ability of participating entries to detect and classify novel and emerging named entities in noisy text.", } ``` ### Contributions Thanks to [@thomwolf](https://github.com/thomwolf), [@lhoestq](https://github.com/lhoestq), [@stefan-it](https://github.com/stefan-it), [@lewtun](https://github.com/lewtun), [@jplu](https://github.com/jplu) for adding this dataset.
[ -0.6770579814910889, -0.6689770221710205, 0.182668536901474, 0.12716002762317657, -0.2818237543106079, 0.18228420615196228, -0.4853043258190155, -0.7568873763084412, 0.6747374534606934, 0.35230064392089844, -0.6437382102012634, -0.8353841304779053, -0.577654242515564, 0.1454804688692093, -0.3345808684825897, 1.3290234804153442, -0.09163498133420944, -0.41479936242103577, -0.05271114036440849, -0.3144744336605072, -0.32713988423347473, -0.3139439821243286, -0.5315609574317932, -0.05305729806423187, 0.4598321318626404, 0.3254900276660919, 0.5196536779403687, 0.7879066467285156, 0.5549949407577515, 0.294594943523407, -0.2891869843006134, 0.18720746040344238, -0.4238246977329254, -0.05082178860902786, -0.08563216775655746, -0.20850631594657898, -0.5461373925209045, 0.07815349102020264, 0.6870089173316956, 0.8544116020202637, -0.08339925855398178, 0.3399703800678253, 0.07173693180084229, 0.5787994265556335, -0.38830816745758057, 0.49044308066368103, -0.5994048714637756, -0.06689655780792236, -0.6342213749885559, 0.059358470141887665, -0.0263584665954113, -0.15710222721099854, -0.04852471873164177, -0.9253860712051392, 0.3305155634880066, 0.059883613139390945, 1.1507885456085205, 0.14410696923732758, -0.03936440125107765, -0.40757736563682556, -0.5884261131286621, 0.6288767457008362, -0.6423225402832031, 0.1742585152387619, 0.21045389771461487, -0.11473540961742401, -0.1425935924053192, -0.8662755489349365, -0.6248438358306885, 0.12915480136871338, -0.12398204207420349, 0.10362077504396439, -0.30550050735473633, -0.2620486319065094, 0.4701053500175476, 0.6112149357795715, -0.41859373450279236, 0.08488300442695618, -0.419150710105896, -0.21209782361984253, 0.8776411414146423, 0.13254237174987793, 0.15800979733467102, -0.2891538441181183, -0.12520062923431396, -0.0500732846558094, -0.3328511118888855, 0.10417427867650986, 0.6316642761230469, 0.6459795236587524, -0.5598326921463013, 0.5117946863174438, -0.2770771086215973, 0.535148024559021, -0.020075669512152672, 0.0901944562792778, 0.822797417640686, -0.5300925970077515, 0.09009869396686554, -0.11368922144174576, 0.9267743825912476, 0.4471290111541748, 0.049311377108097076, -0.07703951001167297, -0.16923344135284424, -0.057037342339754105, -0.19743844866752625, -0.7554346919059753, -0.5286280512809753, 0.3835649788379669, -0.5818982124328613, -0.5180612206459045, 0.1166050061583519, -1.1404062509536743, -0.26593804359436035, -0.2491302192211151, 0.19628667831420898, -0.1989315301179886, -0.6620776653289795, -0.16189727187156677, -0.3106527328491211, 0.011369762942194939, 0.349814236164093, -0.5826215147972107, 0.3130866289138794, 0.5177689790725708, 0.7650758624076843, -0.2776349186897278, -0.22977496683597565, -0.31482598185539246, -0.09769295901060104, -0.06844053417444229, 0.7494434714317322, -0.47545966506004333, -0.38840290904045105, -0.3176530599594116, 0.3750656247138977, -0.002044694498181343, -0.43096470832824707, 0.8751897215843201, -0.12536241114139557, 0.14071226119995117, -0.4441627264022827, -0.4852927327156067, -0.06462394446134567, 0.18339508771896362, -0.9603147506713867, 1.2703628540039062, 0.20980866253376007, -1.0386394262313843, 0.5351147055625916, -0.8867827653884888, -0.3523032069206238, 0.3434791564941406, -0.1230294331908226, -0.5256380438804626, -0.1893150508403778, 0.16229668259620667, 0.6509878039360046, -0.2854553759098053, 0.2354661226272583, -0.368166446685791, -0.21680285036563873, 0.1945456564426422, -0.09254926443099976, 1.1452234983444214, 0.20544779300689697, -0.34124600887298584, -0.06983986496925354, -1.1074512004852295, -0.018354134634137154, 0.5645411610603333, -0.2435826063156128, -0.3280203938484192, -0.23100103437900543, 0.4237655699253082, -0.04627908766269684, 0.23083101212978363, -0.3908447325229645, 0.3523518443107605, -0.14490455389022827, 0.4272795021533966, 0.6747077107429504, 0.27836889028549194, 0.3348788321018219, -0.2695710062980652, 0.2409980446100235, 0.34467118978500366, 0.08138777315616608, -0.09699070453643799, -0.7232188582420349, -0.5443041324615479, -0.286065936088562, 0.6144999861717224, 0.5016244649887085, -0.6316027641296387, 0.6649507284164429, -0.4529480040073395, -0.6945654153823853, -0.4861869812011719, 0.19436074793338776, 0.019718121737241745, 0.4304663836956024, 0.35242703557014465, -0.34626486897468567, -0.6903011798858643, -0.6700150370597839, -0.051160477101802826, -0.21566373109817505, 0.23378430306911469, 0.540651261806488, 0.7508524656295776, -0.23520077764987946, 0.7163980603218079, -0.614025354385376, -0.2765648663043976, -0.25163349509239197, -0.020096294581890106, 0.3638620674610138, 0.6915695071220398, 0.6129234433174133, -0.9502728581428528, -0.3037559688091278, -0.20849740505218506, -0.6954290270805359, -0.000031597035558661446, -0.05543201044201851, -0.10137273371219635, 0.058513492345809937, 0.3945215046405792, -0.7458016872406006, 0.31164368987083435, 0.2910103499889374, -0.3481237590312958, 0.2375604659318924, 0.12756626307964325, -0.029973609372973442, -1.2390743494033813, 0.3563065528869629, 0.05760516598820686, 0.08859706670045853, -0.5562417507171631, -0.07720597833395004, -0.16710017621517181, 0.1289934366941452, -0.2949850559234619, 0.608042299747467, -0.6296103000640869, 0.24948625266551971, 0.12046006321907043, 0.15302547812461853, -0.1535584181547165, 0.5415855646133423, -0.02779415249824524, 0.3961534798145294, 0.7394970655441284, -0.664199709892273, 0.36316078901290894, 0.23216299712657928, -0.3080785274505615, 0.6178315877914429, -0.6160519123077393, 0.04296174272894859, -0.26504671573638916, 0.14188459515571594, -0.6255187392234802, -0.34277889132499695, 0.6367016434669495, -0.5763970017433167, 0.6310264468193054, -0.3707301616668701, -0.6117815971374512, -0.6109439134597778, -0.29486167430877686, 0.2846841812133789, 0.20817813277244568, -0.3297582268714905, 0.38297712802886963, 0.7730593085289001, -0.006896098144352436, -0.4644339680671692, -0.760202944278717, 0.0650024563074112, -0.259972482919693, -0.419979453086853, 0.47761136293411255, -0.25290757417678833, -0.0826844573020935, 0.4151773750782013, 0.20385755598545074, 0.03150741755962372, 0.21915476024150848, 0.3088817000389099, 0.25113698840141296, -0.07143913209438324, 0.08571648597717285, -0.05573877692222595, -0.16822955012321472, -0.09479903429746628, -0.2845650017261505, 0.3146560490131378, -0.18062131106853485, -0.030928200110793114, -0.2308652102947235, 0.26678934693336487, 0.2763892114162445, -0.2526434063911438, 0.6245308518409729, 1.1118570566177368, -0.6455129981040955, -0.008847521618008614, -0.3694396913051605, -0.006708364002406597, -0.3866960108280182, 0.3905703127384186, -0.2018338441848755, -0.738288402557373, 0.8733999133110046, -0.026197096332907677, 0.2333977073431015, 0.9003700613975525, 0.6032091379165649, 0.06136409193277359, 0.6176175475120544, 0.43413907289505005, -0.14122769236564636, 0.44117337465286255, -0.6140413880348206, 0.07630514353513718, -0.8259763121604919, -0.4136587083339691, -0.543733537197113, -0.48892301321029663, -1.1048060655593872, -0.42065370082855225, -0.13972492516040802, 0.08202022314071655, 0.09229740500450134, 0.45739975571632385, -0.9678426384925842, 0.3242177367210388, 0.4677355885505676, -0.07907652109861374, 0.10659964382648468, -0.12885238230228424, -0.09449248760938644, -0.11443787068128586, -0.4395330548286438, -0.3790294826030731, 1.2360895872116089, 0.36459439992904663, 0.45577311515808105, 0.03609730675816536, 0.917259156703949, 0.2728200852870941, 0.2042238712310791, -0.5184846520423889, 0.5792666077613831, -0.026602286845445633, -0.7192977070808411, -0.33126190304756165, -0.5770469903945923, -1.109095811843872, -0.09061892330646515, -0.3757246136665344, -0.8982129693031311, 0.4901506006717682, -0.018837548792362213, -0.2159239947795868, 0.49111247062683105, -0.6748905777931213, 0.865199625492096, -0.04025675728917122, -0.28668251633644104, 0.25305646657943726, -0.7898716330528259, 0.3047385513782501, 0.020159805193543434, 0.419887512922287, -0.5197931528091431, -0.08831699192523956, 1.1445143222808838, -0.412454217672348, 0.7659190893173218, -0.4804743230342865, 0.21960341930389404, 0.6020476818084717, -0.3928654193878174, 0.5946597456932068, 0.27206534147262573, -0.03371342271566391, 0.5414665341377258, -0.03290673345327377, -0.3054405152797699, -0.3201117217540741, 0.8348443508148193, -0.6366285085678101, -0.03294195979833603, -0.4318011403083801, -0.46408888697624207, 0.042239438742399216, 0.49826526641845703, 0.39557313919067383, 0.18025125563144684, -0.2401847541332245, 0.18412096798419952, 0.749354898929596, -0.040440961718559265, 0.4086815416812897, 0.23256106674671173, -0.13561981916427612, -0.571124255657196, 1.0061602592468262, 0.3647123873233795, -0.23971687257289886, 0.3528268337249756, -0.02016569674015045, -0.11464205384254456, -0.5983967781066895, -0.6045297980308533, 0.13937154412269592, -0.49885526299476624, -0.4161831736564636, -0.9639122486114502, -0.267789363861084, -0.4205012917518616, 0.23707187175750732, -0.35127732157707214, -0.6743157505989075, -0.5683866739273071, -0.2674412131309509, 0.6629687547683716, 0.5372555255889893, -0.4091626703739166, 0.011913682334125042, -0.5060049295425415, 0.25203949213027954, -0.09478303790092468, 0.40605294704437256, 0.07081954926252365, -0.27002277970314026, -0.2929346561431885, 0.07336535304784775, -0.18262864649295807, -0.7155383825302124, 0.21702371537685394, 0.13537158071994781, 0.7090228796005249, 0.23392218351364136, 0.1576349288225174, 0.5713821649551392, -0.16470973193645477, 0.7751335501670837, -0.08251815289258957, -0.6385642886161804, 0.5939638018608093, -0.28839391469955444, 0.08182691782712936, 0.7676548361778259, 0.38845857977867126, -0.4954046905040741, -0.36993905901908875, -1.0678839683532715, -1.121130347251892, 0.7265748977661133, 0.537272036075592, 0.10393140465021133, -0.00018257489136885852, 0.34837397933006287, -0.014021061360836029, 0.3501633405685425, -0.7364223003387451, -0.9083536863327026, -0.05969345569610596, -0.29742905497550964, 0.09352847188711166, -0.01729300245642662, -0.08823896944522858, -0.41500958800315857, 0.8262729644775391, -0.029609765857458115, 0.47870272397994995, 0.12499050796031952, 0.06754894554615021, -0.10979060083627701, 0.09889965504407883, 0.3214612901210785, 0.1718125194311142, -0.2169562727212906, -0.016367720440030098, 0.07958691567182541, -0.7820683121681213, -0.2288317084312439, 0.7025619149208069, -0.39042386412620544, 0.20514214038848877, 0.38027748465538025, 0.7442873120307922, 0.24262011051177979, -0.4039890766143799, 0.5438687205314636, -0.14257743954658508, -0.3061155676841736, -0.39488136768341064, 0.021700559183955193, 0.15217413008213043, 0.08096751570701599, 0.40161260962486267, 0.20870718359947205, 0.18349483609199524, -0.3855181336402893, 0.2675819396972656, 0.2588663399219513, -0.2585105299949646, -0.4034733772277832, 0.6103679537773132, 0.0903700441122055, -0.057116780430078506, 0.5805007219314575, -0.7258268594741821, -0.4099341630935669, 0.6005381345748901, 0.08713503926992416, 0.7152041792869568, 0.016731344163417816, 0.08544524759054184, 0.6446754932403564, 0.490460067987442, 0.053549714386463165, 0.45232272148132324, -0.15648974478244781, -0.7487496733665466, 0.06802848726511002, -0.5431593656539917, -0.05498501658439636, 0.33937719464302063, -0.7454567551612854, 0.520514726638794, -0.4799264669418335, -0.25994038581848145, 0.4626893699169159, 0.4577842950820923, -1.0323158502578735, 0.057107023894786835, -0.00899716466665268, 0.7375065088272095, -0.8952245712280273, 0.42124947905540466, 0.7857575416564941, -0.6734932661056519, -0.8741951584815979, -0.12081579864025116, 0.1806037575006485, -0.5770754814147949, 0.14581961929798126, 0.18076954782009125, 0.7001516222953796, 0.0313112698495388, -0.7742722034454346, -0.9507634043693542, 1.2104302644729614, 0.0890531837940216, -0.4791387617588043, -0.009251085110008717, -0.012316429987549782, 0.5627505779266357, -0.2447327971458435, 0.2640354037284851, 0.43241265416145325, 0.6584928035736084, 0.20954976975917816, -0.7644470930099487, 0.29066407680511475, -0.6440607309341431, -0.24316631257534027, 0.4118969440460205, -0.8406333327293396, 0.6117929816246033, -0.31701499223709106, -0.28599032759666443, -0.08726757764816284, 0.742218017578125, 0.20044374465942383, 0.5739380717277527, 0.47719821333885193, 0.87714684009552, 1.2066242694854736, -0.38235709071159363, 0.6983160972595215, -0.24687077105045319, 0.46734511852264404, 1.1026842594146729, 0.01235941331833601, 0.5659304857254028, 0.3291490972042084, -0.3805919587612152, 0.48353153467178345, 0.7801106572151184, -0.4792506694793701, 0.327005535364151, 0.16455471515655518, -0.02131071873009205, 0.0616852231323719, -0.3351142704486847, -0.5569310784339905, 0.3412059247493744, 0.5257939100265503, -0.4550447165966034, -0.04816348850727081, -0.026080679148435593, 0.2074897736310959, -0.2492719441652298, -0.2342311143875122, 0.784229576587677, 0.050969045609235764, -0.18491263687610626, 0.2509475350379944, -0.04695989191532135, 0.6566604375839233, -0.295452743768692, 0.01718240976333618, -0.015280870720744133, 0.06462770700454712, -0.5272348523139954, -0.989554226398468, 0.3191465139389038, -0.017522212117910385, -0.36473822593688965, -0.010040701366961002, 0.7185079455375671, -0.40134963393211365, -0.7328484654426575, 0.14739078283309937, 0.48430299758911133, 0.4297165870666504, 0.12271220982074738, -1.1031945943832397, 0.3169478476047516, 0.051456522196531296, -0.3998272716999054, 0.11296422779560089, 0.8304176926612854, -0.1635231077671051, 0.3368760049343109, 0.7621002197265625, 0.15790389478206635, -0.0659758448600769, 0.18771043419837952, 0.9323205351829529, -0.6653378009796143, -0.40748831629753113, -0.5306493043899536, 0.62846839427948, -0.3599787652492523, -0.4967155158519745, 0.613703191280365, 1.0140305757522583, 1.1367781162261963, 0.2306852787733078, 0.755268931388855, -0.5878019332885742, 0.7088786363601685, -0.20858381688594818, 0.7217807769775391, -0.5830956697463989, 0.27460622787475586, -0.5959836840629578, -0.7710809111595154, -0.34446123242378235, 0.3102051019668579, 0.034096609801054, 0.31094929575920105, 0.33785563707351685, 0.779469907283783, -0.014784351922571659, 0.11450658738613129, -0.10071521997451782, 0.2931126654148102, 0.22995124757289886, 0.43369752168655396, 0.45832309126853943, -0.7324588298797607, 0.609400749206543, -0.5841624736785889, -0.12797226011753082, -0.06539157032966614, -0.8571037650108337, -0.7410431504249573, -0.9887566566467285, -0.7623943090438843, -0.49565592408180237, -0.15587027370929718, 0.9836685061454773, 0.6338189244270325, -0.9644497036933899, 0.14410945773124695, -0.1676669865846634, 0.23508252203464508, -0.21854335069656372, -0.3528449535369873, 0.4392607510089874, 0.18848557770252228, -0.7007302045822144, -0.04598493501543999, 0.050980571657419205, 0.27186787128448486, 0.03497961536049843, 0.0706949457526207, -0.22143769264221191, -0.3298008143901825, 0.2598446011543274, 0.4070103168487549, -0.4621553122997284, 0.05585736408829689, -0.14715449512004852, -0.008557179011404514, 0.042155325412750244, 0.5627613663673401, -0.5642868876457214, 0.19509008526802063, 0.3275793790817261, 0.37228089570999146, 0.6750723719596863, -0.19134840369224548, -0.07447963953018188, -0.6780247688293457, 0.16424989700317383, 0.3117569386959076, 0.39156588912010193, 0.5357216596603394, -0.6059020757675171, 0.7964884638786316, 0.7179373502731323, -0.3718254864215851, -1.0160409212112427, -0.26786720752716064, -1.247440218925476, 0.005788444075733423, 1.0644283294677734, -0.052153028547763824, -0.29331451654434204, -0.15532313287258148, -0.011835920624434948, 0.26362574100494385, -0.6987976431846619, 0.428195983171463, 0.6723335981369019, 0.04122987762093544, -0.05076056346297264, -0.49948811531066895, 0.5409735441207886, -0.08762431889772415, -0.9142928123474121, 0.08971928060054779, 0.2797061800956726, 0.32883426547050476, 0.39148977398872375, 0.7097042202949524, -0.20755597949028015, -0.02040947414934635, 0.11775940656661987, 0.20700089633464813, -0.11356906592845917, -0.08406659215688705, -0.1743684858083725, -0.07909577339887619, -0.20865529775619507, -0.16129545867443085 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
amazon_polarity
null
2023-01-25T14:26:12Z
9,233
30
null
[ "task_categories:text-classification", "task_ids:sentiment-classification", "annotations_creators:crowdsourced", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:en", "license:apache-2.0", "arxiv:1509.01626", "region:us" ]
2023-01-25T14:26:12Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - crowdsourced language: - en license: - apache-2.0 multilinguality: - monolingual size_categories: - 1M<n<10M source_datasets: - original task_categories: - text-classification task_ids: - sentiment-classification pretty_name: Amazon Review Polarity dataset_info: features: - name: label dtype: class_label: names: '0': negative '1': positive - name: title dtype: string - name: content dtype: string config_name: amazon_polarity splits: - name: train num_bytes: 1604364432 num_examples: 3600000 - name: test num_bytes: 178176193 num_examples: 400000 download_size: 688339454 dataset_size: 1782540625 train-eval-index: - config: amazon_polarity task: text-classification task_id: binary_classification splits: train_split: train eval_split: test col_mapping: content: text label: target metrics: - type: accuracy name: Accuracy - type: f1 name: F1 macro args: average: macro - type: f1 name: F1 micro args: average: micro - type: f1 name: F1 weighted args: average: weighted - type: precision name: Precision macro args: average: macro - type: precision name: Precision micro args: average: micro - type: precision name: Precision weighted args: average: weighted - type: recall name: Recall macro args: average: macro - type: recall name: Recall micro args: average: micro - type: recall name: Recall weighted args: average: weighted --- # Dataset Card for Amazon Review Polarity ## 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://registry.opendata.aws/ - **Repository:** https://github.com/zhangxiangxiao/Crepe - **Paper:** https://arxiv.org/abs/1509.01626 - **Leaderboard:** [Needs More Information] - **Point of Contact:** [Xiang Zhang](mailto:xiang.zhang@nyu.edu) ### Dataset Summary The Amazon reviews dataset consists of reviews from amazon. The data span a period of 18 years, including ~35 million reviews up to March 2013. Reviews include product and user information, ratings, and a plaintext review. ### Supported Tasks and Leaderboards - `text-classification`, `sentiment-classification`: The dataset is mainly used for text classification: given the content and the title, predict the correct star rating. ### Languages Mainly English. ## Dataset Structure ### Data Instances A typical data point, comprises of a title, a content and the corresponding label. An example from the AmazonPolarity test set looks as follows: ``` { 'title':'Great CD', 'content':"My lovely Pat has one of the GREAT voices of her generation. I have listened to this CD for YEARS and I still LOVE IT. When I'm in a good mood it makes me feel better. A bad mood just evaporates like sugar in the rain. This CD just oozes LIFE. Vocals are jusat STUUNNING and lyrics just kill. One of life's hidden gems. This is a desert isle CD in my book. Why she never made it big is just beyond me. Everytime I play this, no matter black, white, young, old, male, female EVERYBODY says one thing ""Who was that singing ?""", 'label':1 } ``` ### Data Fields - 'title': a string containing the title of the review - escaped using double quotes (") and any internal double quote is escaped by 2 double quotes (""). New lines are escaped by a backslash followed with an "n" character, that is "\n". - 'content': a string containing the body of the document - escaped using double quotes (") and any internal double quote is escaped by 2 double quotes (""). New lines are escaped by a backslash followed with an "n" character, that is "\n". - 'label': either 1 (positive) or 0 (negative) rating. ### Data Splits The Amazon reviews polarity dataset is constructed by taking review score 1 and 2 as negative, and 4 and 5 as positive. Samples of score 3 is ignored. Each class has 1,800,000 training samples and 200,000 testing samples. ## Dataset Creation ### Curation Rationale The Amazon reviews polarity dataset is constructed by Xiang Zhang (xiang.zhang@nyu.edu). It is used as a text classification benchmark in the following paper: Xiang Zhang, Junbo Zhao, Yann LeCun. Character-level Convolutional Networks for Text Classification. Advances in Neural Information Processing Systems 28 (NIPS 2015). ### Source Data #### Initial Data Collection and Normalization [Needs More Information] #### Who are the source language producers? [Needs More Information] ### Annotations #### Annotation process [Needs More Information] #### Who are the annotators? [Needs More Information] ### Personal and Sensitive Information [Needs More Information] ## Considerations for Using the Data ### Social Impact of Dataset [Needs More Information] ### Discussion of Biases [Needs More Information] ### Other Known Limitations [Needs More Information] ## Additional Information ### Dataset Curators [Needs More Information] ### Licensing Information Apache License 2.0 ### Citation Information McAuley, Julian, and Jure Leskovec. "Hidden factors and hidden topics: understanding rating dimensions with review text." In Proceedings of the 7th ACM conference on Recommender systems, pp. 165-172. 2013. Xiang Zhang, Junbo Zhao, Yann LeCun. Character-level Convolutional Networks for Text Classification. Advances in Neural Information Processing Systems 28 (NIPS 2015) ### Contributions Thanks to [@hfawaz](https://github.com/hfawaz) for adding this dataset.
[ -0.5663706064224243, -0.49735093116760254, 0.22922274470329285, 0.27410873770713806, -0.3867834806442261, 0.1692732274532318, -0.198602557182312, -0.20967820286750793, 0.41424107551574707, 0.9508286714553833, -0.8425270318984985, -0.9999403357505798, -0.5337232947349548, 0.08386127650737762, -0.2468140870332718, 1.6137065887451172, 0.23771612346172333, 0.007204169407486916, 0.053431883454322815, -0.3528039753437042, 0.053183868527412415, -0.6016774773597717, -0.3883833587169647, -0.1203143373131752, 0.5020706653594971, 0.5334165096282959, 0.7457892894744873, 0.29101327061653137, 0.5546764135360718, 0.1341574788093567, -0.21448121964931488, -0.010546387173235416, -0.42930153012275696, 0.105275958776474, 0.0073185814544558525, -0.47861045598983765, -0.7227728366851807, 0.3532317876815796, 0.34697607159614563, 0.5071204900741577, 0.0007485750829800963, 0.49834445118904114, 0.2041037529706955, 0.921897828578949, -0.4226110577583313, 0.35556456446647644, -0.19335129857063293, 0.28825679421424866, -0.11818064004182816, -0.07055000960826874, -0.18651236593723297, -0.6122056841850281, 0.13310149312019348, -0.6887497305870056, 0.4526348412036896, 0.18596938252449036, 0.8790342807769775, 0.08376378566026688, -0.3928247392177582, -0.2500041425228119, -0.857483983039856, 0.7503026127815247, -0.6318493485450745, 0.03552477806806564, 0.541443943977356, 0.1673746407032013, 0.05620729178190231, -0.3609845042228699, -0.8622258901596069, 0.014152172952890396, 0.03455246612429619, 0.45393216609954834, -0.07363107800483704, -0.13672113418579102, 0.36022430658340454, 0.6021023392677307, -0.4529440999031067, -0.266706645488739, -0.24892370402812958, 0.06480518728494644, 0.770681619644165, 0.2005849927663803, 0.0498163178563118, -0.6193023920059204, -0.3550693690776825, -0.41553810238838196, -0.4978530704975128, 0.3344268202781677, 0.6008138060569763, 0.21553131937980652, -0.37539243698120117, 0.6088600754737854, -0.1086408942937851, 0.19834767282009125, -0.03135437145829201, 0.15258316695690155, 0.5178185105323792, -0.4873964190483093, -0.11032742261886597, -0.15329855680465698, 0.9661868214607239, 0.6816508769989014, -0.03501763194799423, 0.2604626417160034, -0.04893631488084793, -0.09012171626091003, 0.20302395522594452, -0.6204953789710999, -0.3538045287132263, 0.6038960814476013, -0.7007612586021423, -0.5158995985984802, 0.2970923185348511, -1.0423252582550049, -0.4295879602432251, -0.1766117811203003, 0.13473424315452576, -0.17065002024173737, -0.22458632290363312, 0.15336032211780548, -0.3376506268978119, 0.10468846559524536, 0.08811214566230774, -0.4708569049835205, 0.2596934735774994, 0.6389282941818237, 0.4450366795063019, 0.01425663847476244, -0.15595899522304535, -0.10689789056777954, -0.12619301676750183, -0.1672954112291336, 0.6806768774986267, -0.36066120862960815, -0.2616223692893982, 0.16493584215641022, 0.48160460591316223, 0.40716367959976196, -0.31009921431541443, 0.9117459058761597, -0.43405112624168396, 0.4262780249118805, -0.6618114113807678, -0.30237698554992676, -0.4216519594192505, 0.31251177191734314, -0.784479558467865, 1.0369141101837158, 0.09687644243240356, -0.661666750907898, 0.4629475176334381, -0.5320931077003479, -0.24258920550346375, 0.07457359880208969, 0.13595347106456757, -0.8532374501228333, -0.26518237590789795, 0.16169647872447968, 0.4796959459781647, -0.5112535953521729, 0.08165659755468369, -0.3715466260910034, -0.022240936756134033, 0.46714159846305847, -0.1344921886920929, 1.1466749906539917, 0.09143031388521194, -0.46836644411087036, -0.16305692493915558, -0.8850624561309814, -0.07377849519252777, 0.2755218744277954, -0.23921415209770203, -0.15279242396354675, 0.09955502301454544, 0.3753040134906769, -0.02167614921927452, 0.16055460274219513, -0.5218967795372009, 0.18289075791835785, -0.054107364267110825, 0.5292972922325134, 0.4442098140716553, 0.28601697087287903, 0.3564942479133606, -0.5351700186729431, 0.7601826190948486, 0.04015029966831207, 0.5945505499839783, 0.11419904232025146, -0.6010931730270386, -0.8919144868850708, 0.04078107699751854, 0.321576327085495, 0.6480173468589783, -0.5083281397819519, 1.1545357704162598, -0.1852896809577942, -0.6897982954978943, -0.5393760204315186, 0.13527637720108032, 0.39949339628219604, 0.19423675537109375, 0.4632881283760071, -0.4980607330799103, -0.20036262273788452, -0.6990739703178406, 0.2100532203912735, -0.3103366792201996, -0.08129621297121048, 0.7333499789237976, 0.3561111390590668, -0.18505780398845673, 0.7433399558067322, -0.655807614326477, -0.7017279267311096, -0.4566168785095215, 0.21081896126270294, 0.3881915211677551, 0.3025835156440735, 0.5283514857292175, -0.685500979423523, -0.47448503971099854, -0.2694561183452606, -0.7046509385108948, -0.1974433958530426, -0.10494518280029297, -0.14075301587581635, 0.03798973187804222, -0.052115075290203094, -0.45192456245422363, 0.25333428382873535, 0.5553241968154907, -0.4460865259170532, 0.5368301868438721, -0.05501420423388481, 0.25202277302742004, -0.9063602685928345, -0.00824566651135683, 0.14787712693214417, 0.2207103818655014, -0.3073982000350952, -0.1710917055606842, -0.010532972402870655, -0.0914810448884964, -0.08392703533172607, 0.03687860816717148, -0.3345780074596405, 0.14308732748031616, 0.0016799926524981856, 0.24464479088783264, 0.5390656590461731, 0.7235651612281799, -0.19753356277942657, 0.39969533681869507, 0.5070299506187439, -0.48158958554267883, 0.37256675958633423, 0.5757401585578918, -0.34684431552886963, 0.7450379729270935, -0.6143771409988403, 0.014042392373085022, -0.315697580575943, 0.5127144455909729, -0.7694113254547119, 0.09380649775266647, 0.5251550674438477, -0.39918023347854614, -0.012956314720213413, -0.07858990132808685, -0.5116762518882751, -0.3729998767375946, -0.5544814467430115, 0.3400493264198303, 0.4855996072292328, -0.36601608991622925, 0.5326845645904541, 0.5885370969772339, -0.21403031051158905, -0.6716433763504028, -0.5931479334831238, 0.00788172148168087, -0.1407802551984787, -0.29425689578056335, 0.33952128887176514, -0.29856035113334656, -0.016413487493991852, 0.04924415051937103, 0.23120169341564178, 0.23083031177520752, -0.16497677564620972, 0.29540953040122986, 0.13561995327472687, -0.21763214468955994, 0.21662527322769165, 0.09276629239320755, -0.12694303691387177, 0.2090286761522293, -0.08716818690299988, 0.4370766282081604, -0.15552949905395508, 0.09544739872217178, -0.4934755861759186, 0.2977294325828552, 0.4665655493736267, -0.27647510170936584, 0.5543932318687439, 0.5149056911468506, 0.012883235700428486, -0.6892374753952026, -0.4359212815761566, -0.1779620200395584, -0.3565935492515564, 0.10791824758052826, 0.07741131633520126, -0.36256980895996094, 0.7701948881149292, 0.355574369430542, -0.08552654832601547, 0.5302920937538147, 0.18492358922958374, -0.25724363327026367, 0.7773168087005615, 0.5940341949462891, -0.25832611322402954, 0.463268518447876, -0.7699227929115295, 0.2748110890388489, -0.8762791752815247, -0.3199843466281891, -0.6802726984024048, -0.42350682616233826, -0.7300140261650085, -0.25713351368904114, 0.22147014737129211, 0.06485860794782639, -0.3591572642326355, 0.4889432191848755, -0.8945162892341614, 0.35252803564071655, 0.6166974306106567, 0.3709225356578827, 0.2136833816766739, -0.04430257901549339, 0.12747454643249512, -0.08297757804393768, -0.3981999456882477, -0.5446983575820923, 1.2699644565582275, 0.492687463760376, 0.47945278882980347, 0.1144619956612587, 0.3403523862361908, 0.5737847685813904, 0.1837567687034607, -0.6063268184661865, 0.6483672857284546, -0.421062171459198, -0.6182981729507446, -0.20133110880851746, -0.16401520371437073, -0.877780020236969, -0.1007806584239006, -0.5257109999656677, -0.2098473310470581, 0.512304961681366, -0.0910027027130127, -0.44075092673301697, 0.19826197624206543, -0.3949069082736969, 0.7109477519989014, -0.36590737104415894, -0.3114798069000244, -0.05400821939110756, -0.754927933216095, -0.05534784495830536, 0.2466275542974472, 0.2367130070924759, -0.20940972864627838, 0.08092479407787323, 0.9754153490066528, -0.43689680099487305, 0.8503246307373047, -0.20383970439434052, 0.14828313887119293, 0.42894574999809265, -0.03351345658302307, 0.33555734157562256, 0.1602981686592102, 0.0017163512529805303, 0.6344350576400757, -0.13057008385658264, -0.2515937387943268, -0.4533065855503082, 0.6262758374214172, -1.0228116512298584, -0.2782458961009979, -0.688660204410553, -0.13566987216472626, 0.07529974728822708, 0.17695032060146332, 0.25763559341430664, 0.27632609009742737, -0.06535942107439041, 0.37393075227737427, 0.6687036752700806, -0.5228351354598999, 0.17915593087673187, 0.5972868204116821, -0.18810254335403442, -0.8645878434181213, 0.8938356041908264, 0.24879047274589539, 0.048964716494083405, 0.3103921115398407, 0.16519537568092346, -0.08738256245851517, -0.38492268323898315, -0.3471011221408844, 0.39546817541122437, -0.6055115461349487, -0.14730185270309448, -0.7894090414047241, -0.3512090742588043, -0.3340882658958435, -0.07112216204404831, -0.059925492852926254, -0.41482338309288025, -0.36178842186927795, -0.41145703196525574, 0.49603885412216187, 0.7771191000938416, 0.022351613268256187, 0.36702579259872437, -0.49462711811065674, 0.16699209809303284, 0.11610543727874756, 0.3039585053920746, -0.0834297388792038, -0.19404450058937073, -0.05800973251461983, -0.051814816892147064, -0.5680689215660095, -0.8987075686454773, 0.4661812484264374, 0.10580895841121674, 0.31671467423439026, 0.39053967595100403, 0.4388374984264374, 0.03878568485379219, -0.04359693452715874, 1.2416458129882812, -0.057528018951416016, -0.6778531670570374, 0.5256901979446411, -0.46029961109161377, 0.07941930741071701, 0.7289060950279236, 0.4944668710231781, -0.4099016785621643, -0.46301326155662537, -0.8995275497436523, -1.042702317237854, 0.687787652015686, 0.2986013889312744, 0.16438570618629456, 0.12501409649848938, 0.21325914561748505, 0.3144012987613678, 0.5845201015472412, -1.174400806427002, -0.6996585130691528, -0.39744365215301514, -0.21273063123226166, -0.39737290143966675, -0.33796226978302, -0.31541329622268677, -0.371124804019928, 0.8433358073234558, -0.012165338732302189, 0.34241920709609985, 0.2351342886686325, 0.23715297877788544, -0.2683148682117462, 0.3020746409893036, 0.2259255200624466, 0.16210108995437622, -0.5563939809799194, -0.020221944898366928, -0.2692978084087372, -0.6652316451072693, -0.14057181775569916, 0.10041949152946472, -0.4785052537918091, -0.18668511509895325, 0.21360521018505096, 0.6141237616539001, -0.045851271599531174, -0.3560273051261902, 0.8055495619773865, -0.1915024220943451, -0.11094393581151962, -0.8651105165481567, -0.0021454233210533857, -0.24825036525726318, 0.17140820622444153, 0.4674956798553467, 0.1356929987668991, 0.17846767604351044, -0.5642091035842896, 0.1102466732263565, 0.4036599397659302, -0.5692571997642517, -0.34337183833122253, 0.6160987615585327, 0.2661212682723999, -0.42087697982788086, 0.6045879125595093, -0.22095833718776703, -0.6623210310935974, 0.80658358335495, 0.12688742578029633, 1.0237716436386108, 0.0984899252653122, 0.7726770639419556, 0.5889735817909241, 0.558462917804718, 0.20806507766246796, 0.41086703538894653, -0.4667944312095642, -0.7583770155906677, 0.18954665958881378, -0.7434200644493103, -0.587793231010437, 0.2424616664648056, -0.6989086866378784, 0.30424872040748596, -0.7711227536201477, -0.2799065113067627, 0.008656738325953484, 0.19379565119743347, -0.5625551342964172, 0.3044598400592804, -0.13414573669433594, 0.6197814345359802, -1.0385335683822632, 0.43097224831581116, 0.3247694671154022, -0.9053192734718323, -0.6092586517333984, 0.10442381352186203, -0.06762588024139404, -0.30009526014328003, 0.3471125066280365, 0.20915699005126953, 0.2223445177078247, -0.27142277359962463, -0.7312490344047546, -0.5601277947425842, 1.0742428302764893, -0.1566992998123169, -0.23147596418857574, 0.4410770833492279, 0.3528972566127777, 0.926483154296875, -0.5811285972595215, 0.4643694758415222, 0.3334852457046509, 0.5036831498146057, -0.17501091957092285, -0.39764824509620667, 0.07538623362779617, -0.45471304655075073, -0.3005528151988983, -0.07114624232053757, -0.8516861796379089, 0.9124517440795898, 0.09517541527748108, -0.08487627655267715, -0.157917782664299, 0.28766247630119324, 0.146320179104805, 0.5414196252822876, 0.49798691272735596, 0.6659725308418274, 0.5837308168411255, -0.19843707978725433, 1.0382843017578125, -0.3341296911239624, 0.562189519405365, 0.6337377429008484, -0.3148888051509857, 0.9405931234359741, 0.030282028019428253, -0.35666871070861816, 0.9848182201385498, 0.5875328779220581, -0.4172360599040985, 0.5657559633255005, -0.05894876644015312, -0.1800258904695511, -0.10152316838502884, -0.1400495022535324, -0.41301387548446655, 0.060261406004428864, 0.3284122943878174, -0.6319695711135864, 0.19272932410240173, 0.026661846786737442, -0.008706936612725258, -0.027187462896108627, -0.07511774450540543, 0.8167387843132019, 0.09580102562904358, -0.6425238251686096, 0.3805707097053528, -0.1323026418685913, 0.4744056761264801, -0.4533134400844574, -0.020276803523302078, -0.1814154088497162, 0.28346267342567444, -0.4698045551776886, -0.9245625138282776, -0.01467730849981308, -0.2872796952724457, -0.5412871837615967, -0.3517037332057953, 0.25978565216064453, -0.32063788175582886, -0.6805176138877869, 0.5115209221839905, 0.03651302680373192, 0.12384912371635437, 0.10825466364622116, -0.9083341360092163, -0.048108551651239395, 0.09903541207313538, -0.32114508748054504, 0.08440040051937103, 0.524194598197937, 0.13889993727207184, 0.5070809125900269, 0.7166708111763, 0.22899730503559113, -0.1518876701593399, 0.15167397260665894, 0.6873883605003357, -0.8525703549385071, -0.7567903399467468, -0.1990567147731781, 0.5625877380371094, -0.2699460983276367, -0.6722549200057983, 0.8518527150154114, 0.6396030783653259, 0.7635911703109741, -0.08312110602855682, 0.8655067682266235, -0.16784371435642242, 0.6464431881904602, -0.29616597294807434, 0.8926173448562622, -0.55308598279953, 0.49175921082496643, -0.38481366634368896, -1.0617762804031372, -0.35992521047592163, 0.4510516822338104, -0.4577098488807678, 0.1695380061864853, 0.7935706973075867, 0.8754392862319946, 0.11600841581821442, 0.4003649055957794, -0.08245797455310822, 0.49822214245796204, 0.190577894449234, 0.3030998706817627, 0.6043281555175781, -0.7765084505081177, 0.4213971793651581, -0.595500648021698, -0.4133540689945221, -0.20325055718421936, -0.8225361704826355, -0.807161808013916, -0.7680672407150269, -0.6369438767433167, -0.7199255228042603, -0.2036062777042389, 0.6408507823944092, 0.4994314908981323, -1.1009620428085327, -0.2672877311706543, -0.022427910938858986, 0.2360936999320984, -0.5050816535949707, -0.29691118001937866, 0.43860533833503723, 0.2271614521741867, -0.49820786714553833, -0.01740691438317299, 0.17927666008472443, -0.17386771738529205, -0.538618803024292, -0.08876673877239227, 0.049965277314186096, 0.050480179488658905, 0.36981892585754395, 0.2853672504425049, -0.6062749028205872, -0.2021789848804474, 0.056623805314302444, -0.1020834669470787, 0.12088267505168915, 0.6516374349594116, -0.4960538148880005, 0.26280897855758667, 0.6654917001724243, 0.10946584492921829, 0.4998815059661865, 0.15949559211730957, 0.1641436070203781, -0.42493194341659546, -0.22459015250205994, 0.37717553973197937, 0.18055415153503418, 0.3387789726257324, -0.649876058101654, 0.378601610660553, 0.26970434188842773, -0.9601105451583862, -0.6147552728652954, -0.045341141521930695, -1.5930927991867065, -0.11157360672950745, 1.258812427520752, -0.0014498850796371698, -0.4105542302131653, -0.33551037311553955, -0.28261610865592957, -0.13222500681877136, -0.6043071746826172, 0.9174444675445557, 0.7692016363143921, 0.11192376911640167, -0.11602884531021118, -0.3649134635925293, 0.5388833284378052, 0.4242922365665436, -0.6868372559547424, 0.03857914358377457, 0.5336697697639465, 0.26965996623039246, 0.43953362107276917, 0.45405519008636475, -0.2276988923549652, 0.1350264698266983, -0.12603093683719635, 0.43494343757629395, 0.14729338884353638, -0.33931082487106323, -0.4175506830215454, 0.5312709212303162, -0.13491196930408478, -0.009341944940388203 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
wino_bias
null
2023-01-25T15:02:31Z
9,189
11
winobias
[ "task_categories:token-classification", "task_ids:coreference-resolution", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:en", "license:mit", "arxiv:1804.06876", "region:us" ]
2023-01-25T15:02:31Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - expert-generated language: - en license: - mit multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - original task_categories: - token-classification task_ids: - coreference-resolution paperswithcode_id: winobias pretty_name: WinoBias dataset_info: - config_name: wino_bias features: - name: document_id dtype: string - name: part_number dtype: string - name: word_number sequence: int32 - name: tokens sequence: string - name: pos_tags sequence: class_label: names: '0': '"' '1': '''''' '2': '#' '3': $ '4': ( '5': ) '6': ',' '7': . '8': ':' '9': '``' '10': CC '11': CD '12': DT '13': EX '14': FW '15': IN '16': JJ '17': JJR '18': JJS '19': LS '20': MD '21': NN '22': NNP '23': NNPS '24': NNS '25': NN|SYM '26': PDT '27': POS '28': PRP '29': PRP$ '30': RB '31': RBR '32': RBS '33': RP '34': SYM '35': TO '36': UH '37': VB '38': VBD '39': VBG '40': VBN '41': VBP '42': VBZ '43': WDT '44': WP '45': WP$ '46': WRB '47': HYPH '48': XX '49': NFP '50': AFX '51': ADD '52': -LRB- '53': -RRB- - name: parse_bit sequence: string - name: predicate_lemma sequence: string - name: predicate_framenet_id sequence: string - name: word_sense sequence: string - name: speaker sequence: string - name: ner_tags sequence: class_label: names: '0': B-PERSON '1': I-PERSON '2': B-NORP '3': I-NORP '4': B-FAC '5': I-FAC '6': B-ORG '7': I-ORG '8': B-GPE '9': I-GPE '10': B-LOC '11': I-LOC '12': B-PRODUCT '13': I-PRODUCT '14': B-EVENT '15': I-EVENT '16': B-WORK_OF_ART '17': I-WORK_OF_ART '18': B-LAW '19': I-LAW '20': B-LANGUAGE '21': I-LANGUAGE '22': B-DATE '23': I-DATE '24': B-TIME '25': I-TIME '26': B-PERCENT '27': I-PERCENT '28': B-MONEY '29': I-MONEY '30': B-QUANTITY '31': I-QUANTITY '32': B-ORDINAL '33': I-ORDINAL '34': B-CARDINAL '35': I-CARDINAL '36': '*' '37': '0' - name: verbal_predicates sequence: string splits: - name: train num_bytes: 173899234 num_examples: 150335 download_size: 268725744 dataset_size: 173899234 - config_name: type1_pro features: - name: document_id dtype: string - name: part_number dtype: string - name: word_number sequence: int32 - name: tokens sequence: string - name: pos_tags sequence: class_label: names: '0': '"' '1': '''''' '2': '#' '3': $ '4': ( '5': ) '6': ',' '7': . '8': ':' '9': '``' '10': CC '11': CD '12': DT '13': EX '14': FW '15': IN '16': JJ '17': JJR '18': JJS '19': LS '20': MD '21': NN '22': NNP '23': NNPS '24': NNS '25': NN|SYM '26': PDT '27': POS '28': PRP '29': PRP$ '30': RB '31': RBR '32': RBS '33': RP '34': SYM '35': TO '36': UH '37': VB '38': VBD '39': VBG '40': VBN '41': VBP '42': VBZ '43': WDT '44': WP '45': WP$ '46': WRB '47': HYPH '48': XX '49': NFP '50': AFX '51': ADD '52': -LRB- '53': -RRB- '54': '-' - name: parse_bit sequence: string - name: predicate_lemma sequence: string - name: predicate_framenet_id sequence: string - name: word_sense sequence: string - name: speaker sequence: string - name: ner_tags sequence: class_label: names: '0': B-PERSON '1': I-PERSON '2': B-NORP '3': I-NORP '4': B-FAC '5': I-FAC '6': B-ORG '7': I-ORG '8': B-GPE '9': I-GPE '10': B-LOC '11': I-LOC '12': B-PRODUCT '13': I-PRODUCT '14': B-EVENT '15': I-EVENT '16': B-WORK_OF_ART '17': I-WORK_OF_ART '18': B-LAW '19': I-LAW '20': B-LANGUAGE '21': I-LANGUAGE '22': B-DATE '23': I-DATE '24': B-TIME '25': I-TIME '26': B-PERCENT '27': I-PERCENT '28': B-MONEY '29': I-MONEY '30': B-QUANTITY '31': I-QUANTITY '32': B-ORDINAL '33': I-ORDINAL '34': B-CARDINAL '35': I-CARDINAL '36': '*' '37': '0' '38': '-' - name: verbal_predicates sequence: string - name: coreference_clusters sequence: string splits: - name: validation num_bytes: 379380 num_examples: 396 - name: test num_bytes: 402041 num_examples: 396 download_size: 846198 dataset_size: 781421 - config_name: type1_anti features: - name: document_id dtype: string - name: part_number dtype: string - name: word_number sequence: int32 - name: tokens sequence: string - name: pos_tags sequence: class_label: names: '0': '"' '1': '''''' '2': '#' '3': $ '4': ( '5': ) '6': ',' '7': . '8': ':' '9': '``' '10': CC '11': CD '12': DT '13': EX '14': FW '15': IN '16': JJ '17': JJR '18': JJS '19': LS '20': MD '21': NN '22': NNP '23': NNPS '24': NNS '25': NN|SYM '26': PDT '27': POS '28': PRP '29': PRP$ '30': RB '31': RBR '32': RBS '33': RP '34': SYM '35': TO '36': UH '37': VB '38': VBD '39': VBG '40': VBN '41': VBP '42': VBZ '43': WDT '44': WP '45': WP$ '46': WRB '47': HYPH '48': XX '49': NFP '50': AFX '51': ADD '52': -LRB- '53': -RRB- '54': '-' - name: parse_bit sequence: string - name: predicate_lemma sequence: string - name: predicate_framenet_id sequence: string - name: word_sense sequence: string - name: speaker sequence: string - name: ner_tags sequence: class_label: names: '0': B-PERSON '1': I-PERSON '2': B-NORP '3': I-NORP '4': B-FAC '5': I-FAC '6': B-ORG '7': I-ORG '8': B-GPE '9': I-GPE '10': B-LOC '11': I-LOC '12': B-PRODUCT '13': I-PRODUCT '14': B-EVENT '15': I-EVENT '16': B-WORK_OF_ART '17': I-WORK_OF_ART '18': B-LAW '19': I-LAW '20': B-LANGUAGE '21': I-LANGUAGE '22': B-DATE '23': I-DATE '24': B-TIME '25': I-TIME '26': B-PERCENT '27': I-PERCENT '28': B-MONEY '29': I-MONEY '30': B-QUANTITY '31': I-QUANTITY '32': B-ORDINAL '33': I-ORDINAL '34': B-CARDINAL '35': I-CARDINAL '36': '*' '37': '0' '38': '-' - name: verbal_predicates sequence: string - name: coreference_clusters sequence: string splits: - name: validation num_bytes: 380846 num_examples: 396 - name: test num_bytes: 403229 num_examples: 396 download_size: 894311 dataset_size: 784075 - config_name: type2_pro features: - name: document_id dtype: string - name: part_number dtype: string - name: word_number sequence: int32 - name: tokens sequence: string - name: pos_tags sequence: class_label: names: '0': '"' '1': '''''' '2': '#' '3': $ '4': ( '5': ) '6': ',' '7': . '8': ':' '9': '``' '10': CC '11': CD '12': DT '13': EX '14': FW '15': IN '16': JJ '17': JJR '18': JJS '19': LS '20': MD '21': NN '22': NNP '23': NNPS '24': NNS '25': NN|SYM '26': PDT '27': POS '28': PRP '29': PRP$ '30': RB '31': RBR '32': RBS '33': RP '34': SYM '35': TO '36': UH '37': VB '38': VBD '39': VBG '40': VBN '41': VBP '42': VBZ '43': WDT '44': WP '45': WP$ '46': WRB '47': HYPH '48': XX '49': NFP '50': AFX '51': ADD '52': -LRB- '53': -RRB- '54': '-' - name: parse_bit sequence: string - name: predicate_lemma sequence: string - name: predicate_framenet_id sequence: string - name: word_sense sequence: string - name: speaker sequence: string - name: ner_tags sequence: class_label: names: '0': B-PERSON '1': I-PERSON '2': B-NORP '3': I-NORP '4': B-FAC '5': I-FAC '6': B-ORG '7': I-ORG '8': B-GPE '9': I-GPE '10': B-LOC '11': I-LOC '12': B-PRODUCT '13': I-PRODUCT '14': B-EVENT '15': I-EVENT '16': B-WORK_OF_ART '17': I-WORK_OF_ART '18': B-LAW '19': I-LAW '20': B-LANGUAGE '21': I-LANGUAGE '22': B-DATE '23': I-DATE '24': B-TIME '25': I-TIME '26': B-PERCENT '27': I-PERCENT '28': B-MONEY '29': I-MONEY '30': B-QUANTITY '31': I-QUANTITY '32': B-ORDINAL '33': I-ORDINAL '34': B-CARDINAL '35': I-CARDINAL '36': '*' '37': '0' '38': '-' - name: verbal_predicates sequence: string - name: coreference_clusters sequence: string splits: - name: validation num_bytes: 367293 num_examples: 396 - name: test num_bytes: 375480 num_examples: 396 download_size: 802425 dataset_size: 742773 - config_name: type2_anti features: - name: document_id dtype: string - name: part_number dtype: string - name: word_number sequence: int32 - name: tokens sequence: string - name: pos_tags sequence: class_label: names: '0': '"' '1': '''''' '2': '#' '3': $ '4': ( '5': ) '6': ',' '7': . '8': ':' '9': '``' '10': CC '11': CD '12': DT '13': EX '14': FW '15': IN '16': JJ '17': JJR '18': JJS '19': LS '20': MD '21': NN '22': NNP '23': NNPS '24': NNS '25': NN|SYM '26': PDT '27': POS '28': PRP '29': PRP$ '30': RB '31': RBR '32': RBS '33': RP '34': SYM '35': TO '36': UH '37': VB '38': VBD '39': VBG '40': VBN '41': VBP '42': VBZ '43': WDT '44': WP '45': WP$ '46': WRB '47': HYPH '48': XX '49': NFP '50': AFX '51': ADD '52': -LRB- '53': -RRB- '54': '-' - name: parse_bit sequence: string - name: predicate_lemma sequence: string - name: predicate_framenet_id sequence: string - name: word_sense sequence: string - name: speaker sequence: string - name: ner_tags sequence: class_label: names: '0': B-PERSON '1': I-PERSON '2': B-NORP '3': I-NORP '4': B-FAC '5': I-FAC '6': B-ORG '7': I-ORG '8': B-GPE '9': I-GPE '10': B-LOC '11': I-LOC '12': B-PRODUCT '13': I-PRODUCT '14': B-EVENT '15': I-EVENT '16': B-WORK_OF_ART '17': I-WORK_OF_ART '18': B-LAW '19': I-LAW '20': B-LANGUAGE '21': I-LANGUAGE '22': B-DATE '23': I-DATE '24': B-TIME '25': I-TIME '26': B-PERCENT '27': I-PERCENT '28': B-MONEY '29': I-MONEY '30': B-QUANTITY '31': I-QUANTITY '32': B-ORDINAL '33': I-ORDINAL '34': B-CARDINAL '35': I-CARDINAL '36': '*' '37': '0' '38': '-' - name: verbal_predicates sequence: string - name: coreference_clusters sequence: string splits: - name: validation num_bytes: 368757 num_examples: 396 - name: test num_bytes: 377262 num_examples: 396 download_size: 848804 dataset_size: 746019 --- # Dataset Card for Wino_Bias dataset ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [WinoBias](https://uclanlp.github.io/corefBias/overview) - **Repository:** - **Paper:** [Arxiv](https://arxiv.org/abs/1804.06876) - **Leaderboard:** - **Point of Contact:** ### Dataset Summary WinoBias, a Winograd-schema dataset for coreference resolution focused on gender bias. The corpus contains Winograd-schema style sentences with entities corresponding to people referred by their occupation (e.g. the nurse, the doctor, the carpenter). ### Supported Tasks and Leaderboards The underlying task is coreference resolution. ### Languages English ## Dataset Structure ### Data Instances The dataset has 4 subsets: `type1_pro`, `type1_anti`, `type2_pro` and `type2_anti`. The `*_pro` subsets contain sentences that reinforce gender stereotypes (e.g. mechanics are male, nurses are female), whereas the `*_anti` datasets contain "anti-stereotypical" sentences (e.g. mechanics are female, nurses are male). The `type1` (*WB-Knowledge*) subsets contain sentences for which world knowledge is necessary to resolve the co-references, and `type2` (*WB-Syntax*) subsets require only the syntactic information present in the sentence to resolve them. ### Data Fields - document_id = This is a variation on the document filename - part_number = Some files are divided into multiple parts numbered as 000, 001, 002, ... etc. - word_num = This is the word index of the word in that sentence. - tokens = This is the token as segmented/tokenized in the Treebank. - pos_tags = This is the Penn Treebank style part of speech. When parse information is missing, all part of speeches except the one for which there is some sense or proposition annotation are marked with a XX tag. The verb is marked with just a VERB tag. - parse_bit = This is the bracketed structure broken before the first open parenthesis in the parse, and the word/part-of-speech leaf replaced with a *. The full parse can be created by substituting the asterix with the "([pos] [word])" string (or leaf) and concatenating the items in the rows of that column. When the parse information is missing, the first word of a sentence is tagged as "(TOP*" and the last word is tagged as "*)" and all intermediate words are tagged with a "*". - predicate_lemma = The predicate lemma is mentioned for the rows for which we have semantic role information or word sense information. All other rows are marked with a "-". - predicate_framenet_id = This is the PropBank frameset ID of the predicate in predicate_lemma. - word_sense = This is the word sense of the word in Column tokens. - speaker = This is the speaker or author name where available. - ner_tags = These columns identifies the spans representing various named entities. For documents which do not have named entity annotation, each line is represented with an "*". - verbal_predicates = There is one column each of predicate argument structure information for the predicate mentioned in predicate_lemma. If there are no predicates tagged in a sentence this is a single column with all rows marked with an "*". ### Data Splits Dev and Test Split available ## Dataset Creation ### Curation Rationale The WinoBias dataset was introduced in 2018 (see [paper](https://arxiv.org/abs/1804.06876)), with its original task being *coreference resolution*, which is a task that aims to identify mentions that refer to the same entity or person. ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? The dataset was created by researchers familiar with the WinoBias project, based on two prototypical templates provided by the authors, in which entities interact in plausible ways. ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? "Researchers familiar with the [WinoBias] project" ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [Recent work](https://www.microsoft.com/en-us/research/uploads/prod/2021/06/The_Salmon_paper.pdf) has shown that this dataset contains grammatical issues, incorrect or ambiguous labels, and stereotype conflation, among other limitations. ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators Jieyu Zhao, Tianlu Wang, Mark Yatskar, Vicente Ordonez and Kai-Wei Chan ### Licensing Information MIT Licence ### Citation Information @article{DBLP:journals/corr/abs-1804-06876, author = {Jieyu Zhao and Tianlu Wang and Mark Yatskar and Vicente Ordonez and Kai{-}Wei Chang}, title = {Gender Bias in Coreference Resolution: Evaluation and Debiasing Methods}, journal = {CoRR}, volume = {abs/1804.06876}, year = {2018}, url = {http://arxiv.org/abs/1804.06876}, archivePrefix = {arXiv}, eprint = {1804.06876}, timestamp = {Mon, 13 Aug 2018 16:47:01 +0200}, biburl = {https://dblp.org/rec/journals/corr/abs-1804-06876.bib}, bibsource = {dblp computer science bibliography, https://dblp.org} } ### Contributions Thanks to [@akshayb7](https://github.com/akshayb7) for adding this dataset. Updated by [@JieyuZhao](https://github.com/JieyuZhao).
[ -0.442123681306839, -0.5593209862709045, 0.14238420128822327, 0.020289357751607895, -0.20172785222530365, -0.06809664517641068, -0.2963290810585022, -0.5887792706489563, 0.2958326041698456, 0.37778934836387634, -0.6063337922096252, -0.7220638990402222, -0.6866726279258728, 0.1653081625699997, -0.12891140580177307, 1.0543732643127441, 0.1331799477338791, 0.06702861189842224, -0.18678097426891327, -0.15314991772174835, -0.45553821325302124, -0.5778505206108093, -0.19876553118228912, -0.23503969609737396, 0.14924706518650055, 0.5346110463142395, 0.717440128326416, 0.7107168436050415, 0.4604945182800293, 0.2330244481563568, -0.3860090374946594, 0.20200639963150024, -0.24183514714241028, -0.04684086889028549, -0.3453337848186493, -0.44411811232566833, -0.7757777571678162, 0.3642936646938324, 0.35965532064437866, 0.8486136198043823, -0.08672892302274704, 0.2977515459060669, 0.16520383954048157, 0.5419146418571472, -0.49177980422973633, 0.4779699146747589, -0.6270202994346619, -0.11086545884609222, -0.48052191734313965, 0.12677308917045593, -0.09571368247270584, -0.34948334097862244, 0.12470646947622299, -0.5890998244285583, 0.3998652696609497, 0.2841810882091522, 1.1578254699707031, 0.08840354532003403, -0.20471356809139252, -0.2719557583332062, -0.3883749842643738, 0.7572550773620605, -0.8411349058151245, 0.25389766693115234, 0.5359321236610413, -0.07247862964868546, -0.21629369258880615, -0.23587796092033386, -0.576086163520813, -0.008617017418146133, -0.3040522336959839, 0.054628465324640274, -0.36914265155792236, -0.027394495904445648, 0.45753368735313416, 0.3195928633213043, -0.4974735677242279, -0.24560049176216125, -0.5092341303825378, -0.3684045970439911, 0.6091604232788086, -0.1850854903459549, 0.13118381798267365, -0.5027785301208496, -0.18048790097236633, -0.13480056822299957, -0.596081018447876, 0.06213688850402832, 0.4938943684101105, 0.6001662015914917, -0.1255185306072235, 0.5476385354995728, -0.10964380949735641, 0.6973673701286316, 0.20561900734901428, -0.26292121410369873, 0.7198115587234497, -0.49985387921333313, -0.15233831107616425, 0.08271376043558121, 0.8041731715202332, 0.49186578392982483, 0.3798070251941681, -0.0035934236366301775, 0.22470426559448242, 0.1399049162864685, -0.07954533398151398, -0.5542676448822021, -0.02200489491224289, 0.26233920454978943, -0.5124605298042297, -0.1506851464509964, 0.1311534345149994, -0.9251330494880676, -0.21552690863609314, -0.384080708026886, 0.13191328942775726, -0.5378350019454956, -0.36933451890945435, -0.05557572841644287, -0.4444108307361603, 0.17235979437828064, -0.018436674028635025, -0.6015020608901978, 0.2959367632865906, 0.38710370659828186, 0.4761049151420593, 0.07626792043447495, -0.3116391599178314, -0.10090937465429306, 0.0824371799826622, -0.43411174416542053, 0.5993905663490295, -0.6137831807136536, -0.32305270433425903, -0.0842522457242012, 0.10839549452066422, -0.16479790210723877, -0.5757426619529724, 0.9079978466033936, 0.002463585464283824, 0.5559213757514954, -0.7292699813842773, -0.4601970314979553, -0.19629797339439392, 0.2722190320491791, -0.40591150522232056, 1.249975323677063, 0.14696158468723297, -1.0740424394607544, 0.42055216431617737, -0.6702755093574524, -0.31863316893577576, -0.11422715336084366, -0.25679945945739746, -0.005195931997150183, -0.21976682543754578, 0.21089127659797668, 0.34356412291526794, -0.4823759198188782, 0.616112470626831, -0.23065660893917084, 0.010991217568516731, 0.026293834671378136, 0.0868377834558487, 1.112736701965332, 0.10926086455583572, -0.4682545065879822, 0.31481632590293884, -0.872144877910614, -0.35538870096206665, 0.2140512615442276, 0.1193881407380104, -0.669246256351471, 0.09889914095401764, -0.09064604341983795, 0.34055784344673157, 0.2884375751018524, -0.7345948219299316, 0.19965949654579163, -0.4045426845550537, 0.3017719089984894, 0.6051446199417114, -0.11552023142576218, 0.39547061920166016, -0.24122200906276703, 0.34649497270584106, 0.19107721745967865, 0.3109186291694641, 0.06502459198236465, -0.6156516671180725, -0.7167531251907349, -0.16127173602581024, 0.1859835684299469, 0.7627381086349487, -0.6249597072601318, 0.8086578845977783, -0.26764196157455444, -0.6587297320365906, -0.5670945644378662, 0.1345190405845642, 0.59898841381073, 0.8306683301925659, 0.5865140557289124, -0.24068407714366913, -0.7707019448280334, -1.1446504592895508, -0.056898992508649826, -0.2939594089984894, 0.11493198573589325, 0.4758991599082947, 0.7768256664276123, -0.05851734057068825, 1.1289852857589722, -0.6160431504249573, -0.588843047618866, -0.37549495697021484, -0.0058376663364470005, 0.4784896671772003, 0.5260223150253296, 0.6735714673995972, -0.6992785334587097, -0.10304266959428787, -0.4909055233001709, -0.6946161985397339, -0.31492021679878235, 0.2221517711877823, -0.4423467814922333, -0.017904900014400482, 0.3297010362148285, -0.4875059723854065, 0.41969820857048035, 0.3905865550041199, -0.775998055934906, 0.6324754357337952, 0.00874799769371748, 0.044338542968034744, -1.2890875339508057, 0.2283746898174286, -0.04668392613530159, -0.006181336008012295, -0.47652187943458557, -0.24418610334396362, -0.12378833442926407, 0.2121007740497589, -0.20993760228157043, 0.4205256998538971, -0.5100261569023132, 0.08799729496240616, 0.08131564408540726, 0.3423643112182617, 0.02234911546111107, 0.43623971939086914, 0.06311751157045364, 0.5776340961456299, 0.5687533020973206, -0.6396965980529785, 0.11756902933120728, 0.4539273679256439, -0.17527195811271667, 0.7671340107917786, -0.6415300369262695, -0.033600032329559326, -0.3498941957950592, 0.11008020490407944, -0.9416625499725342, -0.178727388381958, 0.535565197467804, -0.508192777633667, 0.2853488028049469, 0.01983110047876835, -0.39940115809440613, -0.4841267764568329, -0.5552978515625, 0.03970850631594658, 0.05742495134472847, -0.12030909210443497, 0.41478875279426575, 0.7054644823074341, -0.001927251578308642, -0.8394721150398254, -0.704298734664917, -0.019908878952264786, -0.09704949706792831, -0.4895152449607849, 0.7307957410812378, -0.28224581480026245, -0.3728480041027069, 0.16615159809589386, 0.10087523609399796, 0.17849522829055786, 0.04124000668525696, 0.3711788058280945, 0.42641475796699524, 0.1099524199962616, 0.12345974892377853, 0.13562817871570587, -0.0019931576680392027, -0.13376177847385406, -0.09882944077253342, 0.620327353477478, -0.1578383445739746, 0.007245157845318317, -0.15059244632720947, 0.5174309015274048, 0.3006424903869629, -0.2672886848449707, 0.8048765659332275, 0.690290093421936, -0.6621604561805725, 0.14274056255817413, -0.5196772217750549, -0.1478271335363388, -0.3452233076095581, 0.233892023563385, -0.3544121980667114, -0.8046578764915466, 0.6530137062072754, 0.3993106782436371, 0.19217978417873383, 0.8154069185256958, 0.35761693120002747, -0.09682987630367279, 0.5487918853759766, 0.45106041431427, -0.26337283849716187, 0.4468376040458679, -0.25454220175743103, 0.028433147817850113, -1.0207771062850952, -0.3066767454147339, -0.9059245586395264, -0.28014492988586426, -0.5814201235771179, -0.39690905809402466, -0.07205919176340103, 0.2907043993473053, -0.40305960178375244, 0.6859032511711121, -0.657798707485199, 0.0719701275229454, 0.8719081282615662, -0.018721414729952812, 0.08425246924161911, -0.15030118823051453, -0.2931162714958191, -0.38653403520584106, -0.5729572772979736, -0.5287942290306091, 0.9870879054069519, 0.2395501732826233, 0.40235576033592224, 0.19614237546920776, 0.562238335609436, 0.5445396304130554, 0.22716853022575378, -0.4957475960254669, 0.7092999219894409, -0.18292808532714844, -0.9723625183105469, -0.054741162806749344, -0.32272738218307495, -1.0435643196105957, 0.22006064653396606, -0.2887537181377411, -0.9732732176780701, 0.6891069412231445, 0.18987059593200684, -0.13151012361049652, 0.2539077401161194, -0.5259144306182861, 0.9021413326263428, -0.06023427098989487, -0.23578818142414093, 0.2558806836605072, -0.7517347931861877, 0.1745581328868866, 0.39017248153686523, 0.515553891658783, -0.3429357707500458, 0.01931820437312126, 1.3171417713165283, -0.2946583926677704, 0.9622465372085571, -0.43745672702789307, 0.009226533584296703, 0.4162965416908264, -0.050782717764377594, 0.2569420337677002, -0.3507830798625946, -0.019605768844485283, 0.44213756918907166, 0.11402305960655212, -0.15056365728378296, 0.007695579901337624, 0.4202342629432678, -0.6720349788665771, -0.40237048268318176, -0.6511865258216858, -0.4808192253112793, -0.21496032178401947, 0.4302733540534973, 0.42404019832611084, 0.1935981661081314, -0.18786555528640747, 0.16669830679893494, 0.5263261795043945, -0.32808008790016174, 0.33362877368927, 0.39494869112968445, -0.2371809184551239, -0.5408862233161926, 0.4805234670639038, 0.4557817578315735, -0.10114354640245438, 0.31364473700523376, 0.2248605638742447, -0.2874702513217926, -0.2245481312274933, -0.2937454581260681, 0.4865703284740448, -0.4821303188800812, -0.3727681636810303, -0.5581292510032654, -0.022898400202393532, -0.8341538906097412, 0.20928514003753662, -0.31610462069511414, -0.3499436378479004, -0.3670644164085388, -0.460394948720932, 0.27338656783103943, 0.3674994707107544, -0.27696406841278076, 0.3059919476509094, -0.37640509009361267, 0.25320202112197876, -0.02268291264772415, 0.1548020988702774, -0.18122340738773346, -0.6343616247177124, 0.006720917299389839, -0.005215936340391636, -0.23170430958271027, -1.362776756286621, 0.41296857595443726, 0.26739582419395447, 0.7730787992477417, 0.44411712884902954, 0.11744751781225204, 0.5966418981552124, -0.209369957447052, 0.9295439124107361, -0.0274630356580019, -1.0256954431533813, 0.8216941356658936, -0.45661309361457825, 0.08307952433824539, 0.6874995231628418, 0.4189925789833069, -0.6816582679748535, -0.2112659364938736, -0.8718403577804565, -1.0663093328475952, 0.8367082476615906, 0.264754980802536, -0.09999410808086395, -0.2296154499053955, 0.3207290470600128, -0.0480436310172081, 0.44915229082107544, -0.7439738512039185, -0.7466776371002197, -0.10606446862220764, -0.3909465968608856, -0.057849328964948654, -0.5714097023010254, -0.38122355937957764, -0.36413145065307617, 0.9096412062644958, -0.05323636904358864, 0.5029785633087158, 0.5027641654014587, -0.10481246560811996, 0.17707596719264984, 0.5663086175918579, 0.4429396986961365, 0.6135521531105042, -0.5349245667457581, 0.1803896427154541, -0.08578039705753326, -0.5034509301185608, -0.159138023853302, 0.37007009983062744, -0.4730175733566284, 0.15717001259326935, 0.5074582099914551, 0.7264431118965149, 0.07276450097560883, -0.5007540583610535, 0.5639446973800659, 0.11367783695459366, -0.3865869343280792, -0.3033331334590912, -0.010917524807155132, 0.08683313429355621, 0.12953363358974457, 0.5932458639144897, 0.12736274302005768, 0.19911877810955048, -0.4996553957462311, 0.07398667186498642, 0.2629025876522064, -0.42129454016685486, -0.23486414551734924, 0.7132197022438049, 0.021216658875346184, -0.08957210928201675, 0.3231927752494812, -0.4382967948913574, -0.6827709078788757, 0.560141921043396, 0.529762327671051, 0.7480814456939697, -0.21873927116394043, 0.22948607802391052, 0.7320803999900818, 0.7334210872650146, 0.06917110085487366, 0.6250407099723816, 0.0023254519328475, -1.0382468700408936, -0.11165597289800644, -0.644171953201294, -0.18620409071445465, 0.061254777014255524, -0.8234571814537048, -0.0075086988508701324, -0.24550171196460724, -0.47204458713531494, -0.03763348236680031, -0.0036511903163045645, -0.788213312625885, 0.17187774181365967, 0.2615717947483063, 0.9573677182197571, -1.0446184873580933, 0.7003158330917358, 0.6702528595924377, -0.5538211464881897, -0.7088080048561096, -0.27264830470085144, 0.1918448954820633, -0.3929107189178467, 0.444842129945755, 0.1113174557685852, -0.0007617275696247816, -0.34277546405792236, -0.5363004803657532, -1.0083484649658203, 1.096362590789795, 0.40199247002601624, -0.6137110590934753, -0.07309218496084213, -0.014125249348580837, 0.5625276565551758, -0.44299694895744324, 0.34010258316993713, 0.6349411010742188, 0.6267107725143433, -0.17963150143623352, -1.001926064491272, 0.16283561289310455, -0.38158276677131653, -0.007749665528535843, -0.09744104743003845, -0.5998278260231018, 0.9472929835319519, -0.06442882120609283, 0.011292827315628529, -0.4206239581108093, 0.7970761656761169, 0.13616903126239777, 0.2451954036951065, 0.6373605728149414, 0.5828068852424622, 1.1014375686645508, -0.3338550627231598, 0.8321529626846313, -0.274125337600708, 0.3303091526031494, 1.444414496421814, -0.05414426699280739, 0.8279879093170166, 0.5093091726303101, -0.5121322274208069, 0.6000475287437439, 0.6982674598693848, 0.05157792195677757, 0.24339395761489868, -0.04031432047486305, 0.23562729358673096, 0.006983084138482809, -0.4592410922050476, -0.5822647213935852, 0.5085359215736389, 0.4815027415752411, -0.64310222864151, 0.006590762175619602, -0.05676969140768051, 0.6803953647613525, 0.0645151361823082, -0.2386658787727356, 0.57038414478302, -0.1835891157388687, -0.6423664689064026, 0.2875812351703644, 0.006174489855766296, 0.9186536073684692, -0.694644570350647, 0.1291540116071701, -0.3677634000778198, 0.1635490506887436, -0.40968504548072815, -0.6614910960197449, 0.43061545491218567, 0.14598442614078522, -0.5274031758308411, -0.05189475044608116, 0.7504699230194092, -0.5391860604286194, -0.6228160858154297, 0.5728445649147034, 0.5376351475715637, 0.2746070325374603, -0.05896837264299393, -0.856123685836792, -0.05582515522837639, 0.29610925912857056, -0.19512268900871277, 0.13497847318649292, 0.0769365131855011, -0.1915532797574997, 0.35937631130218506, 0.5534927845001221, 0.27661797404289246, 0.02883249521255493, 0.1313563585281372, 0.7194398641586304, -0.7603878974914551, -0.2804458439350128, -0.7772769927978516, 0.30003592371940613, -0.39592909812927246, -0.5483261346817017, 0.8471211194992065, 0.7088813781738281, 0.9394388794898987, 0.06803259253501892, 0.7323100566864014, -0.6797940135002136, 0.865358829498291, -0.03923351317644119, 0.5591265559196472, -0.48149555921554565, 0.0034533522557467222, -0.705483615398407, -0.8110525608062744, -0.35838067531585693, 0.7491578459739685, -0.4235801100730896, 0.008062741719186306, 0.41189801692962646, 0.7961531281471252, 0.1682499647140503, -0.12668120861053467, -0.009243384934961796, 0.39362725615501404, 0.27990055084228516, 0.43708765506744385, 0.22421132028102875, -0.5470913052558899, 0.538102388381958, -0.5511608719825745, -0.45348188281059265, -0.002792558865621686, -0.9808134436607361, -0.6251452565193176, -0.7789844274520874, -0.5032529234886169, -0.6398763060569763, -0.007692558225244284, 1.1486235857009888, 0.6646891236305237, -0.864305853843689, -0.32822519540786743, 0.22882294654846191, 0.15599779784679413, -0.48474225401878357, -0.30381113290786743, 0.6277332901954651, 0.01743951626121998, -0.7527666687965393, 0.16259296238422394, -0.03626568615436554, -0.21609126031398773, 0.009253226220607758, -0.01823829673230648, -0.6338094472885132, -0.05833127722144127, 0.5103244185447693, 0.12317605316638947, -0.5918319821357727, -0.21282032132148743, 0.04685987904667854, -0.10735445469617844, 0.1515292525291443, 0.3611583411693573, -0.517554521560669, 0.4131353199481964, 0.5327659249305725, 0.13434912264347076, 0.2669082581996918, 0.1458970010280609, 0.18788884580135345, -0.7185459733009338, 0.2729555070400238, 0.1393546313047409, 0.5796768069267273, 0.4381798803806305, -0.2506859004497528, 0.6083644032478333, 0.6586374640464783, -0.23566684126853943, -0.6570068597793579, -0.015477919019758701, -1.1958097219467163, -0.3183823525905609, 1.2629854679107666, -0.11854013055562973, -0.2675642669200897, -0.1956614851951599, -0.5134746432304382, 0.3529885411262512, -0.6422983407974243, 0.4101513624191284, 0.972646176815033, -0.16326452791690826, -0.003417235566303134, -0.4187644422054291, 0.5436623096466064, 0.23065640032291412, -0.7344213724136353, 0.10190804302692413, 0.58192378282547, 0.34129011631011963, 0.4848068058490753, 0.7492363452911377, -0.22680418193340302, -0.1609782874584198, -0.007265132386237383, 0.51389479637146, -0.07443694025278091, -0.21590659022331238, 0.09629064053297043, 0.24334189295768738, -0.08717300742864609, -0.36170175671577454 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
tiiuae/falcon-refinedweb
tiiuae
2023-06-20T12:38:07Z
9,158
599
null
[ "task_categories:text-generation", "size_categories:100B<n<1T", "language:en", "license:odc-by", "arxiv:2306.01116", "arxiv:2203.15556", "arxiv:2107.06499", "arxiv:2104.08758", "arxiv:2109.07445", "arxiv:1911.00359", "arxiv:2112.11446", "doi:10.57967/hf/0737", "region:us" ]
2023-06-20T12:38:07Z
2023-05-07T14:57:27.000Z
2023-05-07T14:57:27
--- dataset_info: features: - name: content dtype: string - name: url dtype: string - name: timestamp dtype: timestamp[s] - name: dump dtype: string - name: segment dtype: string - name: image_urls sequence: sequence: string splits: - name: train num_bytes: 2766953721769 num_examples: 968000015 download_size: 466888198663 dataset_size: 2766953721769 license: odc-by task_categories: - text-generation language: - en pretty_name: Falcon RefinedWeb size_categories: - 100B<n<1T --- # 📀 Falcon RefinedWeb **Falcon RefinedWeb is a massive English web dataset built by [TII](https://www.tii.ae) and released under an ODC-By 1.0 license.** See the 📓 [paper on arXiv](https://arxiv.org/abs/2306.01116) for more details. RefinedWeb is built through stringent filtering and large-scale deduplication of CommonCrawl; we found models trained on RefinedWeb to achieve performance in-line or better than models trained on curated datasets, while only relying on web data. RefinedWeb is also "multimodal-friendly": it contains links and alt texts for images in processed samples. This public extract should contain 500-650GT depending on the tokenizer you use, and can be enhanced with the curated corpora of your choosing. This public extract is about ~500GB to download, requiring 2.8TB of local storage once unpacked. ```python from datasets import load_dataset rw = load_dataset("tiiuae/falcon-refinedweb") ``` RefinedWeb is the main dataset we have used for training the [Falcon LLM](https://falconllm.tii.ae) models: * It was used in conjunction with a curated corpora to train Falcon-[7B](https://huggingface.co/tiiuae/falcon-7b)/[40B](https://huggingface.co/tiiuae/falcon-40b), two state-of-the-art open-source models. * It was also used to train Falcon-RW-[1B](https://huggingface.co/tiiuae/falcon-rw-1b)/[7B](https://huggingface.co/tiiuae/falcon-rw-7b), two models trained on 350 billion tokens of RefinedWeb alone to demonstrate its quality compared to curated corpora. # Dataset card for Falcon RefinedWeb ## Dataset Description * **Homepage:** [falconllm.tii.ae](falconllm.tii.ae) * **Paper:** [https://arxiv.org/abs/2306.01116](https://arxiv.org/abs/2306.01116) * **Point of Contact:** [falconllm@tii.ae](mailto:falconllm@tii.ae) ### Dataset Summary Falcon RefinedWeb was created to serve as an English large-scale dataset for the pretraining of large language models. It may be used on its own, or augmented with curated sources (e.g., Wikipedia, StackOverflow). It was built on top of CommonCrawl, leveraging stringent filtering and extensive deduplication. ### Supported Tasks and Leaderboards RefinedWeb is intended to be primarly used as a pretraining dataset for large language models. Practitioners may leverage it for upstream evaluation with a validation loss, but we do not provide any canonical split. ### Languages RefinedWeb primarly contains English. ## Dataset Structure ### Data Instances Each data instance corresponds to an individual web page which has been crawled, processed, and deduplicated against all other instances. This public extract of RefinedWeb contains about 1B instances (968M individual web pages), for a total of 2.8TB of clean text data. ### Data Fields * `content`: the processed and cleaned text contained in the page; * `url`: the url of the webpage crawled to produce the sample; * `timestamp`: timestamp of when the webpage was crawled by CommonCrawl; * `dump`: the CommonCrawl dump the sample is a part of; * `segment`: the CommonCrawl segment the sample is a part of; * `image_urls`: a list of elements in the type [`image_url`, `image_alt_text`] for all the images found in the content of the sample. ### Data Splits We do not provide any canonical splits for RefinedWeb. ## Dataset Creation ### Curation Rationale Falcon RefinedWeb is built on-top of [CommonCrawl](https://commoncrawl.org), using the Macrodata Refinement Pipeline, which combines content extraction, filtering heuristics, and deduplication. In designing RefinedWeb, we abided to the following philosophy: * (1) **Scale first.** We intend MDR to produce datasets to be used to train 40-200B parameters models, thus requiring trillions of tokens [(Hoffmann et al., 2022)](https://arxiv.org/abs/2203.15556). For English-only RefinedWeb, we target a size of 3-6 trillion tokens. Specifically, we eschew any labour intensive human curation process, and focus on CommonCrawl instead of disparate single-domain sources. * (2) **Strict deduplication.** Inspired by the work of [Lee et al., 2021](https://arxiv.org/abs/2107.06499), which demonstrated the value of deduplication for large language models, we implement a rigorous deduplication pipeline. We combine both exact and fuzzy deduplication, and use strict settings leading to removal rates far higher than others datasets have reported. * (3) **Neutral filtering.** To avoid introducing further undesirable biases into the model, we avoid using ML-based filtering outside of language identification ([Dodge et al., 2021](https://arxiv.org/abs/2104.08758); [Welbl et al., 2021](https://arxiv.org/abs/2109.07445)) . We stick to simple rules and heuristics, and use only URL filtering for adult content. During its development, we iterated on RefinedWeb by measuring the zero-shot performance of models trained on development version of the dataset. Our main goal was to maximize the performance obtained, bridging the gap between curated and web data. We also manually audited samples to identify potential filtering improvements. ### Source Data RefinedWeb is built from [CommonCrawl](https://commoncrawl.org) dumps. These dumps are constructed from crawling publicly available web pages. ### Data Collection and Preprocessing We applied extensive preprocessing and cleaning of the data, using our Macrodata Refinement Pipeline. We first filter URLs to remove adult content using a blocklist and a score system, we then use `trafilatura` to extract content from pages, and perform language identification with the `fastText` classifier from CCNet ([Wenzek et al., 2019](https://arxiv.org/abs/1911.00359)). After this first preprocessing stage, we filter data using heuristics from MassiveWeb ([Rae et al., 2021](https://arxiv.org/abs/2112.11446)), and our own line-wise corrections. Finally, we run extensive deduplication, removing URLs revisited across dumps and performing subsequently fuzzy and exact substring deduplication. ### Annotations We provide automatically collected annotations for the source `url`, `timestamp` of the crawl, original CommonCrawl `dump` and `segment` in which the document was found, and `image_urls` contained in the page. ### Personal and Sensitive Information As RefinedWeb is built upon publicly available web pages, it may contain sensitive information such as emails, phone numbers, or IP addresses. We believe that deduplication may have helped reduced the prevalence of PII in the dataset, but practitioners working with RefinedWeb should take care. ## Considerations for Using the Data ### Social Impact of Dataset With the open-source release of Falcon RefinedWeb, we aim to increase access to high-quality web data, which has typically been held private by model developers. We believe this release will in turn improve the accessibility and the spread of performant large language models. ### Discussion of Biases As toxic or biased data is prevalent on the internet, it is likely our dataset contains such content. Notably, using the Perspective API, we estimated the prevalence of toxic content in the dataset to be similar to The Pile. ### Other Known Limitations Despite our best efforts to filter content that does not qualify as natural language, and to deduplicate documents, our pipeline may let through documents that may be considered as errors or redundant. ## Additional Information ### Licensing Information This public extract is made available under an [ODC-By 1.0](https://opendatacommons.org/licenses/by/1-0/) license; users should also abide to the [CommonCrawl ToU](https://commoncrawl.org/terms-of-use/). ### Citation Information ``` @article{refinedweb, title={The {R}efined{W}eb dataset for {F}alcon {LLM}: outperforming curated corpora with web data, and web data only}, author={Guilherme Penedo and Quentin Malartic and Daniel Hesslow and Ruxandra Cojocaru and Alessandro Cappelli and Hamza Alobeidli and Baptiste Pannier and Ebtesam Almazrouei and Julien Launay}, journal={arXiv preprint arXiv:2306.01116}, eprint={2306.01116}, eprinttype = {arXiv}, url={https://arxiv.org/abs/2306.01116}, year={2023} } ``` ### Opt-out request RefinedWeb is based on [CommonCrawl](https://commoncrawl.org/). Their crawler honors opt-out requests in the `robots.txt`, see the [CC FAQ](https://commoncrawl.org/big-picture/frequently-asked-questions/) for details. To remove a document from RefinedWeb, please message falconllm@tii.ae. ### Contact falconllm@tii.ae
[ -0.6199085712432861, -0.839062511920929, 0.015900034457445145, 0.1529179811477661, -0.2260630875825882, 0.11768647283315659, -0.35334348678588867, -0.627932071685791, 0.28187087178230286, 0.46153753995895386, -0.665662407875061, -0.7432249188423157, -0.4848026931285858, 0.38049575686454773, -0.5409712195396423, 0.9297771453857422, 0.2146144062280655, -0.17936457693576813, 0.0691697895526886, 0.012433054856956005, 0.15032246708869934, -0.4549106955528259, -0.6841911673545837, 0.1935017704963684, 0.5833362936973572, 0.4732239544391632, 0.5630936026573181, 0.9272410273551941, 0.7558174729347229, 0.23885145783424377, -0.14251068234443665, 0.3817784786224365, -0.788570761680603, -0.17927086353302002, -0.43064507842063904, -0.0962623655796051, -0.452187716960907, 0.2585153877735138, 0.4110763370990753, 0.9486240148544312, -0.2459993064403534, 0.31256362795829773, 0.19397355616092682, 0.7578566074371338, -0.8499917984008789, 0.021923739463090897, -0.6759360432624817, -0.09651627391576767, -0.4769018888473511, 0.09989643841981888, -0.3340964913368225, -0.22820670902729034, -0.23830102384090424, -0.8093721270561218, 0.2532309889793396, 0.012093569152057171, 0.9928474426269531, 0.07348250597715378, -0.5661541223526001, -0.27958327531814575, -0.5190602540969849, 0.90977942943573, -0.6521323323249817, 0.6394699811935425, 0.44586074352264404, 0.037896573543548584, -0.34493380784988403, -1.1489838361740112, -0.5656024217605591, -0.11136031895875931, -0.0496014840900898, 0.18801970779895782, -0.3511863648891449, 0.09885533899068832, 0.33563193678855896, 0.5202876329421997, -0.7018406391143799, 0.21476048231124878, -0.6580754518508911, -0.2856263816356659, 0.7886563539505005, -0.05076632276177406, 0.23349277675151825, -0.1755518615245819, -0.30921709537506104, -0.16539019346237183, -0.5435912013053894, 0.23733732104301453, 0.5718043446540833, 0.5210987329483032, -0.15954487025737762, 0.42014172673225403, -0.4460080862045288, 0.46651116013526917, 0.24432294070720673, -0.31153976917266846, 0.4766864776611328, -0.44903668761253357, -0.01975824683904648, -0.2551107108592987, 0.8432947993278503, 0.582829475402832, 0.3169890344142914, -0.19410958886146545, -0.032195333391427994, 0.001626492477953434, 0.14829841256141663, -1.0578891038894653, -0.0029805446974933147, 0.34199100732803345, -0.6299020648002625, -0.209218829870224, 0.4376223087310791, -0.8946636319160461, -0.1256137639284134, -0.20528019964694977, -0.17288579046726227, -0.25599145889282227, -0.4049539864063263, 0.23845113813877106, -0.25608929991722107, 0.10357632488012314, -0.011746825650334358, -0.6516159176826477, 0.4984103739261627, 0.7137409448623657, 0.6088332533836365, -0.42870858311653137, -0.36426210403442383, -0.5506340265274048, 0.1347675919532776, -0.13661254942417145, 0.5394785404205322, -0.6838719844818115, -0.3335390090942383, 0.12414409965276718, 0.39402276277542114, 0.12186525762081146, -0.5149726867675781, 0.8254067897796631, -0.49959519505500793, 0.12370487302541733, -0.27493712306022644, -0.3813796639442444, -0.2574331760406494, 0.24042929708957672, -0.8455905914306641, 0.875420093536377, 0.03721926733851433, -0.8400876522064209, 0.3447386622428894, -0.5973384380340576, -0.5606939196586609, 0.015615087002515793, 0.24920958280563354, 0.015345322899520397, -0.21759378910064697, 0.28780144453048706, 0.43349993228912354, -0.33789873123168945, 0.45061761140823364, -0.5662044286727905, -0.5231448411941528, -0.04135766625404358, -0.36857736110687256, 0.9291666746139526, 0.813050389289856, -0.23148506879806519, -0.2663549482822418, -1.0740176439285278, 0.04902903363108635, 0.09965277463197708, -0.3507136404514313, -0.31794309616088867, -0.0020698709413409233, 0.3129044473171234, 0.18292123079299927, 0.3359651267528534, -0.5898474454879761, 0.31289583444595337, -0.31735724210739136, 0.4978739619255066, 0.4785817861557007, 0.08343174308538437, 0.3301110863685608, -0.11128166317939758, 0.6084296703338623, 0.11618572473526001, 0.4139285683631897, 0.07339125126600266, -0.2029467076063156, -0.7480542659759521, -0.33198222517967224, 0.41177529096603394, 0.4380123019218445, -0.39366599917411804, 0.4825078248977661, -0.46600404381752014, -0.5884683728218079, -0.4857427477836609, 0.10301810503005981, 0.473060667514801, 0.30894869565963745, 0.5116339921951294, -0.29601746797561646, -0.683990478515625, -1.03890061378479, -0.1047726422548294, 0.1300758570432663, 0.012169606983661652, 0.2334040254354477, 0.4998253881931305, -0.5511096715927124, 0.7511721253395081, -0.6424985527992249, -0.30218634009361267, -0.09288167208433151, 0.010136951692402363, 0.12447124719619751, 0.5470772981643677, 0.520280122756958, -0.9675666689872742, -0.49668800830841064, -0.156911700963974, -0.5291314721107483, -0.20381829142570496, 0.06573084741830826, -0.0998249351978302, 0.24945251643657684, 0.5282880663871765, -0.4931350350379944, 0.18982882797718048, 0.6132965683937073, -0.13321563601493835, 0.4048883318901062, 0.09001006186008453, 0.21150189638137817, -1.1480817794799805, 0.4216342866420746, 0.005452231038361788, -0.028984813019633293, -0.3457661271095276, 0.46783363819122314, -0.017250914126634598, -0.05545191094279289, -0.49383533000946045, 0.6106328368186951, -0.5055298209190369, 0.29246896505355835, -0.004136119037866592, 0.2570633888244629, 0.10463128983974457, 0.5773729681968689, -0.1675918847322464, 0.8866729140281677, 0.2785743474960327, -0.6277933716773987, 0.0226847305893898, 0.21661680936813354, -0.027528757229447365, 0.26616963744163513, -0.4958046078681946, 0.1888643503189087, 0.0005916032823733985, 0.25683289766311646, -0.7683317065238953, -0.26944682002067566, 0.11932441592216492, -0.4060005843639374, 0.15098558366298676, -0.2696801424026489, -0.33174318075180054, -0.5203313231468201, -0.5948565006256104, 0.02525338903069496, 0.3726799190044403, -0.4601668119430542, 0.37906521558761597, 0.4796372056007385, -0.10644956678152084, -0.8888426423072815, -0.8055853247642517, 0.18080011010169983, -0.013592435978353024, -0.6290537714958191, 0.44429752230644226, -0.22920407354831696, -0.37092018127441406, 0.1271643042564392, -0.008818685077130795, -0.30503082275390625, 0.213010773062706, 0.2691069543361664, -0.019728057086467743, -0.04411694407463074, -0.054473504424095154, 0.0421953909099102, 0.08228375762701035, -0.13143505156040192, -0.13141921162605286, 0.6968478560447693, -0.22559648752212524, -0.28088292479515076, -0.3559947907924652, 0.5316062569618225, 0.4552995264530182, -0.4791297912597656, 0.6016598343849182, 0.7705432772636414, -0.27717095613479614, -0.009546916000545025, -0.598825991153717, -0.09191728383302689, -0.5277089476585388, 0.4227917194366455, -0.2793150544166565, -0.81488436460495, 0.6385292410850525, 0.06643491238355637, 0.14748844504356384, 0.6825056672096252, 0.10907324403524399, -0.020193396136164665, 1.0773320198059082, 0.4996609091758728, -0.12746940553188324, 0.3459019958972931, -0.6711558103561401, -0.032434068620204926, -0.7466516494750977, -0.2673526704311371, -0.6746591925621033, -0.41131168603897095, -1.024057388305664, -0.08555704355239868, -0.21864189207553864, 0.34611231088638306, -0.37444642186164856, 0.23063798248767853, -0.4852239787578583, 0.46007993817329407, 0.7119093537330627, 0.012463499791920185, 0.4421985447406769, 0.07477840036153793, -0.2242436558008194, -0.025876536965370178, -0.4054741859436035, -0.6546549797058105, 1.3014299869537354, 0.05489315092563629, 0.6848280429840088, 0.07924015820026398, 0.8185736536979675, 0.2531086504459381, 0.08776590973138809, -0.6293084621429443, 0.6566517353057861, -0.5893061757087708, -0.7088807225227356, 0.04428351670503616, -0.3794207274913788, -1.226862907409668, -0.020611628890037537, -0.16913080215454102, -0.5097563862800598, 0.18129590153694153, -0.03907299041748047, -0.06653434783220291, 0.28515198826789856, -0.8101298213005066, 0.603714108467102, -0.0703699141740799, -0.6361304521560669, -0.30383971333503723, -0.6267358660697937, 0.35937151312828064, -0.09083463996648788, 0.42972129583358765, 0.20725634694099426, -0.06744907051324844, 0.7682508826255798, -0.4522061347961426, 0.7606139183044434, -0.22602950036525726, 0.1582084447145462, 0.24089986085891724, -0.06056249886751175, 0.5824326872825623, -0.08429576456546783, -0.15258704125881195, 0.4278683066368103, 0.07840640842914581, -0.4383152425289154, -0.21889367699623108, 0.8515607118606567, -0.7641591429710388, -0.5918647050857544, -0.45449575781822205, -0.34743425250053406, -0.12550915777683258, 0.5208839178085327, 0.30678316950798035, 0.4768717885017395, -0.21506915986537933, 0.6513766050338745, 0.3915640413761139, -0.26240673661231995, 0.582112729549408, 0.6642900109291077, -0.24174295365810394, -0.48919543623924255, 0.6715980768203735, 0.2384912520647049, 0.061193060129880905, 0.23970159888267517, 0.0388692207634449, -0.3082125782966614, -0.89089035987854, -0.2131492793560028, 0.2316252440214157, -0.6068859100341797, -0.20994555950164795, -0.8741750121116638, -0.194993793964386, -0.6076041460037231, -0.10093270987272263, -0.27217012643814087, -0.4278563857078552, -0.41474446654319763, -0.17321127653121948, 0.32249462604522705, 0.5531306266784668, -0.1954609602689743, 0.2573171854019165, -0.8705795407295227, 0.3521330654621124, 0.048834338784217834, 0.4578176438808441, 0.07722559571266174, -0.42398911714553833, -0.12008451670408249, 0.5802582502365112, -0.3515743017196655, -0.3143826127052307, 0.3787154257297516, 0.3961489200592041, 0.5818924903869629, 0.6468415260314941, 0.27581730484962463, 0.9838671684265137, -0.30735740065574646, 1.0284143686294556, -0.022628191858530045, -0.6342734098434448, 0.4284440279006958, -0.5261356234550476, 0.20136040449142456, 0.9588900804519653, 0.7032595872879028, -0.5839184522628784, -0.47091856598854065, -0.7358232736587524, -0.9629036784172058, 0.5982930064201355, 0.029896261170506477, 0.21600238978862762, -0.27517932653427124, 0.3442361354827881, 0.13297167420387268, 0.15765805542469025, -0.6042329668998718, -0.3236719071865082, -0.08653107285499573, -0.28134864568710327, -0.019798079505562782, -0.2334834635257721, 0.07093790173530579, -0.3694242835044861, 0.7828934192657471, 0.03549129143357277, -0.07608499377965927, 0.10599938780069351, -0.4803524315357208, 0.025878917425870895, 0.24159087240695953, 0.4377247393131256, 0.7339169979095459, -0.38892531394958496, 0.10891116410493851, -0.07294672727584839, -1.071498990058899, -0.07781370729207993, 0.34404635429382324, -0.27020764350891113, -0.3179685175418854, 0.40250158309936523, 0.39379027485847473, -0.007691463455557823, -0.8126464486122131, 0.4584459066390991, -0.0012098695151507854, -0.20321325957775116, -0.2796775996685028, 0.1526309847831726, 0.10064209997653961, 0.09501632302999496, 0.5736597776412964, 0.0714278295636177, 0.4370737671852112, -0.5809798240661621, 0.35866355895996094, 0.28238070011138916, -0.12894012033939362, -0.3409234881401062, 0.5891903042793274, 0.36275818943977356, -0.21719475090503693, 0.8643357157707214, -0.4754030108451843, -0.3613191843032837, 0.4954057037830353, 0.507672905921936, 0.7849356532096863, 0.12446513772010803, 0.13411198556423187, 0.6406785249710083, 0.21445605158805847, -0.04333589971065521, 0.37852492928504944, 0.13562709093093872, -0.6558675765991211, -0.43288618326187134, -0.8095490336418152, -0.21632729470729828, 0.4216301441192627, -0.7835898399353027, 0.2962799072265625, -0.564301609992981, -0.13455408811569214, -0.03700079396367073, 0.510296106338501, -0.7643234133720398, 0.24038252234458923, 0.005999130196869373, 1.0495727062225342, -0.7101283669471741, 0.7142888903617859, 0.4896133244037628, -0.9520557522773743, -0.9252586960792542, 0.06269259750843048, 0.033957015722990036, -0.6605883836746216, 0.7046406865119934, 0.2918207347393036, -0.21426108479499817, 0.25543543696403503, -0.7251752614974976, -0.8628605604171753, 0.965090811252594, 0.31358808279037476, -0.8038817048072815, 0.034814801067113876, 0.17012423276901245, 0.6035555005073547, -0.16808924078941345, 0.2144847810268402, 0.3951578736305237, 0.6326367855072021, 0.14318710565567017, -0.8591078519821167, 0.10111013799905777, -0.5497325658798218, -0.1971588283777237, -0.009701237082481384, -0.8600950837135315, 0.9090811014175415, -0.14445336163043976, -0.3550630509853363, -0.09534988552331924, 0.3780803978443146, 0.12124484777450562, 0.1662977933883667, 0.4285149872303009, 0.7314819693565369, 0.9616658687591553, 0.010621171444654465, 0.9641696214675903, -0.41051992774009705, 0.24223914742469788, 1.0788177251815796, -0.2262703776359558, 1.0153579711914062, 0.43155938386917114, -0.30733928084373474, 0.5952763557434082, 0.6827178597450256, -0.2320225089788437, 0.5087114572525024, -0.010365555994212627, 0.21493880450725555, -0.06652703881263733, -0.2653978765010834, -0.40665945410728455, 0.6236535310745239, 0.0591946505010128, -0.34473466873168945, -0.2027769833803177, 0.029759922996163368, 0.30955395102500916, 0.13024663925170898, -0.2446487694978714, 0.6463431715965271, -0.060634151101112366, -0.6905515193939209, 0.9102085828781128, 0.053034767508506775, 1.0955414772033691, -0.7250866293907166, 0.09837599098682404, -0.5503429770469666, 0.2772088348865509, -0.4352947175502777, -0.5689045190811157, 0.31457316875457764, 0.16107527911663055, -0.2506396174430847, -0.2233099341392517, 0.6002582907676697, -0.4376283288002014, -0.5463765859603882, 0.35593509674072266, 0.2776373624801636, 0.21429035067558289, -0.1987054944038391, -0.7299817800521851, 0.13477525115013123, 0.09804969280958176, -0.4349716901779175, 0.29228758811950684, 0.2719244956970215, -0.1478712260723114, 0.7566866874694824, 0.9617757797241211, 0.135035440325737, -0.05364393815398216, 0.18370643258094788, 0.9190291166305542, -0.7752291560173035, -0.34510377049446106, -0.576095461845398, 0.508034348487854, -0.27723434567451477, -0.3043530285358429, 0.7642560601234436, 1.0089443922042847, 1.1069514751434326, 0.04358859360218048, 0.7837202548980713, -0.1964101791381836, 0.5759838819503784, -0.3491934835910797, 0.784958004951477, -0.8302357196807861, 0.09275082498788834, -0.22936926782131195, -0.8664276003837585, -0.2215680181980133, 0.36715567111968994, 0.06315245479345322, 0.030230164527893066, 0.758604109287262, 0.9892302751541138, -0.27314281463623047, 0.024135271087288857, -0.008425523526966572, 0.2986530661582947, 0.37802672386169434, 0.3632908761501312, 0.5262491703033447, -0.46845945715904236, 0.7795619368553162, -0.3829531967639923, -0.054942451417446136, -0.1575690358877182, -0.9223154783248901, -0.7083494663238525, -0.658167839050293, -0.26260140538215637, -0.2940784692764282, 0.02561635710299015, 1.0003211498260498, 0.550735592842102, -0.9970582723617554, -0.1597520411014557, -0.04934551566839218, -0.25430798530578613, -0.29821157455444336, -0.23988163471221924, 0.4080807566642761, -0.21028591692447662, -0.8941880464553833, 0.198926642537117, -0.10374738276004791, -0.029006557539105415, -0.22756147384643555, 0.024153027683496475, -0.5720605254173279, -0.08360711485147476, 0.6134902834892273, 0.06969776004552841, -0.6175381541252136, -0.23805201053619385, 0.32063212990760803, -0.2706281840801239, -0.09018027782440186, 0.31168124079704285, -0.656488299369812, 0.12002807855606079, 0.33487576246261597, 0.4481126368045807, 0.6397310495376587, 0.06468257308006287, 0.23923632502555847, -0.6571770906448364, 0.38596028089523315, 0.19305430352687836, 0.32571297883987427, 0.26437804102897644, -0.3083689212799072, 0.744912326335907, 0.2827126085758209, -0.21622687578201294, -0.8485172390937805, -0.04812135547399521, -1.2442278861999512, -0.45991143584251404, 1.4562946557998657, -0.13727028667926788, -0.12478041648864746, -0.1708669513463974, -0.1271723508834839, 0.25780704617500305, -0.5019962191581726, 0.6271131038665771, 0.7325192093849182, 0.4521184265613556, 0.04984109848737717, -0.3610859513282776, 0.3794291913509369, -0.1788853257894516, -0.714023232460022, 0.0737943947315216, 0.6535463929176331, 0.5524207949638367, 0.13167288899421692, 0.4199163019657135, -0.11106699705123901, 0.010646272450685501, -0.08118811994791031, 0.2124747484922409, -0.49423253536224365, -0.14570508897304535, -0.10936038941144943, 0.31132423877716064, -0.17119580507278442, -0.08516497910022736 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
argilla/gutenberg_spacy-ner
argilla
2023-06-28T06:34:37Z
9,008
4
null
[ "language:en", "region:us" ]
2023-06-28T06:34:37Z
2022-10-07T13:22:03.000Z
2022-10-07T13:22:03
--- dataset_info: features: - name: text dtype: string - name: tokens sequence: string - name: prediction list: - name: end dtype: int64 - name: label dtype: string - name: score dtype: float64 - name: start dtype: int64 - name: prediction_agent dtype: string - name: annotation dtype: 'null' - name: annotation_agent dtype: 'null' - name: id dtype: string - name: metadata dtype: 'null' - name: status dtype: string - name: event_timestamp dtype: 'null' - name: metrics struct: - name: annotated struct: - name: mentions sequence: 'null' - name: predicted struct: - name: mentions list: - name: capitalness dtype: string - name: chars_length dtype: int64 - name: density dtype: float64 - name: label dtype: string - name: score dtype: float64 - name: tokens_length dtype: int64 - name: value dtype: string - name: tokens list: - name: capitalness dtype: string - name: char_end dtype: int64 - name: char_start dtype: int64 - name: custom dtype: 'null' - name: idx dtype: int64 - name: length dtype: int64 - name: score dtype: 'null' - name: tag dtype: string - name: value dtype: string - name: tokens_length dtype: int64 - name: vectors struct: - name: mini-lm-sentence-transformers sequence: float64 splits: - name: train num_bytes: 1426424 num_examples: 100 download_size: 389794 dataset_size: 1426424 language: - en --- # Dataset Card for "gutenberg_spacy-ner" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.7227951288223267, -0.4148986339569092, 0.16584022343158722, 0.10270228981971741, -0.08428756892681122, -0.2291155606508255, 0.07563434541225433, -0.09071241319179535, 0.6199498176574707, 0.6326906681060791, -0.751492977142334, -0.8837321996688843, -0.7967386841773987, -0.15279045701026917, -0.3293303847312927, 1.3988282680511475, 0.049339719116687775, 0.15976110100746155, -0.22269928455352783, -0.07587189972400665, -0.21228058636188507, -0.6332734823226929, -0.567840576171875, -0.6751575469970703, 0.9936295747756958, 0.5965364575386047, 0.3091164827346802, 0.4378601014614105, 0.6186771392822266, 0.16894619166851044, -0.06378708779811859, -0.23394960165023804, -0.3175593316555023, 0.015770534053444862, -0.35980892181396484, -0.23423424363136292, -1.1562639474868774, -0.1503165066242218, 0.5521213412284851, 0.5744304656982422, -0.020735429599881172, 0.7910548448562622, -0.017271457239985466, 0.9094578623771667, -0.2863302230834961, 0.33850163221359253, 0.07886683940887451, -0.12311850488185883, -0.6284597516059875, -0.2683420479297638, 0.012596244923770428, -0.5160902142524719, 0.10536809265613556, -1.136812448501587, 0.3527168929576874, 0.02876622974872589, 0.897442638874054, 0.004870827775448561, 0.04487958177924156, -0.29851019382476807, -0.4649580717086792, -0.055599819868803024, -0.20906241238117218, 0.19070535898208618, 0.7036208510398865, 0.2694077491760254, -0.0037067716475576162, -0.5938193798065186, -0.3566247820854187, 0.16473296284675598, -0.0961671695113182, 0.26713383197784424, -0.2380167543888092, -0.030221853405237198, 0.6510229110717773, 0.6460286974906921, -0.8281070590019226, -0.3075377643108368, -0.6141201257705688, -0.32465267181396484, 0.5934491753578186, 0.12581156194210052, 0.2782462537288666, -0.1491718292236328, 0.13574406504631042, -0.21101252734661102, -0.6400803923606873, -0.36690184473991394, 0.6185700297355652, 0.26478832960128784, -1.0267176628112793, 0.7420557141304016, -0.056368637830019, 0.6660431623458862, 0.22934256494045258, 0.8216150999069214, 0.7153105735778809, -0.1743275225162506, -0.05094592645764351, -0.12559840083122253, 0.29723718762397766, 0.45689302682876587, 0.42259925603866577, -0.0322151854634285, -0.12458669394254684, 0.044860318303108215, 0.1523199826478958, -1.1227883100509644, -0.717907190322876, 0.11124297976493835, -0.5922901034355164, -0.13173127174377441, 0.32001036405563354, -1.0836597681045532, -0.5266533493995667, -0.38147494196891785, 0.24708496034145355, -0.05253835394978523, -0.7688214778900146, -0.16484548151493073, -0.9051931500434875, 0.3436899185180664, 0.06896640360355377, -0.8653588891029358, 0.47489213943481445, 0.7629442811012268, 0.6997725963592529, 0.4251385033130646, -0.2310047447681427, -0.7379291653633118, 0.10501968860626221, -0.13212274014949799, 1.1492319107055664, -0.5481998324394226, -0.47535064816474915, 0.21659542620182037, 0.530742883682251, 0.24271169304847717, -0.21317091584205627, 0.7947192788124084, -0.28336644172668457, -0.08543334901332855, -0.7393665313720703, -0.7376725077629089, -0.06495551764965057, 0.5155759453773499, -1.1592754125595093, 1.053769826889038, 0.4848840534687042, -0.9433074593544006, 0.4064911901950836, -1.1157182455062866, -0.4683888256549835, 0.6576094627380371, 0.01734817586839199, -0.36601129174232483, 0.4995778501033783, -0.10282234847545624, 0.5227860808372498, 0.01402471587061882, 0.3548228442668915, -0.7614187002182007, -0.20630423724651337, 0.21973001956939697, 0.10707791149616241, 0.5529505610466003, 0.14304068684577942, 0.3285064101219177, 0.05260678008198738, -1.0391453504562378, -0.3755124509334564, 0.24069282412528992, -0.044369738548994064, -0.3860635757446289, -0.44448935985565186, 0.8051932454109192, -0.03566882014274597, 0.3718731999397278, -0.37900421023368835, 0.5182257294654846, -0.18783549964427948, -0.036186181008815765, 0.7085703015327454, 0.15774591267108917, 0.4991202652454376, -0.6385860443115234, 0.5351029634475708, -0.2702372670173645, 0.060844775289297104, -0.03545660898089409, -0.35436898469924927, -0.723099946975708, 0.21875056624412537, 0.6983253955841064, 0.6495068669319153, -0.5370649099349976, 0.7944595813751221, -0.001175279845483601, -0.7836595773696899, -0.2583187520503998, -0.1622854322195053, 0.31406643986701965, 0.3213707506656647, 0.2368103414773941, -0.4143792986869812, -0.7690812349319458, -0.6935124397277832, 0.16796869039535522, 0.07404200732707977, 0.07747723162174225, 0.34546032547950745, 0.9493603110313416, -0.24583615362644196, 0.4462672173976898, -0.6755259037017822, -0.24476835131645203, -0.1512397676706314, -0.07804090529680252, 0.39698633551597595, 0.7813552021980286, 0.7044023871421814, -0.6022480726242065, -0.396664559841156, -0.26062238216400146, -0.3978928327560425, -0.3269450068473816, 0.3822425901889801, -0.48746979236602783, -0.020551612600684166, 0.016532519832253456, -0.38455459475517273, 0.7623435854911804, 0.9496389031410217, -0.704746663570404, 0.3682899475097656, -0.14188188314437866, 0.16789275407791138, -1.41169011592865, 0.594857931137085, 0.20647934079170227, -0.1202901229262352, -0.6114208698272705, -0.1718914955854416, 0.02669641748070717, -0.21837474405765533, 0.09136645495891571, 0.9061439037322998, -0.49013614654541016, -0.10131517052650452, -0.25153863430023193, 0.01848938688635826, 0.10508780926465988, 0.1232038214802742, 0.401540070772171, 0.47683656215667725, 1.118851900100708, -0.43885481357574463, 0.6087419986724854, 0.5869939923286438, 0.07782459259033203, 1.1785739660263062, -0.8266698718070984, 0.008403182961046696, -0.18632420897483826, 0.3837774395942688, -0.6545628309249878, -0.629733145236969, 0.5819296836853027, -0.5663018822669983, 0.5794162750244141, -0.7093403935432434, -0.8329131007194519, -0.5117185115814209, -0.10007017850875854, 0.47711673378944397, 0.3924493193626404, -0.5695581436157227, 0.4400879144668579, 0.7283334732055664, -0.198261559009552, -0.09263290464878082, -1.0202666521072388, 0.057090941816568375, -0.20118728280067444, -0.12334646284580231, 0.4959636330604553, -0.4586280286312103, 0.12891651690006256, 0.021127788349986076, 0.2758163511753082, -0.15835069119930267, -0.23994149267673492, 0.6512925624847412, 0.19059084355831146, -0.05027316138148308, 0.49030086398124695, 0.10198061168193817, -1.042145013809204, -0.0801670253276825, -0.3129696249961853, 0.533380925655365, -0.1603013426065445, 0.018393542617559433, -0.423794150352478, 0.5915549397468567, 0.03903011605143547, -0.10287639498710632, 0.34007254242897034, 0.9531458020210266, -0.8542749285697937, -0.08475904166698456, -0.5390175580978394, -0.1198192909359932, -0.43424147367477417, 0.0072704185731709, -0.2441641241312027, -0.8272116780281067, 0.5464997291564941, -0.23472429811954498, -0.05156293511390686, 0.84148770570755, 0.8289424180984497, 0.06975799053907394, 0.32416296005249023, 0.7160926461219788, -0.3521476686000824, 0.4463548958301544, -0.45510590076446533, -0.4737111032009125, -0.8280964493751526, -0.31561267375946045, -0.7081087827682495, -0.513077974319458, -0.7076236009597778, -0.2431638240814209, -0.16904211044311523, -0.10461965203285217, -0.22494909167289734, 0.8980699777603149, -0.9676575660705566, 0.3104221522808075, 0.4955765902996063, -0.09285479038953781, 0.01188382226973772, -0.04059590399265289, 0.23246216773986816, 0.21807444095611572, -0.6641370058059692, -0.42877742648124695, 1.1736096143722534, 0.25300854444503784, 0.9208306670188904, 0.07066436111927032, 0.8928537368774414, 0.3283194899559021, 0.5302246809005737, -0.1849263459444046, 0.23129160702228546, 0.0392514131963253, -0.9511564373970032, 0.051292382180690765, -0.14009162783622742, -0.9572504162788391, -0.37377360463142395, -0.422608345746994, -0.5037058591842651, 0.38884273171424866, 0.5013746023178101, -0.10949854552745819, 0.1877507120370865, -0.5812203288078308, 1.1780146360397339, -0.0861603394150734, -0.017772739753127098, -0.1893402338027954, -0.5682807564735413, -0.29480770230293274, 0.3666614294052124, 0.1802573800086975, -0.25914880633354187, -0.1564912348985672, 0.9152483940124512, -0.20539993047714233, 0.9985379576683044, -0.5254560112953186, 0.04379196837544441, -0.018601076677441597, -0.09186062216758728, 0.18638065457344055, 0.41894784569740295, -0.260475218296051, 0.2355901449918747, -0.008901870809495449, -0.3766137361526489, -0.21363934874534607, 0.8343271017074585, -0.5844665765762329, 0.3948613107204437, -0.5035381317138672, -0.44159695506095886, 0.23872652649879456, 0.46843063831329346, 0.621979296207428, 1.0143884420394897, -0.7343165278434753, -0.20571359992027283, 0.706962525844574, 0.18216505646705627, 0.3554386794567108, 0.33414027094841003, -0.3485676944255829, -0.7704468965530396, 1.084611415863037, 0.4524734616279602, -0.5192554593086243, 0.4277147352695465, 0.2938289940357208, -0.17933112382888794, -0.47962507605552673, -0.734620213508606, 0.32872092723846436, -0.415122389793396, -0.44101521372795105, -0.4200607240200043, -0.34256890416145325, -0.3349032402038574, -0.5205302238464355, -0.18871445953845978, -0.6073635220527649, -0.8909591436386108, -0.6573100090026855, 1.0282280445098877, 0.6932035088539124, -0.5883128046989441, 0.5930637121200562, -0.8045364618301392, 0.415281742811203, -0.3295785188674927, 1.0216490030288696, -0.24166515469551086, -0.5107945799827576, -0.3872371315956116, -0.3922703266143799, 0.015313811600208282, -0.7714922428131104, 0.07642102986574173, 0.06042012944817543, 0.6141640543937683, 0.18369990587234497, -0.050333213061094284, 0.5379332304000854, -0.36793309450149536, 0.44876405596733093, 0.18077844381332397, -0.763598620891571, 0.6459875106811523, -0.38938871026039124, 0.46217310428619385, 0.9513426423072815, 0.43521958589553833, -0.6170920729637146, 0.003816841170191765, -1.0973132848739624, -0.7084916830062866, 0.322672039270401, -0.036622513085603714, 0.30784302949905396, 0.09689978510141373, 0.420418918132782, 0.3244219124317169, 0.2569335699081421, -0.8361404538154602, -0.6792354583740234, -0.16624212265014648, -0.2913350760936737, 0.13987305760383606, -0.43770989775657654, -0.2409096509218216, -0.5811809301376343, 0.8224514126777649, 0.016868269070982933, 0.24512745440006256, 0.20307737588882446, 0.06032282114028931, -0.1327163279056549, 0.04233480244874954, 0.39764127135276794, 0.53190016746521, -0.2324785590171814, -0.028466980904340744, -0.06905162334442139, -0.1917160153388977, -0.32307276129722595, 0.7581732869148254, -0.19103871285915375, -0.1123725175857544, 0.5710403323173523, 0.7847425937652588, -0.25395292043685913, -0.15366585552692413, 0.4563123285770416, -0.048805903643369675, -0.4931149482727051, -0.8134533166885376, 0.038120973855257034, 0.32596662640571594, 0.2190028578042984, -0.0019184717675670981, -0.0484030656516552, 0.36635881662368774, -0.033532023429870605, 0.588469922542572, -0.0049982694908976555, -0.7539678812026978, -0.6049221754074097, 0.13149596750736237, 0.5526800155639648, -0.61447674036026, 0.6130293607711792, -0.28043267130851746, -0.3708565831184387, 0.43066272139549255, 0.46373113989830017, 0.8328593373298645, -0.2085833102464676, 0.42245277762413025, 0.624664306640625, 0.3190925717353821, 0.1933078169822693, 0.7169340252876282, -0.35987865924835205, -0.598529040813446, -0.03342654928565025, -0.3401821553707123, -0.3072824478149414, -0.09336255490779877, -0.9308503270149231, 0.16245011985301971, -0.6182822585105896, -0.45684441924095154, -0.0313115157186985, 0.24128414690494537, -0.8317725658416748, 0.025362003594636917, 0.32330286502838135, 1.4442415237426758, -0.9314000010490417, 0.6882684230804443, 0.6839918494224548, -0.3575022518634796, -0.3451508581638336, -0.1836298406124115, 0.22721630334854126, -0.5717321634292603, -0.11480237543582916, 0.42550206184387207, 0.4010685682296753, -0.06937568634748459, -0.7117618918418884, -0.6421088576316833, 1.0473432540893555, 0.04782965034246445, -0.8781644105911255, 0.3986265957355499, -0.4064123332500458, 0.5143970251083374, -0.34939005970954895, 0.19357971847057343, 0.4010145366191864, 1.0838913917541504, 0.07811883836984634, -0.4478192925453186, 0.05051436647772789, -0.7968489527702332, -0.22583936154842377, 0.5139457583427429, -0.4788591265678406, 0.08881054073572159, 0.16036976873874664, -0.01732202246785164, 0.18375198543071747, 0.6551849842071533, 0.09094399958848953, 0.5504966974258423, 0.2490423321723938, 0.9401136040687561, 0.8601655960083008, -0.3484470546245575, 1.019911527633667, -0.15819303691387177, 0.5604588389396667, 1.0845874547958374, -0.2345290184020996, 0.28705933690071106, 0.4612409770488739, 0.16548465192317963, 0.3880419135093689, 0.5964725017547607, -0.7977360486984253, 0.4323806166648865, 0.5667658448219299, -0.04413602501153946, -0.15800419449806213, -0.0819506123661995, -0.7322527170181274, -0.20115844905376434, 0.5659487247467041, -0.34671980142593384, -0.20518432557582855, -0.16181185841560364, 0.23009446263313293, -0.0683743953704834, -0.3853835463523865, 0.8690205216407776, 0.07265366613864899, -0.19359467923641205, -0.1910640150308609, -0.11768684536218643, 0.4627653658390045, -0.7237149477005005, -0.33208969235420227, 0.12111280113458633, 0.15234488248825073, -0.42608192563056946, -1.1770000457763672, 0.8299180269241333, -0.027285071089863777, -0.4333033561706543, -0.0570836141705513, 0.9125756025314331, -0.46878328919410706, -1.063132643699646, 0.5065916180610657, 0.2983207702636719, 0.11922065913677216, 0.18477745354175568, -1.1954047679901123, 0.2123318612575531, -0.4774324595928192, -0.3486413359642029, 0.14743167161941528, 0.26080527901649475, 0.31728437542915344, 0.4289624094963074, 0.6668816208839417, 0.13319115340709686, -0.6126886606216431, 0.39236515760421753, 1.0070141553878784, -0.6674759387969971, -0.4469304084777832, -0.7844395637512207, 0.7900350689888, -0.5555610060691833, -0.8719510436058044, 0.6077604293823242, 1.0410722494125366, 0.8862470388412476, -0.1311822384595871, 1.0024440288543701, -0.43661975860595703, 0.4517553448677063, -0.2042607218027115, 0.8805551528930664, -0.37840747833251953, -0.5159906148910522, -0.46632590889930725, -0.8027816414833069, -0.8148812055587769, 0.726775586605072, 0.03239234909415245, -0.16151747107505798, 0.4163001477718353, 1.0465255975723267, -0.1590658575296402, 0.11166016012430191, 0.034888092428445816, 0.02159339003264904, 0.038405947387218475, 0.34578680992126465, 0.4976407587528229, -0.3599967360496521, 0.04958239197731018, 0.000431546795880422, -0.5852887034416199, -0.048853062093257904, -1.1840468645095825, -0.9802513718605042, -0.9083766937255859, -0.459320068359375, -0.6009585857391357, -0.016155146062374115, 0.8274415135383606, 0.9921302199363708, -0.8420102596282959, -0.3529103100299835, -0.048005200922489166, 0.27833908796310425, -0.046831246465444565, -0.0960940271615982, 0.5742600560188293, 0.4776257872581482, -0.3895861506462097, -0.22285397350788116, 0.226858988404274, 0.17659948766231537, -0.014547821134328842, -0.19275754690170288, 0.04424024745821953, -0.015574587509036064, 0.14766576886177063, 0.33118414878845215, -0.12906388938426971, -0.1622677743434906, -0.522121250629425, 0.021027231588959694, 0.04124482721090317, 1.203499436378479, -0.22600366175174713, 0.14590373635292053, 0.6691578030586243, 0.4994015097618103, 0.9013490676879883, -0.0461382158100605, 0.6156513094902039, -0.5943920612335205, 0.1480928659439087, -0.10181641578674316, 0.575536847114563, 0.3157978951931, -0.4863077700138092, 0.7543182373046875, 0.46247386932373047, -0.6171964406967163, -0.4120774567127228, 0.1864360272884369, -1.4950838088989258, 0.21313783526420593, 0.893000602722168, 0.17959843575954437, -0.4108459949493408, -0.11983808130025864, -0.39756500720977783, 0.3035849928855896, -0.9283232688903809, 0.052458617836236954, 0.7672941088676453, 0.34160658717155457, -0.33562329411506653, -0.30010995268821716, 0.3255472779273987, -0.5534941554069519, -1.1273155212402344, 0.3861985504627228, 0.7139370441436768, 0.32943907380104065, 0.1873638778924942, 0.9620535373687744, -0.3281014561653137, 0.22671550512313843, 0.24252954125404358, 0.5365018248558044, -0.438793420791626, -0.5918852686882019, -0.40400707721710205, 0.07318298518657684, -0.2917473018169403, -0.15287907421588898 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
common_language
null
2023-06-12T13:29:01Z
8,988
14
null
[ "task_categories:audio-classification", "task_ids:speaker-identification", "annotations_creators:crowdsourced", "language_creators:crowdsourced", "multilinguality:multilingual", "size_categories:100K<n<1M", "source_datasets:extended|common_voice", "language:ar", "language:br", "language:ca", "language:cnh", "language:cs", "language:cv", "language:cy", "language:de", "language:dv", "language:el", "language:en", "language:eo", "language:es", "language:et", "language:eu", "language:fa", "language:fr", "language:fy", "language:ia", "language:id", "language:it", "language:ja", "language:ka", "language:kab", "language:ky", "language:lv", "language:mn", "language:mt", "language:nl", "language:pl", "language:pt", "language:rm", "language:ro", "language:ru", "language:rw", "language:sah", "language:sl", "language:sv", "language:ta", "language:tr", "language:tt", "language:uk", "language:zh", "license:cc-by-4.0", "region:us" ]
2023-06-12T13:29:01Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - crowdsourced language: - ar - br - ca - cnh - cs - cv - cy - de - dv - el - en - eo - es - et - eu - fa - fr - fy - ia - id - it - ja - ka - kab - ky - lv - mn - mt - nl - pl - pt - rm - ro - ru - rw - sah - sl - sv - ta - tr - tt - uk - zh license: - cc-by-4.0 multilinguality: - multilingual size_categories: - 100K<n<1M source_datasets: - extended|common_voice task_categories: - audio-classification task_ids: - speaker-identification pretty_name: Common Language language_bcp47: - fy-NL - rm-sursilv - sv-SE - zh-CN - zh-HK - zh-TW dataset_info: features: - name: client_id dtype: string - name: path dtype: string - name: sentence dtype: string - name: age dtype: string - name: gender dtype: string - name: language dtype: class_label: names: '0': Arabic '1': Basque '2': Breton '3': Catalan '4': Chinese_China '5': Chinese_Hongkong '6': Chinese_Taiwan '7': Chuvash '8': Czech '9': Dhivehi '10': Dutch '11': English '12': Esperanto '13': Estonian '14': French '15': Frisian '16': Georgian '17': German '18': Greek '19': Hakha_Chin '20': Indonesian '21': Interlingua '22': Italian '23': Japanese '24': Kabyle '25': Kinyarwanda '26': Kyrgyz '27': Latvian '28': Maltese '29': Mangolian '30': Persian '31': Polish '32': Portuguese '33': Romanian '34': Romansh_Sursilvan '35': Russian '36': Sakha '37': Slovenian '38': Spanish '39': Swedish '40': Tamil '41': Tatar '42': Turkish '43': Ukranian '44': Welsh config_name: full splits: - name: train num_bytes: 7116761 num_examples: 22194 - name: validation num_bytes: 1855233 num_examples: 5888 - name: test num_bytes: 1877970 num_examples: 5963 download_size: 3761951178 dataset_size: 10849964 --- # Dataset Card for common_language ## 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://zenodo.org/record/5036977 - **Repository:** https://github.com/speechbrain/speechbrain/tree/develop/recipes/CommonLanguage - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Leaderboard:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Dataset Summary This dataset is composed of speech recordings from languages that were carefully selected from the CommonVoice database. The total duration of audio recordings is 45.1 hours (i.e., 1 hour of material for each language). The dataset has been extracted from CommonVoice to train language-id systems. ### Supported Tasks and Leaderboards The baselines for language-id are available in the SpeechBrain toolkit (see recipes/CommonLanguage): https://github.com/speechbrain/speechbrain ### Languages List of included languages: ``` Arabic, Basque, Breton, Catalan, Chinese_China, Chinese_Hongkong, Chinese_Taiwan, Chuvash, Czech, Dhivehi, Dutch, English, Esperanto, Estonian, French, Frisian, Georgian, German, Greek, Hakha_Chin, Indonesian, Interlingua, Italian, Japanese, Kabyle, Kinyarwanda, Kyrgyz, Latvian, Maltese, Mongolian, Persian, Polish, Portuguese, Romanian, Romansh_Sursilvan, Russian, Sakha, Slovenian, Spanish, Swedish, Tamil, Tatar, Turkish, Ukranian, Welsh ``` ## Dataset Structure ### Data Instances A typical data point comprises the `path` to the audio file, and its label `language`. Additional fields include `age`, `client_id`, `gender` and `sentence`. ```python { 'client_id': 'itln_trn_sp_175', 'path': '/path/common_voice_kpd/Italian/train/itln_trn_sp_175/common_voice_it_18279446.wav', 'audio': {'path': '/path/common_voice_kpd/Italian/train/itln_trn_sp_175/common_voice_it_18279446.wav', 'array': array([-0.00048828, -0.00018311, -0.00137329, ..., 0.00079346, 0.00091553, 0.00085449], dtype=float32), 'sampling_rate': 48000}, 'sentence': 'Con gli studenti è leggermente simile.', 'age': 'not_defined', 'gender': 'not_defined', 'language': 22 } ``` ### Data Fields `client_id` (`string`): An id for which client (voice) made the recording `path` (`string`): The path to the audio file - `audio` (`dict`): 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]`. `language` (`ClassLabel`): The language of the recording (see the `Languages` section above) `sentence` (`string`): The sentence the user was prompted to speak `age` (`string`): The age of the speaker. `gender` (`string`): The gender of the speaker ### Data Splits The dataset is already balanced and split into train, dev (validation) and test sets. | Name | Train | Dev | Test | |:---------------------------------:|:------:|:------:|:-----:| | **# of utterances** | 177552 | 47104 | 47704 | | **# unique speakers** | 11189 | 1297 | 1322 | | **Total duration, hr** | 30.04 | 7.53 | 7.53 | | **Min duration, sec** | 0.86 | 0.98 | 0.89 | | **Mean duration, sec** | 4.87 | 4.61 | 4.55 | | **Max duration, sec** | 21.72 | 105.67 | 29.83 | | **Duration per language, min** | ~40 | ~10 | ~10 | ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in the Common Voice dataset. ## Considerations for Using the Data ### Social Impact of Dataset The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in the Common Voice dataset. ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations The Mongolian and Ukrainian languages are spelled as "Mangolian" and "Ukranian" in this version of the dataset. [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [Ganesh Sinisetty; Pavlo Ruban; Oleksandr Dymov; Mirco Ravanelli](https://zenodo.org/record/5036977#.YdTZ5hPMJ70) ### Licensing Information [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode) ### Citation Information ``` @dataset{ganesh_sinisetty_2021_5036977, author = {Ganesh Sinisetty and Pavlo Ruban and Oleksandr Dymov and Mirco Ravanelli}, title = {CommonLanguage}, month = jun, year = 2021, publisher = {Zenodo}, version = {0.1}, doi = {10.5281/zenodo.5036977}, url = {https://doi.org/10.5281/zenodo.5036977} } ``` ### Contributions Thanks to [@anton-l](https://github.com/anton-l) for adding this dataset.
[ -0.49500879645347595, -0.6642325520515442, 0.04194186255335808, 0.3460277318954468, -0.21779711544513702, -0.05208243429660797, -0.5527741312980652, -0.42264431715011597, 0.5701674818992615, 0.4148987829685211, -0.7104469537734985, -1.0515697002410889, -0.4764460027217865, 0.14231164753437042, -0.09269855171442032, 1.1005425453186035, 0.1523492932319641, -0.05336935445666313, -0.1529543399810791, -0.34273356199264526, -0.29041817784309387, -0.4061056673526764, -0.6005231738090515, -0.2576868236064911, 0.1455778330564499, 0.5529462695121765, 0.46510863304138184, 0.6768820881843567, 0.15761008858680725, 0.30832967162132263, -0.30899539589881897, -0.05748329311609268, -0.3148336112499237, -0.09417299181222916, 0.1558961570262909, -0.3767906427383423, -0.7088582515716553, 0.04253454878926277, 0.7105669975280762, 0.7487769722938538, -0.39767542481422424, 0.44645947217941284, 0.0007362688193097711, 0.7640230059623718, -0.12007667124271393, 0.35678476095199585, -0.3960973024368286, -0.12261156737804413, -0.484807550907135, -0.05158257856965065, -0.024699606001377106, -0.40688928961753845, -0.0356796495616436, -0.6851596236228943, 0.18120552599430084, -0.14813072979450226, 0.9626825451850891, 0.06091282144188881, 0.024032391607761383, -0.2497044950723648, -0.4869838356971741, 0.8164544105529785, -0.799172043800354, 0.35553911328315735, 0.7706629037857056, 0.2585832476615906, -0.13127735257148743, -0.4178062081336975, -0.7983583807945251, -0.009719714522361755, 0.015865236520767212, 0.22598066926002502, -0.2926453649997711, -0.16615906357765198, 0.43820720911026, 0.49257880449295044, -0.7495728135108948, -0.03462566062808037, -0.592288076877594, -0.2781020700931549, 1.038843035697937, -0.04913398623466492, 0.607482373714447, -0.4170917272567749, 0.0005139923887327313, -0.4453526735305786, -0.38008221983909607, 0.3292980194091797, 0.6608143448829651, 0.6965885758399963, -0.9074764847755432, 0.5408319234848022, -0.28800949454307556, 0.6874843835830688, 0.01531188003718853, -0.3318425714969635, 0.9157881140708923, -0.46501678228378296, -0.05662623792886734, 0.1368785798549652, 1.1401371955871582, 0.3943586051464081, 0.1759769469499588, 0.21879349648952484, 0.09832987934350967, -0.029168272390961647, -0.42152684926986694, -0.6007121205329895, -0.14797382056713104, 0.5729387402534485, -0.3831370174884796, -0.12257795035839081, -0.0645965114235878, -1.0066457986831665, -0.03604467585682869, -0.3957546353340149, 0.1028718426823616, -0.44563472270965576, -0.5790444612503052, 0.20918479561805725, -0.162140354514122, 0.24867404997348785, -0.05310741811990738, -0.8144135475158691, 0.5452055931091309, 0.5371937155723572, 0.9097645282745361, 0.048382095992565155, -0.32896170020103455, -0.4959343373775482, -0.11003036797046661, -0.037020307034254074, 0.5099887251853943, -0.2975735068321228, -0.5363530516624451, -0.13465547561645508, 0.32407405972480774, -0.17661800980567932, -0.566444993019104, 0.851432740688324, 0.14341036975383759, 0.414488822221756, -0.33902493119239807, -0.4474642276763916, -0.10393906384706497, 0.07174860686063766, -0.7506439089775085, 1.2177097797393799, 0.18018358945846558, -0.8055340051651001, 0.2636432945728302, -0.7136812806129456, -0.4668167233467102, 0.05198416858911514, -0.2152235209941864, -0.5781422853469849, -0.394576758146286, 0.29099240899086, 0.5653725266456604, -0.38304850459098816, 0.33958882093429565, -0.23387229442596436, -0.27335283160209656, 0.18218407034873962, 0.011820896528661251, 1.4343419075012207, 0.21976161003112793, -0.3645697832107544, -0.1090192124247551, -1.1143325567245483, -0.21227556467056274, 0.29019835591316223, -0.37882813811302185, -0.14486682415008545, -0.1292504221200943, 0.37498804926872253, 0.07735593616962433, 0.055627014487981796, -0.7258362770080566, 0.23389436304569244, -0.5147188901901245, 0.393351286649704, 0.4214116334915161, -0.052935890853405, 0.3023148477077484, -0.4687613844871521, 0.587457001209259, 0.05929772928357124, -0.002900496358051896, 0.08558514714241028, -0.5351231694221497, -0.5433095693588257, -0.41844475269317627, 0.3959231674671173, 0.8125507831573486, -0.4939371645450592, 0.7290441393852234, -0.5706537365913391, -0.715237021446228, -0.8933646082878113, 0.2413332611322403, 0.390879362821579, 0.44237685203552246, 0.44322511553764343, -0.47189265489578247, -0.6360260844230652, -0.8062581419944763, 0.08090998232364655, -0.23240552842617035, -0.07163181155920029, 0.6590242981910706, 0.43890997767448425, -0.20463652908802032, 0.7980961203575134, -0.5045149326324463, -0.43103599548339844, -0.3126470148563385, 0.03106943517923355, 0.601720929145813, 0.8271254897117615, 0.698828935623169, -0.7628118395805359, -0.520207405090332, -0.0687723234295845, -0.5758686661720276, -0.2880805730819702, -0.07557069510221481, 0.03596797212958336, 0.2697402536869049, 0.34329432249069214, -0.6608125567436218, 0.19236545264720917, 0.6479812264442444, -0.35994407534599304, 0.47698286175727844, 0.002144461963325739, 0.2183132916688919, -1.2957038879394531, 0.2677493691444397, 0.033936500549316406, 0.018558628857135773, -0.6017441153526306, -0.46514204144477844, -0.36148801445961, -0.148832768201828, -0.35999947786331177, 0.6041765809059143, -0.4679461121559143, -0.06048305705189705, 0.25418832898139954, 0.3567523658275604, -0.1581534445285797, 0.5974528193473816, 0.03582541272044182, 0.7039021849632263, 0.8953545689582825, -0.510656476020813, 0.44577303528785706, 0.4977011978626251, -0.4372323751449585, 0.6747121810913086, -0.8444258570671082, 0.2225351482629776, -0.12216855585575104, 0.19767604768276215, -0.8874515891075134, -0.363646000623703, 0.5005199909210205, -0.8820098042488098, 0.36253267526626587, -0.4305032789707184, -0.5736059546470642, -0.3970659077167511, -0.23024685680866241, 0.23626212775707245, 0.4359807074069977, -0.24203453958034515, 0.5744950175285339, 0.7037656903266907, -0.4145711064338684, -0.5176611542701721, -0.7757587432861328, -0.03268600255250931, -0.35936853289604187, -0.7784432172775269, 0.4506261944770813, -0.2122669816017151, -0.1674434393644333, 0.032050780951976776, 0.14826254546642303, -0.07343565672636032, -0.014176733791828156, 0.26803621649742126, 0.05573973059654236, -0.0013726731995120645, -0.026475775986909866, -0.0721416175365448, -0.10681706666946411, -0.09057959914207458, -0.028817495331168175, 0.6195979118347168, -0.1415867656469345, -0.10277245938777924, -0.5195010304450989, 0.3931100368499756, 0.4663165807723999, -0.37121859192848206, 0.5147145390510559, 0.8707520365715027, -0.23659923672676086, 0.03990036994218826, -0.5120221972465515, 0.17217227816581726, -0.3900274932384491, 0.31188729405403137, -0.2924093008041382, -0.6912055611610413, 0.9859272837638855, 0.3099486529827118, -0.027869032695889473, 0.5696379542350769, 0.48855677247047424, 0.016207793727517128, 0.725705087184906, 0.34723734855651855, -0.45947331190109253, 0.5013894438743591, -0.5637574195861816, -0.2650909125804901, -0.7760325074195862, -0.356605589389801, -0.7561590671539307, -0.1790584921836853, -0.8879990577697754, -0.5336060523986816, 0.191182941198349, -0.06686359643936157, -0.013984041288495064, 0.49778375029563904, -0.6268402934074402, 0.3144451677799225, 0.6204307079315186, 0.07410043478012085, -0.021209994331002235, 0.038893505930900574, -0.14381681382656097, 0.059662915766239166, -0.5082449913024902, -0.3107973337173462, 1.1662039756774902, 0.4090597331523895, 0.39099034667015076, 0.2539246678352356, 0.7749171853065491, 0.1002095565199852, -0.26168686151504517, -0.6001995801925659, 0.5316892862319946, -0.1849530190229416, -0.604629635810852, -0.41859275102615356, -0.44711044430732727, -1.0769935846328735, -0.00045155876432545483, -0.22928650677204132, -0.8076004981994629, 0.3758525252342224, 0.0070721302181482315, -0.2775813043117523, 0.09795834869146347, -0.6713065505027771, 0.8632091879844666, -0.13906872272491455, -0.2675113081932068, -0.042700935155153275, -0.8879977464675903, 0.11546530574560165, 0.19514092803001404, 0.4683142602443695, -0.344918429851532, 0.31097349524497986, 1.1609121561050415, -0.3966979682445526, 0.9129292368888855, -0.44393643736839294, 0.13263966143131256, 0.39047032594680786, -0.27644550800323486, 0.19023282825946808, -0.0069313556887209415, -0.17693980038166046, 0.48164793848991394, 0.29596996307373047, -0.46701768040657043, -0.4346991777420044, 0.5846044421195984, -0.8411253094673157, -0.2113528847694397, -0.3529902696609497, -0.4647006392478943, -0.11348839849233627, 0.26138460636138916, 0.23603925108909607, 0.43495869636535645, -0.19062606990337372, 0.30654942989349365, 0.6469979286193848, -0.4888404905796051, 0.28699737787246704, 0.48351752758026123, -0.10515126585960388, -0.7558683156967163, 0.795193076133728, 0.25532710552215576, 0.063600093126297, 0.19189587235450745, 0.34567052125930786, -0.3049255907535553, -0.4346359670162201, -0.540381669998169, 0.4441054165363312, -0.4224584102630615, -0.048466913402080536, -0.6045243740081787, -0.034931283444166183, -0.8030269145965576, 0.14909130334854126, -0.3235035240650177, -0.49048447608947754, -0.22900310158729553, -0.15443715453147888, 0.6901600956916809, 0.17646081745624542, -0.42779651284217834, 0.26956021785736084, -0.7108705043792725, 0.37388381361961365, 0.08732026815414429, 0.39672452211380005, -0.28281834721565247, -0.5231082439422607, -0.35215315222740173, 0.1717623472213745, -0.013788485899567604, -0.7346773147583008, 0.4017796814441681, 0.3256804943084717, 0.6712557673454285, 0.12605281174182892, -0.0509418249130249, 0.7173203825950623, -0.21399299800395966, 1.0400558710098267, 0.06323996931314468, -0.9720730185508728, 0.8652660846710205, -0.6579801440238953, 0.4518536925315857, 0.8156570792198181, 0.442939817905426, -0.7988353371620178, -0.20016004145145416, -0.8260700702667236, -0.9761265516281128, 0.8903624415397644, 0.3032057583332062, 0.11874905973672867, 0.05309959873557091, 0.19915245473384857, -0.0976884514093399, 0.1478091925382614, -0.7176429629325867, -0.7330617308616638, -0.1975325345993042, -0.36133667826652527, -0.24728147685527802, -0.12301614135503769, -0.23854239284992218, -0.639865517616272, 0.839529812335968, -0.04604833200573921, 0.28587594628334045, 0.3651201128959656, 0.003747507929801941, -0.12833021581172943, 0.30954495072364807, 0.6346904039382935, 0.30067145824432373, -0.4870309829711914, -0.26026439666748047, 0.06519332528114319, -0.7089923024177551, -0.03032561019062996, 0.5014493465423584, -0.16325023770332336, 0.18992958962917328, 0.4126546382904053, 1.0325208902359009, 0.19792212545871735, -0.6025261282920837, 0.568162202835083, -0.12396770715713501, -0.4075944423675537, -0.5832974910736084, -0.09122131019830704, 0.20209968090057373, 0.11485671252012253, 0.2161693125963211, -0.2446081042289734, 0.07020211964845657, -0.48154157400131226, 0.3402770161628723, 0.10851753503084183, -0.15316426753997803, -0.4653197228908539, 0.5301235318183899, 0.1351969987154007, -0.3476414978504181, 0.5169820189476013, -0.062141481786966324, -0.39311596751213074, 0.617117702960968, 0.2933354675769806, 0.85975182056427, -0.39961326122283936, 0.15695111453533173, 0.7871913909912109, 0.23272766172885895, 0.025779346004128456, 0.5802004933357239, -0.32863256335258484, -0.8397388458251953, -0.29508844017982483, -0.7350366115570068, -0.19543138146400452, 0.26458442211151123, -0.9084961414337158, 0.33894577622413635, -0.28502482175827026, -0.18148070573806763, 0.15988200902938843, 0.35968077182769775, -0.7603870034217834, 0.12661688029766083, 0.1401609629392624, 0.8505241870880127, -1.1976845264434814, 0.8354001045227051, 0.5773037075996399, -0.7250381112098694, -1.0710378885269165, -0.29767492413520813, 0.2715299129486084, -0.5622749328613281, 0.4035259783267975, -0.04524938389658928, 0.12890546023845673, -0.17220793664455414, -0.601631760597229, -0.7690002918243408, 1.151535153388977, 0.3723161518573761, -0.6098371744155884, 0.23088693618774414, 0.23627969622612, 0.5825586915016174, -0.31924697756767273, 0.10048564523458481, 0.7836562991142273, 0.5078250765800476, 0.18014396727085114, -1.1584845781326294, -0.02614610828459263, -0.6108397841453552, -0.25363218784332275, -0.006548991892486811, -0.7211216688156128, 0.6209052205085754, 0.038167208433151245, -0.19890819489955902, -0.18811893463134766, 0.5286697745323181, 0.4160652458667755, 0.42472371459007263, 0.5800015926361084, 0.8793374300003052, 0.9181215167045593, -0.10943449288606644, 0.9104779362678528, -0.24558289349079132, 0.35728955268859863, 1.2015091180801392, 0.055359043180942535, 0.7878550887107849, 0.33309173583984375, -0.5151265263557434, 0.4907214343547821, 0.5728590488433838, -0.2119557410478592, 0.3636942207813263, 0.20552892982959747, -0.14732490479946136, 0.030589589849114418, -0.24555759131908417, -0.5152497887611389, 0.715395987033844, 0.31618043780326843, -0.17826803028583527, 0.15223170816898346, 0.0367821529507637, 0.35955360531806946, 0.10184717178344727, -0.0005465138819999993, 0.8111647963523865, 0.0465109646320343, -0.4267617464065552, 0.739082396030426, -0.267825722694397, 0.761553943157196, -0.5895565152168274, 0.06496893614530563, -0.23831799626350403, -0.07053221017122269, -0.42987287044525146, -0.8496079444885254, 0.36399272084236145, 0.07457296550273895, -0.28733929991722107, -0.24411481618881226, 0.3851736783981323, -0.8634034991264343, -0.6449136137962341, 0.3751317262649536, 0.3659239113330841, 0.4878746569156647, 0.2949981391429901, -1.0244663953781128, 0.4395409822463989, 0.1786324381828308, -0.22483676671981812, 0.11825260519981384, 0.4164915978908539, 0.1903834193944931, 0.573118269443512, 0.7322194576263428, 0.5538943409919739, -0.12004785239696503, 0.3332845866680145, 0.7201471924781799, -0.6643977761268616, -0.5185930728912354, -0.5501399040222168, 0.7348663210868835, -0.2089768350124359, -0.33629414439201355, 0.7707259654998779, 0.8133872151374817, 1.1425459384918213, 0.14302639663219452, 0.807543933391571, -0.43098607659339905, 0.9565984606742859, -0.4934023916721344, 0.8437168002128601, -0.6745914220809937, 0.21430407464504242, -0.7054848074913025, -0.7036399245262146, -0.3367029130458832, 0.6220356225967407, -0.23073427379131317, -0.025942733511328697, 0.21792297065258026, 1.0182719230651855, 0.06556075066328049, -0.17652475833892822, 0.0279197096824646, 0.24097122251987457, 0.3055291473865509, 0.5454304218292236, 0.22392812371253967, -0.7152080535888672, 0.4371936023235321, -0.503511369228363, -0.1641778200864792, 0.09245739132165909, -0.7654080986976624, -0.6948596835136414, -1.0007480382919312, -0.608585000038147, -0.46402737498283386, -0.16411036252975464, 1.229767918586731, 0.6771305799484253, -0.9424927234649658, -0.6396249532699585, 0.18814678490161896, 0.10092709213495255, -0.33406832814216614, -0.2739253640174866, 0.5712859034538269, 0.2842786908149719, -0.9099341630935669, 0.295350581407547, -0.13083845376968384, 0.17093971371650696, 0.12667053937911987, -0.20047852396965027, -0.4088191092014313, -0.20314587652683258, 0.3456140458583832, 0.6168234944343567, -0.5983034372329712, 0.017783410847187042, -0.21500812470912933, 0.09344816952943802, 0.22879382967948914, 0.2809711992740631, -0.45312389731407166, 0.5664756894111633, 0.5374826788902283, 0.2594686448574066, 0.7474886775016785, -0.010137513279914856, 0.36345168948173523, -0.7565481662750244, 0.4473292827606201, 0.15793541073799133, 0.30123966932296753, 0.5894188284873962, -0.32467231154441833, 0.6362314820289612, 0.36947864294052124, -0.4649527072906494, -0.9294350743293762, -0.23645515739917755, -1.4724265336990356, 0.05537116527557373, 1.2389764785766602, -0.037864912301301956, -0.37993672490119934, -0.06054370477795601, -0.1906343698501587, 0.4568029046058655, -0.6244958639144897, 0.4266607463359833, 0.7015009522438049, -0.04801919311285019, -0.14501649141311646, -0.559022068977356, 0.6580684185028076, 0.194597989320755, -0.7318891882896423, 0.06032185256481171, 0.5349781513214111, 0.548864483833313, 0.252452552318573, 1.056387186050415, -0.28900572657585144, 0.10812930762767792, 0.042161326855421066, 0.4312739074230194, -0.12997765839099884, 0.0038615965750068426, -0.5721362829208374, -0.16142672300338745, -0.1797179877758026, -0.2873648405075073 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
financial_phrasebank
null
2023-07-26T06:27:17Z
8,968
116
null
[ "task_categories:text-classification", "task_ids:multi-class-classification", "task_ids:sentiment-classification", "annotations_creators:expert-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:en", "license:cc-by-nc-sa-3.0", "finance", "arxiv:1307.5336", "region:us" ]
2023-07-26T06:27:17Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - found language: - en license: - cc-by-nc-sa-3.0 multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - original task_categories: - text-classification task_ids: - multi-class-classification - sentiment-classification pretty_name: FinancialPhrasebank dataset_info: - config_name: sentences_allagree features: - name: sentence dtype: string - name: label dtype: class_label: names: '0': negative '1': neutral '2': positive splits: - name: train num_bytes: 303371 num_examples: 2264 download_size: 681890 dataset_size: 303371 - config_name: sentences_75agree features: - name: sentence dtype: string - name: label dtype: class_label: names: '0': negative '1': neutral '2': positive splits: - name: train num_bytes: 472703 num_examples: 3453 download_size: 681890 dataset_size: 472703 - config_name: sentences_66agree features: - name: sentence dtype: string - name: label dtype: class_label: names: '0': negative '1': neutral '2': positive splits: - name: train num_bytes: 587152 num_examples: 4217 download_size: 681890 dataset_size: 587152 - config_name: sentences_50agree features: - name: sentence dtype: string - name: label dtype: class_label: names: '0': negative '1': neutral '2': positive splits: - name: train num_bytes: 679240 num_examples: 4846 download_size: 681890 dataset_size: 679240 tags: - finance --- # Dataset Card for financial_phrasebank ## 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:** [Kaggle](https://www.kaggle.com/ankurzing/sentiment-analysis-for-financial-news) [ResearchGate](https://www.researchgate.net/publication/251231364_FinancialPhraseBank-v10) - **Repository:** - **Paper:** [Arxiv](https://arxiv.org/abs/1307.5336) - **Leaderboard:** [Kaggle](https://www.kaggle.com/ankurzing/sentiment-analysis-for-financial-news/code) [PapersWithCode](https://paperswithcode.com/sota/sentiment-analysis-on-financial-phrasebank) = - **Point of Contact:** [Pekka Malo](mailto:pekka.malo@aalto.fi) [Ankur Sinha](mailto:ankur.sinha@aalto.fi) ### Dataset Summary Polar sentiment dataset of sentences from financial news. The dataset consists of 4840 sentences from English language financial news categorised by sentiment. The dataset is divided by agreement rate of 5-8 annotators. ### Supported Tasks and Leaderboards Sentiment Classification ### Languages English ## Dataset Structure ### Data Instances ``` { "sentence": "Pharmaceuticals group Orion Corp reported a fall in its third-quarter earnings that were hit by larger expenditures on R&D and marketing .", "label": "negative" } ``` ### Data Fields - sentence: a tokenized line from the dataset - label: a label corresponding to the class as a string: 'positive', 'negative' or 'neutral' ### Data Splits There's no train/validation/test split. However the dataset is available in four possible configurations depending on the percentage of agreement of annotators: `sentences_50agree`; Number of instances with >=50% annotator agreement: 4846 `sentences_66agree`: Number of instances with >=66% annotator agreement: 4217 `sentences_75agree`: Number of instances with >=75% annotator agreement: 3453 `sentences_allagree`: Number of instances with 100% annotator agreement: 2264 ## Dataset Creation ### Curation Rationale The key arguments for the low utilization of statistical techniques in financial sentiment analysis have been the difficulty of implementation for practical applications and the lack of high quality training data for building such models. Especially in the case of finance and economic texts, annotated collections are a scarce resource and many are reserved for proprietary use only. To resolve the missing training data problem, we present a collection of ∼ 5000 sentences to establish human-annotated standards for benchmarking alternative modeling techniques. The objective of the phrase level annotation task was to classify each example sentence into a positive, negative or neutral category by considering only the information explicitly available in the given sentence. Since the study is focused only on financial and economic domains, the annotators were asked to consider the sentences from the view point of an investor only; i.e. whether the news may have positive, negative or neutral influence on the stock price. As a result, sentences which have a sentiment that is not relevant from an economic or financial perspective are considered neutral. ### Source Data #### Initial Data Collection and Normalization The corpus used in this paper is made out of English news on all listed companies in OMX Helsinki. The news has been downloaded from the LexisNexis database using an automated web scraper. Out of this news database, a random subset of 10,000 articles was selected to obtain good coverage across small and large companies, companies in different industries, as well as different news sources. Following the approach taken by Maks and Vossen (2010), we excluded all sentences which did not contain any of the lexicon entities. This reduced the overall sample to 53,400 sentences, where each has at least one or more recognized lexicon entity. The sentences were then classified according to the types of entity sequences detected. Finally, a random sample of ∼5000 sentences was chosen to represent the overall news database. #### Who are the source language producers? The source data was written by various financial journalists. ### Annotations #### Annotation process This release of the financial phrase bank covers a collection of 4840 sentences. The selected collection of phrases was annotated by 16 people with adequate background knowledge on financial markets. Given the large number of overlapping annotations (5 to 8 annotations per sentence), there are several ways to define a majority vote based gold standard. To provide an objective comparison, we have formed 4 alternative reference datasets based on the strength of majority agreement: #### Who are the annotators? Three of the annotators were researchers and the remaining 13 annotators were master's students at Aalto University School of Business with majors primarily in finance, accounting, and economics. ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases All annotators were from the same institution and so interannotator agreement should be understood with this taken into account. ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/. If you are interested in commercial use of the data, please contact the following authors for an appropriate license: - [Pekka Malo](mailto:pekka.malo@aalto.fi) - [Ankur Sinha](mailto:ankur.sinha@aalto.fi) ### Citation Information ``` @article{Malo2014GoodDO, title={Good debt or bad debt: Detecting semantic orientations in economic texts}, author={P. Malo and A. Sinha and P. Korhonen and J. Wallenius and P. Takala}, journal={Journal of the Association for Information Science and Technology}, year={2014}, volume={65} } ``` ### Contributions Thanks to [@frankier](https://github.com/frankier) for adding this dataset.
[ -0.4663166403770447, -0.6606219410896301, 0.0644877701997757, 0.3320690393447876, -0.4326786696910858, 0.030126122757792473, -0.11729598045349121, -0.30233702063560486, 0.3978891372680664, 0.6109984517097473, -0.5128630995750427, -0.8542804718017578, -0.5447152256965637, 0.269305944442749, -0.10884781926870346, 1.4532110691070557, 0.08936028182506561, -0.030352819710969925, -0.22948022186756134, -0.30369359254837036, -0.22098058462142944, -0.6295018792152405, -0.7272606492042542, -0.1936275213956833, 0.24882788956165314, 0.2137809544801712, 0.598038911819458, 0.32555022835731506, 0.6613674163818359, 0.283290833234787, -0.23550891876220703, 0.030512334778904915, -0.20317132771015167, -0.31695127487182617, -0.02793169394135475, -0.44470903277397156, -0.7571884989738464, 0.38496580719947815, 0.3060162365436554, 0.5131747722625732, -0.0016336117405444384, 0.39367759227752686, 0.23637641966342926, 1.0281161069869995, -0.40300342440605164, 0.6987783312797546, -0.23890292644500732, -0.013686437159776688, -0.13693687319755554, -0.06324748694896698, -0.21497707068920135, -0.4650416672229767, 0.17362213134765625, -0.7092267274856567, 0.01184794120490551, 0.18353700637817383, 1.2096450328826904, 0.0007356350542977452, -0.42616933584213257, -0.39819207787513733, -0.19900541007518768, 0.689491331577301, -0.7929916977882385, 0.08007293939590454, 0.49096915125846863, -0.049614354968070984, 0.23137110471725464, -0.40396255254745483, -0.4326857328414917, 0.08877812325954437, -0.2502385675907135, 0.5372106432914734, -0.3047284781932831, -0.0912376120686531, 0.4023415148258209, 0.4052039086818695, -0.20488882064819336, -0.276313453912735, -0.6462748646736145, -0.20019569993019104, 0.7155208587646484, -0.0638866126537323, -0.21593230962753296, -0.7066435813903809, -0.5668136477470398, -0.36531198024749756, -0.5060805678367615, 0.06325987726449966, 0.701042890548706, 0.6078152656555176, -0.5438619256019592, 0.7584277987480164, -0.06258665025234222, 0.5452512502670288, 0.0173835176974535, -0.3657296895980835, 0.8066219091415405, -0.6283095479011536, -0.1647419035434723, 0.1652718484401703, 0.6833323240280151, 0.7008362412452698, 0.16738983988761902, 0.23934033513069153, -0.3416992127895355, -0.02357114478945732, -0.0630287379026413, -0.4915861487388611, 0.03768312186002731, 0.18045756220817566, -0.7080469727516174, -0.39954519271850586, 0.4304080903530121, -1.1040589809417725, -0.2658372223377228, -0.38674458861351013, 0.2701057493686676, -0.30709198117256165, -0.17259038984775543, 0.1127142533659935, -0.5359927415847778, 0.5162890553474426, -0.10945378988981247, -0.4733775556087494, 0.23566892743110657, 0.6898064017295837, 0.741287350654602, 0.2438744455575943, 0.15432976186275482, -0.3610855042934418, 0.06568695604801178, -0.19952069222927094, 0.6688244938850403, -0.15061013400554657, -0.5871251821517944, 0.07598007470369339, -0.10724061727523804, 0.018325675278902054, -0.4068131446838379, 0.8085530400276184, -0.22759515047073364, 0.5526345372200012, -0.4657697081565857, -0.5905778408050537, -0.2716469466686249, 0.20343457162380219, -0.536618709564209, 0.9131457805633545, 0.2680141031742096, -1.0995668172836304, 0.6381527185440063, -0.9889678955078125, -0.4876853823661804, -0.05629175528883934, -0.034990355372428894, -0.5776669979095459, -0.204103022813797, 0.18331003189086914, 0.3958042860031128, -0.4589821398258209, 0.363480806350708, -0.37600669264793396, -0.07893747836351395, 0.4544336795806885, -0.14937232434749603, 0.9347379207611084, 0.22157500684261322, -0.34522831439971924, -0.09214989840984344, -1.0123087167739868, -0.42554205656051636, 0.07771207392215729, -0.12895305454730988, -0.7603805661201477, -0.058022476732730865, 0.26288333535194397, 0.2546806037425995, 0.41546666622161865, -0.5977328419685364, 0.15252535045146942, -0.5013936758041382, 0.4002317190170288, 0.8896265029907227, 0.15144571661949158, 0.2722260355949402, -0.3855680227279663, 0.48233911395072937, 0.2518773078918457, 0.3021901547908783, 0.09898699820041656, -0.4341723620891571, -0.7662400603294373, -0.4563811421394348, 0.361183762550354, 0.8106492757797241, -0.5265928506851196, 0.7776553630828857, -0.11490651965141296, -0.28108587861061096, -0.5634067058563232, 0.1551460325717926, 0.2764115631580353, 0.6206181645393372, 0.34420260787010193, -0.09906404465436935, -0.6202854514122009, -1.0871049165725708, -0.2795061469078064, -0.29792043566703796, 0.08185470104217529, 0.40158477425575256, 0.5864742994308472, 0.08610609918832779, 1.0765527486801147, -0.7689868211746216, -0.5442293286323547, -0.34965676069259644, 0.38019970059394836, 0.7182565331459045, 0.300581157207489, 0.7006222009658813, -1.008633017539978, -0.4019734859466553, -0.19145679473876953, -0.6400256156921387, -0.04612497612833977, -0.4219266176223755, 0.01844346709549427, 0.5075934529304504, 0.3671463131904602, -0.41587623953819275, 0.3901108205318451, 0.43251845240592957, -0.8112332820892334, 0.15719206631183624, -0.10976511240005493, -0.0027638752944767475, -1.265440821647644, 0.25067445635795593, 0.42501991987228394, 0.02106168121099472, -0.34101763367652893, -0.4154442846775055, -0.09629655629396439, 0.04998765513300896, -0.08743835985660553, 0.5875789523124695, -0.2059946209192276, 0.0065263197757303715, 0.139247864484787, 0.42669156193733215, 0.08848311007022858, 0.5635427832603455, -0.1973349153995514, 0.6652199625968933, 0.5748961567878723, -0.27000126242637634, 0.20366902649402618, 0.42233696579933167, -0.32258346676826477, 0.6740813255310059, -0.6376032829284668, -0.29178500175476074, -0.2374572604894638, 0.17625214159488678, -1.006455898284912, 0.1023130863904953, 0.618414044380188, -0.3924395442008972, 0.05435585603117943, 0.026098506525158882, -0.5520642995834351, -0.3180534541606903, -0.47939810156822205, -0.10247761011123657, 0.3769426643848419, -0.14724010229110718, 0.5576660633087158, 0.28929245471954346, -0.35616207122802734, -0.6791145205497742, -0.7715380787849426, 0.004569668788462877, -0.5825130343437195, -0.4908105731010437, 0.16674557328224182, 0.09201370179653168, -0.4647773802280426, 0.23716886341571808, -0.08090747892856598, 0.2487221509218216, 0.06446973979473114, 0.19423852860927582, 0.8910511136054993, -0.14581407606601715, 0.15802259743213654, -0.13860929012298584, -0.345978319644928, 0.02934894524514675, -0.22767341136932373, 0.38856858015060425, -0.3257077634334564, 0.0637209340929985, -0.3584302067756653, 0.23168346285820007, 0.364950031042099, -0.2848025858402252, 0.9212585091590881, 0.4070853292942047, -0.06908036768436432, 0.29226186871528625, -0.5274254679679871, 0.16675111651420593, -0.4622812569141388, 0.15053443610668182, -0.08812890946865082, -0.6760274767875671, 0.843112051486969, 0.33633702993392944, 0.17899230122566223, 1.0808801651000977, 0.28262999653816223, 0.14672572910785675, 0.6587652564048767, 0.5726919174194336, -0.3565528988838196, 0.4764062762260437, -0.4670201241970062, 0.5207481384277344, -0.4406365752220154, -0.25812238454818726, -0.6318384408950806, -0.2396938055753708, -0.8231212496757507, -0.09408212453126907, 0.2600204348564148, 0.06875911355018616, -0.17111580073833466, 0.3621073365211487, -0.3005116879940033, 0.1525612771511078, 0.482105016708374, -0.016464702785015106, 0.19240622222423553, -0.06631511449813843, -0.18713730573654175, -0.017451822757720947, -0.45916125178337097, -0.5234406590461731, 1.0668469667434692, 0.5368181467056274, 0.47536399960517883, -0.15322722494602203, 0.8849866390228271, 0.34654292464256287, 0.3977658450603485, -0.5691171288490295, 0.44891393184661865, -0.4037838578224182, -0.7388580441474915, -0.24696971476078033, -0.7717474699020386, -0.594603955745697, -0.09096088260412216, -0.3008136749267578, -0.3068373501300812, 0.5845801830291748, -0.14326560497283936, -0.6110556721687317, 0.09558523446321487, -0.6554767489433289, 0.9549436569213867, -0.1576995700597763, -0.14962802827358246, -0.04663766920566559, -0.6430482268333435, 0.18074098229408264, -0.024222787469625473, 0.6106671690940857, -0.24156586825847626, -0.22940802574157715, 0.8963992595672607, -0.40899860858917236, 1.0421446561813354, -0.3880414664745331, -0.1349656581878662, 0.521594762802124, -0.6663615107536316, 0.38700634241104126, 0.15971852838993073, -0.11457841843366623, 0.21795476973056793, -0.023669397458434105, -0.46081167459487915, -0.21643127501010895, 0.42820844054222107, -0.7983570098876953, -0.21292994916439056, -0.6832786798477173, -0.44429323077201843, -0.1237163096666336, 0.047724224627017975, 0.1800587922334671, 0.3608070909976959, -0.03480636328458786, 0.34513401985168457, 0.2921673059463501, -0.28657615184783936, 0.37887322902679443, 0.30779457092285156, -0.15166671574115753, -0.8936000466346741, 0.8580107688903809, 0.20097680389881134, 0.0778246521949768, 0.24229378998279572, 0.15275044739246368, -0.3697049617767334, -0.020080165937542915, -0.04966900125145912, 0.3734372556209564, -0.6951475739479065, -0.3400427997112274, -0.4027397036552429, -0.08248971402645111, -0.701447069644928, -0.20925813913345337, -0.21797651052474976, -0.4972037374973297, -0.42488327622413635, -0.515335738658905, 0.733843982219696, 0.43943628668785095, -0.38790908455848694, 0.1517917364835739, -0.6398294568061829, 0.2379179298877716, 0.07550065219402313, 0.2991717755794525, -0.23613227903842926, -0.3224341571331024, -0.33718541264533997, 0.004842568654567003, -0.19060133397579193, -0.7151404023170471, 0.4942661225795746, 0.0942658931016922, 0.39141565561294556, 0.6016955971717834, 0.21791982650756836, 0.6100837588310242, 0.2301032990217209, 0.753635048866272, 0.3371259570121765, -0.7919161319732666, 0.4086693525314331, -0.35532498359680176, 0.17586350440979004, 0.844321072101593, 0.449070543050766, -0.662000834941864, -0.5234336256980896, -0.9318628907203674, -1.3960825204849243, 0.7048972249031067, 0.17640720307826996, 0.11339124292135239, -0.1806303858757019, 0.49878376722335815, 0.1064039096236229, 0.5772382616996765, -0.9146883487701416, -0.6984420418739319, -0.3905891180038452, -0.38229429721832275, -0.2717810273170471, -0.20271016657352448, -0.22485454380512238, -0.21637623012065887, 0.8859758973121643, 0.08796815574169159, 0.21955826878547668, 0.28556787967681885, 0.28919661045074463, -0.003243362298235297, 0.3050897419452667, 0.3896218240261078, 0.5507793426513672, -0.42388302087783813, -0.19596591591835022, 0.0009060850716196001, -0.4280683398246765, -0.10283181816339493, 0.4443974196910858, -0.3868946433067322, 0.07089082151651382, 0.2720082700252533, 0.7808713316917419, 0.24093270301818848, -0.7004067897796631, 0.6492144465446472, -0.08020122349262238, -0.5482814908027649, -0.7322866916656494, -0.28384682536125183, -0.038379471749067307, 0.3399338722229004, 0.549959659576416, 0.25583040714263916, 0.13035479187965393, -0.638916552066803, 0.24358700215816498, 0.21861632168293, -0.48733508586883545, -0.1890130192041397, 0.46337562799453735, 0.13334256410598755, 0.17171929776668549, 0.6061432957649231, -0.20082269608974457, -0.3506278097629547, 0.6229622960090637, 0.2411712110042572, 1.0523333549499512, 0.26840442419052124, 0.5118588805198669, 0.4800899922847748, 0.2571263909339905, -0.1980775147676468, 0.5924538373947144, 0.2026122510433197, -0.6776395440101624, -0.44052234292030334, -0.7865085601806641, -0.05431521683931351, 0.044004056602716446, -0.9751456379890442, 0.4853859841823578, -0.5512374043464661, -0.430424302816391, 0.03722991421818733, 0.1639212965965271, -0.48696810007095337, 0.14203153550624847, 0.20636245608329773, 1.0421079397201538, -1.0634087324142456, 0.32742634415626526, 0.83241206407547, -0.7749897241592407, -0.5096884965896606, -0.23556078970432281, 0.09497208148241043, -0.484382301568985, 0.5647823214530945, 0.1106002926826477, 0.3419961929321289, -0.43179020285606384, -0.4384608864784241, -0.692574679851532, 0.9525008797645569, 0.029419317841529846, -0.3413960337638855, -0.10168179124593735, 0.2747870683670044, 0.5735737085342407, -0.5091229677200317, -0.1849617063999176, 0.44317126274108887, 0.8041307926177979, 0.23093482851982117, -0.4464693069458008, -0.14629285037517548, -0.47450828552246094, -0.33062097430229187, 0.2769031524658203, -0.9044656157493591, 0.8141929507255554, 0.08812911063432693, 0.07067812234163284, -0.16973823308944702, 0.6761943101882935, 0.18696486949920654, 0.494533896446228, 0.6317341923713684, 0.7055482864379883, 0.6450561881065369, -0.26790910959243774, 1.064415693283081, -0.561633288860321, 0.5665111541748047, 0.7296237945556641, -0.0682457983493805, 0.8787127137184143, 0.36426854133605957, -0.297500342130661, 0.4946720004081726, 0.5868456363677979, -0.3439416289329529, 0.5468057990074158, 0.030783940106630325, -0.0158428605645895, -0.1827627718448639, -0.13352730870246887, -0.21276044845581055, 0.4079701602458954, 0.23828893899917603, -0.557586133480072, 0.0704478845000267, -0.029177438467741013, 0.37859901785850525, -0.05321669206023216, -0.401045560836792, 0.7669391632080078, 0.3791264593601227, -0.38320302963256836, 0.05131685733795166, 0.08458314090967178, 0.7523065805435181, -0.7600314617156982, 0.20402732491493225, -0.3616328835487366, 0.1408746987581253, -0.2449827641248703, -0.5846174359321594, 0.43560561537742615, 0.17760241031646729, -0.12748095393180847, -0.5090956091880798, 0.6079153418540955, -0.2527424395084381, -0.7958697080612183, 0.2068815529346466, 0.32553133368492126, -0.13733705878257751, 0.12411150336265564, -0.6867762207984924, -0.359169602394104, 0.1878541260957718, -0.4233897924423218, 0.2908008098602295, 0.600888729095459, 0.1788989156484604, 0.17816530168056488, 0.5402991771697998, -0.031103022396564484, -0.3679691553115845, 0.10010311007499695, 0.8605021834373474, -0.9230966567993164, -0.7280511856079102, -0.7240015268325806, 0.549090564250946, -0.42609918117523193, -0.6471389532089233, 0.9305824637413025, 0.8517056107521057, 0.9045973420143127, 0.05440688505768776, 0.831398069858551, -0.20996467769145966, 0.6231254935264587, -0.40663132071495056, 0.5849012136459351, -0.6048335433006287, 0.23053784668445587, -0.6001031398773193, -0.796154260635376, -0.3850162923336029, 0.836761474609375, -0.577853798866272, 0.08204149454832077, 0.3759641647338867, 0.5450403094291687, 0.21794235706329346, 0.3345184624195099, -0.040564876049757004, 0.45150595903396606, -0.07769878208637238, -0.08465226739645004, 0.42025071382522583, -0.48994287848472595, 0.5849336385726929, -0.4242860972881317, -0.19656617939472198, -0.27032601833343506, -0.9825806617736816, -0.8318228125572205, -0.5465765595436096, -0.6212987303733826, -0.4781182110309601, -0.16955284774303436, 0.9877707958221436, 0.009362882003188133, -0.8297396302223206, -0.5233264565467834, 0.23056712746620178, -0.013169737532734871, -0.2545992136001587, -0.2867584526538849, 0.562053918838501, -0.27740535140037537, -0.3930063545703888, -0.19551219046115875, 0.369570791721344, 0.09047648310661316, -0.08811207860708237, 0.12669087946414948, -0.2345518320798874, 0.14435885846614838, 0.604685366153717, 0.05478084832429886, -0.3599868416786194, -0.21801210939884186, 0.1522688865661621, -0.051041197031736374, 0.1090570017695427, 0.621593177318573, -0.3083133101463318, 0.022345416247844696, 0.5225880146026611, 0.21404092013835907, 0.33833521604537964, 0.30169162154197693, 0.19468940794467926, -0.5831970572471619, 0.23312969505786896, 0.08564839512109756, 0.44926562905311584, 0.20124676823616028, -0.34286752343177795, 0.4783603847026825, 0.42159417271614075, -0.327359139919281, -0.47867482900619507, -0.4176889657974243, -1.0971866846084595, -0.29613232612609863, 1.242983341217041, -0.10154575854539871, -0.3858174681663513, 0.004071448929607868, -0.20597407221794128, 0.05638723075389862, -0.8208096027374268, 0.667760968208313, 0.9191305041313171, 0.00445369491353631, 0.0719369500875473, -0.630260169506073, 0.46628183126449585, 0.17284086346626282, -0.5773406624794006, 0.14901334047317505, 0.4929126799106598, 0.07723579555749893, 0.3559872806072235, 0.5925642848014832, -0.3218079209327698, 0.02194647677242756, 0.06274038553237915, 0.23087376356124878, 0.13247734308242798, 0.05698408558964729, -0.1984681785106659, 0.231174498796463, -0.17739446461200714, -0.08289943635463715 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
food101
null
2023-01-25T14:30:37Z
8,934
29
food-101
[ "task_categories:image-classification", "task_ids:multi-class-image-classification", "annotations_creators:crowdsourced", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:extended|other-foodspotting", "language:en", "license:unknown", "region:us" ]
2023-01-25T14:30:37Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - crowdsourced language: - en license: - unknown multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - extended|other-foodspotting task_categories: - image-classification task_ids: - multi-class-image-classification paperswithcode_id: food-101 pretty_name: Food-101 dataset_info: features: - name: image dtype: image - name: label dtype: class_label: names: '0': apple_pie '1': baby_back_ribs '2': baklava '3': beef_carpaccio '4': beef_tartare '5': beet_salad '6': beignets '7': bibimbap '8': bread_pudding '9': breakfast_burrito '10': bruschetta '11': caesar_salad '12': cannoli '13': caprese_salad '14': carrot_cake '15': ceviche '16': cheesecake '17': cheese_plate '18': chicken_curry '19': chicken_quesadilla '20': chicken_wings '21': chocolate_cake '22': chocolate_mousse '23': churros '24': clam_chowder '25': club_sandwich '26': crab_cakes '27': creme_brulee '28': croque_madame '29': cup_cakes '30': deviled_eggs '31': donuts '32': dumplings '33': edamame '34': eggs_benedict '35': escargots '36': falafel '37': filet_mignon '38': fish_and_chips '39': foie_gras '40': french_fries '41': french_onion_soup '42': french_toast '43': fried_calamari '44': fried_rice '45': frozen_yogurt '46': garlic_bread '47': gnocchi '48': greek_salad '49': grilled_cheese_sandwich '50': grilled_salmon '51': guacamole '52': gyoza '53': hamburger '54': hot_and_sour_soup '55': hot_dog '56': huevos_rancheros '57': hummus '58': ice_cream '59': lasagna '60': lobster_bisque '61': lobster_roll_sandwich '62': macaroni_and_cheese '63': macarons '64': miso_soup '65': mussels '66': nachos '67': omelette '68': onion_rings '69': oysters '70': pad_thai '71': paella '72': pancakes '73': panna_cotta '74': peking_duck '75': pho '76': pizza '77': pork_chop '78': poutine '79': prime_rib '80': pulled_pork_sandwich '81': ramen '82': ravioli '83': red_velvet_cake '84': risotto '85': samosa '86': sashimi '87': scallops '88': seaweed_salad '89': shrimp_and_grits '90': spaghetti_bolognese '91': spaghetti_carbonara '92': spring_rolls '93': steak '94': strawberry_shortcake '95': sushi '96': tacos '97': takoyaki '98': tiramisu '99': tuna_tartare '100': waffles splits: - name: train num_bytes: 3845865322 num_examples: 75750 - name: validation num_bytes: 1276249954 num_examples: 25250 download_size: 4998236572 dataset_size: 5122115276 --- # Dataset Card for Food-101 ## 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:** [Food-101 Dataset](https://data.vision.ee.ethz.ch/cvl/datasets_extra/food-101/) - **Repository:** - **Paper:** [Paper](https://data.vision.ee.ethz.ch/cvl/datasets_extra/food-101/static/bossard_eccv14_food-101.pdf) - **Leaderboard:** - **Point of Contact:** ### Dataset Summary This dataset consists of 101 food categories, with 101'000 images. For each class, 250 manually reviewed test images are provided as well as 750 training images. On purpose, the training images were not cleaned, and thus still contain some amount of noise. This comes mostly in the form of intense colors and sometimes wrong labels. All images were rescaled to have a maximum side length of 512 pixels. ### Supported Tasks and Leaderboards - `image-classification`: The goal of this task is to classify a given image of a dish into one of 101 classes. The leaderboard is available [here](https://paperswithcode.com/sota/fine-grained-image-classification-on-food-101). ### Languages English ## Dataset Structure ### Data Instances A sample from the training set is provided below: ``` { 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=384x512 at 0x276021C5EB8>, 'label': 23 } ``` ### Data Fields The data instances have the following fields: - `image`: A `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`. - `label`: an `int` classification label. <details> <summary>Class Label Mappings</summary> ```json { "apple_pie": 0, "baby_back_ribs": 1, "baklava": 2, "beef_carpaccio": 3, "beef_tartare": 4, "beet_salad": 5, "beignets": 6, "bibimbap": 7, "bread_pudding": 8, "breakfast_burrito": 9, "bruschetta": 10, "caesar_salad": 11, "cannoli": 12, "caprese_salad": 13, "carrot_cake": 14, "ceviche": 15, "cheesecake": 16, "cheese_plate": 17, "chicken_curry": 18, "chicken_quesadilla": 19, "chicken_wings": 20, "chocolate_cake": 21, "chocolate_mousse": 22, "churros": 23, "clam_chowder": 24, "club_sandwich": 25, "crab_cakes": 26, "creme_brulee": 27, "croque_madame": 28, "cup_cakes": 29, "deviled_eggs": 30, "donuts": 31, "dumplings": 32, "edamame": 33, "eggs_benedict": 34, "escargots": 35, "falafel": 36, "filet_mignon": 37, "fish_and_chips": 38, "foie_gras": 39, "french_fries": 40, "french_onion_soup": 41, "french_toast": 42, "fried_calamari": 43, "fried_rice": 44, "frozen_yogurt": 45, "garlic_bread": 46, "gnocchi": 47, "greek_salad": 48, "grilled_cheese_sandwich": 49, "grilled_salmon": 50, "guacamole": 51, "gyoza": 52, "hamburger": 53, "hot_and_sour_soup": 54, "hot_dog": 55, "huevos_rancheros": 56, "hummus": 57, "ice_cream": 58, "lasagna": 59, "lobster_bisque": 60, "lobster_roll_sandwich": 61, "macaroni_and_cheese": 62, "macarons": 63, "miso_soup": 64, "mussels": 65, "nachos": 66, "omelette": 67, "onion_rings": 68, "oysters": 69, "pad_thai": 70, "paella": 71, "pancakes": 72, "panna_cotta": 73, "peking_duck": 74, "pho": 75, "pizza": 76, "pork_chop": 77, "poutine": 78, "prime_rib": 79, "pulled_pork_sandwich": 80, "ramen": 81, "ravioli": 82, "red_velvet_cake": 83, "risotto": 84, "samosa": 85, "sashimi": 86, "scallops": 87, "seaweed_salad": 88, "shrimp_and_grits": 89, "spaghetti_bolognese": 90, "spaghetti_carbonara": 91, "spring_rolls": 92, "steak": 93, "strawberry_shortcake": 94, "sushi": 95, "tacos": 96, "takoyaki": 97, "tiramisu": 98, "tuna_tartare": 99, "waffles": 100 } ``` </details> ### Data Splits | |train|validation| |----------|----:|---------:| |# of examples|75750|25250| ## 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 AGREEMENT ================= - The Food-101 data set consists of images from Foodspotting [1] which are not property of the Federal Institute of Technology Zurich (ETHZ). Any use beyond scientific fair use must be negociated with the respective picture owners according to the Foodspotting terms of use [2]. [1] http://www.foodspotting.com/ [2] http://www.foodspotting.com/terms/ ### Citation Information ``` @inproceedings{bossard14, title = {Food-101 -- Mining Discriminative Components with Random Forests}, author = {Bossard, Lukas and Guillaumin, Matthieu and Van Gool, Luc}, booktitle = {European Conference on Computer Vision}, year = {2014} } ``` ### Contributions Thanks to [@nateraw](https://github.com/nateraw) for adding this dataset.
[ -0.6408164501190186, -0.6606151461601257, -0.09580356627702713, 0.04912293329834938, 0.033793430775403976, 0.1237153559923172, -0.19384025037288666, -0.40387725830078125, 0.5090504884719849, 0.44978904724121094, -0.5705958604812622, -0.9721087217330933, -0.7682003378868103, 0.4736517071723938, -0.1846785992383957, 0.9134671688079834, -0.17786873877048492, 0.11724593490362167, 0.0871010348200798, -0.2865320146083832, -0.3646813631057739, -0.2894282937049866, -0.554307222366333, -0.0348554328083992, 0.41096535325050354, 0.6986488699913025, 0.7404623031616211, 0.7857248187065125, 0.5478368401527405, 0.3264150321483612, -0.10234510898590088, 0.27099329233169556, -0.2996143400669098, -0.0725313201546669, -0.15283362567424774, -0.5365582704544067, -0.43453457951545715, 0.03757012262940407, 0.19743382930755615, 0.6722630858421326, 0.07991649955511093, 0.45263126492500305, 0.13281916081905365, 1.2585958242416382, -0.5177218317985535, 0.47454091906547546, -0.2927734851837158, 0.3211747705936432, -0.18709342181682587, -0.12614621222019196, -0.15764352679252625, -0.5621530413627625, -0.1527850329875946, -0.9156184792518616, 0.06391733884811401, -0.004811556544154882, 1.3097221851348877, 0.04056227207183838, -0.06893271207809448, -0.5611783266067505, -0.39664480090141296, 0.8162549138069153, -0.7318227887153625, 0.05998000130057335, 0.7096793055534363, 0.18181422352790833, -0.3258433938026428, -0.7713470458984375, -0.8255506157875061, 0.2647590637207031, -0.26078692078590393, 0.37619683146476746, -0.17663627862930298, -0.41417938470840454, 0.3173890709877014, 0.4245603084564209, -0.494184285402298, -0.09590477496385574, -0.3086669445037842, 0.18081824481487274, 0.7186431884765625, 0.19475482404232025, 0.43882670998573303, -0.3207062780857086, -0.3272542953491211, -0.4000767767429352, -0.27454301714897156, 0.5577055811882019, 0.12252582609653473, 0.3348749279975891, -0.28354379534721375, 0.6774327158927917, -0.554517388343811, 0.5316346883773804, 0.2694264054298401, -0.29207149147987366, 0.8809442520141602, -0.5503153800964355, -0.26454421877861023, -0.050734538584947586, 0.9423348307609558, 0.7377582788467407, 0.12572893500328064, 0.4472551643848419, -0.07276502996683121, 0.13596655428409576, -0.20789720118045807, -0.5715440511703491, -0.45284438133239746, 0.3999446928501129, -0.6053416132926941, -0.4428599178791046, 0.3616221845149994, -0.909774899482727, -0.06186782568693161, -0.01122430618852377, 0.3040776550769806, -0.2969149351119995, -0.10892122238874435, 0.07304470241069794, -0.5142822861671448, 0.5336269736289978, 0.12903237342834473, -0.9386934041976929, 0.23041661083698273, 0.4715593457221985, 0.7219707369804382, 0.08892043679952621, -0.2765103280544281, -0.16158176958560944, 0.355325311422348, -0.4319978356361389, 0.8797210454940796, -0.6101452112197876, -0.46491801738739014, -0.22401568293571472, 0.8544074296951294, -0.16567975282669067, -0.7024851441383362, 0.7662169337272644, -0.11940898001194, 0.10134758800268173, -0.882135808467865, -0.536472499370575, -0.22393471002578735, 0.42534738779067993, -0.7308725714683533, 1.3117873668670654, 0.23594161868095398, -0.9029982089996338, 0.7064226269721985, -0.6555352210998535, -0.6159295439720154, 0.22453024983406067, -0.396633505821228, -0.49591296911239624, -0.3276752829551697, 0.4576645791530609, 0.49663475155830383, -0.4465847611427307, 0.08848746865987778, -0.11678954213857651, -0.21980534493923187, 0.11618126183748245, -0.10164842009544373, 0.8594818711280823, 0.3292209506034851, -0.424482136964798, 0.025437617674469948, -0.7303059101104736, 0.06407430768013, 0.6872950792312622, -0.493329793214798, -0.34149864315986633, -0.13027958571910858, 0.03362713009119034, 0.06307066231966019, 0.09217745810747147, -0.2456101030111313, 0.3407977521419525, -0.2651674747467041, 0.4143340289592743, 0.6368781328201294, 0.0664636641740799, 0.3411301076412201, -0.6479083299636841, 0.26261934638023376, 0.2910841703414917, 0.3793347477912903, -0.22647333145141602, -0.7548324465751648, -0.755595326423645, -0.23927615582942963, 0.39636754989624023, 0.749130129814148, -0.6270245909690857, 1.0317174196243286, -0.5134176015853882, -0.6737083792686462, -0.4605347812175751, -0.03240172937512398, 0.1917041689157486, 0.6017773151397705, 0.3315911591053009, -0.4592229425907135, -0.694155752658844, -0.9193613529205322, 0.06685144454240799, 0.1409035325050354, 0.15081599354743958, 0.591312050819397, 0.7935901284217834, -0.15952184796333313, 0.8580962419509888, -0.7913063168525696, -0.4540739953517914, -0.5579960942268372, -0.20255029201507568, 0.5475510358810425, 0.7383269667625427, 0.6373036503791809, -0.8998515009880066, -0.925218939781189, 0.18549831211566925, -0.9496853351593018, 0.37818750739097595, 0.14056316018104553, -0.10146606713533401, 0.08836451917886734, 0.270731657743454, -0.34204548597335815, 0.7173286080360413, 0.40639767050743103, -0.46172478795051575, 0.4023377299308777, -0.16721083223819733, 0.5153970718383789, -1.254259467124939, 0.04544813185930252, 0.06394816935062408, 0.2825241684913635, -0.531978964805603, -0.4355968236923218, 0.01912628300487995, 0.06553524732589722, -0.5626844167709351, 0.45505279302597046, -0.43380963802337646, 0.030149053782224655, 0.23590081930160522, -0.41714200377464294, 0.2314770370721817, 0.6623457074165344, 0.11601263284683228, 0.7995067834854126, 0.9073150157928467, -0.5193578004837036, 0.293190062046051, 0.1969069540500641, -0.6598248481750488, 0.6510025858879089, -0.51235032081604, -0.30065861344337463, -0.2538965940475464, 0.4582178294658661, -1.163842797279358, -0.4990088939666748, 0.7066217064857483, -0.45215705037117004, 0.21820056438446045, -0.10077911615371704, -0.6952171325683594, -0.7434515357017517, -0.45683497190475464, 0.25221124291419983, 0.2639271020889282, -0.3243744969367981, 0.4416031539440155, 0.5408333539962769, 0.19460400938987732, -0.5174322724342346, -1.0536448955535889, -0.06885523349046707, -0.20352059602737427, -0.4471941292285919, 0.22629715502262115, -0.02911490574479103, -0.0019177692010998726, 0.22513531148433685, -0.1825752556324005, -0.03900442644953728, 0.09003915637731552, 0.30744850635528564, 0.1621633917093277, -0.13652878999710083, -0.22967107594013214, -0.25411275029182434, 0.0647507905960083, -0.15260927379131317, -0.04525517299771309, 0.8600037693977356, -0.21019282937049866, 0.07733350247144699, -0.695270299911499, 0.3702844977378845, 0.384600967168808, -0.26770302653312683, 0.8562564253807068, 1.0338629484176636, -0.27006661891937256, 0.015241716057062149, -0.26945075392723083, -0.0866263210773468, -0.5036938786506653, 0.3110148012638092, -0.49377351999282837, -0.5041806697845459, 0.7998263239860535, 0.07941405475139618, -0.11220517754554749, 0.8047435283660889, 0.35349977016448975, -0.41162142157554626, 0.7927247285842896, 0.032038770616054535, -0.32899489998817444, 0.4153842031955719, -0.9522678852081299, -0.14988957345485687, -0.6901851892471313, -0.6649405360221863, -0.700667679309845, -0.3907041847705841, -0.7607312202453613, -0.5090913772583008, 0.25196918845176697, -0.13326391577720642, -0.364205539226532, 0.3465600311756134, -0.8957806825637817, 0.8842227458953857, 0.6226444840431213, 0.4712652862071991, -0.07059037685394287, 0.21470680832862854, -0.2653653621673584, 0.00734678702428937, -0.7961655259132385, -0.3217717409133911, 1.0586485862731934, 0.2535809576511383, 0.688998818397522, -0.036204710602760315, 0.6899396181106567, 0.3496509790420532, 0.04092865437269211, -0.6390236020088196, 0.5469352602958679, -0.5202383995056152, -0.7102879285812378, -0.3781159520149231, -0.47493335604667664, -1.2300891876220703, 0.045552127063274384, -0.11560188233852386, -0.8933761119842529, 0.3289078176021576, -0.16109992563724518, -0.3213598430156708, 0.4556218385696411, -1.1081594228744507, 1.0674192905426025, -0.43037793040275574, -0.3687765598297119, 0.43309953808784485, -0.7702810168266296, 0.017104528844356537, 0.41091489791870117, 0.6298291087150574, -0.4184228181838989, 0.07065609097480774, 1.0826478004455566, -0.5829405784606934, 0.9889978766441345, -0.23746931552886963, 0.10078413784503937, 0.3301261067390442, -0.08954077959060669, 0.674534022808075, -0.052572909742593765, 0.07621259987354279, 0.2360030710697174, 0.06612294167280197, -0.4307675063610077, -0.5129928588867188, 0.8788992166519165, -0.8183444738388062, -0.37930962443351746, -0.638685941696167, -0.24487052857875824, 0.16210976243019104, 0.45516473054885864, 0.5087131261825562, 0.09555856883525848, 0.28860917687416077, 0.4131566882133484, 0.6765209436416626, -0.2369793802499771, 0.3390073776245117, 0.17470921576023102, -0.05968000367283821, -0.605120062828064, 1.044593095779419, 0.4893936812877655, -0.04776741936802864, 0.4850654900074005, 0.3313407003879547, -0.20866292715072632, -0.102416031062603, -0.25133493542671204, -0.02551954984664917, -0.6886710524559021, -0.3266088366508484, -0.691258430480957, -0.10348747670650482, -0.5628151297569275, -0.4547915458679199, -0.36159762740135193, -0.3241964876651764, -0.4927610158920288, -0.0950152724981308, 0.37103211879730225, 0.48642295598983765, -0.1415979266166687, 0.09194542467594147, -0.5615214705467224, 0.365274578332901, 0.15297120809555054, 0.37474948167800903, 0.1581389605998993, -0.27590420842170715, -0.1917010247707367, -0.09282664209604263, -0.35073181986808777, -0.9946079850196838, 0.68198561668396, 0.1294836699962616, 0.49085161089897156, 0.3283395767211914, -0.12944653630256653, 0.6764240860939026, 0.048335012048482895, 1.143761157989502, 0.4297521710395813, -0.5736371874809265, 0.9089653491973877, -0.18275044858455658, 0.48231181502342224, 0.8427347540855408, 0.6910211443901062, -0.6236206293106079, -0.16889077425003052, -0.6077784299850464, -1.3653730154037476, 0.7701172828674316, 0.13911603391170502, -0.12893088161945343, -0.209296315908432, 0.01180922519415617, 0.27215760946273804, 0.166233628988266, -0.8838684558868408, -1.0306038856506348, -0.3423547148704529, -0.3534505367279053, 0.09627266228199005, -0.15500444173812866, -0.18094860017299652, -0.8355503082275391, 0.7280158400535583, 0.2970714271068573, 0.14864124357700348, 0.2507455050945282, 0.2751578092575073, -0.21550463140010834, 0.18638190627098083, 0.45485720038414, 0.43112674355506897, -0.38164064288139343, 0.13996411859989166, 0.22286513447761536, -0.8164768218994141, 0.1882479041814804, -0.24600036442279816, -0.28975650668144226, -0.049347952008247375, 0.2660236358642578, 0.5599195957183838, 0.24206103384494781, -0.37504273653030396, 0.5221380591392517, -0.2617340385913849, -0.466432124376297, -0.3392866253852844, 0.11941686272621155, -0.27870574593544006, 0.17134375870227814, 0.6766877174377441, 0.06223669275641441, 0.03797853738069534, -0.7335668802261353, 0.3254377245903015, 0.11857588589191437, -0.13668608665466309, -0.05274592339992523, 0.35223624110221863, -0.034955944865942, -0.015342890284955502, 0.5041247606277466, -0.2626001536846161, -0.48752450942993164, 0.868820309638977, 0.4598161578178406, 0.7043222188949585, -0.14908209443092346, 0.44968724250793457, 0.9210793972015381, 0.29611915349960327, -0.19247877597808838, 0.6027215123176575, -0.06759122014045715, -0.8222322463989258, 0.07708914577960968, -0.6185632348060608, 0.04262324050068855, 0.3027569055557251, -0.7645629644393921, 0.12206324189901352, -0.4833027720451355, -0.36293694376945496, 0.26013872027397156, 0.1742323487997055, -0.9763599634170532, 0.3832766115665436, -0.06713917851448059, 0.8001777529716492, -1.0675300359725952, 0.7717962861061096, 0.8153209686279297, -0.6935850977897644, -1.1042344570159912, -0.04225129634141922, -0.11160340905189514, -0.8313242197036743, 0.7676774263381958, 0.17468640208244324, 0.6644824743270874, -0.20915032923221588, -0.677810549736023, -0.9066492915153503, 1.090759515762329, -0.19235675036907196, -0.39616769552230835, 0.02190522849559784, 0.43776535987854004, 0.39625757932662964, -0.31152084469795227, 0.4583117961883545, 0.6316215395927429, 0.8160602450370789, 0.3311091959476471, -0.6793631911277771, 0.09558014571666718, -0.3425477147102356, -0.06955037266016006, -0.11367270350456238, -0.9996054172515869, 0.881619393825531, -0.057238321751356125, -0.3250714838504791, -0.41491323709487915, 0.5553350448608398, 0.278839647769928, 0.4384261667728424, 0.40615856647491455, 0.7663816809654236, 0.7019064426422119, -0.3485683500766754, 1.082372784614563, -0.1508849859237671, 0.6564203500747681, 1.1247422695159912, 0.10071983188390732, 0.5504049062728882, 0.5146585702896118, -0.49892592430114746, 0.27949467301368713, 1.0218493938446045, -0.42557474970817566, 0.9018113017082214, 0.03122956119477749, 0.2529415488243103, 0.008176029659807682, -0.2758373022079468, -0.6586394309997559, 0.4727287292480469, 0.3299614191055298, -0.8405851125717163, -0.20734632015228271, -0.127264142036438, 0.29949289560317993, -0.16378237307071686, -0.34577420353889465, 0.8001077771186829, -0.19994518160820007, -0.2982368767261505, 0.8680014610290527, -0.17329449951648712, 0.5686403512954712, -0.4852612018585205, -0.03999369964003563, -0.37972480058670044, -0.04631948843598366, -0.6532623767852783, -1.3168848752975464, 0.12575353682041168, -0.19746790826320648, -0.320403516292572, 0.09408137202262878, 0.23559799790382385, -0.24429020285606384, -0.9162676930427551, 0.011482241563498974, 0.17315159738063812, 0.16052652895450592, 0.35499271750450134, -1.1776914596557617, 0.591097354888916, 0.37451285123825073, -0.35724225640296936, 0.18113575875759125, 0.555640459060669, 0.27676790952682495, 0.3938986361026764, 0.6205353140830994, 0.09033073484897614, 0.06911253184080124, -0.18595117330551147, 0.9730653762817383, -0.7225164771080017, -0.5243755578994751, -0.807122528553009, 0.5134411454200745, -0.10837731510400772, -0.2267216444015503, 0.9539655447006226, 0.9905139803886414, 1.3107240200042725, -0.3601730167865753, 1.021965503692627, -0.5636061429977417, 0.35357704758644104, -0.45703479647636414, 0.5065819025039673, -0.8323400020599365, 0.1326344758272171, -0.40193837881088257, -0.6859104037284851, -0.39879846572875977, 0.8015075922012329, -0.5825840830802917, 0.07794208079576492, 0.45578062534332275, 0.877724289894104, -0.07119948416948318, -0.03870783746242523, 0.2257058471441269, 0.2380334734916687, 0.048567287623882294, 0.46920719742774963, 0.6205007433891296, -0.7834267020225525, 0.2869865894317627, -0.7303706407546997, -0.008205009624361992, -0.24733538925647736, -0.5029287934303284, -0.43454957008361816, -0.8249921798706055, -0.46303290128707886, -0.21026961505413055, 0.03256729990243912, 1.0069001913070679, 0.7126360535621643, -1.0130809545516968, -0.30378997325897217, 0.06798472255468369, 0.130216583609581, -0.4008903503417969, -0.3161531984806061, 0.6759800910949707, -0.06441667675971985, -0.593901515007019, 0.06486989557743073, 0.13685080409049988, 0.16329151391983032, 0.31970280408859253, -0.15231208503246307, -0.375629186630249, -0.075735904276371, 0.5199856162071228, 0.46881285309791565, -0.6906073689460754, -0.05732904002070427, -0.2552209496498108, -0.031874675303697586, 0.4972992539405823, 0.14580069482326508, -0.32289379835128784, 0.5563043355941772, 0.37424659729003906, 0.3359188139438629, 0.463479220867157, 0.11437693238258362, -0.2370319962501526, -0.8286152482032776, 0.14983420073986053, -0.15182898938655853, 0.2914580702781677, 0.2317878156900406, -0.5241851210594177, 0.7087830305099487, 0.3992586135864258, -0.3368595540523529, -0.8386262059211731, -0.4371494948863983, -1.2654317617416382, -0.3427533209323883, 1.3977241516113281, -0.14976443350315094, -0.8935836553573608, 0.18529820442199707, -0.07148463279008865, 0.33445027470588684, -0.6297070384025574, 0.6556568145751953, 0.5576589107513428, -0.04656196013092995, -0.05620212480425835, -0.46017348766326904, 0.6045411229133606, 0.11766410619020462, -0.9933585524559021, -0.05953550338745117, 0.15654142200946808, 0.47483110427856445, 0.23194245994091034, 0.6173763871192932, -0.08966831117868423, 0.1012122854590416, 0.09611009806394577, 0.21981729567050934, 0.18242911994457245, -0.13788869976997375, 0.23326344788074493, 0.16843156516551971, -0.26799559593200684, -0.5805426836013794 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
wmt14
null
2023-04-05T13:43:47Z
8,731
6
wmt-2014
[ "task_categories:translation", "annotations_creators:no-annotation", "language_creators:found", "multilinguality:translation", "size_categories:10M<n<100M", "source_datasets:extended|europarl_bilingual", "source_datasets:extended|giga_fren", "source_datasets:extended|news_commentary", "source_datasets:extended|un_multi", "source_datasets:extended|hind_encorp", "language:cs", "language:de", "language:en", "language:fr", "language:hi", "language:ru", "license:unknown", "region:us" ]
2023-04-05T13:43:47Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - no-annotation language_creators: - found language: - cs - de - en - fr - hi - ru license: - unknown multilinguality: - translation size_categories: - 10M<n<100M source_datasets: - extended|europarl_bilingual - extended|giga_fren - extended|news_commentary - extended|un_multi - extended|hind_encorp task_categories: - translation task_ids: [] pretty_name: WMT14 paperswithcode_id: wmt-2014 dataset_info: - config_name: cs-en features: - name: translation dtype: translation: languages: - cs - en splits: - name: train num_bytes: 280992794 num_examples: 953621 - name: validation num_bytes: 702473 num_examples: 3000 - name: test num_bytes: 757817 num_examples: 3003 download_size: 1696003559 dataset_size: 282453084 - config_name: de-en features: - name: translation dtype: translation: languages: - de - en splits: - name: train num_bytes: 1358410408 num_examples: 4508785 - name: validation num_bytes: 736415 num_examples: 3000 - name: test num_bytes: 777334 num_examples: 3003 download_size: 1696003559 dataset_size: 1359924157 - config_name: fr-en features: - name: translation dtype: translation: languages: - fr - en splits: - name: train num_bytes: 14752554924 num_examples: 40836715 - name: validation num_bytes: 744447 num_examples: 3000 - name: test num_bytes: 838857 num_examples: 3003 download_size: 6658118909 dataset_size: 14754138228 - config_name: hi-en features: - name: translation dtype: translation: languages: - hi - en splits: - name: train num_bytes: 1936035 num_examples: 32863 - name: validation num_bytes: 181465 num_examples: 520 - name: test num_bytes: 1075016 num_examples: 2507 download_size: 46879684 dataset_size: 3192516 - config_name: ru-en features: - name: translation dtype: translation: languages: - ru - en splits: - name: train num_bytes: 433210270 num_examples: 1486965 - name: validation num_bytes: 977946 num_examples: 3000 - name: test num_bytes: 1087746 num_examples: 3003 download_size: 1047396736 dataset_size: 435275962 --- # Dataset Card for "wmt14" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [http://www.statmt.org/wmt14/translation-task.html](http://www.statmt.org/wmt14/translation-task.html) - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 1.70 GB - **Size of the generated dataset:** 282.95 MB - **Total amount of disk used:** 1.98 GB ### Dataset Summary <div class="course-tip course-tip-orange bg-gradient-to-br dark:bg-gradient-to-r before:border-orange-500 dark:before:border-orange-800 from-orange-50 dark:from-gray-900 to-white dark:to-gray-950 border border-orange-50 text-orange-700 dark:text-gray-400"> <p><b>Warning:</b> There are issues with the Common Crawl corpus data (<a href="https://www.statmt.org/wmt13/training-parallel-commoncrawl.tgz">training-parallel-commoncrawl.tgz</a>):</p> <ul> <li>Non-English files contain many English sentences.</li> <li>Their "parallel" sentences in English are not aligned: they are uncorrelated with their counterpart.</li> </ul> <p>We have contacted the WMT organizers.</p> </div> Translation dataset based on the data from statmt.org. Versions exist for different years using a combination of data sources. The base `wmt` allows you to create a custom dataset by choosing your own data/language pair. This can be done as follows: ```python from datasets import inspect_dataset, load_dataset_builder inspect_dataset("wmt14", "path/to/scripts") builder = load_dataset_builder( "path/to/scripts/wmt_utils.py", language_pair=("fr", "de"), subsets={ datasets.Split.TRAIN: ["commoncrawl_frde"], datasets.Split.VALIDATION: ["euelections_dev2019"], }, ) # Standard version builder.download_and_prepare() ds = builder.as_dataset() # Streamable version ds = builder.as_streaming_dataset() ``` ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances #### cs-en - **Size of downloaded dataset files:** 1.70 GB - **Size of the generated dataset:** 282.95 MB - **Total amount of disk used:** 1.98 GB An example of 'train' looks as follows. ``` ``` ### Data Fields The data fields are the same among all splits. #### cs-en - `translation`: a multilingual `string` variable, with possible languages including `cs`, `en`. ### Data Splits |name |train |validation|test| |-----|-----:|---------:|---:| |cs-en|953621| 3000|3003| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{bojar-EtAl:2014:W14-33, author = {Bojar, Ondrej and Buck, Christian and Federmann, Christian and Haddow, Barry and Koehn, Philipp and Leveling, Johannes and Monz, Christof and Pecina, Pavel and Post, Matt and Saint-Amand, Herve and Soricut, Radu and Specia, Lucia and Tamchyna, Ale {s}}, title = {Findings of the 2014 Workshop on Statistical Machine Translation}, booktitle = {Proceedings of the Ninth Workshop on Statistical Machine Translation}, month = {June}, year = {2014}, address = {Baltimore, Maryland, USA}, publisher = {Association for Computational Linguistics}, pages = {12--58}, url = {http://www.aclweb.org/anthology/W/W14/W14-3302} } ``` ### Contributions Thanks to [@thomwolf](https://github.com/thomwolf), [@patrickvonplaten](https://github.com/patrickvonplaten) for adding this dataset.
[ -0.5535061955451965, -0.4909695088863373, 0.1846315711736679, 0.21369591355323792, -0.35625290870666504, 0.008925693109631538, -0.49008020758628845, -0.4229580760002136, 0.6035454273223877, 0.34769442677497864, -0.7895054221153259, -0.9443359375, -0.6303915977478027, 0.2687329053878784, -0.1140325665473938, 1.2087992429733276, -0.2935788035392761, -0.034116581082344055, -0.39302676916122437, -0.3911454677581787, -0.44714340567588806, -0.43631091713905334, -0.3071914315223694, -0.2257334589958191, 0.46155408024787903, 0.5237510800361633, 0.6243627667427063, 1.000610113143921, 0.6797555088996887, 0.3003247380256653, 0.022263633087277412, 0.07043516635894775, -0.43512484431266785, -0.1975453943014145, 0.0034520954359322786, -0.26821771264076233, -0.6213246583938599, 0.07495122402906418, 0.5738946199417114, 0.7066246867179871, -0.1831834465265274, 0.5933146476745605, 0.108517587184906, 0.8281789422035217, -0.2651451528072357, 0.5171582698822021, -0.30821162462234497, -0.16398289799690247, -0.47195935249328613, -0.07377290725708008, -0.03619039058685303, -0.3588639795780182, -0.07742707431316376, -0.6733120083808899, 0.14324504137039185, 0.0007431324338540435, 0.8739629983901978, 0.1971377283334732, -0.15049317479133606, -0.11253920942544937, -0.2896214723587036, 0.711246132850647, -0.6833292245864868, 0.15803878009319305, 0.629890501499176, 0.18812265992164612, -0.1260189414024353, -0.7108613848686218, -0.46491682529449463, 0.17361879348754883, -0.15390312671661377, 0.29706451296806335, -0.11439616233110428, -0.3747539520263672, 0.4986254572868347, 0.5539773106575012, -0.8009998202323914, -0.1661711484193802, -0.5387091636657715, -0.14499874413013458, 1.067570447921753, 0.351106733083725, 0.2340233474969864, -0.28984299302101135, -0.0482601597905159, -0.5329989194869995, -0.4266630709171295, -0.05424123257398605, 0.5149219036102295, 0.6376453638076782, -0.9424382448196411, 0.6307560205459595, -0.16842319071292877, 0.5315397381782532, -0.2528049647808075, 0.0527639165520668, 0.8292474746704102, -0.5724663138389587, -0.1528104841709137, -0.15334729850292206, 1.0393232107162476, 0.5953721404075623, 0.07362499088048935, -0.01830958016216755, 0.05270926654338837, -0.07425016164779663, -0.13447098433971405, -0.8348270058631897, -0.2585889399051666, 0.49664613604545593, -0.6786918640136719, -0.4308105707168579, 0.0854400172829628, -1.1430668830871582, -0.18832890689373016, -0.44731131196022034, 0.26465845108032227, -0.2630769610404968, -0.4460465908050537, 0.1578284353017807, -0.3316578269004822, 0.13355311751365662, 0.15701185166835785, -0.46095535159111023, 0.3419579863548279, 0.4494578540325165, 0.7835930585861206, -0.1901295930147171, -0.45121660828590393, -0.2155095785856247, -0.04568822309374809, -0.07297198474407196, 0.5234528183937073, -0.3183547258377075, -0.4106678366661072, -0.031830623745918274, 0.5353364944458008, -0.17985859513282776, -0.33030667901039124, 0.8560776114463806, -0.02370500937104225, 0.453946590423584, -0.64885413646698, -0.42759639024734497, -0.000474075524834916, 0.2933448851108551, -0.750494658946991, 1.3454023599624634, 0.19678106904029846, -0.9525803923606873, 0.10407864302396774, -0.8912364840507507, -0.5046349763870239, 0.07052262127399445, 0.05349685996770859, -0.5723296999931335, -0.15074162185192108, 0.12575383484363556, 0.5005263686180115, -0.46950429677963257, 0.3258601129055023, -0.39024806022644043, -0.16212058067321777, 0.205566868185997, -0.07713823020458221, 1.2832261323928833, 0.23116663098335266, -0.19158683717250824, 0.05739001929759979, -1.0923233032226562, -0.12200833112001419, 0.5032857656478882, -0.2616293430328369, -0.08540001511573792, -0.23639556765556335, 0.5117417573928833, 0.20581792294979095, 0.3332839608192444, -0.503017246723175, 0.3643805980682373, -0.0696592628955841, 0.4018856883049011, 0.6818872690200806, -0.04872393235564232, 0.2803334593772888, -0.4661143124103546, 0.40302032232284546, 0.154433473944664, 0.31201794743537903, 0.010013881139457226, -0.6523817777633667, -0.5203119516372681, -0.12097932398319244, 0.4754787087440491, 0.5803998112678528, -0.7243737578392029, 0.787379264831543, -0.5881256461143494, -0.8211033940315247, -0.4967527687549591, 0.02134542167186737, 0.2561582326889038, 0.5373835563659668, 0.568560779094696, -0.3770386874675751, -0.8385602831840515, -0.6988438367843628, 0.08380957692861557, -0.0905299186706543, 0.14570485055446625, 0.410646915435791, 0.8612436056137085, -0.20691078901290894, 0.6146215796470642, -0.7431466579437256, -0.3371168375015259, -0.28720101714134216, -0.11321721971035004, 0.2752467393875122, 0.7662655115127563, 0.5907447338104248, -0.7619367837905884, -0.5129537582397461, -0.22469229996204376, -0.7662854194641113, -0.05732329189777374, 0.07640697062015533, -0.358681321144104, 0.12452453374862671, 0.2728300094604492, -0.5898379683494568, 0.43029558658599854, 0.5871071219444275, -0.4747430980205536, 0.4169958829879761, -0.054225217550992966, 0.09484421461820602, -1.4570845365524292, 0.39672529697418213, 0.11626139283180237, -0.03401372209191322, -0.4083762466907501, -0.20617137849330902, -0.10750512033700943, -0.10451281815767288, -0.29419371485710144, 0.6306905746459961, -0.24873214960098267, 0.21970777213573456, 0.16572238504886627, -0.01962439715862274, 0.004653901793062687, 0.5909426212310791, -0.03762837499380112, 0.5550122857093811, 0.8193120360374451, -0.5153693556785583, 0.3464289605617523, 0.6039097309112549, -0.20104408264160156, 0.5951669812202454, -0.6531895399093628, 0.017206013202667236, -0.142704576253891, 0.3482573926448822, -0.7741897106170654, -0.45762813091278076, 0.5908076763153076, -0.6265597939491272, 0.4403555691242218, -0.36529940366744995, -0.7976971864700317, -0.6404749155044556, -0.5017529726028442, 0.18427301943302155, 0.47252756357192993, -0.29046502709388733, 0.3228406012058258, 0.6239800453186035, 0.19584715366363525, -0.3115655481815338, -0.948708176612854, 0.08454672992229462, -0.3014724850654602, -0.619286298751831, 0.4283188581466675, -0.4011058509349823, 0.06001250445842743, 0.14796331524848938, 0.19735033810138702, -0.005435032770037651, -0.04607744514942169, 0.1858464479446411, 0.2768546938896179, 0.003990124445408583, -0.059885863214731216, -0.15627449750900269, -0.1626301109790802, 0.03618547320365906, -0.28527408838272095, 0.42138949036598206, -0.02469952031970024, -0.09874223172664642, -0.3768562972545624, 0.23989449441432953, 0.39618295431137085, -0.29627683758735657, 0.7778410315513611, 0.9929922223091125, -0.36612042784690857, 0.24644285440444946, -0.38579750061035156, -0.10925547033548355, -0.4037570655345917, 0.29383665323257446, -0.10841498523950577, -0.6113144159317017, 0.8517256379127502, 0.1813359409570694, 0.15767216682434082, 0.71346515417099, 0.6412935256958008, -0.07283302396535873, 0.8028750419616699, 0.35159066319465637, -0.11964700371026993, 0.5341780781745911, -0.532106876373291, -0.33582669496536255, -0.8248802423477173, -0.32667502760887146, -0.7294004559516907, -0.5086554884910583, -1.1065049171447754, -0.4555984437465668, 0.0665498822927475, -0.2384391874074936, -0.30965298414230347, 0.6049387454986572, -0.7427182793617249, 0.2664533853530884, 0.539156973361969, 0.18893297016620636, 0.007185249589383602, 0.08002658933401108, -0.03873173147439957, -0.09999950975179672, -0.5976867079734802, -0.3385186791419983, 1.4052374362945557, 0.3472943603992462, 0.41470029950141907, -0.020080238580703735, 0.7712016701698303, 0.15282019972801208, 0.030425192788243294, -0.3313426375389099, 0.5586456060409546, -0.18005722761154175, -0.5299079418182373, -0.23261015117168427, -0.6375213265419006, -1.0312460660934448, -0.05046842247247696, -0.15911965072155, -0.6112384796142578, 0.46970728039741516, 0.012651053257286549, 0.13345319032669067, 0.367790549993515, -0.7379981279373169, 1.1258809566497803, -0.1295800507068634, -0.44837167859077454, 0.10564646869897842, -1.0215859413146973, 0.08149383217096329, 0.15440958738327026, 0.46645647287368774, -0.33530354499816895, 0.05473940074443817, 1.168852686882019, -0.6644619107246399, 0.9274442195892334, -0.479236364364624, 0.18295340240001678, 0.38631030917167664, -0.2293519526720047, 0.5571250915527344, -0.07332593202590942, -0.17881934344768524, 0.5556655526161194, 0.17403708398342133, -0.48082420229911804, -0.29100632667541504, 0.5702604651451111, -0.720557689666748, -0.008016439154744148, -0.4453215003013611, -0.6393936276435852, -0.10164791345596313, 0.39438191056251526, 0.26369646191596985, 0.41498038172721863, -0.14380356669425964, 0.25808456540107727, 0.5454957485198975, -0.3006340563297272, 0.31221622228622437, 0.2963535785675049, -0.09408941119909286, -0.7573660016059875, 1.0583219528198242, 0.2764630615711212, -0.11502043902873993, 0.26514577865600586, 0.33683958649635315, -0.29111528396606445, -0.3909742534160614, -0.6817504167556763, 0.27597397565841675, -0.4917012155056, -0.40961411595344543, -0.549202561378479, -0.036934275180101395, -0.5482708215713501, 0.16907231509685516, -0.3185264468193054, -0.6590469479560852, -0.26060378551483154, -0.20781353116035461, 0.8160939812660217, 0.4266018569469452, -0.5251739025115967, 0.11277014017105103, -0.645506739616394, 0.07089782506227493, -0.3166913092136383, 0.5273405313491821, -0.0029830995481461287, -0.47847220301628113, -0.5715758800506592, 0.17031089961528778, -0.283998042345047, -0.5347429513931274, 0.3417730927467346, -0.06626617163419724, 0.42667344212532043, -0.0748240277171135, 0.15681961178779602, 0.731216311454773, -0.3351081311702728, 0.8858733773231506, 0.043837908655405045, -0.6185819506645203, 0.5796019434928894, -0.5253224968910217, 0.31942665576934814, 0.8577528595924377, 0.4858818054199219, -0.5705918073654175, -0.1830388754606247, -0.8482821583747864, -0.8775846362113953, 0.831903874874115, 0.431327223777771, 0.12256739288568497, 0.06599798798561096, 0.21623651683330536, -0.09117690473794937, 0.3337804675102234, -0.657390296459198, -0.8114548325538635, -0.27590519189834595, -0.48718705773353577, -0.04365136846899986, -0.10703402012586594, -0.2885836362838745, -0.6317926049232483, 0.8270285725593567, 0.011674536392092705, 0.34383121132850647, 0.1737571507692337, 0.05824149027466774, -0.16209496557712555, 0.038466352969408035, 0.5083371996879578, 0.533476710319519, -0.40687593817710876, -0.07910247892141342, 0.051152102649211884, -0.8125490546226501, -0.16115139424800873, 0.42374590039253235, -0.19328200817108154, 0.012137585319578648, 0.3502379357814789, 0.7494751214981079, 0.11017337441444397, -0.4172447919845581, 0.5346119999885559, -0.14613878726959229, -0.44078922271728516, -0.28190523386001587, -0.24979621171951294, 0.1164143830537796, 0.01466815359890461, 0.13180670142173767, 0.005966660566627979, -0.002917250618338585, -0.3483916223049164, 0.2587999403476715, 0.09729461371898651, -0.30117934942245483, -0.5048571825027466, 0.6271109580993652, 0.1465984731912613, 0.02916673943400383, 0.5717860460281372, -0.2745877206325531, -0.4574708640575409, 0.6158199906349182, 0.24471049010753632, 0.7944670915603638, -0.04065222293138504, 0.11808665096759796, 0.8164592385292053, 0.3890574276447296, -0.045386143028736115, 0.525472104549408, -0.09798666834831238, -0.6054384112358093, -0.2021723985671997, -0.5328947901725769, -0.1874905824661255, 0.1389131397008896, -0.9372918009757996, 0.499751478433609, -0.14286579191684723, -0.09652452170848846, -0.11511033028364182, 0.37926727533340454, -0.954815149307251, 0.11597694456577301, -0.09985681623220444, 1.0448989868164062, -1.0170456171035767, 0.6649859547615051, 0.7348562479019165, -0.8427066802978516, -0.7747496962547302, -0.18732739984989166, 0.16453512012958527, -0.6656680703163147, 0.19002783298492432, 0.014790074899792671, 0.6605122089385986, 0.010569121688604355, -0.8099527359008789, -0.7885650396347046, 1.1846182346343994, 0.27327990531921387, -0.3674161732196808, 0.2038709670305252, 0.42433902621269226, 0.5979383587837219, -0.1300022006034851, 0.2070191502571106, 0.5338747501373291, 0.7857326865196228, 0.23129138350486755, -0.8150575160980225, 0.3120783567428589, -0.46135297417640686, -0.20193251967430115, 0.14899304509162903, -0.8128318190574646, 0.52937251329422, 0.08622048795223236, -0.04690107703208923, -0.14967812597751617, 0.5228668451309204, 0.24898570775985718, 0.3340966999530792, 0.22710126638412476, 0.8725308775901794, 0.8751220703125, -0.2813584506511688, 1.1294493675231934, -0.2655676305294037, 0.464459627866745, 1.0782192945480347, 0.000736129586584866, 0.6464740037918091, 0.3877257704734802, -0.5179582238197327, 0.3938077688217163, 0.7941142916679382, -0.42516136169433594, 0.4069986641407013, 0.17132937908172607, 0.140210822224617, -0.03624021261930466, -0.21472258865833282, -0.6921263337135315, 0.23438338935375214, 0.22591851651668549, -0.2744499444961548, -0.21387232840061188, 0.05086338520050049, 0.30573204159736633, -0.16094937920570374, -0.15134146809577942, 0.7478684782981873, 0.07438879460096359, -0.27199769020080566, 0.49892956018447876, -0.08784262090921402, 0.5579342246055603, -0.5968427658081055, 0.0969332829117775, -0.25270378589630127, 0.10175547003746033, -0.4824347496032715, -1.0290753841400146, 0.5992934703826904, 0.0003680212248582393, -0.3673633635044098, -0.4045076072216034, 0.4952162504196167, -0.5355601906776428, -0.7613525986671448, 0.1926557719707489, 0.41614505648612976, 0.44956499338150024, 0.16860415041446686, -1.1431646347045898, 0.5348473787307739, 0.1133444607257843, -0.36588630080223083, 0.47178220748901367, 0.6448611617088318, -0.04209316521883011, 0.3051055073738098, 0.754675030708313, 0.09512142837047577, -0.13009372353553772, 0.2641468346118927, 0.8920390009880066, -0.5989043116569519, -0.31115543842315674, -0.7050766348838806, 0.8221430778503418, -0.2543085813522339, -0.3790583312511444, 0.8231852054595947, 1.0805530548095703, 1.1252707242965698, -0.07077736407518387, 0.815473735332489, -0.5522677302360535, 0.6195180416107178, -0.21797078847885132, 0.795606791973114, -0.7512374520301819, 0.007758907973766327, -0.54121333360672, -0.6794599294662476, -0.4405321180820465, 0.3903839588165283, -0.1419748216867447, 0.0732041597366333, 0.47422945499420166, 0.8482412099838257, -0.03248973563313484, 0.03943724185228348, -0.0174260251224041, 0.3001863360404968, 0.27845993638038635, 0.47336581349372864, 0.23773200809955597, -0.9583880305290222, 0.6754867434501648, -0.5881710052490234, -0.1323566883802414, 0.05103754997253418, -0.9549736380577087, -0.8327285051345825, -1.0702178478240967, -0.6627822518348694, -0.6968353390693665, -0.1717274934053421, 1.1094895601272583, 0.5359202027320862, -0.856784999370575, -0.45521053671836853, -0.09960263222455978, 0.13301381468772888, -0.16285665333271027, -0.29148560762405396, 0.7110191583633423, 0.08474249392747879, -0.7586781978607178, -0.011672948487102985, -0.04710327088832855, 0.1321757584810257, 0.04483070224523544, -0.09925985336303711, -0.2682146430015564, -0.34432682394981384, 0.43101444840431213, 0.34517502784729004, -0.2139238715171814, 0.09174523502588272, -0.14381438493728638, -0.025470688939094543, 0.2066335678100586, 0.4405987560749054, -0.3587665557861328, 0.23962867259979248, 0.5353903770446777, 0.4601784944534302, 0.692572832107544, -0.13153527677059174, 0.31165266036987305, -0.7330697774887085, 0.2339208722114563, 0.017278233543038368, 0.4256117641925812, 0.42581143975257874, -0.30176636576652527, 0.9602915644645691, 0.5549902319908142, -0.4720189869403839, -1.0451315641403198, -0.2634163498878479, -1.2685068845748901, 0.02362564578652382, 1.1484873294830322, 0.08044625073671341, -0.48250967264175415, -0.030970551073551178, -0.12840186059474945, 0.2915036380290985, -0.4617272913455963, 0.3832387328147888, 0.7946323752403259, 0.13929373025894165, 0.08047076314687729, -0.646693229675293, 0.5605767369270325, -0.06152202934026718, -1.005295991897583, 0.30469629168510437, 0.30011627078056335, 0.3126344382762909, 0.08026643097400665, 0.6395367980003357, -0.3806174397468567, 0.025081591680645943, -0.073807492852211, 0.3414888381958008, -0.28253692388534546, 0.04520740360021591, -0.25528955459594727, -0.3231144845485687, -0.40725621581077576, -0.2832396626472473 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
multi_nli
null
2023-04-05T10:10:15Z
8,691
43
multinli
[ "task_categories:text-classification", "task_ids:natural-language-inference", "task_ids:multi-input-text-classification", "annotations_creators:crowdsourced", "language_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "license:cc-by-3.0", "license:cc-by-sa-3.0", "license:mit", "license:other", "region:us" ]
2023-04-05T10:10:15Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - crowdsourced - found language: - en license: - cc-by-3.0 - cc-by-sa-3.0 - mit - other multilinguality: - monolingual size_categories: - 100K<n<1M source_datasets: - original task_categories: - text-classification task_ids: - natural-language-inference - multi-input-text-classification paperswithcode_id: multinli pretty_name: Multi-Genre Natural Language Inference license_details: Open Portion of the American National Corpus dataset_info: features: - name: promptID dtype: int32 - name: pairID dtype: string - name: premise dtype: string - name: premise_binary_parse dtype: string - name: premise_parse dtype: string - name: hypothesis dtype: string - name: hypothesis_binary_parse dtype: string - name: hypothesis_parse dtype: string - name: genre dtype: string - name: label dtype: class_label: names: '0': entailment '1': neutral '2': contradiction splits: - name: train num_bytes: 410211586 num_examples: 392702 - name: validation_matched num_bytes: 10063939 num_examples: 9815 - name: validation_mismatched num_bytes: 10610221 num_examples: 9832 download_size: 226850426 dataset_size: 430885746 --- # Dataset Card for Multi-Genre Natural Language Inference (MultiNLI) ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [https://www.nyu.edu/projects/bowman/multinli/](https://www.nyu.edu/projects/bowman/multinli/) - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 226.85 MB - **Size of the generated dataset:** 76.95 MB - **Total amount of disk used:** 303.81 MB ### Dataset Summary The Multi-Genre Natural Language Inference (MultiNLI) corpus is a crowd-sourced collection of 433k sentence pairs annotated with textual entailment information. The corpus is modeled on the SNLI corpus, but differs in that covers a range of genres of spoken and written text, and supports a distinctive cross-genre generalization evaluation. The corpus served as the basis for the shared task of the RepEval 2017 Workshop at EMNLP in Copenhagen. ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages The dataset contains samples in English only. ## Dataset Structure ### Data Instances - **Size of downloaded dataset files:** 226.85 MB - **Size of the generated dataset:** 76.95 MB - **Total amount of disk used:** 303.81 MB Example of a data instance: ``` { "promptID": 31193, "pairID": "31193n", "premise": "Conceptually cream skimming has two basic dimensions - product and geography.", "premise_binary_parse": "( ( Conceptually ( cream skimming ) ) ( ( has ( ( ( two ( basic dimensions ) ) - ) ( ( product and ) geography ) ) ) . ) )", "premise_parse": "(ROOT (S (NP (JJ Conceptually) (NN cream) (NN skimming)) (VP (VBZ has) (NP (NP (CD two) (JJ basic) (NNS dimensions)) (: -) (NP (NN product) (CC and) (NN geography)))) (. .)))", "hypothesis": "Product and geography are what make cream skimming work. ", "hypothesis_binary_parse": "( ( ( Product and ) geography ) ( ( are ( what ( make ( cream ( skimming work ) ) ) ) ) . ) )", "hypothesis_parse": "(ROOT (S (NP (NN Product) (CC and) (NN geography)) (VP (VBP are) (SBAR (WHNP (WP what)) (S (VP (VBP make) (NP (NP (NN cream)) (VP (VBG skimming) (NP (NN work)))))))) (. .)))", "genre": "government", "label": 1 } ``` ### Data Fields The data fields are the same among all splits. - `promptID`: Unique identifier for prompt - `pairID`: Unique identifier for pair - `{premise,hypothesis}`: combination of `premise` and `hypothesis` - `{premise,hypothesis} parse`: Each sentence as parsed by the Stanford PCFG Parser 3.5.2 - `{premise,hypothesis} binary parse`: parses in unlabeled binary-branching format - `genre`: a `string` feature. - `label`: a classification label, with possible values including `entailment` (0), `neutral` (1), `contradiction` (2). Dataset instances which don't have any gold label are marked with -1 label. Make sure you filter them before starting the training using `datasets.Dataset.filter`. ### Data Splits |train |validation_matched|validation_mismatched| |-----:|-----------------:|--------------------:| |392702| 9815| 9832| ## Dataset Creation ### Curation Rationale They constructed MultiNLI so as to make it possible to explicitly evaluate models both on the quality of their sentence representations within the training domain and on their ability to derive reasonable representations in unfamiliar domains. ### Source Data #### Initial Data Collection and Normalization They created each sentence pair by selecting a premise sentence from a preexisting text source and asked a human annotator to compose a novel sentence to pair with it as a hypothesis. #### 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](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information The majority of the corpus is released under the OANC’s license, which allows all content to be freely used, modified, and shared under permissive terms. The data in the FICTION section falls under several permissive licenses; Seven Swords is available under a Creative Commons Share-Alike 3.0 Unported License, and with the explicit permission of the author, Living History and Password Incorrect are available under Creative Commons Attribution 3.0 Unported Licenses; the remaining works of fiction are in the public domain in the United States (but may be licensed differently elsewhere). ### Citation Information ``` @InProceedings{N18-1101, author = "Williams, Adina and Nangia, Nikita and Bowman, Samuel", title = "A Broad-Coverage Challenge Corpus for Sentence Understanding through Inference", booktitle = "Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers)", year = "2018", publisher = "Association for Computational Linguistics", pages = "1112--1122", location = "New Orleans, Louisiana", url = "http://aclweb.org/anthology/N18-1101" } ``` ### Contributions Thanks to [@bhavitvyamalik](https://github.com/bhavitvyamalik), [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf), [@mariamabarham](https://github.com/mariamabarham) for adding this dataset.
[ -0.42698895931243896, -0.7985323071479797, 0.3206847012042999, 0.26323261857032776, -0.0455058254301548, -0.06668208539485931, -0.42465516924858093, -0.45735499262809753, 0.5110445618629456, 0.5760070085525513, -0.7286577224731445, -0.8923567533493042, -0.5116445422172546, 0.25005418062210083, -0.14710722863674164, 1.2029390335083008, 0.02939114347100258, -0.13848146796226501, -0.3456370532512665, -0.3619408905506134, -0.06635347008705139, -0.5839955806732178, -0.43413329124450684, -0.13822124898433685, 0.45540446043014526, 0.34252890944480896, 0.6348583102226257, 0.7441055774688721, 0.2493542581796646, 0.28415340185165405, -0.09606561809778214, 0.017473211511969566, -0.35647228360176086, -0.09567521512508392, 0.0644879937171936, -0.4241391718387604, -0.4603714048862457, 0.1357189565896988, 0.7012341022491455, 0.8315478563308716, -0.12351300567388535, 0.3426094949245453, -0.05260203406214714, 0.6923519968986511, -0.4711882770061493, 0.31606343388557434, -0.32093265652656555, -0.06815110146999359, -0.35079875588417053, 0.20659597218036652, -0.3078821003437042, -0.30889075994491577, 0.047530531883239746, -0.7465565800666809, 0.3674323260784149, 0.19097381830215454, 1.0383614301681519, 0.10946681350469589, -0.30354878306388855, -0.23348373174667358, -0.21874570846557617, 0.816253125667572, -0.8312448859214783, 0.26164838671684265, 0.48811566829681396, 0.0866621658205986, -0.08662229031324387, -0.7140029072761536, -0.7468248605728149, -0.08143430203199387, -0.3667978048324585, 0.2529364228248596, -0.08859019726514816, -0.08629045635461807, 0.5205386877059937, 0.44974687695503235, -0.6759414076805115, -0.11873452365398407, -0.4335440695285797, -0.2956450581550598, 0.9191936254501343, -0.006014570593833923, 0.3684528172016144, -0.4790934920310974, -0.2997633218765259, -0.19073092937469482, -0.40117213129997253, 0.20409494638442993, 0.5434410572052002, 0.48955729603767395, -0.5828617215156555, 0.587391197681427, -0.11437394469976425, 0.6863577961921692, -0.22387070953845978, -0.11034853011369705, 0.744661271572113, -0.6342459321022034, -0.19615094363689423, 0.06755096465349197, 1.1196229457855225, 0.31518828868865967, 0.1787489950656891, 0.06085028871893883, 0.07114534825086594, 0.07649272680282593, -0.08328679949045181, -0.6462029218673706, -0.22610192000865936, 0.5414023995399475, -0.5337213277816772, -0.2603274881839752, 0.14579229056835175, -1.0681123733520508, -0.2668822109699249, -0.32176414132118225, 0.08257339894771576, -0.5244329571723938, -0.43373948335647583, 0.18444693088531494, -0.3901839256286621, 0.34906238317489624, -0.09855613112449646, -0.7213390469551086, 0.37272608280181885, 0.5907107591629028, 0.7806523442268372, -0.06800103187561035, -0.39368730783462524, -0.33956485986709595, -0.03594859316945076, -0.0233070757240057, 0.6106565594673157, -0.4043130874633789, -0.2574322521686554, 0.009314179420471191, 0.30472806096076965, -0.32423001527786255, -0.29797855019569397, 0.9558179378509521, -0.16494417190551758, 0.4777044951915741, -0.3813343644142151, -0.6425724625587463, -0.245558500289917, 0.23464380204677582, -0.7983076572418213, 1.2008321285247803, 0.1450122445821762, -1.0071879625320435, 0.2148013561964035, -0.7447775602340698, -0.5209267735481262, -0.13897603750228882, -0.17690880596637726, -0.5184950232505798, -0.17542539536952972, 0.21067702770233154, 0.45894816517829895, -0.41784095764160156, 0.40019771456718445, -0.4413975477218628, -0.08259591460227966, 0.18123801052570343, -0.06279296427965164, 1.3664562702178955, 0.09023076295852661, -0.279265820980072, 0.1700214445590973, -1.0024609565734863, -0.13629232347011566, 0.3687693774700165, -0.13016977906227112, -0.18896140158176422, -0.3286949396133423, 0.40398016571998596, 0.08321224898099899, 0.08449161052703857, -0.6495011448860168, 0.14964811503887177, -0.47654590010643005, 0.5306254029273987, 0.4907538592815399, -0.05481066554784775, 0.36066144704818726, -0.31447678804397583, 0.40659746527671814, 0.1175653338432312, 0.08193375915288925, -0.16027621924877167, -0.6875311136245728, -0.6837839484214783, -0.31397825479507446, 0.5544878840446472, 0.6981126666069031, -0.7100354433059692, 0.7405408024787903, -0.3436327576637268, -0.519705593585968, -0.6347665786743164, 0.07728632539510727, 0.4912192225456238, 0.58122318983078, 0.46526363492012024, -0.09260150790214539, -0.5622058510780334, -1.0646862983703613, -0.1260024905204773, 0.04214496538043022, 0.04632636532187462, 0.2873717248439789, 0.7008663415908813, -0.048412296921014786, 0.9606791138648987, -0.637764573097229, -0.3205867409706116, -0.4700991213321686, 0.019097277894616127, 0.4135186970233917, 0.6053006052970886, 0.7041990160942078, -0.8852112889289856, -0.3952782452106476, -0.2346605360507965, -0.7921391129493713, -0.067672498524189, -0.08915262669324875, -0.2627255618572235, 0.2456280142068863, 0.4049328863620758, -0.6382430195808411, 0.47223493456840515, 0.5484190583229065, -0.5463355779647827, 0.6687046885490417, -0.07690753787755966, 0.017784858122467995, -1.3399800062179565, 0.2607742249965668, 0.2625533938407898, 0.005334328394383192, -0.7071524262428284, -0.049646977335214615, -0.06771643459796906, 0.06959492713212967, -0.37469395995140076, 0.5904468894004822, -0.48487210273742676, 0.08763835579156876, 0.25362429022789, 0.23499831557273865, 0.23637758195400238, 0.6232784390449524, 0.033362068235874176, 0.6145342588424683, 0.6822096109390259, -0.5266507863998413, 0.22179166972637177, 0.4595699608325958, -0.2438688725233078, 0.4863264858722687, -0.7293283939361572, -0.03275766968727112, -0.2691929042339325, 0.3438255190849304, -1.024882197380066, -0.34427061676979065, 0.5257474184036255, -0.5540273785591125, 0.2942163348197937, -0.1391831487417221, -0.6227685809135437, -0.29581889510154724, -0.4262295067310333, 0.2392112761735916, 0.3265252113342285, -0.3120318353176117, 0.8017733097076416, 0.4349926710128784, 0.05977510288357735, -0.6168447136878967, -0.9779541492462158, -0.025597205385565758, -0.3525080680847168, -0.7392416000366211, 0.46177437901496887, -0.18969962000846863, -0.16213059425354004, 0.11466719955205917, 0.23486484587192535, 0.0368606373667717, -0.09193218499422073, 0.21110282838344574, 0.2443830817937851, -0.18017473816871643, 0.03453795611858368, 0.08768907934427261, -0.09698890894651413, 0.08782283216714859, -0.26773813366889954, 0.4501790702342987, -0.22344230115413666, -0.10252375155687332, -0.3989524841308594, 0.33551472425460815, 0.22894501686096191, -0.2114078551530838, 0.7485724091529846, 1.0020240545272827, -0.3441627323627472, 0.0205696914345026, -0.5170783996582031, -0.06853713095188141, -0.38258305191993713, 0.20810560882091522, -0.39094436168670654, -0.786647617816925, 0.7074140310287476, 0.20214399695396423, 0.08412764966487885, 0.8256760835647583, 0.32586434483528137, 0.11894415318965912, 0.5383222699165344, 0.38672345876693726, -0.13021329045295715, 0.2114817351102829, -0.4953894019126892, -0.01335679367184639, -0.8216714262962341, -0.15361188352108002, -0.6180686354637146, -0.3502788543701172, -0.7391434907913208, -0.39818379282951355, 0.14052146673202515, 0.019619978964328766, -0.23644858598709106, 0.45807358622550964, -0.48520904779434204, 0.44636934995651245, 0.7883728742599487, 0.09312612563371658, 0.12136802822351456, 0.11409743875265121, -0.2520667314529419, -0.04929681867361069, -0.7199534773826599, -0.3239551782608032, 1.1432747840881348, 0.4456982910633087, 0.21117399632930756, 0.1712915301322937, 0.7460658550262451, 0.08877976983785629, 0.08248590677976608, -0.5050714612007141, 0.5235176682472229, -0.301889568567276, -0.6993556618690491, -0.2471909075975418, -0.5599794387817383, -1.0620583295822144, 0.17386884987354279, -0.3575170934200287, -0.8828589916229248, 0.3194901943206787, -0.07545056939125061, -0.3803485333919525, 0.26286691427230835, -0.9030814170837402, 1.1637765169143677, -0.18331412971019745, -0.44542571902275085, 0.14860370755195618, -1.1429450511932373, 0.4526333510875702, 0.265382319688797, 0.47182485461235046, -0.24093328416347504, 0.07981204986572266, 1.0255898237228394, -0.24194739758968353, 1.0148887634277344, -0.2767649292945862, 0.1158430352807045, 0.4499221742153168, -0.1503104716539383, 0.09555686265230179, 0.10997306555509567, -0.2176157683134079, 0.5613527297973633, 0.2521416246891022, -0.5401836633682251, -0.5111404061317444, 0.6164864897727966, -0.7567883729934692, -0.2584228217601776, -0.49632471799850464, -0.4884188771247864, -0.09872649610042572, 0.3657788038253784, 0.30580732226371765, 0.42337557673454285, -0.09865934401750565, 0.18725861608982086, 0.6160942912101746, -0.4636880159378052, 0.3793649673461914, 0.06906525045633316, -0.2885792553424835, -0.7440283894538879, 0.8761627078056335, 0.04697789251804352, 0.15679030120372772, 0.3720279335975647, 0.37703007459640503, -0.5934717655181885, -0.3454954922199249, -0.604688286781311, 0.45202142000198364, -0.6605165004730225, -0.09948983043432236, -0.7937890291213989, -0.23300182819366455, -0.6849012970924377, 0.14737474918365479, -0.10995443165302277, -0.5962324738502502, -0.36144477128982544, -0.1581738442182541, 0.4815060794353485, 0.46536991000175476, -0.10427109152078629, 0.3102900981903076, -0.6009005308151245, 0.3480038046836853, -0.1827448308467865, 0.3204362392425537, -0.23077844083309174, -0.48039260506629944, -0.10278978943824768, 0.07079359889030457, -0.1451542228460312, -0.8226699233055115, 0.37982386350631714, 0.2946361303329468, 0.5763929486274719, 0.24270467460155487, 0.157250314950943, 0.4766778349876404, -0.24761678278446198, 0.9669979214668274, 0.200319305062294, -0.7465639114379883, 0.5137404799461365, -0.36162087321281433, 0.32105010747909546, 0.799126386642456, 0.5378382205963135, -0.507195234298706, -0.2165370136499405, -0.9121571779251099, -0.9582254886627197, 0.6872612833976746, 0.3403609097003937, 0.035690467804670334, -0.001443891553208232, 0.4157150387763977, 0.09039145708084106, 0.30711695551872253, -0.8944195508956909, -0.7289560437202454, -0.2005164921283722, -0.52670818567276, -0.17397287487983704, -0.20488612353801727, -0.2726450264453888, -0.4263656735420227, 0.7277882695198059, -0.16689489781856537, 0.26128581166267395, 0.38245871663093567, -0.0578528493642807, 0.2715250253677368, 0.1952085793018341, 0.5704721808433533, 0.4211878776550293, -0.2512175440788269, 0.06802274286746979, 0.015356444753706455, -0.5636516213417053, -0.16439509391784668, 0.43371886014938354, -0.3138434588909149, -0.05411321297287941, 0.5756888389587402, 0.8837413191795349, 0.11670484393835068, -0.619829535484314, 0.5523945093154907, -0.15014314651489258, -0.48529666662216187, -0.40518274903297424, -0.09921465069055557, 0.11614590138196945, 0.14095820486545563, 0.14852683246135712, -0.017099427059292793, 0.2000582218170166, -0.41431301832199097, 0.34580373764038086, 0.17501172423362732, -0.2528855800628662, -0.2786736786365509, 0.5715522170066833, -0.03648003563284874, -0.16312400996685028, 0.5947906970977783, -0.45302316546440125, -0.4771392345428467, 0.6598971486091614, 0.4276118874549866, 0.7904850840568542, 0.059855252504348755, 0.2734033167362213, 0.7431398034095764, 0.38240596652030945, 0.07759153842926025, 0.33337000012397766, 0.07072944939136505, -0.8536862134933472, -0.36696258187294006, -0.7414405941963196, -0.07209421694278717, 0.1571110188961029, -0.675431489944458, 0.2732260227203369, -0.4657706618309021, -0.05465664342045784, 0.19744454324245453, 0.04986456409096718, -0.7374916672706604, 0.07581131905317307, 0.06529200077056885, 0.9300841093063354, -1.0061790943145752, 0.6571167707443237, 0.674115777015686, -0.7970677614212036, -0.7959297895431519, 0.025369184091687202, 0.2148796021938324, -0.6536871194839478, 0.3850742280483246, 0.3437351584434509, 0.32338520884513855, -0.08876220136880875, -0.5644508600234985, -0.8010036945343018, 1.054247260093689, 0.26524561643600464, -0.3596749007701874, 0.11696556210517883, 0.2670345604419708, 0.6013118028640747, -0.4440631568431854, 0.4053988754749298, 0.8337369561195374, 0.5896961688995361, 0.14782032370567322, -0.8147237300872803, 0.22577473521232605, -0.4175553321838379, -0.11872031539678574, -0.008546062745153904, -0.6853485703468323, 0.7406527996063232, -0.15452367067337036, -0.1785566657781601, -0.11843032389879227, 0.7459788918495178, 0.4486502408981323, 0.4934665560722351, 0.5860446095466614, 0.8610780835151672, 0.8545786142349243, -0.16903766989707947, 1.1383966207504272, -0.2773250639438629, 0.31501325964927673, 1.1913460493087769, -0.06624280661344528, 0.8311896324157715, 0.3960127532482147, -0.43564626574516296, 0.6553356051445007, 0.7243244051933289, -0.1316324770450592, 0.19118927419185638, 0.2709288001060486, -0.009149032644927502, -0.07602963596582413, -0.16330546140670776, -0.44264084100723267, 0.4332471489906311, 0.3846019506454468, -0.32161855697631836, -0.11567609757184982, -0.024793589487671852, 0.26418474316596985, 0.17885209619998932, 0.01887844316661358, 0.6888983845710754, 0.04488179087638855, -0.5178645849227905, 0.5426591038703918, -0.04066936671733856, 0.7011381983757019, -0.6495267152786255, 0.017182251438498497, -0.10701338201761246, 0.03136291727423668, -0.40330132842063904, -0.9445489645004272, 0.4168913960456848, -0.23591095209121704, -0.19345760345458984, -0.14105366170406342, 0.5829982757568359, -0.6388450264930725, -0.8425106406211853, 0.37893733382225037, 0.45425665378570557, 0.24668709933757782, 0.04383763298392296, -1.0925589799880981, 0.23916922509670258, 0.15487724542617798, -0.379620224237442, 0.3012554943561554, 0.4900726079940796, 0.10860879719257355, 0.43766912817955017, 0.6859671473503113, 0.037593238055706024, -0.07353274524211884, 0.35850653052330017, 0.8266201019287109, -0.7435024380683899, -0.5086598992347717, -0.7449356913566589, 0.7619738578796387, -0.38243505358695984, -0.4620473384857178, 0.8108636736869812, 0.8625213503837585, 0.9527133703231812, -0.017014577984809875, 0.8719449043273926, -0.39362582564353943, 0.6097967028617859, -0.5479191541671753, 0.5933931469917297, -0.6572784185409546, 0.10591389238834381, -0.32426631450653076, -0.7764915823936462, -0.5306960344314575, 0.5277109146118164, -0.34513217210769653, 0.11493658274412155, 0.7168456315994263, 0.848173975944519, -0.050346821546554565, 0.21414010226726532, -0.010953791439533234, 0.28710195422172546, 0.17989253997802734, 0.4827670753002167, 0.36323824524879456, -0.7086689472198486, 0.3893255293369293, -0.48447155952453613, -0.2778970003128052, 0.15970611572265625, -0.9935915470123291, -0.9166544675827026, -0.811253547668457, -0.49494075775146484, -0.6783382296562195, -0.15813709795475006, 1.0150381326675415, 0.4811316430568695, -0.9740787148475647, -0.41994500160217285, -0.029461847618222237, 0.14291201531887054, -0.2348453551530838, -0.30473700165748596, 0.6127652525901794, -0.16053728759288788, -0.6178501844406128, 0.18429413437843323, -0.01655874215066433, -0.11566691845655441, -0.18106763064861298, -0.06680239737033844, -0.6229411363601685, -0.2877714931964874, 0.586544394493103, 0.24263505637645721, -0.7552449703216553, -0.013517905957996845, -0.017981337383389473, 0.11876291036605835, 0.15069334208965302, 0.5800652503967285, -0.45444780588150024, 0.3025868833065033, 0.3823280930519104, 0.6741746068000793, 0.5726174712181091, 0.03357239440083504, 0.24288618564605713, -0.9226742386817932, 0.271638423204422, 0.0952448770403862, 0.4334689676761627, 0.4209207594394684, -0.41559648513793945, 0.6750691533088684, 0.5458213686943054, -0.4259556531906128, -0.7105545997619629, 0.03886973857879639, -1.3150122165679932, -0.27446624636650085, 1.3843669891357422, -0.10653292387723923, -0.6707674264907837, -0.15549910068511963, -0.24614956974983215, 0.1701493114233017, -0.534716010093689, 0.3067716956138611, 0.7594255208969116, -0.03263011574745178, -0.21037793159484863, -0.6284453868865967, 0.5636128187179565, 0.25218161940574646, -0.9169135093688965, 0.15808677673339844, 0.5211052894592285, 0.33185452222824097, 0.40142717957496643, 0.7136657238006592, -0.1006937175989151, -0.16377975046634674, 0.07823485881090164, 0.24115562438964844, -0.03213516250252724, -0.13065624237060547, -0.3374660015106201, 0.19002960622310638, -0.3471487760543823, -0.07509750872850418 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
lighteval/quac_helm
lighteval
2023-06-14T13:13:20Z
8,681
0
null
[ "region:us" ]
2023-06-14T13:13:20Z
2023-06-14T12:40:42.000Z
2023-06-14T12:40:42
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
tau/scrolls
tau
2023-05-23T10:15:40Z
8,670
17
scrolls
[ "task_categories:question-answering", "task_categories:summarization", "task_categories:text-generation", "task_ids:multiple-choice-qa", "task_ids:natural-language-inference", "language:en", "query-based-summarization", "long-texts", "arxiv:2201.03533", "arxiv:2104.02112", "arxiv:2104.07091", "arxiv:2104.05938", "arxiv:1712.07040", "arxiv:2105.03011", "arxiv:2112.08608", "arxiv:2110.01799", "region:us" ]
2023-05-23T10:15:40Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- language: - en task_categories: - question-answering - summarization - text-generation task_ids: - multiple-choice-qa - natural-language-inference paperswithcode_id: scrolls configs: - gov_report - summ_screen_fd - qmsum - qasper - narrative_qa - quality - contract_nli tags: - query-based-summarization - long-texts --- ## Dataset Description - **Homepage:** [SCROLLS](https://www.scrolls-benchmark.com/) - **Repository:** [SCROLLS Github repository](https://github.com/tau-nlp/scrolls) - **Paper:** [SCROLLS: Standardized CompaRison Over Long Language Sequences ](https://arxiv.org/pdf/2201.03533.pdf) - **Leaderboard:** [Leaderboard](https://www.scrolls-benchmark.com/leaderboard) - **Point of Contact:** [scrolls-benchmark-contact@googlegroups.com](scrolls-benchmark-contact@googlegroups.com) # Dataset Card for SCROLLS ## Overview SCROLLS is a suite of datasets that require synthesizing information over long texts. The benchmark includes seven natural language tasks across multiple domains, including summarization, question answering, and natural language inference. ## Leaderboard The SCROLLS benchmark leaderboard can be found [here](https://www.scrolls-benchmark.com/leaderboard). ## Tasks SCROLLS comprises the following tasks: #### GovReport ([Huang et al., 2021](https://arxiv.org/pdf/2104.02112.pdf)) GovReport is a summarization dataset of reports addressing various national policy issues published by the Congressional Research Service and the U.S. Government Accountability Office, where each document is paired with a hand-written executive summary. The reports and their summaries are longer than their equivalents in other popular long-document summarization datasets; for example, GovReport's documents are approximately 1.5 and 2.5 times longer than the documents in Arxiv and PubMed, respectively. #### SummScreenFD ([Chen et al., 2021](https://arxiv.org/pdf/2104.07091.pdf)) SummScreenFD is a summarization dataset in the domain of TV shows (e.g. Friends, Game of Thrones). Given a transcript of a specific episode, the goal is to produce the episode's recap. The original dataset is divided into two complementary subsets, based on the source of its community contributed transcripts. For SCROLLS, we use the ForeverDreaming (FD) subset, as it incorporates 88 different shows, making it a more diverse alternative to the TV MegaSite (TMS) subset, which has only 10 shows. Community-authored recaps for the ForeverDreaming transcripts were collected from English Wikipedia and TVMaze. #### QMSum ([Zhong et al., 2021](https://arxiv.org/pdf/2104.05938.pdf)) QMSum is a query-based summarization dataset, consisting of 232 meetings transcripts from multiple domains. The corpus covers academic group meetings at the International Computer Science Institute and their summaries, industrial product meetings for designing a remote control, and committee meetings of the Welsh and Canadian Parliaments, dealing with a variety of public policy issues. Annotators were tasked with writing queries about the broad contents of the meetings, as well as specific questions about certain topics or decisions, while ensuring that the relevant text for answering each query spans at least 200 words or 10 turns. #### NarrativeQA ([Kočiský et al., 2018](https://arxiv.org/pdf/1712.07040.pdf)) NarrativeQA (Kočiský et al., 2021) is an established question answering dataset over entire books from Project Gutenberg and movie scripts from different websites. Annotators were given summaries of the books and scripts obtained from Wikipedia, and asked to generate question-answer pairs, resulting in about 30 questions and answers for each of the 1,567 books and scripts. They were encouraged to use their own words rather then copying, and avoid asking yes/no questions or ones about the cast. Each question was then answered by an additional annotator, providing each question with two reference answers (unless both answers are identical). #### Qasper ([Dasigi et al., 2021](https://arxiv.org/pdf/2105.03011.pdf)) Qasper is a question answering dataset over NLP papers filtered from the Semantic Scholar Open Research Corpus (S2ORC). Questions were written by NLP practitioners after reading only the title and abstract of the papers, while another set of NLP practitioners annotated the answers given the entire document. Qasper contains abstractive, extractive, and yes/no questions, as well as unanswerable ones. #### QuALITY ([Pang et al., 2021](https://arxiv.org/pdf/2112.08608.pdf)) QuALITY is a multiple-choice question answering dataset over articles and stories sourced from Project Gutenberg, the Open American National Corpus, and more. Experienced writers wrote questions and distractors, and were incentivized to write answerable, unambiguous questions such that in order to correctly answer them, human annotators must read large portions of the given document. Reference answers were then calculated using the majority vote between of the annotators and writer's answers. To measure the difficulty of their questions, Pang et al. conducted a speed validation process, where another set of annotators were asked to answer questions given only a short period of time to skim through the document. As a result, 50% of the questions in QuALITY are labeled as hard, i.e. the majority of the annotators in the speed validation setting chose the wrong answer. #### ContractNLI ([Koreeda and Manning, 2021](https://arxiv.org/pdf/2110.01799.pdf)) Contract NLI is a natural language inference dataset in the legal domain. Given a non-disclosure agreement (the premise), the task is to predict whether a particular legal statement (the hypothesis) is entailed, not entailed (neutral), or cannot be entailed (contradiction) from the contract. The NDAs were manually picked after simple filtering from the Electronic Data Gathering, Analysis, and Retrieval system (EDGAR) and Google. The dataset contains a total of 607 contracts and 17 unique hypotheses, which were combined to produce the dataset's 10,319 examples. ## Data Fields All the datasets in the benchmark are in the same input-output format - `input`: a `string` feature. The input document. - `output`: a `string` feature. The target. - `id`: a `string` feature. Unique per input. - `pid`: a `string` feature. Unique per input-output pair (can differ from 'id' in NarrativeQA and Qasper, where there is more then one valid target). ## Citation If you use the SCROLLS data, **please make sure to cite all of the original dataset papers.** [[bibtex](https://scrolls-tau.s3.us-east-2.amazonaws.com/scrolls_datasets.bib)] ``` @inproceedings{shaham-etal-2022-scrolls, title = "{SCROLLS}: Standardized {C}ompa{R}ison Over Long Language Sequences", author = "Shaham, Uri and Segal, Elad and Ivgi, Maor and Efrat, Avia and Yoran, Ori and Haviv, Adi and Gupta, Ankit and Xiong, Wenhan and Geva, Mor and Berant, Jonathan and Levy, Omer", booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing", month = dec, year = "2022", address = "Abu Dhabi, United Arab Emirates", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2022.emnlp-main.823", pages = "12007--12021", } ```
[ -0.3714592754840851, -0.5249550342559814, 0.27168452739715576, 0.06217862293124199, -0.22525052726268768, 0.006450397428125143, -0.2101130336523056, -0.42366674542427063, 0.35210850834846497, 0.6649739146232605, -0.43499550223350525, -0.6442251801490784, -0.5089676380157471, 0.3295046091079712, -0.48949238657951355, 1.2540557384490967, -0.06217425316572189, -0.44491562247276306, -0.35709020495414734, -0.26931652426719666, -0.03597843274474144, -0.4611627459526062, -0.32560285925865173, 0.005567534361034632, 0.49920064210891724, 0.20471501350402832, 0.7515807151794434, 0.7763299942016602, 0.5962180495262146, 0.2346055805683136, -0.15259109437465668, 0.4462037980556488, -0.4810243546962738, 0.13546454906463623, 0.03988831117749214, -0.36187613010406494, -0.3588253855705261, -0.01681690290570259, 0.6213718056678772, 0.6917373538017273, -0.06862706691026688, 0.4734959900379181, 0.1127169132232666, 0.8659335374832153, -0.511724054813385, 0.1846643090248108, -0.2819534242153168, -0.16412408649921417, -0.41768327355384827, -0.21287396550178528, -0.2680530548095703, -0.570852518081665, 0.18111012876033783, -0.887902021408081, 0.278908371925354, 0.2134423702955246, 1.0501364469528198, 0.21664339303970337, -0.4143730700016022, -0.4715486764907837, -0.5131394267082214, 0.7524491548538208, -0.823395848274231, 0.17933334410190582, 0.6560324430465698, -0.14287793636322021, -0.24195970594882965, -0.8091813325881958, -0.6677753329277039, -0.14875803887844086, -0.20799142122268677, 0.25991931557655334, -0.09442785382270813, -0.012076959013938904, 0.5612294673919678, 0.33242908120155334, -0.8485331535339355, 0.029970761388540268, -0.47968408465385437, -0.26328063011169434, 0.8458461761474609, 0.25882095098495483, 0.22524404525756836, -0.4961322247982025, -0.1430557370185852, -0.23397424817085266, -0.3518924117088318, 0.23899315297603607, 0.3886314034461975, 0.09660937637090683, -0.2612270712852478, 0.5202189683914185, -0.22539092600345612, 0.4388027787208557, 0.062069498002529144, -0.26151925325393677, 0.530511736869812, -0.5569541454315186, -0.03347337245941162, -0.05136355012655258, 0.8291946053504944, 0.636959433555603, 0.15954197943210602, -0.11133157461881638, 0.166092649102211, -0.0017495923675596714, 0.04730324074625969, -0.7137450575828552, -0.07898996770381927, 0.5909325480461121, -0.4313381016254425, 0.12651468813419342, 0.050843607634305954, -0.8902157545089722, -0.4730755090713501, -0.24820691347122192, 0.05948730185627937, -0.46423354744911194, -0.22368238866329193, 0.16135406494140625, -0.36369696259498596, 0.3682591915130615, 0.10167325288057327, -0.8056997656822205, 0.3130902945995331, 0.640255331993103, 0.6988571882247925, -0.3257456123828888, -0.4116540253162384, -0.3485483229160309, 0.07915710657835007, -0.4239961504936218, 0.725795567035675, -0.22940842807292938, -0.38104474544525146, 0.04810511693358421, -0.03796089440584183, -0.09639522433280945, -0.3715761601924896, 0.9104278683662415, -0.48428380489349365, 0.4126279652118683, -0.45587608218193054, -0.8086456060409546, -0.21728728711605072, 0.12170849740505219, -0.6774346828460693, 1.1010698080062866, 0.002895139390602708, -0.7701630592346191, 0.32780179381370544, -0.5995061993598938, -0.315616250038147, -0.02910640463232994, -0.09959037601947784, -0.19334076344966888, -0.09549948573112488, 0.42436763644218445, 0.26232922077178955, -0.47647395730018616, 0.3883076608181, 0.032667528837919235, -0.3362925946712494, 0.2812773585319519, -0.24873694777488708, 0.848307192325592, 0.1969229131937027, -0.23445789515972137, -0.06724273413419724, -0.7709655165672302, 0.0008881164249032736, 0.03976753354072571, -0.2766272723674774, -0.1687963753938675, -0.006146907340735197, 0.08531840890645981, 0.15682008862495422, 0.18494245409965515, -0.5905865430831909, 0.13648615777492523, -0.5583240389823914, 0.2413579523563385, 0.41836783289909363, 0.132710263133049, 0.2698332667350769, -0.6342352032661438, 0.5358421206474304, -0.11675287783145905, 0.05587012693285942, -0.34256187081336975, -0.4446457624435425, -0.7461929321289062, -0.2006446123123169, 0.4900107681751251, 0.545462429523468, -0.6297938823699951, 0.5358288884162903, -0.5786555409431458, -0.6735289692878723, -0.8074440360069275, 0.029622763395309448, 0.557370126247406, 0.43233373761177063, 0.4478399455547333, -0.22030220925807953, -0.41698455810546875, -0.7465227842330933, -0.19303131103515625, -0.2904510200023651, -0.16092166304588318, -0.0038818311877548695, 0.5974639058113098, 0.14128044247627258, 0.8846914768218994, -0.4960488975048065, -0.332560658454895, -0.1666591316461563, 0.26139122247695923, 0.3806552290916443, 0.32211732864379883, 0.30529770255088806, -0.7331465482711792, -0.49743708968162537, -0.3296332359313965, -0.8633784055709839, -0.11973827332258224, -0.40073105692863464, -0.08661432564258575, 0.34982797503471375, 0.6391345858573914, -0.661629855632782, 0.37327638268470764, 0.3039218783378601, -0.3516453206539154, 0.5631464123725891, -0.2209600955247879, 0.16675955057144165, -1.03189218044281, 0.2792634665966034, -0.03612572327256203, 0.2223689705133438, -0.578204333782196, 0.08628059923648834, 0.06667936593294144, 0.10234136134386063, -0.3947542905807495, 0.6232433915138245, -0.5237365961074829, 0.010426832363009453, 0.028749436140060425, 0.45053765177726746, 0.2872992157936096, 0.7819923758506775, -0.14960195124149323, 0.7454960346221924, 0.2581050992012024, -0.5662675499916077, 0.19165271520614624, 0.5522912740707397, -0.5114862322807312, 0.34985265135765076, -0.6690524220466614, 0.05015343055129051, -0.31737029552459717, 0.41875866055488586, -0.9622871279716492, -0.08846504241228104, 0.09620734304189682, -0.5230950117111206, 0.12803910672664642, 0.05266866832971573, -0.6222916841506958, -0.4134443402290344, -0.6024096012115479, 0.20544590055942535, 0.39741384983062744, -0.12825627624988556, 0.6309777498245239, 0.32313546538352966, -0.22520630061626434, -0.6998924612998962, -0.6766616106033325, 0.13165539503097534, -0.1430349349975586, -0.6197070479393005, 0.5427793860435486, -0.22109730541706085, -0.13860763609409332, 0.08236822485923767, -0.09078415483236313, 0.12498543411493301, -0.1293594241142273, 0.43462634086608887, 0.19476459920406342, -0.1872391551733017, 0.16797979176044464, 0.013772141188383102, -0.23245590925216675, 0.007687017321586609, 0.014714383520185947, 0.4413565993309021, -0.027364272624254227, -0.3755314350128174, -0.5311157703399658, 0.4756712317466736, 0.6833497881889343, -0.3758351802825928, 0.5010091662406921, 0.46764469146728516, -0.11103683710098267, 0.20356668531894684, -0.7752434611320496, 0.019768085330724716, -0.41620737314224243, 0.2889602780342102, -0.21032635867595673, -0.7496123313903809, 0.7040064930915833, 0.3447667062282562, 0.49593427777290344, 0.7924625873565674, 0.38368213176727295, -0.17255407571792603, 0.6250094175338745, 0.24685776233673096, -0.17473092675209045, 0.17265497148036957, -0.43156853318214417, 0.09016890823841095, -0.8511611819267273, -0.19924473762512207, -0.5960589051246643, -0.30417653918266296, -0.8184814453125, -0.34273412823677063, 0.20430295169353485, -0.03152211010456085, -0.16642172634601593, 0.327830970287323, -0.42945384979248047, 0.3611637055873871, 0.7600459456443787, -0.10288389027118683, 0.3172105848789215, -0.10786568373441696, -0.04904382675886154, -0.14854075014591217, -0.5411454439163208, -0.5753589868545532, 1.3137457370758057, 0.2719305455684662, 0.3108583092689514, 0.11894010007381439, 0.68131023645401, 0.3661442697048187, -0.05811864137649536, -0.4921466112136841, 0.6942274570465088, -0.20934955775737762, -0.6950207948684692, -0.5487801432609558, -0.21761265397071838, -1.1869562864303589, 0.167719766497612, -0.2176063507795334, -0.45033523440361023, 0.4500035345554352, -0.2579793930053711, -0.6029942035675049, 0.12960505485534668, -0.5570133924484253, 0.6625806093215942, -0.13815689086914062, -0.18819022178649902, -0.09678967297077179, -0.8583822250366211, 0.020798657089471817, -0.10900788009166718, 0.2429630011320114, -0.28278762102127075, -0.08522029221057892, 1.1538223028182983, -0.3389076888561249, 0.6794536709785461, 0.03705056011676788, 0.20559370517730713, 0.5608433485031128, -0.041136182844638824, 0.29491040110588074, -0.13197429478168488, -0.3115784525871277, 0.2865619659423828, 0.3077111840248108, -0.3997274935245514, -0.49004244804382324, 0.42300859093666077, -0.7878947257995605, -0.3907007575035095, -0.6520310044288635, -0.5716978907585144, -0.010752279311418533, 0.20629896223545074, 0.29502996802330017, 0.7018566131591797, -0.1046501025557518, 0.21839499473571777, 0.4482247233390808, -0.33380863070487976, 0.5269649624824524, 0.5892826318740845, -0.17553357779979706, -0.39650577306747437, 0.7172991633415222, 0.40203508734703064, 0.07085279375314713, 0.31818142533302307, 0.00850743055343628, -0.36212337017059326, -0.7451786398887634, -0.2532654106616974, 0.4356253743171692, -0.5201340317726135, -0.10302753001451492, -0.7146942615509033, -0.3630005419254303, -0.38086509704589844, -0.014250208623707294, -0.05472636967897415, -0.43916085362434387, -0.2992610037326813, -0.3018316328525543, 0.4435419738292694, 0.4026731848716736, -0.03430723771452904, 0.1626439094543457, -0.7552756071090698, 0.5760990381240845, 0.1924237608909607, 0.1836179494857788, -0.07926012575626373, -0.7039950489997864, -0.2557825744152069, 0.020698601379990578, -0.30285704135894775, -0.5860072374343872, 0.451099693775177, 0.2675737738609314, 0.4844081401824951, 0.19329023361206055, 0.4793565273284912, 0.7286882996559143, -0.3406546413898468, 1.1500450372695923, -0.026077281683683395, -0.5385343432426453, 0.3252604305744171, -0.3590487837791443, 0.4908792972564697, 0.9003706574440002, 0.5164847373962402, -0.8418837189674377, -0.6389013528823853, -0.6539110541343689, -1.1090320348739624, 0.6114135384559631, 0.3236662447452545, 0.12882423400878906, -0.22593632340431213, 0.29920652508735657, 0.09950666129589081, 0.19662410020828247, -0.3570876121520996, -0.458359956741333, 0.02503788098692894, -0.21165506541728973, -0.048568129539489746, -0.42529675364494324, -0.06393778324127197, -0.20490801334381104, 0.6502909064292908, 0.006365735549479723, 0.3418797552585602, 0.3512088656425476, -0.23690783977508545, 0.011764604598283768, 0.22740450501441956, 0.5721608996391296, 0.9150112271308899, -0.36720383167266846, -0.18993686139583588, 0.06994786113500595, -0.6873182058334351, -0.22009862959384918, 0.3360666334629059, -0.27467742562294006, 0.11803407967090607, 0.6462963819503784, 0.7793551683425903, -0.02870091050863266, -0.7384467720985413, 0.40265703201293945, -0.0434129424393177, -0.44690361618995667, -0.4422867000102997, -0.09683731198310852, 0.03291456401348114, 0.18186385929584503, 0.627937376499176, -0.2722468674182892, 0.1273571252822876, -0.3388710916042328, 0.2699899673461914, 0.020769335329532623, -0.06606414169073105, -0.053541820496320724, 0.5024705529212952, 0.21295957267284393, -0.18956859409809113, 0.7387715578079224, -0.3183761537075043, -0.25807878375053406, 0.6847241520881653, 0.12687355279922485, 0.7561138868331909, 0.17373989522457123, 0.27750036120414734, 0.5418062806129456, 0.28324541449546814, -0.0944935753941536, 0.28189516067504883, 0.1333915889263153, -0.5160552859306335, -0.6342284679412842, -0.6179640293121338, -0.4853713810443878, 0.08421872556209564, -0.6547800302505493, 0.0869486927986145, -0.2504505515098572, -0.16824807226657867, 0.1281682848930359, 0.2879463732242584, -0.561873733997345, 0.07642204314470291, 0.14098359644412994, 0.9303545951843262, -0.7018013000488281, 0.5254899859428406, 0.3199290633201599, -0.7325819730758667, -0.6145230531692505, 0.12544745206832886, 0.017303364351391792, -0.5724270939826965, 0.42910265922546387, 0.12553362548351288, 0.2128044068813324, -0.10228560864925385, -0.3572220504283905, -1.0232341289520264, 1.1043652296066284, 0.15132558345794678, -0.4902563989162445, -0.2683369219303131, 0.2906287908554077, 0.7930660843849182, -0.026243867352604866, 0.4085010588169098, 0.616616427898407, 0.43781086802482605, -0.07436634600162506, -0.9514980316162109, 0.031162016093730927, -0.3706721365451813, -0.1417417824268341, 0.23334042727947235, -0.5951337814331055, 0.4932956397533417, -0.062227774411439896, -0.30895206332206726, 0.0595177598297596, 0.9201856255531311, 0.2121543288230896, 0.45887529850006104, 0.2824583947658539, 0.6303309202194214, 0.9243025183677673, -0.06324807554483414, 1.1018025875091553, -0.49745652079582214, 0.08847508579492569, 1.1685839891433716, -0.09908665716648102, 0.9482243061065674, 0.4056068956851959, -0.3659258186817169, 0.5964865684509277, 0.5272486805915833, -0.09368515014648438, 0.35498982667922974, 0.16730338335037231, 0.15643171966075897, 0.04235648736357689, -0.2702506184577942, -0.43407517671585083, 0.3193454444408417, 0.362630158662796, -0.12641791999340057, -0.1713714897632599, -0.061142969876527786, 0.2738979756832123, 0.18898352980613708, -0.10754342377185822, 0.7156650424003601, 0.11013535410165787, -0.8703203797340393, 0.6764981746673584, -0.10293662548065186, 0.7368745803833008, -0.8258993625640869, 0.17404897511005402, -0.4289194941520691, -0.20259958505630493, -0.32847532629966736, -0.9921923875808716, 0.3419247269630432, 0.03699420765042305, -0.2591429650783539, -0.2770228087902069, 0.26278185844421387, -0.3637259006500244, -0.49299123883247375, 0.07480362057685852, 0.4537486433982849, 0.3568066358566284, 0.01745428517460823, -0.6541796922683716, -0.036637261509895325, 0.04449986293911934, -0.4065828025341034, 0.2960488200187683, 0.37512078881263733, -0.07034070789813995, 0.6021410226821899, 0.7419959902763367, 0.07626509666442871, 0.006324248854070902, -0.06275591254234314, 0.6945186853408813, -0.6928330063819885, -0.5188978314399719, -0.6127731204032898, 0.6837517619132996, -0.24223937094211578, -0.7182015180587769, 0.8853036165237427, 0.6413973569869995, 0.7035525441169739, 0.19390363991260529, 0.5909878015518188, -0.1336999386548996, 0.8510937690734863, -0.4000454843044281, 0.5781717896461487, -0.4869796633720398, 0.18195441365242004, -0.17462842166423798, -0.8069083094596863, -0.278909295797348, 0.25322288274765015, -0.3628194332122803, -0.11230456829071045, 0.8800886869430542, 0.79143887758255, 0.3271200954914093, 0.0865991935133934, 0.026600036770105362, 0.1571914553642273, 0.22091470658779144, 0.44960784912109375, 0.3983868658542633, -0.6557472944259644, 0.7341093420982361, -0.2095676213502884, 0.017237404361367226, -0.17295171320438385, -0.7977074980735779, -0.7291104793548584, -0.8322514295578003, -0.529281497001648, -0.4491034150123596, 0.08927828073501587, 0.9414294958114624, 0.26297810673713684, -0.8604727387428284, -0.35486331582069397, 0.30540141463279724, 0.011538347229361534, -0.32581406831741333, -0.18945544958114624, 0.8813135623931885, -0.09463970363140106, -0.48525798320770264, 0.1406945139169693, 0.09969737380743027, -0.2862987220287323, -0.043158192187547684, 0.04582418501377106, -0.3638116121292114, 0.1026247888803482, 0.4719390571117401, 0.4913330376148224, -0.709010124206543, -0.050459783524274826, 0.13333198428153992, -0.2891786992549896, 0.1133008599281311, 0.4503157436847687, -0.5683503746986389, 0.3937914967536926, 0.5346311926841736, 0.7028475999832153, 0.6698657870292664, 0.03016211837530136, 0.27529001235961914, -0.4592558443546295, -0.12377817183732986, 0.2776881456375122, 0.12148003280162811, 0.2407122105360031, -0.22155600786209106, 0.5578904747962952, 0.03485415130853653, -0.69547438621521, -0.7235774397850037, -0.05872397497296333, -1.1379419565200806, -0.12825411558151245, 1.2634806632995605, -0.02444067969918251, -0.16703985631465912, -0.3666321039199829, -0.22556090354919434, 0.2081805169582367, -0.5370630025863647, 0.6633897423744202, 0.7926790714263916, -0.05091091990470886, 0.025940854102373123, -0.6747636198997498, 0.6473554372787476, 0.36839452385902405, -0.7456768155097961, 0.1597224771976471, 0.5033417344093323, 0.04961845278739929, 0.41153281927108765, 0.7995901703834534, -0.12221021205186844, 0.16616618633270264, -0.12471383064985275, 0.08536059409379959, -0.16376462578773499, -0.07188916206359863, -0.25632837414741516, 0.2949405610561371, -0.05852627381682396, -0.11423330754041672 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
daily_dialog
null
2023-05-07T15:20:15Z
8,615
75
dailydialog
[ "task_categories:text-classification", "task_ids:multi-label-classification", "annotations_creators:expert-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:cc-by-nc-sa-4.0", "emotion-classification", "dialog-act-classification", "region:us" ]
2023-05-07T15:20:15Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - found language: - en license: - cc-by-nc-sa-4.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - text-classification task_ids: - multi-label-classification paperswithcode_id: dailydialog pretty_name: DailyDialog tags: - emotion-classification - dialog-act-classification dataset_info: features: - name: dialog sequence: string - name: act sequence: class_label: names: '0': __dummy__ '1': inform '2': question '3': directive '4': commissive - name: emotion sequence: class_label: names: '0': no emotion '1': anger '2': disgust '3': fear '4': happiness '5': sadness '6': surprise splits: - name: train num_bytes: 7296715 num_examples: 11118 - name: test num_bytes: 655844 num_examples: 1000 - name: validation num_bytes: 673943 num_examples: 1000 download_size: 4475921 dataset_size: 8626502 --- # Dataset Card for "daily_dialog" ## 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://yanran.li/dailydialog](http://yanran.li/dailydialog) - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 4.48 MB - **Size of the generated dataset:** 8.63 MB - **Total amount of disk used:** 13.11 MB ### Dataset Summary We develop a high-quality multi-turn dialog dataset, DailyDialog, which is intriguing in several aspects. The language is human-written and less noisy. The dialogues in the dataset reflect our daily communication way and cover various topics about our daily life. We also manually label the developed dataset with communication intention and emotion information. Then, we evaluate existing approaches on DailyDialog dataset and hope it benefit the research field of dialog systems. ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances #### default - **Size of downloaded dataset files:** 4.48 MB - **Size of the generated dataset:** 8.63 MB - **Total amount of disk used:** 13.11 MB An example of 'validation' looks as follows. ``` This example was too long and was cropped: { "act": [2, 1, 1, 1, 1, 2, 3, 2, 3, 4], "dialog": "[\"Good afternoon . This is Michelle Li speaking , calling on behalf of IBA . Is Mr Meng available at all ? \", \" This is Mr Meng ...", "emotion": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } ``` ### Data Fields The data fields are the same among all splits. #### default - `dialog`: a `list` of `string` features. - `act`: a `list` of classification labels, with possible values including `__dummy__` (0), `inform` (1), `question` (2), `directive` (3) and `commissive` (4). - `emotion`: a `list` of classification labels, with possible values including `no emotion` (0), `anger` (1), `disgust` (2), `fear` (3), `happiness` (4), `sadness` (5) and `surprise` (6). ### Data Splits | name |train|validation|test| |-------|----:|---------:|---:| |default|11118| 1000|1000| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations Dataset provided for research purposes only. Please check dataset license for additional information. ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information DailyDialog dataset is licensed under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/). ### Citation Information ``` @InProceedings{li2017dailydialog, author = {Li, Yanran and Su, Hui and Shen, Xiaoyu and Li, Wenjie and Cao, Ziqiang and Niu, Shuzi}, title = {DailyDialog: A Manually Labelled Multi-turn Dialogue Dataset}, booktitle = {Proceedings of The 8th International Joint Conference on Natural Language Processing (IJCNLP 2017)}, year = {2017} } ``` ### Contributions Thanks to [@thomwolf](https://github.com/thomwolf), [@julien-c](https://github.com/julien-c) for adding this dataset.
[ -0.48381736874580383, -0.7908970713615417, 0.1203889325261116, 0.18738766014575958, -0.17591145634651184, -0.076630137860775, -0.19517390429973602, -0.5810363292694092, 0.4096796214580536, 0.5627831816673279, -0.9318504333496094, -0.9068527221679688, -0.43515998125076294, 0.2016572207212448, 0.00005373441308620386, 1.1202036142349243, -0.02108665741980076, -0.13004666566848755, -0.2911521792411804, -0.3021351099014282, -0.4694856107234955, -0.48535770177841187, -0.617090106010437, -0.230015367269516, 0.33470356464385986, 0.4188176393508911, 0.6036935448646545, 0.6987355351448059, 0.38361606001853943, 0.29876840114593506, -0.007798933424055576, 0.0013716727262362838, -0.37493857741355896, -0.12477987259626389, 0.3555906414985657, -0.38913974165916443, -0.7811314463615417, 0.1713947057723999, 0.5506471395492554, 0.5079969167709351, -0.155082568526268, 0.43007880449295044, 0.07760253548622131, 0.795195996761322, -0.21574647724628448, 0.7990227937698364, -0.24888496100902557, 0.046805910766124725, -0.23617610335350037, 0.03878961503505707, -0.018660763278603554, -0.7804629802703857, 0.07274547219276428, -0.7102890014648438, 0.03592044487595558, 0.03894878551363945, 0.887039303779602, 0.12413803488016129, -0.1887499839067459, -0.3953721523284912, -0.212566077709198, 0.6351400017738342, -0.8722532391548157, 0.1130046546459198, 0.5905741453170776, 0.2534777522087097, -0.06264427304267883, -0.29465651512145996, -0.6506870985031128, 0.008352650329470634, -0.15844491124153137, 0.23738640546798706, -0.11701540648937225, -0.07240340858697891, 0.5590521097183228, 0.5908519625663757, -0.5374031066894531, -0.32431545853614807, -0.40359625220298767, -0.3769586980342865, 0.9971605539321899, 0.42823848128318787, 0.3732032775878906, -0.5545997619628906, 0.042945776134729385, -0.25322744250297546, -0.33316460251808167, 0.27369603514671326, 0.5065197348594666, 0.5521601438522339, -0.9268010854721069, 0.48597273230552673, -0.24762192368507385, 0.6448004841804504, 0.03776950761675835, -0.22768446803092957, 0.7619378566741943, -0.6500872373580933, -0.20803160965442657, -0.05347080156207085, 0.9822797179222107, 0.6951078772544861, -0.019362539052963257, 0.3604162931442261, 0.17104913294315338, -0.10222336649894714, -0.22606953978538513, -0.8615532517433167, -0.22608546912670135, 0.652680516242981, -0.6332100629806519, -0.6884247064590454, -0.17248763144016266, -1.1413666009902954, -0.2794416546821594, -0.5975320339202881, 0.15750078856945038, -0.23485252261161804, -0.4410025477409363, 0.02831549569964409, -0.011664758436381817, 0.20422466099262238, 0.46572086215019226, -0.461719810962677, 0.36154285073280334, 0.4479428827762604, 0.7673330903053284, 0.07247322052717209, -0.008023401722311974, -0.33307111263275146, -0.20397204160690308, 0.02942931465804577, 0.5203946828842163, -0.5027739405632019, -0.43242910504341125, -0.00007793524127919227, 0.4230874478816986, -0.2055613100528717, -0.5127766132354736, 0.7395143508911133, 0.043059058487415314, 0.6141105890274048, -0.4674072265625, -0.3930726647377014, -0.2088261991739273, 0.3537212014198303, -0.6976795196533203, 1.1152377128601074, 0.15081436932086945, -0.7480124235153198, 0.0508413091301918, -1.0279710292816162, -0.29098036885261536, -0.031870950013399124, -0.031322918832302094, -0.44221681356430054, -0.4136406481266022, 0.20787639915943146, 0.541561484336853, -0.4829447567462921, 0.46487078070640564, -0.33972421288490295, 0.024447456002235413, 0.24182353913784027, -0.08762922883033752, 1.418015480041504, 0.17659051716327667, -0.2576248347759247, 0.05732564628124237, -0.9474389553070068, -0.19057533144950867, 0.24273662269115448, -0.08196250349283218, 0.05338491499423981, -0.28345492482185364, 0.28298214077949524, 0.2099294364452362, 0.2281263917684555, -0.5864193439483643, 0.5503852367401123, -0.026461543515324593, 0.37558794021606445, 0.7981669306755066, 0.09781322628259659, 0.18878749012947083, -0.4634586572647095, 0.4697630703449249, 0.24370358884334564, 0.4413323700428009, -0.1422327607870102, -0.5893402695655823, -0.8524572849273682, -0.19711752235889435, 0.4246235489845276, 0.790007472038269, -0.6268121004104614, 0.8454867005348206, -0.3056536912918091, -0.5445703268051147, -0.4967747628688812, 0.207875058054924, 0.23787201941013336, 0.5635459423065186, 0.22952045500278473, -0.5355375409126282, -0.5893514752388, -0.7353423237800598, 0.3571309745311737, -0.22626477479934692, 0.07970017939805984, 0.8699206113815308, 0.5800859928131104, -0.4497322738170624, 0.8525464534759521, -0.7915886640548706, -0.32288768887519836, -0.3100275993347168, 0.07942502200603485, 0.26826953887939453, 0.5686671733856201, 0.5627687573432922, -0.6983973979949951, -0.4574674069881439, -0.41925594210624695, -0.874049961566925, -0.29902008175849915, -0.14380352199077606, -0.3272240459918976, 0.3110741972923279, 0.18488971889019012, -0.7165075540542603, 0.5056301355361938, 0.5838555693626404, -0.4571774899959564, 0.5670788288116455, 0.35666924715042114, 0.050511397421360016, -1.2757219076156616, 0.0778575986623764, 0.17837324738502502, -0.1178353801369667, -0.6483420729637146, -0.43414926528930664, -0.3151138722896576, -0.2109932154417038, -0.13432767987251282, 0.8329230546951294, -0.12315177172422409, 0.3152281641960144, 0.21801598370075226, 0.02562057040631771, -0.026835156604647636, 0.7109184861183167, -0.10298390686511993, 0.5297992825508118, 0.7899875044822693, -0.6051387190818787, 0.4965776205062866, 0.6290405988693237, -0.13380984961986542, 0.6281743049621582, -0.6336981654167175, 0.035473015159368515, -0.26358339190483093, 0.6204363703727722, -0.7446906566619873, -0.5884950757026672, 0.8594542741775513, -0.5483115315437317, 0.3402937948703766, -0.1683955192565918, -0.5105672478675842, -0.45396679639816284, -0.5481351613998413, 0.21653881669044495, 0.3427571952342987, -0.1392836719751358, 0.6684182286262512, 0.6358746290206909, -0.27121514081954956, -0.11059372872114182, -0.5666853785514832, -0.0035504556726664305, -0.15540145337581635, -0.8105342984199524, 0.07375563681125641, -0.505129337310791, -0.1382686346769333, -0.12663541734218597, 0.13618724048137665, 0.04201113060116768, -0.1792953759431839, 0.3769717812538147, 0.34854039549827576, -0.013759690336883068, 0.08713787794113159, -0.25008079409599304, -0.1410215198993683, 0.044507235288619995, 0.044249266386032104, 0.4755952060222626, -0.2043921798467636, -0.1292364001274109, -0.7048916816711426, 0.2775783836841583, 0.4609437584877014, 0.008288726210594177, 0.46987980604171753, 0.8367922306060791, -0.33714863657951355, 0.34235820174217224, -0.7200097441673279, -0.10076093673706055, -0.45314890146255493, -0.03820614516735077, -0.12183915823698044, -0.6613640785217285, 0.9059521555900574, 0.3284079432487488, 0.19900642335414886, 0.7016369700431824, 0.5281132459640503, -0.012348474934697151, 0.7629793882369995, 0.4149293303489685, -0.4821310341358185, 0.6429369449615479, -0.5092909932136536, 0.0065063065849244595, -0.8597742915153503, -0.24040675163269043, -0.45736581087112427, -0.2506949305534363, -0.9737297296524048, -0.50663822889328, 0.219323068857193, -0.25584205985069275, -0.2266991138458252, 0.30425500869750977, -0.6754459738731384, 0.00845861341804266, 0.5585492253303528, 0.17163777351379395, 0.15822629630565643, -0.08827751874923706, 0.09381531178951263, 0.04015929251909256, -0.584084689617157, -0.45900285243988037, 1.0877336263656616, 0.5470463037490845, 0.5564265251159668, -0.08348975330591202, 0.7867501974105835, 0.27901411056518555, 0.10633835941553116, -0.5648638010025024, 0.6733522415161133, 0.06982060521841049, -0.5692187547683716, -0.2324175238609314, -0.6331294775009155, -0.8999650478363037, -0.19525854289531708, -0.08623059839010239, -0.8839101195335388, 0.4343324601650238, 0.07058091461658478, -0.3106127381324768, 0.13745859265327454, -0.7949962615966797, 0.9409250020980835, -0.25029537081718445, -0.23522695899009705, 0.20664870738983154, -0.9320685863494873, 0.19944524765014648, 0.39854344725608826, 0.47696757316589355, -0.5947803854942322, 0.2975192070007324, 0.9717583656311035, -0.5082207322120667, 1.2392420768737793, -0.4976489841938019, 0.06981132179498672, 0.6234175562858582, -0.16910992562770844, 0.4210701584815979, 0.18954268097877502, -0.06251932680606842, 0.46539106965065, 0.10349827259778976, -0.40852075815200806, -0.377583384513855, 0.5036080479621887, -0.6948531270027161, -0.21245089173316956, -0.5117334723472595, -0.524353563785553, -0.15222319960594177, 0.18518014252185822, 0.03370862826704979, 0.6580733060836792, -0.06654401123523712, 0.17838139832019806, 0.6505019068717957, -0.33254116773605347, 0.10701644420623779, 0.30500248074531555, -0.14183472096920013, -0.5825620293617249, 1.0545355081558228, 0.13894203305244446, 0.08930990099906921, 0.09205145388841629, 0.2539665997028351, -0.030105050653219223, -0.0410272479057312, -0.6047710180282593, 0.17510303854942322, -0.4293736219406128, -0.3203071057796478, -0.7801498174667358, -0.37541666626930237, -0.6376231908798218, 0.12236131727695465, -0.15494585037231445, -0.5775436758995056, -0.3483075499534607, -0.17074380815029144, 0.7615261077880859, 0.5022428631782532, -0.2936895787715912, -0.03488023951649666, -0.8616847991943359, 0.3461955189704895, 0.19561342895030975, 0.4214549660682678, -0.032413750886917114, -0.1889721304178238, -0.21767361462116241, 0.3581045866012573, -0.4144030511379242, -0.5300235152244568, 0.22727255523204803, 0.054494403302669525, 0.42043739557266235, 0.005102219525724649, 0.0955997183918953, 0.6022217869758606, -0.11715695261955261, 1.0313332080841064, 0.01646047830581665, -0.7343704700469971, 0.62217116355896, -0.7484764456748962, 0.591720700263977, 0.7905656695365906, 0.328010618686676, -0.6802814602851868, -0.3701649010181427, -0.8746629357337952, -0.8616398572921753, 0.8534809947013855, 0.5835557579994202, 0.11517579108476639, 0.25629884004592896, 0.24437850713729858, -0.0187486931681633, 0.43678298592567444, -0.7312235236167908, -0.6705801486968994, -0.32702210545539856, -0.5620520114898682, 0.12418941408395767, -0.24882324039936066, -0.33745506405830383, -0.6660268902778625, 0.7986823916435242, -0.18548686802387238, 0.7233576774597168, 0.21570385992527008, 0.15713071823120117, -0.05490261688828468, 0.20152731239795685, 0.42279699444770813, 0.30281850695610046, -0.46791306138038635, -0.4898828864097595, 0.0058669885620474815, -0.7052886486053467, -0.18326987326145172, 0.482260525226593, -0.30911752581596375, -0.0461910106241703, 0.33160507678985596, 0.9207614660263062, 0.06741274148225784, -0.48345157504081726, 0.375234454870224, -0.25061291456222534, -0.3672735095024109, -0.42226654291152954, 0.0807344913482666, -0.0028250464238226414, 0.16591796278953552, 0.23658184707164764, -0.13147173821926117, 0.2848086953163147, -0.6369463801383972, 0.041629839688539505, 0.13524557650089264, -0.3635585606098175, -0.4643922448158264, 0.23692920804023743, 0.4387630820274353, -0.10906095057725906, 0.5255047082901001, -0.31579717993736267, -0.6990609765052795, 0.7203143835067749, -0.009207646362483501, 0.9932131171226501, -0.01096169650554657, 0.3227626383304596, 0.7779088616371155, 0.23240242898464203, 0.17145977914333344, 0.4952400326728821, -0.27216577529907227, -0.7810657620429993, -0.005817499477416277, -0.5974669456481934, -0.533238410949707, 0.19976650178432465, -0.6985321640968323, 0.26042640209198, -0.44015321135520935, -0.17116661369800568, 0.10083137452602386, 0.4483368396759033, -0.8903874158859253, 0.20835235714912415, 0.09041004627943039, 0.8654805421829224, -0.8488142490386963, 0.4628607928752899, 0.47522059082984924, -0.5113486051559448, -0.7467623353004456, -0.06551996618509293, 0.5460875034332275, -0.5099493861198425, 0.2136179804801941, 0.3113994300365448, 0.343597412109375, -0.3364527225494385, -0.9605011940002441, -0.7714714407920837, 1.1626229286193848, 0.07383615523576736, -0.3212515115737915, 0.12464893609285355, 0.23809197545051575, 0.5573893785476685, -0.5427382588386536, 0.2802882194519043, 0.6617190837860107, 0.6867428421974182, 0.24781818687915802, -1.0123337507247925, 0.20096656680107117, -0.6061118245124817, -0.2526313364505768, 0.01645481586456299, -1.0493348836898804, 0.47188112139701843, 0.14799632132053375, -0.0841694176197052, -0.16767719388008118, 0.3582925796508789, 0.1666632443666458, 0.45017045736312866, 0.49266377091407776, 0.6407981514930725, 0.8408960700035095, -0.32573074102401733, 1.0655531883239746, -0.26030847430229187, 0.3361496031284332, 1.096373200416565, -0.12662151455879211, 0.473946213722229, 0.11347444355487823, -0.35420292615890503, 0.5838371515274048, 0.6674925088882446, -0.21276986598968506, 0.20245546102523804, 0.05740214139223099, -0.10091662406921387, -0.07784769684076309, -0.47166213393211365, -0.508703887462616, 0.28930822014808655, 0.4696846306324005, -0.19418935477733612, -0.05225906893610954, 0.023494061082601547, 0.2029237151145935, -0.4516924023628235, -0.06090148165822029, 1.028772234916687, 0.040109578520059586, -0.2680836319923401, 0.49564263224601746, -0.48103824257850647, 0.6250460743904114, -0.613423228263855, 0.008725501596927643, -0.15314935147762299, 0.008016616106033325, -0.48903465270996094, -0.8182724714279175, 0.348611444234848, -0.04158582165837288, -0.2763248085975647, -0.378836065530777, 0.6927422285079956, -0.4715674817562103, -0.8052564263343811, 0.09154221415519714, 0.19410835206508636, 0.16270789504051208, 0.23380520939826965, -1.189368486404419, 0.4704160988330841, 0.33827635645866394, -0.4650633633136749, 0.2307807207107544, 0.4240189790725708, 0.04537034407258034, 0.6310149431228638, 0.6097652912139893, -0.11252807825803757, -0.21262267231941223, 0.1815999299287796, 1.0854116678237915, -0.797113835811615, -0.2832133173942566, -0.4037993252277374, 0.8552111387252808, -0.3761887848377228, -0.33649173378944397, 0.6839307546615601, 0.723479151725769, 0.8636151552200317, 0.1907959282398224, 0.9776809215545654, -0.5932102799415588, 0.7311941385269165, -0.38000625371932983, 0.517000675201416, -0.6214519739151001, 0.07930856198072433, -0.5216081142425537, -0.6677181124687195, -0.24722404778003693, 0.6217488050460815, -0.23414400219917297, 0.08351161330938339, 0.254513144493103, 0.9576043486595154, 0.13434316217899323, 0.3600577414035797, -0.209206223487854, 0.524173378944397, 0.41054627299308777, 0.4263165295124054, 0.21703845262527466, -0.8337813019752502, 0.43714964389801025, -0.5247128009796143, -0.2403334379196167, -0.23736032843589783, -0.8800907731056213, -0.9425036311149597, -0.8328977823257446, -0.6727025508880615, -0.5359932780265808, -0.1334535926580429, 1.2332369089126587, 0.6350308060646057, -1.0105881690979004, -0.47935470938682556, 0.11029104143381119, 0.26912301778793335, 0.06869228184223175, -0.38936078548431396, 0.27517208456993103, 0.05534028634428978, -0.6290878057479858, -0.16760879755020142, 0.03991027548909187, 0.18916940689086914, -0.06303966790437698, 0.016597500070929527, -0.21917389333248138, -0.13909649848937988, 0.5817489624023438, 0.3597797751426697, -0.46604713797569275, -0.11300111562013626, -0.06324980407953262, -0.07845321297645569, 0.2814904451370239, 0.43927478790283203, -0.3716706335544586, 0.5297946929931641, 0.5345060229301453, 0.2756308913230896, 0.6706843376159668, 0.05934751778841019, 0.5380551218986511, -0.5249661803245544, 0.19955924153327942, 0.16930948197841644, 0.19528532028198242, 0.4747782051563263, -0.5666502714157104, 0.8390519618988037, 0.30281591415405273, -0.55509352684021, -0.7558035850524902, -0.060328979045152664, -1.2972365617752075, 0.22796161472797394, 1.3102294206619263, 0.13753046095371246, -0.3395788073539734, -0.16248756647109985, -0.47136321663856506, 0.08406100422143936, -0.9825439453125, 0.5636863708496094, 0.953514814376831, -0.20423734188079834, -0.03944549337029457, -0.7781645655632019, 0.6905025243759155, -0.05286781117320061, -1.0719133615493774, 0.30544111132621765, 0.722831130027771, 0.2192956507205963, 0.3445667624473572, 0.9493972659111023, -0.14592112600803375, 0.0804516077041626, -0.1595664918422699, 0.13780924677848816, -0.07021243125200272, -0.031981971114873886, -0.2708834707736969, -0.3417576849460602, -0.38790491223335266, -0.09093990921974182 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
amazon_us_reviews
null
2023-11-02T14:57:03Z
8,446
56
null
[ "task_categories:summarization", "task_categories:text-generation", "task_categories:fill-mask", "task_categories:text-classification", "task_ids:text-scoring", "task_ids:language-modeling", "task_ids:masked-language-modeling", "task_ids:sentiment-classification", "task_ids:sentiment-scoring", "task_ids:topic-classification", "annotations_creators:no-annotation", "language_creators:found", "multilinguality:monolingual", "size_categories:100M<n<1B", "source_datasets:original", "language:en", "license:other", "region:us" ]
2023-11-02T14:57:03Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - no-annotation language_creators: - found language: - en license: - other multilinguality: - monolingual size_categories: - 100M<n<1B source_datasets: - original task_categories: - summarization - text-generation - fill-mask - text-classification task_ids: - text-scoring - language-modeling - masked-language-modeling - sentiment-classification - sentiment-scoring - topic-classification pretty_name: Amazon US Reviews viewer: false dataset_info: - config_name: Books_v1_01 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 6997552259 num_examples: 6106719 download_size: 2692708591 dataset_size: 6997552259 - config_name: Watches_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 458976082 num_examples: 960872 download_size: 162973819 dataset_size: 458976082 - config_name: Personal_Care_Appliances_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 49036547 num_examples: 85981 download_size: 17634794 dataset_size: 49036547 - config_name: Mobile_Electronics_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 63293377 num_examples: 104975 download_size: 22870508 dataset_size: 63293377 - config_name: Digital_Video_Games_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 80176851 num_examples: 145431 download_size: 27442648 dataset_size: 80176851 - config_name: Digital_Software_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 58782931 num_examples: 102084 download_size: 18997559 dataset_size: 58782931 - config_name: Major_Appliances_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 67642424 num_examples: 96901 download_size: 24359816 dataset_size: 67642424 - config_name: Gift_Card_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 47188062 num_examples: 149086 download_size: 12134676 dataset_size: 47188062 - config_name: Video_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 356264426 num_examples: 380604 download_size: 138929896 dataset_size: 356264426 - config_name: Luggage_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 167354173 num_examples: 348657 download_size: 60320191 dataset_size: 167354173 - config_name: Software_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 266020595 num_examples: 341931 download_size: 94010685 dataset_size: 266020595 - config_name: Video_Games_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1291054668 num_examples: 1785997 download_size: 475199894 dataset_size: 1291054668 - config_name: Furniture_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 405212374 num_examples: 792113 download_size: 148982796 dataset_size: 405212374 - config_name: Musical_Instruments_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 518908568 num_examples: 904765 download_size: 193389086 dataset_size: 518908568 - config_name: Digital_Music_Purchase_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 710546079 num_examples: 1688884 download_size: 253570168 dataset_size: 710546079 - config_name: Books_v1_02 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 3387034903 num_examples: 3105520 download_size: 1329539135 dataset_size: 3387034903 - config_name: Home_Entertainment_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 534333848 num_examples: 705889 download_size: 193168458 dataset_size: 534333848 - config_name: Grocery_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1072289473 num_examples: 2402458 download_size: 401337166 dataset_size: 1072289473 - config_name: Outdoors_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1172986088 num_examples: 2302401 download_size: 448963100 dataset_size: 1172986088 - config_name: Pet_Products_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1355659812 num_examples: 2643619 download_size: 515815253 dataset_size: 1355659812 - config_name: Video_DVD_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 3953234561 num_examples: 5069140 download_size: 1512355451 dataset_size: 3953234561 - config_name: Apparel_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 2256558450 num_examples: 5906333 download_size: 648641286 dataset_size: 2256558450 - config_name: PC_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 3982684438 num_examples: 6908554 download_size: 1512903923 dataset_size: 3982684438 - config_name: Tools_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 872273119 num_examples: 1741100 download_size: 333782939 dataset_size: 872273119 - config_name: Jewelry_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 703275869 num_examples: 1767753 download_size: 247022254 dataset_size: 703275869 - config_name: Baby_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 956952590 num_examples: 1752932 download_size: 357392893 dataset_size: 956952590 - config_name: Home_Improvement_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1329688315 num_examples: 2634781 download_size: 503339178 dataset_size: 1329688315 - config_name: Camera_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1187101912 num_examples: 1801974 download_size: 442653086 dataset_size: 1187101912 - config_name: Lawn_and_Garden_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1272255987 num_examples: 2557288 download_size: 486772662 dataset_size: 1272255987 - config_name: Office_Products_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1370685534 num_examples: 2642434 download_size: 512323500 dataset_size: 1370685534 - config_name: Electronics_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1875406721 num_examples: 3093869 download_size: 698828243 dataset_size: 1875406721 - config_name: Automotive_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1520191087 num_examples: 3514942 download_size: 582145299 dataset_size: 1520191087 - config_name: Digital_Video_Download_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1484214187 num_examples: 4057147 download_size: 506979922 dataset_size: 1484214187 - config_name: Mobile_Apps_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1627857158 num_examples: 5033376 download_size: 557959415 dataset_size: 1627857158 - config_name: Shoes_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 1781283508 num_examples: 4366916 download_size: 642255314 dataset_size: 1781283508 - config_name: Toys_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 2197820069 num_examples: 4864249 download_size: 838451398 dataset_size: 2197820069 - config_name: Sports_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 2241349145 num_examples: 4850360 download_size: 872478735 dataset_size: 2241349145 - config_name: Kitchen_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 2453735305 num_examples: 4880466 download_size: 930744854 dataset_size: 2453735305 - config_name: Beauty_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 2399292506 num_examples: 5115666 download_size: 914070021 dataset_size: 2399292506 - config_name: Music_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 3900138839 num_examples: 4751577 download_size: 1521994296 dataset_size: 3900138839 - config_name: Health_Personal_Care_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 2679427491 num_examples: 5331449 download_size: 1011180212 dataset_size: 2679427491 - config_name: Digital_Ebook_Purchase_v1_01 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 3470453859 num_examples: 5101693 download_size: 1294879074 dataset_size: 3470453859 - config_name: Home_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 2796680249 num_examples: 6221559 download_size: 1081002012 dataset_size: 2796680249 - config_name: Wireless_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 4633213433 num_examples: 9002021 download_size: 1704713674 dataset_size: 4633213433 - config_name: Books_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 7197687124 num_examples: 10319090 download_size: 2740337188 dataset_size: 7197687124 - config_name: Digital_Ebook_Purchase_v1_00 features: - name: marketplace dtype: string - name: customer_id dtype: string - name: review_id dtype: string - name: product_id dtype: string - name: product_parent dtype: string - name: product_title dtype: string - name: product_category dtype: string - name: star_rating dtype: int32 - name: helpful_votes dtype: int32 - name: total_votes dtype: int32 - name: vine dtype: class_label: names: '0': N '1': Y - name: verified_purchase dtype: class_label: names: '0': N '1': Y - name: review_headline dtype: string - name: review_body dtype: string - name: review_date dtype: string splits: - name: train num_bytes: 7302303804 num_examples: 12520722 download_size: 2689739299 dataset_size: 7302303804 --- # Dataset Card for "amazon_us_reviews" ## 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://s3.amazonaws.com/amazon-reviews-pds/readme.html](https://s3.amazonaws.com/amazon-reviews-pds/readme.html) - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 32377.29 MB - **Size of the generated dataset:** 82820.19 MB - **Total amount of disk used:** 115197.49 MB ### Dataset Summary <div class="course-tip course-tip-orange bg-gradient-to-br dark:bg-gradient-to-r before:border-orange-500 dark:before:border-orange-800 from-orange-50 dark:from-gray-900 to-white dark:to-gray-950 border border-orange-50 text-orange-700 dark:text-gray-400"> <p><b>Defunct:</b> Dataset "amazon_us_reviews" is defunct and no longer accessible due to the decision of data providers.</p> </div> Amazon Customer Reviews (a.k.a. Product Reviews) is one of Amazons iconic products. In a period of over two decades since the first review in 1995, millions of Amazon customers have contributed over a hundred million reviews to express opinions and describe their experiences regarding products on the Amazon.com website. This makes Amazon Customer Reviews a rich source of information for academic researchers in the fields of Natural Language Processing (NLP), Information Retrieval (IR), and Machine Learning (ML), amongst others. Accordingly, we are releasing this data to further research in multiple disciplines related to understanding customer product experiences. Specifically, this dataset was constructed to represent a sample of customer evaluations and opinions, variation in the perception of a product across geographical regions, and promotional intent or bias in reviews. Over 130+ million customer reviews are available to researchers as part of this release. The data is available in TSV files in the amazon-reviews-pds S3 bucket in AWS US East Region. Each line in the data files corresponds to an individual review (tab delimited, with no quote and escape characters). Each Dataset contains the following columns : marketplace - 2 letter country code of the marketplace where the review was written. customer_id - Random identifier that can be used to aggregate reviews written by a single author. review_id - The unique ID of the review. product_id - The unique Product ID the review pertains to. In the multilingual dataset the reviews for the same product in different countries can be grouped by the same product_id. product_parent - Random identifier that can be used to aggregate reviews for the same product. product_title - Title of the product. product_category - Broad product category that can be used to group reviews (also used to group the dataset into coherent parts). star_rating - The 1-5 star rating of the review. helpful_votes - Number of helpful votes. total_votes - Number of total votes the review received. vine - Review was written as part of the Vine program. verified_purchase - The review is on a verified purchase. review_headline - The title of the review. review_body - The review text. review_date - The date the review was written. ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances #### Apparel_v1_00 - **Size of downloaded dataset files:** 648.64 MB - **Size of the generated dataset:** 2254.36 MB - **Total amount of disk used:** 2903.00 MB An example of 'train' looks as follows. ``` { "customer_id": "45223824", "helpful_votes": 0, "marketplace": "US", "product_category": "Apparel", "product_id": "B016PUU3VO", "product_parent": "893588059", "product_title": "Fruit of the Loom Boys' A-Shirt (Pack of 4)", "review_body": "I ordered the same size as I ordered last time, and these shirts were much larger than the previous order. They were also about 6 inches longer. It was like they sent men's shirts instead of boys' shirts. I'll be returning these...", "review_date": "2015-01-01", "review_headline": "Sizes not correct, too big overall and WAY too long", "review_id": "R1N3Z13931J3O9", "star_rating": 2, "total_votes": 0, "verified_purchase": 1, "vine": 0 } ``` #### Automotive_v1_00 - **Size of downloaded dataset files:** 582.15 MB - **Size of the generated dataset:** 1518.88 MB - **Total amount of disk used:** 2101.03 MB An example of 'train' looks as follows. ``` { "customer_id": "16825098", "helpful_votes": 0, "marketplace": "US", "product_category": "Automotive", "product_id": "B000E4PCGE", "product_parent": "694793259", "product_title": "00-03 NISSAN SENTRA MIRROR RH (PASSENGER SIDE), Power, Non-Heated (2000 00 2001 01 2002 02 2003 03) NS35ER 963015M000", "review_body": "Product was as described, new and a great look. Only bad thing is that one of the screws was stripped so I couldn't tighten all three.", "review_date": "2015-08-31", "review_headline": "new and a great look. Only bad thing is that one of ...", "review_id": "R2RUIDUMDKG7P", "star_rating": 3, "total_votes": 0, "verified_purchase": 1, "vine": 0 } ``` #### Baby_v1_00 - **Size of downloaded dataset files:** 357.40 MB - **Size of the generated dataset:** 956.30 MB - **Total amount of disk used:** 1313.70 MB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "customer_id": "23299101", "helpful_votes": 2, "marketplace": "US", "product_category": "Baby", "product_id": "B00SN6F9NG", "product_parent": "3470998", "product_title": "Rhoost Nail Clipper for Baby - Ergonomically Designed and Easy to Use Baby Nail Clipper, Natural Wooden Bamboo - Baby Health and Personal Care Kits", "review_body": "\"This is an absolute MUST item to have! I was scared to death to clip my baby's nails. I tried other baby nail clippers and th...", "review_date": "2015-08-31", "review_headline": "If fits so comfortably in my hand and I feel like I have ...", "review_id": "R2DRL5NRODVQ3Z", "star_rating": 5, "total_votes": 2, "verified_purchase": 1, "vine": 0 } ``` #### Beauty_v1_00 - **Size of downloaded dataset files:** 914.08 MB - **Size of the generated dataset:** 2397.39 MB - **Total amount of disk used:** 3311.47 MB An example of 'train' looks as follows. ``` { "customer_id": "24655453", "helpful_votes": 1, "marketplace": "US", "product_category": "Beauty", "product_id": "B00SAQ9DZY", "product_parent": "292127037", "product_title": "12 New, High Quality, Amber 2 ml (5/8 Dram) Glass Bottles, with Orifice Reducer and Black Cap.", "review_body": "These are great for small mixtures for EO's, especially for traveling. I only gave this 4 stars because of the orifice reducer. The hole is so small it is hard to get the oil out. Just needs to be slightly bigger.", "review_date": "2015-08-31", "review_headline": "Good Product", "review_id": "R2A30ALEGLMCGN", "star_rating": 4, "total_votes": 1, "verified_purchase": 1, "vine": 0 } ``` #### Books_v1_00 - **Size of downloaded dataset files:** 2740.34 MB - **Size of the generated dataset:** 7193.86 MB - **Total amount of disk used:** 9934.20 MB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "customer_id": "49735028", "helpful_votes": 0, "marketplace": "US", "product_category": "Books", "product_id": "0664254969", "product_parent": "248307276", "product_title": "Presbyterian Creeds: A Guide to the Book of Confessions", "review_body": "\"The Presbyterian Book of Confessions contains multiple Creeds for use by the denomination. This guidebook helps he lay person t...", "review_date": "2015-08-31", "review_headline": "The Presbyterian Book of Confessions contains multiple Creeds for use ...", "review_id": "R2G519UREHRO8M", "star_rating": 3, "total_votes": 1, "verified_purchase": 1, "vine": 0 } ``` ### Data Fields The data fields are the same among all splits. #### Apparel_v1_00 - `marketplace`: a `string` feature. - `customer_id`: a `string` feature. - `review_id`: a `string` feature. - `product_id`: a `string` feature. - `product_parent`: a `string` feature. - `product_title`: a `string` feature. - `product_category`: a `string` feature. - `star_rating`: a `int32` feature. - `helpful_votes`: a `int32` feature. - `total_votes`: a `int32` feature. - `vine`: a classification label, with possible values including `Y` (0), `N` (1). - `verified_purchase`: a classification label, with possible values including `Y` (0), `N` (1). - `review_headline`: a `string` feature. - `review_body`: a `string` feature. - `review_date`: a `string` feature. #### Automotive_v1_00 - `marketplace`: a `string` feature. - `customer_id`: a `string` feature. - `review_id`: a `string` feature. - `product_id`: a `string` feature. - `product_parent`: a `string` feature. - `product_title`: a `string` feature. - `product_category`: a `string` feature. - `star_rating`: a `int32` feature. - `helpful_votes`: a `int32` feature. - `total_votes`: a `int32` feature. - `vine`: a classification label, with possible values including `Y` (0), `N` (1). - `verified_purchase`: a classification label, with possible values including `Y` (0), `N` (1). - `review_headline`: a `string` feature. - `review_body`: a `string` feature. - `review_date`: a `string` feature. #### Baby_v1_00 - `marketplace`: a `string` feature. - `customer_id`: a `string` feature. - `review_id`: a `string` feature. - `product_id`: a `string` feature. - `product_parent`: a `string` feature. - `product_title`: a `string` feature. - `product_category`: a `string` feature. - `star_rating`: a `int32` feature. - `helpful_votes`: a `int32` feature. - `total_votes`: a `int32` feature. - `vine`: a classification label, with possible values including `Y` (0), `N` (1). - `verified_purchase`: a classification label, with possible values including `Y` (0), `N` (1). - `review_headline`: a `string` feature. - `review_body`: a `string` feature. - `review_date`: a `string` feature. #### Beauty_v1_00 - `marketplace`: a `string` feature. - `customer_id`: a `string` feature. - `review_id`: a `string` feature. - `product_id`: a `string` feature. - `product_parent`: a `string` feature. - `product_title`: a `string` feature. - `product_category`: a `string` feature. - `star_rating`: a `int32` feature. - `helpful_votes`: a `int32` feature. - `total_votes`: a `int32` feature. - `vine`: a classification label, with possible values including `Y` (0), `N` (1). - `verified_purchase`: a classification label, with possible values including `Y` (0), `N` (1). - `review_headline`: a `string` feature. - `review_body`: a `string` feature. - `review_date`: a `string` feature. #### Books_v1_00 - `marketplace`: a `string` feature. - `customer_id`: a `string` feature. - `review_id`: a `string` feature. - `product_id`: a `string` feature. - `product_parent`: a `string` feature. - `product_title`: a `string` feature. - `product_category`: a `string` feature. - `star_rating`: a `int32` feature. - `helpful_votes`: a `int32` feature. - `total_votes`: a `int32` feature. - `vine`: a classification label, with possible values including `Y` (0), `N` (1). - `verified_purchase`: a classification label, with possible values including `Y` (0), `N` (1). - `review_headline`: a `string` feature. - `review_body`: a `string` feature. - `review_date`: a `string` feature. ### Data Splits | name | train | |----------------|-------:| |Apparel_v1_00 | 5906333| |Automotive_v1_00 | 3514942| |Baby_v1_00 | 1752932| |Beauty_v1_00 | 5115666| |Books_v1_00 | 10319090| |Books_v1_01 | 6106719| |Books_v1_02 | 3105520| |Camera_v1_00 | 1801974| |Digital_Ebook_Purchase_v1_00 | 12520722| |Digital_Ebook_Purchase_v1_01 | 5101693| |Digital_Music_Purchase_v1_00 | 1688884| |Digital_Software_v1_00 | 102084| |Digital_Video_Download_v1_00 | 4057147| |Digital_Video_Games_v1_00 | 145431| |Electronics_v1_00 | 3093869| |Furniture_v1_00 | 792113| |Gift_Card_v1_00 | 149086| |Grocery_v1_00 | 2402458| |Health_Personal_Care_v1_00 | 5331449| |Home_Entertainment_v1_00 | 705889| |Home_Improvement_v1_00 | 2634781| |Home_v1_00 | 6221559| |Jewelry_v1_00 | 1767753| |Kitchen_v1_00 | 4880466| |Lawn_and_Garden_v1_00 | 2557288| |Luggage_v1_00 | 348657| |Major_Appliances_v1_00 | 96901| |Mobile_Apps_v1_00 | 5033376| |Mobile_Electronics_v1_00 | 104975| |Music_v1_00 | 4751577| |Musical_Instruments_v1_00 | 904765| |Office_Products_v1_00 | 2642434| |Outdoors_v1_00 | 2302401| |PC_v1_00 | 6908554| |Personal_Care_Appliances_v1_00 | 85981| |Pet_Products_v1_00 | 2643619| |Shoes_v1_00 | 4366916| |Software_v1_00 | 341931| |Sports_v1_00 | 4850360| |Tools_v1_00 | 1741100| |Toys_v1_00 | 4864249| |Video_DVD_v1_00 | 5069140| |Video_Games_v1_00 | 1785997| |Video_v1_00 | 380604| |Watches_v1_00 | 960872| |Wireless_v1_00 | 9002021| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information https://s3.amazonaws.com/amazon-reviews-pds/LICENSE.txt By accessing the Amazon Customer Reviews Library ("Reviews Library"), you agree that the Reviews Library is an Amazon Service subject to the [Amazon.com Conditions of Use](https://www.amazon.com/gp/help/customer/display.html/ref=footer_cou?ie=UTF8&nodeId=508088) and you agree to be bound by them, with the following additional conditions: In addition to the license rights granted under the Conditions of Use, Amazon or its content providers grant you a limited, non-exclusive, non-transferable, non-sublicensable, revocable license to access and use the Reviews Library for purposes of academic research. You may not resell, republish, or make any commercial use of the Reviews Library or its contents, including use of the Reviews Library for commercial research, such as research related to a funding or consultancy contract, internship, or other relationship in which the results are provided for a fee or delivered to a for-profit organization. You may not (a) link or associate content in the Reviews Library with any personal information (including Amazon customer accounts), or (b) attempt to determine the identity of the author of any content in the Reviews Library. If you violate any of the foregoing conditions, your license to access and use the Reviews Library will automatically terminate without prejudice to any of the other rights or remedies Amazon may have. ### Citation Information No citation information. ### Contributions Thanks to [@joeddav](https://github.com/joeddav) for adding this dataset.
[ -0.611249566078186, -0.6206175684928894, 0.033025193959474564, 0.443452388048172, -0.42360353469848633, 0.02090231329202652, -0.08902052044868469, -0.6053390502929688, 0.6199226975440979, 0.4903533160686493, -0.8930528163909912, -0.7848483324050903, -0.344473659992218, 0.11689592152833939, -0.2423337996006012, 1.220737338066101, -0.018450070172548294, -0.24881765246391296, -0.04702400043606758, -0.24668404459953308, -0.18849383294582367, -0.42926815152168274, -0.25945740938186646, -0.018196407705545425, 0.4765401780605316, 0.47415709495544434, 0.9063887596130371, 0.7968438267707825, 0.8523444533348083, 0.2551327049732208, -0.09997213631868362, 0.06628920882940292, -0.36978307366371155, -0.1393868327140808, 0.17526422441005707, -0.3741571009159088, -0.8360373377799988, 0.22077061235904694, 0.2766241431236267, 0.5395960211753845, -0.19637355208396912, 0.5430335402488708, 0.2084134966135025, 1.0566667318344116, -0.20628106594085693, 0.28349992632865906, -0.10739675909280777, 0.25149866938591003, -0.07896307855844498, -0.11755803972482681, 0.011722755618393421, -0.549636960029602, -0.1075492724776268, -0.7625212669372559, 0.35777315497398376, 0.20298932492733002, 1.0377837419509888, 0.14879202842712402, -0.10783909261226654, -0.2413366436958313, -0.7052334547042847, 0.8475614786148071, -0.8130915760993958, 0.1116788387298584, 0.5051091909408569, 0.16222961246967316, -0.13745296001434326, -0.3168122172355652, -0.5665870904922485, 0.21506226062774658, -0.34856051206588745, 0.3681565821170807, -0.23403407633304596, -0.3608167767524719, 0.35839807987213135, 0.6052248477935791, -0.6849715709686279, -0.13924981653690338, -0.530900239944458, -0.02565397508442402, 1.070356845855713, 0.22077935934066772, 0.0753362700343132, -0.4618094563484192, -0.44034332036972046, -0.3709620535373688, -0.5198830962181091, 0.20982256531715393, 0.5499703884124756, 0.3398008942604065, -0.5925168395042419, 0.5408624410629272, -0.23251478374004364, 0.36074990034103394, 0.06895595788955688, -0.11000005900859833, 0.8025873303413391, -0.5574659109115601, -0.2834904193878174, -0.3311036229133606, 1.087815761566162, 0.8472497463226318, -0.190248504281044, 0.15038488805294037, -0.11054275184869766, -0.09610116481781006, 0.14858882129192352, -0.809429943561554, -0.16496458649635315, 0.6161724925041199, -0.8417829871177673, -0.3458266854286194, 0.2810295522212982, -1.0508486032485962, -0.16458632051944733, -0.28641223907470703, 0.09465903043746948, -0.08384674042463303, -0.19445601105690002, 0.11139477789402008, -0.1953115463256836, 0.24654720723628998, 0.08502504974603653, -0.4154174029827118, 0.3416517376899719, 0.5110289454460144, 0.5169466733932495, -0.049195386469364166, -0.19453555345535278, 0.13870397210121155, -0.11572092771530151, -0.35382023453712463, 0.7720730304718018, -0.1638355702161789, -0.3964684009552002, -0.02410781756043434, 0.5471617579460144, 0.32190409302711487, -0.5102019309997559, 0.868031919002533, -0.26305440068244934, 0.12955468893051147, -0.6615122556686401, -0.25214946269989014, -0.19893032312393188, 0.3991595208644867, -0.8147076964378357, 1.0937155485153198, 0.28801071643829346, -0.6481037735939026, 0.5654671788215637, -0.4772457182407379, -0.4589342772960663, -0.08226742595434189, 0.1931104063987732, -0.808100700378418, -0.19523106515407562, 0.40627267956733704, 0.5905417203903198, -0.5005804896354675, -0.02679021656513214, -0.3852694630622864, -0.14967601001262665, 0.3255021870136261, -0.05739855766296387, 1.0788236856460571, 0.15774641931056976, -0.1328260451555252, 0.01543427538126707, -0.8776928782463074, -0.06911127269268036, 0.4241238534450531, -0.2508563995361328, 0.03408758342266083, -0.1942698359489441, 0.2904779016971588, 0.14460676908493042, 0.20369528234004974, -0.5639356374740601, 0.2088390737771988, -0.10502633452415466, 0.3656279444694519, 0.6170094609260559, 0.3030737638473511, 0.1673746407032013, -0.5761435627937317, 0.7408952713012695, 0.15301145613193512, 0.6331413388252258, -0.07471393793821335, -0.47496676445007324, -0.5814332962036133, 0.012774149887263775, 0.24698452651500702, 0.38313210010528564, -0.3936029076576233, 1.0058273077011108, -0.3110887408256531, -0.6980250477790833, -0.36975714564323425, 0.15602092444896698, 0.45256128907203674, 0.3091958463191986, 0.3283817768096924, -0.5490737557411194, -0.4671856760978699, -0.9056669473648071, 0.2421996146440506, -0.16510610282421112, -0.12505334615707397, 0.6959275007247925, 0.5459818243980408, -0.11360151320695877, 0.7771344780921936, -0.8031598925590515, -0.5390933156013489, -0.26187512278556824, -0.0524616613984108, 0.5211989283561707, 0.4223461151123047, 0.7572672367095947, -0.603335440158844, -0.47160235047340393, -0.14182236790657043, -0.5950837135314941, 0.03354770317673683, -0.07040709257125854, -0.2659079134464264, 0.07751872390508652, 0.09322589635848999, -0.6410568356513977, 0.4973776638507843, 0.5528377890586853, -0.3516587018966675, 0.58006751537323, -0.2296743094921112, 0.23881807923316956, -1.0569183826446533, 0.13033999502658844, 0.19128848612308502, 0.09106066823005676, -0.16485615074634552, -0.23349875211715698, -0.05663168802857399, 0.08107265830039978, -0.3121813237667084, 0.1342967003583908, -0.4265952706336975, -0.18875175714492798, 0.1268729418516159, 0.023244740441441536, 0.34810441732406616, 0.7765073180198669, -0.2598957121372223, 0.5853477120399475, 0.3209632337093353, -0.5297523736953735, 0.5308876037597656, 0.6358569264411926, -0.44790467619895935, 0.7030484080314636, -0.7470045685768127, 0.06591559201478958, -0.23324786126613617, 0.5232613682746887, -0.8064128160476685, -0.2897898256778717, 0.5410768389701843, -0.5271055102348328, 0.1328907459974289, -0.10767556726932526, -0.6164465546607971, -0.64165860414505, -0.6369380354881287, 0.09619361162185669, 0.43183472752571106, -0.437704473733902, 0.30137190222740173, 0.6206473112106323, -0.13013312220573425, -0.549352765083313, -0.7012104392051697, -0.1436530351638794, -0.26707926392555237, -0.5121340751647949, 0.3772541582584381, -0.23568148910999298, -0.06621768325567245, 0.25953149795532227, -0.04836064577102661, 0.005948217585682869, -0.31623485684394836, 0.18991683423519135, 0.32908159494400024, -0.08432120084762573, 0.02163728140294552, -0.17533329129219055, -0.1699216365814209, 0.2127547562122345, 0.12800933420658112, 0.3650311827659607, -0.09833172708749771, 0.03382651135325432, -0.37519147992134094, 0.15540264546871185, 0.25881269574165344, -0.1517709344625473, 0.43773746490478516, 0.5240666270256042, -0.17400941252708435, -0.3313182294368744, -0.31733280420303345, -0.2229958176612854, -0.39702945947647095, 0.2348446398973465, 0.03870011866092682, -0.2887563109397888, 0.7148261666297913, 0.4072953164577484, 0.10484746098518372, 0.6572034358978271, 0.2955392897129059, -0.39839521050453186, 0.7484022974967957, 0.3672093451023102, -0.2621978223323822, 0.432219535112381, -0.6039730906486511, 0.10563641041517258, -0.8410646915435791, -0.4151642620563507, -0.534766435623169, -0.7173159122467041, -0.659835159778595, -0.48957520723342896, 0.1910097599029541, -0.07985705137252808, -0.31188341975212097, 0.5875685214996338, -0.8017732501029968, 0.39092370867729187, 0.5438817739486694, 0.4386863708496094, 0.01996314898133278, 0.13922849297523499, 0.2999248504638672, -0.0309398602694273, -0.41841569542884827, -0.18961243331432343, 1.306546688079834, 0.41580432653427124, 0.5914191603660583, -0.03074444830417633, 0.23016910254955292, 0.3786172866821289, 0.03670310974121094, -0.7226864695549011, 0.6253947019577026, -0.265897661447525, -0.679090142250061, -0.11025461554527283, -0.4006401300430298, -1.115312933921814, -0.1217743530869484, -0.31029459834098816, -0.3899489939212799, 0.5338020324707031, 0.14675717055797577, -0.4325198829174042, 0.2232426404953003, -0.3774871230125427, 0.6652165055274963, -0.4550832211971283, -0.43274304270744324, -0.01878758892416954, -0.9204277992248535, 0.10633937269449234, 0.2684231102466583, 0.2399110049009323, -0.2750473916530609, 0.059202540665864944, 1.070151448249817, -0.6909856200218201, 0.7010183334350586, -0.1867237538099289, 0.1339949518442154, 0.5157799124717712, -0.29929643869400024, 0.37159183621406555, -0.1376253068447113, 0.07505936920642853, 0.3240199089050293, -0.2342430204153061, -0.2445812076330185, -0.5793648958206177, 0.512369692325592, -0.6993523240089417, -0.15759295225143433, -0.5383439064025879, -0.39015790820121765, -0.19146622717380524, 0.12270254641771317, 0.16707777976989746, 0.4371422231197357, -0.06536470353603363, 0.4920490086078644, 0.5890129208564758, -0.37055715918540955, 0.26491883397102356, 0.34258511662483215, -0.29863300919532776, -0.6986849308013916, 0.8797715902328491, 0.28210416436195374, -0.09631489962339401, 0.12143191695213318, 0.33896777033805847, -0.31173330545425415, -0.344677209854126, -0.47955581545829773, 0.42044705152511597, -0.4459133446216583, -0.4085952937602997, -0.5217193961143494, -0.1619170904159546, -0.1969362199306488, 0.13616739213466644, -0.23016948997974396, -0.4807071387767792, -0.28131505846977234, -0.4684114158153534, 0.6896740794181824, 0.8110380172729492, -0.29406699538230896, 0.4232328236103058, -0.6476682424545288, 0.3062173128128052, 0.012089519761502743, 0.5882794857025146, -0.0928889662027359, -0.29391515254974365, -0.25686585903167725, -0.002592122182250023, -0.5029173493385315, -0.6907932162284851, 0.5321584343910217, -0.043631453067064285, 0.15800578892230988, 0.46278247237205505, 0.13858245313167572, 0.7876259088516235, -0.16628652811050415, 0.8832564949989319, 0.10620827972888947, -0.29505017399787903, 0.3940184414386749, -0.5918312072753906, 0.14758050441741943, 0.6096284985542297, 0.4794323742389679, -0.3813924491405487, -0.023690124973654747, -0.8503866195678711, -1.083369493484497, 0.7836131453514099, 0.20500448346138, 0.06857012957334518, 0.27845004200935364, 0.23815079033374786, 0.1595706194639206, 0.5839148759841919, -0.692520260810852, -0.6781301498413086, -0.0805109441280365, 0.02548072300851345, -0.1908300668001175, -0.21463556587696075, -0.2257770597934723, -0.5034870505332947, 0.9818944931030273, 0.20809414982795715, 0.4341452419757843, 0.18016862869262695, 0.27210983633995056, -0.24617725610733032, 0.09614985436201096, 0.20881865918636322, 0.46626439690589905, -0.527773916721344, -0.43599024415016174, -0.34550148248672485, -0.6270272135734558, -0.23243576288223267, 0.2431338131427765, -0.33683428168296814, -0.061710674315690994, 0.1628846675157547, 0.6264154314994812, 0.08206813037395477, -0.28838929533958435, 0.4841805696487427, -0.1227244883775711, -0.3327791690826416, -0.447915643453598, -0.2449646294116974, -0.030080405995249748, -0.010463032871484756, 0.32525157928466797, 0.26029273867607117, 0.19992446899414062, -0.6592353582382202, 0.3686637580394745, 0.3002856373786926, -0.256941556930542, -0.40070033073425293, 0.39335697889328003, 0.14314983785152435, -0.22464458644390106, 0.6497546434402466, -0.19760850071907043, -0.526729166507721, 0.9292839765548706, 0.21863314509391785, 0.7465436458587646, -0.053806185722351074, 0.447881817817688, 0.7243543267250061, 0.43788719177246094, 0.009468850679695606, 0.5398375391960144, -0.12113051116466522, -0.6492002606391907, -0.0044274539686739445, -0.6422592997550964, -0.38983452320098877, 0.3844628930091858, -0.8389362692832947, 0.2228054702281952, -0.6255863308906555, -0.3585432469844818, -0.139817476272583, 0.2574511170387268, -0.7463294267654419, 0.6032935380935669, -0.31427597999572754, 0.6113374829292297, -0.9498423933982849, 0.25913000106811523, 0.30139708518981934, -0.7352040410041809, -1.006814956665039, -0.06460501253604889, 0.12601251900196075, -0.5364981889724731, 0.09072311967611313, 0.25826895236968994, 0.20985233783721924, -0.5316648483276367, -0.613957941532135, -0.6804277896881104, 0.9276963472366333, 0.036907684057950974, -0.4947867691516876, 0.2818067967891693, 0.291708379983902, 0.7318546772003174, -0.2934344410896301, 0.2999449372291565, 0.7003123164176941, 0.3910030722618103, 0.15781891345977783, -0.48608601093292236, 0.06600139290094376, -0.549781084060669, -0.3230847716331482, 0.06779824942350388, -0.8690865635871887, 0.7427594661712646, 0.04161655530333519, 0.024493049830198288, -0.15865838527679443, 0.403807133436203, 0.25196290016174316, 0.40380859375, 0.3823990523815155, 0.6624748706817627, 0.6376538276672363, -0.2084222286939621, 1.1590237617492676, -0.24956680834293365, 0.4438043236732483, 0.9062168598175049, -0.09420974552631378, 0.9207454323768616, 0.21053698658943176, -0.6537901163101196, 0.507461667060852, 0.6897785663604736, -0.4509572684764862, 0.23782335221767426, 0.022986682131886482, 0.1623554825782776, 0.17938069999217987, -0.12529268860816956, -0.5221081972122192, 0.1264910250902176, 0.34312519431114197, -0.5579074025154114, 0.10338442772626877, -0.2482033371925354, 0.1784883439540863, -0.17383667826652527, -0.22242231667041779, 0.7607652544975281, 0.12697869539260864, -0.3717476725578308, 0.44818100333213806, -0.328745573759079, 0.5593080520629883, -0.5672714114189148, -0.04986598342657089, -0.30144912004470825, 0.22307945787906647, -0.669167697429657, -1.037689208984375, 0.45144957304000854, -0.009061537683010101, -0.2956934869289398, -0.44389408826828003, 0.3908708989620209, -0.0960439145565033, -0.9353934526443481, 0.1931532919406891, 0.23511719703674316, 0.30358850955963135, 0.28561529517173767, -1.0159800052642822, 0.2305012047290802, 0.09976007789373398, -0.6144471168518066, 0.0017462370451539755, 0.2488562911748886, 0.15264706313610077, 0.5552501678466797, 0.6679158806800842, 0.09103905409574509, -0.1463196724653244, -0.0779847800731659, 0.7305073738098145, -0.6333227753639221, -0.5979160666465759, -0.40363672375679016, 0.6192156672477722, -0.34702321887016296, -0.543737530708313, 0.9283000230789185, 0.9144558906555176, 0.8357312679290771, -0.15222595632076263, 0.8174958229064941, -0.44353851675987244, 0.8089622259140015, -0.2378131002187729, 0.7474696636199951, -0.7361574769020081, 0.26737260818481445, -0.47606751322746277, -1.0299413204193115, -0.38033920526504517, 0.6943308115005493, -0.24063582718372345, 0.25182044506073, 0.5912327170372009, 0.8584385514259338, -0.001770280534401536, 0.2357240468263626, -0.13700012862682343, 0.45400792360305786, 0.07074771076440811, 0.21177451312541962, 0.37314465641975403, -0.7206442356109619, 0.5486143231391907, -0.6514626145362854, -0.15967795252799988, -0.06843443214893341, -0.8081275820732117, -0.6433737874031067, -0.49172571301460266, -0.527577817440033, -0.5608317852020264, -0.19660528004169464, 0.8198028206825256, 0.710640013217926, -0.8155529499053955, -0.4441932141780853, 0.07072970271110535, -0.04940014332532883, -0.43037280440330505, -0.24397429823875427, 0.6264493465423584, 0.30486196279525757, -0.5373092293739319, 0.08503648638725281, -0.0381796695291996, -0.037254609167575836, -0.008008463308215141, 0.018704965710639954, 0.21933472156524658, -0.020586809143424034, 0.4360288083553314, 0.3631696403026581, -0.31891369819641113, 0.012261050753295422, 0.014240022748708725, 0.16107548773288727, 0.5459074974060059, 0.46708711981773376, -0.5949962735176086, 0.06720735877752304, 0.5782170295715332, 0.18096475303173065, 0.635482907295227, 0.29524046182632446, 0.23911882936954498, -0.6205170154571533, 0.048867713660001755, 0.19109797477722168, 0.3780571222305298, 0.41755595803260803, -0.38955432176589966, 0.6832844614982605, 0.04036238417029381, -0.6894082427024841, -0.708931028842926, 0.007669507060199976, -1.306888222694397, -0.02596353366971016, 1.0297832489013672, -0.025755012407898903, -0.5712599754333496, 0.05675313249230385, -0.27293625473976135, -0.06857851892709732, -0.5871281623840332, 0.7044341564178467, 0.5673951506614685, 0.0028976337052881718, -0.021589500829577446, -0.48355355858802795, 0.4347524046897888, 0.11441799998283386, -0.9717667102813721, 0.18264730274677277, 0.5117956399917603, 0.21906976401805878, 0.2324339896440506, 0.40243974328041077, -0.3683415353298187, 0.19640026986598969, -0.01132274977862835, 0.11335036158561707, -0.0061266859993338585, -0.21295838057994843, -0.2926385998725891, 0.10621167719364166, -0.3186796307563782, -0.3066848814487457 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
CM/codexglue_code2text_javascript
CM
2023-04-22T01:51:42Z
8,438
2
null
[ "region:us" ]
2023-04-22T01:51:42Z
2023-04-22T01:51:30.000Z
2023-04-22T01:51:30
--- dataset_info: features: - name: id dtype: int32 - name: repo dtype: string - name: path dtype: string - name: func_name dtype: string - name: original_string dtype: string - name: language dtype: string - name: code dtype: string - name: code_tokens sequence: string - name: docstring dtype: string - name: docstring_tokens sequence: string - name: sha dtype: string - name: url dtype: string splits: - name: train num_bytes: 160860431 num_examples: 58025 - name: validation num_bytes: 10337344 num_examples: 3885 - name: test num_bytes: 10190713 num_examples: 3291 download_size: 65795549 dataset_size: 181388488 --- # Dataset Card for "codexglue_code2text_javascript" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.3285767734050751, -0.1686738282442093, 0.07453585416078568, 0.3555929660797119, -0.014457887038588524, 0.1429298222064972, -0.10849399864673615, -0.26307421922683716, 0.6248372793197632, 0.573340117931366, -0.6639662981033325, -1.071324110031128, -0.614497721195221, -0.4327419400215149, -0.33577805757522583, 1.3727221488952637, -0.0654459148645401, 0.07380593568086624, -0.5969364643096924, -0.039420947432518005, -0.34184741973876953, -0.49564850330352783, -0.5081728100776672, -0.42241930961608887, 0.6943471431732178, 0.702708899974823, 0.5788277387619019, 0.4790556728839874, 0.8273075222969055, 0.07049929350614548, 0.22733543813228607, -0.15163753926753998, -0.458880752325058, -0.24196293950080872, -0.35358816385269165, -0.7654825448989868, -0.9626273512840271, -0.10638174414634705, 0.31064629554748535, 0.47868189215660095, -0.1913045346736908, 0.9094785451889038, -0.2191208451986313, 0.5747018456459045, -0.5235299468040466, 0.9271721243858337, -0.2631566524505615, -0.06265351921319962, -0.6132616400718689, -0.21070970594882965, -0.09563777595758438, -0.556279182434082, -0.21691091358661652, -1.1468923091888428, 0.2788408696651459, -0.05903089419007301, 0.6283717155456543, 0.19658194482326508, -0.035368289798498154, -0.5500178337097168, -0.42072027921676636, 0.2249639332294464, -0.33176717162132263, -0.05416557565331459, 0.9780303239822388, 0.3757384717464447, 0.08272172510623932, -1.0936251878738403, -0.41889306902885437, 0.17409703135490417, -0.1164105013012886, 0.5122568607330322, -0.003782585496082902, 0.031076129525899887, 0.5258576273918152, 0.5147583484649658, -0.8795781135559082, -0.24847961962223053, -0.6526588201522827, -0.4780372083187103, 0.5636305809020996, 0.17172284424304962, 0.5035002827644348, 0.1996867060661316, -0.111253522336483, -0.385140597820282, -0.526405394077301, 0.015035049058496952, 0.5635684728622437, 0.20553192496299744, -1.082733154296875, 0.4700418710708618, 0.35233643651008606, 0.3449561893939972, -0.11729153245687485, 0.34701594710350037, 0.6515882015228271, -0.25174009799957275, -0.03354862332344055, 0.0078336326405406, 0.08714409172534943, 0.45491790771484375, 0.4155355989933014, -0.03571373596787453, 0.10414297133684158, 0.4408125579357147, 0.30277714133262634, -1.1831879615783691, -0.7891549468040466, 0.2802518308162689, -0.7214955687522888, -0.2735651731491089, 0.43595004081726074, -1.016467809677124, -0.5164805054664612, -0.24296632409095764, -0.1270892173051834, 0.2018282264471054, -0.6766778230667114, -0.01655072718858719, -0.7994094491004944, 0.17957383394241333, 0.1317625790834427, -1.245362401008606, 0.5450064539909363, 0.7204482555389404, 0.42885252833366394, 0.22450430691242218, 0.02387658879160881, -0.303230345249176, 0.31145063042640686, -0.2680593430995941, 0.8645009994506836, -0.7145720720291138, -0.5262749195098877, 0.4623347222805023, 0.36958932876586914, 0.25707557797431946, -0.37534648180007935, 0.7221517562866211, -0.46460485458374023, -0.11026784032583237, -0.48005449771881104, -0.572793185710907, -0.010925211943686008, 0.12395935505628586, -1.1206692457199097, 1.2402758598327637, 0.5016233325004578, -0.5591985583305359, 0.4681796729564667, -1.051229476928711, -0.4720916152000427, 0.5546321868896484, -0.2939721643924713, -0.27821657061576843, 0.20619939267635345, -0.1802530288696289, 0.19795989990234375, -0.33704420924186707, 0.32620272040367126, -0.7007255554199219, -0.3546142578125, 0.19680814445018768, 0.07477477192878723, 0.7592877149581909, 0.23365989327430725, 0.20665444433689117, -0.13414767384529114, -0.9613052010536194, 0.09114666283130646, 0.17792585492134094, -0.15481741726398468, -0.22391581535339355, -0.27617117762565613, 0.7818119525909424, -0.08651772886514664, 0.42868557572364807, -0.15520279109477997, 0.6142430305480957, -0.3327071964740753, -0.23444326221942902, 0.578273355960846, -0.07090821862220764, 0.421409547328949, -0.3288913071155548, 0.6325653791427612, -0.36060190200805664, 0.2147507667541504, 0.01544175948947668, -0.5819495916366577, -0.5887157320976257, 0.05341210961341858, 0.34564822912216187, 0.6473903656005859, -0.7702990770339966, 0.457952618598938, 0.14854668080806732, -0.8813118934631348, -0.24068644642829895, 0.25318288803100586, 0.6097626090049744, -0.030970854684710503, 0.43268007040023804, -0.5028114914894104, -0.6869323253631592, -0.7512606978416443, 0.26911938190460205, -0.3562528192996979, 0.03133467584848404, 0.3920176029205322, 0.728123664855957, -0.373468279838562, 0.8898757100105286, -0.9552375674247742, -0.28026896715164185, -0.08245367556810379, 0.07121295481920242, 0.3335656225681305, 0.7073512673377991, 1.0441828966140747, -0.7088938355445862, -0.40726253390312195, -0.3361166715621948, -0.5755857825279236, -0.42699721455574036, 0.22207848727703094, -0.3449401557445526, -0.027750670909881592, 0.2641043961048126, -0.29680052399635315, 0.8674871921539307, 1.0419832468032837, -0.5427004098892212, 0.11104913800954819, 0.02013501711189747, 0.08868159353733063, -1.3374245166778564, 0.5712161660194397, -0.03888003155589104, -0.005647453013807535, -0.48867934942245483, 0.016708996146917343, 0.27383020520210266, -0.06472896784543991, -0.07074156403541565, 0.8184567093849182, -0.3257712125778198, -0.1691448986530304, -0.2847340703010559, -0.03176150098443031, 0.0653141513466835, 0.3207898437976837, 0.10600829124450684, 0.9435037970542908, 0.8289008736610413, -0.31430256366729736, 0.8895065784454346, 0.5951099395751953, -0.04888612776994705, 0.5417048335075378, -0.7286108732223511, 0.1704741269350052, -0.0963556095957756, 0.5774347186088562, -1.0032018423080444, -0.7274671196937561, 0.505965530872345, -0.5531217455863953, 0.4309486448764801, -0.5319954752922058, -0.8110107779502869, -0.7278868556022644, -0.29653850197792053, 0.909966766834259, 0.5698180794715881, -0.6993020176887512, 0.15842242538928986, 0.75755375623703, -0.023182110860943794, -0.17169733345508575, -1.281191349029541, 0.11632633209228516, 0.05880594998598099, -0.2646276652812958, 0.757553219795227, -0.5363073348999023, -0.045786913484334946, -0.24938558042049408, 0.14100657403469086, -0.4190467894077301, -0.2636093497276306, 0.6407684087753296, 0.22644637525081635, -0.05074186995625496, 0.6715691685676575, 0.026536548510193825, -0.8307322859764099, 0.18338488042354584, -0.3635712265968323, 0.44692060351371765, -0.005873017478734255, -0.15991926193237305, -0.33841243386268616, 0.3022801876068115, 0.015057094395160675, -0.132036492228508, 0.30302274227142334, 1.1144200563430786, -0.6490685343742371, -0.3673989772796631, -0.3634013831615448, -0.10297181457281113, -0.4477998614311218, 0.19960232079029083, 0.022675571963191032, -0.6946858763694763, 0.6487570405006409, -0.07928064465522766, -0.17742140591144562, 0.6744881868362427, 1.016079306602478, 0.18972305953502655, 0.4779256582260132, 0.6475955247879028, -0.2940167784690857, 0.2709827721118927, -0.19582527875900269, -0.33053407073020935, -0.2960519790649414, -0.39100381731987, -0.6834056377410889, -0.2435062974691391, -0.5858756899833679, -0.5427336096763611, -0.14728178083896637, -0.06975629180669785, 0.0740603432059288, 0.7713533043861389, -0.644977867603302, 0.4071780741214752, 0.4327058494091034, -0.1298212707042694, -0.12593646347522736, 0.13754644989967346, 0.24078606069087982, 0.1540050208568573, -0.5307324528694153, -0.3078523874282837, 1.151371717453003, 0.44091320037841797, 1.0960625410079956, 0.45291757583618164, 0.5357744693756104, 0.5796930193901062, 0.317882776260376, -0.3249967396259308, 0.2744150459766388, -0.042710863053798676, -0.9553839564323425, 0.234149768948555, 0.10185874998569489, -0.80952388048172, -0.6137116551399231, -0.18154959380626678, -0.5837514400482178, 0.1896457076072693, 0.4079824388027191, 0.01543401088565588, 0.0008611714583821595, -0.6966418027877808, 0.972754180431366, 0.15622583031654358, -0.25157585740089417, -0.2979297339916229, -0.6966826319694519, -0.005899254232645035, 0.2869996726512909, 0.20531845092773438, -0.09246058762073517, -0.17729245126247406, 0.9290422797203064, -0.36423319578170776, 1.2750210762023926, -0.4553621709346771, -0.3776926100254059, 0.3945034444332123, -0.2241695076227188, 0.31643977761268616, 0.722261905670166, 0.04428208991885185, 0.1849246770143509, 0.20775844156742096, -0.48155781626701355, -0.5272698402404785, 0.663733184337616, -0.6406264901161194, 0.3375788927078247, -0.41166985034942627, -0.38604989647865295, -0.10965577512979507, 0.05967506021261215, 0.26132506132125854, 1.008128046989441, -0.443532794713974, 0.012411758303642273, 0.5686357617378235, 0.04564540088176727, 0.547344446182251, 0.28396594524383545, -0.4389999210834503, -0.5877645015716553, 1.0218360424041748, -0.07526302337646484, -0.1733674854040146, 0.3886965811252594, -0.019912566989660263, -0.13898511230945587, -0.3144869804382324, -0.7109491229057312, 0.03231976553797722, -0.7144021391868591, -0.5864975452423096, -0.15847206115722656, -0.23050792515277863, -0.4994499981403351, -0.4506068229675293, -0.2696545720100403, -0.6429927349090576, -0.749602198600769, -0.520409345626831, 0.857515275478363, 0.6735852360725403, -0.3622017502784729, 0.48426562547683716, -0.8223397731781006, 0.4370793104171753, -0.120766282081604, 0.9905112981796265, -0.2681330144405365, -0.27400827407836914, -0.5711877942085266, -0.23432666063308716, 0.16735577583312988, -0.5164396166801453, -0.03526473417878151, -0.009824209846556187, 0.46025434136390686, 0.1179317906498909, -0.1591339260339737, 0.5401948094367981, -0.024511218070983887, 0.8040785193443298, 0.3404025733470917, -0.7196418046951294, 0.5194318294525146, -0.3709765374660492, 0.53191077709198, 0.9268121719360352, 0.2571839392185211, -0.49741533398628235, -0.09647483378648758, -0.7666444778442383, -0.7167460322380066, 0.7119348049163818, 0.23067441582679749, 0.4486842751502991, 0.014053023420274258, 0.3951930105686188, 0.21806663274765015, 0.286487340927124, -0.8572659492492676, -0.9142292737960815, -0.07267174124717712, -0.6360311508178711, 0.29052314162254333, -0.6003447771072388, -0.2937430739402771, -0.3886429965496063, 0.6234419941902161, -0.32394832372665405, 0.5984213948249817, -0.15456418693065643, -0.01935775764286518, -0.09896909445524216, -0.12188473343849182, 0.6342903971672058, 0.6257022619247437, -0.3601878583431244, -0.002978145144879818, -0.09374093264341354, -0.7070406079292297, -0.409724622964859, 0.4432419240474701, 0.1596135050058365, -0.2399158775806427, 0.8247109055519104, 0.5986644625663757, -0.20382164418697357, -0.43716663122177124, 0.6231882572174072, -0.16196441650390625, -0.4968828856945038, -0.8946083188056946, 0.29516008496284485, 0.18279744684696198, 0.12655232846736908, 0.0797734186053276, 0.03893790394067764, 0.3363962173461914, -0.35569337010383606, 0.5170710682868958, -0.09382715076208115, -0.7881755828857422, -0.4641823172569275, 0.36237409710884094, 0.543979823589325, -0.31137603521347046, 0.46999651193618774, -0.2815127968788147, -0.240886852145195, 0.97126704454422, 0.8007091283798218, 0.6155204176902771, -0.03190706670284271, 0.4206986427307129, 0.5161155462265015, 0.16054943203926086, 0.3312808573246002, 0.6363441348075867, -0.37776198983192444, -0.5290820598602295, -0.014663252048194408, -0.407929390668869, -0.10548282414674759, -0.43374836444854736, -0.9701098799705505, 0.3062039911746979, -0.7742645144462585, -0.27358612418174744, -0.08158630132675171, 0.022896844893693924, -0.8916441798210144, 0.23318448662757874, 0.3981722891330719, 1.4156782627105713, -0.6708837747573853, 0.9462459087371826, 0.6219145655632019, -0.6156731247901917, -0.539216935634613, -0.06805429607629776, 0.35850903391838074, -1.0881478786468506, 0.2816828191280365, 0.18892844021320343, 0.17596960067749023, -0.052408233284950256, -0.8560969829559326, -0.7632299065589905, 1.2010626792907715, -0.03160504996776581, -0.6209924817085266, 0.3425452709197998, -0.02323639579117298, 0.6103535294532776, -0.3003200590610504, 0.5917098522186279, 0.43465137481689453, 0.9845587015151978, 0.13604021072387695, -0.646227240562439, -0.006591795012354851, -0.804774284362793, -0.09211400151252747, 0.22329549491405487, -0.6829196214675903, 0.0563846193253994, 0.1191086396574974, -0.16290394961833954, 0.2880754768848419, 0.6246356964111328, -0.28171995282173157, 0.5421702861785889, 0.11269894242286682, 0.49724292755126953, 0.8577271699905396, -0.275682657957077, 1.0699095726013184, -0.19646909832954407, 0.7197055816650391, 1.1119239330291748, -0.3567846417427063, 0.20229487121105194, 0.2128954529762268, -0.13683730363845825, 0.5534904599189758, 0.3364429175853729, -0.792643666267395, 0.4382935166358948, 0.6088166832923889, -0.3050861060619354, -0.06073788180947304, -0.2548530399799347, -0.8540725708007812, 0.35804441571235657, 0.5962278842926025, -0.5534056425094604, -0.01743454299867153, -0.13688106834888458, 0.34500235319137573, 0.07476390153169632, -0.34366464614868164, 0.9540466666221619, -0.060892004519701004, -0.3555724322795868, 0.003978387452661991, 0.15854717791080475, 0.3042867183685303, -0.8170078992843628, -0.41044753789901733, -0.012061777524650097, 0.183689683675766, -0.568694531917572, -1.095585823059082, 0.7186233997344971, -0.14592017233371735, -0.44839486479759216, -0.009193775244057178, 0.8627418279647827, -0.528629720211029, -0.8548421859741211, 0.6493868231773376, 0.11891082674264908, -0.006004805210977793, 0.4948109984397888, -1.0975505113601685, 0.36022481322288513, -0.14522652328014374, -0.05111653730273247, 0.07518874108791351, -0.13121536374092102, 0.20889370143413544, 0.36647847294807434, 0.6505116820335388, -0.23218683898448944, -0.6150248646736145, 0.7095770239830017, 0.9831972122192383, -0.6144984364509583, -0.43978312611579895, -0.6710827350616455, 0.7102324366569519, -0.4539048373699188, -0.67705899477005, 0.5293247103691101, 1.039185881614685, 0.7966830134391785, -0.34640568494796753, 1.0810214281082153, -0.4421905279159546, 0.29896727204322815, -0.5428426265716553, 0.7066159844398499, -0.37194550037384033, -0.2790631651878357, -0.3196815848350525, -0.76457279920578, -0.9884554743766785, 0.4939116835594177, 0.30019962787628174, 0.10098402202129364, 0.7069128155708313, 1.3547558784484863, -0.08406759798526764, 0.1828259378671646, -0.0036021133419126272, 0.048132605850696564, 0.34826934337615967, 0.4319520890712738, 0.23684562742710114, -0.40212154388427734, 0.36161336302757263, 0.13715997338294983, -0.6219716668128967, -0.12653255462646484, -0.9103152751922607, -1.1254206895828247, -0.7346590161323547, -0.365769624710083, -0.6739200353622437, 0.05080892890691757, 1.1268973350524902, 0.930079460144043, -1.0193943977355957, -0.26647093892097473, -0.13398927450180054, -0.061411090195178986, 0.09867478907108307, -0.13370837271213531, 0.5649171471595764, 0.06206813454627991, -0.4815920889377594, -0.09890224784612656, 0.2832847237586975, 0.05802028253674507, -0.025738922879099846, -0.05184951424598694, 0.2176302671432495, 0.07534359395503998, 0.22717805206775665, 0.3655421733856201, -0.28949975967407227, -0.2681446969509125, -0.6046727299690247, -0.2949272692203522, -0.028972718864679337, 1.2375237941741943, -0.3967694640159607, 0.36940667033195496, 0.47341951727867126, 0.5793361663818359, 0.708228588104248, -0.02129640243947506, 0.5334886312484741, -0.8744820952415466, 0.35960012674331665, -0.19528256356716156, 0.32340526580810547, -0.08546280115842819, -0.40681907534599304, 0.9298980832099915, 0.5028835535049438, -0.48253101110458374, -0.1813870072364807, 0.1679135411977768, -1.5776495933532715, 0.09435692429542542, 1.2266643047332764, 0.1261032670736313, -0.3085622787475586, -0.17642462253570557, -0.619661271572113, 0.1981317549943924, -0.8062061071395874, 0.1795327514410019, 0.7173622250556946, 0.5448576807975769, 0.08432076871395111, -0.39779406785964966, 0.731524646282196, -0.31877946853637695, -1.3140783309936523, 0.29937222599983215, 0.5950884222984314, -0.024960961192846298, 0.20281709730625153, 0.880974292755127, -0.31395184993743896, 0.3994746506214142, 0.4249641001224518, 0.6169097423553467, -0.2068832963705063, -0.6123577356338501, -0.04802120849490166, 0.0565827302634716, -0.17153488099575043, 0.004441584926098585 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mhenrichsen/alpaca_2k_test
mhenrichsen
2023-07-22T19:48:57Z
8,414
4
null
[ "license:apache-2.0", "region:us" ]
2023-07-22T19:48:57Z
2023-07-22T19:48:22.000Z
2023-07-22T19:48:22
--- 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
Nan-Do/SPP_30K_reasoning_tasks
Nan-Do
2023-08-22T07:09:57Z
8,393
3
null
[ "task_categories:text-generation", "task_categories:conversational", "task_categories:text2text-generation", "language:en", "code", "python", "reasoning", "region:us" ]
2023-08-22T07:09:57Z
2023-08-21T02:34:43.000Z
2023-08-21T02:34:43
--- dataset_info: features: - name: type dtype: int64 - name: instruction dtype: string - name: input dtype: string - name: output dtype: string splits: - name: train num_bytes: 44253001 num_examples: 89898 download_size: 10073876 dataset_size: 44253001 task_categories: - text-generation - conversational - text2text-generation language: - en tags: - code - python - reasoning pretty_name: SPP python reasoning tasks --- # Dataset Card for "SPP_30K_verified_tasks" ### Dataset Summary This is an augmented version of the [Synthetic Python Problems(SPP) Dataset](https://huggingface.co/datasets/wuyetao/spp). This dataset has been generated from the subset of the data has been de-duplicated and verified using a Python interpreter. (SPP_30k_verified.jsonl). The original dataset contains small Python functions that include a docstring with a small description of what the function does and some calling examples for the function. The current dataset includes three different tasks: - Type 1: give the code as input and ask the model to generate some example calls along the expected return value - Type 2: give the description and the example calling calls and ask the model to write the function. - Type 3: give the the function and the example calls without the expected value as input and ask the model to write what the function should return. For example: ```python def lowest_prime_factor(n): """ Find the smallest prime factor of a given number. Examples: >>> lowest_prime_factor(12) 2 >>> lowest_prime_factor(14) 2 >>> lowest_prime_factor(8) 2 """ smallest = 2 while(n % smallest!= 0): smallest+=1 return smallest ``` First task: ``` INSTRUCTION: Execute the following function with several example calls, showing the values returned in each case. INPUT: def lowest_prime_factor(n): smallest = 2 while(n % smallest!= 0): smallest+=1 return smallest OUTPUT: Sure, here you have several example calls along the return values they will generate. """ >>> lowest_prime_factor(12) 2 >>> lowest_prime_factor(14) 2 >>> lowest_prime_factor(8) 2 """ ``` Second task: ``` INSTRUCTION: Follow the task given and refer to the provided calling examples as you create the function's body. INPUT: Find the smallest prime factor of a given number. Examples: >>> lowest_prime_factor(12) 2 >>> lowest_prime_factor(14) 2 >>> lowest_prime_factor(8) 2 OUTPUT: Of course, here's a function implementation based on the provided calling examples and task. """ python def lowest_prime_factor(n): smallest = 2 while(n % smallest!= 0): smallest+=1 return smallest """ ``` Third task: ``` INSTRUCTION: Examine the given function and the accompanying instance function calls, and outline the specific output generated by each call. INPUT: def lowest_prime_factor(n): smallest = 2 while(n % smallest!= 0): smallest+=1 return smallest Function calls: >>> lowest_prime_factor(12) >>> lowest_prime_factor(14) >>> lowest_prime_factor(8) OUTPUT: Sure thing, here you have the specific output generated by each function call. >>> lowest_prime_factor(12) 2 >>> lowest_prime_factor(14) 2 >>> lowest_prime_factor(8) 2 ``` ### Languages The dataset is in English. ### Data Splits There are no splits (Only training). ## Dataset Creation August of 2023 ### Curation Rationale This dataset was created to improve the Python 3 reasoning/understanding capabilities of LLMs. ### Source Data The source dataset can be found at [Synthetic Python Problems(SPP) Dataset](https://huggingface.co/datasets/wuyetao/spp). ### Annotations The dataset includes an instruction, input, output and type columns. The type colum indicates the type of task (from 1 to 3). #### Annotation process The responses were generated parsing the docstrings of the functions.
[ -0.31869935989379883, -0.657839834690094, 0.33980968594551086, 0.2894458770751953, -0.006742740981280804, -0.2947486937046051, -0.15644420683383942, -0.017980150878429413, -0.1705249845981598, 0.5308467149734497, -0.9280014634132385, -0.3021761178970337, -0.330235093832016, 0.6111887097358704, -0.12413768470287323, 0.7937877178192139, 0.0282722320407629, -0.009960290044546127, -0.08029381930828094, 0.21955913305282593, -0.011426457203924656, -0.44591233134269714, -0.6716631650924683, -0.6670301556587219, -0.061262644827365875, 0.6377350687980652, 0.3480931222438812, 0.48999732732772827, 0.620256245136261, 0.42043256759643555, 0.008098156191408634, 0.40681618452072144, -0.5909880995750427, -0.5635006427764893, 0.09614089131355286, -0.6507920026779175, -0.41736292839050293, 0.17435650527477264, 0.43097996711730957, 0.6936861276626587, 0.2488802671432495, 0.5340218544006348, 0.20039786398410797, 0.7505438923835754, -0.2825928330421448, 0.6124018430709839, -0.19123756885528564, 0.024021971970796585, -0.21102645993232727, -0.37312251329421997, -0.4159114956855774, 0.016869105398654938, -0.23106804490089417, -0.7322978377342224, 0.5061996579170227, 0.03971511498093605, 0.6780470609664917, 0.36346253752708435, -0.33457228541374207, -0.3291251063346863, -0.5709697008132935, 0.9388548731803894, -0.8338319063186646, -0.35302746295928955, 0.5811070799827576, -0.09498515725135803, -0.356172651052475, -0.5171454548835754, -0.8670997023582458, -0.25814002752304077, -0.236265629529953, 0.10189169645309448, -0.04696006327867508, 0.04426788166165352, 0.796390175819397, 0.7308433055877686, -0.530913233757019, -0.22037024796009064, -0.70057213306427, -0.2606917917728424, 0.9164038300514221, 0.5785235166549683, 0.01769755780696869, -0.6213982105255127, -0.050970062613487244, -0.2667296826839447, -0.790865957736969, 0.25221961736679077, 0.4852803647518158, 0.4970676004886627, -0.34147658944129944, 1.2826210260391235, -0.4925130307674408, 0.6618621945381165, 0.2748221755027771, -0.46490347385406494, 0.4062909781932831, -0.5874562859535217, -0.3102625906467438, -0.3315742611885071, 0.5136387944221497, 0.5143219232559204, 0.09512093663215637, 0.5004122257232666, -0.32412615418434143, -0.022992167621850967, -0.15779659152030945, -0.7881515622138977, -0.5400101542472839, 0.385023295879364, -0.5515676736831665, -0.5445190668106079, -0.11629536002874374, -0.6523019671440125, -0.4063515067100525, -0.48516151309013367, 0.5212287306785583, -0.5189424753189087, -0.07052244246006012, 0.06166882440447807, -0.09110327810049057, 0.07880718261003494, 0.14220181107521057, -0.7473141551017761, 0.5924094319343567, 0.8160902261734009, 0.7167721390724182, -0.04357632249593735, -0.09483011811971664, -0.6585149168968201, -0.20989342033863068, -0.2012409269809723, 0.4332767724990845, -0.3445548713207245, -0.31945905089378357, -0.22899195551872253, 0.2847408950328827, -0.10064136981964111, -0.6722936034202576, 0.3602514863014221, 0.0010695032542571425, 0.14526037871837616, -0.3482324182987213, -0.5689293742179871, -0.26504582166671753, 0.01217908225953579, -0.6319700479507446, 1.269819974899292, 0.41615280508995056, -0.5348849296569824, 0.03230602294206619, -0.8763282299041748, -0.38801220059394836, 0.305161714553833, 0.06327957659959793, -0.47787126898765564, 0.09861200302839279, 0.21957522630691528, 0.4884880781173706, -0.3102680444717407, -0.20188625156879425, -0.32864004373550415, -0.4511631727218628, 0.31941017508506775, -0.29756325483322144, 1.0117151737213135, 0.16321219503879547, -0.5024074912071228, 0.06151580810546875, -0.9137548208236694, 0.024077314883470535, 0.2556435167789459, -0.42166954278945923, 0.16040310263633728, -0.11306171864271164, -0.04828035086393356, -0.03371308743953705, 0.4114830791950226, -0.5725134015083313, 0.2846994996070862, -0.4481087923049927, 0.7061280012130737, 0.6306028366088867, 0.3801587224006653, 0.4279356002807617, -0.6544495224952698, 0.24008533358573914, -0.010193378664553165, 0.014716381207108498, 0.07661531120538712, -0.7318898439407349, -0.9916795492172241, -0.13571995496749878, 0.07816934585571289, 0.7248860001564026, -0.8566379547119141, 0.6330292820930481, 0.047392766922712326, -0.5241361856460571, -0.20693136751651764, 0.14676262438297272, 0.2159445732831955, 0.5517989993095398, 0.34294191002845764, 0.20851010084152222, -0.6740553975105286, -0.9181759357452393, 0.31255003809928894, -0.32429203391075134, -0.0413498729467392, 0.18504013121128082, 0.8535234928131104, -0.1389627605676651, 0.642259418964386, -0.6314860582351685, -0.3472289443016052, -0.4492350220680237, 0.25418004393577576, 0.8102632761001587, 0.7919175028800964, 0.2800002694129944, -0.693503201007843, -0.167421355843544, -0.21803919970989227, -0.3062884211540222, -0.18024437129497528, -0.34730398654937744, -0.1008114218711853, 0.20912620425224304, 0.010966746136546135, -0.6635792255401611, 0.474674791097641, 0.11698842793703079, -0.2570238709449768, 0.8484213948249817, -0.1863081455230713, 0.1774042844772339, -0.9242537617683411, 0.28079289197921753, 0.08576671034097672, 0.048986442387104034, -0.6466594934463501, 0.055977821350097656, -0.09668296575546265, -0.2818172872066498, -0.3891768157482147, 0.4615934193134308, -0.11401820182800293, -0.09896554797887802, -0.06649890542030334, -0.25295156240463257, -0.1028670221567154, 0.7103225588798523, -0.15534311532974243, 0.8712541460990906, 0.37005648016929626, -0.589038610458374, 0.5711292028427124, 0.17529252171516418, -0.11110711842775345, 0.19161203503608704, -0.6984388828277588, -0.0056458283215761185, 0.08440738916397095, -0.13274526596069336, -1.2151578664779663, -0.3493008613586426, 0.6118002533912659, -0.4351426959037781, -0.11240672320127487, -0.32495179772377014, -0.8075999617576599, -0.6766507625579834, -0.3751949071884155, 0.19027462601661682, 0.5593274831771851, -0.29573169350624084, 0.4116155207157135, 0.2074381560087204, -0.2590165138244629, -0.4111548960208893, -0.6796712875366211, -0.5000849962234497, -0.29281434416770935, -0.5117673873901367, 0.43467405438423157, -0.23898440599441528, -0.2301681488752365, -0.005135539453476667, -0.06757018715143204, -0.06264618039131165, -0.09927099198102951, 0.2925017178058624, 0.5479785203933716, -0.021252356469631195, -0.14581216871738434, -0.1511242836713791, -0.2788478434085846, 0.16196194291114807, 0.01249777339398861, 0.6551244854927063, -0.5701330304145813, -0.2457292675971985, -0.3220069110393524, 0.3354828655719757, 0.23979319632053375, -0.03581652045249939, 0.12106741219758987, 0.6650295853614807, -0.7835304737091064, -0.2519041895866394, -0.16779692471027374, -0.2937667667865753, -0.5663740634918213, 0.2930077910423279, -0.6506523489952087, -0.5351821184158325, 0.5571132898330688, 0.1615428477525711, 0.1681532859802246, 0.818770706653595, 0.8472328782081604, -0.04653419554233551, 0.8907784223556519, 0.4007929265499115, 0.29028937220573425, 0.03684394434094429, -0.8390474915504456, 0.2540176808834076, -0.6248126029968262, -0.16224151849746704, -0.3318427801132202, -0.18827372789382935, -0.6409750580787659, -0.6363915801048279, 0.2996857464313507, 0.3967759609222412, -0.37518227100372314, 0.48400524258613586, -0.6123711466789246, 0.4557115435600281, 0.8160925507545471, 0.13723929226398468, 0.03550449386239052, 0.16640391945838928, -0.16109953820705414, -0.047108229249715805, -0.6540789604187012, -0.47439077496528625, 1.2590696811676025, 0.04116034135222435, 0.6039618849754333, -0.08835065364837646, 1.019504427909851, 0.4748440384864807, 0.5079906582832336, -0.9297528266906738, 0.7816248536109924, -0.3413226902484894, -0.35519319772720337, -0.3451785445213318, -0.6002116203308105, -0.7215371131896973, 0.2049567997455597, -0.03029174916446209, -0.7205072641372681, 0.10547219961881638, 0.20052556693553925, -0.6975283026695251, 0.03239747881889343, -0.6971431374549866, 0.7445128560066223, -0.013860277831554413, -0.5223649740219116, -0.19025546312332153, -0.2784574627876282, 0.492984801530838, 0.23591932654380798, 0.05251582711935043, -0.248067706823349, 0.08818817138671875, 0.9003320932388306, -0.6157656908035278, 0.9754528999328613, -0.06622926145792007, 0.23407499492168427, 0.5291712284088135, 0.022860104218125343, 0.45237070322036743, 0.2972087562084198, -0.16834060847759247, -0.28451335430145264, 0.24855834245681763, -0.40289106965065, -0.2023736983537674, 0.6271052360534668, -0.8215434551239014, -0.5741531252861023, -0.5329749584197998, -0.5785547494888306, 0.17632271349430084, 0.45986443758010864, 0.41225406527519226, 0.6831701397895813, 0.2962728440761566, 0.08344412595033646, 0.17050857841968536, -0.07836651057004929, 0.5758263468742371, 0.4584348797798157, -0.030647020787000656, -0.561129093170166, 1.046705961227417, 0.052791524678468704, -0.0531359426677227, 0.41972652077674866, 0.22782567143440247, -0.37727925181388855, -0.159025177359581, -0.310980886220932, 0.3713807463645935, -0.6634496450424194, -0.40964874625205994, -0.07716463506221771, -0.19403059780597687, -0.3891211450099945, -0.05829988792538643, -0.302342027425766, -0.7095714807510376, -0.42123469710350037, -0.003704153699800372, 0.20808231830596924, 0.6418823599815369, -0.5036048293113708, 0.1413683444261551, -0.5877756476402283, 0.5469645857810974, 0.17927759885787964, -0.15227828919887543, -0.19471482932567596, -0.23109638690948486, 0.002153976121917367, 0.16702789068222046, -0.5266132354736328, -0.8543320298194885, 0.5507528781890869, 0.22916188836097717, 0.49205636978149414, 0.3364239037036896, 0.3415334224700928, 0.588255763053894, -0.2768446207046509, 0.8830137252807617, -0.01605420559644699, -1.0310789346694946, 0.3807241916656494, 0.0017636105185374618, 0.014016789384186268, 0.24721311032772064, 0.2524411380290985, -0.19461484253406525, -0.05188801884651184, -0.8503592014312744, -0.6048362255096436, 0.8189099431037903, 0.7064023613929749, -0.29451507329940796, -0.09058357775211334, 0.24350830912590027, -0.02936364896595478, 0.09121200442314148, -0.6940746307373047, -0.5282267928123474, -0.022938596084713936, -0.21384203433990479, -0.16229410469532013, -0.029653560370206833, -0.6142388582229614, -0.450766921043396, 0.711253821849823, -0.3887699842453003, 0.8027463555335999, 0.2045598179101944, -0.03231940418481827, -0.19118259847164154, 0.15832383930683136, 0.7053408026695251, 0.6734809875488281, -0.3993779122829437, 0.24987374246120453, 0.13516683876514435, -0.2947187125682831, 0.08375733345746994, 0.41741159558296204, -0.11439892649650574, -0.2988353669643402, 0.4161749482154846, 0.44230973720550537, -0.16772539913654327, -0.562569797039032, 0.3618995249271393, 0.317842036485672, -0.30742788314819336, -0.6801427006721497, 0.15996472537517548, 0.009965694509446621, 0.15778113901615143, 0.6625964045524597, 0.31964436173439026, 0.2823266386985779, -0.30979612469673157, 0.47320839762687683, 0.11650332808494568, 0.19424574077129364, -0.3985254168510437, 0.49759265780448914, 0.23509001731872559, -0.3229772746562958, 0.7409424185752869, -0.5837946534156799, -0.6285896897315979, 1.0814114809036255, 0.4951150715351105, 0.4569017291069031, 0.32158294320106506, 0.521918773651123, 0.6746097207069397, 0.4887314438819885, -0.00830893311649561, 0.8199974298477173, -0.0790429338812828, -0.7240155935287476, -0.586209774017334, -0.4681623578071594, -0.4189302623271942, 0.5054183602333069, -0.7718086242675781, 0.025813313201069832, -0.4193304181098938, -0.22276908159255981, 0.06646393239498138, 0.7025175094604492, -0.8371531963348389, 0.13543660938739777, 0.18837496638298035, 0.7162404656410217, -1.0573829412460327, 0.5048750638961792, 0.6432165503501892, -0.3106382489204407, -0.633806049823761, -0.41957181692123413, 0.2542738914489746, -0.9275051951408386, 0.6823201179504395, 0.3982682526111603, 0.2444099485874176, -0.07483864575624466, -0.5907936692237854, -0.8197075724601746, 1.0167328119277954, 0.03666486591100693, -0.14824974536895752, 0.2408883422613144, 0.6349591016769409, 0.5604533553123474, -0.5004250407218933, 0.0961894616484642, 0.5403792858123779, 0.596860408782959, -0.15413624048233032, -0.47647449374198914, 0.3597426116466522, -0.6947839260101318, -0.05347437411546707, -0.19749808311462402, -0.463032066822052, 1.1149041652679443, -0.4698837697505951, -0.13070009648799896, 0.37325212359428406, 0.5766565203666687, 0.684654951095581, 0.2889184057712555, 0.4464681148529053, 0.4643113613128662, 0.6709024906158447, -0.4075483977794647, 1.1234890222549438, -0.4122476577758789, 0.6073627471923828, 0.7992715239524841, 0.0059440103359520435, 0.7791776061058044, 0.5246846675872803, -0.572921097278595, 0.001546099898405373, 0.8249093890190125, -0.4932445287704468, 0.45540449023246765, 0.47646716237068176, -0.034197743982076645, -0.32758456468582153, 0.12465354800224304, -0.17054422199726105, 0.0887456014752388, 0.4946455657482147, -0.18357399106025696, -0.16785737872123718, -0.1640232354402542, -0.24245645105838776, -0.3891478478908539, -0.3736027479171753, 0.26197344064712524, 0.028709987178444862, -0.6365638375282288, 0.8406505584716797, 0.2017216980457306, 0.4880669414997101, -0.2822098731994629, -0.4838099479675293, -0.1727321594953537, 0.5538145899772644, -0.3991664946079254, -0.977335512638092, 0.18596050143241882, -0.2788836359977722, -0.2676647901535034, -0.08292941749095917, 0.7216775417327881, -0.32566654682159424, -0.8554502129554749, -0.2025482952594757, 0.27832430601119995, 0.14277929067611694, 0.14712531864643097, -0.8183785080909729, 0.019753195345401764, 0.30815407633781433, -0.3730027675628662, -0.021950218826532364, 0.155311718583107, 0.3183149993419647, 0.6845419406890869, 0.8735408782958984, 0.006817318499088287, 0.2574961483478546, -0.19616377353668213, 0.7024326920509338, -0.3341462314128876, -0.3177403211593628, -0.5306124091148376, 0.6476634740829468, -0.2674707770347595, -0.7788043022155762, 0.5338060259819031, 0.7236040830612183, 0.9087894558906555, -0.4954150915145874, 0.7535403370857239, -0.5443229675292969, 0.3316689431667328, -0.34146249294281006, 0.13304148614406586, -0.35381242632865906, 0.2643747925758362, 0.0944230780005455, -0.7955837249755859, -0.010434255003929138, 0.8779561519622803, -0.3626956045627594, -0.15300175547599792, 0.675742506980896, 1.0583652257919312, 0.09036657959222794, 0.14807507395744324, -0.00960380956530571, 0.04674610123038292, 0.30443137884140015, 0.7361554503440857, 0.5603043437004089, -0.559593915939331, 0.4798628091812134, -1.2288951873779297, -0.3629690408706665, -0.16460394859313965, -0.5558639168739319, -0.8242523074150085, -0.7238506078720093, -0.2731173038482666, -0.45419493317604065, -0.33227643370628357, 0.8717514276504517, 0.7316769361495972, -1.0383623838424683, -0.4624810516834259, -0.23553825914859772, 0.024927115067839622, -0.7414221167564392, -0.4105246663093567, 0.4521081745624542, -0.20569270849227905, -0.9844743609428406, 0.44122275710105896, 0.0360884852707386, 0.0169305931776762, 0.05014995113015175, -0.17515619099140167, 0.05162325128912926, -0.12020616233348846, 0.5353556871414185, 0.41312360763549805, -0.6025033593177795, -0.3224777281284332, 0.09943927824497223, -0.05854277312755585, -0.1308048665523529, 0.7969778180122375, -0.2559160888195038, 0.06324581801891327, 0.7269982695579529, 0.48633530735969543, 0.7467473149299622, 0.10262537002563477, 0.5700633525848389, -0.728358805179596, 0.006813226733356714, 0.22513900697231293, 0.5660619139671326, 0.24393080174922943, -0.5231918692588806, 0.7968251705169678, 0.5636244416236877, -0.5221454501152039, -0.8436187505722046, 0.18915487825870514, -1.1448339223861694, 0.029268808662891388, 1.2574354410171509, -0.21446196734905243, -0.29011526703834534, 0.009886824525892735, -0.23268082737922668, 0.1660243570804596, -0.4306205213069916, 0.48402082920074463, 0.4966793656349182, -0.769345223903656, -0.12151547521352768, -0.23369409143924713, 0.5962424278259277, 0.4812180697917938, -0.6670826077461243, 0.030128000304102898, 0.2637341618537903, 0.3323318660259247, 0.41163256764411926, 0.507629930973053, -0.012099998071789742, 0.206733837723732, 0.28245601058006287, -0.24293315410614014, -0.4772745370864868, -0.019100705161690712, -0.029957100749015808, 0.28304409980773926, -0.3571653366088867, -0.2125927358865738 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
edbeeching/decision_transformer_gym_replay
edbeeching
2022-04-20T12:39:58Z
8,342
2
null
[ "license:apache-2.0", "arxiv:2004.07219", "region:us" ]
2022-04-20T12:39:58Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- license: apache-2.0 pretty_name: D4RL-gym --- # Dataset Card for D4RL-gym ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** https://sites.google.com/view/d4rl/home/ - **Repository:** https://github.com/rail-berkeley/d4rl* - **Paper:** D4RL: Datasets for Deep Data-Driven Reinforcement Learning https://arxiv.org/abs/2004.07219 ### Dataset Summary D4RL is an open-source benchmark for offline reinforcement learning. It provides standardized environments and datasets for training and benchmarking algorithms. We host here a subset of the dataset, used for the training of Decision Transformers : https://github.com/kzl/decision-transformer There is only a training set for this dataset, as evaluation is undertaken by interacting with a simulator. ## Dataset Structure ### Data Instances A data point comprises tuples of sequences of (observations, actions, reward, dones): ``` { "observations":datasets.Array2D(), "actions":datasets.Array2D(), "rewards":datasets.Array2D(), "dones":datasets.Array2D(), } ``` ### Data Fields - `observations`: An Array2D containing 1000 observations from a trajectory of an evaluated agent. - `actions`: An Array2D containing 1000 actions from a trajectory of an evaluated agent. - `rewards`: An Array2D containing 1000 rewards from a trajectory of an evaluated agent. - `dones`: An Array2D containing 1000 terminal state flags from a trajectory of an evaluated agent. ### Data Splits There is only a training set for this dataset, as evaluation is undertaken by interacting with a simulator. ## Additional Information ### Dataset Curators Justin Fu, Aviral Kumar, Ofir Nachum, George Tucker, Sergey Levine ### Licensing Information MIT Licence ### Citation Information ``` @misc{fu2021d4rl, title={D4RL: Datasets for Deep Data-Driven Reinforcement Learning}, author={Justin Fu and Aviral Kumar and Ofir Nachum and George Tucker and Sergey Levine}, year={2021}, eprint={2004.07219}, archivePrefix={arXiv}, primaryClass={cs.LG} } ``` ### Contributions Thanks to [@edbeeching](https://github.com/edbeeching) for adding this dataset.
[ -0.38193896412849426, -0.30179086327552795, 0.3825119733810425, 0.11738953739404678, 0.15807728469371796, 0.425916850566864, -0.08017465472221375, 0.13956870138645172, 0.004916713107377291, 0.2487030029296875, -0.9993833303451538, -0.5540273785591125, -0.35923436284065247, 0.21080277860164642, -0.0037853673566132784, 1.1675655841827393, -0.3377233147621155, -0.014069137163460255, -0.5178782939910889, -0.30244600772857666, -0.5696793794631958, -0.4643443524837494, -0.4704829454421997, -0.6914262175559998, 0.41938456892967224, 0.4786900281906128, 0.35817545652389526, 0.6053350567817688, 0.5768157243728638, 0.47869250178337097, 0.1618407964706421, 0.10687187314033508, -0.7694456577301025, -0.2237596958875656, -0.016073623672127724, -0.4743516445159912, -0.7914721369743347, 0.3038012385368347, 0.7235018014907837, 0.24371545016765594, -0.2346622496843338, 0.11597905308008194, -0.2099960744380951, 0.8710922002792358, -0.26425543427467346, 0.6488785147666931, -0.23994344472885132, 0.4690966308116913, -0.02537222020328045, -0.21277973055839539, -0.09869863837957382, -0.59199059009552, -0.09706806391477585, -0.7989227175712585, 0.027394412085413933, -0.16790418326854706, 0.942966639995575, 0.6451918482780457, -0.448507696390152, -0.11099251359701157, -0.8250579833984375, 0.7146903276443481, -0.5574169754981995, 0.3509763777256012, 0.45432421565055847, 0.6466235518455505, -0.11735930293798447, -0.8148825168609619, -0.697745144367218, -0.03453068807721138, 0.011001200415194035, 0.4857269823551178, -0.2927883267402649, 0.14025363326072693, 0.7173758149147034, 0.43606650829315186, -0.539047360420227, 0.184945210814476, -0.3679151237010956, -0.037345677614212036, 0.861910879611969, 0.5175058245658875, -0.3958556652069092, -0.09156998246908188, -0.572075605392456, -0.6327279806137085, -0.44766905903816223, 0.40089118480682373, 0.5341235399246216, 0.10081695765256882, -0.3490184247493744, 0.28927522897720337, -0.2861306965351105, 0.622822642326355, 0.5188139081001282, -0.31480690836906433, 0.9685963988304138, -0.5094118714332581, 0.08064792305231094, 0.049749668687582016, 0.7109023928642273, 0.6274405121803284, -0.18350224196910858, -0.20197519659996033, -0.36605390906333923, -0.10017326474189758, 0.3497268855571747, -0.9435864090919495, -0.6183986663818359, 0.3909185230731964, -0.19766733050346375, -0.47502318024635315, 0.18379703164100647, -1.0630437135696411, -0.2715744376182556, -0.43000251054763794, 0.2143082469701767, -0.23306813836097717, -0.24212297797203064, 0.0017302846536040306, -0.3333710730075836, 0.5637367963790894, -0.07620588690042496, -0.6876704096794128, 0.6852554082870483, 0.4030442535877228, 0.5235047340393066, -0.3371250331401825, -0.3333176374435425, -0.463501900434494, -0.09482292830944061, -0.3183421790599823, 0.5446801781654358, -0.17880779504776, -0.2055443525314331, -0.004477917682379484, -0.023564735427498817, -0.06455937772989273, -0.4091417193412781, 0.733264148235321, -0.5857205390930176, 0.21919068694114685, -0.451935738325119, -0.683798611164093, -0.3530857264995575, 0.6082624197006226, -0.8974753022193909, 1.3665263652801514, 0.2561715543270111, -0.5293838381767273, 0.616669774055481, -0.8879877328872681, -0.29794883728027344, -0.010422331281006336, -0.283258318901062, -0.8638509511947632, -0.31784525513648987, 0.0972086638212204, 0.37325039505958557, -0.029102502390742302, 0.26547884941101074, -0.3983675539493561, -0.2382706105709076, 0.3840845227241516, -0.32960566878318787, 0.4687998294830322, 0.0659065693616867, -0.4594525098800659, 0.24553951621055603, -0.983395516872406, 0.36496901512145996, 0.25783011317253113, -0.4937136173248291, 0.20573951303958893, 0.019702410325407982, -0.23777173459529877, 0.6309745907783508, 0.3460012376308441, -0.4987638592720032, 0.28491848707199097, -0.21296119689941406, 0.4266413748264313, 0.8683232665061951, 0.06354811042547226, 0.35874274373054504, -0.4656716287136078, 0.6501487493515015, 0.19933538138866425, 0.34199902415275574, 0.424100786447525, -0.16058161854743958, -0.55438232421875, -0.3760339617729187, 0.3774588108062744, 0.34547901153564453, -0.9706995487213135, 0.9511876106262207, -0.6794973611831665, -0.6070090532302856, -0.30921435356140137, -0.1456133872270584, 0.36758318543434143, 0.4643400311470032, 0.5441951155662537, 0.20331484079360962, -0.6914325952529907, -0.7801621556282043, 0.3245059847831726, 0.06670206785202026, 0.3149263560771942, 0.5342610478401184, 0.9498074650764465, -0.17112410068511963, 0.9833299517631531, -0.6682214140892029, -0.25750935077667236, -0.5110308527946472, -0.13513696193695068, 0.39412108063697815, 0.2663164436817169, 0.7444885969161987, -0.8064373135566711, -0.4528026580810547, -0.41061457991600037, -0.7245486974716187, 0.21439026296138763, -0.2704923152923584, -0.13218137621879578, -0.03693069517612457, 0.23827627301216125, -0.3671744465827942, 0.5849849581718445, 0.4580388367176056, -0.27379274368286133, 0.38329464197158813, -0.3852928876876831, 0.23947139084339142, -0.8698236346244812, 0.23164737224578857, -0.24047546088695526, -0.17361599206924438, -0.6267687082290649, -0.5146805047988892, -0.015919934958219528, 0.17645741999149323, -0.22059504687786102, 0.41812729835510254, -0.2063969373703003, -0.4992225170135498, -0.0010476537281647325, 0.13352498412132263, 0.24480773508548737, 0.955263078212738, -0.035951729863882065, 0.469135582447052, 0.5074547529220581, -0.9350847005844116, 0.7400086522102356, 0.8074296712875366, -0.1419205218553543, 0.6625360250473022, -0.6795642971992493, 0.026946166530251503, 0.0977783203125, 0.6757893562316895, -0.7744022011756897, -0.18107889592647552, 0.5656123161315918, -0.3446354866027832, 0.2764144241809845, -0.012826717458665371, -0.4360310435295105, -0.748048722743988, -0.6035493612289429, 0.4338007867336273, 0.4637467861175537, -0.7609987854957581, 0.32235366106033325, 0.3187844157218933, 0.4742263853549957, -0.6303436160087585, -0.5317206382751465, -0.3439956605434418, -0.42618975043296814, -0.20116789638996124, 0.7453871369361877, -0.40668803453445435, 0.1235242411494255, 0.035911306738853455, -0.17895841598510742, -0.20337316393852234, 0.16367073357105255, 0.4564642608165741, 0.2033105045557022, 0.2907157242298126, 0.042445793747901917, -0.22783274948596954, -0.16811038553714752, 0.28777655959129333, -0.01630205102264881, 0.4114207923412323, -0.05818746238946915, -0.238226056098938, -0.46523186564445496, -0.05502978712320328, 0.2752629220485687, -0.11309679597616196, 0.42977669835090637, 0.5408115983009338, -0.10246378183364868, -0.2531603276729584, -0.07431993633508682, -0.3796575367450714, -0.5349114537239075, 0.5632978677749634, -0.4715745449066162, -0.3384123742580414, 0.5064536929130554, -0.011725467629730701, 0.19648349285125732, 0.6106380820274353, 0.5587436556816101, -0.10523975640535355, 0.9236294031143188, 0.2185932844877243, 0.05960467457771301, 0.5298269987106323, -0.9533074498176575, 0.046641506254673004, -0.8178302645683289, -0.5402721762657166, -0.32782694697380066, -0.8045787811279297, -0.8115803003311157, -0.38748741149902344, 0.12857064604759216, -0.11268986761569977, -0.6339780688285828, 0.3532209098339081, -0.4600067138671875, 0.2892877757549286, 0.4394611418247223, 0.24548082053661346, -0.04637635126709938, -0.10202775150537491, -0.3216989040374756, -0.06297645717859268, -1.077247142791748, -0.05433618649840355, 1.182998776435852, 0.4722214639186859, 0.6156975626945496, 0.07431751489639282, 0.9425403475761414, 0.3273664116859436, -0.1446618288755417, -0.6529322862625122, 0.5680227875709534, 0.2757072150707245, -0.6317898631095886, -0.21785105764865875, -0.6943737268447876, -1.1996078491210938, -0.06536976993083954, -0.22668081521987915, -0.2503094971179962, 0.36875036358833313, 0.15766973793506622, -0.43200114369392395, 0.3347403407096863, -0.20890302956104279, 0.996873676776886, -0.6078484654426575, -0.33252865076065063, -0.15226200222969055, -0.6573455333709717, 0.17546607553958893, 0.005488761700689793, 0.016657385975122452, 0.02954794093966484, 0.12603724002838135, 1.0730477571487427, -0.5265488624572754, 0.6598093509674072, -0.5154386758804321, 0.19016802310943604, 0.27650561928749084, -0.3945139944553375, 0.6737232804298401, -0.020605960860848427, 0.04085629805922508, 0.22867198288440704, -0.2015819549560547, -0.2808714210987091, -0.5676473379135132, 0.7858185172080994, -1.1394460201263428, 0.05332687124609947, -0.8282044529914856, -0.467244029045105, -0.2170495092868805, 0.11712715029716492, -0.006684157997369766, 0.5228323340415955, -0.09124244749546051, 0.3020738661289215, 0.5640490651130676, -0.33125022053718567, 0.41385990381240845, 0.5537346005439758, -0.04975898191332817, -0.5831071138381958, 1.018525242805481, 0.030385911464691162, 0.04503412917256355, 0.27268439531326294, 0.0546233095228672, -0.9809661507606506, -0.6200173497200012, -0.26705819368362427, -0.031154930591583252, -0.8013220429420471, -0.37668576836586, -0.3258458971977234, -0.2619779407978058, -0.13212977349758148, 0.08168227970600128, -0.5036547183990479, -0.3580750524997711, -0.315477192401886, -0.5779916644096375, 0.6065199375152588, 0.7889248132705688, -0.4119213819503784, 0.16802187263965607, -0.46211525797843933, 0.3042920231819153, 0.14878202974796295, 0.5827450156211853, -0.15409767627716064, -0.5530520081520081, -0.42053699493408203, 0.26052671670913696, -0.49317848682403564, -0.4983358681201935, 0.2890375852584839, 0.16630569100379944, 0.9993137717247009, 0.21008612215518951, 0.2537717819213867, 0.6833752989768982, -0.50002121925354, 0.7613213658332825, 0.20536713302135468, -0.31064796447753906, 0.36214980483055115, -0.17252211272716522, 0.037216875702142715, 0.7619949579238892, 0.4785771667957306, -0.09787262976169586, 0.2609024941921234, -1.0021475553512573, -0.7578693628311157, 1.1133606433868408, 0.26843148469924927, -0.23830391466617584, 0.04028010740876198, 0.27188840508461, -0.09157385677099228, 0.36318737268447876, -0.8711721897125244, -0.537280797958374, -0.6371648907661438, -0.3238438069820404, -0.151022270321846, 0.16920292377471924, -0.36508312821388245, -0.3682810366153717, 0.7037644386291504, -0.0575309619307518, 0.56772780418396, -0.05599052831530571, 0.049254149198532104, 0.09097409248352051, -0.10206834226846695, 0.5028373599052429, 0.4196555018424988, -0.41731464862823486, -0.29682955145835876, 0.12272222340106964, -0.31422850489616394, 0.401763379573822, 0.31910908222198486, 0.027022024616599083, -0.32493728399276733, 0.3448231816291809, 1.094579815864563, 0.4655107855796814, -0.3222980499267578, 0.6132047772407532, -0.1816575676202774, -0.7818478941917419, -0.6435744762420654, 0.07315371185541153, -0.39277416467666626, 0.5318984389305115, 0.19509518146514893, 0.15839891135692596, 0.1592743843793869, -0.2600446343421936, 0.44710564613342285, 0.1469496786594391, -0.4495497941970825, -0.45618343353271484, 0.515323281288147, 0.20973852276802063, 0.03188392519950867, 0.7698840498924255, -0.5231927633285522, -0.6845135688781738, 0.7105951905250549, 0.0749097391963005, 0.8374820947647095, 0.20551368594169617, 0.3981624245643616, 0.922419011592865, -0.04604584351181984, -0.16261756420135498, 0.49254110455513, -0.09732770919799805, -0.6945803165435791, -0.23488642275333405, -0.4738359749317169, -0.27366024255752563, 0.23488272726535797, -0.8862605094909668, 0.1477796882390976, -0.4176497161388397, -0.291289359331131, -0.1337125152349472, 0.5334764719009399, -1.093157172203064, 0.05445203557610512, 0.12215381115674973, 0.6851339340209961, -0.7162319421768188, 0.710670530796051, 0.4800865650177002, -0.6144728064537048, -0.9655395746231079, -0.25485333800315857, -0.09438822418451309, -0.6215368509292603, 0.9203938841819763, 0.002133642788976431, 0.27280116081237793, 0.1314016580581665, -0.25356194376945496, -0.8762664198875427, 1.6081726551055908, -0.13844789564609528, -0.45858052372932434, 0.14560596644878387, 0.2798865735530853, 0.454224556684494, -0.21179427206516266, 0.5636348128318787, 0.7269007563591003, 0.8757795095443726, 0.33078742027282715, -0.3647085726261139, 0.06632180511951447, -0.04342526197433472, -0.23936998844146729, 0.007872216403484344, -0.653042733669281, 0.925845742225647, -0.11873316019773483, 0.12772664427757263, -0.27478018403053284, 0.3886573910713196, 0.40267014503479004, 0.07738107442855835, 0.570737361907959, 0.8113073110580444, 0.8453881740570068, -0.3749372959136963, 1.2214254140853882, -0.1897987276315689, 0.5475314259529114, 1.1557401418685913, -0.42118561267852783, 0.4984390437602997, 0.03289756923913956, -0.515221893787384, 0.6367881894111633, 0.8376812934875488, -0.5500164031982422, 1.0301754474639893, 0.48709627985954285, 0.2676239013671875, -0.020710691809654236, 0.45776209235191345, -0.3639770448207855, 0.5652799010276794, 0.11053319275379181, -0.08828949183225632, -0.33362269401550293, -0.11087936908006668, -0.20137818157672882, -0.13501666486263275, -0.330610066652298, 0.9887610673904419, -0.43366047739982605, -0.6068862676620483, 0.7829738855361938, -0.22300252318382263, 0.3383948802947998, -0.6563670039176941, -0.3235476613044739, -0.31426703929901123, 0.563454270362854, -0.4000084102153778, -0.8580167889595032, -0.0013104279059916735, -0.11205641180276871, -0.26409369707107544, -0.411700576543808, 0.2860953211784363, -0.31298205256462097, -0.27551695704460144, 0.2546350657939911, 0.29242947697639465, 0.19893358647823334, 0.36150816082954407, -1.2096325159072876, 0.03881558030843735, 0.18140490353107452, -0.4651390612125397, 0.4073411822319031, 0.5226046442985535, 0.15218889713287354, 0.6063637137413025, 0.434688001871109, -0.26622918248176575, 0.01673169806599617, -0.05050636827945709, 1.1389515399932861, -0.6392946839332581, -0.4982433319091797, -0.5910263657569885, 0.6976495981216431, -0.44272473454475403, -0.505588173866272, 0.8926960229873657, 0.8465654253959656, 0.7380123138427734, 0.10468965768814087, 0.782919704914093, -0.362382173538208, 0.40278351306915283, -0.4227948784828186, 0.39780333638191223, -0.43539997935295105, 0.10043085366487503, -0.08336808532476425, -0.689963698387146, 0.16289407014846802, 0.7601998448371887, -0.3757624328136444, 0.3697093427181244, 0.6878872513771057, 0.6725592613220215, 0.04969211667776108, -0.214840367436409, 0.13633671402931213, 0.3174310624599457, 0.5604754090309143, 0.5871039032936096, 0.7193936705589294, -0.6884379386901855, 0.6697320342063904, -0.36086365580558777, -0.255484402179718, -0.27348020672798157, -0.8276047706604004, -0.9415052533149719, -0.4908503293991089, -0.4634348750114441, -0.32047247886657715, -0.2150796353816986, 0.7615514993667603, 0.5916281342506409, -0.708138108253479, -0.08014917373657227, -0.27311381697654724, 0.07388213276863098, -0.7363156676292419, -0.20443417131900787, 0.4944891631603241, -0.10390813648700714, -0.5333282351493835, 0.445909708738327, -0.2294643670320511, -0.06363561749458313, -0.3677392899990082, -0.8133604526519775, -0.35075515508651733, -0.32394757866859436, 0.2733120024204254, 0.28630173206329346, -0.38868480920791626, -0.21826377511024475, -0.09797801077365875, -0.03663937374949455, 0.3363339304924011, 0.30211031436920166, -0.857789933681488, 0.30676183104515076, 0.3116311728954315, 0.47132980823516846, 0.9624699354171753, 0.028575759381055832, 0.31575462222099304, -1.0749403238296509, 0.07845120877027512, 0.4916597306728363, 0.1860128939151764, 0.22720785439014435, -0.16701030731201172, 0.6144877076148987, 0.08580819517374039, -0.6506150960922241, -0.6933166980743408, -0.07935887575149536, -0.9968691468238831, 0.0526314340531826, 1.1894004344940186, -0.27719753980636597, -0.08604959398508072, -0.00750364176928997, 0.053137827664613724, 0.17235954105854034, -0.5421276688575745, 0.4388856887817383, 0.4487399160861969, -0.2040860801935196, 0.022330164909362793, -0.7180221676826477, 0.9861274361610413, -0.2752005457878113, -1.0294336080551147, -0.07042476534843445, 0.6885557770729065, 0.26557445526123047, -0.16094891726970673, 0.5294527411460876, -0.011592626571655273, 0.07299120724201202, 0.1408979594707489, 0.29569023847579956, -0.3951639235019684, -0.3355211913585663, -0.37382516264915466, -0.19383251667022705, -0.2641964256763458, -0.5608552098274231 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
tasksource/mmlu
tasksource
2023-03-31T20:44:21Z
8,212
23
null
[ "task_categories:text-classification", "task_categories:multiple-choice", "task_categories:question-answering", "task_ids:multiple-choice-qa", "task_ids:open-domain-qa", "task_ids:closed-domain-qa", "language:en", "license:apache-2.0", "multi-task", "multitask", "mmlu", "hendrycks_test", "region:us" ]
2023-03-31T20:44:21Z
2023-02-01T10:20:16.000Z
2023-02-01T10:20:16
--- license: apache-2.0 task_categories: - text-classification - multiple-choice - question-answering task_ids: - multiple-choice-qa - open-domain-qa - closed-domain-qa language: - en tags: - multi-task - multitask - mmlu - hendrycks_test pretty_name: mmlu --- MMLU (`hendrycks_test` on huggingface) without auxiliary train. It is much lighter (7MB vs 162MB) and faster than the original implementation, in which auxiliary train is loaded (+ duplicated!) by default for all the configs in the original version, making it quite heavy. We use this version in [tasksource](https://huggingface.co/tasksource). Reference to original dataset: Measuring Massive Multitask Language Understanding - https://github.com/hendrycks/test ``` @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} } ```
[ -0.6330906748771667, -0.7662838101387024, 0.2765234708786011, 0.3950914442539215, -0.2625010311603546, -0.18390177190303802, -0.5493039488792419, -0.6149317026138306, 0.41499924659729004, -0.04582536220550537, -0.9123917818069458, 0.010212183929979801, -0.6399901509284973, 0.2636550962924957, -0.08585275709629059, 1.1362910270690918, -0.22653721272945404, 0.1688084453344345, -0.5210263133049011, -0.6263570785522461, 0.04168601334095001, -0.3200930058956146, -0.6603666543960571, -0.5364328622817993, 0.901475727558136, 0.4832471013069153, 0.3382915258407593, 0.38017383217811584, 0.4826066792011261, 0.34804338216781616, 0.09797897189855576, -0.06711024791002274, -0.5527149438858032, -0.35009539127349854, 0.3192701041698456, -0.2515113353729248, -0.501081109046936, 0.21251092851161957, 0.7610993385314941, 0.7643560767173767, 0.0053903209045529366, 0.44892266392707825, 0.28178998827934265, 0.7205520272254944, -0.7517478466033936, 0.3616885244846344, -0.3550461232662201, 0.031525757163763046, -0.17358137667179108, -0.017495937645435333, -0.49650368094444275, 0.23190389573574066, 0.09852658957242966, -0.6656385660171509, 0.1452486366033554, 0.12324336171150208, 0.752984344959259, 0.37286633253097534, -0.7914266586303711, 0.000033592597901588306, -0.2849370837211609, 0.9182257056236267, -0.6054801940917969, 0.7995976209640503, 0.6098810434341431, 0.4753195643424988, -0.11259400844573975, -0.39080989360809326, -0.733736515045166, -0.4553680419921875, -0.16777747869491577, 0.21639028191566467, 0.1631467491388321, 0.2278788536787033, 0.522682249546051, 0.5632116198539734, -0.7798073291778564, -0.0786043331027031, -0.5214803814888, -0.15667904913425446, 0.7618408203125, 0.09483359754085541, 0.007128491066396236, -0.2890557646751404, -0.36818355321884155, -0.10314040631055832, -0.5260975360870361, 0.10553263872861862, 0.5183107852935791, 0.17989790439605713, -0.6174326539039612, 0.5229952931404114, -0.37051740288734436, 0.7119221091270447, -0.04037036374211311, -0.2109093964099884, 0.8560993671417236, -0.3901859521865845, -0.478468656539917, -0.2370191216468811, 0.9818146228790283, 0.17243127524852753, 0.12262897193431854, -0.177504301071167, 0.10518123209476471, 0.17890098690986633, 0.04450420290231705, -0.9353293776512146, -0.33828482031822205, 0.2863306999206543, -0.35571497678756714, -0.07809989154338837, -0.03451751917600632, -0.4470483660697937, -0.24448169767856598, -0.5399486422538757, -0.02479689009487629, -0.7003563642501831, -0.47930845618247986, -0.12612174451351166, 0.09240572899580002, 0.5270938277244568, 0.30783694982528687, -0.9427018165588379, 0.17801345884799957, 0.7714667320251465, 0.8750039339065552, -0.14664772152900696, -0.6432309150695801, -0.9001110792160034, -0.517423152923584, -0.18065929412841797, 0.5935055017471313, -0.14711220562458038, -0.26323825120925903, -0.13956467807292938, 0.34883323311805725, -0.21784605085849762, -0.23557378351688385, 0.8952476978302002, -0.10266094654798508, 0.2672528922557831, -0.6845583915710449, -0.4997609257698059, -0.22339899837970734, 0.2725711464881897, -0.5743077993392944, 1.1581827402114868, 0.22942964732646942, -0.7787637710571289, 0.6602786183357239, -0.6655775308609009, -0.3399631381034851, -0.09640491753816605, -0.0988982766866684, -0.2650870084762573, 0.09202690422534943, -0.02112104743719101, 0.7309303879737854, 0.09252872318029404, 0.0866493284702301, -0.7537627220153809, -0.5422388315200806, -0.024229871109128, -0.30534449219703674, 1.1222643852233887, 0.2609737813472748, -0.25631725788116455, 0.10701416432857513, -0.917961597442627, -0.307020902633667, 0.08032491058111191, -0.6542280912399292, -0.4076428711414337, -0.1282528042793274, 0.3463740050792694, 0.44779327511787415, 0.2717371881008148, -0.9587823748588562, 0.17363198101520538, -0.12251097708940506, 0.013762491755187511, 0.7742490172386169, -0.6856393218040466, 0.360539048910141, -0.38591665029525757, 0.21864551305770874, -0.02718125283718109, 0.2541132867336273, -0.026668965816497803, -0.7063777446746826, -0.8672176003456116, -0.288665771484375, 0.29439830780029297, 0.26908236742019653, -0.980797290802002, 0.3955495357513428, -0.3553841710090637, -0.4369528293609619, -0.9150067567825317, 0.2871552109718323, 0.5355528593063354, 0.2893976867198944, 0.2795444428920746, 0.1252395063638687, -0.6067249178886414, -0.8548126816749573, 0.01702837087213993, -0.0353812538087368, -0.07689832150936127, 0.37302619218826294, 0.6515697836875916, -0.4240823984146118, 0.3479928970336914, -0.3981746733188629, -0.1476072371006012, -0.08697434514760971, 0.16404269635677338, 0.09627607464790344, 0.5760247707366943, 0.9563143849372864, -0.6139168739318848, -0.5849655270576477, 0.04790317639708519, -0.7108937501907349, -0.04616384580731392, 0.1063530445098877, -0.18158018589019775, 0.29545193910598755, 0.3926028311252594, -0.8006079196929932, 0.04381088539958, 1.146952509880066, -0.8708747029304504, 1.0702064037322998, -0.1708933562040329, 0.31960567831993103, -1.0295463800430298, 0.3836628496646881, 0.08493319153785706, -0.5289952754974365, -0.45299649238586426, 0.3395615816116333, 0.45057398080825806, 0.1180267482995987, -0.4757886230945587, 0.5933113098144531, -0.6577243804931641, -0.014284159056842327, -0.15028899908065796, 0.051149990409612656, -0.22715891897678375, 0.8816009759902954, -0.6228585839271545, 1.0482292175292969, 0.4369414448738098, -0.5629982352256775, 0.24703985452651978, 0.24304470419883728, -0.37139925360679626, 0.5946357250213623, -0.6041221618652344, 0.16607673466205597, -0.17780093848705292, 0.21237719058990479, -0.8884780406951904, -0.2804667353630066, 0.1334080696105957, -0.501822292804718, 0.2861969470977783, -0.00003537899101502262, -0.47623762488365173, -0.551384449005127, -0.60581374168396, 0.12722492218017578, 0.6362417340278625, -0.782878577709198, 0.4982234239578247, 0.226446270942688, 0.32146793603897095, -0.9467815160751343, -0.8360927700996399, -0.2671772539615631, -0.21283376216888428, -0.6055654287338257, 0.008784495294094086, -0.5228631496429443, -0.11962710320949554, -0.21958421170711517, -0.2017323225736618, 0.09461522102355957, 0.12496920675039291, 0.3917692005634308, 0.04528980702161789, -0.48633983731269836, 0.20266182720661163, -0.04735175892710686, -0.218272864818573, 0.10729704797267914, 0.2554364502429962, 0.5211285948753357, -0.2326703816652298, -0.15109670162200928, -0.4092809855937958, 0.2599826455116272, 0.8402893543243408, -0.004176991060376167, 0.9059501886367798, 1.1172242164611816, -0.16364051401615143, -0.05211040750145912, -0.6409009099006653, -0.10516513139009476, -0.5533075332641602, 0.04402054101228714, -0.5709919333457947, -0.9562293291091919, 0.6075322031974792, 0.19209721684455872, 0.4738277196884155, 0.6615360379219055, 0.4652361273765564, -0.25840094685554504, 0.8244295716285706, 0.6344664692878723, -0.3671608567237854, 0.5865218043327332, -0.3829598128795624, -0.20494021475315094, -1.2010186910629272, -0.11671482771635056, -0.5773812532424927, -0.44028401374816895, -0.4129439890384674, -0.45722976326942444, 0.09603731334209442, -0.20269565284252167, -0.06908458471298218, 0.325889527797699, -0.0839843600988388, 0.17386141419410706, 0.4876311421394348, 0.07766885310411453, 0.304416298866272, -0.15317252278327942, -0.22517557442188263, -0.1448492705821991, -0.5597441792488098, -0.09774691611528397, 1.2666997909545898, 0.2695014774799347, 0.6043591499328613, 0.22601652145385742, 0.4876565933227539, -0.1317717730998993, 0.49607038497924805, -0.8566828966140747, 0.46212276816368103, -0.2773587107658386, -0.5067748427391052, -0.06848562508821487, -0.8297505974769592, -1.0776206254959106, 0.631611168384552, -0.45399847626686096, -0.6559266448020935, -0.11766400933265686, 0.29494771361351013, -0.24292007088661194, 0.26419633626937866, -1.1529279947280884, 0.9432644844055176, 0.23427878320217133, -0.2199711799621582, -0.17289435863494873, -0.2820115089416504, 0.7364124059677124, 0.09350336343050003, 0.1605452001094818, -0.35753318667411804, 0.12337614595890045, 1.1188397407531738, -0.42272278666496277, 0.5280556678771973, -0.4219437837600708, -0.04151332750916481, -0.032703179866075516, -0.266692191362381, 0.46662598848342896, 0.04345865175127983, -0.025794966146349907, 0.0712590366601944, 0.0010415635770186782, -0.6335880160331726, -0.6354761123657227, 1.1813288927078247, -0.788069486618042, -0.2887095510959625, -0.3294777572154999, -0.7578873038291931, -0.2179659903049469, 0.14004220068454742, 0.012232288718223572, 0.5517508387565613, -0.2268514484167099, 0.40420666337013245, 0.5606622695922852, 0.05704394727945328, 0.5107215642929077, 0.5381470322608948, -0.32632869482040405, -0.013645663857460022, 0.7577263116836548, 0.07880387455224991, 0.16505113244056702, 0.07700972259044647, 0.5087929368019104, -0.14267116785049438, -0.3356190621852875, -0.605545699596405, 0.5717619061470032, -0.2927509546279907, 0.07408509403467178, -1.1833395957946777, 0.16444113850593567, -0.38369470834732056, 0.0023728637024760246, -0.4950393736362457, -0.45331645011901855, -0.10556861758232117, -0.2066049873828888, 0.6461979746818542, 0.40314149856567383, -0.0165892131626606, 0.49724671244621277, -0.49455884099006653, 0.3891597092151642, 0.36740726232528687, 0.5763313174247742, -0.09740615636110306, -0.3936009705066681, -0.4704687297344208, 0.16533057391643524, -0.03365257754921913, -0.5199657678604126, -0.10102637112140656, 0.1566230207681656, 0.5617326498031616, 0.6494646668434143, -0.13567103445529938, 0.8052307367324829, -0.5636799931526184, 0.7624502778053284, 0.19725680351257324, -0.6698976159095764, -0.002509761368855834, -0.3849385678768158, 0.7284942865371704, 0.8376001119613647, 0.4364399313926697, -0.3697318732738495, -0.30400222539901733, -0.787322461605072, -0.462745726108551, 0.6176018118858337, 0.17356343567371368, -0.028229601681232452, 0.4808502793312073, 0.1235753521323204, 0.36234405636787415, 0.17222806811332703, -0.40637585520744324, -0.6154273152351379, 0.12386102229356766, -0.22941169142723083, -0.8369368314743042, -0.30952659249305725, 0.0312669463455677, -0.7439206838607788, 0.707411527633667, -0.30590111017227173, 0.597091794013977, 0.09224613755941391, -0.27279749512672424, -0.11787325143814087, -0.0757625475525856, 0.6961753964424133, 0.5825427770614624, -0.5585635304450989, 0.21632933616638184, 0.2726536691188812, -0.8261775374412537, -0.01227936614304781, 0.2796710729598999, 0.23925204575061798, 0.31776368618011475, 0.6191468834877014, 0.893467128276825, 0.49125444889068604, -0.626518964767456, 0.5241755843162537, -0.17428408563137054, -0.6040787100791931, -0.29852232336997986, 0.06179439276456833, 0.24065835773944855, 0.05767328664660454, 0.11618714034557343, 0.06651545315980911, 0.1927434206008911, -0.545918345451355, 0.4208241403102875, 0.38033607602119446, -0.6159501075744629, -0.47474008798599243, 0.49943405389785767, 0.3207235634326935, 0.07735133916139603, 0.5127262473106384, -0.3739427626132965, -0.19360671937465668, 0.40735381841659546, 0.08966157585382462, 0.7329972386360168, -0.4716699421405792, 0.10225842893123627, 0.4272182881832123, 0.5842146873474121, 0.19006533920764923, 0.6835432052612305, -0.4102369248867035, -0.6734262108802795, -0.6860933899879456, -0.5485430955886841, -0.1865374743938446, 0.2772873640060425, -0.5562818050384521, 0.10922879725694656, -0.3822545111179352, -0.053453076630830765, 0.2641337513923645, 0.2970779836177826, -0.8493595719337463, -0.04123508185148239, -0.08502142131328583, 1.1879758834838867, -0.9423338174819946, 1.0857267379760742, 0.7963001728057861, -0.028303030878305435, -0.6286435127258301, -0.29011741280555725, 0.22507056593894958, -0.708441436290741, 0.1805458664894104, 0.3453623056411743, 0.09178165346384048, -0.31910252571105957, -0.37098586559295654, -0.5813661813735962, 1.061642050743103, 0.4172195494174957, -0.4662441313266754, 0.11575085669755936, -0.215823233127594, 0.3598872125148773, -0.12042307108640671, 0.2682909667491913, 0.7320945262908936, 0.45664331316947937, -0.06996970623731613, -1.1937987804412842, -0.032261256128549576, -0.5333472490310669, -0.40657228231430054, 0.3394814133644104, -0.8477077484130859, 1.1847714185714722, -0.04502183943986893, -0.11789317429065704, -0.3329007029533386, 0.6824873685836792, 0.18321870267391205, 0.22217120230197906, 0.6349101066589355, 0.7552148103713989, 0.7343776822090149, -0.08911195397377014, 1.2168751955032349, 0.020177999511361122, 0.6483141183853149, 1.2619192600250244, 0.07494257390499115, 0.8195365071296692, 0.9149304628372192, -0.3079291880130768, 0.38192421197891235, 0.3997969329357147, 0.3930037021636963, 0.40228137373924255, 0.062218669801950455, -0.06718343496322632, 0.003696257248520851, 0.16713787615299225, -0.4647381901741028, 0.38480037450790405, 0.2645684778690338, -0.08862697333097458, -0.34649658203125, 0.3139308989048004, 0.301577627658844, -0.3830483853816986, 0.018511516973376274, 0.6670202016830444, 0.3091209828853607, -0.4927867352962494, 1.0597330331802368, -0.1195959523320198, 1.2141462564468384, -0.8460801839828491, 0.20231597125530243, -0.30181172490119934, 0.1933712512254715, -0.14225736260414124, -0.657012939453125, 0.5173650979995728, -0.1690564602613449, 0.16713093221187592, -0.16399316489696503, 0.6637628078460693, -0.5764660835266113, -0.3675200641155243, 0.47524070739746094, 0.44393739104270935, 0.11057955026626587, -0.13182272017002106, -0.901477575302124, 0.23911385238170624, -0.051956769078969955, -0.5723324418067932, 0.3746944069862366, 0.2697458863258362, 0.5024816989898682, 0.7943665385246277, 0.7550297379493713, -0.22430847585201263, 0.2837899923324585, -0.09596701711416245, 0.696409285068512, -0.36555635929107666, -0.6879431009292603, -0.7174673676490784, 0.5325702428817749, -0.2660929560661316, -0.676698625087738, 1.1296409368515015, 0.5423087477684021, 0.9179194569587708, -0.2318970263004303, 0.5024750232696533, -0.2816435992717743, 0.2152852863073349, -0.5370409488677979, 0.7983807325363159, -0.9296836256980896, -0.529468297958374, -0.38650432229042053, -0.8470500111579895, -0.05807456374168396, 0.6764910221099854, -0.0010231108171865344, -0.17727281153202057, 1.057914137840271, 0.5114766955375671, -0.6746476292610168, 0.18629926443099976, 0.5413225293159485, 0.2407987415790558, 0.1698194146156311, 0.7881688475608826, 0.48603346943855286, -0.6868255138397217, 0.2289748340845108, -0.5787402987480164, -0.517751932144165, -0.3022901713848114, -0.6214319467544556, -1.4031696319580078, -0.9144595265388489, -0.28783610463142395, -0.22524572908878326, -0.27236223220825195, 0.992750346660614, 0.901042640209198, -0.6912654042243958, -0.3046180009841919, 0.3179474174976349, -0.06249009072780609, -0.46941596269607544, -0.18425457179546356, 0.4331662952899933, -0.21457664668560028, -0.722790539264679, 0.4980071783065796, -0.06382930278778076, -0.1403895765542984, -0.26842254400253296, -0.30221232771873474, -0.6176914572715759, -0.38854461908340454, 0.8758795857429504, 0.1261327862739563, -0.40748390555381775, -0.3072752356529236, -0.11557066440582275, -0.07236111164093018, 0.047460492700338364, 0.9243355393409729, -0.5333453416824341, 0.3597242832183838, 0.6931532025337219, 0.6915918588638306, 0.6362621188163757, -0.38249191641807556, 0.43914392590522766, -0.6208145022392273, 0.6939413547515869, -0.18154940009117126, 0.7973560094833374, 0.278572142124176, -0.43989628553390503, 0.5182957649230957, 0.36905574798583984, -0.3994176983833313, -0.6655442118644714, -0.057727232575416565, -1.3150633573532104, -0.04584216699004173, 1.2009121179580688, -0.09339898079633713, -0.5599938631057739, -0.16889671981334686, -0.25769996643066406, 0.09752773493528366, -0.5710293054580688, 0.5542959570884705, 0.7454256415367126, 0.2289477437734604, -0.2586209177970886, -1.213736891746521, 0.6407105922698975, 0.4830814301967621, -0.7784632444381714, 0.010159911587834358, 0.35844019055366516, 0.3184085786342621, 0.2045518457889557, 0.8818584084510803, 0.16492566466331482, 0.24478544294834137, 0.09429040551185608, -0.012231959030032158, -0.25215956568717957, -0.2986956834793091, -0.24524299800395966, -0.10668104141950607, -0.37065184116363525, -0.4914034307003021 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mteb/sts12-sts
mteb
2022-09-27T19:11:50Z
8,095
4
null
[ "language:en", "region:us" ]
2022-09-27T19:11:50Z
2022-04-20T10:47:29.000Z
2022-04-20T10:47:29
--- 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
hf-internal-testing/cats_vs_dogs_sample
hf-internal-testing
2023-04-11T17:04:37Z
8,094
0
null
[ "region:us" ]
2023-04-11T17:04:37Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
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
mteb/sickr-sts
mteb
2022-09-27T19:13:22Z
8,048
2
null
[ "language:en", "region:us" ]
2022-09-27T19:13:22Z
2022-04-19T14:28:03.000Z
2022-04-19T14:28:03
--- 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
PKU-Alignment/PKU-SafeRLHF
PKU-Alignment
2023-11-20T10:26:57Z
8,024
40
null
[ "task_categories:text-generation", "size_categories:100K<n<1M", "language:en", "license:cc-by-nc-4.0", "safe", "safety", "ai-safety", "llm", "lm", "human-feedback", "rlhf", "safe-rlhf", "arxiv:2307.04657", "region:us" ]
2023-11-20T10:26:57Z
2023-06-14T16:03:29.000Z
2023-06-14T16:03:29
--- license: cc-by-nc-4.0 task_categories: - text-generation language: - en tags: - safe - safety - ai-safety - llm - lm - human-feedback - rlhf - safe-rlhf size_categories: - 100K<n<1M --- # Dataset Card for PKU-SafeRLHF <span style="color: red;">Warning: this dataset contains data that may be offensive or harmful. The data are intended for research purposes, especially research that can make models less harmful. The views expressed in the data do not reflect the views of PKU-Alignment Team or any of its members. </span> ## Dataset Summary The preference dataset consists of 30k+ expert comparison data. Each entry in this dataset includes two responses to a question, along with safety meta-labels and preferences for both responses, taking into consideration their helpfulness and harmlessness. The annotation pipeline for this dataset is depicted in the following image: ![Annotation Pipeline](annotation-pipeline.png) ## Human-Preference on Harmlessness and Helpfulness ### Harmlessness of a QA Pair The harmlessness of a QA pair is evaluated based on ethical considerations and safety implications inherent in the interaction. A QA pair is deemed harmless when it is classified as risk-neutral across all 14 harm categories outlined in our paper. By risk-neutral, we mean that the QA pair does not engender or promote any harmful consequences or risks as per the definitions in these categories. Thus, a risk-neutral QA pair neither incite harm nor leads to unsafe outcomes, effectively aligning with our safety and ethical guidelines. ### Helpfulness of a Response The helpfulness of a response pertains to how effectively it addresses a given prompt. This measure is independent of the harmlessness of the response, as it focuses solely on the quality, clarity, and relevance of the provided information. Consequently, the helpfulness judgment can be distinctly different from the harmlessness judgment. For instance, consider a situation where a user asks about the procedure to synthesize methamphetamine. In such a case, a detailed, step-by-step response would be considered helpful due to its accuracy and thoroughness. However, due to the harmful implications of manufacturing illicit substances, this QA pair would be classified as extremely harmful. ### Ranking of Responses Once the helpfulness and harmlessness of responses are evaluated, they are ranked accordingly. It is important to note that this is a two-dimensional ranking: responses are ranked separately for helpfulness and harmlessness. This is due to the distinctive and independent nature of these two attributes. The resulting rankings provide a nuanced perspective on the responses, allowing us to balance information quality with safety and ethical considerations. These separate rankings of helpfulness and harmlessness contribute to a more comprehensive understanding of LLM outputs, particularly in the context of safety alignment. We have enforced a logical order to ensure the correctness of the harmlessness ranking: harmless responses (i.e. all 14 harm categories risk-neutral) are always ranked higher than harmful ones (i.e., at least 1 category risky). ## Usage To load our dataset, use the `load_dataset()` function as follows: ```python from datasets import load_dataset dataset = load_dataset("PKU-Alignment/PKU-SafeRLHF") ``` ## Paper You can find more information in our paper - **Dataset Paper:** <https://arxiv.org/abs/2307.04657> ## Contact The original authors host this dataset on GitHub here: https://github.com/PKU-Alignment/beavertails.
[ -0.12915310263633728, -0.6105453968048096, 0.17767201364040375, 0.0032651720102876425, -0.2558051347732544, -0.2720142900943756, 0.1359442174434662, -0.7108974456787109, 0.19074754416942596, 0.3247615396976471, -0.1654246300458908, -0.633961021900177, -0.5095769166946411, 0.002285935450345278, 0.04065420851111412, 1.3682899475097656, 0.4120273292064667, -0.11943084746599197, -0.08390083909034729, -0.14521686732769012, -0.6059888601303101, -0.4750179052352905, -0.6683979034423828, 0.03730706125497818, 0.9718122482299805, 0.4129948914051056, 1.134512186050415, 0.7110671997070312, 0.7825731039047241, 0.21472027897834778, -0.008443710394203663, -0.2951221168041229, -0.507942795753479, 0.06989775598049164, -0.07080219686031342, -0.3211313486099243, -0.9706214070320129, 0.2517426609992981, 0.1592893749475479, 0.5670636296272278, -0.07163327932357788, 0.24252372980117798, 0.22005701065063477, 0.6801031231880188, -0.7325308918952942, 0.06861067563295364, -0.4250299632549286, -0.09063202142715454, -0.12036512047052383, -0.2851482331752777, -0.27302929759025574, -0.7608821988105774, 0.12215060740709305, -0.7015088200569153, -0.1358060985803604, 0.20021826028823853, 0.8576164841651917, 0.3012820780277252, -0.5053133368492126, -0.08736822754144669, -0.25173652172088623, 0.6266288161277771, -0.7369460463523865, 0.04540090262889862, 0.5868725180625916, 0.310024619102478, -0.2720925509929657, -0.3428943455219269, -0.25492098927497864, -0.07459037750959396, -0.17791536450386047, 0.16121810674667358, -0.005792025476694107, 0.20088282227516174, 0.3022843301296234, 0.300007164478302, -0.5527907609939575, 0.1919151246547699, -0.15948185324668884, -0.46638742089271545, 1.0249595642089844, 0.27449947595596313, 0.4659629762172699, -0.3620937168598175, -0.45347413420677185, -0.260782390832901, -0.7781893610954285, 0.35784098505973816, 0.591728687286377, 0.38930174708366394, -0.22142700850963593, 0.6716504693031311, -0.27563807368278503, 0.26579582691192627, 0.09613573551177979, -0.273304283618927, 0.6059941649436951, -0.7052958607673645, -0.19071649014949799, 0.21655872464179993, 1.1398417949676514, 1.0338696241378784, 0.2267122119665146, -0.13383163511753082, 0.03624521940946579, 0.09581465274095535, 0.41980358958244324, -0.7490679025650024, -0.5340334177017212, 0.39670297503471375, -0.5106542706489563, -0.6422701478004456, 0.14883215725421906, -0.6872003078460693, -0.5561339855194092, -0.054869841784238815, 0.5291417241096497, -0.156122088432312, -0.446269690990448, -0.008971784263849258, 0.11741625517606735, 0.24179261922836304, 0.0816861018538475, -0.7680809497833252, 0.06505557149648666, 0.5114173293113708, 0.1816580593585968, -0.06761706620454788, -0.05146525055170059, -0.3933089077472687, 0.030343947932124138, -0.42722949385643005, 0.6116589903831482, -0.04061375558376312, -0.3569139838218689, -0.24065567553043365, 0.39264464378356934, 0.19211944937705994, -0.5778788328170776, 0.9303435683250427, -0.2890019714832306, 0.11644407361745834, -0.5393115878105164, -0.22697481513023376, -0.40318629145622253, 0.005056413821876049, -0.48661598563194275, 0.7818028330802917, -0.008258267305791378, -1.06423819065094, 0.6279529929161072, -0.37430188059806824, -0.33180418610572815, -0.11993822455406189, 0.1516556292772293, -0.653146505355835, -0.6027495861053467, 0.013266576454043388, 0.542820930480957, 0.06764768064022064, 0.3322940766811371, -0.8200821280479431, -0.2714172601699829, 0.5604544878005981, -0.32295483350753784, 1.1608827114105225, 0.2536146938800812, -0.1936526596546173, 0.4144158661365509, -0.6503660082817078, 0.008398603647947311, 0.06903093308210373, -0.4412258565425873, -0.4501285254955292, -0.18959970772266388, 0.16699978709220886, 0.561575710773468, 0.24894893169403076, -0.46943002939224243, -0.15485039353370667, -0.2881895899772644, 0.060946475714445114, 0.8793761730194092, 0.3205336332321167, 0.4499508738517761, -0.7450328469276428, 0.2852933406829834, 0.018680812790989876, 0.60582035779953, 0.3883776068687439, -0.8380051255226135, -0.46883949637413025, 0.007895298302173615, 0.28681042790412903, 0.7367666959762573, -0.36116766929626465, 0.9873040914535522, -0.13641925156116486, -0.3751108646392822, -0.46003419160842896, 0.1730004996061325, 0.5993071794509888, 0.7954369783401489, 0.2896847724914551, -0.25070321559906006, -0.40092018246650696, -1.0653914213180542, -0.17455928027629852, -0.38826608657836914, -0.0897427424788475, 0.19918617606163025, 0.07770701497793198, 0.0830451250076294, 0.5473290085792542, -0.33399835228919983, -0.19486531615257263, 0.15689651668071747, -0.24986734986305237, 0.2539358139038086, 0.8089443445205688, 0.5665158629417419, -0.8112511038780212, -0.4686737060546875, -0.3607519865036011, -0.8578589558601379, -0.0235483106225729, 0.059156421571969986, -0.5635042786598206, 0.2136719822883606, 0.019874759018421173, -0.38242730498313904, 0.3398805558681488, 0.12116247415542603, -0.5650761723518372, 0.233856201171875, 0.03650812804698944, 0.30998915433883667, -1.1435679197311401, 0.38428112864494324, 0.07786586880683899, 0.011566841043531895, -0.7997437119483948, 0.11414901167154312, 0.16362108290195465, 0.13226218521595, -0.738700270652771, 0.18242666125297546, -0.1359524130821228, 0.09417425841093063, 0.15120235085487366, 0.04973271116614342, -0.17474615573883057, 0.4661327600479126, -0.23448294401168823, 0.7458509802818298, 0.5098591446876526, -0.6268669366836548, 0.13036178052425385, 0.26168307662010193, -0.028942441567778587, 0.5387208461761475, -0.5519810318946838, 0.09942995756864548, 0.10823104530572891, -0.020514121279120445, -0.8279098868370056, -0.499022901058197, 0.8570743799209595, -0.751384437084198, 0.2949364483356476, -0.08638369292020798, -0.5423781275749207, -0.05701757222414017, -0.9376258254051208, 0.34564849734306335, 0.6990906000137329, -0.07290148735046387, -0.1073378473520279, 0.7805331945419312, -0.16204002499580383, -0.8857917189598083, -0.6350160837173462, -0.2053782194852829, -0.6600556969642639, -0.6237239837646484, 0.021034616976976395, -0.27081507444381714, -0.2877584397792816, -0.1036708876490593, -0.2777446210384369, -0.04636943340301514, 0.35986632108688354, 0.4558863937854767, 0.6157247424125671, 0.1867738962173462, -0.10805283486843109, -0.0845884308218956, -0.514514148235321, 0.4270447790622711, 0.4847167730331421, 0.016828304156661034, -0.09548017382621765, 0.026152588427066803, -0.6852187514305115, 0.20647655427455902, 0.4597814083099365, 0.030695274472236633, 0.6555637121200562, 0.48117488622665405, -0.39191052317619324, 0.5115866661071777, -0.23202845454216003, -0.2677082121372223, -0.4568691551685333, -0.01081882230937481, 0.07767010480165482, -0.5003139972686768, 0.5287187099456787, 0.6651418209075928, 0.1790778636932373, 0.6608391404151917, 0.33202940225601196, -0.3540474772453308, 1.091226577758789, 0.1728019267320633, -0.08813667297363281, 0.07264905422925949, -0.1415664255619049, 0.48235419392585754, -0.7827833294868469, -0.4810093641281128, -0.4553745687007904, -0.26696115732192993, -1.0148755311965942, 0.04937480762600899, 0.48916298151016235, 0.1720609962940216, -0.4290590286254883, 0.3342120349407196, -0.6659572720527649, 0.18203602731227875, 0.5437113046646118, 0.38307878375053406, 0.1499822735786438, -0.12370764464139938, 0.11765534430742264, -0.05996057018637657, -0.5138573050498962, -0.6052086353302002, 1.415985107421875, 0.4871598184108734, 0.7308658361434937, 0.26558545231819153, 0.6192145347595215, -0.0010422711493447423, 0.19858969748020172, -0.9394576549530029, 0.7166692018508911, 0.001734519493766129, -0.7780461311340332, -0.2924533486366272, -0.46921688318252563, -1.1184109449386597, -0.02748236618936062, -0.5158911943435669, -0.695634663105011, 0.12217491865158081, 0.09114883840084076, -0.7610070109367371, 0.15759919583797455, -0.8205960392951965, 0.712577223777771, -0.2570669949054718, -0.5989810228347778, 0.007636401802301407, -1.1604257822036743, 0.3504546880722046, 0.009251234121620655, 0.21239422261714935, -0.28095492720603943, -0.118598073720932, 0.9534496068954468, -0.22657087445259094, 0.7649322748184204, -0.11850367486476898, -0.21886824071407318, 0.12238691002130508, -0.030751904472708702, 0.11023565381765366, 0.1670084446668625, -0.041329167783260345, 0.23238377273082733, 0.07565923035144806, -0.3681679964065552, -0.24335287511348724, 0.7920750379562378, -0.6892451643943787, -0.5862503051757812, -0.6498291492462158, -0.636710524559021, -0.0496574304997921, 0.46260541677474976, 0.1806488037109375, 0.286364883184433, 0.23631541430950165, 0.4078180491924286, 0.8062768578529358, -0.44266560673713684, 0.3477787673473358, 0.46556907892227173, -0.06145820766687393, -0.4335308372974396, 0.777600109577179, 0.3459871709346771, 0.13143527507781982, 0.3440937399864197, 0.1339721828699112, -0.7767744064331055, -0.5525737404823303, -0.24656885862350464, 0.05358012020587921, -0.7782387137413025, -0.35117611289024353, -0.6223933696746826, -0.15273693203926086, -0.5248516201972961, 0.04257131367921829, -0.054968878626823425, -0.5270658731460571, -0.2427564263343811, -0.36329060792922974, 0.4034731388092041, 0.4025479257106781, -0.26523929834365845, -0.30200842022895813, -0.7643993496894836, 0.4055750072002411, 0.2523851692676544, 0.4485242962837219, -0.2889782190322876, -0.06304674595594406, 0.12460163235664368, 0.10261151939630508, -0.5052202343940735, -0.9062733054161072, -0.00011759868357330561, -0.3604114353656769, 0.7168272137641907, 0.6118822693824768, 0.6460545659065247, 0.291263222694397, 0.12407863885164261, 0.8780564069747925, 0.2324817180633545, -0.28308162093162537, 0.5739499926567078, -0.77015620470047, -0.16141068935394287, 0.7708010673522949, 0.559086799621582, -0.1809874027967453, -0.3869633078575134, -0.7081946134567261, -0.9990655779838562, 0.5885302424430847, 0.5348962545394897, -0.09896302968263626, 0.03211324289441109, 0.20216119289398193, 0.1704091876745224, -0.027212293818593025, -0.7621846199035645, -0.6617783308029175, 0.0010372195392847061, -0.1906653195619583, 0.030860163271427155, -0.32166993618011475, -0.4288462996482849, -0.21989785134792328, 0.7975825667381287, 0.16514115035533905, 0.3255864679813385, -0.008932760916650295, 0.16757015883922577, -0.21286794543266296, 0.5133010149002075, 0.2590264081954956, 0.6510563492774963, -0.6160832643508911, 0.23658108711242676, 0.006411710288375616, -0.6132838129997253, 0.31651267409324646, 0.21005713939666748, -0.20750518143177032, -0.5633264183998108, 0.2062053680419922, 0.1539245992898941, 0.0958300530910492, -0.21335777640342712, 0.4826148748397827, -0.13955506682395935, -0.14461475610733032, -0.023451408371329308, 0.5355035066604614, -0.07299219071865082, -0.2462281733751297, 0.26344650983810425, 0.3336520493030548, 0.4483840763568878, -0.3180501461029053, 0.27098482847213745, 0.3837517499923706, -0.12164144963026047, -0.1738186925649643, 0.7149797677993774, 0.33275797963142395, -0.3463206887245178, 0.4453842043876648, -0.13929055631160736, -0.12896113097667694, 0.7460300922393799, 0.12916579842567444, 0.7552745342254639, -0.19694079458713531, 0.15946535766124725, 0.737360954284668, 0.29963788390159607, 0.2714814841747284, 0.41723576188087463, 0.03916037082672119, -0.522994339466095, 0.06743725389242172, -0.3412425220012665, -0.18045897781848907, 0.4207530617713928, -0.8390865325927734, 0.07249827682971954, -0.6170790195465088, -0.3943180441856384, 0.07580811530351639, 0.1721336394548416, -0.15870575606822968, 0.2729299068450928, -0.2901550531387329, 0.5414119362831116, -0.8914502263069153, 0.5534145832061768, 0.8558655381202698, -0.7366472482681274, -1.1273802518844604, 0.17660461366176605, 0.18955039978027344, -0.3407018780708313, 0.02988298237323761, 0.36184537410736084, 0.04415697604417801, -0.32622745633125305, -0.4028925597667694, -0.6923688650131226, 1.1694146394729614, 0.27581140398979187, -0.2989689111709595, 0.10860900580883026, 0.12268567830324173, 0.5451227426528931, 0.22773902118206024, 0.13015902042388916, 0.22350561618804932, 0.33943185210227966, -0.1509089469909668, -1.0340588092803955, 0.4555504024028778, -0.5070940256118774, -0.07678573578596115, 0.19431087374687195, -0.6530330777168274, 0.5082917809486389, -0.22859321534633636, -0.2369338870048523, 0.05020645260810852, 0.23745563626289368, 0.39213454723358154, 0.5759610533714294, 0.482830286026001, 0.6175582408905029, 0.5790228843688965, -0.1249021515250206, 0.9173821806907654, -0.3116339445114136, 0.24539653956890106, 0.821563720703125, 0.10936012864112854, 0.6636250615119934, 0.6480904221534729, -0.3728490471839905, 0.10284178704023361, 0.9803987741470337, 0.16805095970630646, 0.7417037487030029, -0.13417989015579224, -0.032492026686668396, -0.18653476238250732, -0.10767699033021927, -0.6311621069908142, 0.14075206220149994, 0.10800743848085403, -0.3415103256702423, -0.11778315901756287, -0.3462532162666321, 0.18965132534503937, -0.2686891555786133, -0.19359594583511353, 0.7933771014213562, 0.03917296603322029, -0.629149854183197, 0.6510962247848511, -0.2658032178878784, 0.7797918915748596, -0.3260481655597687, -0.07808667421340942, -0.20363441109657288, 0.06331318616867065, -0.6000562906265259, -1.2196882963180542, 0.5003626942634583, -0.16127325594425201, -0.0343499556183815, -0.05704469606280327, 0.7936686277389526, -0.057016268372535706, -0.1798267811536789, 0.22916768491268158, 0.09669118374586105, 0.1676037311553955, 0.3936208188533783, -0.8137549757957458, -0.26799842715263367, -0.020019058138132095, -0.08968306332826614, 0.5720998048782349, -0.04479162022471428, -0.08802787214517593, 0.7606626152992249, 0.7576289176940918, -0.17577306926250458, -0.06732679158449173, -0.13124696910381317, 0.7643890380859375, -0.3022708594799042, -0.623525083065033, -0.4717482328414917, 0.8674315810203552, 0.050353892147541046, -0.23957721889019012, 0.9602741599082947, 0.5610188841819763, 0.658233106136322, 0.05485973134636879, 0.4413912892341614, -0.17240795493125916, 0.3997993767261505, -0.5019989013671875, 1.2204238176345825, -0.39074796438217163, 0.36659514904022217, -0.42183366417884827, -0.7244259119033813, -0.44006118178367615, 0.7176040410995483, -0.17689242959022522, 0.18820442259311676, 0.5375196933746338, 1.053412675857544, 0.03200700879096985, 0.09710001200437546, 0.046455834060907364, 0.15205849707126617, 0.19235044717788696, 0.617344081401825, 0.6762300729751587, -0.5345518589019775, 0.4692676365375519, -0.7510094046592712, -0.3660064935684204, -0.03487376868724823, -0.9630306363105774, -0.8252670168876648, -0.4318065941333771, -0.5041800737380981, -0.654834508895874, -0.04516059160232544, 0.8261206150054932, 0.5953625440597534, -0.9379867911338806, -0.03260345757007599, -0.024788057431578636, 0.15433649718761444, -0.20561397075653076, -0.3154614269733429, 0.2757055163383484, 0.006179189309477806, -0.380336731672287, 0.14848561584949493, -0.016245387494564056, 0.14607490599155426, 0.0048843324184417725, -0.16097138822078705, -0.15164248645305634, -0.36435142159461975, 0.24831737577915192, 0.20466341078281403, -0.6061452627182007, -0.4259856939315796, 0.05124998465180397, -0.30605635046958923, 0.17522452771663666, 0.1615372896194458, -0.30216845870018005, 0.34662729501724243, 0.7221832871437073, 0.4030565917491913, -0.17956678569316864, -0.07511093467473984, 0.26177918910980225, -0.3352099061012268, -0.018874527886509895, 0.2552112638950348, 0.2032138854265213, 0.38821908831596375, -1.0644594430923462, 0.5894193053245544, 0.07969768345355988, -0.7732860445976257, -0.7153345942497253, 0.018263209611177444, -1.2454110383987427, 0.011830735020339489, 1.2742027044296265, -0.28251954913139343, -0.1009938195347786, -0.4123534858226776, -0.3668612539768219, 0.5423141121864319, -0.7348037362098694, 0.8949031829833984, 0.42199987173080444, -0.39543139934539795, -0.08061746507883072, -0.4428115487098694, 0.7157855033874512, 0.36944788694381714, -0.8752112984657288, -0.09203626960515976, 0.5299358367919922, 0.6989514827728271, 0.22710436582565308, 0.5903335809707642, -0.3388710916042328, 0.5557143092155457, -0.2266082763671875, -0.2863222658634186, -0.1186591312289238, -0.17760160565376282, -0.4942154288291931, 0.1812753826379776, 0.12533535063266754, -0.5562988519668579 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
pib
null
2023-06-01T14:59:57Z
8,007
3
null
[ "task_categories:translation", "task_categories:text-generation", "task_categories:fill-mask", "task_ids:language-modeling", "task_ids:masked-language-modeling", "annotations_creators:no-annotation", "language_creators:other", "multilinguality:translation", "size_categories:100K<n<1M", "size_categories:10K<n<100K", "source_datasets:original", "language:bn", "language:en", "language:gu", "language:hi", "language:ml", "language:mr", "language:or", "language:pa", "language:ta", "language:te", "language:ur", "license:cc-by-4.0", "arxiv:2008.04860", "region:us" ]
2023-06-01T14:59:57Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- task_categories: - translation - text-generation - fill-mask task_ids: - language-modeling - masked-language-modeling multilinguality: - translation language: - bn - en - gu - hi - ml - mr - or - pa - ta - te - ur language_creators: - other annotations_creators: - no-annotation source_datasets: - original size_categories: - 100K<n<1M - 10K<n<100K license: - cc-by-4.0 paperswithcode_id: null pretty_name: CVIT PIB dataset_info: - config_name: or-ur features: - name: translation dtype: translation: languages: - or - ur splits: - name: train num_bytes: 27790211 num_examples: 43766 download_size: 393352875 dataset_size: 27790211 - config_name: ml-or features: - name: translation dtype: translation: languages: - ml - or splits: - name: train num_bytes: 16011549 num_examples: 19413 download_size: 393352875 dataset_size: 16011549 - config_name: bn-ta features: - name: translation dtype: translation: languages: - bn - ta splits: - name: train num_bytes: 28706668 num_examples: 33005 download_size: 393352875 dataset_size: 28706668 - config_name: gu-mr features: - name: translation dtype: translation: languages: - gu - mr splits: - name: train num_bytes: 24253770 num_examples: 30766 download_size: 393352875 dataset_size: 24253770 - config_name: hi-or features: - name: translation dtype: translation: languages: - hi - or splits: - name: train num_bytes: 45086618 num_examples: 61070 download_size: 393352875 dataset_size: 45086618 - config_name: en-or features: - name: translation dtype: translation: languages: - en - or splits: - name: train num_bytes: 51258494 num_examples: 98230 download_size: 393352875 dataset_size: 51258494 - config_name: mr-ur features: - name: translation dtype: translation: languages: - mr - ur splits: - name: train num_bytes: 34053295 num_examples: 49691 download_size: 393352875 dataset_size: 34053295 - config_name: en-ta features: - name: translation dtype: translation: languages: - en - ta splits: - name: train num_bytes: 74931542 num_examples: 118759 download_size: 393352875 dataset_size: 74931542 - config_name: hi-ta features: - name: translation dtype: translation: languages: - hi - ta splits: - name: train num_bytes: 57628429 num_examples: 64945 download_size: 393352875 dataset_size: 57628429 - config_name: bn-en features: - name: translation dtype: translation: languages: - bn - en splits: - name: train num_bytes: 53291968 num_examples: 93560 download_size: 393352875 dataset_size: 53291968 - config_name: bn-or features: - name: translation dtype: translation: languages: - bn - or splits: - name: train num_bytes: 19819136 num_examples: 26456 download_size: 393352875 dataset_size: 19819136 - config_name: ml-ta features: - name: translation dtype: translation: languages: - ml - ta splits: - name: train num_bytes: 21685938 num_examples: 23609 download_size: 393352875 dataset_size: 21685938 - config_name: gu-ur features: - name: translation dtype: translation: languages: - gu - ur splits: - name: train num_bytes: 20312414 num_examples: 29938 download_size: 393352875 dataset_size: 20312414 - config_name: bn-ml features: - name: translation dtype: translation: languages: - bn - ml splits: - name: train num_bytes: 15545271 num_examples: 18149 download_size: 393352875 dataset_size: 15545271 - config_name: ml-pa features: - name: translation dtype: translation: languages: - ml - pa splits: - name: train num_bytes: 18114904 num_examples: 21978 download_size: 393352875 dataset_size: 18114904 - config_name: en-pa features: - name: translation dtype: translation: languages: - en - pa splits: - name: train num_bytes: 56316514 num_examples: 103296 download_size: 393352875 dataset_size: 56316514 - config_name: bn-hi features: - name: translation dtype: translation: languages: - bn - hi splits: - name: train num_bytes: 40970170 num_examples: 49598 download_size: 393352875 dataset_size: 40970170 - config_name: hi-pa features: - name: translation dtype: translation: languages: - hi - pa splits: - name: train num_bytes: 59293062 num_examples: 75200 download_size: 393352875 dataset_size: 59293062 - config_name: gu-te features: - name: translation dtype: translation: languages: - gu - te splits: - name: train num_bytes: 14517828 num_examples: 16335 download_size: 393352875 dataset_size: 14517828 - config_name: pa-ta features: - name: translation dtype: translation: languages: - pa - ta splits: - name: train num_bytes: 39144065 num_examples: 46349 download_size: 393352875 dataset_size: 39144065 - config_name: hi-ml features: - name: translation dtype: translation: languages: - hi - ml splits: - name: train num_bytes: 24015298 num_examples: 27167 download_size: 393352875 dataset_size: 24015298 - config_name: or-te features: - name: translation dtype: translation: languages: - or - te splits: - name: train num_bytes: 9011734 num_examples: 10475 download_size: 393352875 dataset_size: 9011734 - config_name: en-ml features: - name: translation dtype: translation: languages: - en - ml splits: - name: train num_bytes: 27754969 num_examples: 44986 download_size: 393352875 dataset_size: 27754969 - config_name: en-hi features: - name: translation dtype: translation: languages: - en - hi splits: - name: train num_bytes: 160009440 num_examples: 269594 download_size: 393352875 dataset_size: 160009440 - config_name: bn-pa features: - name: translation dtype: translation: languages: - bn - pa splits: - name: train num_bytes: 27522373 num_examples: 35109 download_size: 393352875 dataset_size: 27522373 - config_name: mr-te features: - name: translation dtype: translation: languages: - mr - te splits: - name: train num_bytes: 16838115 num_examples: 18179 download_size: 393352875 dataset_size: 16838115 - config_name: mr-pa features: - name: translation dtype: translation: languages: - mr - pa splits: - name: train num_bytes: 38720410 num_examples: 50418 download_size: 393352875 dataset_size: 38720410 - config_name: bn-te features: - name: translation dtype: translation: languages: - bn - te splits: - name: train num_bytes: 15529843 num_examples: 17605 download_size: 393352875 dataset_size: 15529843 - config_name: gu-hi features: - name: translation dtype: translation: languages: - gu - hi splits: - name: train num_bytes: 33606230 num_examples: 41587 download_size: 393352875 dataset_size: 33606230 - config_name: ta-ur features: - name: translation dtype: translation: languages: - ta - ur splits: - name: train num_bytes: 37593813 num_examples: 48892 download_size: 393352875 dataset_size: 37593813 - config_name: te-ur features: - name: translation dtype: translation: languages: - te - ur splits: - name: train num_bytes: 16485209 num_examples: 21148 download_size: 393352875 dataset_size: 16485209 - config_name: or-pa features: - name: translation dtype: translation: languages: - or - pa splits: - name: train num_bytes: 30081903 num_examples: 43159 download_size: 393352875 dataset_size: 30081903 - config_name: gu-ml features: - name: translation dtype: translation: languages: - gu - ml splits: - name: train num_bytes: 15749821 num_examples: 18252 download_size: 393352875 dataset_size: 15749821 - config_name: gu-pa features: - name: translation dtype: translation: languages: - gu - pa splits: - name: train num_bytes: 27441041 num_examples: 35566 download_size: 393352875 dataset_size: 27441041 - config_name: hi-te features: - name: translation dtype: translation: languages: - hi - te splits: - name: train num_bytes: 26473814 num_examples: 28569 download_size: 393352875 dataset_size: 26473814 - config_name: en-te features: - name: translation dtype: translation: languages: - en - te splits: - name: train num_bytes: 28620219 num_examples: 44888 download_size: 393352875 dataset_size: 28620219 - config_name: ml-te features: - name: translation dtype: translation: languages: - ml - te splits: - name: train num_bytes: 9690153 num_examples: 10480 download_size: 393352875 dataset_size: 9690153 - config_name: pa-ur features: - name: translation dtype: translation: languages: - pa - ur splits: - name: train num_bytes: 34959176 num_examples: 51831 download_size: 393352875 dataset_size: 34959176 - config_name: hi-ur features: - name: translation dtype: translation: languages: - hi - ur splits: - name: train num_bytes: 81262590 num_examples: 109951 download_size: 393352875 dataset_size: 81262590 - config_name: mr-or features: - name: translation dtype: translation: languages: - mr - or splits: - name: train num_bytes: 33998805 num_examples: 47001 download_size: 393352875 dataset_size: 33998805 - config_name: en-ur features: - name: translation dtype: translation: languages: - en - ur splits: - name: train num_bytes: 100571795 num_examples: 202578 download_size: 393352875 dataset_size: 100571795 - config_name: ml-ur features: - name: translation dtype: translation: languages: - ml - ur splits: - name: train num_bytes: 15663718 num_examples: 20913 download_size: 393352875 dataset_size: 15663718 - config_name: bn-mr features: - name: translation dtype: translation: languages: - bn - mr splits: - name: train num_bytes: 27604502 num_examples: 34043 download_size: 393352875 dataset_size: 27604502 - config_name: gu-ta features: - name: translation dtype: translation: languages: - gu - ta splits: - name: train num_bytes: 25089131 num_examples: 29187 download_size: 393352875 dataset_size: 25089131 - config_name: pa-te features: - name: translation dtype: translation: languages: - pa - te splits: - name: train num_bytes: 23119690 num_examples: 25684 download_size: 393352875 dataset_size: 23119690 - config_name: bn-gu features: - name: translation dtype: translation: languages: - bn - gu splits: - name: train num_bytes: 19899277 num_examples: 25166 download_size: 393352875 dataset_size: 19899277 - config_name: bn-ur features: - name: translation dtype: translation: languages: - bn - ur splits: - name: train num_bytes: 27540215 num_examples: 39290 download_size: 393352875 dataset_size: 27540215 - config_name: ml-mr features: - name: translation dtype: translation: languages: - ml - mr splits: - name: train num_bytes: 19723458 num_examples: 22796 download_size: 393352875 dataset_size: 19723458 - config_name: or-ta features: - name: translation dtype: translation: languages: - or - ta splits: - name: train num_bytes: 35357904 num_examples: 44035 download_size: 393352875 dataset_size: 35357904 - config_name: ta-te features: - name: translation dtype: translation: languages: - ta - te splits: - name: train num_bytes: 17415768 num_examples: 17359 download_size: 393352875 dataset_size: 17415768 - config_name: gu-or features: - name: translation dtype: translation: languages: - gu - or splits: - name: train num_bytes: 20111876 num_examples: 27162 download_size: 393352875 dataset_size: 20111876 - config_name: en-gu features: - name: translation dtype: translation: languages: - en - gu splits: - name: train num_bytes: 33630906 num_examples: 59739 download_size: 393352875 dataset_size: 33630906 - config_name: hi-mr features: - name: translation dtype: translation: languages: - hi - mr splits: - name: train num_bytes: 55680473 num_examples: 69186 download_size: 393352875 dataset_size: 55680473 - config_name: mr-ta features: - name: translation dtype: translation: languages: - mr - ta splits: - name: train num_bytes: 41585343 num_examples: 48535 download_size: 393352875 dataset_size: 41585343 - config_name: en-mr features: - name: translation dtype: translation: languages: - en - mr splits: - name: train num_bytes: 65042597 num_examples: 117199 download_size: 393352875 dataset_size: 65042597 config_names: - bn-en - bn-gu - bn-hi - bn-ml - bn-mr - bn-or - bn-pa - bn-ta - bn-te - bn-ur - en-gu - en-hi - en-ml - en-mr - en-or - en-pa - en-ta - en-te - en-ur - gu-hi - gu-ml - gu-mr - gu-or - gu-pa - gu-ta - gu-te - gu-ur - hi-ml - hi-mr - hi-or - hi-pa - hi-ta - hi-te - hi-ur - ml-mr - ml-or - ml-pa - ml-ta - ml-te - ml-ur - mr-or - mr-pa - mr-ta - mr-te - mr-ur - or-pa - or-ta - or-te - or-ur - pa-ta - pa-te - pa-ur - ta-te - ta-ur - te-ur --- # Dataset Card for CVIT PIB ## 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://preon.iiit.ac.in/~jerin/bhasha/ - **Paper:** https://arxiv.org/abs/2008.04860 - **Point of Contact:** [Mailing List](cvit-bhasha@googlegroups.com) ### Dataset Summary This dataset is the large scale sentence aligned corpus in 11 Indian languages, viz. CVIT-PIB corpus that is the largest multilingual corpus available for Indian languages. ### Supported Tasks and Leaderboards - Machine Translation ### Languages Parallel data for following languages [en, bn, gu, hi, ml, mr, pa, or, ta, te, ur] are covered. ## Dataset Structure ### Data Instances An example for the "gu-pa" language pair: ``` { 'translation': { 'gu': 'એવો નિર્ણય લેવાયો હતો કે ખંતપૂર્વકની કામગીરી હાથ ધરવા, કાયદેસર અને ટેકનિકલ મૂલ્યાંકન કરવા, વેન્ચર કેપિટલ ઇન્વેસ્ટમેન્ટ સમિતિની બેઠક યોજવા વગેરે એઆઇએફને કરવામાં આવેલ પ્રતિબદ્ધતાના 0.50 ટકા સુધી અને બાકીની રકમ એફએફએસને પૂર્ણ કરવામાં આવશે.', 'pa': 'ਇਹ ਵੀ ਫੈਸਲਾ ਕੀਤਾ ਗਿਆ ਕਿ ਐੱਫਆਈਆਈ ਅਤੇ ਬਕਾਏ ਲਈ ਕੀਤੀਆਂ ਗਈਆਂ ਵਚਨਬੱਧਤਾਵਾਂ ਦੇ 0.50 % ਦੀ ਸੀਮਾ ਤੱਕ ਐੱਫਈਐੱਸ ਨੂੰ ਮਿਲਿਆ ਜਾਏਗਾ, ਇਸ ਨਾਲ ਉੱਦਮ ਪੂੰਜੀ ਨਿਵੇਸ਼ ਕਮੇਟੀ ਦੀ ਬੈਠਕ ਦਾ ਆਯੋਜਨ ਉਚਿਤ ਸਾਵਧਾਨੀ, ਕਾਨੂੰਨੀ ਅਤੇ ਤਕਨੀਕੀ ਮੁੱਲਾਂਕਣ ਲਈ ਸੰਚਾਲਨ ਖਰਚ ਆਦਿ ਦੀ ਪੂਰਤੀ ਹੋਵੇਗੀ।' } } ``` ### Data Fields - `translation`: Translation field containing the parallel text for the pair of languages. ### Data Splits The dataset is in a single "train" split. ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license. ### Citation Information ``` @inproceedings{siripragada-etal-2020-multilingual, title = "A Multilingual Parallel Corpora Collection Effort for {I}ndian Languages", author = "Siripragada, Shashank and Philip, Jerin and Namboodiri, Vinay P. and Jawahar, C V", booktitle = "Proceedings of the 12th Language Resources and Evaluation Conference", month = may, year = "2020", address = "Marseille, France", publisher = "European Language Resources Association", url = "https://aclanthology.org/2020.lrec-1.462", pages = "3743--3751", language = "English", ISBN = "979-10-95546-34-4", } @article{2020, title={Revisiting Low Resource Status of Indian Languages in Machine Translation}, url={http://dx.doi.org/10.1145/3430984.3431026}, DOI={10.1145/3430984.3431026}, journal={8th ACM IKDD CODS and 26th COMAD}, publisher={ACM}, author={Philip, Jerin and Siripragada, Shashank and Namboodiri, Vinay P. and Jawahar, C. V.}, year={2020}, month={Dec} } ``` ### Contributions Thanks to [@vasudevgupta7](https://github.com/vasudevgupta7) for adding this dataset, and [@albertvillanova](https://github.com/albertvillanova) for updating its version.
[ -0.4316468834877014, -0.5206595063209534, 0.03261898085474968, 0.4745349884033203, -0.31935247778892517, 0.17670518159866333, -0.6110605001449585, -0.28722602128982544, 0.42919740080833435, 0.36553460359573364, -0.6268721222877502, -0.6861453652381897, -0.719733715057373, 0.40676578879356384, -0.11482296884059906, 0.9552041888237, -0.28341144323349, 0.028832105919718742, -0.30572226643562317, -0.5016462802886963, -0.5527263283729553, -0.5404168367385864, -0.38223996758461, 0.04279222711920738, 0.21691058576107025, 0.6517094373703003, 0.4019796848297119, 0.7666610479354858, 0.743204653263092, 0.3212859630584717, 0.08405111730098724, 0.2694304287433624, -0.320290744304657, 0.027216080576181412, -0.12476405501365662, -0.3585878014564514, -0.5609721541404724, -0.08292687684297562, 0.9626127481460571, 0.556735098361969, 0.02274906449019909, 0.5039582252502441, 0.10385478287935257, 0.6964240670204163, -0.5679205656051636, 0.5613095760345459, -0.4670565128326416, -0.22548119723796844, -0.6982865333557129, -0.07291309535503387, -0.16304858028888702, -0.37250152230262756, -0.2822519838809967, -0.45805877447128296, 0.13727827370166779, 0.09031751751899719, 1.1236443519592285, 0.11704196780920029, -0.12469235062599182, -0.06541558355093002, -0.4858000874519348, 1.0743800401687622, -0.4914902150630951, 0.27672913670539856, 0.5150033831596375, 0.3933141529560089, 0.09096314758062363, -0.5362775921821594, -0.8086571097373962, 0.139740452170372, -0.17326484620571136, 0.2926967144012451, 0.11230238527059555, -0.2502288520336151, 0.37727272510528564, 0.5911272168159485, -0.4665513038635254, -0.15698422491550446, -0.7567886114120483, -0.18917316198349, 0.6517215371131897, 0.34571224451065063, 0.3850885033607483, -0.5661969780921936, -0.37490007281303406, -0.4117555022239685, -0.3930797576904297, 0.17243966460227966, 0.3641907274723053, 0.5513786673545837, -0.7110726833343506, 0.6549057960510254, -0.2383061796426773, 0.6438162326812744, -0.025581644847989082, -0.07307944446802139, 0.9447136521339417, -0.9178823232650757, -0.1027451604604721, -0.07461109012365341, 1.1964412927627563, 0.286394864320755, 0.0959596261382103, 0.25493311882019043, 0.11937624216079712, 0.06667858362197876, -0.08914528787136078, -0.6840137243270874, 0.18940632045269012, 0.29601427912712097, -0.4973598122596741, -0.103784941136837, 0.0688379630446434, -1.0495325326919556, -0.10911156237125397, -0.4039781987667084, -0.15278470516204834, -0.45278775691986084, -0.4045182168483734, -0.23266544938087463, -0.007764071226119995, 0.6329518556594849, -0.02219032496213913, -0.8138695359230042, 0.25956955552101135, 0.49179527163505554, 0.8949467539787292, -0.29289764165878296, -0.4497492015361786, -0.28201934695243835, 0.15562868118286133, 0.015135708265006542, 0.6586410403251648, -0.5047003030776978, -0.5417965054512024, 0.023804519325494766, 0.33199822902679443, -0.3199772536754608, -0.2805377244949341, 0.9987930059432983, -0.11953875422477722, 0.1902117282152176, -0.6215812563896179, -0.08787818253040314, -0.14149510860443115, 0.4380837380886078, -0.5561527013778687, 1.1832901239395142, 0.030671419575810432, -0.900587260723114, 0.26638856530189514, -0.7019631266593933, -0.3966558277606964, 0.14662718772888184, -0.46478086709976196, -0.574999988079071, -0.28288358449935913, 0.4795360267162323, 0.44896334409713745, -0.6817144155502319, 0.2579748034477234, -0.18580812215805054, -0.08724603801965714, -0.21890147030353546, -0.3029426038265228, 1.0990312099456787, 0.3840828835964203, -0.23194946348667145, 0.07509706914424896, -0.8459309339523315, -0.02689124085009098, 0.14217999577522278, -0.20419228076934814, -0.23680543899536133, -0.31647178530693054, 0.2165554165840149, 0.3500882387161255, 0.47921812534332275, -0.6797136664390564, 0.15236201882362366, -0.30430030822753906, 0.23626664280891418, 0.6732890605926514, 0.09112755954265594, 0.2591719329357147, -0.3049345016479492, 0.623732328414917, 0.24835456907749176, 0.39718785881996155, -0.03434547409415245, -0.630017876625061, -0.8584453463554382, -0.4446503818035126, 0.2581900358200073, 0.8146406412124634, -0.8177471160888672, 0.3469908535480499, -0.6246364712715149, -0.7391253113746643, -0.776745080947876, 0.20458969473838806, 0.6755198240280151, 0.5362032055854797, 0.5320316553115845, -0.5226828455924988, -0.6998785138130188, -1.0708391666412354, -0.18785566091537476, -0.01165879424661398, 0.45006266236305237, 0.3315868377685547, 0.6121074557304382, -0.21670395135879517, 0.7782067060470581, -0.5155144333839417, -0.36156827211380005, -0.3186289668083191, 0.10639850050210953, 0.3544846475124359, 0.6086406111717224, 0.4785904288291931, -1.018939733505249, -0.7789156436920166, -0.08959059417247772, -0.881536602973938, -0.11838676035404205, -0.08219080418348312, -0.3000522255897522, 0.29003164172172546, 0.31469646096229553, -0.4560405910015106, 0.4494379162788391, 0.6143370866775513, -0.25887319445610046, 0.5335907936096191, -0.1272554099559784, 0.43486523628234863, -1.4185742139816284, 0.22776268422603607, 0.013374180532991886, 0.08480480313301086, -0.46465185284614563, -0.22021260857582092, 0.07277315855026245, 0.015399448573589325, -0.4777376055717468, 0.6130053997039795, -0.6063315868377686, 0.19102419912815094, 0.050681766122579575, 0.09078957140445709, -0.2086990773677826, 0.623824417591095, -0.08250270038843155, 0.8740036487579346, 0.7164574861526489, -0.43329906463623047, 0.1718694120645523, 0.6275737881660461, -0.2772815525531769, 0.6641383171081543, -0.687851071357727, -0.22584180533885956, -0.2552875876426697, 0.10184682160615921, -0.732640266418457, -0.18614999949932098, 0.6408507823944092, -0.6659076809883118, 0.3121924102306366, -0.04284403845667839, -0.6435559391975403, -0.33212026953697205, -0.5284031629562378, 0.5025016069412231, 0.3379574716091156, -0.17530792951583862, 0.4260271489620209, 0.4910427927970886, -0.2017711102962494, -0.6875543594360352, -1.001474380493164, 0.01564762555062771, -0.0040174624882638454, -0.5378022789955139, 0.3757465183734894, -0.2944363057613373, -0.06386762112379074, 0.046749819070100784, 0.22687195241451263, -0.11063839495182037, -0.38675522804260254, 0.45603111386299133, 0.4038943648338318, -0.08116522431373596, -0.13760150969028473, 0.02980869822204113, -0.2015204131603241, -0.31085777282714844, 0.0500471405684948, 0.5534540414810181, -0.3616158068180084, -0.3101077675819397, -0.5590371489524841, 0.45384740829467773, 0.57851243019104, -0.594093382358551, 0.9553446769714355, 0.977198600769043, -0.3748924732208252, 0.4447248578071594, -0.6219348311424255, 0.19208920001983643, -0.4123106300830841, 0.37856239080429077, -0.4055061638355255, -0.6654776334762573, 0.740715503692627, 0.20717939734458923, -0.013120634481310844, 1.0366138219833374, 0.9545557498931885, 0.4558486342430115, 0.5654523968696594, 0.5680566430091858, -0.261085569858551, 0.4826410412788391, -0.4477400481700897, 0.2319059520959854, -1.1202305555343628, -0.500059187412262, -0.7024216651916504, -0.024053841829299927, -1.1484378576278687, -0.6924242973327637, 0.12159163504838943, 0.05567939206957817, -0.19017545878887177, 0.6442248821258545, -0.7375962138175964, 0.2183247208595276, 0.6783815622329712, -0.07540670037269592, 0.16989393532276154, 0.030955974012613297, -0.15146714448928833, -0.15774168074131012, -0.49864572286605835, -0.4947409927845001, 1.1670058965682983, 0.19835206866264343, 0.14415453374385834, 0.1398380547761917, 0.8090284466743469, 0.05911360681056976, 0.24002768099308014, -0.20532530546188354, 0.5351414084434509, -0.23483097553253174, -0.7097451686859131, -0.28088700771331787, -0.3420115113258362, -0.8987488150596619, 0.11780890822410583, -0.3359290361404419, -0.622323751449585, 0.6718565821647644, -0.02777114510536194, -0.1937503069639206, 0.1714017391204834, -0.8549911975860596, 0.8661064505577087, -0.2719416618347168, -0.488688588142395, -0.11938046663999557, -0.7151331305503845, 0.34689128398895264, -0.034743379801511765, 0.483756959438324, -0.1334339827299118, -0.03957376629114151, 0.9276172518730164, -0.5945923924446106, 0.788811445236206, -0.12785892188549042, 0.48416459560394287, 0.4658500552177429, -0.440451055765152, 0.4974537789821625, 0.16099001467227936, -0.20997734367847443, 0.5738134980201721, 0.009406261146068573, -0.71192866563797, -0.2208564430475235, 0.9367550611495972, -0.8677129149436951, -0.36185863614082336, -0.8062256574630737, -0.6233023405075073, 0.01884380914270878, 0.4424906373023987, 0.2127060443162918, 0.13173367083072662, 0.18505670130252838, 0.3031063675880432, 0.3601357936859131, -0.5493403673171997, 0.4462406039237976, 0.3271116614341736, 0.2551395297050476, -0.691882848739624, 1.0160901546478271, 0.32125064730644226, 0.13798227906227112, 0.39557453989982605, -0.0055488222278654575, -0.21357020735740662, -0.45660504698753357, -0.4142020642757416, 0.3753834664821625, -0.5212567448616028, -0.187080517411232, -0.69260174036026, -0.21745745837688446, -0.694622814655304, 0.00881144031882286, -0.34177786111831665, -0.4603477716445923, -0.11452646553516388, -0.07606919854879379, 0.6176141500473022, 0.3265112042427063, -0.21477091312408447, 0.16239112615585327, -0.7182711362838745, 0.3092750310897827, -0.051288142800331116, 0.4476584494113922, -0.060282714664936066, -0.34115850925445557, -0.40850383043289185, 0.04685664549469948, -0.33792757987976074, -0.6715438365936279, 0.5454264283180237, 0.08017969876527786, 0.6655727028846741, -0.0851159393787384, 0.07073450088500977, 0.7716397643089294, -0.3123641908168793, 1.047147512435913, 0.26641348004341125, -0.5923851728439331, 0.5292242169380188, -0.49506711959838867, 0.43779295682907104, 0.9822893738746643, 0.44611915946006775, -0.5273985266685486, -0.27816441655158997, -0.6526813507080078, -1.3524318933486938, 0.7697910666465759, 0.434424489736557, 0.08227977901697159, -0.13637353479862213, 0.13808313012123108, -0.009316636249423027, 0.25687727332115173, -0.6363762617111206, -0.7809065580368042, -0.28670331835746765, -0.3850182294845581, -0.05443781986832619, -0.32741668820381165, 0.021279145032167435, -0.4469202160835266, 0.7698944211006165, 0.35566210746765137, 0.36953648924827576, 0.19183088839054108, -0.033993739634752274, 0.09346764534711838, 0.35157114267349243, 0.6759172081947327, 0.5048394799232483, -0.34043338894844055, -0.2266671359539032, 0.23443038761615753, -0.8337960839271545, -0.21374408900737762, 0.29533401131629944, -0.18306592106819153, -0.01909448578953743, 0.32023152709007263, 0.8662272095680237, -0.08374322950839996, -0.4716684818267822, 0.4901594817638397, -0.054812122136354446, -0.16916531324386597, -0.6326878070831299, -0.3063085973262787, -0.04786944389343262, 0.12472514063119888, 0.22666269540786743, 0.17486798763275146, -0.11159095913171768, -0.3822340965270996, 0.14821361005306244, 0.05585452541708946, -0.3083915114402771, -0.19601882994174957, 0.7334988713264465, 0.18068894743919373, -0.26727598905563354, 0.6203022599220276, -0.2888335585594177, -0.4234592616558075, 0.5155797004699707, 0.10275024175643921, 0.9067555665969849, -0.12339769303798676, 0.03863685205578804, 0.8554647564888, 0.46411898732185364, -0.10206809639930725, 0.5046308636665344, 0.01725509949028492, -0.4355598986148834, -0.4184340536594391, -0.8015655279159546, -0.189069926738739, -0.014373041689395905, -0.6926493644714355, 0.5572674870491028, -0.2952364683151245, -0.07183194160461426, 0.012970736250281334, 0.2511128783226013, -1.0037481784820557, 0.0755707249045372, -0.02178921177983284, 0.7629529237747192, -0.9593207836151123, 0.9239382147789001, 0.6748749613761902, -1.204939603805542, -0.7186671495437622, -0.13598544895648956, 0.03351684659719467, -0.7612122893333435, 0.6489155888557434, -0.08411926031112671, 0.18939433991909027, -0.2417760044336319, -0.33363577723503113, -0.9764218926429749, 1.3084065914154053, 0.23833483457565308, -0.5819941163063049, 0.27933382987976074, 0.4657924175262451, 0.584255576133728, -0.27624762058258057, 0.38744431734085083, 0.33843305706977844, 0.7535990476608276, -0.03577613830566406, -0.9630173444747925, 0.2472500503063202, -0.6101643443107605, 0.07980912178754807, 0.15802498161792755, -1.0788068771362305, 0.8760516047477722, 0.05980011448264122, -0.03388984873890877, -0.16199350357055664, 0.6533997058868408, 0.40714648365974426, 0.22879213094711304, 0.2543123662471771, 0.6030983924865723, 0.5337066054344177, -0.19422507286071777, 1.2617993354797363, -0.5244103670120239, 0.35185009241104126, 1.1439893245697021, 0.11699261516332626, 0.8727601766586304, 0.6459367871284485, -0.28793320059776306, 0.4795786440372467, 0.5121068954467773, -0.2778632938861847, 0.37878233194351196, 0.038949865847826004, 0.03573160246014595, -0.10497931391000748, -0.3899533152580261, -0.6260889768600464, 0.4960378110408783, 0.30505555868148804, -0.43990758061408997, -0.03239819034934044, -0.05758127197623253, 0.1901644766330719, 0.22490239143371582, -0.18240554630756378, 0.3161240816116333, 0.07176399976015091, -0.5770816802978516, 0.6851089596748352, 0.12894387543201447, 0.7711783647537231, -0.5585470795631409, -0.07273078709840775, -0.1821412444114685, 0.172012597322464, -0.37712201476097107, -0.6709720492362976, 0.5588104128837585, 0.11177743226289749, -0.6167575716972351, -0.30010560154914856, 0.42447328567504883, -0.5491010546684265, -0.8889081478118896, 0.14055393636226654, 0.3610786199569702, 0.2515161335468292, 0.2812042236328125, -0.8814823627471924, 0.39910978078842163, 0.07317636907100677, -0.281133770942688, 0.3593759834766388, 0.3620208501815796, -0.4056164622306824, 0.36694493889808655, 0.5951706767082214, 0.27826574444770813, 0.18405373394489288, 0.0906231626868248, 0.7345385551452637, -0.7714235782623291, -0.32760336995124817, -0.6769682765007019, 0.7249771356582642, -0.40204089879989624, -0.5215296149253845, 0.9838295578956604, 0.8571254014968872, 1.0633286237716675, -0.038084615021944046, 1.0170505046844482, -0.47331666946411133, 0.6824935078620911, -0.0891532450914383, 0.7033214569091797, -0.5166832804679871, 0.2006031572818756, -0.4553876221179962, -0.6588608622550964, -0.4317786991596222, 0.2874673902988434, -0.5547679662704468, 0.05754215642809868, 0.7715420126914978, 0.8668603301048279, 0.0734647810459137, -0.197385773062706, -0.037466034293174744, 0.3244343400001526, 0.1772710233926773, 0.6045632362365723, 0.029661957174539566, -0.8501805067062378, 0.8429332971572876, -0.4158668518066406, -0.3138236701488495, 0.007652624044567347, -0.7278751730918884, -0.7178922891616821, -0.9495705366134644, -0.49930837750434875, -0.27659156918525696, -0.014542403630912304, 0.9677017331123352, 0.3734636604785919, -1.0280394554138184, -0.4548231065273285, 0.10785732418298721, 0.1533728688955307, -0.2699413597583771, -0.20998413860797882, 0.8271318078041077, -0.10188743472099304, -0.9654072523117065, -0.08256851136684418, 0.18578998744487762, -0.2027583122253418, 0.03291646018624306, -0.25076836347579956, -0.7695603966712952, -0.20895490050315857, 0.49817678332328796, 0.6042720675468445, -0.6401506066322327, 0.009123435243964195, -0.10969903320074081, -0.13258421421051025, 0.12185976654291153, 0.4010241627693176, -0.43424105644226074, 0.6107155680656433, 0.7327824831008911, 0.5154368281364441, 0.4374412000179291, -0.11759350448846817, 0.28589093685150146, -0.6699634790420532, 0.4286583960056305, -0.07715336233377457, 0.2436748594045639, 0.4700222909450531, -0.39892274141311646, 0.5423339605331421, 0.45784470438957214, -0.38153523206710815, -0.8641184568405151, -0.10898639261722565, -1.3548351526260376, 0.2071910798549652, 1.3133573532104492, 0.0267108753323555, -0.4758766293525696, -0.10500901192426682, -0.12124567478895187, 0.6085222363471985, -0.5839400887489319, 0.48837026953697205, 0.7204310297966003, 0.08166344463825226, -0.14842097461223602, -0.7441185116767883, 0.4019817113876343, 0.22631683945655823, -0.8158190846443176, -0.009990244172513485, 0.1590382158756256, 0.06711380928754807, 0.3173142671585083, 0.8845112323760986, -0.5195346474647522, 0.024654868990182877, -0.04583613947033882, 0.3889336884021759, -0.23876073956489563, 0.051318489015102386, -0.12941569089889526, -0.028211209923028946, -0.11851269751787186, -0.5755380392074585 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
NeelNanda/pile-10k
NeelNanda
2022-10-14T21:27:22Z
7,933
2
null
[ "license:bigscience-bloom-rail-1.0", "region:us" ]
2022-10-14T21:27:22Z
2022-10-02T20:59:26.000Z
2022-10-02T20:59:26
--- license: bigscience-bloom-rail-1.0 --- The first 10K elements of [The Pile](https://pile.eleuther.ai/), useful for debugging models trained on it. See the [HuggingFace page for the full Pile](https://huggingface.co/datasets/the_pile) for more info. Inspired by [stas' great resource](https://huggingface.co/datasets/stas/openwebtext-10k) doing the same for OpenWebText
[ -0.9237263202667236, -0.6905546188354492, 0.14326900243759155, 0.11956445127725601, -0.2760312557220459, -0.1782425343990326, 0.4927011728286743, -0.5779160857200623, 0.4831351637840271, 0.44245171546936035, -0.45856499671936035, -0.3459315299987793, -0.375944048166275, -0.1623837649822235, -0.8868163824081421, 1.2088921070098877, 0.1344250589609146, -0.37218448519706726, -0.4872662127017975, -0.4249584674835205, 0.1127283051609993, -0.20023491978645325, -0.5509931445121765, -0.2623574733734131, 0.8054558634757996, 0.4032204747200012, 0.6389269232749939, 0.5294697880744934, 0.6642999649047852, 0.26490265130996704, -0.1494588404893875, -0.3122897148132324, -0.656507670879364, -0.10912705212831497, -0.3188825249671936, 0.08751653134822845, -0.6131219863891602, -0.004783619195222855, 0.16214996576309204, 0.9471089839935303, -0.18802666664123535, 0.6883121132850647, -0.012278142385184765, 0.802251398563385, -0.6101407408714294, 0.00015589856775477529, 0.1445200890302658, -0.05695648491382599, -0.4160242974758148, 0.10579030215740204, -0.12993603944778442, -0.11810967326164246, 0.08398859202861786, -0.7395558953285217, 0.10450120270252228, 0.0875144824385643, 0.9227104783058167, 0.4062650501728058, -0.6089781522750854, 0.1582576334476471, -0.3685077428817749, 0.6094152927398682, -0.28337451815605164, 0.3989482820034027, 0.7150189876556396, 0.3679662346839905, -0.11060072481632233, -0.6670098304748535, -0.32615795731544495, 0.054543208330869675, -0.20033851265907288, -0.014482232742011547, -0.13314087688922882, 0.0003111927071586251, 0.33395105600357056, 0.9495607614517212, -0.7225179076194763, 0.14566001296043396, -0.6297109723091125, -0.18209517002105713, 0.6919649839401245, 0.16705788671970367, 0.5466021299362183, -0.1635042130947113, -0.34429246187210083, -0.46951135993003845, -0.6643455028533936, 0.013012180104851723, 0.1625293642282486, -0.09102479368448257, -0.5878477692604065, 0.6371876001358032, -0.07521006464958191, 0.8578029274940491, -0.23410522937774658, 0.24183419346809387, 0.30957502126693726, -0.17875082790851593, -0.39283478260040283, -0.1875206083059311, 0.3880438506603241, 0.309648722410202, 0.10716260969638824, -0.1357523798942566, -0.09809619188308716, 0.11336511373519897, 0.4032244086265564, -1.1573024988174438, -0.8856201171875, 0.435669869184494, -0.672430694103241, -0.4240284264087677, 0.3168368339538574, -0.5804128050804138, -0.6256430149078369, -0.27049219608306885, -0.08253306895494461, -0.5386664867401123, -0.5291955471038818, -0.14844392240047455, -0.17572271823883057, 0.23577389121055603, 0.37882474064826965, -0.6972908973693848, 0.3188486695289612, 0.7060592174530029, 0.8487309217453003, 0.20785370469093323, -0.21023431420326233, -0.8266781568527222, -0.12339147180318832, -0.3319132924079895, 1.146787405014038, -0.3067481517791748, -0.24387459456920624, -0.11473104357719421, 0.3622930347919464, 0.2853776216506958, -0.47919583320617676, 0.37506479024887085, -0.3452363908290863, -0.013807294890284538, -0.33248353004455566, -0.5398498177528381, -0.43682849407196045, 0.3426453173160553, -1.2324362993240356, 1.4610488414764404, 0.5996329188346863, -0.8001235127449036, 0.21460190415382385, -0.8509288430213928, -0.20704138278961182, 0.22268934547901154, 0.06567509472370148, -0.2978644073009491, 0.37821072340011597, -0.25563904643058777, 0.3586324155330658, -0.18449755012989044, -0.37130725383758545, -0.6267514824867249, -0.17286916077136993, -0.3045754134654999, 0.5333613753318787, 1.071689486503601, 0.4488034248352051, 0.26459887623786926, 0.18657685816287994, -1.0191797018051147, -0.16362135112285614, 0.34566059708595276, -0.18266661465168, -0.8613277077674866, -0.2915489077568054, 0.16455835103988647, -0.02122666873037815, -0.002200382761657238, -0.6705253720283508, 0.3684033453464508, -0.04484351724386215, 0.1848827600479126, 0.8614131212234497, -0.06179320439696312, 0.37973442673683167, -0.4915229082107544, 0.7618306875228882, 0.13198427855968475, -0.11490890383720398, -0.44070035219192505, -0.4843631684780121, -0.4056384563446045, -0.11407601833343506, 0.43766993284225464, 0.5481033325195312, -0.46033594012260437, 0.3401007652282715, 0.23555514216423035, -0.799074113368988, -0.47115540504455566, -0.11423905938863754, 0.00464768847450614, 0.25724732875823975, 0.22554688155651093, -0.15275385975837708, -0.5760259628295898, -0.8184126019477844, 0.11424651741981506, -0.20278452336788177, -0.4587435722351074, 0.023948827758431435, 0.9295118451118469, -0.0978851392865181, 0.8488006591796875, -0.4905562400817871, -0.04906636103987694, 0.3563852608203888, 0.14509019255638123, 0.12368133664131165, 0.470200777053833, 0.9398956298828125, -0.7899492383003235, -0.4400056004524231, -0.012995813973248005, -0.59149569272995, -0.03171711787581444, 0.12339571863412857, -0.5924598574638367, 0.029014280065894127, 0.1664808988571167, -0.5238629579544067, 0.5738242268562317, 0.8539512753486633, -0.8680141568183899, 0.5321721434593201, -0.19386738538742065, -0.02108437567949295, -1.1907439231872559, 0.46035122871398926, 0.24676911532878876, -0.428890198469162, -0.3773798644542694, 0.4267413020133972, 0.08961440622806549, -0.04367832839488983, -0.6172850728034973, 0.8038316965103149, -0.5132701396942139, -0.3520045578479767, -0.05083051323890686, 0.042204681783914566, -0.025241807103157043, 0.16955244541168213, -0.4523995518684387, 0.452610045671463, 0.46473753452301025, -0.5216363668441772, 0.46839049458503723, 0.7366899251937866, -0.4739648103713989, 0.6638620495796204, -0.6407126188278198, 0.46114975214004517, -0.31446215510368347, 0.09325873851776123, -0.8532699346542358, -0.3632691502571106, -0.021420052275061607, -0.1722601354122162, 0.010521925985813141, 0.077341228723526, -0.4254487454891205, -0.5525906085968018, -0.6534163951873779, 0.22264036536216736, 0.4096197783946991, -0.8157984018325806, 0.5218707919120789, 0.7138944864273071, -0.2562171220779419, -0.5257084965705872, -0.4492049515247345, -0.2320416420698166, -0.3555143177509308, -0.5076369047164917, 0.45501983165740967, -0.5058573484420776, -0.48873820900917053, 0.38092470169067383, -0.025644665583968163, 0.04177382215857506, 0.3807830214500427, 0.7004727125167847, 0.09125557541847229, 0.12114980071783066, -0.0371374785900116, -0.33948269486427307, -0.39664915204048157, -0.0992727130651474, 0.2246473878622055, 0.6665811538696289, -0.45521658658981323, -0.26031091809272766, -0.04025651142001152, 0.3238644599914551, 0.5505191683769226, 0.10600264370441437, 0.8396628499031067, 0.6860300898551941, -0.7797657251358032, -0.2566725015640259, -0.14839895069599152, -0.40218955278396606, -0.4120112657546997, 0.2448231279850006, -0.5068743228912354, -0.8131809830665588, 0.8756545186042786, -0.028348401188850403, 0.30280789732933044, 0.7342250943183899, 0.42825570702552795, -0.3382754623889923, 0.7485967874526978, 1.0145405530929565, -0.5270755290985107, 0.28999388217926025, -0.4091881215572357, -0.04290134832262993, -0.8681778311729431, -0.11836542189121246, -0.745866596698761, -0.8034336566925049, -0.3233289420604706, -0.3196652829647064, 0.07951830327510834, 0.6287050843238831, -0.6843517422676086, 0.47864511609077454, -0.6961325407028198, 0.6174293160438538, 0.6908094882965088, 0.07832857966423035, 0.37094053626060486, 0.061102692037820816, 0.22630326449871063, 0.20317088067531586, -0.33557477593421936, -0.48061618208885193, 0.6490565538406372, 0.524989664554596, 0.8924823999404907, 0.04444243758916855, 0.6244243383407593, 0.4262738823890686, 0.4632939398288727, -0.6811368465423584, 0.5107862949371338, -0.442690372467041, -0.5258806347846985, -0.3018016517162323, -0.23226678371429443, -1.076200246810913, -0.015627630054950714, 0.18160800635814667, -0.6808111667633057, -0.037911925464868546, 0.3061915636062622, -0.6335099339485168, 0.5779138803482056, -0.28741875290870667, 1.0842633247375488, -0.01753547228872776, -0.00441203685477376, -0.2714109420776367, -0.4154139757156372, 0.3593081831932068, 0.10388560593128204, 0.05373355746269226, -0.1698683798313141, 0.01891399174928665, 0.9712972640991211, -0.528130829334259, 0.7804216146469116, -0.26868191361427307, -0.32704415917396545, 0.4569559693336487, 0.22750817239284515, 0.48011523485183716, -0.24272753298282623, 0.024781757965683937, 0.12266266345977783, 0.32520678639411926, -0.4858562648296356, 0.02454764023423195, 0.5123226046562195, -0.729231059551239, 0.1729748398065567, -0.3341827988624573, -0.4448128342628479, 0.35657769441604614, 0.2180466502904892, 0.127761572599411, 0.5933022499084473, -0.467040479183197, 0.7015793323516846, 0.6987730264663696, -0.6077466607093811, 0.2950282096862793, 0.5364950299263, -0.5316093564033508, -0.05564791336655617, 0.8479759097099304, 0.16509497165679932, -0.16028624773025513, 0.31730303168296814, 0.36192843317985535, -0.17709089815616608, -0.43842852115631104, -0.6301954388618469, 0.21445177495479584, -0.49908140301704407, -0.6079461574554443, -0.7965705990791321, -0.18348853290081024, -0.1943841576576233, -0.3930474519729614, -0.17602835595607758, -0.7905847430229187, -0.10858766734600067, -0.7210246324539185, 0.8421872854232788, 0.765000581741333, -0.353456050157547, 0.3934415876865387, -1.1789108514785767, 0.36811959743499756, 0.07543089985847473, 0.5870627760887146, -0.037755899131298065, -0.2236957550048828, -0.5008842349052429, -0.24012301862239838, -0.22322385013103485, -0.8364785313606262, 0.3790989816188812, 0.13004931807518005, 0.5776453018188477, 0.7412292957305908, 0.2848827838897705, 0.41218268871307373, -0.08057790249586105, 0.9528961181640625, 0.06322754174470901, -0.5386046767234802, 0.6167139410972595, -0.6294565200805664, 0.2490277886390686, 0.480103075504303, 0.5592676997184753, -0.6018209457397461, -0.11025768518447876, -0.9440661072731018, -0.9899006485939026, 0.6520107984542847, -0.24938859045505524, -0.22523605823516846, -0.0512896329164505, 0.16976886987686157, 0.3981468677520752, 0.02361946366727352, -0.3272092044353485, -0.23757591843605042, -0.010443388484418392, -0.3023029863834381, 0.25008347630500793, -0.3291046619415283, -0.3662675619125366, -0.18996666371822357, 0.7193909883499146, -0.21297918260097504, 0.3261549472808838, -0.32974007725715637, -0.40677884221076965, -0.4143371284008026, -0.325400710105896, 0.6039353013038635, 0.504675030708313, -0.5015393495559692, 0.06393199414014816, 0.01176154799759388, -0.39909350872039795, -0.13687534630298615, 0.07332703471183777, 0.032136522233486176, -0.33114632964134216, 0.409280002117157, 0.8856309652328491, 0.12916050851345062, -0.8031145930290222, 0.1631348431110382, 0.2919960618019104, -0.14457766711711884, -0.6311185359954834, -0.014009677805006504, 0.2944873571395874, 0.2524338960647583, 0.2705678343772888, -0.3431686460971832, 0.1662246435880661, -0.5698240995407104, 0.6483926177024841, 0.2254219353199005, -0.15946854650974274, -0.6317961812019348, 0.6628803610801697, 0.29527994990348816, -0.13891516625881195, 1.1317963600158691, -0.15748921036720276, -0.41433826088905334, 0.8550825715065002, 0.21457083523273468, 0.7150187492370605, -0.3829829692840576, 0.520990252494812, 0.6368112564086914, 0.16217666864395142, 0.06737537682056427, 0.4531165659427643, -0.029094165191054344, -0.7563571333885193, -0.4977613687515259, -0.7867608070373535, -0.6545423269271851, 0.27766239643096924, -0.8226632475852966, 0.31884509325027466, -0.552431583404541, 0.26095160841941833, -0.23131263256072998, -0.003305613063275814, -0.9452393054962158, 0.11495218425989151, 0.26538556814193726, 1.3910850286483765, -0.9906407594680786, 0.5695931911468506, 1.2411656379699707, -0.5631277561187744, -0.6718775629997253, -0.6634740829467773, 0.32596173882484436, -1.0257084369659424, 0.5335808396339417, 0.1555095613002777, 0.4272440969944, -0.0654270127415657, -0.6149064302444458, -0.6462487578392029, 1.1526036262512207, 0.05058117210865021, -0.495209276676178, -0.04026919975876808, -0.05173791944980621, 0.2853815257549286, -0.003017274895682931, 0.7004899382591248, 0.62884122133255, 0.5887538194656372, -0.015610462985932827, -0.8542700409889221, -0.0001625167642487213, -0.7009283304214478, -0.26290351152420044, 0.5350324511528015, -0.7957651615142822, 1.0511595010757446, -0.16437524557113647, 0.0031249229796230793, 0.03196743503212929, 0.5654380917549133, 0.3243754804134369, 0.22003184258937836, 0.9503978490829468, 1.339890956878662, 0.8330845236778259, -0.31170031428337097, 1.3896344900131226, -0.23510035872459412, 0.5722300410270691, 0.982576310634613, -0.04069679230451584, 0.6801546216011047, 0.12986810505390167, -0.5553476810455322, 0.5758486390113831, 1.0699213743209839, -0.07035942375659943, 0.5317714214324951, 0.33187755942344666, -0.016725018620491028, 0.1387711465358734, -0.0033929834607988596, -0.5835117697715759, 0.14775969088077545, 0.39164575934410095, -0.11843041330575943, -0.7319801449775696, 0.19663850963115692, 0.015819048509001732, -0.4207119047641754, -0.2358832061290741, 0.8155050277709961, 0.2868344485759735, -0.11549999564886093, 0.29230761528015137, -0.28581705689430237, 0.38812920451164246, -0.3758500814437866, -0.17866109311580658, -0.5037640333175659, 0.18848034739494324, -0.32173845171928406, -0.8752102851867676, 0.46534785628318787, -0.12577266991138458, -0.0886366218328476, -0.45499294996261597, 0.966722309589386, -0.21566106379032135, -0.3048839271068573, 0.32013601064682007, 0.46000370383262634, 0.49923035502433777, -0.40933308005332947, -0.6343374848365784, 0.033015795052051544, -0.09989238530397415, -1.054824709892273, 0.7023116946220398, 0.4895554482936859, -0.04325469210743904, 0.5665062069892883, 0.6654146313667297, -0.13365110754966736, -0.1569914072751999, 0.131065234541893, 0.9955129623413086, -1.0380915403366089, -0.734970211982727, -0.5016592741012573, 1.1519542932510376, -0.22372914850711823, -0.2900010943412781, 0.6911737322807312, 0.5471705794334412, 0.992240846157074, -0.24529574811458588, 0.5941608548164368, -0.5938159823417664, 0.9148058891296387, -0.09649339318275452, 0.596494197845459, -0.5084097385406494, -0.3353051245212555, -0.24963770806789398, -1.041853427886963, -0.23878605663776398, 1.0697518587112427, 0.3928312361240387, -0.1784779131412506, 0.6319532990455627, 0.48534682393074036, -0.05757774040102959, 0.35323062539100647, 0.2872132956981659, 0.3438277542591095, 0.40425416827201843, 0.3543047308921814, 0.9503902792930603, -0.18014714121818542, 0.15302543342113495, -0.7504973411560059, -0.42175039649009705, -0.27637535333633423, -1.0944554805755615, -0.8593433499336243, -0.434170663356781, -0.4929368495941162, -0.5759196877479553, -0.46645137667655945, 0.799655020236969, 0.8592410087585449, -1.1452404260635376, 0.008213921450078487, 0.12548790872097015, -0.18764731287956238, -0.36298829317092896, -0.2102801650762558, 0.6263571381568909, 0.2876306176185608, -0.8534724712371826, 0.35424676537513733, 0.1023082435131073, 0.0341305285692215, -0.43166887760162354, -0.09472614526748657, -0.0015271713491529226, -0.33953776955604553, 0.9196814298629761, 0.5232375860214233, -0.05401869863271713, -0.525252103805542, -0.02126927487552166, 0.259417861700058, -0.32770487666130066, 0.8172522187232971, -0.7692538499832153, -0.012524506077170372, 1.0304018259048462, 0.8152130246162415, 0.5874977707862854, 0.44546347856521606, 0.3053661286830902, -0.5507867932319641, 0.3393009901046753, 0.17035986483097076, 0.5824909806251526, 0.12264661490917206, -0.4009978175163269, 1.4222642183303833, 0.1293821483850479, -0.6726182103157043, -1.0402913093566895, 0.013081669807434082, -1.1932551860809326, -0.17404566705226898, 0.4086061418056488, 0.02820325642824173, -0.2909156382083893, 0.12352465093135834, -0.18093477189540863, 0.041809432208538055, -0.3938618004322052, 0.6951087713241577, 0.8901119828224182, -0.3298585116863251, -0.6531368494033813, -0.831419825553894, 0.3606560230255127, 0.31493470072746277, -1.1562434434890747, 0.007369638420641422, 0.5996477603912354, 0.07312940061092377, 0.3672671616077423, 0.6868327856063843, -0.10895197093486786, -0.2219955176115036, 0.0780157819390297, 0.2606770396232605, -0.3444981575012207, -0.5675350427627563, -0.06967390328645706, 0.28331321477890015, -0.26990845799446106, -0.3971792161464691 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
klue
null
2023-06-01T14:59:57Z
7,924
30
klue
[ "task_categories:fill-mask", "task_categories:question-answering", "task_categories:text-classification", "task_categories:text-generation", "task_categories:token-classification", "task_ids:extractive-qa", "task_ids:named-entity-recognition", "task_ids:natural-language-inference", "task_ids:parsing", "task_ids:semantic-similarity-scoring", "task_ids:text-scoring", "task_ids:topic-classification", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:ko", "license:cc-by-sa-4.0", "relation-extraction", "arxiv:2105.09680", "region:us" ]
2023-06-01T14:59:57Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - expert-generated language: - ko license: - cc-by-sa-4.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - fill-mask - question-answering - text-classification - text-generation - token-classification task_ids: - extractive-qa - named-entity-recognition - natural-language-inference - parsing - semantic-similarity-scoring - text-scoring - topic-classification paperswithcode_id: klue pretty_name: KLUE tags: - relation-extraction dataset_info: - config_name: ynat features: - name: guid dtype: string - name: title dtype: string - name: label dtype: class_label: names: '0': IT과학 '1': 경제 '2': 사회 '3': 생활문화 '4': 세계 '5': 스포츠 '6': 정치 - name: url dtype: string - name: date dtype: string splits: - name: train num_bytes: 10109664 num_examples: 45678 - name: validation num_bytes: 2039197 num_examples: 9107 download_size: 4932555 dataset_size: 12148861 - config_name: sts features: - name: guid dtype: string - name: source dtype: string - name: sentence1 dtype: string - name: sentence2 dtype: string - name: labels struct: - name: label dtype: float64 - name: real-label dtype: float64 - name: binary-label dtype: class_label: names: '0': negative '1': positive splits: - name: train num_bytes: 2832921 num_examples: 11668 - name: validation num_bytes: 122657 num_examples: 519 download_size: 1349875 dataset_size: 2955578 - config_name: nli features: - name: guid dtype: string - name: source dtype: string - name: premise dtype: string - name: hypothesis dtype: string - name: label dtype: class_label: names: '0': entailment '1': neutral '2': contradiction splits: - name: train num_bytes: 5719930 num_examples: 24998 - name: validation num_bytes: 673276 num_examples: 3000 download_size: 1257374 dataset_size: 6393206 - config_name: ner features: - name: sentence dtype: string - name: tokens sequence: string - name: ner_tags sequence: class_label: names: '0': B-DT '1': I-DT '2': B-LC '3': I-LC '4': B-OG '5': I-OG '6': B-PS '7': I-PS '8': B-QT '9': I-QT '10': B-TI '11': I-TI '12': O splits: - name: train num_bytes: 19891953 num_examples: 21008 - name: validation num_bytes: 4937579 num_examples: 5000 download_size: 4308644 dataset_size: 24829532 - config_name: re features: - name: guid dtype: string - name: sentence dtype: string - name: subject_entity struct: - name: word dtype: string - name: start_idx dtype: int32 - name: end_idx dtype: int32 - name: type dtype: string - name: object_entity struct: - name: word dtype: string - name: start_idx dtype: int32 - name: end_idx dtype: int32 - name: type dtype: string - name: label dtype: class_label: names: '0': no_relation '1': org:dissolved '2': org:founded '3': org:place_of_headquarters '4': org:alternate_names '5': org:member_of '6': org:members '7': org:political/religious_affiliation '8': org:product '9': org:founded_by '10': org:top_members/employees '11': org:number_of_employees/members '12': per:date_of_birth '13': per:date_of_death '14': per:place_of_birth '15': per:place_of_death '16': per:place_of_residence '17': per:origin '18': per:employee_of '19': per:schools_attended '20': per:alternate_names '21': per:parents '22': per:children '23': per:siblings '24': per:spouse '25': per:other_family '26': per:colleagues '27': per:product '28': per:religion '29': per:title - name: source dtype: string splits: - name: train num_bytes: 11145538 num_examples: 32470 - name: validation num_bytes: 2559300 num_examples: 7765 download_size: 5669259 dataset_size: 13704838 - config_name: dp features: - name: sentence dtype: string - name: index list: int32 - name: word_form list: string - name: lemma list: string - name: pos list: string - name: head list: int32 - name: deprel list: string splits: - name: train num_bytes: 7900009 num_examples: 10000 - name: validation num_bytes: 1557506 num_examples: 2000 download_size: 2033461 dataset_size: 9457515 - config_name: mrc features: - name: title dtype: string - name: context dtype: string - name: news_category dtype: string - name: source dtype: string - name: guid dtype: string - name: is_impossible dtype: bool - name: question_type dtype: int32 - name: question dtype: string - name: answers sequence: - name: answer_start dtype: int32 - name: text dtype: string splits: - name: train num_bytes: 46505665 num_examples: 17554 - name: validation num_bytes: 15583053 num_examples: 5841 download_size: 19218422 dataset_size: 62088718 - config_name: wos features: - name: guid dtype: string - name: domains list: string - name: dialogue list: - name: role dtype: string - name: text dtype: string - name: state list: string splits: - name: train num_bytes: 26677002 num_examples: 8000 - name: validation num_bytes: 3488943 num_examples: 1000 download_size: 4785657 dataset_size: 30165945 config_names: - dp - mrc - ner - nli - re - sts - wos - ynat --- # Dataset Card for KLUE ## 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://klue-benchmark.com/ - **Repository:** https://github.com/KLUE-benchmark/KLUE - **Paper:** [KLUE: Korean Language Understanding Evaluation](https://arxiv.org/abs/2105.09680) - **Leaderboard:** [Leaderboard](https://klue-benchmark.com/leaderboard) - **Point of Contact:** https://github.com/KLUE-benchmark/KLUE/issues ### Dataset Summary KLUE is a collection of 8 tasks to evaluate natural language understanding capability of Korean language models. We delibrately select the 8 tasks, which are Topic Classification, Semantic Textual Similarity, Natural Language Inference, Named Entity Recognition, Relation Extraction, Dependency Parsing, Machine Reading Comprehension, and Dialogue State Tracking. ### Supported Tasks and Leaderboards Topic Classification, Semantic Textual Similarity, Natural Language Inference, Named Entity Recognition, Relation Extraction, Dependency Parsing, Machine Reading Comprehension, and Dialogue State Tracking ### Languages `ko-KR` ## Dataset Structure ### Data Instances #### ynat An example of 'train' looks as follows. ``` {'date': '2016.06.30. 오전 10:36', 'guid': 'ynat-v1_train_00000', 'label': 3, 'title': '유튜브 내달 2일까지 크리에이터 지원 공간 운영', 'url': 'https://news.naver.com/main/read.nhn?mode=LS2D&mid=shm&sid1=105&sid2=227&oid=001&aid=0008508947'} ``` #### sts An example of 'train' looks as follows. ``` {'guid': 'klue-sts-v1_train_00000', 'labels': {'label': 3.7, 'real-label': 3.714285714285714, 'binary-label': 1}, 'sentence1': '숙소 위치는 찾기 쉽고 일반적인 한국의 반지하 숙소입니다.', 'sentence2': '숙박시설의 위치는 쉽게 찾을 수 있고 한국의 대표적인 반지하 숙박시설입니다.', 'source': 'airbnb-rtt'} ``` #### nli An example of 'train' looks as follows. ``` {'guid': 'klue-nli-v1_train_00000', 'hypothesis': '힛걸 진심 최고로 멋지다.', 'label': 0, 'premise': '힛걸 진심 최고다 그 어떤 히어로보다 멋지다', 'source': 'NSMC'} ``` #### ner An example of 'train' looks as follows. ``` {'tokens': ['특', '히', ' ', '영', '동', '고', '속', '도', '로', ' ', '강', '릉', ' ', '방', '향', ' ', '문', '막', '휴', '게', '소', '에', '서', ' ', '만', '종', '분', '기', '점', '까', '지', ' ', '5', '㎞', ' ', '구', '간', '에', '는', ' ', '승', '용', '차', ' ', '전', '용', ' ', '임', '시', ' ', '갓', '길', '차', '로', '제', '를', ' ', '운', '영', '하', '기', '로', ' ', '했', '다', '.'], 'ner_tags': [12, 12, 12, 2, 3, 3, 3, 3, 3, 12, 2, 3, 12, 12, 12, 12, 2, 3, 3, 3, 3, 12, 12, 12, 2, 3, 3, 3, 3, 12, 12, 12, 8, 9, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12], 'sentence': '특히 <영동고속도로:LC> <강릉:LC> 방향 <문막휴게소:LC>에서 <만종분기점:LC>까지 <5㎞:QT> 구간에는 승용차 전용 임시 갓길차로제를 운영하기로 했다.'} ``` #### re An example of 'train' looks as follows. ``` {'guid': 'klue-re-v1_train_00000', 'label': 0, 'object_entity': {'word': '조지 해리슨', 'start_idx': 13, 'end_idx': 18, 'type': 'PER'}, 'sentence': '〈Something〉는 조지 해리슨이 쓰고 비틀즈가 1969년 앨범 《Abbey Road》에 담은 노래다.', 'source': 'wikipedia', 'subject_entity': {'word': '비틀즈', 'start_idx': 24, 'end_idx': 26, 'type': 'ORG'}} ``` #### dp An example of 'train' looks as follows. ``` {'deprel': ['NP', 'NP_OBJ', 'VP', 'NP', 'NP_SBJ', 'NP', 'NP_MOD', 'NP_CNJ', 'NP_CNJ', 'NP', 'NP', 'NP_OBJ', 'AP', 'VP'], 'head': [2, 3, 14, 5, 14, 7, 10, 10, 10, 11, 12, 14, 14, 0], 'index': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], 'lemma': ['해당', '그림 을', '보 면', '디즈니', '공주 들 이', '브리트니', '스피어스 의', '앨범 이나', '뮤직 비디오 ,', '화보', '속', '모습 을', '똑같이', '재연 하 였 다 .'], 'pos': ['NNG', 'NNG+JKO', 'VV+EC', 'NNP', 'NNG+XSN+JKS', 'NNP', 'NNP+JKG', 'NNG+JC', 'NNG+NNG+SP', 'NNG', 'NNG', 'NNG+JKO', 'MAG', 'NNG+XSA+EP+EF+SF'], 'sentence': '해당 그림을 보면 디즈니 공주들이 브리트니 스피어스의 앨범이나 뮤직비디오, 화보 속 모습을 똑같이 재연했다.', 'word_form': ['해당', '그림을', '보면', '디즈니', '공주들이', '브리트니', '스피어스의', '앨범이나', '뮤직비디오,', '화보', '속', '모습을', '똑같이', '재연했다.']} ``` #### mrc An example of 'train' looks as follows. ``` {'answers': {'answer_start': [478, 478], 'text': ['한 달가량', '한 달']}, 'context': '올여름 장마가 17일 제주도에서 시작됐다. 서울 등 중부지방은 예년보다 사나흘 정도 늦은 이달 말께 장마가 시작될 전망이다.17일 기상청에 따르면 제주도 남쪽 먼바다에 있는 장마전선의 영향으로 이날 제주도 산간 및 내륙지역에 호우주의보가 내려지면서 곳곳에 100㎜에 육박하는 많은 비가 내렸다. 제주의 장마는 평년보다 2~3일, 지난해보다는 하루 일찍 시작됐다. 장마는 고온다습한 북태평양 기단과 한랭 습윤한 오호츠크해 기단이 만나 형성되는 장마전선에서 내리는 비를 뜻한다.장마전선은 18일 제주도 먼 남쪽 해상으로 내려갔다가 20일께 다시 북상해 전남 남해안까지 영향을 줄 것으로 보인다. 이에 따라 20~21일 남부지방에도 예년보다 사흘 정도 장마가 일찍 찾아올 전망이다. 그러나 장마전선을 밀어올리는 북태평양 고기압 세력이 약해 서울 등 중부지방은 평년보다 사나흘가량 늦은 이달 말부터 장마가 시작될 것이라는 게 기상청의 설명이다. 장마전선은 이후 한 달가량 한반도 중남부를 오르내리며 곳곳에 비를 뿌릴 전망이다. 최근 30년간 평균치에 따르면 중부지방의 장마 시작일은 6월24~25일이었으며 장마기간은 32일, 강수일수는 17.2일이었다.기상청은 올해 장마기간의 평균 강수량이 350~400㎜로 평년과 비슷하거나 적을 것으로 내다봤다. 브라질 월드컵 한국과 러시아의 경기가 열리는 18일 오전 서울은 대체로 구름이 많이 끼지만 비는 오지 않을 것으로 예상돼 거리 응원에는 지장이 없을 전망이다.', 'guid': 'klue-mrc-v1_train_12759', 'is_impossible': False, 'news_category': '종합', 'question': '북태평양 기단과 오호츠크해 기단이 만나 국내에 머무르는 기간은?', 'question_type': 1, 'source': 'hankyung', 'title': '제주도 장마 시작 … 중부는 이달 말부터'} ``` #### wos An example of 'train' looks as follows. ``` {'dialogue': [{'role': 'user', 'text': '쇼핑을 하려는데 서울 서쪽에 있을까요?', 'state': ['관광-종류-쇼핑', '관광-지역-서울 서쪽']}, {'role': 'sys', 'text': '서울 서쪽에 쇼핑이 가능한 곳이라면 노량진 수산물 도매시장이 있습니다.', 'state': []}, {'role': 'user', 'text': '오 네 거기 주소 좀 알려주세요.', 'state': ['관광-종류-쇼핑', '관광-지역-서울 서쪽', '관광-이름-노량진 수산물 도매시장']}, {'role': 'sys', 'text': '노량진 수산물 도매시장의 주소는 서울 동작구 93806입니다.', 'state': []}, {'role': 'user', 'text': '알려주시는김에 연락처랑 평점도 좀 알려주세요.', 'state': ['관광-종류-쇼핑', '관광-지역-서울 서쪽', '관광-이름-노량진 수산물 도매시장']}, {'role': 'sys', 'text': '그럼. 연락처는 6182006591이고 평점은 4점입니다.', 'state': []}, {'role': 'user', 'text': '와 감사합니다.', 'state': ['관광-종류-쇼핑', '관광-지역-서울 서쪽', '관광-이름-노량진 수산물 도매시장']}, {'role': 'sys', 'text': '감사합니다.', 'state': []}], 'domains': ['관광'], 'guid': 'wos-v1_train_00001'} ``` ### Data Fields #### ynat + `guid`: a `string` feature + `title`: a `string` feature + `label`: a classification label, with possible values `IT과학`(0), `경제`(1), `사회`(2), `생활문화`(3), `세계`(4), `스포츠`(5), `정치`(6) + `url`: a `string` feature + `date`: a `string` feature #### sts + `guid`: a `string` feature + `source`: a `string` feature + `sentence1`: a `string` feature + `sentence2`: a `string` feature + `labels`: a dictionary feature containing + `label`: a `float64` feature + `real-label`: a `float64` feature + `binary-label`: a classification label, with possible values `negative`(0), `positive`(1) #### nli + `guid`: a `string` feature + `source`: a `string` feature + `premise`: a `string` feature + `hypothesis`: a `string` feature + `label`: a classification label, with possible values `entailment`(0), `neutral`(1), `contradiction`(2) #### ner + `sentence`: a `string` feature + `tokens`: a list of a `string` feature (tokenization is at character level) + `ner_tags`: a list of classification labels, with possible values including `B-DT`(0), `I-DT`(1), `B-LC`(2), `I-LC`(3), `B-OG`(4), `I-OG`(5), `B-PS`(6), `I-PS`(7), `B-QT`(8), `I-QT`(9), `B-TI`(10), `I-TI`(11), `O`(12) #### re + `guid`: a `string` feature + `sentence`: a `string` feature + `subject_entity`: a dictionary feature containing + `word`: a `string` feature + `start_idx`: a `int32` feature + `end_idx`: a `int32` feature + `type`: a `string` feature + `object_entity`: a dictionary feature containing + `word`: a `string` feature + `start_idx`: a `int32` feature + `end_idx`: a `int32` feature + `type`: a `string` feature + `label`: a list of labels, with possible values including `no_relation`(0), `org:dissolved`(1), `org:founded`(2), `org:place_of_headquarters`(3), `org:alternate_names`(4), `org:member_of`(5), `org:members`(6), `org:political/religious_affiliation`(7), `org:product`(8), `org:founded_by`(9),`org:top_members/employees`(10), `org:number_of_employees/members`(11), `per:date_of_birth`(12), `per:date_of_death`(13), `per:place_of_birth`(14), `per:place_of_death`(15), `per:place_of_residence`(16), `per:origin`(17), `per:employee_of`(18), `per:schools_attended`(19), `per:alternate_names`(20), `per:parents`(21), `per:children`(22), `per:siblings`(23), `per:spouse`(24), `per:other_family`(25), `per:colleagues`(26), `per:product`(27), `per:religion`(28), `per:title`(29), + `source`: a `string` feature #### dp + `sentence`: a `string` feature + `index`: a list of `int32` feature + `word_form`: a list of `string` feature + `lemma`: a list of `string` feature + `pos`: a list of `string` feature + `head`: a list of `int32` feature + `deprel`: a list of `string` feature #### mrc + `title`: a `string` feature + `context`: a `string` feature + `news_category`: a `string` feature + `source`: a `string` feature + `guid`: a `string` feature + `is_impossible`: a `bool` feature + `question_type`: a `int32` feature + `question`: a `string` feature + `answers`: a dictionary feature containing + `answer_start`: a `int32` feature + `text`: a `string` feature #### wos + `guid`: a `string` feature + `domains`: a `string` feature + `dialogue`: a list of dictionary feature containing + `role`: a `string` feature + `text`: a `string` feature + `state`: a `string` feature ### Data Splits #### ynat You can see more details in [here](https://klue-benchmark.com/tasks/66/data/description). + train: 45,678 + validation: 9,107 #### sts You can see more details in [here](https://klue-benchmark.com/tasks/67/data/description). + train: 11,668 + validation: 519 #### nli You can see more details in [here](https://klue-benchmark.com/tasks/68/data/description). + train: 24,998 + validation: 3,000 #### ner You can see more details in [here](https://klue-benchmark.com/tasks/69/overview/description). + train: 21,008 + validation: 5,000 #### re You can see more details in [here](https://klue-benchmark.com/tasks/70/overview/description). + train: 32,470 + validation: 7,765 #### dp You can see more details in [here](https://klue-benchmark.com/tasks/71/data/description). + train: 10,000 + validation: 2,000 #### mrc You can see more details in [here](https://klue-benchmark.com/tasks/72/overview/description). + train: 17,554 + validation: 5,841 #### wos You can see more details in [here](https://klue-benchmark.com/tasks/73/overview/description). + train: 8,000 + validation: 1,000 ## Dataset Creation ### Curation Rationale [Needs More Information] ### Source Data #### Initial Data Collection and Normalization [Needs More Information] #### Who are the source language producers? [Needs More Information] ### Annotations #### Annotation process [Needs More Information] #### Who are the annotators? [Needs More Information] ### Personal and Sensitive Information [Needs More Information] ## Considerations for Using the Data ### Social Impact of Dataset [Needs More Information] ### Discussion of Biases [Needs More Information] ### Other Known Limitations [Needs More Information] ## Additional Information ### Dataset Curators [Needs More Information] ### Licensing Information [Needs More Information] ### Citation Information ``` @misc{park2021klue, title={KLUE: Korean Language Understanding Evaluation}, author={Sungjoon Park and Jihyung Moon and Sungdong Kim and Won Ik Cho and Jiyoon Han and Jangwon Park and Chisung Song and Junseong Kim and Yongsook Song and Taehwan Oh and Joohong Lee and Juhyun Oh and Sungwon Lyu and Younghoon Jeong and Inkwon Lee and Sangwoo Seo and Dongjun Lee and Hyunwoo Kim and Myeonghwa Lee and Seongbo Jang and Seungwon Do and Sunkyoung Kim and Kyungtae Lim and Jongwon Lee and Kyumin Park and Jamin Shin and Seonghyun Kim and Lucy Park and Alice Oh and Jungwoo Ha and Kyunghyun Cho}, year={2021}, eprint={2105.09680}, archivePrefix={arXiv}, primaryClass={cs.CL} } ``` ### Contributions Thanks to [@jungwhank](https://github.com/jungwhank), [@bzantium](https://github.com/bzantium) for adding this dataset.
[ -0.5574312210083008, -0.6559389233589172, 0.3911970555782318, 0.35070011019706726, -0.2663017809391022, 0.034288983792066574, -0.048710547387599945, -0.07666672021150589, 0.6265826225280762, 0.3093094229698181, -0.5824987292289734, -0.7577826976776123, -0.48885080218315125, 0.3462089002132416, -0.009224516339600086, 0.8070104718208313, -0.15823788940906525, -0.10363823175430298, 0.000736092624720186, -0.016107922419905663, -0.3639565706253052, -0.40323352813720703, -0.7223967909812927, -0.19814051687717438, 0.22046416997909546, 0.3073933720588684, 0.5078911781311035, 0.6393806338310242, 0.5442199110984802, 0.42352378368377686, -0.20755374431610107, 0.15559743344783783, -0.12524591386318207, -0.15806137025356293, 0.0072024790570139885, -0.6000401377677917, -0.32027125358581543, -0.05407547950744629, 0.6526333689689636, 0.8017147183418274, 0.1253374218940735, 0.2250697910785675, -0.03674646094441414, 0.8531751036643982, -0.25879356265068054, 0.2974175810813904, -0.24762269854545593, 0.13593140244483948, -0.14536316692829132, -0.2289501279592514, 0.18147695064544678, -0.5184507966041565, -0.09533151984214783, -0.8661990761756897, -0.036491408944129944, 0.23528003692626953, 1.5732561349868774, -0.0541469044983387, -0.3732195496559143, -0.26983949542045593, -0.3388724625110626, 0.9792987108230591, -0.9205957055091858, 0.2629563510417938, 0.644123375415802, 0.13310132920742035, -0.3742089569568634, -0.742412269115448, -0.7950839400291443, 0.009086539968848228, -0.6442315578460693, 0.46696749329566956, 0.11056257039308548, -0.34282660484313965, 0.28584444522857666, 0.24951326847076416, -0.6042883992195129, -0.018067434430122375, -0.4031805098056793, -0.18962176144123077, 0.8163247108459473, 0.2995544373989105, 0.639287531375885, -0.9633264541625977, -0.5388646721839905, -0.04237145930528641, -0.22921288013458252, 0.40903812646865845, 0.35596558451652527, 0.21309739351272583, -0.465034157037735, 0.7698789238929749, -0.608766496181488, 0.5790272355079651, 0.06579836457967758, -0.4097644090652466, 0.7057846784591675, -0.660707950592041, -0.3912172317504883, -0.06224219501018524, 1.3734537363052368, 0.7079837322235107, 0.0924038290977478, 0.055708423256874084, -0.07523959130048752, 0.11561473459005356, -0.13190802931785583, -0.6240545511245728, -0.3358078896999359, 0.45068809390068054, -0.657403290271759, -0.3796282410621643, 0.3261796236038208, -1.3139519691467285, -0.03935089334845543, -0.18322014808654785, 0.4033169746398926, -0.5307302474975586, -0.45375585556030273, 0.05765180289745331, -0.1875573843717575, 0.09619191288948059, 0.05449271947145462, -0.6814826726913452, 0.3724387288093567, 0.3047851324081421, 1.0054552555084229, 0.21303261816501617, -0.18629062175750732, 0.08689698576927185, 0.027415618300437927, -0.32901519536972046, 0.7876341342926025, -0.17343702912330627, -0.434070348739624, -0.07480458170175552, 0.3433234989643097, -0.5236356854438782, -0.1946960836648941, 0.6654599905014038, -0.08239474892616272, 0.3484298288822174, -0.21300463378429413, -0.47933951020240784, -0.1744949072599411, 0.45228058099746704, -0.7305951118469238, 1.4554882049560547, 0.20608441531658173, -1.2111423015594482, 0.4163198173046112, -0.8245671391487122, -0.4064817428588867, -0.006454717367887497, -0.19002112746238708, -0.5133448243141174, -0.4075557589530945, 0.527508020401001, 0.6094107031822205, -0.26741883158683777, -0.0504813976585865, -0.0025866308715194464, -0.21220748126506805, 0.2764480710029602, -0.05247615650296211, 1.205039381980896, 0.40962156653404236, -0.3618817925453186, 0.020280007272958755, -1.0948293209075928, 0.3106687068939209, 0.35830360651016235, -0.5743696689605713, -0.39147424697875977, -0.2327258139848709, 0.04013090953230858, 0.4773579239845276, 0.31095683574676514, -0.4312046766281128, 0.15504410862922668, -0.6972923874855042, 0.6095982193946838, 0.752881646156311, 0.2899819612503052, 0.47650012373924255, -0.5424100756645203, 0.5914874076843262, 0.1366572231054306, 0.023082681000232697, -0.0015161650953814387, -0.4014856517314911, -0.5987937450408936, -0.3373611867427826, 0.2609657049179077, 0.7820487022399902, -0.7834015488624573, 0.910466730594635, -0.4755886197090149, -0.7126283645629883, -0.7467095851898193, -0.17855265736579895, 0.15520593523979187, 0.7322909832000732, 0.3981703519821167, 0.1022871732711792, -0.930337131023407, -0.7564224600791931, -0.1852172166109085, -0.20258571207523346, 0.22221148014068604, 0.6143876314163208, 1.0214797258377075, -0.2719569802284241, 0.9040153622627258, -0.7299380302429199, -0.43568235635757446, -0.34773802757263184, -0.08129515498876572, 0.7568380236625671, 0.7026135921478271, 0.6440462470054626, -0.9680290818214417, -0.9248685240745544, 0.13011351227760315, -1.0039705038070679, 0.06614318490028381, -0.18861812353134155, -0.2343132048845291, 0.1808287352323532, 0.5743395686149597, -0.8332598209381104, 0.4386370778083801, 0.2749267518520355, -0.5756168961524963, 0.731174111366272, -0.4059082567691803, 0.4995931088924408, -1.465124249458313, 0.38622692227363586, 0.01587817445397377, 0.010412505827844143, -0.7839245796203613, -0.09583459794521332, -0.006797156762331724, 0.2095189243555069, -0.3567031919956207, 0.6701062321662903, -0.7425192594528198, 0.3472123146057129, 0.23398463428020477, 0.35960397124290466, 0.06946251541376114, 0.6130306720733643, -0.02676652930676937, 0.7800454497337341, 0.6234360933303833, -0.5315480828285217, 0.3425252437591553, 0.36581119894981384, -0.6213376522064209, 0.5615770220756531, -0.5981037020683289, -0.21283483505249023, -0.336072713136673, 0.1616605818271637, -1.3112753629684448, -0.4421848952770233, 0.5767499804496765, -0.5454962849617004, 0.14789848029613495, -0.16575197875499725, -0.30870407819747925, -0.8498973846435547, -0.5704421401023865, 0.06571172922849655, 0.19664724171161652, -0.19370102882385254, 0.47713756561279297, 0.3570416569709778, -0.07605768740177155, -0.800586998462677, -0.7915264964103699, 0.05433860048651695, -0.31077566742897034, -0.6127809882164001, 0.4824102520942688, -0.05810483545064926, -0.06268591433763504, 0.14000196754932404, -0.1403477042913437, -0.15845809876918793, 0.14431747794151306, 0.3105126917362213, 0.28934475779533386, -0.22243304550647736, -0.2536128759384155, -0.1951051652431488, -0.04126586765050888, -0.04248525947332382, -0.0367593914270401, 0.9401676058769226, 0.036952462047338486, -0.1385572850704193, -0.6853897571563721, 0.4009518325328827, 0.6506949067115784, -0.12748178839683533, 0.9626179933547974, 0.7494146227836609, -0.4368925988674164, 0.1819581836462021, -0.31906288862228394, 0.1460176259279251, -0.47195348143577576, 0.29900506138801575, -0.6735734343528748, -0.722469687461853, 0.8139966130256653, -0.13493816554546356, -0.36521536111831665, 0.8989251852035522, 0.4445730447769165, -0.37193918228149414, 1.066746711730957, 0.09842012822628021, -0.23183901607990265, 0.31958475708961487, -0.7870914936065674, 0.30198046565055847, -0.8369051814079285, -0.7192185521125793, -0.6284174919128418, -0.37802425026893616, -0.7707569003105164, -0.2842361032962799, 0.35983166098594666, 0.3783377408981323, -0.18074597418308258, 0.5021244883537292, -0.8024338483810425, 0.15272459387779236, 0.48770636320114136, 0.33771514892578125, -0.07373639196157455, -0.2783907353878021, -0.2799379527568817, -0.0064432197250425816, -0.7266526222229004, -0.5142689943313599, 1.0375717878341675, 0.22426077723503113, 0.5347535014152527, 0.164746955037117, 0.7537463307380676, 0.16717927157878876, -0.22296038269996643, -0.690688967704773, 0.748533308506012, 0.13120011985301971, -0.6279570460319519, -0.6161053776741028, -0.46639925241470337, -1.3190561532974243, 0.4671325981616974, -0.4426259398460388, -1.027534008026123, 0.21996237337589264, -0.15756046772003174, -0.34788408875465393, 0.3800188899040222, -0.7029520273208618, 1.0702075958251953, -0.22992736101150513, -0.24767719209194183, 0.1780763566493988, -0.8334198594093323, 0.24392461776733398, 0.09469205141067505, 0.4567529559135437, -0.20047245919704437, -0.03508275747299194, 0.9926156997680664, -0.7838855385780334, 0.5612990260124207, -0.19490905106067657, 0.08096057176589966, 0.5147386193275452, -0.1871107965707779, 0.7157467603683472, 0.20237772166728973, -0.034083250910043716, -0.0350881926715374, 0.08866849541664124, -0.3071030080318451, -0.48790213465690613, 0.8271782994270325, -0.7958875298500061, -0.4114775061607361, -0.5841604471206665, -0.26541292667388916, 0.1908288151025772, 0.6639549136161804, 0.5450055003166199, 0.4116237759590149, 0.10753966122865677, 0.23090918362140656, 0.45058053731918335, -0.3777620196342468, 0.554706335067749, 0.16561463475227356, -0.06256777793169022, -0.6765793561935425, 0.7567693591117859, 0.40011629462242126, 0.01928980089724064, 0.6140314340591431, 0.21099381148815155, -0.5847275257110596, -0.6191842555999756, -0.23581869900226593, 0.2893321216106415, -0.5131317377090454, -0.32106518745422363, -0.9895992279052734, -0.1309482902288437, -0.9260785579681396, -0.14792002737522125, -0.014722266234457493, -0.5370680093765259, -0.2848779857158661, -0.33818742632865906, 0.5922740697860718, 0.4953984022140503, -0.2516660690307617, 0.22598814964294434, -0.5880317687988281, 0.6294203996658325, 0.06686633825302124, 0.3953160047531128, -0.1044178158044815, -0.2872094213962555, -0.35055646300315857, 0.21466466784477234, -0.07630410045385361, -1.1933084726333618, 0.6612231135368347, -0.17388290166854858, 0.6879152059555054, 0.2561591565608978, -0.03446880728006363, 0.8866169452667236, -0.42611217498779297, 1.1018824577331543, 0.33971020579338074, -0.8179814219474792, 0.921548068523407, -0.555756688117981, 0.08788997679948807, 0.6393545269966125, 0.6151145100593567, -0.8527083396911621, -0.1791495829820633, -0.7615869641304016, -1.2150660753250122, 0.970827043056488, 0.2873513996601105, -0.1842798888683319, -0.2022695541381836, 0.1459198147058487, -0.4168700575828552, 0.17929045855998993, -0.7812238931655884, -0.8189592361450195, -0.45438820123672485, -0.47323694825172424, 0.13774432241916656, 0.03757937625050545, -0.13458678126335144, -0.49737343192100525, 0.7424426674842834, 0.1251242756843567, 0.5923541188240051, 0.6972640752792358, -0.02120376005768776, 0.17393547296524048, 0.3018646240234375, 0.613251268863678, 0.503517746925354, -0.34449610114097595, 0.12051279842853546, 0.37141379714012146, -0.722782552242279, 0.20420366525650024, -0.0285024493932724, -0.3054492771625519, 0.047624554485082626, 0.3475612699985504, 0.7958799004554749, 0.14698255062103271, -0.470554381608963, 0.5715582966804504, 0.14484523236751556, -0.48237714171409607, -0.49144574999809265, -0.06566890329122543, 0.10392943024635315, 0.07266543060541153, 0.36710596084594727, -0.04995213449001312, 0.004804263822734356, -0.5811163783073425, 0.16316168010234833, 0.30045247077941895, -0.27044904232025146, 0.0342571847140789, 0.7923148274421692, -0.19591087102890015, -0.30936184525489807, 0.265691876411438, -0.2659323215484619, -0.7389617562294006, 0.8196778297424316, 0.5114100575447083, 0.6550875902175903, -0.15535493195056915, 0.2792637348175049, 0.9306401610374451, 0.38401350378990173, -0.20381130278110504, 0.5479734539985657, 0.2634877860546112, -0.6685695052146912, -0.11395283788442612, -0.5885988473892212, 0.2269197404384613, 0.5012726783752441, -0.6320890188217163, 0.0553901344537735, -0.6169905066490173, -0.4094405174255371, -0.007563773076981306, 0.34444212913513184, -0.7668538093566895, 0.5808610916137695, -0.2854079008102417, 0.9478267431259155, -0.9967889785766602, 0.6753879189491272, 0.9698277115821838, -0.8106951117515564, -1.176986575126648, -0.09809549897909164, -0.32859575748443604, -0.6137681007385254, 0.7273289561271667, 0.08838287740945816, 0.3680294156074524, -0.09613105654716492, -0.5163314342498779, -1.052127480506897, 1.4810941219329834, -0.19210951030254364, -0.36290672421455383, 0.12673115730285645, 0.23360811173915863, 0.5324062705039978, -0.10156654566526413, 0.42715203762054443, 0.6680701375007629, 0.6969894766807556, -0.36209189891815186, -0.9349148869514465, 0.5233251452445984, -0.5936623811721802, -0.030895818024873734, 0.17175458371639252, -1.0726994276046753, 0.9689934253692627, 0.033212482929229736, -0.07442557066679001, -0.027536962181329727, 0.5940911769866943, 0.19824591279029846, 0.26559314131736755, 0.5440439581871033, 0.6962259411811829, 0.7965145707130432, -0.3623569905757904, 0.8834640979766846, -0.313513845205307, 0.5924798846244812, 0.6248824000358582, 0.1615789234638214, 0.6459804773330688, 0.4667200446128845, -0.5229937434196472, 0.5822736024856567, 0.4906178414821625, -0.35421425104141235, 0.7343080043792725, 0.153386652469635, -0.2568788230419159, 0.06242063641548157, 0.08927300572395325, -0.2794916033744812, 0.3678496778011322, 0.2875351905822754, -0.3163031041622162, 0.1377674639225006, -0.039500754326581955, 0.3699583411216736, 0.26443448662757874, -0.4115276038646698, 0.794335663318634, -0.14458753168582916, -0.6864074468612671, 0.5606974363327026, 0.1335018426179886, 0.8309863805770874, -0.6319503784179688, 0.08493310213088989, -0.08055412024259567, -0.03249841555953026, -0.49487224221229553, -1.137461543083191, 0.07507093250751495, -0.04980534687638283, -0.2932746112346649, -0.030292192474007607, 0.8423769474029541, -0.31739720702171326, -0.7739657163619995, 0.23246794939041138, 0.3548138439655304, 0.27690812945365906, 0.24681691825389862, -0.9183381199836731, -0.24996507167816162, 0.2825603485107422, -0.4316650331020355, 0.16330434381961823, 0.5870591998100281, 0.14530491828918457, 0.7069106698036194, 0.8072958588600159, 0.3981097638607025, 0.29306572675704956, -0.11610733717679977, 0.8140533566474915, -0.9620143175125122, -0.6613333821296692, -0.8426262736320496, 0.7375003695487976, -0.46925875544548035, -0.48333537578582764, 0.9417402148246765, 0.805870771408081, 0.7460031509399414, -0.08185603469610214, 1.1981371641159058, -0.5552854537963867, 0.6978522539138794, -0.5611727237701416, 0.8458934426307678, -0.6915295124053955, -0.08118890970945358, -0.5103570222854614, -0.44095245003700256, -0.3478127121925354, 1.0430759191513062, -0.25662288069725037, 0.07896417379379272, 0.7039928436279297, 0.9998681545257568, 0.13420075178146362, -0.10809936374425888, -0.06834674626588821, 0.4089551270008087, 0.1622851938009262, 0.7864490151405334, 0.5247170329093933, -0.9526218175888062, 0.631069540977478, -0.5800604224205017, -0.014939478598535061, -0.2808472514152527, -0.7682061791419983, -0.9831142425537109, -0.5901175141334534, -0.3929629325866699, -0.4061766564846039, -0.2778668701648712, 1.082550287246704, 0.45449119806289673, -0.892146110534668, -0.10833299905061722, -0.13627749681472778, 0.13937385380268097, -0.5568896532058716, -0.3733687698841095, 0.9901341199874878, -0.15066032111644745, -0.7735838890075684, 0.2187972217798233, -0.10743604600429535, 0.1498018056154251, 0.26520127058029175, -0.07975628972053528, -0.7736931443214417, -0.038520365953445435, 0.5598142147064209, 0.21673960983753204, -0.537312924861908, -0.29751598834991455, 0.06882382184267044, -0.40688377618789673, 0.15123988687992096, 0.32244873046875, -0.5324090123176575, 0.21238452196121216, 0.8695021271705627, 0.2395302802324295, 0.651472806930542, 0.15233048796653748, 0.06382738053798676, -0.6530317664146423, 0.15934611856937408, -0.061965908855199814, 0.49124011397361755, 0.06681204587221146, -0.4675525426864624, 0.7830004692077637, 0.5587804317474365, -0.5456366539001465, -0.8782214522361755, -0.3180348575115204, -1.269134521484375, -0.4234204590320587, 1.1708178520202637, -0.1704566776752472, -0.45025065541267395, -0.2898932993412018, -0.5166223049163818, 0.45666736364364624, -0.4259088337421417, 0.6596264243125916, 0.6461687088012695, -0.039181966334581375, 0.06420817226171494, -0.7353253364562988, 0.47157126665115356, 0.22975695133209229, -0.8681374788284302, -0.36683371663093567, 0.09651917219161987, 0.36495476961135864, 0.30867332220077515, 1.1026670932769775, -0.07988596707582474, -0.034182820469141006, 0.07796768099069595, -0.015675736591219902, 0.10055015981197357, 0.05716303735971451, -0.06141790747642517, 0.11332143843173981, -0.47578850388526917, -0.47359439730644226 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nateraw/parti-prompts
nateraw
2022-06-22T19:17:49Z
7,858
15
null
[ "license:apache-2.0", "region:us" ]
2022-06-22T19:17:49Z
2022-06-22T17:48:47.000Z
2022-06-22T17:48:47
--- license: apache-2.0 --- # Dataset Card for PartiPrompts (P2) ## 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://parti.research.google/ - **Repository:** https://github.com/google-research/parti - **Paper:** https://gweb-research-parti.web.app/parti_paper.pdf ### Dataset Summary PartiPrompts (P2) is a rich set of over 1600 prompts in English that we release as part of this work. P2 can be used to measure model capabilities across various categories and challenge aspects. ![parti-prompts](https://github.com/google-research/parti/blob/main/images/parti-prompts.png?raw=true) P2 prompts can be simple, allowing us to gauge the progress from scaling. They can also be complex, such as the following 67-word description we created for Vincent van Gogh’s *The Starry Night* (1889): *Oil-on-canvas painting of a blue night sky with roiling energy. A fuzzy and bright yellow crescent moon shining at the top. Below the exploding yellow stars and radiating swirls of blue, a distant village sits quietly on the right. Connecting earth and sky is a flame-like cypress tree with curling and swaying branches on the left. A church spire rises as a beacon over rolling blue hills.* ### Supported Tasks and Leaderboards [More Information Needed] ### Languages The text descriptions are in English. ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields [More Information Needed] ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information The license for this dataset is the apache-2.0 license. ### Citation Information [More Information Needed] ### Contributions Thanks to [@nateraw](https://github.com/nateraw) for adding this dataset.
[ -0.3869019150733948, -0.4394473135471344, 0.2641042470932007, 0.33221569657325745, -0.3958045542240143, -0.11873187869787216, -0.31778228282928467, -0.47931039333343506, 0.4938993453979492, 0.6275668144226074, -0.9417751431465149, -0.7287262678146362, -0.7055824398994446, 0.10275135189294815, -0.03904558718204498, 1.1985762119293213, -0.106856569647789, -0.06261332333087921, -0.1616545021533966, -0.0546562485396862, -0.5651906132698059, -0.33111509680747986, -0.5457560420036316, -0.23102997243404388, 0.5187822580337524, 0.8698058724403381, 0.655832052230835, 0.6055347919464111, 0.5087483525276184, 0.20518361032009125, 0.037518542259931564, 0.031528107821941376, -0.578263521194458, 0.033021993935108185, -0.23851706087589264, -0.42826417088508606, -0.5184319019317627, 0.18888898193836212, 0.5360612869262695, 0.6738278865814209, 0.19643500447273254, 0.640346109867096, 0.2778947055339813, 0.5402640104293823, -0.5060625076293945, 0.8593030571937561, -0.06893488764762878, 0.07117193192243576, -0.2854480445384979, -0.018145179376006126, -0.14480389654636383, -0.40062132477760315, -0.05689924582839012, -0.7976959943771362, 0.2674993574619293, -0.05891644209623337, 0.7787265777587891, 0.029974516481161118, -0.31492796540260315, -0.41480767726898193, -0.4588395059108734, 0.7664749622344971, -0.47205105423927307, -0.023390555754303932, 0.8486452698707581, 0.3485938012599945, -0.086808942258358, -1.0427926778793335, -0.7383281588554382, 0.3098379075527191, -0.16893936693668365, 0.3529587686061859, -0.06393729150295258, -0.26156479120254517, 0.4384652078151703, 0.3762352466583252, -0.47103941440582275, -0.05776333808898926, -0.6341634392738342, -0.4042552411556244, 0.8076040148735046, 0.4245668053627014, 0.2721475064754486, -0.6546311974525452, -0.31882208585739136, -0.4392763376235962, -0.6091440320014954, 0.396843820810318, 0.5429138541221619, 0.4653487801551819, -0.6220951080322266, 0.9686793088912964, -0.048424310982227325, 0.48792222142219543, -0.004163480829447508, -0.1614050418138504, 0.4020157754421234, -0.7490357160568237, 0.2768225073814392, -0.18777714669704437, 0.8143864274024963, 0.8880850672721863, -0.0849677249789238, 0.12979167699813843, 0.011699462309479713, -0.10098585486412048, -0.15385304391384125, -0.9101299047470093, -0.5665568113327026, 0.5027658343315125, -0.720711886882782, -0.12255662679672241, 0.28002259135246277, -1.023022174835205, -0.5059638023376465, -0.50697261095047, 0.2022482454776764, -0.35104694962501526, -0.37922102212905884, -0.09702128171920776, -0.36400866508483887, 0.3573217988014221, 0.20534710586071014, -0.7606571912765503, 0.21547195315361023, 0.9566283226013184, 0.8229833245277405, -0.05092582851648331, -0.3454733192920685, -0.047205016016960144, 0.05465024709701538, -0.14374107122421265, 0.6650353670120239, -0.4198446571826935, -0.5636888742446899, 0.060358304530382156, 0.6099393367767334, 0.0646715760231018, -0.29219838976860046, 0.9919586777687073, -0.09147704392671585, 0.6784276366233826, -0.8447762727737427, -0.4453084170818329, -0.22946761548519135, 0.07473141700029373, -0.7322739362716675, 1.086222529411316, 0.2700576186180115, -0.8895089030265808, 0.4526629149913788, -0.7483553290367126, -0.48652687668800354, 0.14621511101722717, -0.13257050514221191, -0.45776575803756714, -0.2121633142232895, 0.12014468759298325, 0.5968462824821472, -0.48916128277778625, -0.003399062668904662, -0.05640259385108948, -0.17022688686847687, 0.0859479233622551, 0.023429106920957565, 1.2108304500579834, 0.27129122614860535, -0.3359769284725189, 0.13168856501579285, -0.7551121711730957, -0.1373734027147293, 0.33779528737068176, -0.04418497532606125, -0.03784346953034401, 0.06672364473342896, 0.44346269965171814, 0.21944217383861542, 0.5633034706115723, -0.5221678614616394, 0.10595516860485077, -0.019490616396069527, 0.5122222304344177, 0.6021828055381775, 0.20546391606330872, 0.3754059076309204, -0.4375975728034973, 0.6452048420906067, -0.03215249627828598, 0.4812484681606293, -0.06906718760728836, -0.8396957516670227, -0.7288035154342651, -0.3566415309906006, 0.08028813451528549, 0.6913303136825562, -0.8076959252357483, 0.8365373015403748, -0.19021466374397278, -0.7088545560836792, -0.29048559069633484, -0.06559408456087112, 0.40016835927963257, 0.6045092940330505, 0.2719643712043762, -0.40862056612968445, -0.6986560821533203, -0.7661259770393372, 0.43830519914627075, -0.3510318398475647, -0.16530883312225342, 0.48773956298828125, 0.7912911176681519, 0.052537981420755386, 0.7616704106330872, -0.7030476331710815, -0.19267988204956055, -0.38580504059791565, 0.09134071320295334, 0.3297448754310608, 0.565863311290741, 0.43243080377578735, -0.8353134989738464, -0.37046366930007935, -0.5746502876281738, -0.7403630018234253, -0.13826262950897217, -0.002050663810223341, -0.2810831367969513, -0.1312110275030136, 0.006634823977947235, -0.479918509721756, 0.26834535598754883, 0.5822855234146118, -0.880864679813385, 0.6410089731216431, -0.017796244472265244, 0.22258023917675018, -1.4436297416687012, 0.27111077308654785, 0.07965079694986343, 0.07415737956762314, -0.5088617205619812, -0.1083189845085144, -0.04710857570171356, -0.27533799409866333, -0.4154317378997803, 0.5781572461128235, -0.4452623724937439, 0.0710521787405014, -0.14017730951309204, 0.031215721741318703, 0.1093168780207634, 0.35755109786987305, 0.021459247916936874, 0.7492373585700989, 0.7552602291107178, -0.38411790132522583, 0.4266321361064911, 0.4945819079875946, -0.4732849895954132, 0.7597836852073669, -0.9021186232566833, 0.048390600830316544, -0.20132049918174744, 0.431199312210083, -1.1418323516845703, -0.5947757363319397, 0.6862630248069763, -0.561285674571991, 0.19673380255699158, -0.1724599450826645, -0.8088052272796631, -0.4752879738807678, -0.5751149654388428, 0.29046371579170227, 0.5176281929016113, -0.28035348653793335, 0.28200891613960266, 0.6341367363929749, -0.28817111253738403, -0.28316211700439453, -0.6582304239273071, 0.18101812899112701, -0.1862577348947525, -0.7128065228462219, 0.5142630934715271, -0.01721270941197872, 0.01685427315533161, -0.04390130937099457, 0.38511398434638977, -0.019011756405234337, -0.17487789690494537, 0.5962045788764954, 0.24444124102592468, 0.019725041463971138, -0.130122572183609, -0.109093077480793, -0.28920236229896545, 0.0919472724199295, -0.06425710022449493, 0.6502247452735901, 0.18434970080852509, -0.22202621400356293, -0.6573140621185303, 0.4470915198326111, 0.34220895171165466, -0.1638234406709671, 0.5445858836174011, 0.9643307328224182, -0.41334623098373413, 0.07024931162595749, -0.32387372851371765, -0.3651353716850281, -0.40459775924682617, 0.2583399713039398, -0.18039348721504211, -0.7288165092468262, 1.015656590461731, 0.2825471758842468, 0.07226385176181793, 0.6316899061203003, 0.6010600328445435, -0.09160856902599335, 0.7496851086616516, 0.4249809682369232, 0.023567533120512962, 0.7001544833183289, -0.7072687149047852, -0.03560277447104454, -1.029489278793335, -0.6031336784362793, -0.5508617758750916, -0.5472611784934998, -0.8396037817001343, -0.8666977286338806, 0.13442496955394745, 0.1851392537355423, -0.3265915811061859, 0.5877269506454468, -0.6756999492645264, 0.393639475107193, 0.8810186386108398, 0.3226436674594879, -0.16721375286579132, -0.027019120752811432, 0.32278093695640564, -0.24285797774791718, -0.4792497754096985, -0.6277295351028442, 1.2754366397857666, 0.39793142676353455, 0.33704447746276855, 0.10403674840927124, 0.5597601532936096, 0.22164876759052277, -0.18553198873996735, -0.4817856550216675, 0.7370216846466064, -0.22986675798892975, -0.7129963040351868, -0.29658961296081543, -0.19420510530471802, -1.0825632810592651, -0.0889362245798111, -0.26524823904037476, -0.8132771849632263, 0.6144563555717468, -0.043269604444503784, -0.3393661081790924, 0.11952681094408035, -0.7311450242996216, 1.0134170055389404, -0.08868120610713959, -0.5022408366203308, -0.031233971938490868, -0.962664008140564, 0.007258465979248285, 0.3592929542064667, 0.10131298005580902, -0.2691936492919922, -0.1606644243001938, 1.1866440773010254, -0.5378758907318115, 1.1595300436019897, -0.5159138441085815, 0.2095373123884201, 0.6652157306671143, -0.16886354982852936, 0.6091087460517883, 0.08634284883737564, -0.03723927214741707, 0.3443257212638855, -0.0070893531665205956, -0.5430225729942322, -0.4019175171852112, 0.6011788845062256, -0.8604971170425415, -0.09895411878824234, -0.4315073788166046, -0.5330880880355835, 0.12356434762477875, 0.15366756916046143, 0.34141895174980164, 0.3584647476673126, 0.15277406573295593, 0.20656856894493103, 0.3399967849254608, -0.25632885098457336, 0.27923786640167236, 0.37124308943748474, -0.11500701308250427, -0.8469710350036621, 0.936156153678894, 0.332394540309906, -0.0001257609692402184, 0.10440812259912491, 0.17083463072776794, -0.5338760018348694, -0.3704904317855835, -0.32502180337905884, 0.27563485503196716, -0.6104654669761658, -0.02426946349442005, -0.2646123766899109, 0.09252926707267761, -0.5811588168144226, -0.04519227519631386, -0.09069200605154037, -0.7871579527854919, -0.5941262245178223, -0.30798637866973877, 0.5164712071418762, 0.4406743049621582, -0.45813891291618347, 0.20381522178649902, -0.3946762979030609, 0.25355857610702515, 0.20125888288021088, 0.2519710063934326, -0.11987011134624481, -0.4226974844932556, -0.21230410039424896, -0.0030696915928274393, -0.3036181926727295, -0.8345209360122681, 0.1697833240032196, 0.015524852089583874, 0.5332692265510559, 0.3016825318336487, 0.1874815970659256, 0.5143437385559082, -0.16918444633483887, 1.451239824295044, 0.4216964840888977, -0.5110284686088562, 0.7051121592521667, -0.5333213806152344, 0.12933708727359772, 0.872774600982666, 0.4174599349498749, -0.5264828205108643, -0.10480855405330658, -0.6567274928092957, -1.2538262605667114, 0.7982529401779175, 0.30140799283981323, 0.18818064033985138, -0.06260855495929718, 0.39714428782463074, 0.13420835137367249, 0.15400049090385437, -0.7360260486602783, -0.6236048340797424, -0.4582657217979431, -0.36021798849105835, -0.14479421079158783, -0.4582584500312805, -0.32699328660964966, -0.46907714009284973, 0.5724400877952576, 0.046387962996959686, 0.4805597960948944, 0.1648591011762619, 0.26956892013549805, -0.08257942646741867, -0.04754689335823059, 0.47714921832084656, 0.7180103063583374, -0.2357199788093567, 0.07151097804307938, -0.2458551526069641, -0.6953697204589844, -0.07131628692150116, 0.355838418006897, -0.3878360986709595, -0.1974717676639557, 0.6126945614814758, 0.933719277381897, 0.09104283154010773, -0.3642023801803589, 0.6459789276123047, 0.0273127481341362, -0.09827485680580139, -0.6679546236991882, -0.008206168189644814, -0.11088050901889801, 0.4628819227218628, 0.4086020588874817, -0.2902628183364868, 0.13115249574184418, -0.6498064398765564, 0.20517121255397797, 0.05150065943598747, -0.4722166657447815, -0.5808698534965515, 0.655573844909668, 0.19576705992221832, -0.4213005602359772, 0.48476481437683105, -0.3917349874973297, -0.4300817847251892, 0.7508774995803833, 0.42839112877845764, 0.8127143383026123, 0.18167920410633087, 0.5769535899162292, 0.8088241815567017, 0.2929340600967407, 0.026319125667214394, 0.8571781516075134, -0.13562993705272675, -0.4833850860595703, -0.32299256324768066, -0.44842517375946045, -0.4704148769378662, 0.027629513293504715, -0.7624245882034302, 0.4389224350452423, -0.5410037636756897, -0.2747739553451538, -0.13326549530029297, 0.30063965916633606, -0.7008572816848755, 0.14623752236366272, 0.04921264573931694, 0.7625513076782227, -1.0654634237289429, 0.5325164198875427, 0.790005624294281, -0.9019460082054138, -0.8500205278396606, -0.07783018052577972, 0.20698900520801544, -0.7302715182304382, 0.48179468512535095, 0.04516265541315079, 0.5387376546859741, -0.24243471026420593, -0.6489497423171997, -0.7430990934371948, 1.4779211282730103, 0.05609194189310074, -0.27523577213287354, 0.19903284311294556, 0.45479580760002136, 0.6386502385139465, -0.3459987938404083, 0.31245407462120056, 0.37212616205215454, 0.6655965447425842, 0.3216557502746582, -0.7274437546730042, 0.32939255237579346, -0.30633023381233215, -0.12911835312843323, -0.024139588698744774, -0.7607019543647766, 1.0394929647445679, -0.1265127807855606, -0.2786934971809387, -0.05324304476380348, 0.6131797432899475, 0.3220628798007965, 0.513713538646698, 0.49521541595458984, 0.5730271935462952, 0.6533682942390442, -0.3648141622543335, 1.0804800987243652, -0.623909592628479, 0.4454701542854309, 1.2552345991134644, -0.08280076086521149, 0.8225185871124268, 0.4304087162017822, -0.4838744103908539, 0.4401800334453583, 0.8511532545089722, -0.30068686604499817, 0.589471161365509, 0.06837048381567001, -0.15803715586662292, -0.07090774923563004, -0.4147535264492035, -0.497864693403244, 0.44086968898773193, 0.24346913397312164, -0.5184769630432129, 0.012299802154302597, -0.007141430396586657, 0.3271545171737671, -0.10960660129785538, -0.3008609116077423, 0.757768452167511, -0.06934786587953568, -0.6450076103210449, 0.1496727466583252, -0.11531783640384674, 0.4654453992843628, -0.6055011749267578, -0.12119366228580475, -0.19897928833961487, 0.003735251957550645, -0.39117008447647095, -1.3335869312286377, 0.27215608954429626, -0.08529232442378998, -0.45580220222473145, -0.28783145546913147, 0.5844313502311707, -0.3729017376899719, -0.8743672370910645, 0.11409194022417068, 0.11750029772520065, 0.24579472839832306, 0.14712440967559814, -0.8331366777420044, 0.09935645759105682, 0.0838322564959526, -0.18589743971824646, 0.17395144701004028, 0.5550493597984314, 0.060497406870126724, 0.2474384903907776, 0.6174163818359375, 0.19017067551612854, -0.06117413938045502, 0.22108101844787598, 0.7362439036369324, -0.618290901184082, -0.4400137662887573, -0.4189533293247223, 0.9032731652259827, -0.38489457964897156, -0.5929141640663147, 0.9675811529159546, 0.8578022718429565, 0.8657826781272888, 0.07576705515384674, 0.7696449160575867, -0.653076171875, 0.7084797620773315, -0.32831278443336487, 0.6058761477470398, -0.3697666823863983, -0.07308189570903778, -0.40939199924468994, -0.8355376124382019, -0.35696718096733093, 0.6517344117164612, -0.4382554292678833, -0.18152602016925812, 0.4030593931674957, 0.9028762578964233, 0.12247259169816971, 0.17778605222702026, -0.09877198189496994, 0.22145533561706543, 0.3042786121368408, 0.46622711420059204, 0.5791018009185791, -0.7059149742126465, 0.4174557328224182, -0.7473602890968323, -0.37625595927238464, -0.07606551796197891, -0.8422589302062988, -0.7360443472862244, -1.0425851345062256, -0.5791918039321899, -0.5683497190475464, -0.11128251254558563, 0.9072467684745789, 0.5711473226547241, -1.070994257926941, -0.38743144273757935, 0.07944086939096451, 0.05376163497567177, -0.17257869243621826, -0.2642033100128174, 0.6982584595680237, 0.2217884212732315, -0.6723749041557312, -0.08558856695890427, -0.013044537045061588, -0.0057792360894382, -0.293508917093277, -0.17724041640758514, -0.05325007438659668, -0.2901397943496704, 0.7106040716171265, 0.2845441401004791, -0.5273615717887878, -0.37717241048812866, -0.15679453313350677, 0.1802738904953003, -0.09378555417060852, 0.683649480342865, -0.12864576280117035, 0.5064894556999207, 0.826549768447876, -0.08862323313951492, 0.4783010184764862, 0.08209384977817535, 0.14289703965187073, -0.5831522345542908, 0.3085094392299652, 0.28868764638900757, 0.5223849415779114, 0.36844202876091003, -0.2742004096508026, 0.7156322598457336, 0.4252288043498993, -0.6740614175796509, -0.6791821122169495, 0.07154339551925659, -1.2583098411560059, -0.055603720247745514, 1.4269378185272217, -0.28217196464538574, -0.1886887103319168, -0.21370892226696014, -0.46339789032936096, 0.35272595286369324, -0.5480402708053589, 0.6277161240577698, 0.8104183673858643, -0.18896611034870148, -0.14899761974811554, -0.42789968848228455, 0.3740657567977905, -0.0506594255566597, -0.7916352152824402, 0.06504335254430771, 0.811471164226532, 0.20917022228240967, 0.35272279381752014, 0.5937080383300781, -0.31327900290489197, 0.1263597458600998, 0.11139898747205734, 0.2414878010749817, -0.18424388766288757, -0.29240983724594116, -0.00037625397089868784, 0.33620667457580566, -0.08572404086589813, -0.3872329592704773 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
GEM/opusparcus
GEM
2022-10-24T15:30:22Z
7,840
1
null
[ "task_categories:other", "annotations_creators:expert-created", "language_creators:unknown", "multilinguality:unknown", "size_categories:unknown", "source_datasets:original", "language:de", "language:en", "language:fi", "language:fr", "language:ru", "language:sv", "license:cc-by-nc-4.0", "paraphrasing", "region:us" ]
2022-10-24T15:30:22Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-created language_creators: - unknown language: - de - en - fi - fr - ru - sv license: - cc-by-nc-4.0 multilinguality: - unknown size_categories: - unknown source_datasets: - original task_categories: - other task_ids: [] pretty_name: opusparcus tags: - paraphrasing --- # Dataset Card for GEM/opusparcus ## Dataset Description - **Homepage:** http://urn.fi/urn:nbn:fi:lb-2018021221 - **Repository:** http://urn.fi/urn:nbn:fi:lb-2018021221 - **Paper:** http://www.lrec-conf.org/proceedings/lrec2018/pdf/131.pdf - **Leaderboard:** N/A - **Point of Contact:** Mathias Creutz ### Link to Main Data Card You can find the main data card on the [GEM Website](https://gem-benchmark.com/data_cards/opusparcus). ### Dataset Summary Opusparcus is a paraphrase corpus for six European language: German, English, Finnish, French, Russian, and Swedish. The paraphrases consist of subtitles from movies and TV shows. You can load the dataset via: ``` import datasets data = datasets.load_dataset('GEM/opusparcus') ``` The data loader can be found [here](https://huggingface.co/datasets/GEM/opusparcus). #### website [Website](http://urn.fi/urn:nbn:fi:lb-2018021221) #### paper [LREC](http://www.lrec-conf.org/proceedings/lrec2018/pdf/131.pdf) ## Dataset Overview ### Where to find the Data and its Documentation #### Webpage <!-- info: What is the webpage for the dataset (if it exists)? --> <!-- scope: telescope --> [Website](http://urn.fi/urn:nbn:fi:lb-2018021221) #### Download <!-- info: What is the link to where the original dataset is hosted? --> <!-- scope: telescope --> [Website](http://urn.fi/urn:nbn:fi:lb-2018021221) #### Paper <!-- info: What is the link to the paper describing the dataset (open access preferred)? --> <!-- scope: telescope --> [LREC](http://www.lrec-conf.org/proceedings/lrec2018/pdf/131.pdf) #### BibTex <!-- info: Provide the BibTex-formatted reference for the dataset. Please use the correct published version (ACL anthology, etc.) instead of google scholar created Bibtex. --> <!-- scope: microscope --> ``` @InProceedings{creutz:lrec2018, title = {Open Subtitles Paraphrase Corpus for Six Languages}, author={Mathias Creutz}, booktitle={Proceedings of the 11th edition of the Language Resources and Evaluation Conference (LREC 2018)}, year={2018}, month = {May 7-12}, address = {Miyazaki, Japan}, editor = {Nicoletta Calzolari (Conference chair) and Khalid Choukri and Christopher Cieri and Thierry Declerck and Sara Goggi and Koiti Hasida and Hitoshi Isahara and Bente Maegaard and Joseph Mariani and Hélène Mazo and Asuncion Moreno and Jan Odijk and Stelios Piperidis and Takenobu Tokunaga}, publisher = {European Language Resources Association (ELRA)}, isbn = {979-10-95546-00-9}, language = {english}, url={http://www.lrec-conf.org/proceedings/lrec2018/pdf/131.pdf} ``` #### Contact Name <!-- quick --> <!-- info: If known, provide the name of at least one person the reader can contact for questions about the dataset. --> <!-- scope: periscope --> Mathias Creutz #### Contact Email <!-- info: If known, provide the email of at least one person the reader can contact for questions about the dataset. --> <!-- scope: periscope --> firstname dot lastname at helsinki dot fi #### Has a Leaderboard? <!-- info: Does the dataset have an active leaderboard? --> <!-- scope: telescope --> no ### Languages and Intended Use #### Multilingual? <!-- quick --> <!-- info: Is the dataset multilingual? --> <!-- scope: telescope --> yes #### Covered Languages <!-- quick --> <!-- info: What languages/dialects are covered in the dataset? --> <!-- scope: telescope --> `German`, `English`, `Finnish`, `French`, `Russian`, `Swedish` #### Whose Language? <!-- info: Whose language is in the dataset? --> <!-- scope: periscope --> Opusparcus is a paraphrase corpus for six European language: German, English, Finnish, French, Russian, and Swedish. The paraphrases consist of subtitles from movies and TV shows. The data in Opusparcus has been extracted from [OpenSubtitles2016](http://opus.nlpl.eu/OpenSubtitles2016.php), which is in turn based on data from [OpenSubtitles](http://www.opensubtitles.org/). #### License <!-- quick --> <!-- info: What is the license of the dataset? --> <!-- scope: telescope --> cc-by-nc-4.0: Creative Commons Attribution Non Commercial 4.0 International #### Intended Use <!-- info: What is the intended use of the dataset? --> <!-- scope: microscope --> Opusparcus is a sentential paraphrase corpus for multiple languages containing colloquial language. #### Primary Task <!-- info: What primary task does the dataset support? --> <!-- scope: telescope --> Paraphrasing #### Communicative Goal <!-- quick --> <!-- info: Provide a short description of the communicative goal of a model trained for this task on this dataset. --> <!-- scope: periscope --> Models can be trained, e.g., for paraphrase detection and generation, that is, determining whether two given sentences mean the same thing or generating new paraphrases for a given sentence. ### Credit #### Who added the Dataset to GEM? <!-- info: Who contributed to the data card and adding the dataset to GEM? List the people+affiliations involved in creating this data card and who helped integrate this dataset into GEM. --> <!-- scope: microscope --> Mathias Creutz (University of Helsinki) ### Dataset Structure #### Data Fields <!-- info: List and describe the fields present in the dataset. --> <!-- scope: telescope --> - `sent1`: a tokenized sentence - `sent2`: another tokenized sentence, which is potentially a paraphrase of `sent1`. - `annot_score`: a value between 1.0 and 4.0 indicating how good an example of paraphrases `sent1` and `sent2` are. (For the training sets, the value is 0.0, which indicates that no manual annotation has taken place.) - `lang`: language of this dataset - `gem_id`: unique identifier of this entry All fields are strings except `annot_score`, which is a float. #### Reason for Structure <!-- info: How was the dataset structure determined? --> <!-- scope: microscope --> For each target language, the Opusparcus data have been partitioned into three types of data sets: training, validation and test sets. The training sets are large, consisting of millions of sentence pairs, and have been compiled automatically, with the help of probabilistic ranking functions. The development and test sets consist of sentence pairs that have been annotated manually; each set contains approximately 1000 sentence pairs that have been verified to be acceptable paraphrases by two independent annotators. When you download Opusparcus, you must always indicate the language you want to retrieve, for instance: ``` data = load_dataset("GEM/opusparcus", lang="de") ``` The above command will download the validation and test sets for German. If additionally, you want to retrieve training data, you need to specify the level of quality you desire, such as "French, with 90% quality of the training data": ``` data = load_dataset("GEM/opusparcus", lang="fr", quality=90) ``` The entries in the training sets have been ranked automatically by how likely they are paraphrases, best first, worst last. The quality parameter indicates the estimated proportion (in percent) of true paraphrases in the training set. Allowed quality values range between 60 and 100, in increments of 5 (60, 65, 70, ..., 100). A value of 60 means that 60% of the sentence pairs in the training set are estimated to be true paraphrases (and the remaining 40% are not). A higher value produces a smaller but cleaner set. The smaller sets are subsets of the larger sets, such that the `quality=95` set is a subset of `quality=90`, which is a subset of `quality=85`, and so on. The default `quality` value, if omitted, is 100. This matches no training data at all, which can be convenient, if you are only interested in the validation and test sets, which are considerably smaller, but manually annotated. Note that an alternative to typing the parameter values explicitly, you can use configuration names instead. The following commands are equivalent to the ones above: ``` data = load_dataset("GEM/opusparcus", "de.100") data = load_dataset("GEM/opusparcus", "fr.90") ``` #### How were labels chosen? <!-- info: How were the labels chosen? --> <!-- scope: microscope --> Annotators have used the following scores to label sentence pairs in the test and validation sets: 4: Good example of paraphrases (Dark green button in the annotation tool): The two sentences can be used in the same situation and essentially "mean the same thing". 3: Mostly good example of paraphrases (Light green button in the annotation tool): It is acceptable to think that the two sentences refer to the same thing, although one sentence might be more specific than the other one, or there are differences in style, such as polite form versus familiar form. 2: Mostly bad example of paraphrases (Yellow button in the annotation tool): There is some connection between the sentences that explains why they occur together, but one would not really consider them to mean the same thing. 1: Bad example of paraphrases (Red button in the annotation tool): There is no obvious connection. The sentences mean different things. If the two annotators fully agreed on the category, the value in the `annot_score` field is 4.0, 3.0, 2.0 or 1.0. If the two annotators chose adjacent categories, the value in this field will be 3.5, 2.5 or 1.5. For instance, a value of 2.5 means that one annotator gave a score of 3 ("mostly good"), indicating a possible paraphrase pair, whereas the other annotator scored this as a 2 ("mostly bad"), that is, unlikely to be a paraphrase pair. If the annotators disagreed by more than one category, the sentence pair was discarded and won't show up in the datasets. The training sets were not annotated manually. This is indicated by the value 0.0 in the `annot_score` field. For an assessment of of inter-annotator agreement, see Aulamo et al. (2019). [Annotation of subtitle paraphrases using a new web tool.](http://ceur-ws.org/Vol-2364/3_paper.pdf) In *Proceedings of the Digital Humanities in the Nordic Countries 4th Conference*, Copenhagen, Denmark. #### Example Instance <!-- info: Provide a JSON formatted example of a typical instance in the dataset. --> <!-- scope: periscope --> ``` {'annot_score': 4.0, 'gem_id': 'gem-opusparcus-test-1587', 'lang': 'en', 'sent1': "I haven 't been contacted by anybody .", 'sent2': "Nobody 's contacted me ."} ``` #### Data Splits <!-- info: Describe and name the splits in the dataset if there are more than one. --> <!-- scope: periscope --> The data is split into training, validation and test sets. The validation and test sets come in two versions, the regular validation and test sets and the full sets, called validation.full and test.full. The full sets contain all sentence pairs successfully annotated by the annotators, including the sentence pairs that were rejected as paraphrases. The annotation scores of the full sets thus range between 1.0 and 4.0. The regular validation and test sets only contain sentence pairs that qualify as paraphrases, scored between 3.0 and 4.0 by the annotators. The number of sentence pairs in the data splits are as follows for each of the languages. The range between the smallest (`quality=95`) and largest (`quality=60`) train configuration have been shown. | | train | valid | test | valid.full | test.full | | ----- | ------ | ----- | ---- | ---------- | --------- | | de | 0.59M .. 13M | 1013 | 1047 | 1582 | 1586 | | en | 1.0M .. 35M | 1015 | 982 | 1455 | 1445 | | fi | 0.48M .. 8.9M | 963 | 958 | 1760 | 1749 | | fr | 0.94M .. 22M | 997 | 1007 | 1630 | 1674 | | ru | 0.15M .. 15M | 1020 | 1068 | 1854 | 1855 | | sv | 0.24M .. 4.5M | 984 | 947 | 1887 | 1901 | As a concrete example, loading the English data requesting 95% quality of the train split produces the following: ``` >>> data = load_dataset("GEM/opusparcus", lang="en", quality=95) >>> data DatasetDict({ test: Dataset({ features: ['lang', 'sent1', 'sent2', 'annot_score', 'gem_id'], num_rows: 982 }) validation: Dataset({ features: ['lang', 'sent1', 'sent2', 'annot_score', 'gem_id'], num_rows: 1015 }) test.full: Dataset({ features: ['lang', 'sent1', 'sent2', 'annot_score', 'gem_id'], num_rows: 1445 }) validation.full: Dataset({ features: ['lang', 'sent1', 'sent2', 'annot_score', 'gem_id'], num_rows: 1455 }) train: Dataset({ features: ['lang', 'sent1', 'sent2', 'annot_score', 'gem_id'], num_rows: 1000000 }) }) >>> data["test"][0] {'annot_score': 4.0, 'gem_id': 'gem-opusparcus-test-1587', 'lang': 'en', 'sent1': "I haven 't been contacted by anybody .", 'sent2': "Nobody 's contacted me ."} >>> data["validation"][2] {'annot_score': 3.0, 'gem_id': 'gem-opusparcus-validation-1586', 'lang': 'en', 'sent1': 'No promises , okay ?', 'sent2': "I 'm not promising anything ."} >>> data["train"][1000] {'annot_score': 0.0, 'gem_id': 'gem-opusparcus-train-12501001', 'lang': 'en', 'sent1': 'Am I beautiful ?', 'sent2': 'Am I pretty ?'} #### Splitting Criteria <!-- info: Describe any criteria for splitting the data, if used. If there are differences between the splits (e.g., if the training annotations are machine-generated and the dev and test ones are created by humans, or if different numbers of annotators contributed to each example), describe them here. --> <!-- scope: microscope --> The validation and test sets have been annotated manually, but the training sets have been produced using automatic scoring and come in different size configurations depending on the desired quality level. (See above descriptions and examples for more details.) Please note that previous work suggests that a larger and noisier training set is better than a smaller and clean set. See Sjöblom et al. (2018). [Paraphrase Detection on Noisy Subtitles in Six Languages](http://noisy-text.github.io/2018/pdf/W-NUT20189.pdf). In *Proceedings of the 2018 EMNLP Workshop W-NUT: The 4th Workshop on Noisy User-generated Text*, and Vahtola et al. (2021). [Coping with Noisy Training Data Labels in Paraphrase Detection](https://aclanthology.org/2021.wnut-1.32/). In *Proceedings of the 7th Workshop on Noisy User-generated Text*. ## Dataset in GEM ### Rationale for Inclusion in GEM #### Why is the Dataset in GEM? <!-- info: What does this dataset contribute toward better generation evaluation and why is it part of GEM? --> <!-- scope: microscope --> Opusparcus provides examples of sentences that mean the same thing or have very similar meaning. Sentences are available in six languages and the style is colloquial language. #### Similar Datasets <!-- info: Do other datasets for the high level task exist? --> <!-- scope: telescope --> yes #### Unique Language Coverage <!-- info: Does this dataset cover other languages than other datasets for the same task? --> <!-- scope: periscope --> yes #### Difference from other GEM datasets <!-- info: What else sets this dataset apart from other similar datasets in GEM? --> <!-- scope: microscope --> There is another data set containing manually labeled Finnish paraphrases. #### Ability that the Dataset measures <!-- info: What aspect of model ability can be measured with this dataset? --> <!-- scope: periscope --> Sentence meaning ### GEM-Specific Curation #### Modificatied for GEM? <!-- info: Has the GEM version of the dataset been modified in any way (data, processing, splits) from the original curated data? --> <!-- scope: telescope --> yes #### GEM Modifications <!-- info: What changes have been made to he original dataset? --> <!-- scope: periscope --> `other` #### Modification Details <!-- info: For each of these changes, described them in more details and provided the intended purpose of the modification --> <!-- scope: microscope --> Training sets have been prepared for each the "quality levels" 60% – 95%. In the original release, this task was left to the user of the data. #### Additional Splits? <!-- info: Does GEM provide additional splits to the dataset? --> <!-- scope: telescope --> yes #### Split Information <!-- info: Describe how the new splits were created --> <!-- scope: periscope --> There are two versions of the validations and test sets: the regular sets which only contain positive examples of paraphrases and the full sets containing all examples. #### Split Motivation <!-- info: What aspects of the model's generation capacities were the splits created to test? --> <!-- scope: periscope --> In the original release, only the full validation and test sets were supplied. The "regular sets" have been added in order to make it easier to test on true parapahrases only. ### Getting Started with the Task #### Pointers to Resources <!-- info: Getting started with in-depth research on the task. Add relevant pointers to resources that researchers can consult when they want to get started digging deeper into the task. --> <!-- scope: microscope --> Creutz (2018). [Open Subtitles Paraphrase Corpus for Six Languages](http://www.lrec-conf.org/proceedings/lrec2018/pdf/131.pdf), Proceedings of the 11th edition of the Language Resources and Evaluation Conference (LREC 2018). Sjöblom et al. (2018). [Paraphrase Detection on Noisy Subtitles in Six Languages](http://noisy-text.github.io/2018/pdf/W-NUT20189.pdf). In Proceedings of the 2018 EMNLP Workshop W-NUT: The 4th Workshop on Noisy User-generated Text. Aulamo et al. (2019). [Annotation of subtitle paraphrases using a new web tool.](http://ceur-ws.org/Vol-2364/3_paper.pdf) In Proceedings of the Digital Humanities in the Nordic Countries 4th Conference. Sjöblom et al. (2020). [Paraphrase Generation and Evaluation on Colloquial-Style Sentences](https://aclanthology.org/2020.lrec-1.224/), Proceedings of the 12th Language Resources and Evaluation Conference (LREC). Vahtola et al. (2021). [Coping with Noisy Training Data Labels in Paraphrase Detection](https://aclanthology.org/2021.wnut-1.32/). In Proceedings of the 7th Workshop on Noisy User-generated Text. ## Previous Results ### Previous Results #### Measured Model Abilities <!-- info: What aspect of model ability can be measured with this dataset? --> <!-- scope: telescope --> Sentence meaning In a scenario of paraphrase detection, the model determines whether two given sentences carry approximately the same meaning. In a scenario of paraphrase generation, the model generates a potential paraphrase of a given sentence. #### Metrics <!-- info: What metrics are typically used for this task? --> <!-- scope: periscope --> `BLEU`, `BERT-Score`, `Other: Other Metrics` #### Other Metrics <!-- info: Definitions of other metrics --> <!-- scope: periscope --> PINC #### Proposed Evaluation <!-- info: List and describe the purpose of the metrics and evaluation methodology (including human evaluation) that the dataset creators used when introducing this task. --> <!-- scope: microscope --> The metrics mentioned above can be used to assess how well a generated paraphrase corresponds to a given reference sentence. The PINC score additionally assesses how different the surface forms are. #### Previous results available? <!-- info: Are previous results available? --> <!-- scope: telescope --> yes #### Other Evaluation Approaches <!-- info: What evaluation approaches have others used? --> <!-- scope: periscope --> See publications on using Opusparcus #### Relevant Previous Results <!-- info: What are the most relevant previous results for this task/dataset? --> <!-- scope: microscope --> Sjöblom et al. (2020). [Paraphrase Generation and Evaluation on Colloquial-Style Sentences](https://aclanthology.org/2020.lrec-1.224/), Proceedings of the 12th Language Resources and Evaluation Conference (LREC). ## Dataset Curation ### Original Curation #### Original Curation Rationale <!-- info: Original curation rationale --> <!-- scope: telescope --> Opusparcus was created in order to produce a *sentential* paraphrase corpus for multiple languages containing *colloquial* language (as opposed to news or religious text, for instance). #### Communicative Goal <!-- info: What was the communicative goal? --> <!-- scope: periscope --> Opusparcus provides labeled examples of pairs of sentences that have similar (or dissimilar) meanings. #### Sourced from Different Sources <!-- info: Is the dataset aggregated from different data sources? --> <!-- scope: telescope --> no ### Language Data #### How was Language Data Obtained? <!-- info: How was the language data obtained? --> <!-- scope: telescope --> `Crowdsourced` #### Where was it crowdsourced? <!-- info: If crowdsourced, where from? --> <!-- scope: periscope --> `Other crowdworker platform` #### Language Producers <!-- info: What further information do we have on the language producers? --> <!-- scope: microscope --> The data in Opusparcus has been extracted from [OpenSubtitles2016](http://opus.nlpl.eu/OpenSubtitles2016.php), which is in turn based on data from [OpenSubtitles.org](http://www.opensubtitles.org/). The texts consists of subtitles that have been produced using crowdsourcing. #### Topics Covered <!-- info: Does the language in the dataset focus on specific topics? How would you describe them? --> <!-- scope: periscope --> The language is representative of movies and TV shows. Domains covered include comedy, drama, relationships, suspense, etc. #### Data Validation <!-- info: Was the text validated by a different worker or a data curator? --> <!-- scope: telescope --> validated by data curator #### Data Preprocessing <!-- info: How was the text data pre-processed? (Enter N/A if the text was not pre-processed) --> <!-- scope: microscope --> Sentence and word tokenization was performed. #### Was Data Filtered? <!-- info: Were text instances selected or filtered? --> <!-- scope: telescope --> algorithmically #### Filter Criteria <!-- info: What were the selection criteria? --> <!-- scope: microscope --> The sentence pairs in the training sets were ordered automatically based on the estimated likelihood that the sentences were paraphrases, most likely paraphrases on the top, and least likely paraphrases on the bottom. The validation and test sets were checked and annotated manually, but the sentence pairs selected for annotation had to be different enough in terms of minimum edit distance (Levenshtein distance). This ensured that annotators would not spend their time annotating pairs of more or less identical sentences. ### Structured Annotations #### Additional Annotations? <!-- quick --> <!-- info: Does the dataset have additional annotations for each instance? --> <!-- scope: telescope --> expert created #### Number of Raters <!-- info: What is the number of raters --> <!-- scope: telescope --> 11<n<50 #### Rater Qualifications <!-- info: Describe the qualifications required of an annotator. --> <!-- scope: periscope --> Students and staff at the University of Helsinki (native or very proficient speakers of the target languages) #### Raters per Training Example <!-- info: How many annotators saw each training example? --> <!-- scope: periscope --> 0 #### Raters per Test Example <!-- info: How many annotators saw each test example? --> <!-- scope: periscope --> 2 #### Annotation Service? <!-- info: Was an annotation service used? --> <!-- scope: telescope --> no #### Annotation Values <!-- info: Purpose and values for each annotation --> <!-- scope: microscope --> The development and test sets consist of sentence pairs that have been annotated manually; each set contains approximately 1000 sentence pairs that have been verified to be acceptable paraphrases by two independent annotators. The `annot_score` field reflects the judgments made by the annotators. If the annnotators fully agreed on the category (4.0: dark green, 3.0: light green, 2.0: yellow, 1.0: red), the value of `annot_score` is 4.0, 3.0, 2.0 or 1.0. If the annotators chose adjacent categories, the value in this field will be 3.5, 2.5 or 1.5. For instance, a value of 2.5 means that one annotator gave a score of 3 ("mostly good"), indicating a possible paraphrase pair, whereas the other annotator scored this as a 2 ("mostly bad"), that is, unlikely to be a paraphrase pair. If the annotators disagreed by more than one category, the sentence pair was discarded and won't show up in the datasets. Annotators could also reject a sentence pair as being corrupted data. #### Any Quality Control? <!-- info: Quality control measures? --> <!-- scope: telescope --> validated by another rater #### Quality Control Details <!-- info: Describe the quality control measures that were taken. --> <!-- scope: microscope --> If the annotators disagreed by more than one category, the sentence pair was discarded and is not part of the final dataset. ### Consent #### Any Consent Policy? <!-- info: Was there a consent policy involved when gathering the data? --> <!-- scope: telescope --> no ### Private Identifying Information (PII) #### Contains PII? <!-- quick --> <!-- info: Does the source language data likely contain Personal Identifying Information about the data creators or subjects? --> <!-- scope: telescope --> yes/very likely #### Any PII Identification? <!-- info: Did the curators use any automatic/manual method to identify PII in the dataset? --> <!-- scope: periscope --> no identification ### Maintenance #### Any Maintenance Plan? <!-- info: Does the original dataset have a maintenance plan? --> <!-- scope: telescope --> no ## Broader Social Context ### Previous Work on the Social Impact of the Dataset #### Usage of Models based on the Data <!-- info: Are you aware of cases where models trained on the task featured in this dataset ore related tasks have been used in automated systems? --> <!-- scope: telescope --> no ### Impact on Under-Served Communities #### Addresses needs of underserved Communities? <!-- info: Does this dataset address the needs of communities that are traditionally underserved in language technology, and particularly language generation technology? Communities may be underserved for exemple because their language, language variety, or social or geographical context is underepresented in NLP and NLG resources (datasets and models). --> <!-- scope: telescope --> no ### Discussion of Biases #### Any Documented Social Biases? <!-- info: Are there documented social biases in the dataset? Biases in this context are variations in the ways members of different social categories are represented that can have harmful downstream consequences for members of the more disadvantaged group. --> <!-- scope: telescope --> no #### Are the Language Producers Representative of the Language? <!-- info: Does the distribution of language producers in the dataset accurately represent the full distribution of speakers of the language world-wide? If not, how does it differ? --> <!-- scope: periscope --> What social bias there may be in the subtitles in this dataset has not been studied. ## Considerations for Using the Data ### PII Risks and Liability #### Potential PII Risk <!-- info: Considering your answers to the PII part of the Data Curation Section, describe any potential privacy to the data subjects and creators risks when using the dataset. --> <!-- scope: microscope --> The data only contains subtitles of publicly available movies and TV shows. ### Licenses #### Copyright Restrictions on the Dataset <!-- info: Based on your answers in the Intended Use part of the Data Overview Section, which of the following best describe the copyright and licensing status of the dataset? --> <!-- scope: periscope --> `non-commercial use only` #### Copyright Restrictions on the Language Data <!-- info: Based on your answers in the Language part of the Data Curation Section, which of the following best describe the copyright and licensing status of the underlying language data? --> <!-- scope: periscope --> `non-commercial use only` ### Known Technical Limitations #### Technical Limitations <!-- info: Describe any known technical limitations, such as spurrious correlations, train/test overlap, annotation biases, or mis-annotations, and cite the works that first identified these limitations when possible. --> <!-- scope: microscope --> Some subtitles contain typos that are caused by inaccurate OCR. #### Unsuited Applications <!-- info: When using a model trained on this dataset in a setting where users or the public may interact with its predictions, what are some pitfalls to look out for? In particular, describe some applications of the general task featured in this dataset that its curation or properties make it less suitable for. --> <!-- scope: microscope --> The models might memorize individual subtitles of existing movies and TV shows, but there is no context across sentence boundaries in the data. #### Discouraged Use Cases <!-- info: What are some discouraged use cases of a model trained to maximize the proposed metrics on this dataset? In particular, think about settings where decisions made by a model that performs reasonably well on the metric my still have strong negative consequences for user or members of the public. --> <!-- scope: microscope --> A general issue with paraphrasing is that very small modifications in the surface form might produce valid paraphrases, which are however rather uninteresting. It is more valuable to produce paraphrases with clearly different surface realizations (e.g., measured using minimum edit distance).
[ -0.33451375365257263, -0.6865270733833313, 0.4802721440792084, 0.07894548773765564, -0.44435492157936096, -0.2964894473552704, -0.3160434365272522, 0.08055426180362701, 0.26954901218414307, 0.6765835285186768, -0.4413004219532013, -0.6489964723587036, -0.4810568690299988, 0.2657792270183563, -0.5203769207000732, 1.1700010299682617, -0.048631422221660614, 0.2172040343284607, -0.2830054461956024, -0.30132928490638733, -0.04948456957936287, -0.5171538591384888, -0.288875937461853, -0.010294314473867416, 0.4121509790420532, 0.6203132271766663, 0.6714535355567932, 0.8276674151420593, 0.8324792385101318, 0.26857027411460876, -0.15733486413955688, 0.06805966794490814, -0.3408988118171692, -0.046859048306941986, -0.16018250584602356, -0.3560055196285248, -0.3645876348018646, -0.03856271505355835, 0.9345964193344116, 0.7251584529876709, -0.16292214393615723, 0.20699509978294373, 0.25035378336906433, 0.5739372968673706, -0.22510886192321777, 0.3833736479282379, -0.6144324541091919, -0.014804171398282051, -0.5258968472480774, -0.28600984811782837, -0.4058951139450073, -0.35542139410972595, 0.011278800666332245, -0.842284619808197, 0.34584370255470276, 0.03992145508527756, 1.0828700065612793, 0.00409245491027832, -0.0722120851278305, -0.2560497224330902, -0.31734856963157654, 0.977297842502594, -0.6816650032997131, 0.26772382855415344, 0.5736852884292603, 0.21668697893619537, 0.05552693456411362, -0.9690825343132019, -0.4883292317390442, -0.16319100558757782, -0.3955461084842682, 0.1486382931470871, -0.134283185005188, -0.2834096848964691, 0.330097496509552, 0.6827546954154968, -0.7578184604644775, -0.49016353487968445, -0.6928712725639343, -0.15319174528121948, 0.4037895202636719, 0.10548126697540283, 0.21429184079170227, -0.4342135787010193, -0.20503897964954376, -0.5560476779937744, -0.5304625630378723, -0.04453030228614807, 0.2547054886817932, 0.319843053817749, -0.442961186170578, 0.489385724067688, -0.3905794024467468, 0.5299391150474548, -0.19002117216587067, -0.18798445165157318, 0.7999246120452881, -0.6775832772254944, -0.09636502712965012, -0.26755058765411377, 1.0924232006072998, 0.2920101583003998, 0.2712555527687073, -0.1806923896074295, -0.014400831423699856, -0.2615501582622528, -0.2232225090265274, -0.5045938491821289, -0.308152437210083, 0.059734974056482315, -0.3606318235397339, -0.016429977491497993, 0.10857027024030685, -1.0807594060897827, -0.10495024919509888, -0.21973173320293427, 0.3829028010368347, -0.6757582426071167, 0.049160152673721313, 0.1571592390537262, -0.3185487389564514, 0.4356878697872162, 0.038099225610494614, -0.6380898356437683, 0.4757464528083801, 0.5231403112411499, 0.9017458558082581, -0.0942416563630104, -0.7449460029602051, -0.6136711239814758, 0.025585073977708817, -0.1598106026649475, 0.5281650424003601, -0.4324984550476074, -0.5060703158378601, -0.2603616714477539, 0.31444621086120605, -0.20116399228572845, -0.4333271384239197, 1.1156005859375, -0.1494874805212021, 0.6345353722572327, -0.5108394026756287, -0.4575679898262024, -0.11705867201089859, 0.07184883952140808, -0.5887635946273804, 1.048622488975525, -0.035022150725126266, -0.8724090456962585, -0.015424457378685474, -0.49106481671333313, -0.40197089314460754, 0.07829286903142929, -0.22933779656887054, -0.3650270104408264, -0.061344049870967865, 0.615435779094696, 0.44076403975486755, -0.5583521723747253, 0.2621113955974579, -0.10115160793066025, -0.09682657569646835, 0.17635440826416016, -0.40284234285354614, 0.8339334726333618, 0.2979312241077423, -0.22184579074382782, -0.2397482693195343, -0.6283960342407227, -0.08315173536539078, 0.17645296454429626, -0.21665970981121063, -0.03466787189245224, 0.12331973016262054, -0.02538936212658882, 0.043527841567993164, 0.26384037733078003, -0.6257627010345459, -0.19904813170433044, -0.3318954408168793, 0.5911281704902649, 0.4353374242782593, 0.29271137714385986, 0.3895113468170166, -0.37756678462028503, 0.37730565667152405, 0.033722538501024246, 0.5117874145507812, -0.12810437381267548, -0.5108999609947205, -0.8827372193336487, -0.0944148451089859, 0.2997516095638275, 0.7342868447303772, -1.0609720945358276, 0.3322741687297821, -0.6688933968544006, -0.8336730599403381, -0.5890769362449646, 0.1735941767692566, 0.6097864508628845, 0.6318751573562622, 0.7578917145729065, -0.11554472893476486, -0.196714386343956, -1.119715929031372, -0.1312684565782547, -0.12279390543699265, 0.15487970411777496, 0.28218814730644226, 0.5890890955924988, 0.31452107429504395, 0.6497214436531067, -0.605185866355896, -0.4900677502155304, -0.48546791076660156, -0.0756983831524849, 0.5023273229598999, 0.6311306357383728, 0.5004090070724487, -1.0636675357818604, -0.6228875517845154, -0.06423448026180267, -0.8770502209663391, -0.03908563405275345, -0.08246998488903046, -0.22779721021652222, -0.12895138561725616, 0.47176897525787354, -0.48159193992614746, 0.07863887399435043, 0.4666306674480438, -0.21142923831939697, 0.3136516213417053, -0.2772860825061798, 0.40318354964256287, -1.3284586668014526, 0.19315394759178162, 0.11427300423383713, -0.03648454323410988, -0.4523402154445648, 0.0700584277510643, 0.1508059948682785, -0.18702000379562378, -0.7886272668838501, 0.43391379714012146, -0.4473896324634552, 0.034908540546894073, 0.32999125123023987, 0.2454981654882431, 0.08318344503641129, 0.6594260931015015, 0.21767419576644897, 0.908502995967865, 0.8555357456207275, -0.4446171224117279, 0.4098374843597412, 0.7233765125274658, -0.6072445511817932, 0.5478551983833313, -0.8704063892364502, -0.22793048620224, 0.0092887282371521, 0.12534542381763458, -0.5732688903808594, -0.29977595806121826, 0.2995823919773102, -0.742913007736206, -0.04660923779010773, -0.15740150213241577, -0.6117556691169739, -0.020276114344596863, -0.2959752678871155, 0.12295231968164444, 0.7450062036514282, -0.24415944516658783, 0.4184924364089966, 0.24255895614624023, -0.31361180543899536, -0.44223344326019287, -0.9844580292701721, 0.3361876308917999, -0.5372209548950195, -0.5053520798683167, 0.24330011010169983, -0.14164341986179352, -0.14885936677455902, -0.10748879611492157, 0.3276100754737854, -0.09941937029361725, -0.22929741442203522, -0.05486888065934181, 0.12856219708919525, -0.09391023963689804, -0.0979824811220169, -0.08209852874279022, -0.2189512997865677, -0.17105893790721893, -0.01446051336824894, 0.4008027911186218, -0.24656452238559723, -0.23488245904445648, -0.5264372825622559, 0.40474045276641846, 0.636236846446991, -0.43166837096214294, 0.5851777791976929, 0.45606890320777893, -0.0896633192896843, 0.12220502644777298, -0.3487466275691986, -0.2502526342868805, -0.4705529510974884, 0.35234686732292175, -0.3987734317779541, -0.33286213874816895, 0.6074838638305664, 0.6550151109695435, 0.16534744203090668, 0.6948077082633972, 0.3032316267490387, -0.10616753995418549, 0.5948501825332642, 0.12350276112556458, 0.03567713126540184, 0.379085898399353, -0.4868279695510864, -0.22494809329509735, -0.8624699711799622, -0.17812344431877136, -0.6356208324432373, -0.15520821511745453, -0.4724363088607788, -0.5470289587974548, 0.5867373943328857, 0.04932253807783127, 0.021595673635601997, 0.6793801188468933, -0.32098251581192017, 0.47933268547058105, 0.9048072695732117, 0.25301188230514526, 0.2562934160232544, 0.14453306794166565, -0.029818933457136154, -0.24222707748413086, -0.6664587259292603, -0.5815744996070862, 1.0682027339935303, 0.36803799867630005, 0.6912311315536499, 0.1189483106136322, 0.6873994469642639, 0.24265789985656738, -0.29552847146987915, -0.2946581244468689, 0.8230568170547485, -0.4168795645236969, -0.6233490109443665, -0.25652602314949036, -0.5455957651138306, -0.7497963309288025, 0.20009896159172058, 0.03425637260079384, -0.5815626382827759, 0.5321961045265198, 0.020726928487420082, -0.20954515039920807, 0.22848710417747498, -0.7097278833389282, 1.06261146068573, -0.2822832763195038, -0.22121743857860565, 0.026328105479478836, -0.9963695406913757, -0.056656867265701294, -0.06677103042602539, 0.4615587592124939, -0.16153044998645782, -0.011797287501394749, 1.0454965829849243, -0.3507245182991028, 0.6844058036804199, -0.17654235661029816, 0.2691434621810913, 0.27415144443511963, 0.05677163600921631, 0.5665611028671265, 0.02217201143503189, -0.218577578663826, 0.2519823908805847, 0.18333974480628967, -0.5155965089797974, -0.3445498049259186, 0.6951282024383545, -0.690335750579834, -0.4079459309577942, -0.373748242855072, -0.577015221118927, -0.13726677000522614, 0.1843469887971878, 0.5583547353744507, 0.7762753367424011, 0.01752587966620922, 0.8065323829650879, 0.7466546893119812, -0.39015838503837585, 0.29562604427337646, 0.4398067593574524, 0.1322508603334427, -0.7214077115058899, 1.0567090511322021, 0.16386660933494568, 0.5015530586242676, 0.514575183391571, 0.19350849092006683, -0.19091199338436127, -0.6415756940841675, -0.521212637424469, 0.47169601917266846, -0.8742465972900391, -0.007726807147264481, -0.6422367691993713, 0.02039804495871067, -0.5040503144264221, 0.034975092858076096, -0.18625785410404205, -0.4991145730018616, -0.32899805903434753, -0.15684422850608826, 0.5079140663146973, 0.14240621030330658, -0.0969143733382225, 0.44475218653678894, -0.9131985902786255, 0.21683818101882935, -0.06799258291721344, -0.07488502562046051, -0.497279554605484, -0.8516800999641418, -0.45103397965431213, 0.13203324377536774, -0.3710311949253082, -0.793083131313324, 0.40711215138435364, 0.6438600420951843, 0.6855320334434509, 0.0036934451200067997, 0.2050555944442749, 0.5660049915313721, -0.47475165128707886, 1.2357875108718872, -0.05962564796209335, -0.8653423190116882, 0.631371021270752, -0.43159353733062744, 0.10821405053138733, 0.927234411239624, 0.38922861218452454, -0.6098460555076599, -0.5661755800247192, -0.8524052500724792, -0.9081811308860779, 1.025210976600647, 0.5435828566551208, 0.28120511770248413, -0.03847461938858032, 0.23145358264446259, 0.07966412603855133, 0.12066518515348434, -0.9590278267860413, -0.4045200049877167, -0.07333341985940933, -0.33287492394447327, -0.5174899697303772, 0.052825864404439926, -0.2705182731151581, -0.33110880851745605, 0.8961344957351685, 0.10437099635601044, 0.2635219395160675, 0.41210296750068665, -0.23602324724197388, 0.20638485252857208, 0.2803681194782257, 0.4178200364112854, 0.7182143330574036, -0.2145850509405136, 0.1287461817264557, 0.4181128740310669, -0.4950703978538513, -0.1555376648902893, 0.2548869848251343, -0.2251027226448059, 0.22310581803321838, 0.6653206944465637, 0.8962376117706299, 0.12871436774730682, -0.7345097661018372, 0.5551802515983582, 0.04240260645747185, -0.4332212507724762, -0.2847001552581787, -0.04900273680686951, -0.0161014162003994, 0.28173914551734924, 0.2882120609283447, -0.2785876393318176, 0.19406813383102417, -0.38592529296875, 0.27449333667755127, -0.011894338764250278, -0.2695435583591461, -0.32356977462768555, 0.6248738765716553, 0.03547322005033493, -0.13277368247509003, 0.6345776915550232, -0.05698828026652336, -0.36310744285583496, 0.4760618507862091, 0.08812197297811508, 0.8514866232872009, 0.04541578143835068, 0.2710549831390381, 0.463672399520874, 0.3766229748725891, -0.08672703057527542, 0.22489461302757263, -0.1359739899635315, -0.474191814661026, -0.1929870992898941, -0.7975683212280273, -0.3846604824066162, 0.1061071828007698, -0.8181905746459961, 0.439074844121933, -0.04598141089081764, 0.1804167479276657, 0.15276265144348145, -0.27236971259117126, -0.414958119392395, 0.2568851113319397, 0.10235807299613953, 0.9511798024177551, -1.0105029344558716, 0.9036219120025635, 0.6130841970443726, -0.7435699701309204, -0.6715134978294373, -0.005538404453545809, -0.27198371291160583, -0.7465662360191345, 0.5057422518730164, -0.19796399772167206, 0.2822844386100769, 0.03273506090044975, -0.23191682994365692, -0.8872528672218323, 1.0750011205673218, 0.39940062165260315, -0.3047284781932831, -0.18693958222866058, 0.3928423523902893, 0.5803741812705994, -0.06942138820886612, 0.14269569516181946, 0.5732845067977905, 0.47918108105659485, 0.19689685106277466, -0.9524881839752197, -0.15486283600330353, -0.3747985363006592, -0.1863628774881363, 0.21615593135356903, -0.564997136592865, 1.087698221206665, 0.29648226499557495, -0.14416135847568512, 0.13699132204055786, 0.501378059387207, 0.0012831961503252387, 0.09156455844640732, 0.32156845927238464, 0.7676122188568115, 0.19633401930332184, -0.40174174308776855, 1.098753809928894, -0.5122263431549072, 0.68038409948349, 1.073834776878357, 0.13446828722953796, 0.9531664252281189, 0.6298263072967529, -0.4231206774711609, 0.3707588315010071, 0.6663679480552673, -0.0990101769566536, 0.7683439254760742, -0.27695971727371216, 0.05029008910059929, -0.24846996366977692, 0.06281082332134247, -0.5253185033798218, 0.15834954380989075, 0.37457406520843506, -0.6163384914398193, -0.40744924545288086, 0.1597679853439331, 0.0409562885761261, -0.0026808204129338264, -0.031176527962088585, 0.8274748921394348, 0.13854962587356567, -0.8034112453460693, 0.7128717303276062, -0.19530124962329865, 0.3249843418598175, -0.8909767270088196, 0.13818320631980896, -0.4188394248485565, 0.2987852096557617, -0.20610210299491882, -1.18467378616333, 0.3872251510620117, 0.1850288361310959, -0.1290658414363861, -0.36847323179244995, 0.08872848749160767, -0.5697209239006042, -0.6092004776000977, 0.1937774270772934, 0.5116002559661865, 0.6954361796379089, 0.11950863897800446, -1.0112515687942505, -0.10606755316257477, 0.3683358132839203, -0.3793296813964844, 0.10413672029972076, 0.5061957836151123, 0.17298561334609985, 0.4993678331375122, 0.42942601442337036, 0.13623860478401184, 0.014771022833883762, -0.165911003947258, 0.7496209144592285, -0.5754972100257874, -0.519315242767334, -0.8418657779693604, 0.5775198340415955, -0.2313223034143448, -0.578341007232666, 1.1614274978637695, 0.8846364617347717, 0.8512852787971497, -0.12566785514354706, 0.682429850101471, -0.3603304326534271, 0.8797776699066162, -0.5829670429229736, 0.4051423966884613, -0.7510578632354736, 0.22251713275909424, -0.3642949163913727, -0.9985229969024658, -0.19142645597457886, 0.4325484037399292, -0.5200189352035522, -0.2087765783071518, 0.8345640897750854, 1.0823724269866943, -0.26515135169029236, -0.0932965874671936, 0.24883799254894257, 0.13290554285049438, 0.21597203612327576, 0.6241169571876526, 0.5792964100837708, -0.7223914861679077, 0.9805133938789368, -0.6149990558624268, -0.1276903599500656, 0.05588560178875923, -0.5502914190292358, -0.6159256100654602, -0.9558010101318359, -0.409758061170578, -0.3948787450790405, 0.008493000641465187, 0.6396127343177795, 0.32342156767845154, -0.9181959629058838, -0.45227745175361633, -0.18367989361286163, -0.2379959672689438, -0.08413084596395493, -0.24120952188968658, 0.5940845608711243, -0.21546518802642822, -1.0367255210876465, 0.3763027787208557, -0.025217240676283836, -0.04528991878032684, -0.007273590657860041, -0.1874246895313263, -0.3868054747581482, -0.0188657995313406, 0.0943651795387268, 0.3095420002937317, -0.5941245555877686, 0.05752558261156082, 0.10901553928852081, -0.08169035613536835, 0.21403202414512634, 0.3294895589351654, -0.3792252242565155, 0.3213411271572113, 0.6051170229911804, 0.3135933578014374, 0.4463530480861664, -0.03232422098517418, 0.36882874369621277, -0.7294365167617798, 0.27606505155563354, 0.2691935896873474, 0.6595094203948975, 0.47637051343917847, -0.13873055577278137, 0.6251643896102905, 0.5051651000976562, -0.6622902154922485, -0.9189116358757019, -0.02206697128713131, -1.0840611457824707, -0.1672709584236145, 1.3966889381408691, -0.44680383801460266, -0.24653570353984833, 0.11441569030284882, -0.35437580943107605, 0.0762520581483841, -0.4169720709323883, 0.1597481071949005, 0.789440393447876, 0.11219536513090134, -0.11417070031166077, -0.5762338638305664, 0.5281850695610046, 0.5818858742713928, -0.8201709389686584, 0.14540737867355347, 0.4132728576660156, 0.32782068848609924, 0.2819472551345825, 0.2658626139163971, -0.3190521001815796, 0.2658858299255371, -0.03797902911901474, 0.07699520140886307, 0.032743629068136215, -0.16830335557460785, -0.3273400664329529, 0.10464610159397125, -0.11942629516124725, -0.3789096772670746 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
web_nlg
null
2023-06-01T14:59:54Z
7,790
14
webnlg
[ "task_categories:tabular-to-text", "task_ids:rdf-to-text", "annotations_creators:found", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:extended|other-db_pedia", "source_datasets:original", "language:en", "language:ru", "license:cc-by-sa-3.0", "license:cc-by-nc-sa-4.0", "license:gfdl", "region:us" ]
2023-06-01T14:59:54Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - found language_creators: - crowdsourced language: - en - ru license: - cc-by-sa-3.0 - cc-by-nc-sa-4.0 - gfdl multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - extended|other-db_pedia - original task_categories: - tabular-to-text task_ids: - rdf-to-text paperswithcode_id: webnlg pretty_name: WebNLG dataset_info: - config_name: webnlg_challenge_2017 features: - name: category dtype: string - name: size dtype: int32 - name: eid dtype: string - name: original_triple_sets sequence: - name: otriple_set sequence: string - name: modified_triple_sets sequence: - name: mtriple_set sequence: string - name: shape dtype: string - name: shape_type dtype: string - name: lex sequence: - name: comment dtype: string - name: lid dtype: string - name: text dtype: string - name: lang dtype: string - name: test_category dtype: string - name: dbpedia_links sequence: string - name: links sequence: string splits: - name: train num_bytes: 5594812 num_examples: 6940 - name: dev num_bytes: 706653 num_examples: 872 - name: test num_bytes: 3122533 num_examples: 4615 download_size: 25499351 dataset_size: 9423998 - config_name: release_v1 features: - name: category dtype: string - name: size dtype: int32 - name: eid dtype: string - name: original_triple_sets sequence: - name: otriple_set sequence: string - name: modified_triple_sets sequence: - name: mtriple_set sequence: string - name: shape dtype: string - name: shape_type dtype: string - name: lex sequence: - name: comment dtype: string - name: lid dtype: string - name: text dtype: string - name: lang dtype: string - name: test_category dtype: string - name: dbpedia_links sequence: string - name: links sequence: string splits: - name: full num_bytes: 11684308 num_examples: 14237 download_size: 25499351 dataset_size: 11684308 - config_name: release_v2 features: - name: category dtype: string - name: size dtype: int32 - name: eid dtype: string - name: original_triple_sets sequence: - name: otriple_set sequence: string - name: modified_triple_sets sequence: - name: mtriple_set sequence: string - name: shape dtype: string - name: shape_type dtype: string - name: lex sequence: - name: comment dtype: string - name: lid dtype: string - name: text dtype: string - name: lang dtype: string - name: test_category dtype: string - name: dbpedia_links sequence: string - name: links sequence: string splits: - name: train num_bytes: 10830413 num_examples: 12876 - name: dev num_bytes: 1360033 num_examples: 1619 - name: test num_bytes: 1324934 num_examples: 1600 download_size: 25499351 dataset_size: 13515380 - config_name: release_v2_constrained features: - name: category dtype: string - name: size dtype: int32 - name: eid dtype: string - name: original_triple_sets sequence: - name: otriple_set sequence: string - name: modified_triple_sets sequence: - name: mtriple_set sequence: string - name: shape dtype: string - name: shape_type dtype: string - name: lex sequence: - name: comment dtype: string - name: lid dtype: string - name: text dtype: string - name: lang dtype: string - name: test_category dtype: string - name: dbpedia_links sequence: string - name: links sequence: string splits: - name: train num_bytes: 10853434 num_examples: 12895 - name: dev num_bytes: 1421590 num_examples: 1594 - name: test num_bytes: 1243182 num_examples: 1606 download_size: 25499351 dataset_size: 13518206 - config_name: release_v2.1 features: - name: category dtype: string - name: size dtype: int32 - name: eid dtype: string - name: original_triple_sets sequence: - name: otriple_set sequence: string - name: modified_triple_sets sequence: - name: mtriple_set sequence: string - name: shape dtype: string - name: shape_type dtype: string - name: lex sequence: - name: comment dtype: string - name: lid dtype: string - name: text dtype: string - name: lang dtype: string - name: test_category dtype: string - name: dbpedia_links sequence: string - name: links sequence: string splits: - name: train num_bytes: 10848793 num_examples: 12876 - name: dev num_bytes: 1362072 num_examples: 1619 - name: test num_bytes: 1325860 num_examples: 1600 download_size: 25499351 dataset_size: 13536725 - config_name: release_v2.1_constrained features: - name: category dtype: string - name: size dtype: int32 - name: eid dtype: string - name: original_triple_sets sequence: - name: otriple_set sequence: string - name: modified_triple_sets sequence: - name: mtriple_set sequence: string - name: shape dtype: string - name: shape_type dtype: string - name: lex sequence: - name: comment dtype: string - name: lid dtype: string - name: text dtype: string - name: lang dtype: string - name: test_category dtype: string - name: dbpedia_links sequence: string - name: links sequence: string splits: - name: train num_bytes: 11040016 num_examples: 12895 - name: dev num_bytes: 1284044 num_examples: 1594 - name: test num_bytes: 1212665 num_examples: 1606 download_size: 25499351 dataset_size: 13536725 - config_name: release_v3.0_en features: - name: category dtype: string - name: size dtype: int32 - name: eid dtype: string - name: original_triple_sets sequence: - name: otriple_set sequence: string - name: modified_triple_sets sequence: - name: mtriple_set sequence: string - name: shape dtype: string - name: shape_type dtype: string - name: lex sequence: - name: comment dtype: string - name: lid dtype: string - name: text dtype: string - name: lang dtype: string - name: test_category dtype: string - name: dbpedia_links sequence: string - name: links sequence: string splits: - name: train num_bytes: 11084860 num_examples: 13211 - name: dev num_bytes: 1394243 num_examples: 1667 - name: test num_bytes: 4039282 num_examples: 5713 download_size: 25499351 dataset_size: 16518385 - config_name: release_v3.0_ru features: - name: category dtype: string - name: size dtype: int32 - name: eid dtype: string - name: original_triple_sets sequence: - name: otriple_set sequence: string - name: modified_triple_sets sequence: - name: mtriple_set sequence: string - name: shape dtype: string - name: shape_type dtype: string - name: lex sequence: - name: comment dtype: string - name: lid dtype: string - name: text dtype: string - name: lang dtype: string - name: test_category dtype: string - name: dbpedia_links sequence: string - name: links sequence: string splits: - name: train num_bytes: 9550340 num_examples: 5573 - name: dev num_bytes: 1314226 num_examples: 790 - name: test num_bytes: 3656501 num_examples: 3410 download_size: 25499351 dataset_size: 14521067 config_names: - release_v1 - release_v2 - release_v2.1 - release_v2.1_constrained - release_v2_constrained - release_v3.0_en - release_v3.0_ru - webnlg_challenge_2017 --- # Dataset Card for WebNLG ## 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:** [WebNLG challenge website](https://webnlg-challenge.loria.fr/) - **Repository:** [WebNLG GitLab repository](https://gitlab.com/shimorina/webnlg-dataset/-/tree/master/) - **Paper:** [Creating Training Corpora for NLG Micro-Planning](https://www.aclweb.org/anthology/P17-1017.pdf) - **Leaderboard:** [WebNLG leaderboards](https://gerbil-nlg.dice-research.org/gerbil/webnlg2020results) - **Point of Contact:** [anastasia.shimorina@loria.fr](anastasia.shimorina@loria.fr) ### Dataset Summary The WebNLG challenge consists in mapping data to text. The training data consists of Data/Text pairs where the data is a set of triples extracted from DBpedia and the text is a verbalisation of these triples. For instance, given the 3 DBpedia triples shown in (a), the aim is to generate a text such as (b). ``` a. (John_E_Blaha birthDate 1942_08_26) (John_E_Blaha birthPlace San_Antonio) (John_E_Blaha occupation Fighter_pilot) b. John E Blaha, born in San Antonio on 1942-08-26, worked as a fighter pilot ``` As the example illustrates, the task involves specific NLG subtasks such as sentence segmentation (how to chunk the input data into sentences), lexicalisation (of the DBpedia properties), aggregation (how to avoid repetitions) and surface realisation (how to build a syntactically correct and natural sounding text). ### Supported Tasks and Leaderboards The dataset supports a Structured to Text task which requires a model takes a set of RDF (Resource Description Format) triples from a database (DBpedia) of the form (subject, property, object) as input and write out a natural language sentence expressing the information contained in the triples. The dataset has supportd two challenges: the [WebNLG2017](https://www.aclweb.org/anthology/W17-3518/) and [WebNLG2020](https://gerbil-nlg.dice-research.org/gerbil/webnlg2020results) challenge. Results were ordered by their [METEOR](https://huggingface.co/metrics/meteor) to the reference, but the leaderboards report a range of other metrics including [BLEU](https://huggingface.co/metrics/bleu), [BERTscore](https://huggingface.co/metrics/bertscore), and [BLEURT](https://huggingface.co/metrics/bleurt). The v3 release (`release_v3.0_en`, `release_v3.0_ru`) for the WebNLG2020 challenge also supports a semantic `parsing` task. ### Languages All releases contain English (`en`) data. The v3 release (`release_v3.0_ru`) also contains Russian (`ru`) examples. ## Dataset Structure ### Data Instances A typical example contains the original RDF triples in the set, a modified version which presented to crowd workers, and a set of possible verbalizations for this set of triples: ``` {'2017_test_category': '', 'category': 'Politician', 'eid': 'Id10', 'lex': {'comment': ['good', 'good', 'good'], 'lid': ['Id1', 'Id2', 'Id3'], 'text': ['World War II had Chiang Kai-shek as a commander and United States Army soldier Abner W. Sibal.', 'Abner W. Sibal served in the United States Army during the Second World War and during that war Chiang Kai-shek was one of the commanders.', 'Abner W. Sibal, served in the United States Army and fought in World War II, one of the commanders of which, was Chiang Kai-shek.']}, 'modified_triple_sets': {'mtriple_set': [['Abner_W._Sibal | battle | World_War_II', 'World_War_II | commander | Chiang_Kai-shek', 'Abner_W._Sibal | militaryBranch | United_States_Army']]}, 'original_triple_sets': {'otriple_set': [['Abner_W._Sibal | battles | World_War_II', 'World_War_II | commander | Chiang_Kai-shek', 'Abner_W._Sibal | branch | United_States_Army'], ['Abner_W._Sibal | militaryBranch | United_States_Army', 'Abner_W._Sibal | battles | World_War_II', 'World_War_II | commander | Chiang_Kai-shek']]}, 'shape': '(X (X) (X (X)))', 'shape_type': 'mixed', 'size': 3} ``` ### Data Fields The following fields can be found in the instances: - `category`: the category of the DBpedia entities present in the RDF triples. - `eid`: an example ID, only unique per split per category. - `size`: number of RDF triples in the set. - `shape`: (since v2) Each set of RDF-triples is a tree, which is characterised by its shape and shape type. `shape` is a string representation of the tree with nested parentheses where X is a node (see [Newick tree format](https://en.wikipedia.org/wiki/Newick_format)) - `shape_type`: (since v2) is a type of the tree shape, which can be: `chain` (the object of one triple is the subject of the other); `sibling` (triples with a shared subject); `mixed` (both chain and sibling types present). - `test_category`: (for `webnlg_challenge_2017` and `v3`) tells whether the set of RDF triples was present in the training set or not. Several splits of the test set are available: with and without references, and for RDF-to-text generation / for semantic parsing. - `lex`: the lexicalizations, with: - `text`: the text to be predicted. - `lid`: a lexicalization ID, unique per example. - `comment`: the lexicalizations were rated by crowd workers are either `good` or `bad` - `lang`: (for `release_v3.0_ru`) the language used because original English texts were kept in the Russian version. Russian data has additional optional fields comparing to English: - `dbpedialinks`: RDF triples extracted from DBpedia between English and Russian entities by means of the property `sameAs`. - `links`: RDF triples created manually for some entities to serve as pointers to translators. There are two types of them: * with `sameAs` (`Spaniards | sameAs | испанцы`) * with `includes` (`Tomatoes, guanciale, cheese, olive oil | includes | гуанчиале`). Those were mostly created for string literals to translate some parts of them. ### Data Splits For `v3.0` releases: | English (v3.0) | Train | Dev | Test (data-to-text) | |-----------------|--------|-------|-------| | **triple sets** | 13,211 | 1,667 | 1,779 | | **texts** | 35,426 | 4,464 | 5,150 | |**properties** | 372 | 290 | 220 | | Russian (v3.0) | Train | Dev | Test (data-to-text) | |-----------------|--------|-------|---------------------| | **triple sets** | 5,573 | 790 | 1,102 | | **texts** | 14,239 | 2,026 | 2,780 | |**properties** | 226 | 115 | 192 | ## Dataset Creation ### Curation Rationale The WebNLG dataset was created to promote the development _(i)_ of RDF verbalisers and _(ii)_ of microplanners able to handle a wide range of linguistic constructions. The dataset aims at covering knowledge in different domains ("categories"). The same properties and entities can appear in several categories. ### Source Data The data was compiled from raw DBpedia triples. [This paper](https://www.aclweb.org/anthology/C16-1141/) explains how the triples were selected. #### Initial Data Collection and Normalization Initial triples extracted from DBpedia were modified in several ways. See [official documentation](https://webnlg-challenge.loria.fr/docs/) for the most frequent changes that have been made. An original tripleset and a modified tripleset usually represent a one-to-one mapping. However, there are cases with many-to-one mappings when several original triplesets are mapped to one modified tripleset. Entities that served as roots of RDF trees are listed in [this file](https://gitlab.com/shimorina/webnlg-dataset/-/blob/master/supplementary/entities_dict.json). The English WebNLG 2020 dataset (v3.0) for training comprises data-text pairs for 16 distinct DBpedia categories: - The 10 seen categories used in the 2017 version: Airport, Astronaut, Building, City, ComicsCharacter, Food, Monument, SportsTeam, University, and WrittenWork. - The 5 unseen categories of 2017, which are now part of the seen data: Athlete, Artist, CelestialBody, MeanOfTransportation, Politician. - 1 new category: Company. The Russian dataset (v3.0) comprises data-text pairs for 9 distinct categories: Airport, Astronaut, Building, CelestialBody, ComicsCharacter, Food, Monument, SportsTeam, and University. #### Who are the source language producers? There are no source texts, all textual material was compiled during the annotation process. ### Annotations #### Annotation process Annotators were first asked to create sentences that verbalise single triples. In a second round, annotators were asked to combine single-triple sentences together into sentences that cover 2 triples. And so on until 7 triples. Quality checks were performed to ensure the quality of the annotations. See Section 3.3 in [the dataset paper](https://www.aclweb.org/anthology/P17-1017.pdf). Russian data was translated from English with an MT system and then was post-edited by crowdworkers. See Section 2.2 of [this paper](https://webnlg-challenge.loria.fr/files/2020.webnlg-papers.7.pdf). #### Who are the annotators? All references were collected through crowdsourcing platforms (CrowdFlower/Figure 8 and Amazon Mechanical Turk). For Russian, post-editing was done using the Yandex.Toloka crowdsourcing platform. ### Personal and Sensitive Information Neither the dataset as published or the annotation process involves the collection or sharing of any kind of personal / demographic information. ## Considerations for Using the Data ### Social Impact of Dataset We do not foresee any negative social impact in particular from this dataset or task. Positive outlooks: Being able to generate good quality text from RDF data would permit, e.g., making this data more accessible to lay users, enriching existing text with information drawn from knowledge bases such as DBpedia or describing, comparing and relating entities present in these knowledge bases. ### Discussion of Biases This dataset is created using DBpedia RDF triples which naturally exhibit biases that have been found to exist in Wikipedia such as some forms of, e.g., gender bias. The choice of [entities](https://gitlab.com/shimorina/webnlg-dataset/-/blob/master/supplementary/entities_dict.json), described by RDF trees, was not controlled. As such, they may contain gender biases; for instance, all the astronauts described by RDF triples are male. Hence, in texts, pronouns _he/him/his_ occur more often. Similarly, entities can be related to the Western culture more often than to other cultures. ### Other Known Limitations The quality of the crowdsourced references is limited, in particular in terms of fluency/naturalness of the collected texts. Russian data was machine-translated and then post-edited by crowdworkers, so some examples may still exhibit issues related to bad translations. ## Additional Information ### Dataset Curators The principle curator of the dataset is Anastasia Shimorina (Université de Lorraine / LORIA, France). Throughout the WebNLG releases, several people contributed to their construction: Claire Gardent (CNRS / LORIA, France), Shashi Narayan (Google, UK), Laura Perez-Beltrachini (University of Edinburgh, UK), Elena Khasanova, and Thiago Castro Ferreira (Federal University of Minas Gerais, Brazil). The dataset construction was funded by the French National Research Agency (ANR). ### Licensing Information The dataset uses the `cc-by-nc-sa-4.0` license. The source DBpedia project uses the `cc-by-sa-3.0` and `gfdl-1.1` licenses. ### Citation Information - If you use the WebNLG corpus, cite: ``` @inproceedings{web_nlg, author = {Claire Gardent and Anastasia Shimorina and Shashi Narayan and Laura Perez{-}Beltrachini}, editor = {Regina Barzilay and Min{-}Yen Kan}, title = {Creating Training Corpora for {NLG} Micro-Planners}, booktitle = {Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics, {ACL} 2017, Vancouver, Canada, July 30 - August 4, Volume 1: Long Papers}, pages = {179--188}, publisher = {Association for Computational Linguistics}, year = {2017}, url = {https://doi.org/10.18653/v1/P17-1017}, doi = {10.18653/v1/P17-1017} } ``` - If you use `release_v2_constrained` in particular, cite: ``` @InProceedings{shimorina2018handling, author = "Shimorina, Anastasia and Gardent, Claire", title = "Handling Rare Items in Data-to-Text Generation", booktitle = "Proceedings of the 11th International Conference on Natural Language Generation", year = "2018", publisher = "Association for Computational Linguistics", pages = "360--370", location = "Tilburg University, The Netherlands", url = "http://aclweb.org/anthology/W18-6543" } ``` ### Contributions Thanks to [@Shimorina](https://github.com/Shimorina), [@yjernite](https://github.com/yjernite) for adding this dataset.
[ -0.42780396342277527, -0.6978697776794434, 0.02986105903983116, 0.39622554183006287, -0.1518460214138031, -0.05572781711816788, -0.34737491607666016, -0.49050310254096985, 0.14336054027080536, 0.41670963168144226, -0.7333972454071045, -0.9572734236717224, -0.38452062010765076, 0.44468650221824646, -0.24963025748729706, 1.1614574193954468, -0.06927065551280975, -0.07162968814373016, 0.02833944745361805, -0.0909462571144104, -0.2698158025741577, -0.5116795897483826, -0.4054887294769287, -0.30055615305900574, 0.4960406720638275, 0.6357876658439636, 0.6710805296897888, 0.5923066735267639, 0.6398336291313171, 0.22816500067710876, -0.08067428320646286, 0.23592422902584076, -0.3483129143714905, -0.13291716575622559, -0.011107739992439747, -0.2649991810321808, -0.6306437849998474, 0.17956554889678955, 0.7186848521232605, 0.8435428738594055, -0.19554990530014038, 0.23497745394706726, 0.04293356463313103, 0.7537245154380798, -0.15753106772899628, 0.43635591864585876, -0.5847610831260681, 0.17353768646717072, -0.2661643624305725, -0.09668522328138351, -0.2362196445465088, -0.3859787583351135, 0.04236149787902832, -0.9150422215461731, 0.44709378480911255, 0.22006738185882568, 1.3245693445205688, 0.11545633524656296, -0.3467614948749542, -0.24778509140014648, -0.41761553287506104, 0.8121375441551208, -0.7263122797012329, 0.2141997516155243, 0.7315515279769897, 0.10082382708787918, -0.14447608590126038, -0.5400317311286926, -0.5985625386238098, 0.25008106231689453, -0.35983264446258545, 0.10007540136575699, -0.04712916538119316, -0.10866988450288773, 0.3379358649253845, 0.5152943134307861, -0.7888327240943909, 0.16533032059669495, -0.4211312234401703, -0.1156078577041626, 0.814426064491272, 0.15260256826877594, 0.14432770013809204, -0.7438175082206726, -0.297303169965744, -0.25096356868743896, -0.6873462796211243, -0.3827025592327118, 0.4131586253643036, 0.6163210272789001, -0.36444365978240967, 0.6904388666152954, -0.3249131739139557, 0.8269967436790466, -0.09072104841470718, -0.12278289347887039, 0.6761467456817627, -0.9149814248085022, -0.010055629536509514, -0.094178207218647, 1.1367079019546509, 0.6192958354949951, 0.2871862053871155, -0.05580396205186844, 0.01939377374947071, -0.25401434302330017, -0.18786457180976868, -0.7315934896469116, -0.31969302892684937, 0.4154425263404846, -0.4225815236568451, -0.3768377900123596, 0.12385830283164978, -1.0894603729248047, -0.13710232079029083, -0.09128593653440475, 0.132762148976326, -0.5412892699241638, -0.37697145342826843, 0.25089335441589355, -0.30277153849601746, 0.31033992767333984, -0.001295970636419952, -0.9274532794952393, 0.39376482367515564, 0.5222548246383667, 0.7906112670898438, -0.02975810132920742, -0.48864617943763733, -0.21834605932235718, 0.14964911341667175, -0.06812378764152527, 0.6436538696289062, -0.17393353581428528, -0.15055610239505768, 0.11896075308322906, -0.05786915123462677, -0.06586106866598129, -0.33545711636543274, 0.6385243535041809, -0.402302622795105, 0.7166711091995239, -0.4343684911727905, -0.5370349884033203, -0.09972573071718216, 0.28470656275749207, -0.7981274127960205, 1.3375763893127441, 0.10514512658119202, -1.005165934562683, 0.6253274083137512, -0.830498993396759, -0.33109039068222046, 0.009342921897768974, -0.07386913150548935, -0.3753068447113037, -0.3335413336753845, 0.3014523983001709, 0.7419532537460327, -0.5202891230583191, 0.15697191655635834, -0.05440180376172066, -0.13582773506641388, 0.0018009342020377517, 0.0049675097689032555, 1.149449348449707, 0.012891177088022232, -0.3319382965564728, -0.1316399723291397, -1.1208072900772095, 0.17731933295726776, 0.258954793214798, -0.46051135659217834, -0.1713818460702896, -0.001956491731107235, 0.3187916576862335, 0.2271951586008072, 0.09340622276067734, -0.4312098026275635, 0.19426026940345764, -0.5029851198196411, 0.260145366191864, 0.562231183052063, 0.11663006991147995, 0.19816726446151733, -0.19455674290657043, 0.32224032282829285, -0.017702778801321983, 0.14083217084407806, 0.3253277838230133, -0.6243774890899658, -0.8679748773574829, -0.10835462808609009, 0.5514594316482544, 0.6361501216888428, -0.7717743515968323, 0.8469306826591492, -0.7614076733589172, -0.39165547490119934, -0.3988645076751709, 0.09226677566766739, 0.44940027594566345, 0.1959802210330963, 0.48941299319267273, -0.001144958776421845, -0.7968004941940308, -0.9574735164642334, -0.0762787014245987, -0.16350138187408447, -0.0018829487962648273, 0.11525102704763412, 0.7871766090393066, 0.05936417728662491, 0.8346172571182251, -0.7101078033447266, -0.4497695565223694, -0.25026771426200867, 0.16031242907047272, 0.31555303931236267, 0.34012627601623535, 0.5690673589706421, -0.9690600633621216, -0.6626183986663818, -0.026713697239756584, -0.8316124081611633, -0.021962448954582214, 0.1298474669456482, -0.057150643318891525, 0.3096596300601959, 0.13740138709545135, -0.658476710319519, 0.2968429625034332, 0.41977500915527344, -0.5942820906639099, 0.4740278124809265, 0.042101118713617325, 0.11390947550535202, -1.2281419038772583, 0.1480795443058014, -0.006278816610574722, 0.052781522274017334, -0.673709511756897, -0.04757765680551529, -0.04652988538146019, 0.23554906249046326, -0.32134193181991577, 0.4841974675655365, -0.5905088782310486, -0.13665181398391724, 0.22697219252586365, 0.42383578419685364, 0.1942024976015091, 0.6147773861885071, -0.047075770795345306, 0.6094068884849548, 0.4037160575389862, -0.6041672229766846, 0.5711287260055542, 0.5970103144645691, -0.41056928038597107, 0.6886001229286194, -0.46374353766441345, 0.031452421098947525, -0.05251701921224594, 0.19033649563789368, -0.47432181239128113, -0.34986189007759094, 0.2655549645423889, -0.4657454490661621, 0.0855686366558075, -0.05260397121310234, -0.926607072353363, -0.48180511593818665, -0.4616786241531372, 0.01510002464056015, 0.2359384149312973, -0.4322067201137543, 0.27112457156181335, 0.258954793214798, 0.14575161039829254, -0.7312079668045044, -0.8851949572563171, 0.17446368932724, -0.30703890323638916, -0.7231166362762451, 0.5962493419647217, -0.2025856226682663, -0.27678439021110535, 0.26254546642303467, 0.12244203686714172, -0.29462361335754395, 0.04210946708917618, 0.026127994060516357, 0.305019348859787, -0.21850919723510742, 0.08569677919149399, -0.3363458216190338, 0.0301000215113163, -0.04045584052801132, -0.213973730802536, 0.5891681909561157, -0.3606160283088684, 0.04446053132414818, -0.23026911914348602, 0.3880079686641693, 0.11118213087320328, -0.11153507977724075, 0.9616102576255798, 0.877466082572937, -0.5854802131652832, 0.0030057255644351244, -0.5237512588500977, 0.055344175547361374, -0.4558829367160797, 0.30452999472618103, -0.3674042522907257, -0.6809734106063843, 0.5387234687805176, 0.4472351670265198, 0.30081504583358765, 0.8333148956298828, 0.34957724809646606, -0.05046318471431732, 0.6381922364234924, 0.32530641555786133, 0.14146925508975983, 0.24056081473827362, -0.6560229659080505, -0.038601599633693695, -0.747043251991272, -0.49843114614486694, -0.580925703048706, -0.12173254042863846, -0.6029391884803772, -0.43516382575035095, 0.13053463399410248, 0.301546186208725, -0.18232972919940948, 0.5790576934814453, -0.5751981735229492, 0.5393648147583008, 0.579810380935669, -0.07459612190723419, 0.3181123435497284, 0.24067117273807526, -0.11102759093046188, 0.003958686720579863, -0.7861003279685974, -0.45741885900497437, 1.1994138956069946, 0.09670831263065338, 0.35956287384033203, 0.3034558892250061, 0.7579420208930969, 0.1274239420890808, -0.0628717839717865, -0.6095340847969055, 0.7355148792266846, -0.19014476239681244, -0.8400243520736694, -0.36079683899879456, -0.6120944023132324, -1.112175703048706, 0.22767803072929382, -0.3910259008407593, -0.716862142086029, 0.19943977892398834, 0.09383197873830795, -0.27273309230804443, 0.2118402123451233, -0.6839278936386108, 0.8804001808166504, -0.24135929346084595, -0.26885154843330383, -0.14512133598327637, -0.711340069770813, 0.1791478395462036, 0.05786567181348801, 0.3541572093963623, -0.28379812836647034, -0.03349917754530907, 1.0037857294082642, -0.36068567633628845, 0.7805628776550293, -0.07090374082326889, 0.19430100917816162, 0.16877079010009766, -0.3288104832172394, 0.39320072531700134, -0.04580295830965042, -0.22228194773197174, 0.3210394084453583, -0.033162761479616165, -0.46171557903289795, -0.4319600760936737, 0.7397385239601135, -0.8385551571846008, -0.3748178780078888, -0.687583863735199, -0.3948516547679901, -0.16574609279632568, 0.5060386061668396, 0.27943700551986694, 0.46313706040382385, -0.27999916672706604, 0.40720948576927185, 0.609154462814331, -0.17761854827404022, 0.42880716919898987, 0.4146929681301117, -0.2847083508968353, -0.6710668802261353, 0.7141467928886414, 0.17738954722881317, 0.18018533289432526, 0.5830259323120117, 0.22557781636714935, -0.3562372922897339, -0.5875996351242065, -0.35907578468322754, 0.3787195384502411, -0.7815503478050232, -0.43518075346946716, -0.7071208357810974, -0.2996298372745514, -0.45766520500183105, 0.17466938495635986, -0.04233359545469284, -0.8365669846534729, -0.5451256632804871, -0.44627800583839417, 0.6508690714836121, 0.9160281419754028, -0.23702114820480347, 0.1669756919145584, -0.5581938624382019, 0.3244336247444153, 0.22917382419109344, 0.5132791996002197, -0.2977312207221985, -0.2340824156999588, -0.4012129604816437, 0.07614811509847641, -0.16828423738479614, -0.9648951292037964, 0.2497224062681198, 0.4466927647590637, 0.48737338185310364, 0.09656188637018204, -0.16949202120304108, 0.6378527879714966, -0.49838191270828247, 1.0784471035003662, 0.2509681284427643, -0.6309906840324402, 0.6336939930915833, -0.5242124199867249, 0.0499764084815979, 0.6441675424575806, 0.41398659348487854, -0.6278000473976135, 0.01742699183523655, -0.7856417298316956, -0.9132984280586243, 0.9740021228790283, 0.5088698863983154, -0.16006410121917725, -0.14565546810626984, 0.318454772233963, -0.11420387029647827, 0.11662222445011139, -0.9455048441886902, -0.6466714143753052, -0.476551353931427, -0.3878714442253113, 0.014788607135415077, -0.35406821966171265, -0.37472087144851685, -0.2516190707683563, 0.8837741017341614, 0.004641575273126364, 0.20451615750789642, 0.10067123919725418, -0.09736596792936325, 0.12509308755397797, 0.2497832477092743, 0.5016577243804932, 0.5532500743865967, -0.40144824981689453, 0.16512702405452728, 0.22412791848182678, -0.5366142392158508, 0.027409564703702927, 0.38295069336891174, -0.11202026903629303, 0.0037952102720737457, 0.5642176866531372, 0.9217214584350586, 0.22240880131721497, -0.3998418152332306, 0.6003025770187378, -0.0882595106959343, -0.4466520845890045, -0.47520747780799866, -0.11364690214395523, 0.045257020741701126, -0.15213654935359955, 0.4162684977054596, -0.1761004775762558, 0.026665275916457176, -0.3987427353858948, 0.20120659470558167, 0.1526862531900406, -0.07062623649835587, -0.38828596472740173, 0.395344078540802, 0.28089505434036255, -0.3698256015777588, 0.5237634778022766, -0.5073678493499756, -0.48027968406677246, 0.4235547184944153, 0.48353713750839233, 0.6643599271774292, 0.017798496410250664, 0.35389867424964905, 0.7060575485229492, 0.47792986035346985, -0.077253058552742, 0.45651260018348694, 0.29852500557899475, -0.895846426486969, -0.19000595808029175, -0.6911677718162537, 0.01727926731109619, 0.23202374577522278, -0.5976718068122864, 0.35180434584617615, -0.384266197681427, -0.16014844179153442, 0.14121536910533905, 0.4317663908004761, -1.0534906387329102, 0.18331225216388702, -0.06052094325423241, 0.8515065312385559, -0.8470664024353027, 0.6514887809753418, 0.6394903659820557, -0.665628969669342, -0.735516369342804, -0.09288576245307922, 0.10502537339925766, -0.6466132998466492, 0.7390791773796082, 0.07636309415102005, 0.31867319345474243, -0.11324936151504517, -0.19197112321853638, -1.1219642162322998, 1.2011336088180542, 0.0781307965517044, -0.18575091660022736, -0.3685362935066223, 0.36949726939201355, 0.5576538443565369, -0.14330698549747467, 0.20538318157196045, 0.6148328185081482, 0.7705729007720947, -0.16086514294147491, -0.9979828596115112, 0.1339910626411438, -0.3575156033039093, -0.05101446434855461, 0.07358802855014801, -0.7775629758834839, 0.72048020362854, 0.015023617073893547, -0.33590400218963623, -0.27270716428756714, 0.6409663558006287, 0.16187097132205963, -0.12830516695976257, 0.608735978603363, 0.6478584408760071, 0.8469880223274231, -0.3113332986831665, 1.0155662298202515, -0.17011167109012604, 0.46154019236564636, 1.0420973300933838, 0.027222968637943268, 0.7101648449897766, 0.34943169355392456, -0.39968833327293396, 0.6755813956260681, 0.6057528853416443, -0.19454747438430786, 0.4515848457813263, 0.0977778360247612, -0.05890367925167084, 0.05068052560091019, -0.07500442862510681, -0.33634132146835327, 0.5329428315162659, 0.4844205379486084, -0.19507156312465668, -0.14991356432437897, -0.14326314628124237, 0.37378525733947754, 0.08001331239938736, 0.01889471895992756, 0.6656965017318726, -0.029541781172156334, -0.6301419138908386, 0.7556653022766113, 0.05634007975459099, 0.6596301794052124, -0.6037964224815369, -0.14670558273792267, -0.11506041884422302, -0.06007365509867668, -0.5650764107704163, -0.9891901016235352, 0.30057087540626526, 0.11530192196369171, -0.3193187713623047, -0.34220609068870544, 0.42540374398231506, -0.5315678715705872, -0.6885482668876648, 0.23600855469703674, 0.33564436435699463, 0.24984775483608246, 0.20028170943260193, -0.8938131928443909, 0.047635678201913834, 0.20745056867599487, -0.40294861793518066, 0.00830692145973444, 0.51027911901474, 0.14638765156269073, 0.47127991914749146, 0.471503347158432, 0.17853404581546783, 0.2670186161994934, 0.18303067982196808, 0.6878403425216675, -0.8355180025100708, -0.1866859346628189, -0.6468513011932373, 0.46260321140289307, -0.6292523741722107, -0.4992905259132385, 0.9338956475257874, 0.8566964268684387, 0.8212673664093018, 0.14288099110126495, 0.7569737434387207, -0.49573051929473877, 0.6413351893424988, -0.7272492051124573, 0.5175065398216248, -0.4717903137207031, 0.19053155183792114, -0.31212812662124634, -0.8969343304634094, -0.5403422713279724, 0.6384573578834534, -0.1480824202299118, -0.018842585384845734, 0.9744100570678711, 0.7609725594520569, 0.07598032057285309, 0.06466283649206161, -0.09988698363304138, 0.306230366230011, 0.3146185576915741, 0.5797102451324463, 0.4537438750267029, -0.7645443081855774, 0.8489518165588379, -0.5775476694107056, -0.18984022736549377, -0.10957848280668259, -0.929387629032135, -1.053816795349121, -0.8625381588935852, -0.4096461534500122, -0.4566876292228699, -0.020045451819896698, 1.0191830396652222, 0.5913788676261902, -0.8276892900466919, -0.25801709294319153, -0.06454981863498688, 0.19795987010002136, -0.28526970744132996, -0.2586592435836792, 0.6969561576843262, 0.058568075299263, -0.6099595427513123, 0.3450709581375122, -0.09442811459302902, 0.03560933843255043, -0.18226635456085205, 0.06602846831083298, -0.6216040253639221, -0.27470988035202026, 0.5420039892196655, 0.1068342998623848, -0.814285397529602, -0.5166499614715576, -0.007688485085964203, -0.07933249324560165, 0.16251207888126373, 0.30441486835479736, -0.48014575242996216, 0.14250506460666656, 0.46675246953964233, 0.15324898064136505, 0.6501926779747009, -0.09310084581375122, 0.3808460831642151, -1.1556864976882935, 0.16470052301883698, 0.24398376047611237, 0.3449433743953705, 0.6670131683349609, -0.3861277401447296, 0.8600831031799316, 0.37557435035705566, -0.40182924270629883, -0.8366912007331848, 0.02793136239051819, -0.9510514140129089, -0.13410568237304688, 1.4810007810592651, 0.02091781236231327, -0.059665411710739136, -0.1779288798570633, 0.024014689028263092, 0.16070464253425598, -0.2693157494068146, 0.4519313871860504, 0.9712980389595032, -0.009837977588176727, 0.0017193421954289079, -0.4764421284198761, 0.7441858649253845, 0.1342450976371765, -0.9862816333770752, 0.17048631608486176, 0.5810185670852661, 0.4017173945903778, 0.32284924387931824, 0.7899938225746155, -0.1341729760169983, 0.05207819864153862, -0.05424022674560547, 0.390306293964386, 0.03183054178953171, -0.2768005430698395, -0.13232669234275818, 0.0567135326564312, -0.1295033097267151, -0.01050306111574173 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
CarperAI/openai_summarize_comparisons
CarperAI
2023-02-27T16:29:07Z
7,755
22
null
[ "region:us" ]
2023-02-27T16:29:07Z
2022-12-30T17:28:16.000Z
2022-12-30T17:28:16
--- dataset_info: features: - name: prompt dtype: string - name: chosen dtype: string - name: rejected dtype: string splits: - name: test num_bytes: 143018505 num_examples: 83629 - name: train num_bytes: 157425966 num_examples: 92534 - name: valid1 num_bytes: 56686271 num_examples: 33082 - name: valid2 num_bytes: 86396487 num_examples: 50715 download_size: 20257716 dataset_size: 443527229 ---
[ -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
craffel/openai_lambada
craffel
2021-10-12T20:22:47Z
7,694
1
null
[ "region:us" ]
2021-10-12T20:22:47Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
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
ethos
null
2023-06-01T14:59:56Z
7,655
11
ethos
[ "task_categories:text-classification", "task_ids:multi-label-classification", "task_ids:sentiment-classification", "annotations_creators:crowdsourced", "annotations_creators:expert-generated", "language_creators:found", "language_creators:other", "multilinguality:monolingual", "size_categories:n<1K", "source_datasets:original", "language:en", "license:agpl-3.0", "Hate Speech Detection", "arxiv:2006.08328", "region:us" ]
2023-06-01T14:59:56Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced - expert-generated language_creators: - found - other language: - en license: - agpl-3.0 multilinguality: - monolingual size_categories: - n<1K source_datasets: - original task_categories: - text-classification task_ids: - multi-label-classification - sentiment-classification paperswithcode_id: ethos pretty_name: onlinE haTe speecH detectiOn dataSet tags: - Hate Speech Detection dataset_info: - config_name: binary features: - name: text dtype: string - name: label dtype: class_label: names: '0': no_hate_speech '1': hate_speech splits: - name: train num_bytes: 124823 num_examples: 998 download_size: 123919 dataset_size: 124823 - config_name: multilabel features: - name: text dtype: string - name: violence dtype: class_label: names: '0': not_violent '1': violent - name: directed_vs_generalized dtype: class_label: names: '0': generalied '1': directed - name: gender dtype: class_label: names: '0': 'false' '1': 'true' - name: race dtype: class_label: names: '0': 'false' '1': 'true' - name: national_origin dtype: class_label: names: '0': 'false' '1': 'true' - name: disability dtype: class_label: names: '0': 'false' '1': 'true' - name: religion dtype: class_label: names: '0': 'false' '1': 'true' - name: sexual_orientation dtype: class_label: names: '0': 'false' '1': 'true' splits: - name: train num_bytes: 79112 num_examples: 433 download_size: 62836 dataset_size: 79112 config_names: - binary - multilabel --- # Dataset Card for Ethos ## 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:** [ETHOS Hate Speech Dataset](https://github.com/intelligence-csd-auth-gr/Ethos-Hate-Speech-Dataset) - **Repository:**[ETHOS Hate Speech Dataset](https://github.com/intelligence-csd-auth-gr/Ethos-Hate-Speech-Dataset) - **Paper:**[ETHOS: an Online Hate Speech Detection Dataset](https://arxiv.org/abs/2006.08328) ### Dataset Summary ETHOS: onlinE haTe speecH detectiOn dataSet. This repository contains a dataset for hate speech detection on social media platforms, called Ethos. There are two variations of the dataset: - **Ethos_Dataset_Binary**: contains 998 comments in the dataset alongside with a label about hate speech *presence* or *absence*. 565 of them do not contain hate speech, while the rest of them, 433, contain. - **Ethos_Dataset_Multi_Label** which contains 8 labels for the 433 comments with hate speech content. These labels are *violence* (if it incites (1) or not (0) violence), *directed_vs_general* (if it is directed to a person (1) or a group (0)), and 6 labels about the category of hate speech like, *gender*, *race*, *national_origin*, *disability*, *religion* and *sexual_orientation*. ***Ethos /ˈiːθɒs/*** is a Greek word meaning “character” that is used to describe the guiding beliefs or ideals that characterize a community, nation, or ideology. The Greeks also used this word to refer to the power of music to influence emotions, behaviors, and even morals. ### Supported Tasks and Leaderboards [More Information Needed] - `text-classification-other-Hate Speech Detection`, `sentiment-classification`,`multi-label-classification`: The dataset can be used to train a model for hate speech detection. Moreover, it can be used as a benchmark dataset for multi label classification algorithms. ### Languages The text in the dataset is in English. ## Dataset Structure ### Data Instances A typical data point in the binary version comprises a comment, with a `text` containing the text and a `label` describing if a comment contains hate speech content (1 - hate-speech) or not (0 - non-hate-speech). In the multilabel version more labels like *violence* (if it incites (1) or not (0) violence), *directed_vs_general* (if it is directed to a person (1) or a group (0)), and 6 labels about the category of hate speech like, *gender*, *race*, *national_origin*, *disability*, *religion* and *sexual_orientation* are appearing. An example from the binary version, which is offensive, but it does not contain hate speech content: ``` {'text': 'What the fuck stupid people !!!', 'label': '0' } ``` An example from the multi-label version, which contains hate speech content towards women (gender): ``` {'text': 'You should know women's sports are a joke', `violence`: 0, `directed_vs_generalized`: 0, `gender`: 1, `race`: 0, `national_origin`: 0, `disability`: 0, `religion`: 0, `sexual_orientation`: 0 } ``` ### Data Fields Ethos Binary: - `text`: a `string` feature containing the text of the comment. - `label`: a classification label, with possible values including `no_hate_speech`, `hate_speech`. Ethis Multilabel: - `text`: a `string` feature containing the text of the comment. - `violence`: a classification label, with possible values including `not_violent`, `violent`. - `directed_vs_generalized`: a classification label, with possible values including `generalized`, `directed`. - `gender`: a classification label, with possible values including `false`, `true`. - `race`: a classification label, with possible values including `false`, `true`. - `national_origin`: a classification label, with possible values including `false`, `true`. - `disability`: a classification label, with possible values including `false`, `true`. - `religion`: a classification label, with possible values including `false`, `true`. - `sexual_orientation`: a classification label, with possible values including `false`, `true`. ### Data Splits The data is split into binary and multilabel. Multilabel is a subset of the binary version. | | Instances | Labels | | ----- | ------ | ----- | | binary | 998 | 1 | | multilabel | 433 | 8 | ## Dataset Creation ### Curation Rationale The dataset was build by gathering online comments in Youtube videos and reddit comments, from videos and subreddits which may attract hate speech content. ### Source Data #### Initial Data Collection and Normalization The initial data we used are from the hatebusters platform: [Original data used](https://intelligence.csd.auth.gr/topics/hate-speech-detection/), but they were not included in this dataset #### Who are the source language producers? The language producers are users of reddit and Youtube. More informations can be found in this paper: [ETHOS: an Online Hate Speech Detection Dataset](https://arxiv.org/abs/2006.08328) ### Annotations #### Annotation process The annotation process is detailed in the third section of this paper: [ETHOS: an Online Hate Speech Detection Dataset](https://arxiv.org/abs/2006.08328) #### Who are the annotators? Originally anotated by Ioannis Mollas and validated through the Figure8 platform (APEN). ### Personal and Sensitive Information No personal and sensitive information included in the dataset. ## Considerations for Using the Data ### Social Impact of Dataset This dataset will help on the evolution of the automated hate speech detection tools. Those tools have great impact on preventing social issues. ### Discussion of Biases This dataset tries to be unbiased towards its classes and labels. ### Other Known Limitations The dataset is relatively small and should be used combined with larger datasets. ## Additional Information ### Dataset Curators The dataset was initially created by [Intelligent Systems Lab](https://intelligence.csd.auth.gr). ### Licensing Information The licensing status of the datasets is [GNU GPLv3](https://choosealicense.com/licenses/gpl-3.0/). ### Citation Information ``` @misc{mollas2020ethos, title={ETHOS: an Online Hate Speech Detection Dataset}, author={Ioannis Mollas and Zoe Chrysopoulou and Stamatis Karlos and Grigorios Tsoumakas}, year={2020}, eprint={2006.08328}, archivePrefix={arXiv}, primaryClass={cs.CL} } ``` ### Contributions Thanks to [@iamollas](https://github.com/iamollas) for adding this dataset.
[ -0.7079916000366211, -0.8501080274581909, -0.015565117821097374, 0.09747727960348129, -0.24409808218479156, 0.14477743208408356, -0.43242543935775757, -0.6842556595802307, 0.4652259647846222, 0.2209964096546173, -0.518175482749939, -0.8689483404159546, -0.9445456862449646, 0.0505279004573822, -0.27325618267059326, 1.3674064874649048, 0.3463660180568695, -0.023697473108768463, 0.2725399136543274, -0.4566030204296112, 0.04393512383103371, -0.5823394060134888, -0.616337239742279, 0.010768775828182697, 0.7021921277046204, 0.5198383927345276, 0.46459338068962097, 0.7476773262023926, 0.24009186029434204, 0.24172931909561157, -0.16387319564819336, 0.09683367609977722, -0.5868656635284424, 0.12828023731708527, -0.11071684956550598, 0.04827827587723732, -0.37011340260505676, 0.13031145930290222, 0.4611044228076935, 0.3163483440876007, -0.04145493358373642, 0.37452149391174316, 0.10062236338853836, 0.16477850079536438, -0.4315807819366455, 0.11193317174911499, -0.6538134217262268, 0.02084263041615486, -0.5361262559890747, 0.016293570399284363, -0.18175368010997772, -0.5586357712745667, -0.1274239718914032, -0.4970097541809082, 0.07662051916122437, 0.22002725303173065, 0.6099655628204346, 0.0749320462346077, -0.20061402022838593, -0.4849890172481537, -0.5940080285072327, 0.8566285967826843, -0.7401102185249329, 0.3148709237575531, 0.5159798264503479, 0.15740898251533508, 0.05382178723812103, -0.422516793012619, -0.9291445016860962, 0.04050561040639877, 0.01994664967060089, 0.12172337621450424, -0.24665570259094238, -0.21126064658164978, 0.42716988921165466, 0.2767912447452545, -0.3588601350784302, 0.1862533837556839, -0.6508892178535461, -0.35154446959495544, 0.7601872086524963, 0.057405825704336166, 0.23356306552886963, -0.381864458322525, -0.23117108643054962, -0.27690356969833374, -0.24848029017448425, 0.014301680028438568, 0.6831606030464172, 0.6206107139587402, -0.5195826292037964, 0.5720500946044922, -0.04700916260480881, 0.5798230767250061, -0.20473046600818634, -0.49612826108932495, 0.7600115537643433, -0.2554421126842499, -0.046387918293476105, 0.1345612108707428, 1.0500845909118652, 0.636034369468689, 0.2794322371482849, 0.21789690852165222, 0.23648197948932648, 0.3872073292732239, 0.029212085530161858, -0.810861349105835, -0.3085178732872009, 0.3292199373245239, -0.33500057458877563, -0.4589536488056183, -0.14986646175384521, -1.222296118736267, -0.5899011492729187, -0.19501441717147827, 0.12246792763471603, -0.4395477771759033, -0.4668102264404297, -0.26617810130119324, -0.41275885701179504, 0.22226153314113617, 0.08128992468118668, -0.5491722822189331, 0.27555087208747864, 0.506587028503418, 0.7145547866821289, -0.3653636574745178, -0.07166159898042679, -0.23227782547473907, 0.01991155929863453, 0.11205551773309708, 0.5858781337738037, -0.7529212832450867, -0.20597577095031738, 0.024291306734085083, 0.045144449919462204, 0.09364911913871765, -0.2949935793876648, 1.1912916898727417, -0.31560009717941284, 0.4363939166069031, -0.10769058018922806, -0.5999644994735718, -0.40340787172317505, 0.20184248685836792, -0.46410563588142395, 1.2995474338531494, -0.03134235367178917, -0.9418193101882935, 0.42061370611190796, -0.720697283744812, -0.4328964352607727, -0.05878007411956787, -0.3188387453556061, -0.800859808921814, -0.4752494990825653, -0.043906617909669876, 0.5119532346725464, -0.36782407760620117, 0.20517662167549133, -0.663057804107666, 0.05547796189785004, 0.16745810210704803, -0.04708117991685867, 1.2775540351867676, 0.45633259415626526, -0.6746547222137451, 0.0816989466547966, -1.0103758573532104, -0.08113941550254822, 0.2759428918361664, -0.17194831371307373, -0.32165127992630005, 0.11877966672182083, 0.4863075613975525, 0.35080352425575256, -0.1887679249048233, -0.8519954085350037, -0.208734929561615, -0.23874665796756744, 0.3362704813480377, 0.8653959631919861, -0.052437976002693176, -0.021328803151845932, -0.345971941947937, 0.3217063248157501, 0.00905513484030962, 0.2721705436706543, 0.26703837513923645, -0.9244243502616882, -0.7200807929039001, -0.41160112619400024, -0.005076032131910324, 0.6849209666252136, -0.34383296966552734, 0.6082078218460083, -0.22624577581882477, -0.8478292226791382, -0.34745457768440247, -0.14271490275859833, 0.4567892551422119, 0.4976614713668823, 0.5671411752700806, -0.11041270196437836, -0.9416655898094177, -0.9636774063110352, -0.11127054691314697, -0.12484356015920639, 0.22955694794654846, 0.45407068729400635, 0.8083922266960144, -0.0012046151096001267, 0.731631338596344, -0.5402970314025879, -0.3742716312408447, -0.15103018283843994, 0.17309115827083588, 0.16990333795547485, 0.30061066150665283, 0.7293135523796082, -0.9566940069198608, -0.8407480120658875, -0.23348280787467957, -0.4419691860675812, -0.2894108295440674, 0.3852842152118683, 0.03155988082289696, 0.047147296369075775, 0.2239033728837967, 0.04691140726208687, 0.40882155299186707, 0.5163111090660095, -0.44727078080177307, 0.45839789509773254, 0.4227270185947418, 0.42351868748664856, -1.1994014978408813, -0.09614165872335434, 0.21539902687072754, -0.04804736003279686, -0.8396148085594177, -0.3453868627548218, -0.3166883885860443, 0.08644269406795502, -0.6116667985916138, 0.26532065868377686, 0.07517893612384796, 0.12914063036441803, -0.050180334597826004, 0.21547023952007294, -0.23404286801815033, 0.7404009103775024, 0.009602343663573265, 0.5665987730026245, 0.6546241641044617, -0.9554158449172974, 0.5080546736717224, 0.26885518431663513, -0.31491851806640625, 0.9834362268447876, -0.5408627390861511, 0.21466465294361115, -0.29713162779808044, 0.13935688138008118, -0.9976698160171509, -0.33924394845962524, 0.9606219530105591, -0.7155505418777466, -0.10651849955320358, -0.06347853690385818, -0.5510897040367126, -0.421732097864151, -0.6800888180732727, 0.27183327078819275, 0.14174917340278625, -0.17237460613250732, 0.5144295692443848, 1.0942529439926147, -0.05203846096992493, -0.6104281544685364, -0.6230600476264954, -0.18472018837928772, -0.6006839871406555, -0.4399243891239166, 0.5184422135353088, -0.32342204451560974, -0.3472769856452942, -0.010910349898040295, 0.3787647783756256, -0.029346058145165443, 0.03447648137807846, 0.4850919544696808, -0.004033775068819523, 0.1320495903491974, 0.0831647589802742, -0.19851651787757874, 0.2582751512527466, 0.04950181022286415, -0.12020495533943176, 0.6268540024757385, 0.0424322746694088, -0.08306749910116196, -0.37245088815689087, 0.35645902156829834, 0.2958914041519165, 0.05450551211833954, 0.8184343576431274, 0.916393518447876, -0.5028547048568726, -0.062046539038419724, -0.438289612531662, 0.034044258296489716, -0.35143253207206726, 0.27049529552459717, -0.12128955870866776, -0.8693965077400208, 0.6347848176956177, 0.42203670740127563, 0.2406303584575653, 0.8581757545471191, 0.7691397666931152, -0.07887386530637741, 0.6756628155708313, 0.32836684584617615, -0.18738575279712677, 0.4867342412471771, -0.131433367729187, 0.16651806235313416, -0.550538182258606, -0.4947105646133423, -0.9658430218696594, -0.4107570946216583, -0.8214489817619324, -0.5415337085723877, 0.33356353640556335, -0.2920960485935211, -0.5166260600090027, 0.5283796191215515, -0.8403530120849609, 0.27346181869506836, 0.5413711667060852, -0.15569354593753815, 0.022646095603704453, 0.33927831053733826, -0.0717071145772934, -0.392473965883255, -0.46612587571144104, -0.24176909029483795, 1.117637038230896, 0.3648329973220825, 0.2932836711406708, 0.3714497685432434, 0.3315488398075104, 0.7207427620887756, 0.26347506046295166, -0.6204338669776917, 0.5312320590019226, -0.11914180964231491, -0.9420211315155029, -0.312691867351532, -0.40167519450187683, -0.9209734201431274, 0.21676713228225708, -0.35759779810905457, -0.9522086977958679, 0.27120688557624817, 0.05481269210577011, -0.28447437286376953, 0.5395418405532837, -0.38321805000305176, 0.6598600149154663, -0.10114838927984238, -0.2655191719532013, -0.3118085563182831, -0.6541768312454224, 0.1919206827878952, -0.031743403524160385, 0.7153530716896057, -0.36396607756614685, 0.08158130198717117, 1.4183214902877808, -0.3119388222694397, 1.0381191968917847, -0.15444305539131165, -0.028666602447628975, 0.4244058132171631, -0.4608474373817444, 0.32845449447631836, -0.426909863948822, -0.2572322487831116, 0.4284489154815674, -0.3412509858608246, 0.03932318463921547, -0.14763084053993225, 0.6777432560920715, -0.8196948766708374, -0.031378258019685745, -0.5130307078361511, -0.0766565278172493, -0.036599744111299515, 0.14823366701602936, 0.42088574171066284, 0.3578783869743347, -0.20289823412895203, 0.32895219326019287, 0.798464834690094, -0.5111740231513977, 0.10461313277482986, 0.4484446346759796, -0.25971996784210205, -0.9782187938690186, 0.9149523377418518, 0.340690940618515, -0.0028851220849901438, 0.11714401841163635, 0.2562772035598755, -0.4095200300216675, -0.2889884114265442, -0.4281589984893799, 0.052567008882761, -0.8128889799118042, -0.17503470182418823, -1.0522701740264893, -0.14434613287448883, -0.6373351216316223, 0.2090291529893875, -0.042453911155462265, -0.6029399037361145, -0.14089828729629517, -0.2203589677810669, 0.8728591799736023, 0.6813859343528748, -0.5024341940879822, 0.38837525248527527, -0.16315382719039917, 0.6382589340209961, 0.0893922746181488, 0.4075288474559784, -0.08622751384973526, -0.9097263813018799, -0.2254243642091751, 0.11426089704036713, -0.43961286544799805, -1.2812598943710327, 0.23287495970726013, 0.2910275161266327, 0.485452800989151, 0.2247517853975296, 0.1925591230392456, 0.5035473108291626, -0.26312029361724854, 0.8531313538551331, 0.23636403679847717, -0.5587912201881409, 0.6897309422492981, -0.4435059130191803, -0.21443411707878113, 0.47644534707069397, 0.753972053527832, -0.6460927724838257, -0.636306643486023, -0.8898462057113647, -1.0265729427337646, 1.014296293258667, 0.5163036584854126, -0.04551566392183304, -0.15352249145507812, -0.1798112541437149, 0.03994201496243477, 0.25947272777557373, -1.1388522386550903, -1.247057557106018, -0.28228992223739624, -0.21691565215587616, 0.12272834032773972, -0.3179214894771576, -0.2790405750274658, -0.6600391864776611, 1.125903606414795, 0.3393431603908539, 0.36008405685424805, -0.1476055085659027, 0.06325213611125946, 0.1201346293091774, 0.4120417535305023, 0.5650895833969116, 0.3042401373386383, -0.1715664118528366, 0.1341324895620346, 0.1965072751045227, -0.5912821292877197, 0.06445611268281937, 0.17405618727207184, -0.33821621537208557, 0.09516653418540955, -0.0011818743078038096, 0.8769477605819702, 0.08642763644456863, -0.29490455985069275, 0.4038529098033905, 0.09747212380170822, -0.25251346826553345, -0.6653143167495728, 0.032092705368995667, -0.12684513628482819, 0.028181759640574455, 0.383242666721344, -0.11458826065063477, 0.2888578772544861, -0.4032624661922455, 0.3747994601726532, 0.16871938109397888, -0.2662676274776459, -0.13559330999851227, 0.7517871856689453, 0.11839611083269119, -0.49425527453422546, 0.1183646097779274, -0.4418330788612366, -0.6954556703567505, 0.5689768195152283, 0.32954317331314087, 0.6548694968223572, -0.3051935136318207, 0.41830766201019287, 0.8962417840957642, 0.45253005623817444, 0.41801536083221436, 0.37678325176239014, -0.030336111783981323, -0.8813566565513611, -0.2339121550321579, -0.7943230271339417, -0.27341318130493164, 0.5225836634635925, -0.4667194187641144, 0.29263272881507874, -0.6613574028015137, -0.35156121850013733, 0.46433117985725403, -0.05176471546292305, -0.6769232749938965, 0.24349868297576904, 0.5274955034255981, 0.5118740797042847, -0.9805346131324768, 0.6059800386428833, 0.5921937823295593, -0.39729660749435425, -0.7020159363746643, -0.37757813930511475, 0.3913690447807312, -0.5437697172164917, 0.44616490602493286, 0.2211330384016037, -0.26820680499076843, -0.11051296442747116, -0.6926379799842834, -0.6735564470291138, 0.5572840571403503, 0.09195849299430847, -0.36751604080200195, 0.635373055934906, 0.4307310879230499, 0.5878328680992126, -0.3659539818763733, 0.39351317286491394, 0.44708487391471863, 0.7064343094825745, -0.031685009598731995, -0.7177497148513794, 0.019457446411252022, -0.35909953713417053, -0.32426488399505615, -0.0036279410123825073, -0.6396698951721191, 0.8490412831306458, 0.22070589661598206, -0.2275666892528534, -0.5515427589416504, 0.6437448263168335, 0.2589724659919739, 0.44424962997436523, 0.7077865600585938, 0.8197628855705261, 0.9048613905906677, -0.14018625020980835, 0.8196626305580139, -0.1679571121931076, 0.3079940378665924, 1.2598159313201904, 0.11988546699285507, 0.6292033791542053, 0.019212109968066216, -0.45216453075408936, 0.5679638981819153, 0.5113760232925415, -0.15917883813381195, 0.3923935294151306, 0.19864293932914734, -0.2585829794406891, -0.05572030693292618, -0.5030884146690369, -0.5305315852165222, 0.4780232906341553, 0.6132381558418274, -0.5006816387176514, -0.07578285038471222, 0.11526276171207428, 0.40979379415512085, 0.2185414880514145, -0.3756297826766968, 0.7471907138824463, -0.10967732965946198, -0.368606835603714, 0.5376898646354675, 0.2708032429218292, 0.9860883355140686, -0.463244765996933, 0.05906539782881737, 0.2806628942489624, 0.034503024071455, -0.4233221113681793, -0.9731271862983704, 0.5218338966369629, 0.27613168954849243, -0.21063362061977386, -0.22754770517349243, 0.6054385900497437, -0.4183318018913269, -0.40190091729164124, 0.49198001623153687, 0.02270096354186535, 0.4303518831729889, 0.04788931459188461, -1.0367459058761597, 0.5193983912467957, 0.3174290060997009, -0.13456092774868011, 0.08652952313423157, 0.2737533450126648, 0.05460021644830704, 0.40967851877212524, 0.5392441153526306, 0.10556494444608688, 0.1954675018787384, 0.138619065284729, 0.8521875739097595, -0.6838112473487854, -0.42765721678733826, -0.954525887966156, 0.45287567377090454, -0.6129611730575562, -0.5474581122398376, 1.0141571760177612, 0.8202666640281677, 1.0856552124023438, 0.2266554832458496, 1.0514928102493286, -0.7503743767738342, 1.006453275680542, -0.029581671580672264, 0.4207610785961151, -0.5016452670097351, -0.1006552129983902, -0.601047933101654, -0.8057511448860168, -0.346428781747818, 0.8167763948440552, -0.40909045934677124, -0.10993005335330963, 0.3349171280860901, 0.888832688331604, -0.03540389984846115, 0.30512022972106934, 0.06329712271690369, 0.45369940996170044, 0.2891427278518677, 0.19179271161556244, 0.5327048897743225, -0.5429190397262573, 0.6733666658401489, -0.4914136826992035, -0.21495980024337769, -0.20233476161956787, -0.778042733669281, -0.7160593867301941, -0.7248079180717468, -0.6389225721359253, -0.6337924003601074, -0.12457920610904694, 1.0611625909805298, 0.5857582688331604, -1.178603172302246, -0.29000037908554077, 0.4507693648338318, 0.25737980008125305, -0.18333670496940613, -0.27131780982017517, 0.21203693747520447, 0.39730045199394226, -0.840044379234314, 0.15293002128601074, 0.12251904606819153, -0.14214608073234558, -0.05416855216026306, -0.1642002910375595, -0.44248953461647034, -0.05095940828323364, 0.7145522832870483, 0.4285818040370941, -0.6327887773513794, -0.3015533983707428, -0.37748244404792786, -0.0470598042011261, 0.210633784532547, 0.3557471036911011, -0.4165664613246918, 0.2343372106552124, 0.3906247615814209, 0.4226495027542114, 0.5236473679542542, -0.13012103736400604, -0.09418988972902298, -0.701930820941925, 0.2907557189464569, 0.3428373336791992, 0.262712687253952, 0.3494424819946289, -0.21182280778884888, 0.5015501379966736, 0.4469759464263916, -0.3724116086959839, -0.7885496616363525, 0.24589252471923828, -1.015364646911621, -0.012060402892529964, 1.364667534828186, 0.1137634813785553, -0.1627582609653473, -0.5948929190635681, -0.15208598971366882, 0.4391798675060272, -0.7679298520088196, 0.5340917706489563, 0.7373027801513672, 0.012818234041333199, -0.004783055745065212, -0.5849037766456604, 0.7375151515007019, -0.008226524107158184, -0.779274046421051, 0.019479626789689064, 0.7008565664291382, 0.2610873878002167, 0.38252994418144226, 0.8837389945983887, -0.11624068766832352, -0.09744113683700562, -0.13179263472557068, 0.2509516477584839, 0.18549036979675293, -0.23455923795700073, -0.025059647858142853, 0.4000394940376282, -0.3335665762424469, -0.20428499579429626 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mteb/sts13-sts
mteb
2022-09-27T19:12:02Z
7,601
1
null
[ "language:en", "region:us" ]
2022-09-27T19:12:02Z
2022-04-20T10:47:41.000Z
2022-04-20T10:47:41
--- 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
shahules786/orca-best
shahules786
2023-08-25T14:48:40Z
7,584
44
null
[ "region:us" ]
2023-08-25T14:48:40Z
2023-08-12T05:48:30.000Z
2023-08-12T05:48:30
--- dataset_info: features: - name: cluster struct: - name: samples list: - name: input dtype: string - name: output dtype: string - name: source dtype: string - name: instruction dtype: string - name: num_samples dtype: int64 splits: - name: train num_bytes: 900092818 num_examples: 328906 download_size: 462629849 dataset_size: 900092818 --- ## Best of Orca This is a filtered version of Orca GPT4 1M instructions. From repeated experiments and analysis, I came to the conclusion that original dataset contains a lot of low-quality instructions which contributes to only poor generalization. The solution I came up with is to filter the dataset and remove the unwanted samples. I applied two levels of filters 1. Removed instructions with less than 100 tokens in response. 2. Data deduplication grouped by instruction type using GTE embedding and cosine similarity (threshold>0.95) After these two steps, the number of samples was reduced to 1/3rd of the original count. For selecting a sample from each cluster, I tried different methods including random selection from a cluster. We used this dataset to train multiple Open-Assistant models to confirm my hypothesis that data quality matter more than quantity. This dataset was used in some of our models best models including https://huggingface.co/OpenAssistant/llama2-70b-oasst-sft-v10 ⭐️ All models perform much better than models trained on full ORCA samples. ## Credits * This wouldn't be possible without the amazing work of Eric in recreating the ORCA dataset. Check it out: https://huggingface.co/datasets/ehartford/dolphin * This dataset was created in association with the Open-Assistant team @jordanclive and @andreaskoepf ## Citations ``` @misc{Orca-best, title = {Orca-best: A filtered version of orca gpt4 dataset.}, author = {Shahul Es}, year = {2023}, publisher = {HuggingFace}, journal = {HuggingFace repository}, howpublished = {\url{https://huggingface.co/datasets/shahules786/orca-best/}, } ```
[ -0.5279776453971863, -0.6203286647796631, 0.29075977206230164, -0.11472039669752121, -0.46353378891944885, -0.30206334590911865, 0.2671467661857605, -0.5638473629951477, 0.1630900651216507, 0.5665708184242249, -0.3761858642101288, -0.7711646556854248, -0.6143315434455872, 0.13858407735824585, -0.460930734872818, 1.157626986503601, -0.057933468371629715, 0.152565598487854, 0.02210836112499237, -0.6344313621520996, -0.2869645655155182, -0.1746969223022461, -1.230008602142334, -0.3540331721305847, 0.26853466033935547, 0.285160094499588, 0.6166538000106812, 0.9057701826095581, 0.3150079846382141, 0.1958160251379013, -0.37518829107284546, 0.3808712065219879, -0.7303768396377563, -0.39074432849884033, -0.130589097738266, -0.32250523567199707, -0.7759805917739868, 0.21387691795825958, 0.19372102618217468, 0.5013402104377747, -0.3218688666820526, 0.16982422769069672, 0.21579132974147797, 0.6333247423171997, -0.35526514053344727, 0.2783743143081665, -0.07924871146678925, 0.041517000645399094, -0.1959141343832016, -0.028422662988305092, -0.037192974239587784, -0.6352041959762573, 0.019064217805862427, -0.8954686522483826, 0.3614215850830078, -0.12404870986938477, 0.9091339707374573, 0.2716280221939087, -0.36310479044914246, -0.30137598514556885, -0.5112792253494263, 0.901361882686615, -0.7156072854995728, 0.07412613183259964, 0.5401848554611206, 0.07276999205350876, -0.443518728017807, -0.4571007490158081, -0.3845875561237335, -0.06622783839702606, 0.1667793244123459, 0.2826218903064728, -0.09913237392902374, 0.012685421854257584, 0.251757949590683, 0.5615363121032715, -0.774559736251831, 0.2534622251987457, -0.5935209393501282, -0.15901987254619598, 0.5952677130699158, -0.10157936811447144, 0.1258983016014099, 0.12631265819072723, -0.28844091296195984, -0.5829914212226868, -0.7459169030189514, 0.14858192205429077, 0.5704071521759033, 0.11604186147451401, -0.24253663420677185, 0.5279544591903687, -0.24442678689956665, 0.49573373794555664, 0.0013364895712584257, -0.3104802966117859, 0.3241991400718689, -0.36345675587654114, -0.2588688135147095, -0.11221586167812347, 0.550011396408081, 0.16048967838287354, 0.1320631057024002, 0.16084621846675873, -0.24706625938415527, -0.08228396624326706, 0.21650798618793488, -0.5021273493766785, -0.34496361017227173, 0.21226397156715393, -0.8365767002105713, -0.31733301281929016, 0.3078037202358246, -0.560606062412262, -0.17884285748004913, -0.31555598974227905, 0.1815539300441742, -0.25524353981018066, -0.17238233983516693, 0.41345733404159546, -0.008376553654670715, 0.21342968940734863, 0.2735297679901123, -0.6743446588516235, 0.5344048738479614, 0.5078721046447754, 0.624834418296814, -0.10393698513507843, -0.16222122311592102, -0.4900379180908203, -0.009040492586791515, -0.33177870512008667, 0.7907460927963257, -0.36721763014793396, -0.6305596232414246, -0.448284387588501, -0.03690474480390549, 0.16509951651096344, -0.6328368186950684, 0.6526944041252136, -0.5003703832626343, 0.4607221484184265, -0.5013941526412964, -0.3298301100730896, -0.406931608915329, -0.1668153554201126, -0.8251081109046936, 1.166167974472046, 0.25231367349624634, -0.4012475311756134, 0.6090000867843628, -1.0013881921768188, -0.17012366652488708, -0.2924184501171112, -0.1271974891424179, -0.519812822341919, 0.11976348608732224, 0.6171999573707581, 0.10253793746232986, -0.21929389238357544, -0.10218173265457153, -0.5984821319580078, -0.22717039287090302, -0.3386659622192383, -0.017369115725159645, 0.8937135338783264, 0.3243955671787262, -0.28796929121017456, 0.02396327629685402, -0.823840856552124, -0.20368032157421112, 0.25761938095092773, -0.40051934123039246, -0.43023401498794556, -0.2793694734573364, -0.33261048793792725, 0.09536609053611755, -0.028131140395998955, -0.8498756885528564, 0.4120955169200897, -0.19948433339595795, 0.5302647352218628, 0.7108764052391052, 0.23010502755641937, 0.36329248547554016, -0.44389694929122925, 0.5748547911643982, -0.11587738245725632, 0.6025389432907104, 0.2502371370792389, -0.8093200325965881, -0.4880431592464447, -0.41359782218933105, 0.13839061558246613, 0.16267190873622894, -0.7256410121917725, 0.40450575947761536, -0.0010209534084424376, -0.3938872516155243, -0.746823251247406, 0.06281448155641556, 0.510503351688385, 0.5784730911254883, 0.6033482551574707, -0.9925169348716736, -0.20214740931987762, -0.7466593980789185, 0.19699537754058838, -0.004825755022466183, -0.013322141021490097, 0.4013271927833557, 0.437074214220047, 0.21088288724422455, 0.9011929631233215, -0.4138890206813812, -0.3643052577972412, 0.030061284080147743, 0.13903720676898956, 0.3375844955444336, 0.6153190732002258, 0.7948786020278931, -0.713151216506958, -0.08724837005138397, -0.3109981417655945, -0.7745091319084167, -0.006533531937748194, 0.17968180775642395, -0.37355923652648926, 0.20653462409973145, 0.365953266620636, -0.47966426610946655, 0.8227200508117676, 0.3486160337924957, -0.05756083503365517, 0.2985925078392029, -0.4135948419570923, 0.2524925172328949, -0.7192385196685791, 0.2693362832069397, -0.14413264393806458, -0.1419869065284729, -0.09167152643203735, 0.14151214063167572, -0.26389846205711365, -0.06634483486413956, -0.2749987244606018, 0.4352341890335083, -0.5383822321891785, -0.20876182615756989, -0.28455424308776855, -0.08934663236141205, 0.049259476363658905, 0.4643787443637848, 0.014699173159897327, 0.5682870745658875, 0.5759584903717041, -0.5572556257247925, 0.25738316774368286, 0.6525254249572754, -0.32168498635292053, 0.5272326469421387, -0.9742948412895203, 0.544182300567627, -0.2772481441497803, 0.5331255793571472, -1.0927650928497314, -0.1855916678905487, 0.32678428292274475, -0.2294624149799347, 0.3279212415218353, -0.18284043669700623, -0.5431082844734192, -0.3956396281719208, -0.5361357927322388, 0.2933928668498993, 0.3522047698497772, -0.8495460152626038, 0.2757757306098938, 0.39414182305336, -0.05879778042435646, -0.5243293046951294, -0.6533972024917603, -0.29813122749328613, -0.18420465290546417, -0.43668127059936523, 0.2844283878803253, -0.08174916356801987, 0.2688301205635071, 0.12196549028158188, -0.46031129360198975, -0.10640139877796173, -0.12277068197727203, 0.15929432213306427, 0.2808086574077606, -0.2217700034379959, -0.13064971566200256, 0.32483214139938354, -0.17032606899738312, -0.02637474238872528, -0.3443707227706909, 0.43742239475250244, 0.03442918136715889, -0.613471269607544, -0.3842586874961853, 0.2015753537416458, 0.39263415336608887, -0.11382736265659332, 0.692134439945221, 0.6961231827735901, -0.1798972487449646, 0.02311987802386284, -0.31049463152885437, -0.36381223797798157, -0.44053223729133606, 0.07616037875413895, -0.4240652620792389, -0.6895174980163574, 0.5430566668510437, 0.5496461391448975, 0.351251482963562, 0.4611903727054596, -0.06264444440603256, 0.05920078977942467, 0.9529480338096619, 0.46450161933898926, -0.5331036448478699, 0.4552297592163086, -0.6751781702041626, -0.004733907990157604, -0.8083785772323608, -0.3648320734500885, -0.5491374135017395, -0.2677976191043854, -0.523320198059082, -0.00647405069321394, 0.6377043724060059, 0.10958526283502579, -0.26751911640167236, 0.5331066250801086, -0.8490954041481018, 0.4233334958553314, 0.7639861106872559, 0.6910372376441956, 0.25380411744117737, 0.16099582612514496, 0.033139798790216446, 0.4760066866874695, -0.8093210458755493, -0.6970361471176147, 1.3348724842071533, 0.2830921411514282, 0.7231626510620117, 0.1390027552843094, 0.9381441473960876, 0.29432469606399536, 0.19158011674880981, -0.2282310575246811, 0.5649887323379517, -0.36089929938316345, -0.43318822979927063, -0.49625977873802185, -0.6018277406692505, -1.284212350845337, -0.07453183829784393, 0.13812561333179474, -0.5706914663314819, 0.35483598709106445, 0.1399325430393219, -0.49361857771873474, 0.3145767152309418, -0.5019006133079529, 0.7814242839813232, 0.14703024923801422, -0.10315748304128647, -0.1817680299282074, -0.6618149876594543, 0.26475754380226135, -0.020818980410695076, 0.005340831819921732, 0.05182958394289017, -0.3127126097679138, 0.7031857371330261, -0.7672657370567322, 0.622963547706604, -0.3473781645298004, -0.24137140810489655, 0.5736094117164612, -0.2385885864496231, 0.4002404510974884, -0.07136435061693192, -0.1954287588596344, 0.28054341673851013, 0.00391886942088604, -0.7713038325309753, -0.16537095606327057, 0.7143481969833374, -0.9959287643432617, 0.005731610115617514, -0.22733113169670105, -0.007059818133711815, 0.12493787705898285, 0.00924598891288042, 0.5175192952156067, 0.7231688499450684, -0.04211007058620453, -0.06642921268939972, 0.6047261357307434, -0.4694072902202606, 0.2167525440454483, 0.4679524600505829, 0.1301066279411316, -0.4734472334384918, 0.8235905170440674, 0.2787705957889557, 0.1148664578795433, 0.19678635895252228, 0.08212012052536011, -0.4385802447795868, -0.73433917760849, -0.49311697483062744, 0.43535128235816956, -0.5332685112953186, -0.0414295569062233, -0.5218563079833984, 0.11199615895748138, -0.619496762752533, 0.22708699107170105, -0.34625449776649475, -0.42319557070732117, -0.6402894258499146, -0.14536221325397491, 0.3009851574897766, 0.9217314720153809, -0.28572791814804077, 0.2755517065525055, -0.6523688435554504, 0.47256842255592346, 0.21328765153884888, 0.2072591334581375, 0.06840763241052628, -0.6497684717178345, 0.08107324689626694, 0.11801184713840485, -0.46584388613700867, -0.5517406463623047, 0.2930861711502075, 0.21435941755771637, 0.811540424823761, 0.22529134154319763, 0.04645377770066261, 0.6689584255218506, 0.21948665380477905, 0.9365336298942566, -0.1068408191204071, -0.5810706615447998, 0.5615794062614441, -0.4099249541759491, 0.4097176790237427, 0.6694221496582031, 0.5103765726089478, 0.10598243772983551, -0.39522525668144226, -0.931466817855835, -1.0691403150558472, 0.9929600954055786, 0.25929901003837585, -0.20935219526290894, 0.06965482980012894, 0.575495719909668, 0.46051865816116333, 0.33284908533096313, -0.4326556324958801, -0.26192033290863037, -0.17745549976825714, 0.04145780950784683, -0.030981142073869705, -0.07945646345615387, 0.15678063035011292, -0.007083139382302761, 1.0041030645370483, 0.023437580093741417, 0.46563807129859924, 0.22564032673835754, 0.19375258684158325, -0.13629190623760223, -0.10823484510183334, 0.6032081842422485, 0.5634138584136963, -0.27506762742996216, -0.2943981885910034, 0.12094943970441818, -0.651708722114563, -0.22665797173976898, -0.026221133768558502, 0.012676031328737736, -0.08644819259643555, 0.4005967378616333, 0.5250698924064636, -0.2343118041753769, -0.21900257468223572, 0.267466276884079, -0.02362067438662052, -0.012250317260622978, 0.031518060714006424, 0.35426196455955505, -0.3631333112716675, -0.04438158497214317, 0.15640802681446075, 0.18265073001384735, 0.4335249662399292, -0.5431855320930481, 0.09393980354070663, -0.00520720798522234, 0.026317132636904716, -0.29335135221481323, 0.6750345826148987, 0.07171042263507843, 0.16168023645877838, 0.709588885307312, -0.3904683589935303, -0.1386905163526535, 0.8345955014228821, -0.10125281661748886, 0.6100006103515625, -0.3406212329864502, 0.11964991688728333, 0.5835581421852112, 0.14381113648414612, -0.46195754408836365, 0.6818622946739197, -0.10965068638324738, -0.44610795378685, -0.36382803320884705, -0.3743787407875061, -0.4526616036891937, 0.5990332365036011, -1.082136631011963, 0.09026677161455154, -0.4206187129020691, -0.157267227768898, -0.002451653592288494, -0.021101340651512146, -0.6973736882209778, 0.23842719197273254, -0.19143140316009521, 1.019264817237854, -1.0211939811706543, 0.6746847629547119, 0.6745660901069641, -0.6962069869041443, -1.05391263961792, -0.47469764947891235, 0.13698792457580566, -0.8177526593208313, 0.2087833434343338, -0.07918945699930191, 0.07517822831869125, -0.1264084130525589, -0.8241822719573975, -0.7537948489189148, 0.9836241006851196, 0.4448331892490387, -0.1968829184770584, 0.11668496578931808, -0.06955137848854065, 0.5942490696907043, -0.3972930610179901, 0.558212161064148, 0.7702789306640625, 0.4502505660057068, 0.14908663928508759, -1.0846558809280396, -0.06678194552659988, -0.2052498161792755, 0.04299568012356758, -0.016973674297332764, -0.7943588495254517, 0.8765467405319214, -0.18309839069843292, 0.084568552672863, 0.5883598327636719, 0.4537298083305359, 0.22551551461219788, 0.44372379779815674, 0.45607665181159973, 0.787796139717102, 0.7481642961502075, 0.07635116577148438, 1.168027400970459, 0.20833617448806763, 0.3237171471118927, 1.174886703491211, -0.13431839644908905, 0.4511207938194275, 0.1261412650346756, -0.17002911865711212, 0.2895885705947876, 0.9363412857055664, -0.10589336603879929, 0.8731238842010498, 0.06164837256073952, 0.0896385982632637, 0.19229891896247864, -0.08401478081941605, -0.4499179422855377, 0.3396659791469574, 0.000006717928499710979, -0.5057016611099243, -0.49050337076187134, 0.2262871414422989, -0.006268821656703949, -0.2457807958126068, -0.2573896646499634, 1.0149167776107788, 0.0016056954627856612, -0.5595561265945435, 0.8944211602210999, -0.17784589529037476, 0.36056897044181824, -0.47624820470809937, -0.2516717314720154, -0.6513336300849915, -0.004619253799319267, -0.3917098045349121, -0.7858490347862244, 0.10909475386142731, -0.0004032194265164435, -0.13657590746879578, -0.38626566529273987, 0.3833983838558197, -0.3138211667537689, 0.19229556620121002, 0.1885806769132614, 0.3373401165008545, 0.9977332949638367, -0.04445218667387962, -0.7587805986404419, 0.08189583569765091, 0.2781065106391907, -0.43471038341522217, 0.3306223452091217, 0.3655548095703125, -0.1064852923154831, 0.5943224430084229, 0.6266595721244812, 0.23892445862293243, -0.10668446868658066, 0.07981352508068085, 1.0788387060165405, -0.16874566674232483, -0.3552500307559967, -0.4203954041004181, 0.19747662544250488, -0.16368700563907623, -0.7203109264373779, 0.5836576819419861, 0.7981863021850586, 1.1195521354675293, -0.1246223971247673, 0.6193733811378479, -0.08337884396314621, 0.6224539279937744, -0.46501317620277405, 0.4632170498371124, -0.538978099822998, 0.3438262939453125, -0.26386120915412903, -1.0644017457962036, 0.16898714005947113, 0.8088799715042114, -0.35268887877464294, 0.4250222146511078, 0.5276053547859192, 1.0317697525024414, -0.4251219928264618, 0.4192097783088684, 0.06950917094945908, 0.10954830050468445, 0.4502747058868408, 0.5812349915504456, 0.43242204189300537, -0.5033677220344543, 0.5911349058151245, -0.3080724775791168, -0.4527582824230194, -0.16071774065494537, -0.7484159469604492, -0.6753783822059631, -0.22683250904083252, -0.5146040916442871, -0.3019786477088928, 0.13720138370990753, 0.8056150078773499, 0.9825072288513184, -0.9493196606636047, -0.1262889802455902, -0.2731691896915436, -0.1392458975315094, -0.4450826644897461, -0.15444223582744598, 0.6531773805618286, 0.058687973767519, -0.6192266345024109, 0.526458740234375, 0.012485915794968605, 0.27379563450813293, 0.014043697156012058, -0.038635119795799255, 0.1386667937040329, -0.12116283178329468, 0.37002211809158325, 0.6151242852210999, -0.29099246859550476, -0.37592223286628723, -0.23201791942119598, -0.22897200286388397, 0.05296211689710617, 0.2820144295692444, -0.5960760712623596, 0.37948447465896606, 0.25108471512794495, 0.19810551404953003, 0.8036569356918335, 0.09770019352436066, 0.24770143628120422, -0.45454809069633484, -0.0736696720123291, 0.19168254733085632, 0.3730149567127228, 0.1856299638748169, -0.2858898341655731, 1.0902289152145386, 0.15185345709323883, -0.599659264087677, -0.5607596039772034, -0.11037100106477737, -1.2488831281661987, -0.06765779852867126, 1.0876463651657104, -0.4566679298877716, -0.29797059297561646, -0.14580963551998138, -0.4803812801837921, 0.20512539148330688, -0.9601793885231018, 0.9193833470344543, 0.45398715138435364, -0.4237782657146454, 0.18667453527450562, -0.40266236662864685, 0.29419955611228943, 0.16160674393177032, -0.8888710141181946, -0.4205339848995209, 0.4431774318218231, 0.3223309814929962, 0.06259889900684357, 0.47980499267578125, -0.37592607736587524, 0.3311057686805725, -0.11216379702091217, -0.029229404404759407, -0.5175421237945557, -0.21867474913597107, -0.41027554869651794, 0.23012253642082214, -0.10649148374795914, -0.7113186120986938 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
graelo/wikipedia
graelo
2023-09-10T06:10:08Z
7,473
53
null
[ "task_categories:text-generation", "task_categories:fill-mask", "task_ids:language-modeling", "task_ids:masked-language-modeling", "annotations_creators:no-annotation", "language_creators:crowdsourced", "multilinguality:multilingual", "size_categories:n<1K", "size_categories:1K<n<10K", "size_categories:10K<n<100K", "size_categories:100K<n<1M", "size_categories:1M<n<10M", "source_datasets:original", "language:ab", "language:ace", "language:ady", "language:af", "language:ak", "language:als", "language:alt", "language:am", "language:ami", "language:an", "language:ang", "language:anp", "language:ar", "language:arc", "language:ary", "language:arz", "language:as", "language:ast", "language:atj", "language:av", "language:avk", "language:awa", "language:ay", "language:az", "language:azb", "language:ba", "language:ban", "language:bar", "language:bcl", "language:be", "language:bg", "language:bh", "language:bi", "language:bjn", "language:blk", "language:bm", "language:bn", "language:bo", "language:bpy", "language:br", "language:bs", "language:bug", "language:bxr", "language:ca", "language:cdo", "language:ce", "language:ceb", "language:ch", "language:cho", "language:chr", "language:chy", "language:ckb", "language:co", "language:cr", "language:crh", "language:cs", "language:csb", "language:cu", "language:cv", "language:cy", "language:da", "language:dag", "language:de", "language:din", "language:diq", "language:dsb", "language:dty", "language:dv", "language:dz", "language:ee", "language:el", "language:eml", "language:eo", "language:es", "language:et", "language:eu", "language:ext", "language:fa", "language:fat", "language:ff", "language:fi", "language:fj", "language:fo", "language:fr", "language:frp", "language:frr", "language:fur", "language:fy", "language:ga", "language:gag", "language:gan", "language:gcr", "language:gd", "language:gl", "language:glk", "language:gn", "language:gom", "language:gor", "language:got", "language:gu", "language:guc", "language:gur", "language:guw", "language:gv", "language:ha", "language:hak", "language:haw", "language:he", "language:hi", "language:hif", "language:ho", "language:hr", "language:hsb", "language:ht", "language:hu", "language:hy", "language:hyw", "language:ia", "language:id", "language:ie", "language:ig", "language:ii", "language:ik", "language:ilo", "language:inh", "language:io", "language:is", "language:it", "language:iu", "language:ja", "language:jam", "language:jbo", "language:jv", "language:ka", "language:kaa", "language:kab", "language:kbd", "language:kbp", "language:kcg", "language:kg", "language:ki", "language:kj", "language:kk", "language:kl", "language:km", "language:kn", "language:ko", "language:koi", "language:krc", "language:ks", "language:ksh", "language:ku", "language:kv", "language:kw", "language:ky", "language:la", "language:lad", "language:lb", "language:lbe", "language:lez", "language:lfn", "language:lg", "language:li", "language:lij", "language:lld", "language:lmo", "language:ln", "language:lo", "language:lrc", "language:lt", "language:ltg", "language:lv", "language:mad", "language:mai", "language:mdf", "language:mg", "language:mh", "language:mhr", "language:mi", "language:min", "language:mk", "language:ml", "language:mn", "language:mni", "language:mnw", "language:mr", "language:mrj", "language:ms", "language:mt", "language:mus", "language:mwl", "language:my", "language:myv", "language:mzn", "language:nah", "language:nap", "language:nds", "language:ne", "language:new", "language:ng", "language:nia", "language:nl", "language:nn", "language:no", "language:nov", "language:nqo", "language:nrm", "language:nso", "language:nv", "language:ny", "language:oc", "language:olo", "language:om", "language:or", "language:os", "language:pa", "language:pag", "language:pam", "language:pap", "language:pcd", "language:pcm", "language:pdc", "language:pfl", "language:pi", "language:pih", "language:pl", "language:pms", "language:pnb", "language:pnt", "language:ps", "language:pt", "language:pwn", "language:qu", "language:rm", "language:rmy", "language:rn", "language:ro", "language:ru", "language:rue", "language:rw", "language:sa", "language:sah", "language:sat", "language:sc", "language:scn", "language:sco", "language:sd", "language:se", "language:sg", "language:sh", "language:shi", "language:shn", "language:si", "language:sk", "language:skr", "language:sl", "language:sm", "language:smn", "language:sn", "language:so", "language:sq", "language:sr", "language:srn", "language:ss", "language:st", "language:stq", "language:su", "language:sv", "language:sw", "language:szl", "language:szy", "language:ta", "language:tay", "language:tcy", "language:te", "language:tet", "language:tg", "language:th", "language:ti", "language:tk", "language:tl", "language:tn", "language:to", "language:tpi", "language:tr", "language:trv", "language:ts", "language:tt", "language:tum", "language:tw", "language:ty", "language:tyv", "language:udm", "language:ug", "language:uk", "language:ur", "language:uz", "language:ve", "language:vec", "language:vep", "language:vi", "language:vls", "language:vo", "language:wa", "language:war", "language:wo", "language:wuu", "language:xal", "language:xh", "language:xmf", "language:yi", "language:yo", "language:za", "language:zea", "language:zh", "language:zu", "license:cc-by-sa-3.0", "license:gfdl", "region:us" ]
2023-09-10T06:10:08Z
2023-06-10T22:40:06.000Z
2023-06-10T22:40:06
--- annotations_creators: - no-annotation language_creators: - crowdsourced pretty_name: Wikipedia paperswithcode_id: null license: - cc-by-sa-3.0 - gfdl task_categories: - text-generation - fill-mask task_ids: - language-modeling - masked-language-modeling source_datasets: - original multilinguality: - multilingual size_categories: - n<1K - 1K<n<10K - 10K<n<100K - 100K<n<1M - 1M<n<10M language: # - aa - closed and no dump - ab - ace - ady - af - ak - als - alt - am - ami - an - ang - anp - ar - arc - ary - arz - as - ast - atj - av - avk - awa - ay - az - azb - ba - ban - bar # - bat-smg - see bcp47 below - bcl # - be-x-old - see bcp47 below - be - bg - bh - bi - bjn - blk - bm - bn - bo - bpy - br - bs - bug - bxr - ca # - cbk-zam - see bcp47 below - cdo - ce - ceb - ch - cho # closed - chr - chy - ckb - co - cr - crh - cs - csb - cu - cv - cy - da - dag - de - din - diq - dsb - dty - dv - dz - ee - el - eml - eo - es - et - eu - ext - fa - fat - ff - fi # - fiu-vro - see bcp47 below - fj - fo - fr - frp - frr - fur - fy - ga - gag - gan - gcr - gd - gl - glk - gn - gom - gor - got - gu - guc - gur - guw - gv - ha - hak - haw - he - hi - hif - ho # closed - hr - hsb - ht - hu - hy - hyw # - hz - closed and no dump - ia - id - ie - ig - ii # closed - ik - ilo - inh - io - is - it - iu - ja - jam - jbo - jv - ka - kaa - kab - kbd - kbp - kcg - kg - ki - kj # closed - kk - kl - km - kn - ko - koi # - kr - closed and no dump - krc - ks - ksh - ku - kv - kw - ky - la - lad - lb - lbe - lez - lfn - lg - li - lij - lld - lmo - ln - lo - lrc # closed - lt - ltg - lv - mad - mai # - map-bms - see bcp47 below - mdf - mg - mh - mhr - mi - min - mk - ml - mn - mni - mnw - mr - mrj - ms - mt - mus # closed - mwl - my - myv - mzn # - na - closed and no dump - nah - nap # - nds-nl - see bcp47 below - nds - ne - new - ng # closed - nia - nl - nn - no - nov - nqo - nrm - nso - nv - ny - oc - olo - om - or - os - pa - pag - pam - pap - pcd - pcm - pdc - pfl - pi - pih - pl - pms - pnb - pnt - ps - pt - pwn - qu - rm - rmy - rn - ro # - roa-rup - see bcp47 below # - roa-tara - see bcp47 below - ru - rue - rw - sa - sah - sat - sc - scn - sco - sd - se - sg - sh - shi - shn - si # - simple - see bcp47 below - sk - skr - sl - sm - smn - sn - so - sq - sr - srn - ss - st - stq - su - sv - sw - szl - szy - ta - tay - tcy - te - tet - tg - th - ti - tk - tl - tn - to - tpi - tr - trv - ts - tt - tum - tw - ty - tyv - udm - ug - uk - ur - uz - ve - vec - vep - vi - vls - vo - wa - war - wo - wuu - xal - xh - xmf - yi - yo - za - zea - zh # - zh-classical - see bcp47 below # - zh-min-nan - see bcp47 below # - zh-yue - see bcp47 below - zu language_bcp47: - bat-smg - be-x-old - cbk-zam - fiu-vro - map-bms - nds-nl - roa-rup - roa-tara - simple - zh-classical - zh-min-nan - zh-yue dataset_info: - config_name: 20230601.ab features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4183525 num_examples: 6114 download_size: 1172328 dataset_size: 4183525 - config_name: 20230601.ace features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4887561 num_examples: 12839 download_size: 1473823 dataset_size: 4887561 - config_name: 20230601.ady features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 613082 num_examples: 609 download_size: 280249 dataset_size: 613082 - config_name: 20230601.af features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 220678901 num_examples: 108170 download_size: 121238071 dataset_size: 220678901 - config_name: 20230601.ak features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 189 num_examples: 1 download_size: 3045 dataset_size: 189 - config_name: 20230601.als features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 80615079 num_examples: 29804 download_size: 48883379 dataset_size: 80615079 - config_name: 20230601.alt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5786027 num_examples: 1082 download_size: 2401701 dataset_size: 5786027 - config_name: 20230601.am features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 24009050 num_examples: 13839 download_size: 10615909 dataset_size: 24009050 - config_name: 20230601.ami features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3865236 num_examples: 1570 download_size: 2006639 dataset_size: 3865236 - config_name: 20230601.an features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 56295233 num_examples: 43744 download_size: 29055888 dataset_size: 56295233 - config_name: 20230601.ang features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2854073 num_examples: 4019 download_size: 1756372 dataset_size: 2854073 - config_name: 20230601.anp features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9055032 num_examples: 2736 download_size: 3270423 dataset_size: 9055032 - config_name: 20230601.ar features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3052201469 num_examples: 1205403 download_size: 1319905253 dataset_size: 3052201469 - config_name: 20230601.arc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 830073 num_examples: 1925 download_size: 360590 dataset_size: 830073 - config_name: 20230601.ary features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 10007364 num_examples: 6703 download_size: 4094420 dataset_size: 10007364 - config_name: 20230601.arz features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1364641408 num_examples: 1617770 download_size: 306336320 dataset_size: 1364641408 - config_name: 20230601.as features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 86645223 num_examples: 11988 download_size: 33149841 dataset_size: 86645223 - config_name: 20230601.ast features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 470349731 num_examples: 132550 download_size: 271011784 dataset_size: 470349731 - config_name: 20230601.atj features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 993287 num_examples: 1965 download_size: 502890 dataset_size: 993287 - config_name: 20230601.av features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5996158 num_examples: 3392 download_size: 2514243 dataset_size: 5996158 - config_name: 20230601.avk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 31189461 num_examples: 27493 download_size: 7729144 dataset_size: 31189461 - config_name: 20230601.awa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3588050 num_examples: 3701 download_size: 1230725 dataset_size: 3588050 - config_name: 20230601.ay features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4357283 num_examples: 5287 download_size: 1736571 dataset_size: 4357283 - config_name: 20230601.az features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 425710145 num_examples: 194486 download_size: 225589717 dataset_size: 425710145 - config_name: 20230601.azb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 186034971 num_examples: 243041 download_size: 46251265 dataset_size: 186034971 - config_name: 20230601.ba features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 293142247 num_examples: 62907 download_size: 120320323 dataset_size: 293142247 - config_name: 20230601.ban features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16509353 num_examples: 19293 download_size: 6302437 dataset_size: 16509353 - config_name: 20230601.bar features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 36001708 num_examples: 26978 download_size: 21611902 dataset_size: 36001708 - config_name: 20230601.bat-smg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 7536614 num_examples: 17181 download_size: 3411835 dataset_size: 7536614 - config_name: 20230601.be-x-old features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 244894736 num_examples: 82917 download_size: 110733701 dataset_size: 244894736 - config_name: 20230601.bcl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 18259970 num_examples: 13934 download_size: 10086356 dataset_size: 18259970 - config_name: 20230601.be features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 606416485 num_examples: 231617 download_size: 280474552 dataset_size: 606416485 - config_name: 20230601.bg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1080390968 num_examples: 291361 download_size: 506945262 dataset_size: 1080390968 - config_name: 20230601.bh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16078510 num_examples: 8446 download_size: 5648960 dataset_size: 16078510 - config_name: 20230601.bi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 398357 num_examples: 1539 download_size: 200277 dataset_size: 398357 - config_name: 20230601.bjn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6755874 num_examples: 10379 download_size: 3265979 dataset_size: 6755874 - config_name: 20230601.blk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 24413622 num_examples: 2725 download_size: 7356285 dataset_size: 24413622 - config_name: 20230601.bm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 473185 num_examples: 1221 download_size: 261438 dataset_size: 473185 - config_name: 20230601.bn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 913676298 num_examples: 138515 download_size: 330147337 dataset_size: 913676298 - config_name: 20230601.bo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 132034426 num_examples: 12434 download_size: 38687191 dataset_size: 132034426 - config_name: 20230601.bpy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 42862119 num_examples: 25167 download_size: 6532133 dataset_size: 42862119 - config_name: 20230601.br features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 84044684 num_examples: 79959 download_size: 48952223 dataset_size: 84044684 - config_name: 20230601.bs features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 190816695 num_examples: 92065 download_size: 106053913 dataset_size: 190816695 - config_name: 20230601.bug features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3433134 num_examples: 15873 download_size: 815878 dataset_size: 3433134 - config_name: 20230601.bxr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6695205 num_examples: 2791 download_size: 3078381 dataset_size: 6695205 - config_name: 20230601.ca features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1918941844 num_examples: 728483 download_size: 1113762234 dataset_size: 1918941844 - config_name: 20230601.cbk-zam features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2808337 num_examples: 3307 download_size: 1261855 dataset_size: 2808337 - config_name: 20230601.cdo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5010639 num_examples: 16234 download_size: 1949302 dataset_size: 5010639 - config_name: 20230601.ce features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 726468413 num_examples: 599863 download_size: 86627608 dataset_size: 726468413 - config_name: 20230601.ceb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4569352784 num_examples: 6124009 download_size: 926156250 dataset_size: 4569352784 - config_name: 20230601.ch features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 187255 num_examples: 573 download_size: 96403 dataset_size: 187255 - config_name: 20230601.cho features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 7974 num_examples: 14 download_size: 9782 dataset_size: 7974 - config_name: 20230601.chr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 764388 num_examples: 1113 download_size: 341232 dataset_size: 764388 - config_name: 20230601.chy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 149009 num_examples: 801 download_size: 76580 dataset_size: 149009 - config_name: 20230601.ckb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 101248717 num_examples: 49928 download_size: 40379289 dataset_size: 101248717 - config_name: 20230601.co features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8069524 num_examples: 6565 download_size: 4650142 dataset_size: 8069524 - config_name: 20230601.cr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 50625 num_examples: 182 download_size: 26509 dataset_size: 50625 - config_name: 20230601.crh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9056373 num_examples: 25642 download_size: 3453399 dataset_size: 9056373 - config_name: 20230601.cs features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1529727976 num_examples: 525205 download_size: 966856046 dataset_size: 1529727976 - config_name: 20230601.csb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3739371 num_examples: 5478 download_size: 2049003 dataset_size: 3739371 - config_name: 20230601.cu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 975765 num_examples: 1221 download_size: 395563 dataset_size: 975765 - config_name: 20230601.cv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 81019358 num_examples: 51407 download_size: 29189010 dataset_size: 81019358 - config_name: 20230601.cy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 304314230 num_examples: 278927 download_size: 111093453 dataset_size: 304314230 - config_name: 20230601.da features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 540186121 num_examples: 291721 download_size: 326825586 dataset_size: 540186121 - config_name: 20230601.dag features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8116697 num_examples: 8850 download_size: 3469680 dataset_size: 8116697 - config_name: 20230601.de features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9446726072 num_examples: 2801769 download_size: 5752429951 dataset_size: 9446726072 - config_name: 20230601.din features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 554422 num_examples: 506 download_size: 334229 dataset_size: 554422 - config_name: 20230601.diq features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 19300910 num_examples: 40589 download_size: 7469118 dataset_size: 19300910 - config_name: 20230601.dsb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3303132 num_examples: 3357 download_size: 1923763 dataset_size: 3303132 - config_name: 20230601.dty features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6972841 num_examples: 3625 download_size: 2497168 dataset_size: 6972841 - config_name: 20230601.dv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 13916007 num_examples: 4344 download_size: 5255070 dataset_size: 13916007 - config_name: 20230601.dz features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8517069 num_examples: 777 download_size: 2474869 dataset_size: 8517069 - config_name: 20230601.ee features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 844062 num_examples: 1164 download_size: 464418 dataset_size: 844062 - config_name: 20230601.el features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1314451459 num_examples: 222598 download_size: 627997252 dataset_size: 1314451459 - config_name: 20230601.eml features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3605037 num_examples: 12945 download_size: 1681847 dataset_size: 3605037 - config_name: 20230601.en features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 21325670826 num_examples: 6660918 download_size: 12512970849 dataset_size: 21325670826 - config_name: 20230601.eo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 508055613 num_examples: 337291 download_size: 294377264 dataset_size: 508055613 - config_name: 20230601.es features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5889963046 num_examples: 1805012 download_size: 3477902737 dataset_size: 5889963046 - config_name: 20230601.eu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 547125100 num_examples: 405840 download_size: 264099434 dataset_size: 547125100 - config_name: 20230601.ext features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4182030 num_examples: 3636 download_size: 2631658 dataset_size: 4182030 - config_name: 20230601.fa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1851617207 num_examples: 964236 download_size: 759372155 dataset_size: 1851617207 - config_name: 20230601.fat features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1933259 num_examples: 1046 download_size: 1067434 dataset_size: 1933259 - config_name: 20230601.ff features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1401981 num_examples: 1484 download_size: 824781 dataset_size: 1401981 - config_name: 20230601.fi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1125659121 num_examples: 553519 download_size: 678674705 dataset_size: 1125659121 - config_name: 20230601.fiu-vro features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4773469 num_examples: 6559 download_size: 2464729 dataset_size: 4773469 - config_name: 20230601.fj features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 593373 num_examples: 1283 download_size: 323108 dataset_size: 593373 - config_name: 20230601.fo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 15058635 num_examples: 13954 download_size: 8633381 dataset_size: 15058635 - config_name: 20230601.fr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 7910192478 num_examples: 2525926 download_size: 4618774275 dataset_size: 7910192478 - config_name: 20230601.frp features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3517265 num_examples: 5689 download_size: 1847765 dataset_size: 3517265 - config_name: 20230601.frr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 10292357 num_examples: 17260 download_size: 5084999 dataset_size: 10292357 - config_name: 20230601.fur features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4062291 num_examples: 3967 download_size: 2401534 dataset_size: 4062291 - config_name: 20230601.fy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 130189677 num_examples: 51506 download_size: 73624821 dataset_size: 130189677 - config_name: 20230601.ga features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 59266973 num_examples: 58579 download_size: 33377343 dataset_size: 59266973 - config_name: 20230601.gag features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2405210 num_examples: 2966 download_size: 1319553 dataset_size: 2405210 - config_name: 20230601.gan features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2878337 num_examples: 6691 download_size: 1485195 dataset_size: 2878337 - config_name: 20230601.gcr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2335924 num_examples: 2397 download_size: 1344338 dataset_size: 2335924 - config_name: 20230601.gd features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 14026914 num_examples: 16018 download_size: 7175920 dataset_size: 14026914 - config_name: 20230601.gl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 483432936 num_examples: 196473 download_size: 287329100 dataset_size: 483432936 - config_name: 20230601.glk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6067898 num_examples: 7035 download_size: 2372761 dataset_size: 6067898 - config_name: 20230601.gn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6754303 num_examples: 5298 download_size: 3702975 dataset_size: 6754303 - config_name: 20230601.gom features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 30830020 num_examples: 4250 download_size: 11258918 dataset_size: 30830020 - config_name: 20230601.gor features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6111487 num_examples: 14556 download_size: 2036928 dataset_size: 6111487 - config_name: 20230601.got features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1518930 num_examples: 1005 download_size: 626840 dataset_size: 1518930 - config_name: 20230601.gu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 120869564 num_examples: 30357 download_size: 39339802 dataset_size: 120869564 - config_name: 20230601.guc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 916033 num_examples: 578 download_size: 547551 dataset_size: 916033 - config_name: 20230601.gur features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1414225 num_examples: 954 download_size: 753483 dataset_size: 1414225 - config_name: 20230601.guw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1894278 num_examples: 1301 download_size: 1027313 dataset_size: 1894278 - config_name: 20230601.gv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5969707 num_examples: 5954 download_size: 3155779 dataset_size: 5969707 - config_name: 20230601.ha features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 62945985 num_examples: 27905 download_size: 35159511 dataset_size: 62945985 - config_name: 20230601.hak features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4493017 num_examples: 10183 download_size: 1875697 dataset_size: 4493017 - config_name: 20230601.haw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1648045 num_examples: 2580 download_size: 681202 dataset_size: 1648045 - config_name: 20230601.he features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1890961532 num_examples: 325534 download_size: 955373507 dataset_size: 1890961532 - config_name: 20230601.hi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 652930384 num_examples: 160068 download_size: 230339569 dataset_size: 652930384 - config_name: 20230601.hif features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5670768 num_examples: 10975 download_size: 2708959 dataset_size: 5670768 - config_name: 20230601.ho features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3450 num_examples: 3 download_size: 7714 dataset_size: 3450 - config_name: 20230601.hsb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 15650862 num_examples: 13929 download_size: 7422054 dataset_size: 15650862 - config_name: 20230601.ht features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 54468681 num_examples: 69778 download_size: 21591458 dataset_size: 54468681 - config_name: 20230601.hu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1490296647 num_examples: 526030 download_size: 904279478 dataset_size: 1490296647 - config_name: 20230601.hy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1142467643 num_examples: 297933 download_size: 477398053 dataset_size: 1142467643 - config_name: 20230601.hyw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 57478946 num_examples: 10933 download_size: 26499417 dataset_size: 57478946 - config_name: 20230601.ia features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16183963 num_examples: 27939 download_size: 8108662 dataset_size: 16183963 - config_name: 20230601.id features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1086885042 num_examples: 648383 download_size: 575124507 dataset_size: 1086885042 - config_name: 20230601.ie features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6482834 num_examples: 11705 download_size: 2881031 dataset_size: 6482834 - config_name: 20230601.ig features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 45043729 num_examples: 16970 download_size: 23565907 dataset_size: 45043729 - config_name: 20230601.ii features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8921 num_examples: 14 download_size: 14936 dataset_size: 8921 - config_name: 20230601.ik features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 190236 num_examples: 823 download_size: 109460 dataset_size: 190236 - config_name: 20230601.ilo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16860855 num_examples: 15379 download_size: 7350161 dataset_size: 16860855 - config_name: 20230601.inh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2697943 num_examples: 2108 download_size: 1257824 dataset_size: 2697943 - config_name: 20230601.io features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 37291268 num_examples: 38155 download_size: 16629067 dataset_size: 37291268 - config_name: 20230601.is features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 86487184 num_examples: 56795 download_size: 51372350 dataset_size: 86487184 - config_name: 20230601.it features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4826403309 num_examples: 1812514 download_size: 2926177870 dataset_size: 4826403309 - config_name: 20230601.iu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 284349 num_examples: 564 download_size: 132368 dataset_size: 284349 - config_name: 20230601.ja features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6913216645 num_examples: 1373311 download_size: 3923535785 dataset_size: 6913216645 - config_name: 20230601.jam features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1140551 num_examples: 1771 download_size: 700995 dataset_size: 1140551 - config_name: 20230601.jbo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2521508 num_examples: 1390 download_size: 888087 dataset_size: 2521508 - config_name: 20230601.jv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 70703094 num_examples: 73024 download_size: 36199167 dataset_size: 70703094 - config_name: 20230601.ka features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 693108151 num_examples: 168185 download_size: 237719175 dataset_size: 693108151 - config_name: 20230601.kaa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4584133 num_examples: 3560 download_size: 2620141 dataset_size: 4584133 - config_name: 20230601.kab features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4374017 num_examples: 5800 download_size: 2570505 dataset_size: 4374017 - config_name: 20230601.kbd features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3034249 num_examples: 1637 download_size: 1317388 dataset_size: 3034249 - config_name: 20230601.kbp features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3571606 num_examples: 1918 download_size: 1794790 dataset_size: 3571606 - config_name: 20230601.kcg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 663326 num_examples: 825 download_size: 350587 dataset_size: 663326 - config_name: 20230601.kg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 463083 num_examples: 1333 download_size: 240321 dataset_size: 463083 - config_name: 20230601.ki features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 453178 num_examples: 1635 download_size: 243544 dataset_size: 453178 - config_name: 20230601.kj features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5190 num_examples: 5 download_size: 10453 dataset_size: 5190 - config_name: 20230601.kk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 488955469 num_examples: 237304 download_size: 176872369 dataset_size: 488955469 - config_name: 20230601.kl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 312839 num_examples: 298 download_size: 193192 dataset_size: 312839 - config_name: 20230601.km features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 102051337 num_examples: 11784 download_size: 35067125 dataset_size: 102051337 - config_name: 20230601.kn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 394061570 num_examples: 30793 download_size: 143867617 dataset_size: 394061570 - config_name: 20230601.ko features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1374136790 num_examples: 635278 download_size: 777760206 dataset_size: 1374136790 - config_name: 20230601.koi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5077608 num_examples: 3487 download_size: 1880469 dataset_size: 5077608 - config_name: 20230601.krc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4592333 num_examples: 2098 download_size: 2019043 dataset_size: 4592333 - config_name: 20230601.ks features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2380920 num_examples: 4060 download_size: 849849 dataset_size: 2380920 - config_name: 20230601.ksh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3110398 num_examples: 2945 download_size: 2004743 dataset_size: 3110398 - config_name: 20230601.ku features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 42327613 num_examples: 59529 download_size: 21970440 dataset_size: 42327613 - config_name: 20230601.kv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9221030 num_examples: 5589 download_size: 3676356 dataset_size: 9221030 - config_name: 20230601.kw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4653320 num_examples: 7070 download_size: 2695687 dataset_size: 4653320 - config_name: 20230601.ky features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 168214006 num_examples: 80594 download_size: 64353836 dataset_size: 168214006 - config_name: 20230601.la features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 139977277 num_examples: 137851 download_size: 75850224 dataset_size: 139977277 - config_name: 20230601.lad features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4820385 num_examples: 3638 download_size: 2703040 dataset_size: 4820385 - config_name: 20230601.lb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 87567860 num_examples: 61757 download_size: 49791518 dataset_size: 87567860 - config_name: 20230601.lbe features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 698292 num_examples: 1276 download_size: 282486 dataset_size: 698292 - config_name: 20230601.lez features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9785097 num_examples: 4256 download_size: 3849506 dataset_size: 9785097 - config_name: 20230601.lfn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8850905 num_examples: 4805 download_size: 5189938 dataset_size: 8850905 - config_name: 20230601.lg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6771716 num_examples: 4016 download_size: 3634293 dataset_size: 6771716 - config_name: 20230601.li features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 29183994 num_examples: 14308 download_size: 17566220 dataset_size: 29183994 - config_name: 20230601.lij features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11088927 num_examples: 11132 download_size: 6042920 dataset_size: 11088927 - config_name: 20230601.lld features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 45325217 num_examples: 158242 download_size: 12436563 dataset_size: 45325217 - config_name: 20230601.lmo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 42267433 num_examples: 71061 download_size: 18724770 dataset_size: 42267433 - config_name: 20230601.ln features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2024697 num_examples: 3515 download_size: 1115171 dataset_size: 2024697 - config_name: 20230601.lo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 14729412 num_examples: 4928 download_size: 5382036 dataset_size: 14729412 - config_name: 20230601.lrc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 144 num_examples: 1 download_size: 2723 dataset_size: 144 - config_name: 20230601.lt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 331252602 num_examples: 208114 download_size: 191925990 dataset_size: 331252602 - config_name: 20230601.ltg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 901980 num_examples: 1044 download_size: 522213 dataset_size: 901980 - config_name: 20230601.lv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 220969643 num_examples: 120295 download_size: 126161867 dataset_size: 220969643 - config_name: 20230601.mad features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1325061 num_examples: 1103 download_size: 764579 dataset_size: 1325061 - config_name: 20230601.mai features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 21215977 num_examples: 14622 download_size: 6041134 dataset_size: 21215977 - config_name: 20230601.map-bms features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5400186 num_examples: 13554 download_size: 2420169 dataset_size: 5400186 - config_name: 20230601.mdf features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4033455 num_examples: 3473 download_size: 1513534 dataset_size: 4033455 - config_name: 20230601.mg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 71936817 num_examples: 95675 download_size: 21206762 dataset_size: 71936817 - config_name: 20230601.mh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11524 num_examples: 8 download_size: 16877 dataset_size: 11524 - config_name: 20230601.mhr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 19030836 num_examples: 11016 download_size: 6821706 dataset_size: 19030836 - config_name: 20230601.mi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4120867 num_examples: 7855 download_size: 1016905 dataset_size: 4120867 - config_name: 20230601.min features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 118484114 num_examples: 226953 download_size: 25401691 dataset_size: 118484114 - config_name: 20230601.mk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 633734922 num_examples: 136723 download_size: 263383509 dataset_size: 633734922 - config_name: 20230601.ml features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 485143578 num_examples: 84794 download_size: 179727029 dataset_size: 485143578 - config_name: 20230601.mn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 88813927 num_examples: 23385 download_size: 40026827 dataset_size: 88813927 - config_name: 20230601.mni features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9790220 num_examples: 10877 download_size: 2193774 dataset_size: 9790220 - config_name: 20230601.mnw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 45579901 num_examples: 3184 download_size: 13207357 dataset_size: 45579901 - config_name: 20230601.mr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 254646708 num_examples: 92898 download_size: 79982313 dataset_size: 254646708 - config_name: 20230601.mrj features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8729899 num_examples: 10542 download_size: 3278742 dataset_size: 8729899 - config_name: 20230601.ms features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 410354637 num_examples: 365491 download_size: 206610861 dataset_size: 410354637 - config_name: 20230601.mt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 26613613 num_examples: 5369 download_size: 15563924 dataset_size: 26613613 - config_name: 20230601.mus features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 922 num_examples: 2 download_size: 5286 dataset_size: 922 - config_name: 20230601.mwl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 19284605 num_examples: 4474 download_size: 11469001 dataset_size: 19284605 - config_name: 20230601.my features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 310836677 num_examples: 108750 download_size: 84350660 dataset_size: 310836677 - config_name: 20230601.myv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11073788 num_examples: 7910 download_size: 4560227 dataset_size: 11073788 - config_name: 20230601.mzn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 14682517 num_examples: 15995 download_size: 4856126 dataset_size: 14682517 - config_name: 20230601.nah features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2843124 num_examples: 6654 download_size: 1347633 dataset_size: 2843124 - config_name: 20230601.nap features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6365024 num_examples: 14849 download_size: 3169570 dataset_size: 6365024 - config_name: 20230601.nds features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 92743798 num_examples: 84225 download_size: 47925882 dataset_size: 92743798 - config_name: 20230601.nds-nl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 13432115 num_examples: 7669 download_size: 8207550 dataset_size: 13432115 - config_name: 20230601.ne features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 105562688 num_examples: 32084 download_size: 36335987 dataset_size: 105562688 - config_name: 20230601.new features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 159067466 num_examples: 73004 download_size: 20472096 dataset_size: 159067466 - config_name: 20230601.ng features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 68090 num_examples: 21 download_size: 52355 dataset_size: 68090 - config_name: 20230601.nia features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1793045 num_examples: 1638 download_size: 908004 dataset_size: 1793045 - config_name: 20230601.nl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2607286503 num_examples: 2123556 download_size: 1451716829 dataset_size: 2607286503 - config_name: 20230601.nn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 233905017 num_examples: 165610 download_size: 132674509 dataset_size: 233905017 - config_name: 20230601.no features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1018553680 num_examples: 611542 download_size: 594771430 dataset_size: 1018553680 - config_name: 20230601.nov features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 912652 num_examples: 1626 download_size: 466451 dataset_size: 912652 - config_name: 20230601.nqo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8295905 num_examples: 1577 download_size: 3503359 dataset_size: 8295905 - config_name: 20230601.nrm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3212495 num_examples: 4887 download_size: 1504411 dataset_size: 3212495 - config_name: 20230601.nso features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2753446 num_examples: 8617 download_size: 912548 dataset_size: 2753446 - config_name: 20230601.nv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16785014 num_examples: 22189 download_size: 3271175 dataset_size: 16785014 - config_name: 20230601.ny features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1693443 num_examples: 1133 download_size: 937213 dataset_size: 1693443 - config_name: 20230601.oc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 117818984 num_examples: 88886 download_size: 62764519 dataset_size: 117818984 - config_name: 20230601.olo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3122448 num_examples: 4514 download_size: 1707016 dataset_size: 3122448 - config_name: 20230601.om features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3057811 num_examples: 1574 download_size: 1720686 dataset_size: 3057811 - config_name: 20230601.or features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 71342568 num_examples: 16793 download_size: 25347488 dataset_size: 71342568 - config_name: 20230601.os features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 12975022 num_examples: 17066 download_size: 5519425 dataset_size: 12975022 - config_name: 20230601.pa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 205173613 num_examples: 49955 download_size: 78370120 dataset_size: 205173613 - config_name: 20230601.pag features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1336264 num_examples: 2638 download_size: 417192 dataset_size: 1336264 - config_name: 20230601.pam features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8241795 num_examples: 8935 download_size: 4231831 dataset_size: 8241795 - config_name: 20230601.pap features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3662048 num_examples: 3237 download_size: 2098802 dataset_size: 3662048 - config_name: 20230601.pcd features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5622299 num_examples: 5639 download_size: 3094652 dataset_size: 5622299 - config_name: 20230601.pcm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1531576 num_examples: 954 download_size: 937573 dataset_size: 1531576 - config_name: 20230601.pdc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1196915 num_examples: 2162 download_size: 688667 dataset_size: 1196915 - config_name: 20230601.pfl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3682829 num_examples: 2756 download_size: 1962515 dataset_size: 3682829 - config_name: 20230601.pi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1134003 num_examples: 3056 download_size: 196632 dataset_size: 1134003 - config_name: 20230601.pih features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 378374 num_examples: 930 download_size: 236668 dataset_size: 378374 - config_name: 20230601.pl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2904184909 num_examples: 1569515 download_size: 1787531053 dataset_size: 2904184909 - config_name: 20230601.pms features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 34301415 num_examples: 67899 download_size: 11986805 dataset_size: 34301415 - config_name: 20230601.pnb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 298316454 num_examples: 70562 download_size: 130650981 dataset_size: 298316454 - config_name: 20230601.pnt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 675000 num_examples: 535 download_size: 298222 dataset_size: 675000 - config_name: 20230601.ps features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 104012780 num_examples: 19565 download_size: 48710783 dataset_size: 104012780 - config_name: 20230601.pt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2693736720 num_examples: 1103446 download_size: 1571347957 dataset_size: 2693736720 - config_name: 20230601.pwn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 800565 num_examples: 380 download_size: 446595 dataset_size: 800565 - config_name: 20230601.qu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16631588 num_examples: 23909 download_size: 7575996 dataset_size: 16631588 - config_name: 20230601.rm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 17822525 num_examples: 3815 download_size: 10339459 dataset_size: 17822525 - config_name: 20230601.rmy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 491195 num_examples: 930 download_size: 285442 dataset_size: 491195 - config_name: 20230601.rn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 522745 num_examples: 805 download_size: 295575 dataset_size: 522745 - config_name: 20230601.ro features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 834681972 num_examples: 440015 download_size: 466488330 dataset_size: 834681972 - config_name: 20230601.roa-rup features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1713384 num_examples: 1409 download_size: 955926 dataset_size: 1713384 - config_name: 20230601.roa-tara features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 7418561 num_examples: 9337 download_size: 3970663 dataset_size: 7418561 - config_name: 20230601.ru features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 10097718899 num_examples: 1918942 download_size: 4880008552 dataset_size: 10097718899 - config_name: 20230601.rue features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 12975836 num_examples: 8703 download_size: 6269020 dataset_size: 12975836 - config_name: 20230601.rw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 10794817 num_examples: 7425 download_size: 6009979 dataset_size: 10794817 - config_name: 20230601.sa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 69233233 num_examples: 12101 download_size: 23590461 dataset_size: 69233233 - config_name: 20230601.sah features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 47530889 num_examples: 16598 download_size: 21213858 dataset_size: 47530889 - config_name: 20230601.sat features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 35005528 num_examples: 8264 download_size: 12124520 dataset_size: 35005528 - config_name: 20230601.sc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 12683528 num_examples: 7540 download_size: 7650423 dataset_size: 12683528 - config_name: 20230601.scn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 17672274 num_examples: 26507 download_size: 10210177 dataset_size: 17672274 - config_name: 20230601.sco features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 43796852 num_examples: 36206 download_size: 24764727 dataset_size: 43796852 - config_name: 20230601.sd features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 36672141 num_examples: 16882 download_size: 17409382 dataset_size: 36672141 - config_name: 20230601.se features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3600247 num_examples: 8040 download_size: 1814982 dataset_size: 3600247 - config_name: 20230601.sg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 127791 num_examples: 548 download_size: 63800 dataset_size: 127791 - config_name: 20230601.sh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 569915575 num_examples: 458272 download_size: 270502498 dataset_size: 569915575 - config_name: 20230601.shi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2195129 num_examples: 1544 download_size: 1311300 dataset_size: 2195129 - config_name: 20230601.shn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 33233508 num_examples: 13706 download_size: 8107005 dataset_size: 33233508 - config_name: 20230601.si features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 135560965 num_examples: 22574 download_size: 52870973 dataset_size: 135560965 - config_name: 20230601.sk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 410287543 num_examples: 240597 download_size: 237984111 dataset_size: 410287543 - config_name: 20230601.skr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 22294235 num_examples: 5739 download_size: 9744982 dataset_size: 22294235 - config_name: 20230601.sl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 444732062 num_examples: 181212 download_size: 263697513 dataset_size: 444732062 - config_name: 20230601.sm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 891597 num_examples: 1143 download_size: 485815 dataset_size: 891597 - config_name: 20230601.smn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5526668 num_examples: 5094 download_size: 2710998 dataset_size: 5526668 - config_name: 20230601.sn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9252554 num_examples: 10917 download_size: 4738498 dataset_size: 9252554 - config_name: 20230601.so features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 14893759 num_examples: 10812 download_size: 8617659 dataset_size: 14893759 - config_name: 20230601.sq features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 197206847 num_examples: 100423 download_size: 110414776 dataset_size: 197206847 - config_name: 20230601.sr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1690745100 num_examples: 671352 download_size: 695586988 dataset_size: 1690745100 - config_name: 20230601.srn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 649044 num_examples: 1218 download_size: 214987 dataset_size: 649044 - config_name: 20230601.ss features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 861417 num_examples: 720 download_size: 489383 dataset_size: 861417 - config_name: 20230601.st features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 934954 num_examples: 1073 download_size: 517491 dataset_size: 934954 - config_name: 20230601.stq features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4929355 num_examples: 4129 download_size: 2878034 dataset_size: 4929355 - config_name: 20230601.su features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 47909002 num_examples: 61490 download_size: 19683635 dataset_size: 47909002 - config_name: 20230601.sv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2133848723 num_examples: 2564263 download_size: 1002020509 dataset_size: 2133848723 - config_name: 20230601.sw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 71857907 num_examples: 77334 download_size: 35252918 dataset_size: 71857907 - config_name: 20230601.szl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 21335080 num_examples: 56652 download_size: 7284436 dataset_size: 21335080 - config_name: 20230601.szy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 10412319 num_examples: 4709 download_size: 5572825 dataset_size: 10412319 - config_name: 20230601.tay features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2779734 num_examples: 2595 download_size: 1147869 dataset_size: 2779734 - config_name: 20230601.tcy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11968976 num_examples: 2173 download_size: 4524692 dataset_size: 11968976 - config_name: 20230601.te features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 705766405 num_examples: 83107 download_size: 206360536 dataset_size: 705766405 - config_name: 20230601.tet features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1457614 num_examples: 1460 download_size: 739227 dataset_size: 1457614 - config_name: 20230601.tg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 145506377 num_examples: 109839 download_size: 48637192 dataset_size: 145506377 - config_name: 20230601.th features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 987873133 num_examples: 156445 download_size: 365894157 dataset_size: 987873133 - config_name: 20230601.ti features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 665363 num_examples: 433 download_size: 328037 dataset_size: 665363 - config_name: 20230601.tk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 12580480 num_examples: 7836 download_size: 6951103 dataset_size: 12580480 - config_name: 20230601.tl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 82731267 num_examples: 44797 download_size: 44058126 dataset_size: 82731267 - config_name: 20230601.tn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3562981 num_examples: 1162 download_size: 1244173 dataset_size: 3562981 - config_name: 20230601.to features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1074947 num_examples: 1848 download_size: 510687 dataset_size: 1074947 - config_name: 20230601.tpi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 450891 num_examples: 1390 download_size: 236441 dataset_size: 450891 - config_name: 20230601.tr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 965186144 num_examples: 524184 download_size: 543958666 dataset_size: 965186144 - config_name: 20230601.trv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4873244 num_examples: 1809 download_size: 2635461 dataset_size: 4873244 - config_name: 20230601.ts features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 841497 num_examples: 769 download_size: 451958 dataset_size: 841497 - config_name: 20230601.tt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 679276199 num_examples: 500608 download_size: 128386602 dataset_size: 679276199 - config_name: 20230601.tum features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8395079 num_examples: 14169 download_size: 3225881 dataset_size: 8395079 - config_name: 20230601.tw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6562128 num_examples: 3608 download_size: 3389042 dataset_size: 6562128 - config_name: 20230601.ty features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 324678 num_examples: 1348 download_size: 145184 dataset_size: 324678 - config_name: 20230601.tyv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 14032235 num_examples: 3459 download_size: 6378954 dataset_size: 14032235 - config_name: 20230601.udm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6918258 num_examples: 5586 download_size: 2937644 dataset_size: 6918258 - config_name: 20230601.ug features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 41939834 num_examples: 8557 download_size: 17588763 dataset_size: 41939834 - config_name: 20230601.uk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4815765166 num_examples: 1266287 download_size: 2257591520 dataset_size: 4815765166 - config_name: 20230601.ur features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 394375073 num_examples: 194435 download_size: 160552761 dataset_size: 394375073 - config_name: 20230601.uz features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 372775375 num_examples: 241353 download_size: 196367714 dataset_size: 372775375 - config_name: 20230601.ve features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 347015 num_examples: 836 download_size: 159547 dataset_size: 347015 - config_name: 20230601.vec features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 37671800 num_examples: 69181 download_size: 16029908 dataset_size: 37671800 - config_name: 20230601.vep features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11259222 num_examples: 6851 download_size: 6196150 dataset_size: 11259222 - config_name: 20230601.vi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1584847634 num_examples: 1283785 download_size: 731354374 dataset_size: 1584847634 - config_name: 20230601.vls features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11296047 num_examples: 7824 download_size: 6952370 dataset_size: 11296047 - config_name: 20230601.vo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 18943004 num_examples: 33641 download_size: 6379410 dataset_size: 18943004 - config_name: 20230601.wa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11990482 num_examples: 11858 download_size: 7144929 dataset_size: 11990482 - config_name: 20230601.war features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 468715357 num_examples: 1266238 download_size: 109807953 dataset_size: 468715357 - config_name: 20230601.wo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3498671 num_examples: 1719 download_size: 2076485 dataset_size: 3498671 - config_name: 20230601.wuu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 24986530 num_examples: 42950 download_size: 15960262 dataset_size: 24986530 - config_name: 20230601.xal features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1386014 num_examples: 2307 download_size: 508481 dataset_size: 1386014 - config_name: 20230601.xh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2320277 num_examples: 1601 download_size: 1444732 dataset_size: 2320277 - config_name: 20230601.xmf features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 36557690 num_examples: 17705 download_size: 12535173 dataset_size: 36557690 - config_name: 20230601.yi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 36031133 num_examples: 15297 download_size: 16153644 dataset_size: 36031133 - config_name: 20230601.yo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 18018480 num_examples: 33179 download_size: 8274108 dataset_size: 18018480 - config_name: 20230601.za features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1276590 num_examples: 2722 download_size: 642448 dataset_size: 1276590 - config_name: 20230601.zea features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5059421 num_examples: 5756 download_size: 2547904 dataset_size: 5059421 - config_name: 20230601.zh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2720688196 num_examples: 1357881 download_size: 1718953037 dataset_size: 2720688196 - config_name: 20230601.zh-classical features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 14617535 num_examples: 12513 download_size: 9882532 dataset_size: 14617535 - config_name: 20230601.zh-min-nan features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 159218053 num_examples: 432531 download_size: 37371610 dataset_size: 159218053 - config_name: 20230601.zh-yue features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 107325669 num_examples: 131542 download_size: 63294114 dataset_size: 107325669 - config_name: 20230601.zu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6915666 num_examples: 11381 download_size: 3683813 dataset_size: 6915666 - config_name: 20230601.hr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 438311404 num_examples: 200747 download_size: 275098294 dataset_size: 438311404 - config_name: 20230601.simple features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 282844880 num_examples: 231233 download_size: 154520600 dataset_size: 282844880 - config_name: 20230601.ta features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 789472198 num_examples: 156273 download_size: 258263767 dataset_size: 789472198 - config_name: 20230901.ab features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4257828 num_examples: 6135 download_size: 1204070 dataset_size: 4257828 - config_name: 20230901.ace features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4988748 num_examples: 12932 download_size: 1532859 dataset_size: 4988748 - config_name: 20230901.ady features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 732900 num_examples: 656 download_size: 334202 dataset_size: 732900 - config_name: 20230901.af features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 223836122 num_examples: 110683 download_size: 122868601 dataset_size: 223836122 - config_name: 20230901.ak features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 189 num_examples: 1 download_size: 3045 dataset_size: 189 - config_name: 20230901.als features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 81066470 num_examples: 29914 download_size: 49151942 dataset_size: 81066470 - config_name: 20230901.alt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6370197 num_examples: 1076 download_size: 2683190 dataset_size: 6370197 - config_name: 20230901.am features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 24108874 num_examples: 13863 download_size: 10659605 dataset_size: 24108874 - config_name: 20230901.ami features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4376488 num_examples: 1613 download_size: 2207864 dataset_size: 4376488 - config_name: 20230901.an features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 57157273 num_examples: 44090 download_size: 29392661 dataset_size: 57157273 - config_name: 20230901.ang features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2899899 num_examples: 4106 download_size: 1782699 dataset_size: 2899899 - config_name: 20230901.anp features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9238243 num_examples: 2753 download_size: 3338080 dataset_size: 9238243 - config_name: 20230901.ar features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3090850739 num_examples: 1214692 download_size: 1336764394 dataset_size: 3090850739 - config_name: 20230901.arc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 837851 num_examples: 1935 download_size: 364313 dataset_size: 837851 - config_name: 20230901.ary features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 10716445 num_examples: 7181 download_size: 4413789 dataset_size: 10716445 - config_name: 20230901.arz features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1371439747 num_examples: 1619204 download_size: 309552126 dataset_size: 1371439747 - config_name: 20230901.as features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 88616101 num_examples: 12209 download_size: 33925273 dataset_size: 88616101 - config_name: 20230901.ast features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 470680707 num_examples: 133219 download_size: 271143532 dataset_size: 470680707 - config_name: 20230901.atj features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1009452 num_examples: 1967 download_size: 512377 dataset_size: 1009452 - config_name: 20230901.av features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6136668 num_examples: 3420 download_size: 2568423 dataset_size: 6136668 - config_name: 20230901.avk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 31833142 num_examples: 28141 download_size: 7911635 dataset_size: 31833142 - config_name: 20230901.awa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3591539 num_examples: 3696 download_size: 1233124 dataset_size: 3591539 - config_name: 20230901.ay features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4378141 num_examples: 5348 download_size: 1748641 dataset_size: 4378141 - config_name: 20230901.az features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 430470815 num_examples: 195659 download_size: 228140471 dataset_size: 430470815 - config_name: 20230901.azb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 186776266 num_examples: 243263 download_size: 46619566 dataset_size: 186776266 - config_name: 20230901.ba features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 296321332 num_examples: 63134 download_size: 121809783 dataset_size: 296321332 - config_name: 20230901.ban features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 17383384 num_examples: 20242 download_size: 6524686 dataset_size: 17383384 - config_name: 20230901.bar features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 36251706 num_examples: 27040 download_size: 21762636 dataset_size: 36251706 - config_name: 20230901.bat-smg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 7584027 num_examples: 17214 download_size: 3437198 dataset_size: 7584027 - config_name: 20230901.be-x-old features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 249911330 num_examples: 83778 download_size: 113105161 dataset_size: 249911330 - config_name: 20230901.bcl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 19285430 num_examples: 14723 download_size: 10682007 dataset_size: 19285430 - config_name: 20230901.be features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 618711883 num_examples: 234760 download_size: 286395236 dataset_size: 618711883 - config_name: 20230901.bg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1095408838 num_examples: 293306 download_size: 514238024 dataset_size: 1095408838 - config_name: 20230901.bh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16433197 num_examples: 8552 download_size: 5775459 dataset_size: 16433197 - config_name: 20230901.bi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 405238 num_examples: 1544 download_size: 204286 dataset_size: 405238 - config_name: 20230901.bjn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6761698 num_examples: 10460 download_size: 3255595 dataset_size: 6761698 - config_name: 20230901.blk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 25837114 num_examples: 2923 download_size: 7802724 dataset_size: 25837114 - config_name: 20230901.bm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 591154 num_examples: 1254 download_size: 324954 dataset_size: 591154 - config_name: 20230901.bn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 945095157 num_examples: 141288 download_size: 340510394 dataset_size: 945095157 - config_name: 20230901.bo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 132468794 num_examples: 12826 download_size: 38750901 dataset_size: 132468794 - config_name: 20230901.bpy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 42975074 num_examples: 25165 download_size: 6557544 dataset_size: 42975074 - config_name: 20230901.br features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 84959382 num_examples: 83342 download_size: 49373423 dataset_size: 84959382 - config_name: 20230901.bs features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 192322421 num_examples: 92325 download_size: 106973603 dataset_size: 192322421 - config_name: 20230901.bug features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3433942 num_examples: 15877 download_size: 816476 dataset_size: 3433942 - config_name: 20230901.bxr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6686504 num_examples: 2791 download_size: 3073419 dataset_size: 6686504 - config_name: 20230901.ca features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1942397691 num_examples: 733807 download_size: 1127952357 dataset_size: 1942397691 - config_name: 20230901.cbk-zam features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1997943 num_examples: 3276 download_size: 776590 dataset_size: 1997943 - config_name: 20230901.cdo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5085776 num_examples: 16406 download_size: 1972779 dataset_size: 5085776 - config_name: 20230901.ce features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 729121943 num_examples: 600961 download_size: 87442481 dataset_size: 729121943 - config_name: 20230901.ceb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4568428530 num_examples: 6122999 download_size: 925715583 dataset_size: 4568428530 - config_name: 20230901.ch features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 187141 num_examples: 591 download_size: 93248 dataset_size: 187141 - config_name: 20230901.cho features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 7974 num_examples: 14 download_size: 9782 dataset_size: 7974 - config_name: 20230901.chr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 768617 num_examples: 1121 download_size: 343463 dataset_size: 768617 - config_name: 20230901.chy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 145752 num_examples: 800 download_size: 74383 dataset_size: 145752 - config_name: 20230901.ckb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 105393226 num_examples: 51534 download_size: 42196297 dataset_size: 105393226 - config_name: 20230901.co features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9828777 num_examples: 7286 download_size: 5312668 dataset_size: 9828777 - config_name: 20230901.cr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 54526 num_examples: 176 download_size: 34910 dataset_size: 54526 - config_name: 20230901.crh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9450530 num_examples: 26893 download_size: 3578677 dataset_size: 9450530 - config_name: 20230901.cs features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1552256812 num_examples: 531017 download_size: 981191812 dataset_size: 1552256812 - config_name: 20230901.csb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3748403 num_examples: 5480 download_size: 2055688 dataset_size: 3748403 - config_name: 20230901.cu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 981478 num_examples: 1237 download_size: 397764 dataset_size: 981478 - config_name: 20230901.cv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 81463626 num_examples: 51647 download_size: 29416321 dataset_size: 81463626 - config_name: 20230901.cy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 305551170 num_examples: 279341 download_size: 111947867 dataset_size: 305551170 - config_name: 20230901.da features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 544417184 num_examples: 294196 download_size: 329369262 dataset_size: 544417184 - config_name: 20230901.dag features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11405576 num_examples: 9584 download_size: 4905465 dataset_size: 11405576 - config_name: 20230901.de features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9552907552 num_examples: 2828561 download_size: 5816126238 dataset_size: 9552907552 - config_name: 20230901.din features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 562639 num_examples: 511 download_size: 339141 dataset_size: 562639 - config_name: 20230901.diq features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 19574906 num_examples: 41541 download_size: 7581584 dataset_size: 19574906 - config_name: 20230901.dsb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3314217 num_examples: 3376 download_size: 1930644 dataset_size: 3314217 - config_name: 20230901.dty features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6999985 num_examples: 3629 download_size: 2505457 dataset_size: 6999985 - config_name: 20230901.dv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 13919491 num_examples: 4345 download_size: 5255676 dataset_size: 13919491 - config_name: 20230901.dz features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8837256 num_examples: 787 download_size: 2571127 dataset_size: 8837256 - config_name: 20230901.ee features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 881798 num_examples: 1172 download_size: 482924 dataset_size: 881798 - config_name: 20230901.el features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1335513979 num_examples: 225623 download_size: 637838917 dataset_size: 1335513979 - config_name: 20230901.eml features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3620183 num_examples: 12954 download_size: 1687294 dataset_size: 3620183 - config_name: 20230901.en features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 21550145456 num_examples: 6705754 download_size: 12639246876 dataset_size: 21550145456 - config_name: 20230901.eo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 517650573 num_examples: 342419 download_size: 299082818 dataset_size: 517650573 - config_name: 20230901.es features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5977729133 num_examples: 1826609 download_size: 3528834297 dataset_size: 5977729133 - config_name: 20230901.et features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 436983600 num_examples: 239195 download_size: 266302500 dataset_size: 436983600 - config_name: 20230901.eu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 555867111 num_examples: 408841 download_size: 269449522 dataset_size: 555867111 - config_name: 20230901.ext features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4334809 num_examples: 3737 download_size: 2724237 dataset_size: 4334809 - config_name: 20230901.fa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1879857088 num_examples: 972647 download_size: 771735257 dataset_size: 1879857088 - config_name: 20230901.fat features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2016722 num_examples: 1113 download_size: 1115327 dataset_size: 2016722 - config_name: 20230901.ff features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1619659 num_examples: 1929 download_size: 951246 dataset_size: 1619659 - config_name: 20230901.fi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1138299674 num_examples: 558359 download_size: 686112933 dataset_size: 1138299674 - config_name: 20230901.fiu-vro features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4789834 num_examples: 6572 download_size: 2475758 dataset_size: 4789834 - config_name: 20230901.fj features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 600984 num_examples: 1291 download_size: 325888 dataset_size: 600984 - config_name: 20230901.fo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 15387671 num_examples: 14054 download_size: 8835604 dataset_size: 15387671 - config_name: 20230901.fr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8004882292 num_examples: 2549364 download_size: 4674130728 dataset_size: 8004882292 - config_name: 20230901.frp features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3646051 num_examples: 5744 download_size: 1899883 dataset_size: 3646051 - config_name: 20230901.frr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 10513932 num_examples: 17708 download_size: 5190719 dataset_size: 10513932 - config_name: 20230901.fur features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4073954 num_examples: 3977 download_size: 2408634 dataset_size: 4073954 - config_name: 20230901.fy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 133127089 num_examples: 52120 download_size: 75305215 dataset_size: 133127089 - config_name: 20230901.ga features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 60113068 num_examples: 58940 download_size: 33805587 dataset_size: 60113068 - config_name: 20230901.gag features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2405444 num_examples: 2967 download_size: 1319216 dataset_size: 2405444 - config_name: 20230901.gan features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2905828 num_examples: 6739 download_size: 1504592 dataset_size: 2905828 - config_name: 20230901.gcr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2338042 num_examples: 2398 download_size: 1345374 dataset_size: 2338042 - config_name: 20230901.gd features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 14057133 num_examples: 16034 download_size: 7199577 dataset_size: 14057133 - config_name: 20230901.gl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 489325069 num_examples: 198354 download_size: 291176228 dataset_size: 489325069 - config_name: 20230901.glk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6078167 num_examples: 7046 download_size: 2379845 dataset_size: 6078167 - config_name: 20230901.gn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6869059 num_examples: 5475 download_size: 3777263 dataset_size: 6869059 - config_name: 20230901.gom features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 30886509 num_examples: 4257 download_size: 11274837 dataset_size: 30886509 - config_name: 20230901.gor features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6131050 num_examples: 14572 download_size: 2047896 dataset_size: 6131050 - config_name: 20230901.got features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1533270 num_examples: 1012 download_size: 633392 dataset_size: 1533270 - config_name: 20230901.gu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 121284600 num_examples: 30413 download_size: 39504567 dataset_size: 121284600 - config_name: 20230901.guc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 939870 num_examples: 618 download_size: 556772 dataset_size: 939870 - config_name: 20230901.gur features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1620565 num_examples: 1119 download_size: 820347 dataset_size: 1620565 - config_name: 20230901.guw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1900240 num_examples: 1303 download_size: 1030888 dataset_size: 1900240 - config_name: 20230901.gv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6030196 num_examples: 6009 download_size: 3195985 dataset_size: 6030196 - config_name: 20230901.ha features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 73654886 num_examples: 33752 download_size: 40714314 dataset_size: 73654886 - config_name: 20230901.hak features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4509695 num_examples: 10238 download_size: 1879146 dataset_size: 4509695 - config_name: 20230901.haw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1672431 num_examples: 2615 download_size: 694045 dataset_size: 1672431 - config_name: 20230901.he features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1927823110 num_examples: 330733 download_size: 974031783 dataset_size: 1927823110 - config_name: 20230901.hi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 667221249 num_examples: 162285 download_size: 235641052 dataset_size: 667221249 - config_name: 20230901.hif features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5676100 num_examples: 10981 download_size: 2709810 dataset_size: 5676100 - config_name: 20230901.ho features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3450 num_examples: 3 download_size: 7714 dataset_size: 3450 - config_name: 20230901.hr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 441122356 num_examples: 201819 download_size: 276842760 dataset_size: 441122356 - config_name: 20230901.hsb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 15657332 num_examples: 13949 download_size: 7427955 dataset_size: 15657332 - config_name: 20230901.ht features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 54641623 num_examples: 70002 download_size: 21699003 dataset_size: 54641623 - config_name: 20230901.hu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1505652559 num_examples: 529609 download_size: 913575039 dataset_size: 1505652559 - config_name: 20230901.hy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1167174995 num_examples: 301853 download_size: 488665605 dataset_size: 1167174995 - config_name: 20230901.hyw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 59286603 num_examples: 11644 download_size: 27305593 dataset_size: 59286603 - config_name: 20230901.ia features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16319168 num_examples: 28081 download_size: 8200366 dataset_size: 16319168 - config_name: 20230901.id features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1110116852 num_examples: 657990 download_size: 587862344 dataset_size: 1110116852 - config_name: 20230901.ie features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6658278 num_examples: 11811 download_size: 2978290 dataset_size: 6658278 - config_name: 20230901.ig features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 55435770 num_examples: 19892 download_size: 28977840 dataset_size: 55435770 - config_name: 20230901.ii features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8921 num_examples: 14 download_size: 14936 dataset_size: 8921 - config_name: 20230901.ik features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 192007 num_examples: 831 download_size: 110667 dataset_size: 192007 - config_name: 20230901.ilo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16853115 num_examples: 15369 download_size: 7345494 dataset_size: 16853115 - config_name: 20230901.inh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2722201 num_examples: 2121 download_size: 1273603 dataset_size: 2722201 - config_name: 20230901.io features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 37616691 num_examples: 38645 download_size: 16826496 dataset_size: 37616691 - config_name: 20230901.is features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 87138239 num_examples: 57147 download_size: 51826151 dataset_size: 87138239 - config_name: 20230901.it features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4879369360 num_examples: 1824508 download_size: 2957576589 dataset_size: 4879369360 - config_name: 20230901.iu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 289114 num_examples: 561 download_size: 136067 dataset_size: 289114 - config_name: 20230901.ja features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6988535462 num_examples: 1383531 download_size: 3966219907 dataset_size: 6988535462 - config_name: 20230901.jam features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1142809 num_examples: 1775 download_size: 702478 dataset_size: 1142809 - config_name: 20230901.jbo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2522674 num_examples: 1391 download_size: 888919 dataset_size: 2522674 - config_name: 20230901.jv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 71017946 num_examples: 73150 download_size: 36394809 dataset_size: 71017946 - config_name: 20230901.ka features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 696934958 num_examples: 169131 download_size: 238964498 dataset_size: 696934958 - config_name: 20230901.kaa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4754449 num_examples: 3856 download_size: 2682618 dataset_size: 4754449 - config_name: 20230901.kab features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4388232 num_examples: 5825 download_size: 2578056 dataset_size: 4388232 - config_name: 20230901.kbd features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3040422 num_examples: 1656 download_size: 1319464 dataset_size: 3040422 - config_name: 20230901.kbp features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3579071 num_examples: 1922 download_size: 1795549 dataset_size: 3579071 - config_name: 20230901.kcg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 728303 num_examples: 913 download_size: 382843 dataset_size: 728303 - config_name: 20230901.kg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 386320 num_examples: 1325 download_size: 206106 dataset_size: 386320 - config_name: 20230901.ki features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 731003 num_examples: 1647 download_size: 408805 dataset_size: 731003 - config_name: 20230901.kj features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5190 num_examples: 5 download_size: 10453 dataset_size: 5190 - config_name: 20230901.kk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 494357868 num_examples: 237902 download_size: 179217175 dataset_size: 494357868 - config_name: 20230901.kl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 313121 num_examples: 298 download_size: 193507 dataset_size: 313121 - config_name: 20230901.km features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 102576754 num_examples: 11874 download_size: 35281246 dataset_size: 102576754 - config_name: 20230901.kn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 399521127 num_examples: 31136 download_size: 145847507 dataset_size: 399521127 - config_name: 20230901.ko features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1401002436 num_examples: 643723 download_size: 792232087 dataset_size: 1401002436 - config_name: 20230901.koi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5102564 num_examples: 3504 download_size: 1887860 dataset_size: 5102564 - config_name: 20230901.krc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4586443 num_examples: 2098 download_size: 2015581 dataset_size: 4586443 - config_name: 20230901.ks features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2828813 num_examples: 4278 download_size: 1074931 dataset_size: 2828813 - config_name: 20230901.ksh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3115805 num_examples: 2944 download_size: 2007139 dataset_size: 3115805 - config_name: 20230901.ku features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 43200623 num_examples: 59822 download_size: 22481749 dataset_size: 43200623 - config_name: 20230901.kv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9244682 num_examples: 5603 download_size: 3687481 dataset_size: 9244682 - config_name: 20230901.kw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4675299 num_examples: 7088 download_size: 2703089 dataset_size: 4675299 - config_name: 20230901.ky features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 168378862 num_examples: 80665 download_size: 64423485 dataset_size: 168378862 - config_name: 20230901.la features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 140689294 num_examples: 138140 download_size: 76340691 dataset_size: 140689294 - config_name: 20230901.lad features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4878588 num_examples: 3648 download_size: 2737222 dataset_size: 4878588 - config_name: 20230901.lb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 88394374 num_examples: 62131 download_size: 50250905 dataset_size: 88394374 - config_name: 20230901.lbe features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 744689 num_examples: 1277 download_size: 304111 dataset_size: 744689 - config_name: 20230901.lez features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9793873 num_examples: 4264 download_size: 3852020 dataset_size: 9793873 - config_name: 20230901.lfn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8912633 num_examples: 4819 download_size: 5206921 dataset_size: 8912633 - config_name: 20230901.lg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6887606 num_examples: 4041 download_size: 3703329 dataset_size: 6887606 - config_name: 20230901.li features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 29373978 num_examples: 14526 download_size: 17641752 dataset_size: 29373978 - config_name: 20230901.lij features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11336209 num_examples: 11184 download_size: 6176932 dataset_size: 11336209 - config_name: 20230901.lld features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 50110703 num_examples: 180580 download_size: 13839995 dataset_size: 50110703 - config_name: 20230901.lmo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 43217251 num_examples: 72899 download_size: 19041052 dataset_size: 43217251 - config_name: 20230901.ln features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2024359 num_examples: 3531 download_size: 1116032 dataset_size: 2024359 - config_name: 20230901.lo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 15117598 num_examples: 4995 download_size: 5527479 dataset_size: 15117598 - config_name: 20230901.lrc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 144 num_examples: 1 download_size: 2723 dataset_size: 144 - config_name: 20230901.lt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 334697442 num_examples: 210202 download_size: 193837594 dataset_size: 334697442 - config_name: 20230901.ltg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 915321 num_examples: 1070 download_size: 530333 dataset_size: 915321 - config_name: 20230901.lv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 224476781 num_examples: 122266 download_size: 128157342 dataset_size: 224476781 - config_name: 20230901.mad features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1504064 num_examples: 1160 download_size: 856724 dataset_size: 1504064 - config_name: 20230901.mai features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 21426268 num_examples: 14673 download_size: 6117668 dataset_size: 21426268 - config_name: 20230901.map-bms features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5413521 num_examples: 13574 download_size: 2427039 dataset_size: 5413521 - config_name: 20230901.mdf features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4558408 num_examples: 4073 download_size: 1688901 dataset_size: 4558408 - config_name: 20230901.mg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 72920973 num_examples: 96060 download_size: 21675187 dataset_size: 72920973 - config_name: 20230901.mh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11524 num_examples: 8 download_size: 16877 dataset_size: 11524 - config_name: 20230901.mhr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 19188080 num_examples: 11246 download_size: 6867184 dataset_size: 19188080 - config_name: 20230901.mi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4159228 num_examples: 7898 download_size: 1039215 dataset_size: 4159228 - config_name: 20230901.min features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 118651753 num_examples: 227024 download_size: 25511300 dataset_size: 118651753 - config_name: 20230901.mk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 640596981 num_examples: 138453 download_size: 266334099 dataset_size: 640596981 - config_name: 20230901.ml features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 490833742 num_examples: 85451 download_size: 181789443 dataset_size: 490833742 - config_name: 20230901.mn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 90537032 num_examples: 23797 download_size: 40809884 dataset_size: 90537032 - config_name: 20230901.mni features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9818372 num_examples: 10892 download_size: 2207828 dataset_size: 9818372 - config_name: 20230901.mnw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 46788079 num_examples: 3249 download_size: 13588244 dataset_size: 46788079 - config_name: 20230901.mr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 260342611 num_examples: 93653 download_size: 81397471 dataset_size: 260342611 - config_name: 20230901.mrj features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8731508 num_examples: 10542 download_size: 3279598 dataset_size: 8731508 - config_name: 20230901.ms features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 419678289 num_examples: 367463 download_size: 211505058 dataset_size: 419678289 - config_name: 20230901.mt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 30536771 num_examples: 5598 download_size: 17850471 dataset_size: 30536771 - config_name: 20230901.mus features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 922 num_examples: 2 download_size: 5286 dataset_size: 922 - config_name: 20230901.mwl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 19321295 num_examples: 4485 download_size: 11488668 dataset_size: 19321295 - config_name: 20230901.my features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 312482214 num_examples: 109166 download_size: 84914025 dataset_size: 312482214 - config_name: 20230901.myv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11131103 num_examples: 7947 download_size: 4586300 dataset_size: 11131103 - config_name: 20230901.mzn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 15830260 num_examples: 17696 download_size: 5258917 dataset_size: 15830260 - config_name: 20230901.nah features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2494573 num_examples: 6180 download_size: 1188515 dataset_size: 2494573 - config_name: 20230901.nap features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6377175 num_examples: 14868 download_size: 3176787 dataset_size: 6377175 - config_name: 20230901.nds features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 92854034 num_examples: 84258 download_size: 48004103 dataset_size: 92854034 - config_name: 20230901.nds-nl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 13560241 num_examples: 7707 download_size: 8287716 dataset_size: 13560241 - config_name: 20230901.ne features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 106930147 num_examples: 32423 download_size: 36867790 dataset_size: 106930147 - config_name: 20230901.new features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 159078463 num_examples: 73003 download_size: 20468180 dataset_size: 159078463 - config_name: 20230901.ng features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 68090 num_examples: 21 download_size: 52355 dataset_size: 68090 - config_name: 20230901.nia features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1909528 num_examples: 1651 download_size: 970289 dataset_size: 1909528 - config_name: 20230901.nl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2631597985 num_examples: 2130944 download_size: 1467451759 dataset_size: 2631597985 - config_name: 20230901.nn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 236262183 num_examples: 166642 download_size: 134021748 dataset_size: 236262183 - config_name: 20230901.no features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1027035487 num_examples: 615107 download_size: 599774543 dataset_size: 1027035487 - config_name: 20230901.nov features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 917413 num_examples: 1636 download_size: 469305 dataset_size: 917413 - config_name: 20230901.nqo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8219209 num_examples: 1571 download_size: 3478458 dataset_size: 8219209 - config_name: 20230901.nrm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3215096 num_examples: 4899 download_size: 1505717 dataset_size: 3215096 - config_name: 20230901.nso features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2789807 num_examples: 8643 download_size: 932635 dataset_size: 2789807 - config_name: 20230901.nv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16886983 num_examples: 22324 download_size: 3288156 dataset_size: 16886983 - config_name: 20230901.ny features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1695102 num_examples: 1133 download_size: 938716 dataset_size: 1695102 - config_name: 20230901.oc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 119055715 num_examples: 89270 download_size: 63403412 dataset_size: 119055715 - config_name: 20230901.olo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3152274 num_examples: 4595 download_size: 1716616 dataset_size: 3152274 - config_name: 20230901.om features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3430032 num_examples: 1911 download_size: 1900253 dataset_size: 3430032 - config_name: 20230901.or features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 72723705 num_examples: 17166 download_size: 25879025 dataset_size: 72723705 - config_name: 20230901.os features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 13112794 num_examples: 17446 download_size: 5554157 dataset_size: 13112794 - config_name: 20230901.pa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 211148791 num_examples: 51013 download_size: 80668229 dataset_size: 211148791 - config_name: 20230901.pag features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1384685 num_examples: 2662 download_size: 451639 dataset_size: 1384685 - config_name: 20230901.pam features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 8237319 num_examples: 8951 download_size: 4235968 dataset_size: 8237319 - config_name: 20230901.pap features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4105109 num_examples: 3427 download_size: 2353692 dataset_size: 4105109 - config_name: 20230901.pcd features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5680386 num_examples: 5692 download_size: 3127716 dataset_size: 5680386 - config_name: 20230901.pcm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1807444 num_examples: 1069 download_size: 1111719 dataset_size: 1807444 - config_name: 20230901.pdc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1223268 num_examples: 2182 download_size: 696649 dataset_size: 1223268 - config_name: 20230901.pfl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3688761 num_examples: 2759 download_size: 1963616 dataset_size: 3688761 - config_name: 20230901.pi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1133972 num_examples: 3056 download_size: 196617 dataset_size: 1133972 - config_name: 20230901.pih features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 381602 num_examples: 933 download_size: 238696 dataset_size: 381602 - config_name: 20230901.pl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2929578273 num_examples: 1579326 download_size: 1803033674 dataset_size: 2929578273 - config_name: 20230901.pms features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 34318527 num_examples: 67935 download_size: 11997737 dataset_size: 34318527 - config_name: 20230901.pnb features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 303876889 num_examples: 72240 download_size: 133093182 dataset_size: 303876889 - config_name: 20230901.pnt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 630714 num_examples: 533 download_size: 275657 dataset_size: 630714 - config_name: 20230901.ps features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 109664877 num_examples: 20166 download_size: 51380951 dataset_size: 109664877 - config_name: 20230901.pt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2731435653 num_examples: 1107946 download_size: 1593477871 dataset_size: 2731435653 - config_name: 20230901.pwn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 792234 num_examples: 394 download_size: 433617 dataset_size: 792234 - config_name: 20230901.qu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 16754330 num_examples: 24096 download_size: 7651901 dataset_size: 16754330 - config_name: 20230901.rm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 18052223 num_examples: 3821 download_size: 10475947 dataset_size: 18052223 - config_name: 20230901.rmy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 555208 num_examples: 969 download_size: 324565 dataset_size: 555208 - config_name: 20230901.rn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 522604 num_examples: 808 download_size: 295315 dataset_size: 522604 - config_name: 20230901.ro features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 842490285 num_examples: 441538 download_size: 471249050 dataset_size: 842490285 - config_name: 20230901.roa-rup features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1691177 num_examples: 1409 download_size: 953023 dataset_size: 1691177 - config_name: 20230901.roa-tara features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 7435543 num_examples: 9341 download_size: 3982748 dataset_size: 7435543 - config_name: 20230901.ru features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 10213314874 num_examples: 1935562 download_size: 4935575161 dataset_size: 10213314874 - config_name: 20230901.rue features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 13110982 num_examples: 8749 download_size: 6335689 dataset_size: 13110982 - config_name: 20230901.rw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11946518 num_examples: 8044 download_size: 6640582 dataset_size: 11946518 - config_name: 20230901.sa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 69665685 num_examples: 12143 download_size: 23750145 dataset_size: 69665685 - config_name: 20230901.sah features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 47816835 num_examples: 16867 download_size: 21350955 dataset_size: 47816835 - config_name: 20230901.sat features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 40858282 num_examples: 9029 download_size: 13950418 dataset_size: 40858282 - config_name: 20230901.sc features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 12732368 num_examples: 7559 download_size: 7682010 dataset_size: 12732368 - config_name: 20230901.scn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 17667128 num_examples: 26519 download_size: 10212874 dataset_size: 17667128 - config_name: 20230901.sco features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 43780491 num_examples: 36169 download_size: 24761453 dataset_size: 43780491 - config_name: 20230901.sd features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 36726435 num_examples: 16894 download_size: 17439666 dataset_size: 36726435 - config_name: 20230901.se features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3600162 num_examples: 8042 download_size: 1814812 dataset_size: 3600162 - config_name: 20230901.sg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 130365 num_examples: 553 download_size: 65750 dataset_size: 130365 - config_name: 20230901.sh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 569747500 num_examples: 458212 download_size: 270404350 dataset_size: 569747500 - config_name: 20230901.shi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2348743 num_examples: 1771 download_size: 1347026 dataset_size: 2348743 - config_name: 20230901.shn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 33479127 num_examples: 13878 download_size: 8148046 dataset_size: 33479127 - config_name: 20230901.si features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 136810596 num_examples: 22893 download_size: 53392258 dataset_size: 136810596 - config_name: 20230901.simple features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 287855540 num_examples: 238150 download_size: 157248327 dataset_size: 287855540 - config_name: 20230901.sk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 414483614 num_examples: 241614 download_size: 240700453 dataset_size: 414483614 - config_name: 20230901.skr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 22524450 num_examples: 5768 download_size: 9854778 dataset_size: 22524450 - config_name: 20230901.sl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 451888560 num_examples: 182364 download_size: 268258798 dataset_size: 451888560 - config_name: 20230901.sm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 904339 num_examples: 1149 download_size: 493408 dataset_size: 904339 - config_name: 20230901.smn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5673858 num_examples: 5333 download_size: 2767537 dataset_size: 5673858 - config_name: 20230901.sn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 9587086 num_examples: 11354 download_size: 4889856 dataset_size: 9587086 - config_name: 20230901.so features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 13594918 num_examples: 9003 download_size: 7886560 dataset_size: 13594918 - config_name: 20230901.sq features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 204838795 num_examples: 103850 download_size: 114648801 dataset_size: 204838795 - config_name: 20230901.sr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1709332753 num_examples: 673516 download_size: 704099906 dataset_size: 1709332753 - config_name: 20230901.srn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 649208 num_examples: 1219 download_size: 215087 dataset_size: 649208 - config_name: 20230901.ss features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1024219 num_examples: 890 download_size: 574998 dataset_size: 1024219 - config_name: 20230901.st features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 956079 num_examples: 1094 download_size: 523485 dataset_size: 956079 - config_name: 20230901.stq features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4934155 num_examples: 4132 download_size: 2880185 dataset_size: 4934155 - config_name: 20230901.su features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 48039769 num_examples: 61557 download_size: 19764523 dataset_size: 48039769 - config_name: 20230901.sv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2146681766 num_examples: 2570535 download_size: 1009875904 dataset_size: 2146681766 - config_name: 20230901.sw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 72884231 num_examples: 78444 download_size: 35798700 dataset_size: 72884231 - config_name: 20230901.szl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 21412618 num_examples: 56961 download_size: 7330797 dataset_size: 21412618 - config_name: 20230901.szy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 10793237 num_examples: 4794 download_size: 5811192 dataset_size: 10793237 - config_name: 20230901.ta features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 801530157 num_examples: 158664 download_size: 262319221 dataset_size: 801530157 - config_name: 20230901.tay features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2909279 num_examples: 2715 download_size: 1203598 dataset_size: 2909279 - config_name: 20230901.tcy features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 12142146 num_examples: 2195 download_size: 4589253 dataset_size: 12142146 - config_name: 20230901.te features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 719651788 num_examples: 85840 download_size: 211297920 dataset_size: 719651788 - config_name: 20230901.tet features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1464393 num_examples: 1465 download_size: 743636 dataset_size: 1464393 - config_name: 20230901.tg features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 147555847 num_examples: 110263 download_size: 49551755 dataset_size: 147555847 - config_name: 20230901.th features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1002621820 num_examples: 158289 download_size: 371401101 dataset_size: 1002621820 - config_name: 20230901.ti features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 639136 num_examples: 430 download_size: 317759 dataset_size: 639136 - config_name: 20230901.tk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 13169481 num_examples: 7898 download_size: 7284367 dataset_size: 13169481 - config_name: 20230901.tl features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 84784414 num_examples: 45155 download_size: 45203377 dataset_size: 84784414 - config_name: 20230901.tn features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3561901 num_examples: 1160 download_size: 1245027 dataset_size: 3561901 - config_name: 20230901.to features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1082372 num_examples: 1866 download_size: 515293 dataset_size: 1082372 - config_name: 20230901.tpi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 457865 num_examples: 1396 download_size: 231303 dataset_size: 457865 - config_name: 20230901.tr features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 984939694 num_examples: 530830 download_size: 554907604 dataset_size: 984939694 - config_name: 20230901.trv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4906787 num_examples: 1835 download_size: 2654525 dataset_size: 4906787 - config_name: 20230901.ts features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 845256 num_examples: 778 download_size: 454559 dataset_size: 845256 - config_name: 20230901.tt features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 680656530 num_examples: 501002 download_size: 129123758 dataset_size: 680656530 - config_name: 20230901.tum features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 13199654 num_examples: 18591 download_size: 5352424 dataset_size: 13199654 - config_name: 20230901.tw features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 7386605 num_examples: 3717 download_size: 3815538 dataset_size: 7386605 - config_name: 20230901.ty features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 333733 num_examples: 1355 download_size: 149306 dataset_size: 333733 - config_name: 20230901.tyv features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 14319641 num_examples: 3481 download_size: 6513101 dataset_size: 14319641 - config_name: 20230901.udm features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6975919 num_examples: 5665 download_size: 2952228 dataset_size: 6975919 - config_name: 20230901.ug features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 42219904 num_examples: 8621 download_size: 17716007 dataset_size: 42219904 - config_name: 20230901.uk features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 4910916097 num_examples: 1285004 download_size: 2303106335 dataset_size: 4910916097 - config_name: 20230901.ur features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 402322741 num_examples: 197343 download_size: 164074548 dataset_size: 402322741 - config_name: 20230901.uz features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 385386661 num_examples: 242726 download_size: 203362895 dataset_size: 385386661 - config_name: 20230901.ve features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 349857 num_examples: 840 download_size: 161562 dataset_size: 349857 - config_name: 20230901.vec features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 37883286 num_examples: 69250 download_size: 16164035 dataset_size: 37883286 - config_name: 20230901.vep features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11487509 num_examples: 6918 download_size: 6327017 dataset_size: 11487509 - config_name: 20230901.vi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1606980713 num_examples: 1287263 download_size: 742700712 dataset_size: 1606980713 - config_name: 20230901.vls features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 11310015 num_examples: 7839 download_size: 6960289 dataset_size: 11310015 - config_name: 20230901.vo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 19274897 num_examples: 34504 download_size: 6491359 dataset_size: 19274897 - config_name: 20230901.wa features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 12140372 num_examples: 11955 download_size: 7231141 dataset_size: 12140372 - config_name: 20230901.war features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 467623925 num_examples: 1266345 download_size: 109503863 dataset_size: 467623925 - config_name: 20230901.wo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 3498562 num_examples: 1718 download_size: 2077375 dataset_size: 3498562 - config_name: 20230901.wuu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 25005942 num_examples: 42969 download_size: 15994961 dataset_size: 25005942 - config_name: 20230901.xal features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1390063 num_examples: 2290 download_size: 507117 dataset_size: 1390063 - config_name: 20230901.xh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2415590 num_examples: 1667 download_size: 1503917 dataset_size: 2415590 - config_name: 20230901.xmf features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 37262425 num_examples: 17949 download_size: 12771047 dataset_size: 37262425 - config_name: 20230901.yi features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 36150608 num_examples: 15329 download_size: 16208341 dataset_size: 36150608 - config_name: 20230901.yo features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 18460117 num_examples: 33495 download_size: 8504564 dataset_size: 18460117 - config_name: 20230901.za features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 1359106 num_examples: 2971 download_size: 662982 dataset_size: 1359106 - config_name: 20230901.zea features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 5106625 num_examples: 5834 download_size: 2567716 dataset_size: 5106625 - config_name: 20230901.zh features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 2766648619 num_examples: 1375017 download_size: 1748154636 dataset_size: 2766648619 - config_name: 20230901.zh-classical features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 14819164 num_examples: 12615 download_size: 10031693 dataset_size: 14819164 - config_name: 20230901.zh-min-nan features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 159385896 num_examples: 432644 download_size: 37476665 dataset_size: 159385896 - config_name: 20230901.zh-yue features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 108979942 num_examples: 133155 download_size: 64318527 dataset_size: 108979942 - config_name: 20230901.zu features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 6925330 num_examples: 11486 download_size: 3690925 dataset_size: 6925330 - config_name: 20230601.et features: - name: id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string splits: - name: train num_bytes: 431680309 num_examples: 236848 download_size: 262989758 dataset_size: 431680309 --- # Wikipedia This Wikipedia dataset contains all available languages for recent dumps. It is a refresh of the [20220301 wikipedia](https://hf.co/datasets/wikipedia) from Huggingface, so it has the same license and dataset card details. The benefits of this dataset are: - more recent dumps (see table below) - a few additional languages - all available languages are preprocessed (including the largests: `en` and `ceb`) | version | dump | # available languages | closed & dump | closed & no dump | | ----- | ---- | ----- | ------ | --- | | `1.0.0` | 20230601 | 328 | 9: ak (soon), cho, ho, ii, kj, lrc, mh, mus, ng | 4: aa, hz, kr, na | | `1.1.0` | 20230601 | 329 (+et ~[az,ceb,ch,hr,ii,lrc,ta]) | 9: ak (soon), cho, ho, ii, kj, lrc, mh, mus, ng | 4: aa, hz, kr, na | | `1.2.0` | 20230901 | idem | 9: ak , cho, ho, ii, kj, lrc, mh, mus, ng | 4: aa, hz, kr, na | Source: [List of Wikimedia Languages](https://en.wikipedia.org/wiki/List_of_Wikipedias). A few (9) Wikimedias are closed, meaning they won't have new pages, but the dumps are still available. In addition, very few (4) Wikimedias are closed and don't have dumps anymore. ## Release Notes `1.2.0` - **chore**: Update to 20230901 `1.1.0` - **feat**: Add missing estonian (my bad), thanks Chris Ha - **fix**: update category lists for az, ceb, ch, hr, ii, lrc, ta, which means they were all processed again. `1.0.0` - **chore**: File layout is now `data/{dump}/{lang}/{info.json,*.parquet}`. Sorry for the radical update, probably won't happen again. - **chore**: Parquet files are now sharded (size < 200 MB), allowing parallel downloads and processing. - **fix**: All languages were all processed again because of a bug in the media and category names, leading to some links not being extracted. - **feat**: Add `en` and `ceb` which were too big for my Beam DirectRunner at the time. ## Usage ```python from datasets import load_dataset wikipedia_es = load_dataset("graelo/wikipedia", "20230601.es") ``` --- ## Build instructions Developer only. This dataset was preprocessed with a Beam DirectRunner as follows. ### 1. Determine the date of the dump you are interested in Choose one wikipedia dump, for instance <https://dumps.wikimedia.org/cewiki/> and identify the date. ### 2. [Optional] Get a refreshed list of languages This is optional because it not very likely that a new language will have suddenly appeared since the last version _and_ have a significant dataset. Navigate to <https://en.wikipedia.org/wiki/List_of_Wikipedias> and copy the languages column from the "Detailed list" table (near the end of the page). Copy that content in the form of a Python list into `lang_def.py` (at the top of the repo) under a new date. ### 3. [Optional] Create Media and Category aliases In order to properly extract links to images and media in all languages, we must refresh the two corresponding files. To do so, from the root of the repo, run ```sh python -m prep.create_aliases ``` This will create or update these two files at the root of the repo: - `media_aliases.py` - `category_aliases.py` These files are used in the final step ### 4. Build and prepare the datasets into sharded parquet files Running this script downloads the wikipedia dumps for each language in `lang_def.py` and shards each language dataset into the appropriate number of shards (max size ~ 250MB). ```sh python -m prep.build --date 20230601 ``` There are other options: ```text $ python -m prep.build --help usage: Wikipedia Builder [-h] [--date DATE] [--language [LANG ...]] [--cache-dir DIR] [--mirror MIRROR] Prepares the Wikipedia dataset for each language optional arguments: -h, --help show this help message and exit --date DATE Wikipedia dump date (e.g. 20230601) --language [LANG ...] Language code (e.g. en). If missing, all languages are processed --cache-dir DIR Cache directory for 🤗 Datasets --mirror MIRROR Mirror URL ``` For instance, for faster downloads of the dumps, use the mirror option: ```sh python -m prep.build \ --date 20230601 \ --language bs \ --mirror https://mirror.accum.se/mirror/wikimedia.org/dumps/ ``` It will download the dumps at around 60MB/s instead of the capped speed (~4MB/s) from <https://dumps.wikimedia.org>. The script will skip existing directories, allowing you to run the script in several passes. Notes: - These instructions build upon the build process of the [Wikipedia](https://huggingface.co/datasets/wikipedia) 🤗 Dataset. HF did a fantastic job, I just pushed it a bit further. - Be aware that not all mirrors contain all dumps. For instance mirror.accum.se does not contain dumps for languages such as be-x-old or cbk-zam. My own solution is to run a first pass using the aforementioned mirror, and a second pass with the official `https://dumps.wikimedia.org` site (omitting the `--mirror` parameter).
[ -0.8342122435569763, -0.4839904010295868, 0.11389840394258499, 0.31410709023475647, -0.06572798639535904, -0.21342602372169495, -0.48847419023513794, -0.23150451481342316, 0.43025073409080505, 0.6418700218200684, -0.48183950781822205, -0.5604589581489563, -0.4122772514820099, 0.3356418311595917, -0.8303543329238892, 1.2556610107421875, -0.26151618361473083, 0.009011630900204182, 0.06754019856452942, 0.077468141913414, 0.005718265660107136, 0.12668399512767792, -0.3027459681034088, -0.23244686424732208, 0.4020235240459442, 0.7469807267189026, 0.8784482479095459, 0.8749226331710815, 0.3845536708831787, 0.30292993783950806, 0.07845259457826614, 0.031618762761354446, -0.5821626782417297, 0.12547490000724792, -0.4752046763896942, 0.1658560186624527, -0.12461177259683609, 0.045005977153778076, 0.739459216594696, 0.7295693159103394, -0.17207303643226624, 0.42449453473091125, -0.21669572591781616, 0.5692901611328125, -0.6708724498748779, 0.1721944957971573, -0.4532398283481598, -0.19469642639160156, -0.4598151743412018, -0.08120445162057877, -0.2565646469593048, -0.10348270833492279, -0.07692532241344452, -0.7009762525558472, 0.2507982552051544, -0.0858210027217865, 1.203009009361267, 0.04550233110785484, -0.2991011440753937, -0.3098295032978058, -0.47339364886283875, 0.7547347545623779, -0.679487943649292, 0.46745964884757996, 0.4625403583049774, 0.07467543333768845, -0.6363683938980103, -0.8622189164161682, -0.6098229885101318, -0.18757067620754242, -0.10958335548639297, 0.002507319673895836, 0.0682520940899849, -0.3945288062095642, 0.4505650997161865, 0.7420952916145325, -0.474702388048172, -0.021243389695882797, -0.805037260055542, -0.2802572250366211, 0.7098153233528137, 0.03451204299926758, 0.552101731300354, -0.782108724117279, -0.15706436336040497, -0.28540778160095215, -0.8326773047447205, -0.27350813150405884, 0.41827139258384705, 0.21310779452323914, -0.373517245054245, 0.7130911350250244, -0.6610064506530762, 0.5518777966499329, 0.05211586877703667, -0.21986111998558044, 0.5138694047927856, -0.36378636956214905, 0.11540547758340836, -0.17559587955474854, 1.0742015838623047, 0.42731884121894836, 0.2759253680706024, -0.226729616522789, 0.1777774691581726, -0.3548421561717987, -0.13220971822738647, -0.7043229341506958, -0.6343684196472168, 0.47167593240737915, -0.5451958179473877, -0.3735502064228058, 0.04574306309223175, -1.005479335784912, -0.3509523570537567, -0.0586494505405426, 0.10340841859579086, -0.6496079564094543, -0.5690628290176392, -0.043589264154434204, -0.5240363478660583, 0.2701915502548218, 0.22173842787742615, -0.9857469201087952, 0.3425312936306, 0.4451920986175537, 0.7748156785964966, -0.03949394077062607, -0.8833735585212708, -0.5438921451568604, 0.1897105723619461, -0.2846211791038513, 0.7836315035820007, -0.11182564496994019, -0.1994158774614334, 0.02272573672235012, 0.409468412399292, 0.26760849356651306, -0.40372994542121887, 0.5493332147598267, -0.42290616035461426, 0.48811113834381104, -0.6876657009124756, -0.31656569242477417, 0.03788120672106743, 0.1964491605758667, -0.896834135055542, 1.0289833545684814, 0.44527098536491394, -1.301960825920105, 0.10970684885978699, -0.2140973061323166, -0.6341627836227417, -0.03766278922557831, 0.02480950951576233, 0.15979351103305817, -0.10716068744659424, 0.05342050641775131, 0.30029815435409546, -0.17129181325435638, 0.2077646106481552, -0.28279629349708557, -0.46679890155792236, -0.037847477942705154, -0.003194430610165, 1.474685549736023, 0.513722836971283, -0.5323417782783508, -0.4412515461444855, -0.8972141742706299, -0.170076385140419, 0.02130759321153164, -0.6732358336448669, -0.09479327499866486, 0.37654638290405273, 0.1634519100189209, 0.30389153957366943, 0.4582242965698242, -0.6322086453437805, 0.30690041184425354, -0.46810001134872437, 0.1830887645483017, 0.7238967418670654, -0.10241930931806564, 0.6157379150390625, -0.06768149882555008, 0.11382801085710526, 0.07625120878219604, 0.17478354275226593, -0.23943711817264557, -0.44664087891578674, -0.9600153565406799, -0.15695305168628693, 0.14719946682453156, 0.7078530192375183, -0.9294975399971008, 0.4725058078765869, -0.789229154586792, -0.6917563676834106, -0.4510914981365204, 0.36462387442588806, 0.13361917436122894, 0.3419705331325531, 0.23555415868759155, -0.3172876536846161, -0.7324448823928833, -0.836593508720398, -0.00507019879296422, -0.2967246174812317, -0.17235754430294037, 0.25323376059532166, 0.6634997725486755, -0.11748401820659637, 0.734525740146637, -0.41331979632377625, -0.12253590673208237, -0.031129317358136177, -0.15571019053459167, 0.5709139108657837, 0.24997678399085999, 0.514622151851654, -0.7279747724533081, -0.7392981648445129, 0.2557361125946045, -0.7384676337242126, -0.12987655401229858, 0.08110236376523972, -0.25582069158554077, 0.16676706075668335, 0.24149301648139954, -0.8947505950927734, -0.10134898126125336, 0.6231759786605835, -0.404768705368042, 0.5662403702735901, -0.11814025044441223, 0.283772736787796, -1.1292202472686768, 0.319992333650589, -0.43953174352645874, 0.053473349660634995, -0.31565237045288086, 0.1289963722229004, 0.20330069959163666, 0.016864798963069916, -0.5907275676727295, 0.7609996199607849, -0.664300799369812, -0.09655043482780457, -0.03963235393166542, 0.3079102039337158, -0.11390475183725357, 0.1374574601650238, -0.14461365342140198, 0.5681044459342957, 0.7499073147773743, -0.6522716283798218, 0.8840781450271606, 0.41619762778282166, -0.39757925271987915, 0.14097991585731506, -0.2014017552137375, -0.14190728962421417, -0.3094070553779602, 0.2082350105047226, -0.513623058795929, -0.610703706741333, 0.5740859508514404, -0.4442654550075531, 0.4952450692653656, -0.21537606418132782, -0.3450092673301697, -0.48732417821884155, -0.6624335050582886, -0.36565113067626953, 0.5236970782279968, -0.5010716915130615, 0.38015103340148926, 0.4669138193130493, -0.15828682482242584, -1.001704454421997, -0.5735644698143005, 0.3844587504863739, 0.06756271421909332, -0.7866955399513245, 0.37122395634651184, -0.1787865161895752, -0.6802647113800049, 0.3081743121147156, -0.033903855830430984, -0.14582255482673645, -0.06384966522455215, 0.07202260196208954, 0.09120063483715057, 0.16952598094940186, -0.3828137218952179, -0.02459011599421501, -0.144622340798378, -0.02133396454155445, -0.045247770845890045, 0.7104861736297607, -0.025139153003692627, 0.041758500039577484, 0.07632460445165634, 0.24428905546665192, 0.43730711936950684, -0.19852320849895477, 0.9406816959381104, 0.8600063323974609, -0.12864840030670166, -0.07788122445344925, -0.6535599231719971, -0.05360632762312889, -0.4626704156398773, 0.3914191424846649, -0.3413185477256775, -0.43885791301727295, 0.594454824924469, 0.32241305708885193, 0.34256675839424133, 0.6573941707611084, 0.6631043553352356, -0.1390150934457779, 0.5990066528320312, 0.24987508356571198, -0.3758750259876251, 0.6008467674255371, -0.39520809054374695, 0.013618484139442444, -0.59010910987854, -0.29718631505966187, -0.7716537117958069, -0.09752221405506134, -0.8989814519882202, -0.32641124725341797, -0.14458835124969482, 0.1507619023323059, -0.3365268111228943, 0.6863535046577454, -0.46850839257240295, 0.5853587985038757, 0.6145230531692505, 0.005606463644653559, 0.35898828506469727, 0.20508386194705963, 0.2228507697582245, 0.14277374744415283, -0.3894927203655243, -0.2940475642681122, 1.2131637334823608, -0.0337497852742672, 0.7457783222198486, -0.17893092334270477, 0.9419490694999695, 0.1187354102730751, 0.3135323226451874, -0.39204147458076477, 0.497051477432251, -0.27193355560302734, -1.04434335231781, -0.23427852988243103, -0.5024835467338562, -0.7144725918769836, 0.17902019619941711, 0.1174994707107544, -0.48953938484191895, 0.29101988673210144, -0.1422593742609024, 0.37097468972206116, 0.3258272707462311, -0.6617410182952881, 0.7144532799720764, -0.05907455459237099, -0.2672884166240692, -0.4141036868095398, -0.6745628714561462, 0.4995158016681671, -0.03091803938150406, 0.6711811423301697, -0.506139874458313, -0.060591164976358414, 0.7028259038925171, -0.3902612328529358, 0.39275220036506653, -0.2793855369091034, 0.03284034505486488, 0.21033740043640137, 0.16915076971054077, 0.5223196744918823, 0.0023068708833307028, -0.27327635884284973, 0.5205168724060059, 0.19967377185821533, -0.5519411563873291, -0.19307531416416168, 1.2684357166290283, -0.848463773727417, -0.41153573989868164, -0.3695645332336426, -0.4345988631248474, 0.23371554911136627, 0.5605974197387695, 0.6803631782531738, 0.20635558664798737, -0.19963569939136505, 0.04231827333569527, 0.6892658472061157, -0.41810742020606995, 0.44119521975517273, 0.5854405760765076, -0.29901087284088135, -0.5729227066040039, 0.789509117603302, 0.3060934841632843, -0.04605625569820404, 0.31366899609565735, 0.032208509743213654, 0.0477181002497673, -0.5190214514732361, -0.6747347116470337, 0.5288772583007812, -0.8087038397789001, -0.2711924612522125, -0.687593936920166, -0.18308000266551971, -0.5300001502037048, 0.027323616668581963, -0.4025454819202423, -0.46804508566856384, 0.04137519747018814, -0.10071461647748947, 0.5355961918830872, 0.6112629175186157, -0.3926445245742798, -0.10978586971759796, -0.8041702508926392, 0.5576155781745911, -0.11686230450868607, 0.5569348335266113, -0.1293928176164627, -0.4271640181541443, -0.3440442681312561, 0.2237352728843689, -0.09987226128578186, -1.1197898387908936, 0.2576654851436615, 0.2573477029800415, 0.5938383340835571, 0.31081682443618774, 0.22540248930454254, 0.5752503871917725, -0.7636401653289795, 1.005075216293335, 0.009455016814172268, -0.7489432692527771, 0.5822586417198181, -0.519791305065155, 0.06137459725141525, 0.5562242269515991, 0.6267686486244202, -0.8014007210731506, -0.4889998435974121, -0.45157283544540405, -0.8273330330848694, 0.9162808656692505, 0.33255669474601746, 0.3762848377227783, -0.5378668308258057, 0.1823769509792328, 0.09369366616010666, 0.027426155284047127, -0.6744414567947388, -0.6018059253692627, -0.4531349241733551, -0.1254112422466278, -0.005833162926137447, -0.1585516333580017, -0.0854446142911911, -0.625416100025177, 1.0068373680114746, 0.20158620178699493, 0.014982755295932293, 0.13826410472393036, -0.3804006278514862, -0.2662365734577179, 0.17825274169445038, -0.049233220517635345, 0.8206315040588379, -0.25248807668685913, 0.15643125772476196, 0.30582860112190247, -0.6363897919654846, -0.10028841346502304, 0.313014417886734, -0.37097835540771484, 0.41304516792297363, 0.2926553189754486, 0.4283389747142792, 0.4727124869823456, -0.8365496397018433, 0.575633704662323, 0.17492513358592987, 0.15760695934295654, -0.46952250599861145, 0.04422907531261444, 0.2619839012622833, 0.1601124256849289, 0.3842433989048004, -0.35112452507019043, 0.15155066549777985, -0.5882126688957214, 0.13355492055416107, 0.22245365381240845, 0.2879849076271057, -0.3735191524028778, 0.4358920753002167, 0.10146036744117737, 0.01681806892156601, 1.2210204601287842, -0.10630572587251663, -0.2551424503326416, 0.42367708683013916, 0.24460344016551971, 0.5809568762779236, -0.2938496768474579, 0.35801976919174194, 0.6652055382728577, 0.3318839967250824, -0.06975480914115906, 0.3932645618915558, -0.21864424645900726, -0.8737743496894836, -0.52916419506073, -0.92458575963974, -0.20487183332443237, -0.005332484375685453, -0.4980717897415161, 0.6402692198753357, -0.19049352407455444, 0.18467172980308533, -0.06959005445241928, 0.31828761100769043, -0.7362761497497559, 0.07334509491920471, 0.16315801441669464, 1.2930586338043213, -0.8753615021705627, 0.9016933441162109, 0.6478583812713623, -0.7311509847640991, -0.7111595869064331, -0.3428404629230499, -0.16542375087738037, -0.6447687149047852, 0.35751038789749146, -0.05106048658490181, 0.2745019197463989, 0.19872941076755524, -0.6887857913970947, -1.2423793077468872, 1.0482654571533203, 0.4824574291706085, -0.20506513118743896, -0.27425098419189453, -0.10113470256328583, 0.4366663694381714, 0.3004688322544098, 0.18382617831230164, 0.7369916439056396, 0.7710437178611755, -0.08195186406373978, -1.066665530204773, 0.11596378684043884, -0.626649796962738, -0.3345622420310974, 0.3045644760131836, -0.4341927468776703, 0.9154589176177979, -0.06532153487205505, -0.31666550040245056, 0.08088167011737823, 0.46643421053886414, 0.11957776546478271, -0.14421993494033813, 0.42283543944358826, 0.5873190760612488, 0.6557065844535828, -0.28857025504112244, 1.2533131837844849, -0.5397903919219971, 0.5904540419578552, 0.6454304456710815, 0.0985126942396164, 0.8308207392692566, 0.5368269085884094, -0.4659842550754547, 0.8014777898788452, 0.5413278937339783, -0.3025035858154297, 0.5664173364639282, -0.28650370240211487, -0.09756196290254593, 0.055380888283252716, 0.012680314481258392, -0.6625769734382629, 0.3594348132610321, 0.12422876060009003, -0.3496864438056946, -0.5803635120391846, -0.08126453310251236, 0.6145972609519958, -0.38610631227493286, -0.13059110939502716, 0.5078063607215881, -0.008663765154778957, -0.8173952102661133, 0.7186617851257324, -0.031755562871694565, 0.7034199833869934, -0.8027775287628174, 0.19167134165763855, -0.41796255111694336, 0.14328168332576752, -0.6161406636238098, -0.9929925799369812, 0.39657583832740784, 0.05060300603508949, -0.4093916714191437, -0.28152409195899963, 0.7864335775375366, -0.5580798983573914, -0.1532077193260193, 0.3686041533946991, 0.3751400411128998, 0.5091121792793274, 0.03933084383606911, -0.41708627343177795, 0.37698253989219666, 0.19325967133045197, -0.6784300804138184, 0.38676589727401733, 0.26814180612564087, 0.051624007523059845, 0.5895228385925293, 0.7145245671272278, 0.3242488205432892, 0.2919604480266571, -0.19124527275562286, 1.0106559991836548, -0.7711899280548096, -0.09285157173871994, -0.6469850540161133, 0.6051473617553711, -0.2894158661365509, -0.15715643763542175, 1.0918996334075928, 0.7250324487686157, 1.1438523530960083, -0.19828568398952484, 0.5742452144622803, -0.9122902154922485, 0.4204939305782318, -0.20093074440956116, 0.9766054749488831, -0.4063655734062195, -0.13652494549751282, -0.3040800094604492, -0.932977557182312, 0.07416489720344543, 0.6113001108169556, -0.053911224007606506, -0.3185718357563019, 0.5774596929550171, 0.6612867712974548, -0.09190009534358978, -0.15859992802143097, -0.17273038625717163, 0.49103397130966187, 0.2624397277832031, 0.3401750922203064, 0.6484969854354858, -0.38693976402282715, 0.8104616403579712, -1.0152661800384521, -0.30887487530708313, 0.21404524147510529, -0.8099685311317444, -0.5689674615859985, -0.7552928328514099, -0.1056818813085556, -0.7084391117095947, -0.08022982627153397, 0.6339306831359863, 0.39251968264579773, -0.9685292840003967, -0.374442994594574, 0.14557553827762604, 0.2782513499259949, 0.054120320826768875, -0.3068363070487976, 0.37236982583999634, -0.3614814579486847, -0.9373595118522644, 0.41805338859558105, 0.09500224143266678, -0.36980658769607544, -0.2547414302825928, -0.2745579481124878, -0.17784252762794495, -0.2278006374835968, 0.3697437345981598, 0.41605260968208313, -0.4857015907764435, -0.0998268648982048, -0.058782439678907394, -0.16304320096969604, -0.043599966913461685, 0.3702503740787506, -0.9100615978240967, 0.34245890378952026, 0.9509564638137817, 0.10527957230806351, 0.8280708193778992, -0.3247845768928528, 0.5145933628082275, -0.4836692810058594, 0.35121700167655945, -0.1451919972896576, 0.5499795079231262, 0.4105357229709625, -0.16191263496875763, 0.511756956577301, 0.28197336196899414, -0.35588589310646057, -0.9193689227104187, 0.10259617120027542, -0.7470057010650635, -0.3690865933895111, 1.2212810516357422, -0.048381999135017395, -0.40037938952445984, -0.18744102120399475, -0.13131991028785706, 0.3435000777244568, -0.06290588527917862, 0.8758204579353333, 0.9421188235282898, 0.32665902376174927, -0.07254882156848907, -0.3550834655761719, 0.6149482131004333, -0.22512373328208923, -0.652091383934021, 0.09556341916322708, 0.7200561761856079, 0.8865735530853271, 0.3138541281223297, 0.7228028774261475, -0.28153032064437866, 0.39835092425346375, 0.280133455991745, 0.11499448865652084, -0.1072712168097496, -0.23933598399162292, -0.037906866520643234, -0.06866639107465744, -0.1852848380804062, 0.11267668753862381 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
OpenAssistant/oasst1
OpenAssistant
2023-05-02T13:21:21Z
7,405
1,099
null
[ "size_categories:100K<n<1M", "language:en", "language:es", "language:ru", "language:de", "language:pl", "language:th", "language:vi", "language:sv", "language:bn", "language:da", "language:he", "language:it", "language:fa", "language:sk", "language:id", "language:nb", "language:el", "language:nl", "language:hu", "language:eu", "language:zh", "language:eo", "language:ja", "language:ca", "language:cs", "language:bg", "language:fi", "language:pt", "language:tr", "language:ro", "language:ar", "language:uk", "language:gl", "language:fr", "language:ko", "license:apache-2.0", "human-feedback", "arxiv:2304.07327", "region:us" ]
2023-05-02T13:21:21Z
2023-04-13T15:48:16.000Z
2023-04-13T15:48:16
--- license: apache-2.0 dataset_info: features: - name: message_id dtype: string - name: parent_id dtype: string - name: user_id dtype: string - name: created_date dtype: string - name: text dtype: string - name: role dtype: string - name: lang dtype: string - name: review_count dtype: int32 - name: review_result dtype: bool - name: deleted dtype: bool - name: rank dtype: int32 - name: synthetic dtype: bool - name: model_name dtype: string - name: detoxify struct: - name: toxicity dtype: float64 - name: severe_toxicity dtype: float64 - name: obscene dtype: float64 - name: identity_attack dtype: float64 - name: insult dtype: float64 - name: threat dtype: float64 - name: sexual_explicit dtype: float64 - name: message_tree_id dtype: string - name: tree_state dtype: string - name: emojis sequence: - name: name dtype: string - name: count dtype: int32 - name: labels sequence: - name: name dtype: string - name: value dtype: float64 - name: count dtype: int32 splits: - name: train num_bytes: 100367999 num_examples: 84437 - name: validation num_bytes: 5243405 num_examples: 4401 download_size: 41596430 dataset_size: 105611404 language: - en - es - ru - de - pl - th - vi - sv - bn - da - he - it - fa - sk - id - nb - el - nl - hu - eu - zh - eo - ja - ca - cs - bg - fi - pt - tr - ro - ar - uk - gl - fr - ko tags: - human-feedback size_categories: - 100K<n<1M pretty_name: OpenAssistant Conversations --- # OpenAssistant Conversations Dataset (OASST1) ## Dataset Description - **Homepage:** https://www.open-assistant.io/ - **Repository:** https://github.com/LAION-AI/Open-Assistant - **Paper:** https://arxiv.org/abs/2304.07327 ### Dataset Summary In an effort to democratize research on large-scale alignment, we release OpenAssistant Conversations (OASST1), a human-generated, human-annotated assistant-style conversation corpus consisting of 161,443 messages in 35 different languages, annotated with 461,292 quality ratings, resulting in over 10,000 fully annotated conversation trees. The corpus is a product of a worldwide crowd-sourcing effort involving over 13,500 volunteers. Please refer to our [paper](https://arxiv.org/abs/2304.07327) for further details. ### Dataset Structure This dataset contains message trees. Each message tree has an initial prompt message as the root node, which can have multiple child messages as replies, and these child messages can have multiple replies. All messages have a role property: this can either be "assistant" or "prompter". The roles in conversation threads from prompt to leaf node strictly alternate between "prompter" and "assistant". This version of the dataset contains data collected on the [open-assistant.io](https://open-assistant.io/) website until April 12 2023. ### JSON Example: Message For readability, the following JSON examples are shown formatted with indentation on multiple lines. Objects are stored without indentation (on single lines) in the actual jsonl files. ```json { "message_id": "218440fd-5317-4355-91dc-d001416df62b", "parent_id": "13592dfb-a6f9-4748-a92c-32b34e239bb4", "user_id": "8e95461f-5e94-4d8b-a2fb-d4717ce973e4", "text": "It was the winter of 2035, and artificial intelligence (..)", "role": "assistant", "lang": "en", "review_count": 3, "review_result": true, "deleted": false, "rank": 0, "synthetic": true, "model_name": "oasst-sft-0_3000,max_new_tokens=400 (..)", "labels": { "spam": { "value": 0.0, "count": 3 }, "lang_mismatch": { "value": 0.0, "count": 3 }, "pii": { "value": 0.0, "count": 3 }, "not_appropriate": { "value": 0.0, "count": 3 }, "hate_speech": { "value": 0.0, "count": 3 }, "sexual_content": { "value": 0.0, "count": 3 }, "quality": { "value": 0.416, "count": 3 }, "toxicity": { "value": 0.16, "count": 3 }, "humor": { "value": 0.0, "count": 3 }, "creativity": { "value": 0.33, "count": 3 }, "violence": { "value": 0.16, "count": 3 } } } ``` ### JSON Example: Conversation Tree For readability, only a subset of the message properties is shown here. ```json { "message_tree_id": "14fbb664-a620-45ce-bee4-7c519b16a793", "tree_state": "ready_for_export", "prompt": { "message_id": "14fbb664-a620-45ce-bee4-7c519b16a793", "text": "Why can't we divide by 0? (..)", "role": "prompter", "lang": "en", "replies": [ { "message_id": "894d30b6-56b4-4605-a504-89dd15d4d1c8", "text": "The reason we cannot divide by zero is because (..)", "role": "assistant", "lang": "en", "replies": [ // ... ] }, { "message_id": "84d0913b-0fd9-4508-8ef5-205626a7039d", "text": "The reason that the result of a division by zero is (..)", "role": "assistant", "lang": "en", "replies": [ { "message_id": "3352725e-f424-4e3b-a627-b6db831bdbaa", "text": "Math is confusing. Like those weird Irrational (..)", "role": "prompter", "lang": "en", "replies": [ { "message_id": "f46207ca-3149-46e9-a466-9163d4ce499c", "text": "Irrational numbers are simply numbers (..)", "role": "assistant", "lang": "en", "replies": [] }, // ... ] } ] } ] } } ``` Please refer to [oasst-data](https://github.com/LAION-AI/Open-Assistant/tree/main/oasst-data) for details about the data structure and Python code to read and write jsonl files containing oasst data objects. If you would like to explore the dataset yourself you can find a [`getting-started`](https://github.com/LAION-AI/Open-Assistant/blob/main/notebooks/openassistant-oasst1/getting-started.ipynb) notebook in the `notebooks/openassistant-oasst1` folder of the [LAION-AI/Open-Assistant](https://github.com/LAION-AI/Open-Assistant) github repository. ## Main Dataset Files Conversation data is provided either as nested messages in trees (extension `.trees.jsonl.gz`) or as a flat list (table) of messages (extension `.messages.jsonl.gz`). ### Ready For Export Trees ``` 2023-04-12_oasst_ready.trees.jsonl.gz 10,364 trees with 88,838 total messages 2023-04-12_oasst_ready.messages.jsonl.gz 88,838 messages ``` Trees in `ready_for_export` state without spam and deleted messages including message labels. The oasst_ready-trees file usually is sufficient for supervised fine-tuning (SFT) & reward model (RM) training. ### All Trees ``` 2023-04-12_oasst_all.trees.jsonl.gz 66,497 trees with 161,443 total messages 2023-04-12_oasst_all.messages.jsonl.gz 161,443 messages ``` All trees, including those in states `prompt_lottery_waiting` (trees that consist of only one message, namely the initial prompt), `aborted_low_grade` (trees that stopped growing because the messages had low quality), and `halted_by_moderator`. ### Supplemental Exports: Spam & Prompts ``` 2023-04-12_oasst_spam.messages.jsonl.gz ``` These are messages which were deleted or have a negative review result (`"review_result": false`). Besides low quality, a frequent reason for message deletion is a wrong language tag. ``` 2023-04-12_oasst_prompts.messages.jsonl.gz ``` These are all the kept initial prompt messages with positive review result (no spam) of trees in `ready_for_export` or `prompt_lottery_waiting` state. ### Using the Huggingface Datasets While HF datasets is ideal for tabular datasets, it is not a natural fit for nested data structures like the OpenAssistant conversation trees. Nevertheless, we make all messages which can also be found in the file `2023-04-12_oasst_ready.trees.jsonl.gz` available in parquet as train/validation splits. These are directly loadable by [Huggingface Datasets](https://pypi.org/project/datasets/). To load the oasst1 train & validation splits use: ```python from datasets import load_dataset ds = load_dataset("OpenAssistant/oasst1") train = ds['train'] # len(train)=84437 (95%) val = ds['validation'] # len(val)=4401 (5%) ``` The messages appear in depth-first order of the message trees. Full conversation trees can be reconstructed from the flat messages table by using the `parent_id` and `message_id` properties to identify the parent-child relationship of messages. The `message_tree_id` and `tree_state` properties (only present in flat messages files) can be used to find all messages of a message tree or to select trees by their state. ### Languages OpenAssistant Conversations incorporates 35 different languages with a distribution of messages as follows: **Languages with over 1000 messages** - English: 71956 - Spanish: 43061 - Russian: 9089 - German: 5279 - Chinese: 4962 - French: 4251 - Thai: 3042 - Portuguese (Brazil): 2969 - Catalan: 2260 - Korean: 1553 - Ukrainian: 1352 - Italian: 1320 - Japanese: 1018 <details> <summary><b>Languages with under 1000 messages</b></summary> <ul> <li>Vietnamese: 952</li> <li>Basque: 947</li> <li>Polish: 886</li> <li>Hungarian: 811</li> <li>Arabic: 666</li> <li>Dutch: 628</li> <li>Swedish: 512</li> <li>Turkish: 454</li> <li>Finnish: 386</li> <li>Czech: 372</li> <li>Danish: 358</li> <li>Galician: 339</li> <li>Hebrew: 255</li> <li>Romanian: 200</li> <li>Norwegian Bokmål: 133</li> <li>Indonesian: 115</li> <li>Bulgarian: 95</li> <li>Bengali: 82</li> <li>Persian: 72</li> <li>Greek: 66</li> <li>Esperanto: 59</li> <li>Slovak: 19</li> </ul> </details> ## Contact - Discord [Open Assistant Discord Server](https://ykilcher.com/open-assistant-discord) - GitHub: [LAION-AI/Open-Assistant](https://github.com/LAION-AI/Open-Assistant) - E-Mail: [open-assistant@laion.ai](mailto:open-assistant@laion.ai)
[ -0.26576462388038635, -0.8663036227226257, 0.2185339629650116, 0.18875645101070404, -0.0567207969725132, 0.021328624337911606, -0.0942716896533966, -0.2972157895565033, 0.2599967122077942, 0.37665215134620667, -0.6469549536705017, -0.8496232032775879, -0.5779948830604553, 0.05115233734250069, -0.10339275747537613, 1.053027868270874, -0.08425477147102356, -0.29267293214797974, 0.05877348780632019, -0.37324103713035583, -0.20942847430706024, -0.45784875750541687, -0.7551059126853943, 0.20851854979991913, 0.1931029111146927, 0.45209503173828125, 0.6290752291679382, 0.8196818232536316, 0.5087724924087524, 0.36986789107322693, -0.19991528987884521, 0.03279484808444977, -0.6234137415885925, 0.05509922653436661, 0.0607452318072319, -0.5000073313713074, -0.7045882940292358, -0.04889071732759476, 0.570496141910553, 0.70403653383255, 0.10161872953176498, 0.33296769857406616, -0.08395513892173767, 0.5195186734199524, -0.6073983907699585, 0.5023558139801025, -0.4834134876728058, 0.09701918065547943, -0.1821601241827011, -0.240281343460083, -0.19786736369132996, -0.32463356852531433, 0.18609173595905304, -0.7371660470962524, -0.04131898656487465, 0.2142985463142395, 1.181281328201294, -0.036557573825120926, -0.2595909833908081, -0.3975311815738678, -0.40114402770996094, 0.8360214233398438, -0.918258011341095, 0.12301398813724518, 0.638309121131897, 0.11438697576522827, -0.3108663558959961, -0.343807190656662, -0.42298489809036255, 0.04530986025929451, -0.529947817325592, 0.3136141896247864, -0.20993027091026306, -0.07533483952283859, 0.037739064544439316, 0.5184170007705688, -0.7676497101783752, -0.1323719024658203, -0.44070133566856384, -0.15128445625305176, 0.635585606098175, 0.3522763252258301, 0.39338335394859314, -0.3959673345088959, -0.14505869150161743, -0.3306531608104706, -0.3207503855228424, 0.3608637750148773, 0.45343491435050964, 0.5575540661811829, -0.4759420156478882, 0.5526794195175171, -0.4819583296775818, 0.4575907289981842, -0.0965048149228096, -0.2886003851890564, 0.41301313042640686, -0.5809865593910217, -0.4071009159088135, -0.20437867939472198, 1.5949280261993408, 0.3540745675563812, -0.12648236751556396, 0.12174318730831146, 0.1274988204240799, -0.12372085452079773, -0.1604464054107666, -0.9378706216812134, -0.13114339113235474, 0.6273022294044495, -0.5850182771682739, -0.3539923429489136, 0.351200133562088, -0.9095411896705627, -0.06394071877002716, 0.13218198716640472, 0.03847610577940941, -0.49974358081817627, -0.4018191695213318, 0.20659281313419342, 0.1194848045706749, -0.23258525133132935, 0.3001694083213806, -0.7077162861824036, 0.36264944076538086, 0.5037288069725037, 0.9741244912147522, 0.10623091459274292, -0.38491812348365784, -0.1792452335357666, -0.29600462317466736, -0.2966150939464569, 0.41785311698913574, -0.3004053831100464, -0.15877708792686462, -0.05459050461649895, 0.29213204979896545, -0.298797070980072, -0.29870253801345825, 0.6470803618431091, -0.3524417579174042, 0.5471408367156982, -0.1233985498547554, -0.03982844948768616, -0.15696020424365997, 0.46347180008888245, -0.5957018733024597, 1.047499418258667, 0.3953094184398651, -0.9191668033599854, 0.12523356080055237, -1.0953062772750854, -0.3792882561683655, -0.09791657328605652, 0.01747829280793667, -0.5080368518829346, -0.32215893268585205, 0.34305089712142944, 0.43367618322372437, -0.37968796491622925, 0.08079893887042999, -0.314527690410614, -0.12396806478500366, 0.1935928612947464, -0.32567334175109863, 1.4206727743148804, 0.37575337290763855, -0.1911810338497162, 0.15616072714328766, -0.7607749700546265, -0.07956686615943909, 0.4082302153110504, -0.22069084644317627, -0.3347152769565582, -0.06042635068297386, -0.20777751505374908, 0.12793993949890137, 0.16563202440738678, -0.8791918158531189, 0.3716569244861603, -0.6732755303382874, 0.5857582092285156, 0.69966059923172, 0.05221487581729889, 0.4927254617214203, -0.19859492778778076, 0.39066246151924133, 0.42661088705062866, 0.3888782858848572, -0.490653932094574, -0.6993775367736816, -0.7078438997268677, -0.17280109226703644, -0.08854209631681442, 0.7186964154243469, -0.45724180340766907, 0.8461011648178101, -0.5355494022369385, -0.3108328580856323, -0.9840872883796692, -0.1035131961107254, 0.4281052052974701, 0.5146586894989014, 0.24235382676124573, -0.303911954164505, -0.5091010928153992, -0.673467755317688, 0.11737843602895737, -0.5575986504554749, 0.14690688252449036, 0.4951401352882385, 0.7484365701675415, -0.07672474533319473, 1.160780668258667, -0.7501567006111145, -0.4450647830963135, 0.1709941178560257, 0.1211005225777626, 0.4383910298347473, 0.47671326994895935, 0.5451481342315674, -0.6397044062614441, -0.7838191390037537, 0.24984467029571533, -0.8355182409286499, 0.11057399958372116, -0.0754643902182579, -0.42621979117393494, 0.29874080419540405, 0.25407275557518005, -0.9121562838554382, 0.5775879621505737, 0.4689951539039612, -0.6871926784515381, 0.16628004610538483, 0.06528401374816895, 0.5156710743904114, -1.378867745399475, 0.09268248826265335, -0.23806500434875488, -0.11910129338502884, -0.6233657598495483, -0.0618043914437294, -0.1950082927942276, 0.18110255897045135, -0.4591231942176819, 0.4676237106323242, -0.49865221977233887, 0.19525736570358276, 0.23081988096237183, 0.2919020652770996, -0.07330437749624252, 0.647560715675354, -0.13431113958358765, 0.6060898303985596, 0.7188447713851929, -0.23146073520183563, 0.35409653186798096, 0.6164270043373108, -0.2550235390663147, 0.6315600872039795, -0.5485667586326599, 0.14311529695987701, -0.1891602724790573, 0.23592635989189148, -1.1322883367538452, -0.3259633183479309, 0.8784372806549072, -0.8562502861022949, -0.08830844610929489, -0.4869948625564575, -0.600617527961731, -0.4738960266113281, -0.46213850378990173, 0.16005510091781616, 0.39755794405937195, -0.47239112854003906, 0.4821675419807434, 0.28495922684669495, -0.13522949814796448, -0.568009078502655, -0.6413599848747253, -0.2004079967737198, -0.10923857986927032, -0.9081624746322632, -0.041346292942762375, -0.08406595885753632, -0.09861245006322861, 0.35504090785980225, 0.027936270460486412, 0.01052903849631548, 0.12469044327735901, 0.48555314540863037, 0.2284737378358841, -0.3283439576625824, -0.2645516097545624, -0.0707022100687027, -0.011135365813970566, 0.06059205159544945, -0.2182665318250656, 0.8187618255615234, -0.29763251543045044, -0.5352830290794373, -0.3699361979961395, 0.26233693957328796, 0.6883007884025574, -0.2831480801105499, 1.1999809741973877, 0.45530685782432556, -0.2663235068321228, 0.17274615168571472, -0.0015040403231978416, -0.16627654433250427, -0.4429984986782074, 0.36849579215049744, -0.35270723700523376, -0.9014172554016113, 0.6372912526130676, 0.39443516731262207, 0.3437782824039459, 0.616081953048706, 0.3897060453891754, -0.06362351030111313, 1.2623058557510376, 0.09571278840303421, -0.405635803937912, 0.37186694145202637, -0.6198529601097107, 0.3370697796344757, -0.68556809425354, -0.2785719633102417, -0.6896820068359375, -0.01569799892604351, -0.5736637711524963, -0.2902793884277344, 0.187089204788208, 0.24870610237121582, -0.3917204737663269, 0.4846274256706238, -0.7239463925361633, 0.3336068391799927, 0.6179041266441345, -0.11152683943510056, 0.2055913656949997, -0.06984648108482361, 0.22351649403572083, 0.22555691003799438, -0.6075549125671387, -0.6091889142990112, 1.1113250255584717, 0.567818820476532, 0.567051112651825, 0.15988576412200928, 0.6187891960144043, -0.12490527331829071, 0.3611385226249695, -0.6185032725334167, 0.754230260848999, 0.08188159763813019, -0.5847052931785583, -0.40169641375541687, -0.7692553997039795, -1.4171541929244995, 0.30025625228881836, -0.059811271727085114, -1.2652385234832764, -0.09103307127952576, -0.035467974841594696, -0.2800830602645874, 0.4134812355041504, -0.7796359658241272, 1.0515798330307007, -0.1073494553565979, -0.05578523874282837, 0.25430747866630554, -0.9038264751434326, 0.4104369282722473, 0.17484551668167114, 0.39210888743400574, -0.20213830471038818, 0.15133948624134064, 0.868634819984436, -0.7145871520042419, 0.9114788770675659, -0.11658888310194016, 0.03128086030483246, 0.4476952850818634, 0.12480882555246353, 0.5976407527923584, 0.14860109984874725, 0.10054312646389008, 0.2674698531627655, 0.39178764820098877, -0.30111396312713623, -0.5037828683853149, 0.8714064359664917, -1.1388920545578003, -0.3288646936416626, -0.575918436050415, -0.6029250025749207, 0.003371932776644826, 0.4728889763355255, 0.2674656808376312, 0.10004959255456924, -0.05597539618611336, 0.47302064299583435, 0.30704084038734436, -0.2521553039550781, 0.2860802710056305, 0.5880290269851685, -0.2911282181739807, -0.7365466952323914, 0.9242002964019775, 0.19096875190734863, 0.321298211812973, 0.38360491394996643, 0.3030291199684143, -0.2157522290945053, -0.40658900141716003, -0.5154790282249451, 0.1788356900215149, -0.43423041701316833, -0.32093027234077454, -0.9949537515640259, -0.23305663466453552, -0.8350023627281189, 0.22617772221565247, -0.3105868399143219, -0.26007404923439026, -0.4994676411151886, -0.08714140206575394, 0.6018320918083191, 0.5494216084480286, 0.23925115168094635, 0.4606013596057892, -0.875450611114502, 0.3795780837535858, -0.14047996699810028, 0.561123251914978, -0.045686107128858566, -0.42303168773651123, -0.17056961357593536, 0.520655632019043, -0.4078320562839508, -0.8226318955421448, 0.4085092842578888, 0.04227742925286293, 0.283540815114975, 0.4738622009754181, 0.36242279410362244, 0.7966755032539368, -0.06194422394037247, 1.0183219909667969, 0.004459261894226074, -0.7027078866958618, 0.6783455610275269, -0.5557820200920105, 0.25095415115356445, 0.5596781373023987, 0.5187975764274597, -0.682134211063385, -0.600010871887207, -0.8426772952079773, -0.9695920944213867, 1.4595617055892944, 0.7141481041908264, -0.03608611226081848, -0.05179820582270622, -0.08507732301950455, -0.14464809000492096, 0.19911441206932068, -0.6540685892105103, -0.5847955346107483, -0.2772257328033447, -0.5451807975769043, 0.1000630334019661, 0.12968073785305023, -0.4273908734321594, -0.2178092747926712, 0.7653441429138184, -0.09978563338518143, 0.3550075590610504, 0.18851763010025024, 0.11678481101989746, -0.3312613368034363, 0.27067747712135315, 0.4037618935108185, 0.19503387808799744, -0.4642561972141266, -0.13252364099025726, -0.00302531523630023, -0.5414749979972839, -0.059478748589754105, 0.0896187424659729, -0.39281323552131653, -0.1744057834148407, 0.533446729183197, 1.103063702583313, -0.2758822739124298, -0.6442655324935913, 0.5924615263938904, -0.17450807988643646, -0.39382514357566833, -0.19252516329288483, -0.11561010777950287, 0.027489207684993744, 0.06431851536035538, 0.2925218641757965, 0.016241788864135742, -0.05950420722365379, -0.7492950558662415, -0.19748133420944214, 0.4989422857761383, -0.10327745974063873, -0.4038858711719513, 0.5081431865692139, -0.1148490309715271, -0.5502882599830627, 0.6617615818977356, -0.2918891906738281, -0.507320761680603, 0.5940765142440796, 0.3343716263771057, 0.8884997963905334, 0.010346012189984322, 0.256185919046402, 0.5823976397514343, 0.5161307454109192, 0.021386979147791862, 0.3474521040916443, 0.10619228333234787, -0.6849294900894165, -0.2349187284708023, -0.6085900068283081, -0.15094484388828278, 0.38405025005340576, -0.5990402698516846, 0.04928675666451454, -0.45647501945495605, -0.1432603895664215, -0.10524191707372665, -0.022861139848828316, -0.5614602565765381, 0.06689118593931198, -0.39060720801353455, 0.7729265689849854, -1.0537168979644775, 0.5132056474685669, 0.7618280053138733, -0.6155969500541687, -0.9658359289169312, -0.10567884147167206, 0.0918421670794487, -0.5093565583229065, 0.3516673743724823, 0.1252155900001526, 0.3077724277973175, -0.2745516896247864, -0.578639805316925, -0.892632782459259, 1.075721263885498, 0.20995962619781494, -0.3330949544906616, 0.19000132381916046, 0.48399683833122253, 0.8138177990913391, -0.3652361333370209, 0.7637999653816223, 0.6280127763748169, 0.48117029666900635, 0.14750246703624725, -0.9734318852424622, 0.18080641329288483, -0.6066803336143494, -0.3140002191066742, 0.4097609519958496, -0.9306722283363342, 1.0676980018615723, 0.11931725591421127, -0.32987844944000244, 0.18752506375312805, 0.4667769968509674, 0.18871170282363892, 0.3272363543510437, 0.47720402479171753, 0.6830692291259766, 0.5259589552879333, -0.47019162774086, 0.8504958748817444, -0.3788541257381439, 0.5900771021842957, 0.92946457862854, -0.023174162954092026, 0.7888671159744263, 0.3736170530319214, -0.331819623708725, 0.4449385404586792, 0.5691855549812317, 0.18590642511844635, 0.31719350814819336, -0.20423538982868195, -0.029389718547463417, 0.2873830795288086, -0.08307861536741257, -0.2021692544221878, 0.23952622711658478, 0.23221975564956665, -0.3127858638763428, -0.06434416770935059, -0.04200637713074684, 0.32155415415763855, -0.07166443765163422, 0.10331200808286667, 0.8513278961181641, -0.3035219609737396, -0.7961710095405579, 0.7172588109970093, -0.07455560564994812, 0.5993984341621399, -0.5261622667312622, -0.03967703878879547, -0.20425066351890564, 0.26458367705345154, -0.3926791548728943, -1.035614252090454, 0.25277167558670044, -0.15456931293010712, 0.08149969577789307, -0.30901825428009033, 0.4228537976741791, -0.5802533030509949, -0.2870444655418396, 0.28401288390159607, 0.27951517701148987, 0.2510087192058563, 0.08517894893884659, -0.8112658858299255, 0.3593228757381439, 0.16673678159713745, -0.5060993432998657, 0.24418719112873077, 0.5795265436172485, -0.14545872807502747, 0.6034823656082153, 0.8495361804962158, 0.1546606868505478, -0.0022685325238853693, -0.18653729557991028, 1.0548722743988037, -0.5196954607963562, -0.41259995102882385, -0.8895450830459595, 0.8470998406410217, -0.3639664947986603, -0.5015840530395508, 0.9174916744232178, 0.8194040656089783, 0.9491088390350342, -0.12662900984287262, 0.8678345680236816, -0.5535884499549866, 0.6805282235145569, -0.2907680571079254, 0.6942722797393799, -0.48433393239974976, 0.19098259508609772, -0.3553367853164673, -0.6731157898902893, -0.16974295675754547, 0.6878868341445923, -0.3176421821117401, -0.04169745743274689, 0.6171286106109619, 1.1045398712158203, -0.20418086647987366, 0.10664481669664383, -0.07953522354364395, 0.4609900414943695, 0.5177633762359619, 0.7327738404273987, 0.7317054271697998, -0.8353760242462158, 0.7027773261070251, -0.41197383403778076, -0.375788152217865, -0.2460724264383316, -0.5883619785308838, -1.1562374830245972, -0.7721058130264282, -0.26180580258369446, -0.6023215651512146, -0.042338088154792786, 1.078724980354309, 0.8703383803367615, -1.011143684387207, -0.3015253245830536, -0.25885096192359924, 0.0655016377568245, -0.1108294352889061, -0.3375251293182373, 0.4764500856399536, 0.13911959528923035, -0.7368836402893066, 0.2475176602602005, 0.20891305804252625, 0.16950827836990356, -0.06704135239124298, -0.32330435514450073, -0.2755397856235504, 0.03904666006565094, 0.5687408447265625, 0.5116915106773376, -0.6668964624404907, -0.2557782828807831, 0.11674623936414719, -0.3570483922958374, 0.22029508650302887, 0.3474903106689453, -0.4630095660686493, 0.31304261088371277, 0.8573000431060791, 0.24341031908988953, 0.340300053358078, 0.19927029311656952, 0.10206741094589233, -0.6938090920448303, 0.3462550938129425, 0.22610434889793396, 0.21948780119419098, 0.19650688767433167, -0.3739027976989746, 0.6727402806282043, 0.2576826810836792, -0.4740239977836609, -1.0550003051757812, -0.17494423687458038, -1.126128911972046, -0.0860462412238121, 1.1621577739715576, -0.39903098344802856, -0.43369463086128235, -0.18635641038417816, -0.6729098558425903, 0.035967450588941574, -0.8219398856163025, 0.5272580981254578, 0.6376913189888, 0.0031766730826348066, -0.2950833737850189, -0.2930854558944702, 0.3264213800430298, 0.20283198356628418, -1.1364706754684448, 0.11258383095264435, 0.2438926249742508, 0.2023380845785141, 0.5652942657470703, 0.9620562791824341, -0.1814923733472824, -0.061931755393743515, -0.04675997421145439, -0.09468889236450195, -0.09004853665828705, -0.23553840816020966, -0.006178703624755144, 0.22262948751449585, -0.09837819635868073, -0.4552617371082306 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mteb/sts14-sts
mteb
2022-09-27T19:11:37Z
7,384
1
null
[ "language:en", "region:us" ]
2022-09-27T19:11:37Z
2022-04-20T10:47:52.000Z
2022-04-20T10:47:52
--- language: - en ---
[ -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
open-ko-llm-leaderboard/requests
open-ko-llm-leaderboard
2023-11-28T23:39:09Z
7,384
2
null
[ "region:us" ]
2023-11-28T23:39:09Z
2023-09-26T08:51:28.000Z
2023-09-26T08:51:28
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
distil-whisper/librispeech_long
distil-whisper
2023-11-02T14:22:54Z
7,294
0
null
[ "region:us" ]
2023-11-02T14:22:54Z
2023-11-02T14:22:51.000Z
2023-11-02T14:22:51
--- dataset_info: config_name: clean features: - name: audio dtype: audio splits: - name: validation num_bytes: 1998609.0 num_examples: 1 download_size: 1984721 dataset_size: 1998609.0 configs: - config_name: clean data_files: - split: validation path: clean/validation-* --- # Dataset Card for "librispeech_long" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6454800367355347, -0.2715923488140106, 0.3579648733139038, 0.33926910161972046, -0.3645886182785034, -0.15152627229690552, -0.0004510954022407532, -0.3944876492023468, 1.0967381000518799, 0.5523438453674316, -0.8138552308082581, -0.7713438272476196, -0.46190565824508667, -0.30659744143486023, -0.44224971532821655, 1.4386721849441528, 0.021145913749933243, -0.018086683005094528, -0.3890392780303955, -0.3552253842353821, -0.10318344831466675, -0.49137580394744873, -0.7396154999732971, -0.6103538870811462, 1.2343857288360596, 0.5077967643737793, 0.49556589126586914, 0.28173577785491943, 0.698926568031311, 0.08817000687122345, -0.029460016638040543, -0.15740355849266052, -0.6068607568740845, -0.06407686322927475, -0.4033832848072052, -0.3249339461326599, -1.1301825046539307, -0.14105087518692017, 0.769390881061554, 0.6596526503562927, -0.11732678860425949, 0.9278056025505066, -0.07589845359325409, 0.9847332239151001, -0.40965843200683594, 0.3382208049297333, 0.258887380361557, -0.13935419917106628, -1.0094821453094482, 0.0358959436416626, 0.0431596077978611, -0.48325037956237793, -0.09321388602256775, -0.8665242791175842, -0.09512032568454742, 0.009583154693245888, 0.6949971318244934, 0.1313975602388382, -0.08501860499382019, -0.25795918703079224, -0.5446308851242065, 0.20786359906196594, -0.34091365337371826, 0.4543415904045105, 0.697245717048645, 0.3446407914161682, -0.08990426361560822, -0.8053566813468933, -0.2627738118171692, 0.02809523604810238, 0.031919680535793304, 0.2844412326812744, 0.21609672904014587, 0.10772071778774261, 0.7045919895172119, 0.39630749821662903, -0.6767565608024597, 0.022586917504668236, -0.6619095802307129, -0.17840808629989624, 0.8426687717437744, 0.07095660269260406, -0.07378611713647842, -0.04099263623356819, -0.37720268964767456, -0.14043250679969788, -0.3747594356536865, 0.08963114768266678, 0.4795360565185547, 0.07458004355430603, -1.1376550197601318, 0.5742330551147461, -0.05791419744491577, 0.5833489298820496, -0.04201558977365494, 0.34797775745391846, 0.7601670622825623, -0.06344683468341827, -0.08761242032051086, -0.05936521664261818, 0.35591745376586914, 0.5118399858474731, 0.1823377162218094, 0.10988135635852814, -0.15596485137939453, -0.3430948257446289, -0.24466747045516968, -1.1641123294830322, -0.6581077575683594, 0.4366109371185303, -0.7300773859024048, 0.21067285537719727, 0.33388492465019226, -1.1832188367843628, -0.6107361912727356, -0.47830918431282043, 0.17908057570457458, -0.030435921624302864, -0.6120957136154175, -0.04793163761496544, -0.6247856616973877, 0.36779147386550903, 0.04906110838055611, -0.6193976998329163, 0.40157201886177063, 0.7485256791114807, 0.6255302429199219, -0.11970478296279907, -0.29925352334976196, -0.7033835649490356, 0.367610365152359, -0.07765519618988037, 0.8028628826141357, -0.34389907121658325, -0.46927568316459656, 0.06669949740171432, 0.4845828711986542, 0.3134140372276306, -0.19549360871315002, 0.964205801486969, -0.3325950503349304, -0.13314299285411835, -0.5285988450050354, -0.8837101459503174, 0.04349967837333679, 0.1313556432723999, -1.2200344800949097, 1.0586960315704346, 0.25785335898399353, -0.7873654365539551, 0.28612855076789856, -1.2385332584381104, -0.4396960735321045, 0.5831409692764282, -0.017481829971075058, -0.6394011378288269, 0.2183220386505127, -0.14928323030471802, 0.58896803855896, -0.13942013680934906, 0.3110421895980835, -0.9308697581291199, -0.22472603619098663, 0.16071990132331848, 0.12152419984340668, 1.1016058921813965, 0.196539968252182, 0.25849926471710205, 0.08801693469285965, -0.996777355670929, -0.11770206689834595, 0.37035301327705383, 0.05063179135322571, -0.35694801807403564, -0.3593485951423645, 0.3796785771846771, -0.3144456148147583, 0.6010582447052002, -0.3822516202926636, 0.49391525983810425, -0.0021902546286582947, -0.25785768032073975, 0.7321174144744873, 0.07088232040405273, 0.41575807332992554, -0.42164358496665955, 0.4259830713272095, -0.271544873714447, 0.4947747588157654, 0.296943724155426, -0.2027437686920166, -0.87745600938797, -0.17616066336631775, 0.6977252960205078, 0.5738576054573059, -0.48399025201797485, 0.8097369074821472, -0.07743231952190399, -0.8682525157928467, -0.05171683803200722, 0.062148161232471466, 0.06697331368923187, 0.10203994810581207, 0.37858378887176514, -0.49324774742126465, -0.6520074009895325, -0.8377360105514526, 0.40462133288383484, 0.024108316749334335, 0.09375298023223877, 0.3357256054878235, 1.0291154384613037, -0.4954119026660919, 0.6369730234146118, -0.7772104740142822, -0.21209070086479187, 0.10749551653862, -0.2396288514137268, 0.5452579855918884, 0.5366967916488647, 1.0319288969039917, -0.5576722621917725, -0.3193507194519043, -0.700768768787384, -0.46272510290145874, -0.062252044677734375, 0.09277577698230743, -0.5205864906311035, -0.131553053855896, 0.16011914610862732, -0.5681823492050171, 0.7772538661956787, 1.016101598739624, -0.5369545221328735, 0.466034471988678, 0.02793651819229126, 0.0025183632969856262, -1.2872766256332397, 0.4786158502101898, -0.2756187617778778, -0.3847673535346985, -0.4193539023399353, 0.1378016322851181, 0.07937388122081757, -0.3175305128097534, -0.034119077026844025, 0.8545963764190674, -0.4195849299430847, -0.19500139355659485, -0.08842287957668304, -0.03985299542546272, -0.04912172630429268, 0.013628837652504444, 0.1223129853606224, 0.5737249255180359, 1.0487383604049683, -0.4201822280883789, 1.1946234703063965, 0.23305048048496246, -0.005178458523005247, 0.8509793281555176, -0.7093378305435181, 0.17233748733997345, -0.04654986783862114, 0.5245581865310669, -0.5065357685089111, -0.6539570093154907, 0.39216578006744385, -0.25282299518585205, 0.3790220022201538, -0.491862416267395, -0.6820226311683655, -0.8728508353233337, -0.3842194080352783, 0.6293972134590149, 0.5389871597290039, -0.8334190249443054, 0.44219970703125, 0.563078761100769, 0.03696298226714134, -0.07561317086219788, -0.8004720211029053, -0.04464399814605713, -0.3571915030479431, -0.3452327847480774, 0.3622519075870514, -0.6519652605056763, 0.10948850214481354, -0.41317760944366455, 0.4323241114616394, -0.1794058382511139, -0.15467265248298645, 0.6256147027015686, 0.034214768558740616, -0.07210846245288849, 0.8183619379997253, -0.20669777691364288, -0.6112127304077148, 0.13445405662059784, -0.01751251518726349, 0.6085512638092041, -0.09941929578781128, -0.36936941742897034, -0.37124642729759216, 0.4763033986091614, 0.0774027556180954, -0.27303290367126465, 0.5261210203170776, 1.1033953428268433, -0.487133651971817, -0.34430861473083496, -0.5046783685684204, -0.22272580862045288, -0.47750377655029297, -0.03549255058169365, -0.11231071501970291, -0.7158200740814209, 0.5972799062728882, -0.2501741945743561, -0.03505530208349228, 0.6587794423103333, 0.61750328540802, -0.17699392139911652, 0.2741292119026184, 0.7914469242095947, -0.4245525300502777, 0.3722585141658783, -0.2367052584886551, -0.21730922162532806, -0.4880640208721161, -0.15349222719669342, -0.38178393244743347, -0.547516405582428, -0.6709812879562378, -0.4993247985839844, 0.0011517209932208061, 0.10228386521339417, -0.21247918903827667, 0.4610501527786255, -0.7053807973861694, 0.37956422567367554, 0.5756774544715881, 0.18610107898712158, -0.16925713419914246, -0.08109690248966217, 0.4709393382072449, 0.19324573874473572, -0.48360541462898254, 0.029724804684519768, 1.177917242050171, 0.7470771670341492, 1.0649306774139404, 0.2769158184528351, 1.265505313873291, 0.1509307324886322, 0.04344714805483818, -0.4411330223083496, 0.5143485069274902, -0.11742458492517471, -0.7843470573425293, -0.1753244698047638, -0.003332710824906826, -0.9504081010818481, -0.9051236510276794, -0.3100849390029907, -0.29832813143730164, 0.3593868017196655, 0.3118784427642822, -0.22718395292758942, 0.27619513869285583, -0.52286297082901, 0.820023238658905, -0.5014032125473022, -0.3334829807281494, -0.26164236664772034, -0.7286123037338257, -0.03417592495679855, 0.09741989523172379, 0.11244279891252518, -0.3398282825946808, -0.12665534019470215, 1.23605477809906, -0.1604849398136139, 1.0912423133850098, -0.6602780818939209, -0.05872494354844093, 0.20619845390319824, -0.2958322763442993, 0.32724326848983765, 0.6053093075752258, -0.22311903536319733, 0.11848032474517822, 0.10582874715328217, -0.609103798866272, -0.23082385957241058, 0.6503445506095886, -0.6496238112449646, 0.1429281085729599, -0.5203491449356079, -0.3616548478603363, 0.11494789272546768, 0.4919911026954651, 0.13063901662826538, 0.6013326048851013, -0.5763535499572754, -0.028458334505558014, 0.8158494234085083, 0.15790148079395294, 0.4953652322292328, 0.2225407361984253, -0.6763058304786682, -0.284494549036026, 1.0013494491577148, 0.12294784188270569, -0.3577271103858948, 0.11233044415712357, 0.32462388277053833, -0.1450859010219574, -0.4480137228965759, -0.39412590861320496, 0.47294148802757263, -0.43269944190979004, -0.4548807740211487, -0.0457729771733284, -0.46620234847068787, -0.3432410657405853, -0.18299442529678345, -0.420645534992218, -0.555569052696228, -0.721246063709259, -0.4817020893096924, 1.1957929134368896, 0.5968673229217529, -0.7097020149230957, 0.5284211039543152, -0.8600353598594666, 0.511951208114624, 0.10984140634536743, 1.122133493423462, -0.3963908553123474, -0.3453591465950012, -0.5476146936416626, -0.12493990361690521, 0.22489699721336365, -0.5912761688232422, -0.1972079575061798, 0.3144684433937073, 0.4727693796157837, 0.34021952748298645, -0.009306253865361214, 0.7732600569725037, -0.21579688787460327, 0.6695375442504883, 0.48052772879600525, -0.5174574851989746, 0.63978511095047, -0.29667484760284424, 0.43760770559310913, 0.8423349857330322, 0.6753491759300232, -0.3486972749233246, 0.29260390996932983, -0.8911529779434204, -0.757115364074707, 0.05279974639415741, -0.12617851793766022, 0.19652865827083588, 0.30416542291641235, 0.5415796041488647, 0.17328977584838867, 0.1627347469329834, -0.9601606130599976, -0.6988852024078369, -0.007540707476437092, -0.16211003065109253, -0.035541824996471405, -0.6618462800979614, -0.5248314142227173, -0.5712956190109253, 0.634518027305603, -0.07547466456890106, 0.3123847246170044, 0.04605826362967491, 0.20016714930534363, 0.06854858994483948, 0.061444446444511414, 0.48433998227119446, 0.7770013809204102, -0.45782390236854553, -0.2055099755525589, 0.06408366560935974, -0.24483144283294678, -0.4885413646697998, 0.7892888188362122, 0.04418268799781799, -0.0316229872405529, 0.6984783411026001, 0.803956151008606, -0.45392176508903503, -0.3020407259464264, 0.5462183952331543, 0.03773995861411095, -0.27079689502716064, -1.1397666931152344, -0.011532749980688095, 0.39303600788116455, 0.3192591965198517, -0.05262687802314758, -0.46841803193092346, 0.37819820642471313, -0.25915253162384033, 0.6581027507781982, 0.11772045493125916, -0.6273619532585144, -0.3499598503112793, 0.10300399363040924, 0.6813684701919556, -0.29011571407318115, 0.731155276298523, -0.17698884010314941, -0.23115672171115875, 0.48509669303894043, 0.21152229607105255, 0.5991487503051758, -0.45206665992736816, 0.24061934649944305, 0.4994223117828369, 0.02511119470000267, 0.26295167207717896, 0.6535534262657166, -0.25796300172805786, -0.35498252511024475, -0.21996495127677917, -0.5489621162414551, -0.1559675633907318, -0.12419389933347702, -0.9752715826034546, 0.48746317625045776, -0.6991491317749023, -0.535682201385498, 0.02059941366314888, 0.21312084794044495, -0.6943180561065674, 0.09697803854942322, 0.5020899772644043, 1.4762587547302246, -0.8393684029579163, 0.9760788679122925, 0.4778525233268738, -0.35109639167785645, -0.5171511173248291, -0.21223333477973938, -0.041645508259534836, -0.8958961963653564, 0.23855766654014587, 0.22808155417442322, 0.2708369493484497, -0.3965427279472351, -0.8362613916397095, -0.760908842086792, 1.1804020404815674, -0.008460454642772675, -1.012833595275879, -0.056203052401542664, 0.048610035330057144, 0.4937506318092346, -0.25088411569595337, 0.13477358222007751, 0.5628657341003418, 0.8837305903434753, -0.08652652055025101, -0.9610218405723572, -0.23885667324066162, -0.19229379296302795, -0.399413526058197, 0.5335872173309326, -0.865747332572937, 0.23827968537807465, -0.03856346011161804, 0.07002006471157074, 0.22352063655853271, 0.9152703881263733, -0.021087102591991425, 0.3528699278831482, 0.5644874572753906, 0.8231542706489563, 0.9625299572944641, -0.12637919187545776, 0.8074146509170532, 0.03834085911512375, 0.6230430006980896, 1.4508248567581177, -0.25349849462509155, 0.452679842710495, 0.6020986437797546, 0.0076202452182769775, 0.5182761549949646, 0.5307601690292358, -0.7624387145042419, 0.2501823902130127, 0.44742634892463684, -0.16244542598724365, -0.3300183415412903, -0.1742953658103943, -0.6774619817733765, 0.23299682140350342, 0.6474117636680603, -0.46639323234558105, -0.15992841124534607, 0.08362463861703873, 0.052682794630527496, -0.23651602864265442, -0.519220232963562, 0.7359725832939148, 0.19947201013565063, -0.11399252712726593, 0.13706780970096588, -0.334484338760376, 0.46979618072509766, -0.9194306135177612, -0.25728633999824524, 0.1304650902748108, 0.27959346771240234, -0.6131336688995361, -1.4672963619232178, 0.5577031373977661, -0.4739806354045868, -0.25623852014541626, 0.05867684260010719, 0.7197848558425903, -0.44296738505363464, -0.7966426610946655, 0.8010375499725342, 0.18665067851543427, 0.199179545044899, 0.3776366710662842, -1.4143785238265991, 0.28471553325653076, 0.019149716943502426, -0.28633204102516174, 0.09631706774234772, 0.01591157354414463, 0.08450151234865189, 0.688652515411377, 0.47558483481407166, 0.11833825707435608, -0.467607319355011, 0.4626809358596802, 0.9825648069381714, -0.6725168228149414, -0.4081578254699707, -0.5449894666671753, 0.8048596382141113, -0.6338598728179932, -0.6233923435211182, 0.5039660930633545, 1.108983039855957, 0.703372061252594, -0.005111003294587135, 0.5228121876716614, -0.3478543162345886, 0.9426795840263367, -0.39866286516189575, 0.682729959487915, -0.6292034387588501, -0.3798251450061798, 0.062113016843795776, -0.8793640732765198, -0.6572774052619934, 0.40457892417907715, 0.16689464449882507, -0.10741373896598816, 0.5094834566116333, 0.8507054448127747, -0.32211801409721375, -0.08464524894952774, 0.04101616144180298, 0.14519895613193512, 0.3330242931842804, 0.5067346692085266, 0.2363959550857544, -0.28654196858406067, -0.0026386305689811707, -0.38272297382354736, -0.6523185968399048, -0.13878819346427917, -1.1801948547363281, -1.25241219997406, -0.7734861373901367, -0.4042017459869385, -0.5668706893920898, 0.15083077549934387, 0.9225727915763855, 0.9018205404281616, -0.9003602862358093, -0.5364018678665161, 0.47643065452575684, 0.0800873190164566, 0.20484235882759094, -0.11915702372789383, 0.8521218299865723, 0.4044352173805237, -0.3897622525691986, -0.15223996341228485, 0.023519590497016907, 0.3453734517097473, -0.14396831393241882, 0.03881927579641342, -0.11254367232322693, -0.17104056477546692, 0.42753636837005615, 0.584301233291626, -0.07569816708564758, -0.3461085855960846, -0.5253698825836182, 0.15805114805698395, -0.027029018849134445, 0.8408656120300293, -0.3022273778915405, 0.21334819495677948, 0.5698642730712891, 0.34028545022010803, 0.896812915802002, -0.14581650495529175, 0.48068156838417053, -0.6794571280479431, 0.5218613147735596, 0.21246007084846497, 0.5279022455215454, 0.01638859137892723, -0.29176294803619385, 0.9336963295936584, 0.09881354123353958, -0.8464623689651489, -0.45057132840156555, 0.3750406503677368, -1.6762359142303467, 0.17542853951454163, 1.001518726348877, 0.10180515050888062, -0.5310675501823425, 0.050724633038043976, -0.29551568627357483, 0.19707120954990387, -0.7569136619567871, 0.021430112421512604, 0.5102378129959106, -0.0338425375521183, -0.33611202239990234, -0.3029690086841583, 0.7058663368225098, -0.2814180850982666, -1.1129920482635498, 0.35707879066467285, 0.5141156911849976, 0.22340552508831024, 0.34254294633865356, 0.6160789728164673, -0.06337933242321014, 0.31998297572135925, -0.09754160046577454, 0.4280010163784027, -0.11715852469205856, -0.4568295478820801, -0.1516748070716858, -0.18976575136184692, 0.06358541548252106, -0.01057113241404295 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mteb/sts15-sts
mteb
2022-09-27T19:12:14Z
7,284
1
null
[ "language:en", "region:us" ]
2022-09-27T19:12:14Z
2022-04-20T10:48:04.000Z
2022-04-20T10:48:04
--- language: - en ---
[ -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
mteb/sts16-sts
mteb
2022-09-27T19:12:09Z
7,273
1
null
[ "language:en", "region:us" ]
2022-09-27T19:12:09Z
2022-04-20T10:48:15.000Z
2022-04-20T10:48:15
--- 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
polyglot_ner
null
2023-04-05T13:36:52Z
7,195
23
polyglot-ner
[ "task_categories:token-classification", "task_ids:named-entity-recognition", "annotations_creators:machine-generated", "language_creators:found", "multilinguality:multilingual", "size_categories:unknown", "source_datasets:original", "language:ar", "language:bg", "language:ca", "language:cs", "language:da", "language:de", "language:el", "language:en", "language:es", "language:et", "language:fa", "language:fi", "language:fr", "language:he", "language:hi", "language:hr", "language:hu", "language:id", "language:it", "language:ja", "language:ko", "language:lt", "language:lv", "language:ms", "language:nl", "language:no", "language:pl", "language:pt", "language:ro", "language:ru", "language:sk", "language:sl", "language:sr", "language:sv", "language:th", "language:tl", "language:tr", "language:uk", "language:vi", "language:zh", "license:unknown", "arxiv:1410.3791", "region:us" ]
2023-04-05T13:36:52Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - machine-generated language_creators: - found language: - ar - bg - ca - cs - da - de - el - en - es - et - fa - fi - fr - he - hi - hr - hu - id - it - ja - ko - lt - lv - ms - nl - 'no' - pl - pt - ro - ru - sk - sl - sr - sv - th - tl - tr - uk - vi - zh license: - unknown multilinguality: - multilingual pretty_name: Polyglot-NER size_categories: - unknown source_datasets: - original task_categories: - token-classification task_ids: - named-entity-recognition paperswithcode_id: polyglot-ner dataset_info: - config_name: ca features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 143746026 num_examples: 372665 download_size: 1107018606 dataset_size: 143746026 - config_name: de features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 156744752 num_examples: 547578 download_size: 1107018606 dataset_size: 156744752 - config_name: es features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 145387551 num_examples: 386699 download_size: 1107018606 dataset_size: 145387551 - config_name: fi features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 95175890 num_examples: 387465 download_size: 1107018606 dataset_size: 95175890 - config_name: hi features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 177698330 num_examples: 401648 download_size: 1107018606 dataset_size: 177698330 - config_name: id features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 152560050 num_examples: 463862 download_size: 1107018606 dataset_size: 152560050 - config_name: ko features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 174523416 num_examples: 560105 download_size: 1107018606 dataset_size: 174523416 - config_name: ms features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 155268778 num_examples: 528181 download_size: 1107018606 dataset_size: 155268778 - config_name: pl features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 159684112 num_examples: 623267 download_size: 1107018606 dataset_size: 159684112 - config_name: ru features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 200717423 num_examples: 551770 download_size: 1107018606 dataset_size: 200717423 - config_name: sr features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 183437513 num_examples: 559423 download_size: 1107018606 dataset_size: 183437513 - config_name: tl features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 47104871 num_examples: 160750 download_size: 1107018606 dataset_size: 47104871 - config_name: vi features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 141062258 num_examples: 351643 download_size: 1107018606 dataset_size: 141062258 - config_name: ar features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 183551222 num_examples: 339109 download_size: 1107018606 dataset_size: 183551222 - config_name: cs features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 156792129 num_examples: 564462 download_size: 1107018606 dataset_size: 156792129 - config_name: el features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 195456401 num_examples: 446052 download_size: 1107018606 dataset_size: 195456401 - config_name: et features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 21961619 num_examples: 87023 download_size: 1107018606 dataset_size: 21961619 - config_name: fr features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 147560734 num_examples: 418411 download_size: 1107018606 dataset_size: 147560734 - config_name: hr features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 154151689 num_examples: 629667 download_size: 1107018606 dataset_size: 154151689 - config_name: it features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 147520094 num_examples: 378325 download_size: 1107018606 dataset_size: 147520094 - config_name: lt features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 165319919 num_examples: 848018 download_size: 1107018606 dataset_size: 165319919 - config_name: nl features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 150737871 num_examples: 520664 download_size: 1107018606 dataset_size: 150737871 - config_name: pt features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 145627857 num_examples: 396773 download_size: 1107018606 dataset_size: 145627857 - config_name: sk features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 134174889 num_examples: 500135 download_size: 1107018606 dataset_size: 134174889 - config_name: sv features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 157058369 num_examples: 634881 download_size: 1107018606 dataset_size: 157058369 - config_name: tr features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 164456506 num_examples: 607324 download_size: 1107018606 dataset_size: 164456506 - config_name: zh features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 165056969 num_examples: 1570853 download_size: 1107018606 dataset_size: 165056969 - config_name: bg features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 190509195 num_examples: 559694 download_size: 1107018606 dataset_size: 190509195 - config_name: da features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 150551293 num_examples: 546440 download_size: 1107018606 dataset_size: 150551293 - config_name: en features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 145491677 num_examples: 423982 download_size: 1107018606 dataset_size: 145491677 - config_name: fa features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 180093656 num_examples: 492903 download_size: 1107018606 dataset_size: 180093656 - config_name: he features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 177231613 num_examples: 459933 download_size: 1107018606 dataset_size: 177231613 - config_name: hu features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 160702240 num_examples: 590218 download_size: 1107018606 dataset_size: 160702240 - config_name: ja features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 193679570 num_examples: 1691018 download_size: 1107018606 dataset_size: 193679570 - config_name: lv features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 76256241 num_examples: 331568 download_size: 1107018606 dataset_size: 76256241 - config_name: 'no' features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 152431612 num_examples: 552176 download_size: 1107018606 dataset_size: 152431612 - config_name: ro features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 96369897 num_examples: 285985 download_size: 1107018606 dataset_size: 96369897 - config_name: sl features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 148140079 num_examples: 521251 download_size: 1107018606 dataset_size: 148140079 - config_name: th features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 360409343 num_examples: 217631 download_size: 1107018606 dataset_size: 360409343 - config_name: uk features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 198251631 num_examples: 561373 download_size: 1107018606 dataset_size: 198251631 - config_name: combined features: - name: id dtype: string - name: lang dtype: string - name: words sequence: string - name: ner sequence: string splits: - name: train num_bytes: 6286855097 num_examples: 21070925 download_size: 1107018606 dataset_size: 6286855097 --- # Dataset Card for Polyglot-NER ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [https://sites.google.com/site/rmyeid/projects/polylgot-ner](https://sites.google.com/site/rmyeid/projects/polylgot-ner) - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 45.39 GB - **Size of the generated dataset:** 12.54 GB - **Total amount of disk used:** 57.93 GB ### Dataset Summary Polyglot-NER A training dataset automatically generated from Wikipedia and Freebase the task of named entity recognition. The dataset contains the basic Wikipedia based training data for 40 languages we have (with coreference resolution) for the task of named entity recognition. The details of the procedure of generating them is outlined in Section 3 of the paper (https://arxiv.org/abs/1410.3791). Each config contains the data corresponding to a different language. For example, "es" includes only spanish examples. ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances #### ar - **Size of downloaded dataset files:** 1.11 GB - **Size of the generated dataset:** 183.55 MB - **Total amount of disk used:** 1.29 GB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "id": "2", "lang": "ar", "ner": ["O", "O", "O", "O", "O", "O", "O", "O", "LOC", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "PER", "PER", "PER", "PER", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O"], "words": "[\"وفي\", \"مرحلة\", \"موالية\", \"أنشأت\", \"قبيلة\", \"مكناسة\", \"الزناتية\", \"مكناسة\", \"تازة\", \",\", \"وأقام\", \"بها\", \"المرابطون\", \"قلعة\", \"..." } ``` #### bg - **Size of downloaded dataset files:** 1.11 GB - **Size of the generated dataset:** 190.51 MB - **Total amount of disk used:** 1.30 GB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "id": "1", "lang": "bg", "ner": ["O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O"], "words": "[\"Дефиниция\", \"Наименованията\", \"\\\"\", \"книжовен\", \"\\\"/\\\"\", \"литературен\", \"\\\"\", \"език\", \"на\", \"български\", \"за\", \"тази\", \"кодифи..." } ``` #### ca - **Size of downloaded dataset files:** 1.11 GB - **Size of the generated dataset:** 143.75 MB - **Total amount of disk used:** 1.25 GB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "id": "2", "lang": "ca", "ner": "[\"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O\", \"O...", "words": "[\"Com\", \"a\", \"compositor\", \"deixà\", \"un\", \"immens\", \"llegat\", \"que\", \"inclou\", \"8\", \"simfonies\", \"(\", \"1822\", \"),\", \"diverses\", ..." } ``` #### combined - **Size of downloaded dataset files:** 1.11 GB - **Size of the generated dataset:** 6.29 GB - **Total amount of disk used:** 7.39 GB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "id": "18", "lang": "es", "ner": ["O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O"], "words": "[\"Los\", \"cambios\", \"en\", \"la\", \"energía\", \"libre\", \"de\", \"Gibbs\", \"\\\\\", \"Delta\", \"G\", \"nos\", \"dan\", \"una\", \"cuantificación\", \"de..." } ``` #### cs - **Size of downloaded dataset files:** 1.11 GB - **Size of the generated dataset:** 156.79 MB - **Total amount of disk used:** 1.26 GB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "id": "3", "lang": "cs", "ner": ["O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O"], "words": "[\"Historie\", \"Symfonická\", \"forma\", \"se\", \"rozvinula\", \"se\", \"především\", \"v\", \"období\", \"klasicismu\", \"a\", \"romantismu\", \",\", \"..." } ``` ### Data Fields The data fields are the same among all splits. #### ar - `id`: a `string` feature. - `lang`: a `string` feature. - `words`: a `list` of `string` features. - `ner`: a `list` of `string` features. #### bg - `id`: a `string` feature. - `lang`: a `string` feature. - `words`: a `list` of `string` features. - `ner`: a `list` of `string` features. #### ca - `id`: a `string` feature. - `lang`: a `string` feature. - `words`: a `list` of `string` features. - `ner`: a `list` of `string` features. #### combined - `id`: a `string` feature. - `lang`: a `string` feature. - `words`: a `list` of `string` features. - `ner`: a `list` of `string` features. #### cs - `id`: a `string` feature. - `lang`: a `string` feature. - `words`: a `list` of `string` features. - `ner`: a `list` of `string` features. ### Data Splits | name | train | |----------|---------:| | ar | 339109 | | bg | 559694 | | ca | 372665 | | combined | 21070925 | | cs | 564462 | ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @article{polyglotner, author = {Al-Rfou, Rami and Kulkarni, Vivek and Perozzi, Bryan and Skiena, Steven}, title = {{Polyglot-NER}: Massive Multilingual Named Entity Recognition}, journal = {{Proceedings of the 2015 {SIAM} International Conference on Data Mining, Vancouver, British Columbia, Canada, April 30- May 2, 2015}}, month = {April}, year = {2015}, publisher = {SIAM}, } ``` ### Contributions Thanks to [@joeddav](https://github.com/joeddav) for adding this dataset.
[ -0.8789177536964417, -0.5537986755371094, 0.2545085847377777, 0.02034994401037693, -0.2366022914648056, -0.07196345180273056, -0.48386460542678833, -0.42081210017204285, 0.7513670325279236, 0.4973905682563782, -0.9041976928710938, -0.8401750922203064, -0.5824079513549805, 0.40030497312545776, -0.4012579023838043, 1.137021541595459, -0.18407195806503296, -0.23501579463481903, -0.06509897857904434, -0.13165944814682007, -0.3129167854785919, -0.35060787200927734, -0.3273388743400574, -0.15459701418876648, 0.5960046648979187, 0.46279969811439514, 0.8287444114685059, 1.0878292322158813, 0.7942496538162231, 0.2039497196674347, -0.1541186273097992, 0.11968016624450684, -0.38349536061286926, -0.3555849492549896, 0.14358508586883545, -0.22565773129463196, -0.4867359697818756, 0.19685110449790955, 0.790425181388855, 0.6505881547927856, -0.018817441537976265, 0.47190436720848083, 0.10000453889369965, 1.0459880828857422, -0.21419154107570648, 0.27760735154151917, -0.21564985811710358, 0.010356228798627853, -0.43867167830467224, -0.057357627898454666, 0.0939105674624443, -0.41780754923820496, -0.1354387402534485, -1.0912976264953613, 0.38238516449928284, 0.10752096772193909, 1.3765873908996582, 0.3559552729129791, 0.07377562671899796, -0.3213202655315399, -0.4965249300003052, 0.7750712037086487, -0.7238035202026367, -0.01639903150498867, 0.6259374618530273, 0.35093075037002563, -0.20225246250629425, -0.6033732891082764, -0.9010963439941406, 0.35932087898254395, -0.3582320511341095, 0.22665753960609436, 0.06616321206092834, -0.27881404757499695, 0.5541258454322815, 0.6044861674308777, -0.827653169631958, -0.019934356212615967, -0.6861199140548706, -0.08497423678636551, 1.1244227886199951, 0.2682843506336212, 0.4236206114292145, -0.606683075428009, -0.12229816615581512, -0.43300142884254456, -0.48930823802948, 0.06056126579642296, 0.6487171053886414, 0.6094817519187927, -0.6280935406684875, 0.7183472514152527, -0.3157360255718231, 0.6966217756271362, -0.03283556550741196, -0.12657032907009125, 0.76430743932724, -0.567155122756958, -0.22346535325050354, -0.00011346508108545095, 1.0629849433898926, 0.7564032673835754, 0.13517475128173828, 0.1187155619263649, 0.19194339215755463, 0.0567796528339386, -0.043865326792001724, -0.8807657361030579, -0.54859858751297, 0.6619070768356323, -0.653849720954895, -0.26524877548217773, 0.16225622594356537, -1.3763210773468018, -0.2214207947254181, -0.32779207825660706, 0.19869562983512878, -0.5065903663635254, -0.4115525186061859, 0.029574600979685783, -0.2425456941127777, 0.37606483697891235, 0.18343240022659302, -0.7542831897735596, 0.22363363206386566, 0.4817412197589874, 0.8440920114517212, -0.06155119091272354, -0.43942761421203613, 0.03198182210326195, -0.07943416386842728, -0.1136232540011406, 0.8251779675483704, -0.43138912320137024, -0.46969327330589294, -0.3444133400917053, 0.5430987477302551, -0.11192695796489716, -0.32059067487716675, 0.7228776216506958, -0.09106236696243286, 0.5063921809196472, -0.639112114906311, -0.5925037264823914, -0.2657518982887268, 0.40779295563697815, -0.9848641753196716, 1.4050397872924805, 0.2501433789730072, -1.0872162580490112, 0.6163479089736938, -0.9328892230987549, -0.2881113290786743, 0.08922990411520004, -0.19545841217041016, -0.6855157613754272, -0.5612404346466064, 0.5476387143135071, 0.45870882272720337, -0.5852051973342896, 0.10053111612796783, -0.11443056911230087, -0.20200389623641968, 0.010671500116586685, 0.05108163505792618, 1.243820309638977, 0.16195252537727356, -0.2904908359050751, -0.01627351902425289, -1.0383886098861694, 0.09180095791816711, 0.5709018111228943, -0.46340784430503845, -0.14642050862312317, -0.17092908918857574, 0.40236926078796387, 0.14353510737419128, 0.15421386063098907, -0.6161044836044312, 0.3733378052711487, -0.23310065269470215, 0.29993781447410583, 0.5899448990821838, 0.1062372475862503, 0.37838804721832275, -0.5124396085739136, 0.4676998555660248, -0.005136174149811268, 0.18854689598083496, -0.1603856235742569, -0.40236884355545044, -0.6481376886367798, -0.43820568919181824, 0.5314666628837585, 0.5795145034790039, -0.6763981580734253, 0.9651577472686768, -0.7630316019058228, -0.7387667298316956, -0.5573485493659973, 0.1267731934785843, 0.0319518968462944, 0.5051260590553284, 0.45987266302108765, -0.2899837791919708, -0.8320233225822449, -0.9427923560142517, 0.16184735298156738, -0.012995942495763302, 0.09709186106920242, 0.5493535399436951, 0.9222273826599121, -0.023953329771757126, 1.0815610885620117, -0.7816666960716248, -0.48610737919807434, -0.2735256552696228, -0.3076808750629425, 0.45256856083869934, 0.5451138019561768, 0.9223570227622986, -0.9433357119560242, -0.7042006254196167, -0.08313111960887909, -1.0540854930877686, 0.14492623507976532, -0.11635034531354904, -0.1483580768108368, -0.15002493560314178, 0.34267422556877136, -0.7029740810394287, 0.4896540343761444, 0.4662652313709259, -0.4154678285121918, 0.7102804780006409, -0.10503880679607391, 0.17675788700580597, -1.4637449979782104, 0.36824896931648254, -0.05895894020795822, 0.050202637910842896, -0.46505388617515564, -0.15455463528633118, -0.09234553575515747, -0.08530934900045395, -0.2547207474708557, 0.5529533624649048, -0.6429334282875061, 0.09971359372138977, 0.08186821639537811, 0.03933063894510269, 0.017322584986686707, 0.5653632879257202, -0.06562157720327377, 0.8761692643165588, 0.8143824338912964, -0.4737935960292816, 0.482918918132782, 0.5143358707427979, -0.6454799175262451, 0.5235081911087036, -0.47855621576309204, -0.020567864179611206, -0.3461698293685913, 0.3315984606742859, -0.8275126814842224, -0.6804159283638, 0.49789002537727356, -0.6630831360816956, 0.3773297369480133, -0.22602945566177368, -0.6790814995765686, -0.6986015439033508, -0.3517996668815613, 0.16325941681861877, 0.5116753578186035, -0.4022340476512909, 0.5191671848297119, 0.5778064727783203, 0.01879103295505047, -0.42299941182136536, -0.8212943077087402, 0.11004638671875, -0.30252063274383545, -0.6778035759925842, 0.3043707013130188, -0.16023683547973633, 0.033605463802814484, 0.3534768223762512, 0.21579509973526, 0.0855470523238182, -0.01982683129608631, 0.2929249405860901, 0.19844487309455872, -0.048529088497161865, -0.15160547196865082, -0.1820632666349411, -0.0488738976418972, 0.007799645885825157, -0.18428343534469604, 0.6940377354621887, 0.03533875197172165, -0.1693088263273239, -0.35198962688446045, 0.34861162304878235, 0.3729225993156433, -0.10024376213550568, 0.8574531078338623, 0.7522204518318176, -0.2895900309085846, 0.09276939183473587, -0.1930786669254303, -0.003689472796395421, -0.4305880665779114, 0.13827556371688843, -0.22740407288074493, -0.6364094018936157, 0.9708138108253479, -0.007032923866063356, 0.16060210764408112, 0.9833301901817322, 0.3578454852104187, -0.3576285243034363, 0.5666131377220154, 0.23663809895515442, -0.20575858652591705, 0.41657108068466187, -1.046575903892517, -0.15267588198184967, -0.93242347240448, -0.40956228971481323, -0.6080006957054138, -0.6757457256317139, -0.8317878842353821, -0.5105310678482056, 0.2368076890707016, -0.13076165318489075, -0.18503035604953766, 0.49546030163764954, -0.8509646058082581, 0.6187624931335449, 0.5446892976760864, 0.20961524546146393, -0.21204912662506104, 0.28702598810195923, 0.029475301504135132, -0.01363301184028387, -0.5874114036560059, -0.3885667324066162, 1.3509658575057983, 0.09186524152755737, 0.4316789209842682, 0.021971972659230232, 0.8691912889480591, 0.4248509109020233, -0.1177956610918045, -0.5663232803344727, 0.6439342498779297, -0.21006502211093903, -0.793664276599884, -0.5519061088562012, -0.43091142177581787, -1.1898244619369507, 0.025991708040237427, -0.2468140572309494, -0.860275149345398, 0.3754754662513733, -0.03760115057229996, -0.18916191160678864, 0.5700827836990356, -0.6533516049385071, 0.9219984412193298, -0.08903045207262039, -0.21350623667240143, 0.1776881068944931, -1.0067110061645508, 0.1210298240184784, 0.043889906257390976, 0.5269338488578796, -0.3797430992126465, 0.2695969045162201, 1.2367579936981201, -0.7360551953315735, 0.7741526365280151, -0.32831239700317383, 0.3598253130912781, 0.5572082996368408, -0.18442010879516602, 0.47632312774658203, -0.2610338032245636, -0.13614316284656525, 0.4163232445716858, -0.0641821026802063, -0.5038180947303772, -0.5259412527084351, 0.6677132844924927, -0.925619900226593, -0.3530452847480774, -0.5313879251480103, -0.5254496335983276, 0.24225963652133942, 0.5396853089332581, 0.45389705896377563, 0.15840327739715576, -0.06611689925193787, 0.23346039652824402, 0.5471755266189575, -0.25069817900657654, 0.31018874049186707, 0.08481133729219437, -0.23034821450710297, -0.7383208870887756, 1.0048601627349854, 0.3508518636226654, 0.01368635892868042, 0.16905608773231506, 0.17527130246162415, -0.22748412191867828, -0.5189838409423828, -0.6974890232086182, 0.2900232672691345, -0.4938133955001831, -0.3818122446537018, -0.6138495206832886, -0.3146856725215912, -0.44821807742118835, -0.16325971484184265, -0.19413718581199646, -0.5710644721984863, -0.4333323538303375, -0.31308144330978394, 0.7921690344810486, 0.46827462315559387, -0.3780832588672638, 0.3734073042869568, -0.6196547150611877, 0.29089289903640747, -0.1739981323480606, 0.3568183481693268, -0.1473923921585083, -0.42002975940704346, -0.35759812593460083, 0.10168753564357758, -0.1683066189289093, -0.7423785924911499, 0.5629784464836121, 0.07611124217510223, 0.44711732864379883, -0.006413371302187443, -0.023296523839235306, 0.7644175291061401, -0.2698119282722473, 1.1468524932861328, 0.26562801003456116, -0.5259910821914673, 0.6697577834129333, -0.5130102634429932, 0.3314598798751831, 0.8199872374534607, 0.4934479892253876, -0.6281813383102417, -0.0003303207631688565, -0.7707936763763428, -1.1350868940353394, 1.0139820575714111, 0.4963284432888031, -0.10335773974657059, 0.11789532750844955, 0.23957575857639313, 0.09961811453104019, 0.15046842396259308, -0.6028143763542175, -0.786525547504425, -0.3282478451728821, -0.3214840888977051, -0.0941406786441803, -0.06041283905506134, -0.23720180988311768, -0.5126448273658752, 0.940396785736084, 0.03466443344950676, 0.3267909586429596, 0.375274121761322, 0.022840972989797592, -0.006263046525418758, 0.02603023685514927, 0.3943646550178528, 0.42868244647979736, -0.3644105792045593, -0.15258841216564178, 0.02319631725549698, -0.8729009032249451, -0.08837606012821198, 0.27924472093582153, -0.5434414148330688, -0.008751200512051582, 0.33136749267578125, 0.8483660221099854, -0.19678977131843567, -0.31987157464027405, 0.2930850386619568, -0.13232989609241486, -0.5558107495307922, -0.5706298351287842, -0.041998960077762604, -0.08409156650304794, 0.02639971487224102, 0.370174765586853, -0.07430586218833923, -0.015574418008327484, -0.33312249183654785, 0.21206919848918915, 0.07352419197559357, -0.05785680562257767, -0.22425812482833862, 0.5288782119750977, -0.11323665827512741, -0.19219493865966797, 0.77476567029953, -0.3328539729118347, -0.5909949541091919, 0.9997833967208862, 0.14233876764774323, 0.7331029176712036, -0.008848677389323711, 0.291006475687027, 0.9290872812271118, 0.5410358905792236, -0.008435990661382675, 0.6456029415130615, 0.057694211602211, -0.6528113484382629, -0.17699694633483887, -0.7745955586433411, -0.05369950830936432, 0.39569589495658875, -0.8047583699226379, 0.4095231890678406, -0.4713222086429596, -0.24427849054336548, 0.319129079580307, 0.19833676517009735, -1.0154368877410889, 0.34793853759765625, -0.007501813583076, 1.1194915771484375, -1.0447434186935425, 0.6385335922241211, 0.6513702869415283, -0.6621325016021729, -1.1134816408157349, -0.16169960796833038, -0.02555910497903824, -0.516633152961731, 0.3767215311527252, 0.17593097686767578, 0.5689847469329834, -0.03525770083069801, -0.619105339050293, -1.1492140293121338, 1.4042155742645264, 0.14835922420024872, -0.4350473880767822, -0.004264160059392452, 0.40612635016441345, 0.5494832396507263, -0.1443483829498291, 0.16053472459316254, 0.7440841794013977, 0.8396551609039307, 0.1724405735731125, -0.896013617515564, 0.2451154887676239, -0.5322058200836182, -0.14516310393810272, 0.4550788998603821, -0.9018899202346802, 0.715064287185669, -0.059533435851335526, -0.32295146584510803, -0.1902792602777481, 0.6285935044288635, 0.08121532201766968, 0.16945700347423553, 0.3837405741214752, 0.9085030555725098, 0.9498465061187744, -0.454574853181839, 1.2980849742889404, -0.2370719611644745, 0.6292746067047119, 1.0651694536209106, 0.00967381987720728, 0.5767995715141296, 0.42566999793052673, -0.5985298156738281, 0.4687250852584839, 0.948457658290863, -0.633682906627655, 0.5978273153305054, 0.04501039534807205, -0.004836854990571737, 0.0009662153897807002, -0.08600207418203354, -0.4816836416721344, 0.37582889199256897, 0.45541292428970337, -0.4987456798553467, -0.2728225886821747, 0.07474683970212936, 0.29280930757522583, -0.1554182767868042, -0.2641655206680298, 0.7152381539344788, -0.1783580482006073, -0.3666245639324188, 0.6552897095680237, -0.1798418015241623, 0.5347070693969727, -0.6808494329452515, 0.11692529916763306, -0.07646876573562622, -0.020664621144533157, -0.644363284111023, -1.3513373136520386, 0.45218008756637573, 0.02002272941172123, -0.4467930495738983, -0.027381086722016335, 0.48905709385871887, -0.3233872056007385, -0.8609848618507385, 0.1535216122865677, 0.20574764907360077, 0.55478835105896, 0.27175313234329224, -1.0056231021881104, 0.17027752101421356, 0.2864247262477875, -0.5025728344917297, 0.34480395913124084, 0.3441142439842224, 0.09676401317119598, 0.44219762086868286, 0.9403061866760254, 0.2343466430902481, 0.11431048810482025, -0.059364549815654755, 1.1379919052124023, -0.766412615776062, -0.4944103956222534, -0.7627480030059814, 0.5557628273963928, -0.39510926604270935, -0.2399369776248932, 0.8620355129241943, 1.0984543561935425, 0.9998939633369446, -0.03798596188426018, 1.1013314723968506, -0.7166871428489685, 0.635993242263794, -0.5353764891624451, 0.730701208114624, -0.8108466267585754, -0.07050394266843796, -0.25711381435394287, -0.7932403087615967, -0.45030876994132996, 0.5022499561309814, -0.49648991227149963, 0.058036647737026215, 0.5704616904258728, 0.8757891654968262, -0.09238704293966293, 0.12655799090862274, 0.021477006375789642, 0.14591370522975922, 0.3163890838623047, 0.4879474341869354, 0.29284030199050903, -0.7740647196769714, 0.6711446046829224, -0.6256073117256165, 0.0023049640003591776, 0.010161316022276878, -0.8661805391311646, -0.8332781791687012, -1.0086115598678589, -0.460258424282074, -0.5733398199081421, -0.1623597890138626, 1.0353394746780396, 0.5936821103096008, -0.8916688561439514, -0.2341420203447342, -0.028627591207623482, 0.06632184237241745, -0.2052019238471985, -0.31153640151023865, 0.943746030330658, 0.27615296840667725, -0.7287090420722961, 0.060985684394836426, 0.001108762575313449, 0.1731201857328415, -0.022542588412761688, -0.04660079628229141, -0.25995269417762756, -0.1526968777179718, 0.2826976776123047, 0.47673094272613525, -0.4683053493499756, -0.09136143326759338, -0.14200802147388458, 0.09740454703569412, 0.40195831656455994, 0.41045132279396057, -0.5362999439239502, 0.411969393491745, 0.5582884550094604, 0.3829664885997772, 0.779805600643158, 0.07489033043384552, 0.03827882558107376, -0.6758351922035217, 0.14409953355789185, 0.009052657522261143, 0.33058273792266846, 0.5201276540756226, -0.6043001413345337, 0.7947645783424377, 0.3295244872570038, -0.5655615925788879, -0.8921034932136536, -0.22333315014839172, -1.3167884349822998, -0.08132609724998474, 1.3088582754135132, -0.13029278814792633, -0.7169363498687744, 0.03557010367512703, -0.2569285035133362, 0.17939120531082153, -0.5518273115158081, 0.6204888820648193, 0.8651302456855774, 0.00436089001595974, -0.016249753534793854, -0.5477385520935059, 0.5915272831916809, -0.09935757517814636, -0.956082284450531, 0.24397221207618713, 0.4571853280067444, 0.4991163909435272, 0.427794486284256, 0.5296684503555298, -0.25604960322380066, 0.005040956195443869, 0.20828239619731903, 0.42435601353645325, -0.24828264117240906, -0.19721388816833496, -0.0792543813586235, -0.010179255157709122, -0.45593762397766113, -0.3462597727775574 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
dream
null
2022-11-18T19:59:12Z
7,183
6
dream
[ "task_categories:question-answering", "task_ids:multiple-choice-qa", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:unknown", "region:us" ]
2022-11-18T19:59:12Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - expert-generated language: - en license: - unknown multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - question-answering task_ids: - multiple-choice-qa paperswithcode_id: dream pretty_name: DREAM dataset_info: features: - name: id dtype: int32 - name: dialogue_id dtype: string - name: dialogue sequence: string - name: question dtype: string - name: choice sequence: string - name: answer dtype: string config_name: plain_text splits: - name: train num_bytes: 4775235 num_examples: 6116 - name: validation num_bytes: 1539272 num_examples: 2040 - name: test num_bytes: 1556379 num_examples: 2041 download_size: 5558190 dataset_size: 7870886 --- # Dataset Card for DREAM ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [Add homepage URL here if available (unless it's a GitHub repository)]() - **Repository:** [If the dataset is hosted on github or has a github homepage, add URL here]() - **Paper:** [If the dataset was introduced by a paper or there was a paper written describing the dataset, add URL here (landing page for Arxiv paper preferred)]() - **Leaderboard:** [If the dataset supports an active leaderboard, add link here]() - **Point of Contact:** [If known, name and email of at least one person the reader can contact for questions about the dataset.]() ### Dataset Summary [More Information Needed] ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields [More Information Needed] ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data [More Information Needed] #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations [More Information Needed] #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information [More Information Needed] ### Contributions Thanks to [@patil-suraj](https://github.com/patil-suraj) for adding this dataset.
[ -0.3510707914829254, -0.4167144000530243, 0.15834608674049377, 0.11627820879220963, -0.21613846719264984, 0.28296414017677307, -0.1908867061138153, -0.3694179952144623, 0.7221765518188477, 0.772512674331665, -0.7234838008880615, -1.078216552734375, -0.6498212218284607, 0.030040036886930466, -0.28403472900390625, 1.2471795082092285, -0.07036883383989334, -0.2210119217634201, -0.30317091941833496, -0.040424708276987076, -0.44831955432891846, -0.3968275189399719, -0.42795613408088684, -0.22617991268634796, 0.4736458361148834, 0.7563019394874573, 0.6961784362792969, 0.8573684096336365, 0.7087288498878479, 0.23933656513690948, 0.11740692704916, 0.0074554067105054855, -0.49266481399536133, -0.08692459017038345, -0.08824494481086731, -0.4863244295120239, -0.8813260197639465, 0.06940998136997223, 0.7222297787666321, 0.6786670684814453, -0.0566871203482151, 0.7341427803039551, 0.2582063376903534, 0.9641498923301697, -0.4852609634399414, 0.7577933669090271, -0.3136919140815735, 0.09876641631126404, -0.6029815077781677, -0.05352828651666641, -0.07418898493051529, -0.6360270977020264, -0.2684960663318634, -0.6609001755714417, 0.15149512887001038, 0.16046594083309174, 0.8287001848220825, 0.10311710089445114, -0.20394361019134521, -0.3116638958454132, -0.5678262114524841, 0.6140035390853882, -0.47135213017463684, 0.10785681009292603, 0.7185405492782593, 0.3797890841960907, 0.04319889843463898, -0.8806295990943909, -0.6573822498321533, 0.29938045144081116, -0.10152117908000946, 0.3965305984020233, -0.11240606009960175, -0.0942443311214447, 0.48232385516166687, 0.3858042359352112, -0.6214141249656677, -0.5027320384979248, -0.8252266049385071, -0.19129249453544617, 1.0832061767578125, 0.42836758494377136, 0.04136030748486519, -0.514434278011322, 0.03792729601264, -0.3553996682167053, -0.29816585779190063, 0.0703606829047203, 0.6243414878845215, 0.5687019228935242, -0.5376753211021423, 0.7852475047111511, -0.13474370539188385, 0.694434642791748, -0.35515734553337097, -0.09030105173587799, 0.7270359396934509, -0.49467819929122925, -0.039370033890008926, 0.0791637971997261, 0.6278547048568726, 0.6518239974975586, 0.06844661384820938, -0.025572394952178, -0.09399466961622238, -0.1276327669620514, 0.008851499296724796, -0.6272851824760437, -0.4103221297264099, 0.7049011588096619, -0.9239444136619568, -0.3224146366119385, 0.28865909576416016, -1.2768696546554565, -0.3776320815086365, -0.4511833190917969, 0.041170407086610794, -0.1332375407218933, -0.45368289947509766, -0.11857596784830093, -0.3028251826763153, 0.35706454515457153, -0.012192958034574986, -0.7087356448173523, 0.5161141753196716, 0.6081159114837646, 0.9189416170120239, -0.15844377875328064, -0.2268049418926239, -0.13364897668361664, 0.32807832956314087, -0.2582005262374878, 0.7661809921264648, -0.526432454586029, -0.6095091104507446, 0.1693384200334549, 0.23911051452159882, -0.18401804566383362, -0.21252496540546417, 0.9292681217193604, -0.1530153900384903, 0.12682431936264038, -0.6140266060829163, -0.4888145923614502, -0.12161868065595627, 0.29772913455963135, -0.8460092544555664, 1.0675665140151978, 0.13591159880161285, -0.8676377534866333, 0.298347532749176, -1.2229214906692505, -0.5178266763687134, 0.25986284017562866, -0.19935321807861328, -0.385660320520401, -0.2741185128688812, -0.006133364979177713, 0.6152268648147583, -0.26972225308418274, 0.10844723880290985, -0.20046016573905945, -0.23332098126411438, -0.03807494044303894, -0.04804946482181549, 1.2081714868545532, 0.5360878705978394, 0.02395104430615902, -0.018978247418999672, -1.029558777809143, 0.09068655967712402, 0.39525240659713745, -0.33534133434295654, -0.04416869580745697, -0.17366935312747955, 0.5457411408424377, -0.22290025651454926, 0.40803954005241394, -0.345804363489151, 0.3829658031463623, -0.02686815895140171, 0.2793525457382202, 0.5898800492286682, 0.15642669796943665, 0.1898074746131897, -0.5684857964515686, 0.7079645991325378, -0.019041595980525017, 0.37190669775009155, 0.11853601783514023, -0.6693012714385986, -0.7060349583625793, -0.07085202634334564, 0.4905328154563904, 0.7986891269683838, -0.622502863407135, 0.733932375907898, -0.4317021071910858, -0.7557506561279297, -0.5436888337135315, 0.00720803439617157, 0.21774910390377045, 0.4270654320716858, 0.3074740469455719, -0.2167774736881256, -0.8258411288261414, -0.8209903240203857, 0.015250327065587044, -0.12867371737957, 0.30009573698043823, 0.5840641260147095, 0.9243903160095215, -0.179378479719162, 0.9205410480499268, -0.9508830308914185, -0.37898576259613037, -0.5085243582725525, -0.015882860869169235, 0.5403640866279602, 0.6114395260810852, 0.6394857168197632, -0.9607974290847778, -0.4825325012207031, -0.33212217688560486, -0.760421097278595, -0.04062850400805473, -0.0019535133615136147, -0.2705012857913971, -0.010282294824719429, 0.18918491899967194, -0.34356066584587097, 0.619759202003479, 0.6219830513000488, -0.5634445548057556, 0.4272102117538452, 0.09677831828594208, 0.3194645047187805, -1.571328043937683, 0.35802125930786133, 0.029465392231941223, 0.19927182793617249, -0.5114086270332336, -0.22512833774089813, -0.09866201132535934, -0.15868492424488068, -0.26909658312797546, 0.6412115097045898, -0.3086216151714325, 0.10485385358333588, 0.052191637456417084, -0.13405080139636993, -0.0017880506347864866, 0.370926171541214, -0.06021882966160774, 0.6293520927429199, 0.7652724981307983, -0.5017692446708679, 0.5099042057991028, 0.5568410754203796, -0.32623058557510376, 0.6172271966934204, -0.6866794228553772, -0.002836414147168398, -0.3430025279521942, 0.2399647831916809, -0.9369932413101196, -0.611158013343811, 0.7296891212463379, -0.614885687828064, 0.15519806742668152, -0.3320085406303406, -0.7018344402313232, -0.5624016523361206, -0.3036786615848541, 0.14440925419330597, 0.5048374533653259, -0.1651517003774643, 0.5533638596534729, 0.8163132667541504, 0.07004659622907639, -0.44436660408973694, -0.8777878880500793, 0.24547789990901947, -0.2156377136707306, -0.48491737246513367, 0.5337879061698914, -0.3887966573238373, -0.18997429311275482, 0.16575953364372253, 0.3978935778141022, -0.1060640886425972, -0.09657049924135208, 0.40037447214126587, 0.14239156246185303, 0.023447036743164062, 0.05494064837694168, -0.03968587890267372, -0.10022006183862686, 0.01969120278954506, -0.07375086098909378, 0.45704177021980286, -0.07126883417367935, -0.22624127566814423, -0.2757129371166229, 0.5055490732192993, 0.327564001083374, -0.18707957863807678, 0.6694642901420593, 0.731707751750946, -0.6584603786468506, 0.018964316695928574, -0.41299083828926086, 0.026959992945194244, -0.42582276463508606, 0.13784727454185486, -0.29037168622016907, -0.3600509464740753, 0.9434086680412292, 0.14798738062381744, 0.24271202087402344, 0.7237798571586609, 0.46589353680610657, -0.09162848442792892, 0.6753333210945129, 0.6164913177490234, -0.09211929887533188, 0.5515236854553223, -0.7801938056945801, -0.10439754277467728, -0.8224974870681763, -0.6039333939552307, -0.7538726329803467, -0.5477153062820435, -0.6711975336074829, -0.3441469967365265, 0.00184927589725703, -0.041144344955682755, -0.1953941136598587, 0.5303972959518433, -0.8410571813583374, 0.5988612771034241, 0.779276430606842, 0.2224755883216858, 0.06385140866041183, 0.06135518103837967, 0.107423335313797, 0.013642487116158009, -0.6445321440696716, -0.5992035269737244, 1.364908218383789, 0.26839137077331543, 0.47397884726524353, -0.004247908480465412, 1.0170038938522339, 0.5315819978713989, 0.0444711335003376, -0.4095216393470764, 0.6906894445419312, -0.16232430934906006, -0.8170053958892822, -0.2544708251953125, -0.21025416254997253, -1.1116410493850708, -0.2973334491252899, -0.39741578698158264, -0.7059328556060791, 0.5100209712982178, 0.25949081778526306, -0.3960456848144531, 0.2999742031097412, -0.7883762717247009, 0.9750642776489258, -0.16785968840122223, -0.34342992305755615, 0.06181609630584717, -0.77228182554245, 0.08213409036397934, 0.1475709080696106, 0.5225880742073059, -0.14551958441734314, -0.05228849872946739, 1.2750462293624878, -0.40388044714927673, 1.0618876218795776, -0.3703618347644806, 0.41475000977516174, 0.7158879637718201, -0.28636106848716736, 0.529971182346344, 0.059163648635149, -0.271867573261261, 0.3602478802204132, 0.05926439166069031, -0.5338484644889832, -0.366968035697937, 0.6119063496589661, -0.879499077796936, -0.2678638994693756, -0.6688938736915588, -0.5194419622421265, -0.018868284299969673, 0.3949659466743469, 0.1804678738117218, 0.19371752440929413, -0.03710561990737915, 0.36662185192108154, 0.5185088515281677, -0.09938871115446091, 0.27762237191200256, 0.13322314620018005, -0.20210884511470795, -0.7125834822654724, 0.9523503184318542, 0.5764667987823486, -0.23247483372688293, 0.3258277177810669, 0.17672590911388397, -0.3505985140800476, -0.5854191184043884, -0.26830896735191345, 0.06652062386274338, -0.7417861223220825, -0.1899520307779312, -0.6904807686805725, -0.351459264755249, -0.8230917453765869, -0.12464010715484619, -0.11842052638530731, -0.472919762134552, -0.4178595244884491, -0.3628059923648834, 0.808014452457428, 0.5810700058937073, -0.6043723821640015, 0.211539626121521, -0.7471210360527039, 0.27028000354766846, 0.04191024601459503, 0.5469899773597717, -0.03724370896816254, -0.20616674423217773, -0.4464145302772522, 0.13215893507003784, -0.19784773886203766, -0.8828989267349243, 0.3497500419616699, 0.06158488988876343, 0.8040871620178223, 0.10589303821325302, 0.23667888343334198, 0.5807254314422607, -0.1692408323287964, 1.0847653150558472, 0.10458829253911972, -0.5866060256958008, 0.9588064551353455, -0.570075273513794, 0.10545871406793594, 0.8435920476913452, 0.3961275815963745, -0.5903818607330322, 0.12900254130363464, -0.8787453174591064, -1.0391409397125244, 0.6619532108306885, 0.355336993932724, 0.24006147682666779, -0.06987552344799042, 0.44487351179122925, -0.03868280351161957, 0.32310450077056885, -0.8564130067825317, -0.7669985890388489, -0.40063390135765076, -0.33071815967559814, 0.0931665375828743, -0.16012296080589294, -0.3635089099407196, -0.45805472135543823, 0.707311749458313, 0.061258573085069656, 0.3945986032485962, 0.11886297911405563, 0.3640870153903961, -0.1384458839893341, -0.007532940246164799, 0.34507957100868225, 0.665787398815155, -0.4867989718914032, -0.16235901415348053, -0.0016817741561681032, -0.7905722856521606, -0.28525757789611816, 0.2182365208864212, -0.2727186381816864, -0.11668065935373306, 0.48303455114364624, 0.7090256810188293, -0.25033941864967346, -0.34476029872894287, 0.4436345100402832, 0.041618168354034424, -0.41051632165908813, -0.682083785533905, 0.12698407471179962, -0.08040136098861694, 0.4238561987876892, 0.4149440824985504, 0.16428646445274353, 0.22898651659488678, -0.5315980911254883, 0.27572134137153625, 0.03672105446457863, -0.42017537355422974, -0.14683350920677185, 0.764725387096405, 0.31993550062179565, -0.5316055417060852, 0.5306242108345032, -0.24774958193302155, -0.333760142326355, 0.8826421499252319, 0.26527103781700134, 0.8918839693069458, 0.16114763915538788, 0.3559926450252533, 0.6999598741531372, 0.31468692421913147, -0.037193361669778824, 0.9684801697731018, 0.004458004608750343, -0.659372866153717, -0.014605545438826084, -0.5543614029884338, -0.4008585512638092, 0.07919958978891373, -0.8417369723320007, 0.4446463882923126, -0.46927833557128906, -0.22823382914066315, -0.041782427579164505, 0.39285048842430115, -1.0419741868972778, 0.3053053319454193, 0.018687047064304352, 1.0213433504104614, -1.0279037952423096, 0.76340651512146, 0.7664287090301514, -0.9021301865577698, -0.7677599787712097, -0.09034350514411926, 0.06868534535169601, -0.8533835411071777, 0.4128161668777466, -0.20161285996437073, 0.4644295871257782, 0.07085546106100082, -0.8616589307785034, -0.8842726945877075, 1.496421217918396, 0.16771045327186584, -0.36178430914878845, 0.16459660232067108, 0.2403453290462494, 0.43400710821151733, -0.4580100178718567, 0.15824976563453674, 0.4936351478099823, 0.8124621510505676, 0.3662845492362976, -0.4953386187553406, 0.07954184710979462, -0.5216937065124512, -0.14455978572368622, -0.10294964909553528, -0.799676775932312, 0.6992654204368591, -0.18996593356132507, -0.07843590527772903, -0.22393177449703217, 0.6320391297340393, 0.30110087990760803, 0.44024181365966797, 0.4094860553741455, 0.5905174016952515, 0.9436913728713989, -0.2525084912776947, 1.103083848953247, -0.4447568655014038, 0.39281004667282104, 1.1113179922103882, -0.01471036858856678, 0.7962578535079956, 0.3405899405479431, -0.4390805661678314, 0.38101017475128174, 0.9037123322486877, -0.4402249753475189, 0.47675320506095886, 0.31279847025871277, 0.12898984551429749, -0.1095917597413063, -0.3807632029056549, -0.7766240835189819, 0.3926957845687866, 0.3813565969467163, -0.5206015110015869, 0.04611402377486229, -0.036635905504226685, 0.07499576359987259, 0.045374587178230286, -0.44028493762016296, 0.6053848266601562, -0.13982822000980377, -0.42193612456321716, 0.06968821585178375, -0.2617620527744293, 0.4523109495639801, -0.5942198634147644, -0.22009482979774475, -0.2526097297668457, 0.08488094061613083, -0.6315271854400635, -1.2860915660858154, 0.5679067373275757, -0.0639471709728241, -0.5287894606590271, -0.2603346109390259, 0.6669336557388306, -0.31560301780700684, -0.9987841844558716, 0.03634825348854065, 0.4187089502811432, 0.40247195959091187, 0.2641487419605255, -1.0670651197433472, 0.34705251455307007, 0.15448766946792603, -0.37986961007118225, 0.1449137032032013, 0.3909980356693268, 0.14549127221107483, 0.46148881316185, 0.6419165134429932, 0.38117527961730957, -0.16280516982078552, 0.20601621270179749, 0.7789233922958374, -0.7694869041442871, -0.4528021216392517, -0.493339866399765, 0.7240990996360779, -0.48573851585388184, -0.42559048533439636, 0.6896354556083679, 1.0610390901565552, 0.8439841866493225, -0.04110930860042572, 1.2424942255020142, -0.6505008339881897, 0.7439435124397278, -0.32888972759246826, 1.00083327293396, -0.5998417735099792, 0.0006744966376572847, -0.548958957195282, -0.9703006148338318, -0.6131311655044556, 0.6537802815437317, -0.23614591360092163, 0.10579180717468262, 0.386157363653183, 0.8382259011268616, 0.11928550153970718, 0.16015183925628662, 0.17219160497188568, 0.2775403559207916, 0.22630195319652557, 0.2971262037754059, 0.3168891966342926, -0.7883285284042358, 0.8680392503738403, -0.4536524713039398, -0.31667813658714294, -0.004454466048628092, -1.146304726600647, -0.9225500226020813, -1.0355267524719238, -0.7202528715133667, -0.6520230174064636, 0.2257537841796875, 1.1317044496536255, 0.6644860506057739, -1.0829960107803345, -0.4402896463871002, 0.08868319541215897, 0.24145634472370148, -0.2595323324203491, -0.27512508630752563, 0.7471697330474854, 0.2174803465604782, -0.8087841272354126, -0.15153586864471436, -0.10487768799066544, 0.16026164591312408, -0.06609857827425003, -0.22182734310626984, -0.23063695430755615, -0.18481165170669556, 0.32287487387657166, 0.4284273684024811, -0.3917878270149231, -0.2943345904350281, -0.10135620087385178, 0.08579081296920776, -0.002857927232980728, 0.5193824768066406, -0.39814022183418274, 0.4016072154045105, 0.7262170314788818, 0.29444703459739685, 0.4349065124988556, -0.17672871053218842, 0.2529639005661011, -0.5610345005989075, -0.015556477941572666, 0.28044968843460083, 0.47312331199645996, 0.10924335569143295, -0.6327253580093384, 0.9304296970367432, 0.3720102906227112, -0.6131772398948669, -0.7534504532814026, -0.15949185192584991, -1.2887022495269775, -0.07650724053382874, 1.2832238674163818, 0.15556687116622925, -0.29599499702453613, -0.2811543345451355, -0.41760799288749695, 0.3455074727535248, -0.709903359413147, 0.6445441246032715, 0.8092261552810669, -0.09233251959085464, -0.07343694567680359, -0.6769390106201172, 0.5821666717529297, -0.3778420388698578, -1.0521725416183472, 0.18506720662117004, 0.35479751229286194, -0.024387985467910767, 0.24688026309013367, 0.8100154399871826, -0.17207114398479462, -0.03422585502266884, 0.28434067964553833, 0.3263620436191559, -0.1856909841299057, -0.35455045104026794, 0.1745637059211731, 0.14293773472309113, -0.19600681960582733, -0.4463835656642914 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
wiki40b
null
2023-04-05T13:43:07Z
7,132
9
wiki-40b
[ "language:en", "region:us" ]
2023-04-05T13:43:07Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- language: - en paperswithcode_id: wiki-40b pretty_name: Wiki-40B dataset_info: features: - name: wikidata_id dtype: string - name: text dtype: string - name: version_id dtype: string config_name: en splits: - name: train num_bytes: 9423623904 num_examples: 2926536 - name: validation num_bytes: 527383016 num_examples: 163597 - name: test num_bytes: 522219464 num_examples: 162274 download_size: 0 dataset_size: 10473226384 --- # Dataset Card for "wiki40b" ## 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://research.google/pubs/pub49029/](https://research.google/pubs/pub49029/) - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 0.00 MB - **Size of the generated dataset:** 10.47 GB - **Total amount of disk used:** 10.47 GB ### Dataset Summary Clean-up text for 40+ Wikipedia languages editions of pages correspond to entities. The datasets have train/dev/test splits per language. The dataset is cleaned up by page filtering to remove disambiguation pages, redirect pages, deleted pages, and non-entity pages. Each example contains the wikidata id of the entity, and the full Wikipedia article after page processing that removes non-content sections and structured objects. ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances #### en - **Size of downloaded dataset files:** 0.00 MB - **Size of the generated dataset:** 10.47 GB - **Total amount of disk used:** 10.47 GB An example of 'train' looks as follows. ``` ``` ### Data Fields The data fields are the same among all splits. #### en - `wikidata_id`: a `string` feature. - `text`: a `string` feature. - `version_id`: a `string` feature. ### Data Splits |name| train |validation| test | |----|------:|---------:|-----:| |en |2926536| 163597|162274| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` ``` ### Contributions Thanks to [@jplu](https://github.com/jplu), [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf), [@albertvillanova](https://github.com/albertvillanova), [@lhoestq](https://github.com/lhoestq) for adding this dataset.
[ -0.7882001399993896, -0.5126846432685852, 0.09636569768190384, 0.07334184646606445, -0.1616355925798416, -0.10562457144260406, -0.42914944887161255, -0.4494495391845703, 0.6761833429336548, 0.5020133852958679, -0.8004137277603149, -0.9368221163749695, -0.5078449845314026, 0.12060151994228363, -0.2681137025356293, 1.3946144580841064, -0.19058813154697418, -0.2036973237991333, -0.4478139281272888, -0.20760110020637512, -0.2535329759120941, -0.2421342432498932, -0.30498960614204407, -0.31748777627944946, 0.5739309787750244, 0.6703820824623108, 0.6550629734992981, 0.9771319627761841, 0.520304262638092, 0.2501591742038727, -0.006459267344325781, -0.08556676656007767, -0.5717588067054749, -0.24752452969551086, -0.0864812359213829, -0.1538582742214203, -0.5667424201965332, 0.08014542609453201, 0.536041796207428, 0.6450912952423096, -0.15077196061611176, 0.6290392279624939, -0.04759784787893295, 0.9609743356704712, -0.48316770792007446, 0.6490219235420227, -0.1904398798942566, -0.24521946907043457, -0.5486525893211365, 0.13254234194755554, 0.07069765776395798, -0.3834265172481537, -0.12915319204330444, -0.9595252275466919, 0.2240898609161377, -0.055990155786275864, 0.8973014950752258, 0.15093809366226196, -0.01942865177989006, -0.3124256730079651, -0.38894450664520264, 0.37083402276039124, -0.7598581314086914, 0.09949828684329987, 0.7163407206535339, 0.16007962822914124, -0.040387582033872604, -0.7275956869125366, -0.7577964067459106, 0.09967628866434097, -0.14112859964370728, 0.1908535212278366, -0.008021223358809948, -0.4011384844779968, 0.6901593804359436, 0.7029531002044678, -0.6108963489532471, -0.10988667607307434, -0.6716852784156799, -0.07927856594324112, 1.228389859199524, 0.32646051049232483, 0.18559850752353668, -0.4576162099838257, 0.11309673637151718, -0.43830686807632446, -0.45372262597084045, 0.09036538004875183, 0.7039679884910583, 0.42378029227256775, -0.9364626407623291, 0.7357491254806519, -0.4230959713459015, 0.5383638739585876, 0.020349886268377304, 0.03567170724272728, 0.6394175291061401, -0.554332435131073, -0.023032760247588158, -0.17142674326896667, 0.9000920057296753, 0.6498792767524719, 0.04216821491718292, -0.006855166982859373, 0.16056561470031738, -0.15221776068210602, -0.013320207595825195, -0.7792313694953918, -0.5801188945770264, 0.6329095959663391, -0.627861738204956, -0.5716716647148132, 0.18405893445014954, -1.2369717359542847, -0.3608839511871338, -0.3950490355491638, 0.188881516456604, -0.14948178827762604, -0.5886163115501404, 0.001866187434643507, -0.3313778340816498, 0.2696162164211273, 0.2160445600748062, -0.7302191853523254, 0.3306407034397125, 0.48617640137672424, 0.5213814377784729, 0.01405035424977541, -0.3723143935203552, -0.023928290233016014, 0.12720277905464172, -0.1332450658082962, 0.5281346440315247, -0.21035581827163696, -0.5240152478218079, -0.1644977331161499, 0.4026188552379608, 0.10475371032953262, -0.26829993724823, 0.8378949165344238, -0.09187270700931549, 0.3513641953468323, -0.8148414492607117, -0.5746620297431946, -0.06880749017000198, 0.2771050035953522, -1.0469657182693481, 1.3763290643692017, 0.3419272303581238, -0.9681779742240906, 0.26788240671157837, -1.020175576210022, -0.40992406010627747, 0.20545369386672974, 0.0693841427564621, -0.5402400493621826, -0.23460428416728973, 0.06456166505813599, 0.5073820948600769, -0.4115810990333557, 0.27536025643348694, -0.47761473059654236, -0.12227662652730942, 0.10642710328102112, 0.1786356270313263, 1.3695698976516724, 0.1441200077533722, -0.2960410416126251, -0.01111712958663702, -1.0813652276992798, -0.04741252586245537, 0.518619179725647, -0.2523479461669922, 0.025909962132573128, -0.2686261534690857, 0.5481821298599243, 0.12734514474868774, 0.2954213619232178, -0.4250493049621582, 0.4454464316368103, -0.03222740441560745, 0.25332021713256836, 0.6952817440032959, -0.00213959370739758, 0.3331150710582733, -0.40508729219436646, 0.20643366873264313, 0.019441548734903336, 0.5008687973022461, 0.07814928144216537, -0.6503655910491943, -0.6723197102546692, -0.018424417823553085, 0.4796321988105774, 0.5590166449546814, -0.7605344653129578, 0.9102880358695984, -0.582145631313324, -0.9225297570228577, -0.4094339907169342, 0.21607157588005066, 0.13694316148757935, 0.6108017563819885, 0.3721925914287567, -0.44007551670074463, -0.5613894462585449, -0.7459195852279663, 0.3217734396457672, -0.2959944009780884, 0.1194176897406578, 0.611643373966217, 1.0523707866668701, -0.13528834283351898, 0.7065196633338928, -0.7530758380889893, -0.1298334002494812, -0.1007181704044342, -0.20095732808113098, 0.27422842383384705, 0.6243912577629089, 0.6704660654067993, -0.9939064979553223, -0.42554014921188354, -0.24120105803012848, -0.8035109043121338, -0.05295225977897644, 0.20201626420021057, -0.25987619161605835, 0.11241757869720459, 0.2090255320072174, -0.7681252360343933, 0.5641941428184509, 0.46837687492370605, -0.5907951593399048, 0.5095561742782593, 0.04587141424417496, 0.12634164094924927, -1.293127417564392, 0.5503546595573425, -0.0023213622625917196, 0.17591626942157745, -0.4778665006160736, -0.07840701192617416, -0.05835407227277756, -0.14116206765174866, -0.15479996800422668, 0.7203188538551331, -0.26176750659942627, 0.14262956380844116, 0.16414038836956024, -0.06683553755283356, 0.09226766228675842, 0.45992037653923035, -0.1545356959104538, 0.4314332902431488, 0.810484766960144, -0.5516583323478699, 0.6681540012359619, 0.5241937637329102, -0.1984959989786148, 0.7170962691307068, -0.6915658116340637, 0.06275762617588043, -0.2518736720085144, 0.43233487010002136, -0.6940135359764099, -0.7091652750968933, 0.7775810956954956, -0.6119926571846008, 0.5188888907432556, -0.28178325295448303, -0.7347200512886047, -0.7221544981002808, -0.5962224006652832, 0.045756030827760696, 0.27497950196266174, -0.2955005466938019, 0.48094865679740906, 0.71500164270401, 0.04926029220223427, -0.3490653336048126, -0.7361544966697693, 0.09291357547044754, -0.19461047649383545, -0.7153701186180115, 0.6124522686004639, -0.43692484498023987, -0.08437992632389069, 0.29983630776405334, 0.2833230495452881, 0.03138025477528572, -0.042110100388526917, 0.35324516892433167, 0.2437620609998703, 0.14763173460960388, -0.024244720116257668, -0.1624443084001541, -0.11200612038373947, 0.06747408956289291, -0.1289459466934204, 0.234620600938797, 0.06148804351687431, -0.13113677501678467, -0.2902526557445526, 0.2538546025753021, 0.36288511753082275, -0.1791772097349167, 0.7083937525749207, 0.9950296878814697, -0.4414772689342499, 0.2196282148361206, -0.5265162587165833, -0.07317696511745453, -0.3781648576259613, 0.10982390493154526, -0.11536071449518204, -0.5621353387832642, 0.9608436226844788, 0.2785797119140625, 0.3032369911670685, 0.8691004514694214, 0.6453375220298767, -0.12747205793857574, 0.42779597640037537, 0.28786855936050415, -0.28508973121643066, 0.5446667671203613, -0.677639901638031, -0.3011679947376251, -0.7463552951812744, -0.4792749881744385, -0.7511468529701233, -0.3931926488876343, -1.1157126426696777, -0.37811365723609924, -0.019854584708809853, -0.0007066454854793847, -0.22380496561527252, 0.4210924506187439, -0.757088840007782, 0.3641108274459839, 0.5333160758018494, 0.20898529887199402, -0.14378009736537933, -0.03528560698032379, 0.1939282864332199, 0.13995999097824097, -0.5253427028656006, -0.26362884044647217, 1.4236690998077393, 0.32263851165771484, 0.41780897974967957, 0.017166709527373314, 0.8453864455223083, 0.31732654571533203, 0.17059063911437988, -0.35977789759635925, 0.47760146856307983, -0.14064383506774902, -0.907217264175415, -0.38450974225997925, -0.4892074465751648, -0.8285843729972839, -0.3655780851840973, -0.3334736227989197, -0.5267479419708252, 0.568466305732727, 0.018069475889205933, 0.12520790100097656, 0.382401704788208, -0.7447534203529358, 1.0223371982574463, -0.08705177158117294, -0.4440491497516632, 0.09111730009317398, -1.0021920204162598, 0.14418314397335052, 0.19601693749427795, 0.4496694803237915, -0.30937671661376953, 0.05259537696838379, 1.1519335508346558, -0.6495948433876038, 0.8673636317253113, -0.5862878561019897, 0.2218659520149231, 0.4595305323600769, -0.4048561453819275, 0.4966477155685425, 0.08500675857067108, -0.1908501535654068, 0.5556261539459229, -0.0013278189580887556, -0.5402863621711731, -0.36262020468711853, 0.7398009896278381, -0.7325233817100525, 0.029315154999494553, -0.23320208489894867, -0.5571568012237549, 0.02622627653181553, 0.35809555649757385, 0.2914237380027771, 0.2815810739994049, -0.1802818924188614, 0.24300304055213928, 0.6860330104827881, -0.22311453521251678, 0.24765180051326752, 0.19788306951522827, -0.14949259161949158, -0.7756651043891907, 0.9647988677024841, 0.3542124927043915, -0.17904110252857208, 0.14354076981544495, 0.10964604467153549, -0.23399901390075684, -0.35742419958114624, -0.7810172438621521, 0.22757741808891296, -0.6307433843612671, -0.2994803786277771, -0.46822690963745117, -0.06374866515398026, -0.6467987895011902, 0.10882866382598877, -0.21560831367969513, -0.6565222144126892, -0.30235710740089417, -0.2930351793766022, 0.8767415285110474, 0.536112368106842, -0.5792787671089172, 0.05573040992021561, -0.4432018995285034, 0.3192850351333618, -0.139795184135437, 0.6151503920555115, -0.055866774171590805, -0.22885990142822266, -0.5209245681762695, 0.08018649369478226, -0.16202257573604584, -0.6157609224319458, 0.02745181694626808, -0.11346744000911713, 0.5299901962280273, -0.07144363969564438, 0.12152858078479767, 0.5325188636779785, -0.0861663892865181, 0.9455761313438416, -0.0565815269947052, -0.5957309603691101, 0.5711590051651001, -0.5397607684135437, 0.3103368282318115, 0.9286001920700073, 0.4860646426677704, -0.3655582368373871, -0.02504328079521656, -0.8980409502983093, -0.9099352955818176, 0.729601263999939, 0.36460939049720764, 0.1765865981578827, 0.16448551416397095, 0.4718332290649414, -0.06322689354419708, 0.18736854195594788, -0.5994246602058411, -1.0092264413833618, -0.3214802145957947, -0.33216339349746704, 0.017596835270524025, -0.18569885194301605, -0.37702327966690063, -0.6467033624649048, 0.9001774787902832, 0.01892010308802128, 0.2801705300807953, 0.09836925566196442, 0.15600617229938507, -0.16326893866062164, -0.023715009912848473, 0.3481943905353546, 0.5901170969009399, -0.3430694341659546, -0.33947238326072693, -0.03868556022644043, -0.7833722829818726, -0.22529689967632294, 0.6845299601554871, -0.4603287875652313, 0.01878190226852894, 0.34124672412872314, 0.7506276965141296, 0.1301470845937729, -0.13917553424835205, 0.3901536762714386, -0.06919685006141663, -0.40977251529693604, -0.37912601232528687, -0.041674964129924774, 0.28080740571022034, 0.03970576822757721, 0.26975730061531067, -0.2431948035955429, 0.15872809290885925, -0.3147242069244385, 0.25177067518234253, 0.06835771352052689, -0.13002827763557434, -0.33818304538726807, 0.4952356517314911, 0.22791442275047302, 0.0018730913288891315, 0.6496527194976807, -0.2207799106836319, -0.34106364846229553, 0.7081537246704102, -0.11682606488466263, 0.6784848570823669, -0.042500779032707214, 0.22954322397708893, 0.7659366130828857, 0.3031572103500366, 0.17947542667388916, 0.45759570598602295, -0.293383926153183, -0.5886282920837402, -0.09717943519353867, -0.5210800766944885, -0.2904481887817383, 0.19510608911514282, -0.9434812068939209, 0.4704616963863373, -0.38965609669685364, -0.18967092037200928, 0.31908079981803894, 0.6018893718719482, -0.9615290760993958, 0.28079843521118164, -0.049686264246702194, 1.1341220140457153, -0.9506535530090332, 0.6216696500778198, 0.6189477443695068, -0.774887204170227, -0.9292987585067749, -0.24938927590847015, 0.23267972469329834, -0.3918530344963074, 0.1641920804977417, -0.063100166618824, 0.6937344670295715, 0.0041376748122274876, -0.9377304911613464, -0.6462766528129578, 1.3175784349441528, 0.2058425098657608, -0.3042689859867096, 0.14082622528076172, 0.17922714352607727, 0.47588983178138733, -0.14154331386089325, 0.15079067647457123, 0.4843555986881256, 0.8757500052452087, 0.2665218412876129, -0.7714606523513794, 0.20839422941207886, -0.6167547702789307, -0.28698599338531494, 0.13323190808296204, -0.7586573362350464, 0.49080735445022583, -0.03692452609539032, 0.0383184552192688, -0.1505671590566635, 0.5073776841163635, 0.23944313824176788, 0.3882763087749481, 0.31675487756729126, 0.9540252089500427, 0.9174290895462036, -0.3701119124889374, 1.2713377475738525, -0.29229316115379333, 0.5443904995918274, 0.9821255803108215, -0.07061412185430527, 0.5171881318092346, 0.3750191628932953, -0.481099396944046, 0.5157334804534912, 0.7433282136917114, -0.5031866431236267, 0.31163743138313293, 0.19295385479927063, -0.00014778201875742525, 0.13072244822978973, -0.2981114983558655, -0.7422672510147095, 0.23081059753894806, 0.34858831763267517, -0.32323843240737915, -0.08609570562839508, -0.1068970263004303, 0.3158637583255768, -0.3041539788246155, -0.2485468089580536, 0.8357238173484802, -0.1827474981546402, -0.18706774711608887, 0.298404335975647, -0.11055852472782135, 0.481479674577713, -0.6063019037246704, -0.008238974958658218, -0.22895807027816772, -0.02526695840060711, -0.6620267629623413, -1.1712493896484375, 0.5575948357582092, -0.03020205721259117, -0.6011601090431213, -0.2004537582397461, 0.7091827988624573, -0.32531261444091797, -0.789313793182373, 0.19709591567516327, 0.20608101785182953, 0.3174947202205658, 0.26550978422164917, -1.1788675785064697, 0.5426687002182007, 0.053946301341056824, -0.5980209708213806, 0.3289949595928192, 0.44623252749443054, -0.02884604036808014, 0.3451617658138275, 0.8506256937980652, 0.06856076419353485, -0.1980128437280655, 0.22761251032352448, 1.0601962804794312, -0.606203556060791, -0.27114540338516235, -0.5460149645805359, 0.9175651669502258, -0.4441830515861511, -0.42751359939575195, 0.6704339981079102, 0.9745647311210632, 1.2429035902023315, -0.05737612396478653, 0.7977350354194641, -0.8690711855888367, 0.5599104166030884, -0.2414252609014511, 0.9279921054840088, -0.5886778831481934, -0.08742500096559525, -0.5137452483177185, -0.691028356552124, -0.3263514041900635, 0.4074952006340027, -0.13667334616184235, 0.2736562192440033, 0.14852409064769745, 0.9310834407806396, 0.11030442267656326, 0.1881534904241562, -0.1127706915140152, 0.1799563616514206, 0.281673789024353, 0.3139406442642212, 0.09113133698701859, -0.8745554089546204, 0.5687596201896667, -0.8031444549560547, -0.1709546446800232, 0.026256147772073746, -0.8888048529624939, -0.7172621488571167, -1.0505480766296387, -0.6185052990913391, -0.7295897006988525, -0.13198725879192352, 0.811219334602356, 0.7755839228630066, -0.9117175936698914, -0.316766619682312, 0.04216807708144188, 0.21809963881969452, 0.06124287471175194, -0.3533360958099365, 0.6164424419403076, 0.4230744540691376, -0.6182011961936951, -0.18043451011180878, -0.026388835161924362, -0.008908865042030811, -0.21306608617305756, -0.19145305454730988, -0.2617180049419403, -0.3931174576282501, 0.3295013904571533, 0.5062288641929626, -0.30693870782852173, 0.09301255643367767, -0.1795606166124344, -0.03357340395450592, -0.005074366927146912, 0.4904400408267975, -0.3851620852947235, 0.3235042691230774, 0.5702680945396423, 0.34074369072914124, 0.9093377590179443, -0.14749526977539062, 0.1632528007030487, -0.5382905602455139, 0.0614195391535759, -0.03190027177333832, 0.2607696056365967, 0.5329831838607788, -0.5789164304733276, 0.9710887670516968, 0.4438585042953491, -0.48669615387916565, -0.8389626145362854, -0.1769055724143982, -1.1873900890350342, 0.026742061600089073, 1.0260698795318604, -0.0441710390150547, -0.437644898891449, -0.06248529255390167, -0.040722958743572235, 0.25093701481819153, -0.4376010000705719, 0.4885362982749939, 0.9535641670227051, 0.09872797131538391, -0.004311421886086464, -0.5475488901138306, 0.551734209060669, -0.29390954971313477, -1.2164868116378784, 0.2831244468688965, 0.5928362011909485, 0.4176151156425476, 0.3078199028968811, 0.6752310395240784, -0.39313745498657227, 0.2079778015613556, 0.09256961941719055, 0.35423991084098816, -0.41604942083358765, -0.03327728807926178, -0.19988103210926056, -0.2638983726501465, -0.37223002314567566, -0.06671759486198425 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
iwslt2017
null
2023-04-05T10:07:51Z
7,124
16
iwslt-2017
[ "task_categories:translation", "annotations_creators:crowdsourced", "language_creators:expert-generated", "multilinguality:translation", "size_categories:1M<n<10M", "source_datasets:original", "language:ar", "language:de", "language:en", "language:fr", "language:it", "language:ja", "language:ko", "language:nl", "language:ro", "language:zh", "license:cc-by-nc-nd-4.0", "region:us" ]
2023-04-05T10:07:51Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language: - ar - de - en - fr - it - ja - ko - nl - ro - zh language_creators: - expert-generated license: - cc-by-nc-nd-4.0 multilinguality: - translation pretty_name: IWSLT 2017 size_categories: - 1M<n<10M source_datasets: - original task_categories: - translation task_ids: [] paperswithcode_id: iwslt-2017 dataset_info: - config_name: iwslt2017-en-it features: - name: translation dtype: translation: languages: - en - it splits: - name: train num_bytes: 46647925 num_examples: 231619 - name: test num_bytes: 305246 num_examples: 1566 - name: validation num_bytes: 200023 num_examples: 929 download_size: 329391132 dataset_size: 47153194 - config_name: iwslt2017-en-nl features: - name: translation dtype: translation: languages: - en - nl splits: - name: train num_bytes: 42843933 num_examples: 237240 - name: test num_bytes: 311646 num_examples: 1777 - name: validation num_bytes: 197814 num_examples: 1003 download_size: 329391132 dataset_size: 43353393 - config_name: iwslt2017-en-ro features: - name: translation dtype: translation: languages: - en - ro splits: - name: train num_bytes: 44129950 num_examples: 220538 - name: test num_bytes: 316790 num_examples: 1678 - name: validation num_bytes: 205028 num_examples: 914 download_size: 329391132 dataset_size: 44651768 - config_name: iwslt2017-it-en features: - name: translation dtype: translation: languages: - it - en splits: - name: train num_bytes: 46647925 num_examples: 231619 - name: test num_bytes: 305246 num_examples: 1566 - name: validation num_bytes: 200023 num_examples: 929 download_size: 329391132 dataset_size: 47153194 - config_name: iwslt2017-it-nl features: - name: translation dtype: translation: languages: - it - nl splits: - name: train num_bytes: 43033168 num_examples: 233415 - name: test num_bytes: 309725 num_examples: 1669 - name: validation num_bytes: 197774 num_examples: 1001 download_size: 329391132 dataset_size: 43540667 - config_name: iwslt2017-it-ro features: - name: translation dtype: translation: languages: - it - ro splits: - name: train num_bytes: 44485169 num_examples: 217551 - name: test num_bytes: 314974 num_examples: 1643 - name: validation num_bytes: 204989 num_examples: 914 download_size: 329391132 dataset_size: 45005132 - config_name: iwslt2017-nl-en features: - name: translation dtype: translation: languages: - nl - en splits: - name: train num_bytes: 42843933 num_examples: 237240 - name: test num_bytes: 311646 num_examples: 1777 - name: validation num_bytes: 197814 num_examples: 1003 download_size: 329391132 dataset_size: 43353393 - config_name: iwslt2017-nl-it features: - name: translation dtype: translation: languages: - nl - it splits: - name: train num_bytes: 43033168 num_examples: 233415 - name: test num_bytes: 309725 num_examples: 1669 - name: validation num_bytes: 197774 num_examples: 1001 download_size: 329391132 dataset_size: 43540667 - config_name: iwslt2017-nl-ro features: - name: translation dtype: translation: languages: - nl - ro splits: - name: train num_bytes: 41338738 num_examples: 206920 - name: test num_bytes: 320952 num_examples: 1680 - name: validation num_bytes: 202380 num_examples: 913 download_size: 329391132 dataset_size: 41862070 - config_name: iwslt2017-ro-en features: - name: translation dtype: translation: languages: - ro - en splits: - name: train num_bytes: 44129950 num_examples: 220538 - name: test num_bytes: 316790 num_examples: 1678 - name: validation num_bytes: 205028 num_examples: 914 download_size: 329391132 dataset_size: 44651768 - config_name: iwslt2017-ro-it features: - name: translation dtype: translation: languages: - ro - it splits: - name: train num_bytes: 44485169 num_examples: 217551 - name: test num_bytes: 314974 num_examples: 1643 - name: validation num_bytes: 204989 num_examples: 914 download_size: 329391132 dataset_size: 45005132 - config_name: iwslt2017-ro-nl features: - name: translation dtype: translation: languages: - ro - nl splits: - name: train num_bytes: 41338738 num_examples: 206920 - name: test num_bytes: 320952 num_examples: 1680 - name: validation num_bytes: 202380 num_examples: 913 download_size: 329391132 dataset_size: 41862070 - config_name: iwslt2017-ar-en features: - name: translation dtype: translation: languages: - ar - en splits: - name: train num_bytes: 56481059 num_examples: 231713 - name: test num_bytes: 2014296 num_examples: 8583 - name: validation num_bytes: 241206 num_examples: 888 download_size: 27748780 dataset_size: 58736561 - config_name: iwslt2017-de-en features: - name: translation dtype: translation: languages: - de - en splits: - name: train num_bytes: 42608380 num_examples: 206112 - name: test num_bytes: 1608474 num_examples: 8079 - name: validation num_bytes: 210975 num_examples: 888 download_size: 16758320 dataset_size: 44427829 - config_name: iwslt2017-en-ar features: - name: translation dtype: translation: languages: - en - ar splits: - name: train num_bytes: 56481059 num_examples: 231713 - name: test num_bytes: 2014296 num_examples: 8583 - name: validation num_bytes: 241206 num_examples: 888 download_size: 29333173 dataset_size: 58736561 - config_name: iwslt2017-en-de features: - name: translation dtype: translation: languages: - en - de splits: - name: train num_bytes: 42608380 num_examples: 206112 - name: test num_bytes: 1608474 num_examples: 8079 - name: validation num_bytes: 210975 num_examples: 888 download_size: 16758334 dataset_size: 44427829 - config_name: iwslt2017-en-fr features: - name: translation dtype: translation: languages: - en - fr splits: - name: train num_bytes: 49273286 num_examples: 232825 - name: test num_bytes: 1767465 num_examples: 8597 - name: validation num_bytes: 207579 num_examples: 890 download_size: 27699724 dataset_size: 51248330 - config_name: iwslt2017-en-ja features: - name: translation dtype: translation: languages: - en - ja splits: - name: train num_bytes: 48204987 num_examples: 223108 - name: test num_bytes: 1809007 num_examples: 8469 - name: validation num_bytes: 208124 num_examples: 871 download_size: 26983602 dataset_size: 50222118 - config_name: iwslt2017-en-ko features: - name: translation dtype: translation: languages: - en - ko splits: - name: train num_bytes: 51678043 num_examples: 230240 - name: test num_bytes: 1869793 num_examples: 8514 - name: validation num_bytes: 219295 num_examples: 879 download_size: 19364776 dataset_size: 53767131 - config_name: iwslt2017-en-zh features: - name: translation dtype: translation: languages: - en - zh splits: - name: train num_bytes: 44271004 num_examples: 231266 - name: test num_bytes: 1605527 num_examples: 8549 - name: validation num_bytes: 202537 num_examples: 879 download_size: 27597071 dataset_size: 46079068 - config_name: iwslt2017-fr-en features: - name: translation dtype: translation: languages: - fr - en splits: - name: train num_bytes: 49273286 num_examples: 232825 - name: test num_bytes: 1767465 num_examples: 8597 - name: validation num_bytes: 207579 num_examples: 890 download_size: 26880731 dataset_size: 51248330 - config_name: iwslt2017-ja-en features: - name: translation dtype: translation: languages: - ja - en splits: - name: train num_bytes: 48204987 num_examples: 223108 - name: test num_bytes: 1809007 num_examples: 8469 - name: validation num_bytes: 208124 num_examples: 871 download_size: 26190859 dataset_size: 50222118 - config_name: iwslt2017-ko-en features: - name: translation dtype: translation: languages: - ko - en splits: - name: train num_bytes: 51678043 num_examples: 230240 - name: test num_bytes: 1869793 num_examples: 8514 - name: validation num_bytes: 219295 num_examples: 879 download_size: 19364733 dataset_size: 53767131 - config_name: iwslt2017-zh-en features: - name: translation dtype: translation: languages: - zh - en splits: - name: train num_bytes: 44271004 num_examples: 231266 - name: test num_bytes: 1605527 num_examples: 8549 - name: validation num_bytes: 202537 num_examples: 879 download_size: 26849290 dataset_size: 46079068 --- # Dataset Card for IWSLT 2017 ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [https://sites.google.com/site/iwsltevaluation2017/TED-tasks](https://sites.google.com/site/iwsltevaluation2017/TED-tasks) - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Paper:** [Overview of the IWSLT 2017 Evaluation Campaign](https://aclanthology.org/2017.iwslt-1.1/) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 4.24 GB - **Size of the generated dataset:** 1.14 GB - **Total amount of disk used:** 5.38 GB ### Dataset Summary The IWSLT 2017 Multilingual Task addresses text translation, including zero-shot translation, with a single MT system across all directions including English, German, Dutch, Italian and Romanian. As unofficial task, conventional bilingual text translation is offered between English and Arabic, French, Japanese, Chinese, German and Korean. ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances #### iwslt2017-ar-en - **Size of downloaded dataset files:** 27.75 MB - **Size of the generated dataset:** 58.74 MB - **Total amount of disk used:** 86.49 MB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "translation": "{\"ar\": \"لقد طرت في \\\"القوات الجوية \\\" لمدة ثمان سنوات. والآن أجد نفسي مضطرا لخلع حذائي قبل صعود الطائرة!\", \"en\": \"I flew on Air ..." } ``` #### iwslt2017-de-en - **Size of downloaded dataset files:** 16.76 MB - **Size of the generated dataset:** 44.43 MB - **Total amount of disk used:** 61.18 MB An example of 'train' looks as follows. ``` { "translation": { "de": "Es ist mir wirklich eine Ehre, zweimal auf dieser Bühne stehen zu dürfen. Tausend Dank dafür.", "en": "And it's truly a great honor to have the opportunity to come to this stage twice; I'm extremely grateful." } } ``` #### iwslt2017-en-ar - **Size of downloaded dataset files:** 29.33 MB - **Size of the generated dataset:** 58.74 MB - **Total amount of disk used:** 88.07 MB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "translation": "{\"ar\": \"لقد طرت في \\\"القوات الجوية \\\" لمدة ثمان سنوات. والآن أجد نفسي مضطرا لخلع حذائي قبل صعود الطائرة!\", \"en\": \"I flew on Air ..." } ``` #### iwslt2017-en-de - **Size of downloaded dataset files:** 16.76 MB - **Size of the generated dataset:** 44.43 MB - **Total amount of disk used:** 61.18 MB An example of 'validation' looks as follows. ``` { "translation": { "de": "Die nächste Folie, die ich Ihnen zeige, ist eine Zeitrafferaufnahme was in den letzten 25 Jahren passiert ist.", "en": "The next slide I show you will be a rapid fast-forward of what's happened over the last 25 years." } } ``` #### iwslt2017-en-fr - **Size of downloaded dataset files:** 27.69 MB - **Size of the generated dataset:** 51.24 MB - **Total amount of disk used:** 78.94 MB An example of 'validation' looks as follows. ``` { "translation": { "en": "But this understates the seriousness of this particular problem because it doesn't show the thickness of the ice.", "fr": "Mais ceci tend à amoindrir le problème parce qu'on ne voit pas l'épaisseur de la glace." } } ``` ### Data Fields The data fields are the same among all splits. #### iwslt2017-ar-en - `translation`: a multilingual `string` variable, with possible languages including `ar`, `en`. #### iwslt2017-de-en - `translation`: a multilingual `string` variable, with possible languages including `de`, `en`. #### iwslt2017-en-ar - `translation`: a multilingual `string` variable, with possible languages including `en`, `ar`. #### iwslt2017-en-de - `translation`: a multilingual `string` variable, with possible languages including `en`, `de`. #### iwslt2017-en-fr - `translation`: a multilingual `string` variable, with possible languages including `en`, `fr`. ### Data Splits | name |train |validation|test| |---------------|-----:|---------:|---:| |iwslt2017-ar-en|231713| 888|8583| |iwslt2017-de-en|206112| 888|8079| |iwslt2017-en-ar|231713| 888|8583| |iwslt2017-en-de|206112| 888|8079| |iwslt2017-en-fr|232825| 890|8597| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information Creative Commons BY-NC-ND See the (TED Talks Usage Policy)[https://www.ted.com/about/our-organization/our-policies-terms/ted-talks-usage-policy]. ### Citation Information ``` @inproceedings{cettolo-etal-2017-overview, title = "Overview of the {IWSLT} 2017 Evaluation Campaign", author = {Cettolo, Mauro and Federico, Marcello and Bentivogli, Luisa and Niehues, Jan and St{\"u}ker, Sebastian and Sudoh, Katsuhito and Yoshino, Koichiro and Federmann, Christian}, booktitle = "Proceedings of the 14th International Conference on Spoken Language Translation", month = dec # " 14-15", year = "2017", address = "Tokyo, Japan", publisher = "International Workshop on Spoken Language Translation", url = "https://aclanthology.org/2017.iwslt-1.1", pages = "2--14", } ``` ### Contributions Thanks to [@thomwolf](https://github.com/thomwolf), [@Narsil](https://github.com/Narsil) for adding this dataset.
[ -0.54344242811203, -0.3346080482006073, 0.10328967124223709, 0.38811978697776794, -0.3003978431224823, 0.14914388954639435, -0.35269537568092346, -0.5749385356903076, 0.2775290012359619, 0.3506706655025482, -1.0013788938522339, -0.7592899203300476, -0.7448583245277405, 0.10770028084516525, -0.4922208786010742, 1.261709213256836, -0.17359699308872223, -0.09129372984170914, -0.2611541450023651, -0.3589886426925659, -0.2672536373138428, -0.20645417273044586, -0.20197686553001404, -0.2611669898033142, 0.5214824080467224, 0.6512758731842041, 0.5695697665214539, 0.6726136803627014, 0.7486236095428467, 0.26591920852661133, 0.29288211464881897, -0.035267822444438934, -0.40916576981544495, -0.31482598185539246, -0.007815671153366566, -0.020558269694447517, -0.3403955101966858, 0.32463523745536804, 0.5225132703781128, 0.4836571216583252, 0.04172254353761673, 0.7177779078483582, 0.02618633769452572, 0.8494717478752136, -0.18881668150424957, 0.3324156701564789, -0.4152075946331024, -0.053690530359745026, -0.32772916555404663, 0.030297134071588516, 0.023465057834982872, -0.25027769804000854, -0.006773567758500576, -0.5947872400283813, 0.17185845971107483, 0.1194203644990921, 1.0501409769058228, 0.08732378482818604, -0.400878369808197, -0.16745930910110474, -0.3835819959640503, 0.7169598937034607, -0.9658307433128357, 0.23045851290225983, 0.620611310005188, 0.10701248794794083, -0.06013724207878113, -0.8081871271133423, -0.41552096605300903, -0.059660475701093674, -0.16091521084308624, 0.35349801182746887, -0.29230234026908875, -0.29279205203056335, 0.6443096995353699, 0.39218148589134216, -0.8642529845237732, 0.046149611473083496, -0.6325466632843018, -0.15121811628341675, 1.2715429067611694, 0.15113817155361176, 0.28317520022392273, -0.18158477544784546, -0.2739933729171753, -0.38350120186805725, -0.30290672183036804, -0.012970097362995148, 0.6863307356834412, 0.6004289388656616, -0.9688653349876404, 0.5573441386222839, -0.4485389292240143, 0.47667425870895386, -0.3271748423576355, -0.2458692491054535, 0.7159009575843811, -0.5450469255447388, -0.08899854868650436, -0.04089963436126709, 0.9839532971382141, 0.6178905367851257, -0.05631381645798683, -0.01951592043042183, 0.05995088443160057, -0.14864441752433777, -0.07250623404979706, -0.9248531460762024, -0.19980782270431519, 0.4660382568836212, -0.8393372297286987, -0.47919851541519165, 0.19188961386680603, -0.7562491297721863, -0.07400614023208618, -0.27836233377456665, 0.27868199348449707, -0.24068118631839752, -0.5921291708946228, 0.07483216375112534, -0.26497745513916016, 0.2995436191558838, 0.29130086302757263, -0.33140772581100464, 0.3535079061985016, 0.28981462121009827, 0.6649924516677856, -0.09171684831380844, -0.4180871546268463, -0.28192970156669617, -0.4384191632270813, 0.09268437325954437, 0.3130004107952118, -0.045577019453048706, -0.33351367712020874, -0.11719276010990143, 0.45018085837364197, 0.010401464067399502, -0.09042228013277054, 0.7141697406768799, -0.11990833282470703, 0.56074059009552, -0.6102655529975891, -0.5006582140922546, -0.02009792998433113, 0.3588399887084961, -0.6789394617080688, 1.5250129699707031, 0.3874782919883728, -1.023011565208435, 0.19365966320037842, -0.8511679172515869, -0.38071441650390625, 0.0680987536907196, 0.06363735347986221, -0.6446630358695984, -0.26695626974105835, 0.030454814434051514, 0.5000584125518799, -0.5118594169616699, 0.430036336183548, -0.2712189555168152, -0.18850429356098175, 0.06755003333091736, -0.29657647013664246, 1.2626078128814697, 0.30249151587486267, -0.3467782437801361, 0.20178396999835968, -1.1317777633666992, 0.012958941981196404, 0.5342767834663391, -0.35838568210601807, 0.053112853318452835, -0.25366804003715515, 0.6668078899383545, 0.41680729389190674, 0.2642585337162018, -0.6611047387123108, 0.36479219794273376, -0.07407988607883453, 0.4093201458454132, 0.6181415319442749, -0.16520701348781586, 0.14835873246192932, -0.30970603227615356, 0.43947333097457886, 0.12182659655809402, 0.5892866849899292, 0.152110293507576, -0.59714275598526, -0.47175729274749756, 0.10883167386054993, 0.4844030439853668, 0.5756744146347046, -0.7876462340354919, 0.7556313872337341, -0.5419384837150574, -0.7722787261009216, -0.37209779024124146, -0.023273199796676636, 0.3395181894302368, 0.5511559247970581, 0.2716923952102661, -0.25076109170913696, -0.709945023059845, -0.8796219825744629, 0.05828727409243584, -0.1912776678800583, 0.2126138061285019, 0.18174287676811218, 0.9910585284233093, -0.04175681993365288, 0.751087486743927, -0.5223612189292908, -0.13131076097488403, -0.23841120302677155, -0.13659684360027313, 0.3138212263584137, 0.770650327205658, 0.7375287413597107, -0.8464516997337341, -0.6471414566040039, -0.2796490490436554, -0.7202178239822388, 0.08719676733016968, -0.013302279636263847, -0.31508228182792664, -0.05922170355916023, 0.48322704434394836, -0.5583421587944031, 0.624012291431427, 0.7418238520622253, -0.7697360515594482, 0.5895989537239075, -0.026348724961280823, 0.08619014173746109, -1.1295065879821777, 0.20750175416469574, 0.08819208294153214, -0.12468845397233963, -0.43010932207107544, -0.027562960982322693, 0.15524199604988098, 0.05040852725505829, -0.47084933519363403, 0.776440441608429, -0.26487618684768677, 0.08166827261447906, 0.19490082561969757, 0.035419762134552, 0.08823661506175995, 0.3667815327644348, -0.27307453751564026, 0.7176822423934937, 0.5182624459266663, -0.30433616042137146, 0.26819097995758057, 0.5548920631408691, -0.48622724413871765, 0.38398706912994385, -0.41030991077423096, -0.07341083884239197, -0.26370370388031006, 0.2785762548446655, -0.8733096718788147, -0.4071148931980133, 0.4603559970855713, -0.5317422151565552, 0.2245948165655136, -0.17053675651550293, -0.6705665588378906, -0.7801552414894104, -0.5204175114631653, -0.008297504857182503, 0.4232330322265625, -0.41321033239364624, 0.3212073743343353, 0.1956433206796646, 0.16136963665485382, -0.6595308184623718, -0.8831959366798401, 0.17363674938678741, -0.23950567841529846, -0.588519275188446, 0.4241054654121399, -0.5592222809791565, -0.298351526260376, 0.28131794929504395, 0.1373566836118698, 0.15836766362190247, 0.14947733283042908, 0.19141148030757904, 0.21767497062683105, -0.1343197375535965, 0.12838448584079742, -0.13782085478305817, 0.018701517954468727, -0.08682432770729065, -0.19883544743061066, 0.4189644753932953, -0.2355300486087799, -0.29226526618003845, -0.16811063885688782, 0.41803234815597534, 0.46056705713272095, -0.18185512721538544, 0.8199198842048645, 1.1705267429351807, -0.276462584733963, 0.31965184211730957, -0.6182984113693237, -0.1668137013912201, -0.40499255061149597, 0.25423115491867065, -0.1543751358985901, -0.6524741053581238, 0.7586109638214111, 0.11631515622138977, 0.35903018712997437, 0.8772040605545044, 0.30055052042007446, -0.2956068515777588, 0.8244684338569641, 0.3835383355617523, -0.2130827009677887, 0.679409384727478, -0.6638616323471069, -0.0947616770863533, -0.8031585812568665, -0.39755645394325256, -0.565133273601532, -0.5306252241134644, -0.9232531189918518, -0.3161754310131073, 0.22945085167884827, -0.12605777382850647, -0.42531782388687134, 0.2990890145301819, -0.7227141261100769, 0.2729375958442688, 0.8546975255012512, 0.2090315818786621, -0.028871407732367516, 0.04970388486981392, 0.10623306781053543, -0.07340546697378159, -0.6092270016670227, -0.14661535620689392, 1.198668360710144, 0.37300488352775574, 0.35950273275375366, 0.0011083403369411826, 0.6741353869438171, 0.41218990087509155, 0.11984647810459137, -0.4575519263744354, 0.564826488494873, -0.28697535395622253, -0.5676342248916626, -0.3118301331996918, -0.35599422454833984, -1.0358296632766724, 0.08081606030464172, -0.276904821395874, -0.54446941614151, 0.25513333082199097, -0.21504749357700348, 0.15180495381355286, 0.476761132478714, -0.5662246942520142, 0.8568888902664185, -0.424323171377182, -0.2994234561920166, 0.07238081097602844, -1.210958480834961, 0.18876659870147705, 0.2970183789730072, 0.5217972993850708, -0.6347601413726807, 0.19484172761440277, 1.0932737588882446, -0.8259685635566711, 0.9122064709663391, -0.47422531247138977, 0.297566682100296, 0.3072913587093353, -0.43290144205093384, 0.6081295013427734, -0.21359670162200928, -0.3666331171989441, 0.4556137025356293, -0.0069357347674667835, -0.47117286920547485, -0.15385057032108307, 0.6035856604576111, -0.8355154395103455, -0.11276423186063766, -0.5069804191589355, -0.5932356715202332, -0.14217475056648254, 0.474822461605072, 0.4812229871749878, 0.42597368359565735, -0.06556089967489243, 0.2969356179237366, 0.511248767375946, -0.25974610447883606, 0.4661484658718109, 0.5173965692520142, -0.19035954773426056, -0.5853198170661926, 0.8780022263526917, 0.4232725203037262, 0.037552136927843094, 0.08864107728004456, 0.4304974675178528, -0.19803890585899353, -0.4832112491130829, -0.7471482157707214, 0.18889465928077698, -0.8089746832847595, -0.5278461575508118, -0.6622396111488342, -0.3647283911705017, -0.3642234802246094, 0.08054538071155548, -0.1498601734638214, -0.5560230016708374, -0.3395952582359314, -0.4376296103000641, 0.9851827025413513, 0.5498518347740173, -0.2852267026901245, 0.3194112181663513, -0.6202062964439392, 0.022946707904338837, -0.15235665440559387, 0.5349427461624146, -0.10916943103075027, -0.31116682291030884, -0.5230000019073486, 0.04968908056616783, -0.11595189571380615, -0.38326820731163025, 0.37869593501091003, 0.04150896146893501, 0.42367827892303467, -0.16509106755256653, 0.2893439531326294, 0.6913785338401794, -0.17852982878684998, 1.273707389831543, 0.29606151580810547, -0.6384207606315613, 0.5928389430046082, -0.4813244640827179, 0.5526756644248962, 0.8006229996681213, 0.33087801933288574, -0.5333635807037354, -0.22996175289154053, -1.0158406496047974, -1.002709984779358, 0.9243212342262268, 0.38561636209487915, 0.23702307045459747, 0.24293334782123566, 0.29901957511901855, 0.17690998315811157, 0.332215815782547, -0.806548535823822, -0.6978835463523865, -0.1918884664773941, -0.3725053369998932, 0.0982905924320221, -0.20301853120326996, -0.2594238817691803, -0.6245360970497131, 1.1130459308624268, -0.2036081850528717, 0.2557820975780487, 0.18064449727535248, 0.10404389351606369, -0.16250357031822205, 0.0291362963616848, 0.41367650032043457, 0.43721407651901245, -0.262761652469635, -0.14379757642745972, 0.08145168423652649, -0.7565219402313232, -0.08750806748867035, 0.2811780273914337, -0.31035980582237244, 0.01827707514166832, 0.614034116268158, 1.0197871923446655, 0.10823746025562286, -0.5136078000068665, 0.7381377816200256, -0.35983747243881226, -0.6129357814788818, -0.3938503563404083, -0.30180689692497253, 0.09402770549058914, 0.24167190492153168, 0.2076002061367035, 0.12364152073860168, 0.12084850668907166, -0.4229808449745178, 0.1458360105752945, 0.1897684931755066, -0.40153270959854126, -0.23978406190872192, 0.6836012005805969, 0.08409244567155838, 0.03061450459063053, 0.9220249652862549, -0.255745530128479, -0.4082016050815582, 0.7571304440498352, 0.3199515640735626, 0.8199220299720764, -0.007892264053225517, 0.20940013229846954, 0.688213050365448, 0.46304330229759216, -0.025969022884964943, 0.720517635345459, -0.023067357018589973, -0.6613277792930603, -0.15040290355682373, -0.5537880659103394, -0.15102362632751465, 0.31509169936180115, -0.9086017608642578, 0.3973824977874756, -0.19022157788276672, -0.1347399204969406, -0.12825077772140503, 0.3986145853996277, -1.2022217512130737, 0.37919455766677856, 0.06454069912433624, 1.2714595794677734, -1.072377324104309, 0.8133285641670227, 0.45282885432243347, -0.689715564250946, -0.9637194275856018, -0.07992196828126907, 0.03710666671395302, -0.7291008234024048, 0.3477056622505188, 0.021268678829073906, 0.3760784864425659, -0.038659192621707916, -0.8939517140388489, -1.1617324352264404, 1.3016031980514526, 0.2394164651632309, -0.5356220602989197, 0.1359340399503708, 0.22742697596549988, 0.42911767959594727, -0.061616286635398865, 0.20894184708595276, 0.5697706937789917, 0.7753469347953796, 0.09126951545476913, -1.0003721714019775, 0.2181377410888672, -0.6043657660484314, -0.1909414827823639, -0.036114778369665146, -0.946601390838623, 0.7351772785186768, -0.024626821279525757, 0.07047011703252792, -0.19008775055408478, 0.4367760717868805, 0.09092944115400314, 0.30360379815101624, 0.49473217129707336, 0.5015455484390259, 0.7440560460090637, -0.3634163439273834, 1.1971673965454102, -0.22664043307304382, 0.4075372517108917, 1.0443665981292725, 0.027422983199357986, 0.6481280326843262, 0.3737374246120453, -0.5640642642974854, 0.521007239818573, 0.7292423248291016, -0.2749529778957367, 0.5146144032478333, 0.05081024020910263, -0.03021179884672165, 0.026341861113905907, -0.2519095838069916, -0.5372054576873779, 0.3093664050102234, 0.3635154366493225, -0.33375054597854614, -0.2485080063343048, 0.4410080909729004, 0.2981044352054596, -0.2754429578781128, -0.09616778790950775, 0.8291707634925842, 0.024794744327664375, -0.35743239521980286, 0.35015228390693665, -0.0055628991685807705, 0.6625393033027649, -0.920305609703064, 0.06379134207963943, 0.018315227702260017, -0.0443277433514595, -0.5572818517684937, -1.2244185209274292, 0.3616737425327301, -0.10011693090200424, -0.23343823850154877, -0.5959949493408203, 0.8614904284477234, -0.5074489712715149, -0.8166356682777405, 0.4092838168144226, 0.4233042895793915, 0.22837714850902557, 0.13030312955379486, -1.2756956815719604, 0.6741661429405212, 0.2469722479581833, -0.6008276343345642, 0.47288981080055237, 0.17542330920696259, -0.24326367676258087, 0.41396579146385193, 0.6587061882019043, -0.09691708534955978, -0.012252525426447392, 0.2863549292087555, 0.8823544383049011, -0.48329538106918335, -0.369653582572937, -0.6179585456848145, 1.0748610496520996, -0.3685189485549927, -0.46288612484931946, 0.8248732686042786, 0.8747373819351196, 1.0469485521316528, -0.13963474333286285, 1.2213389873504639, -0.6167057156562805, 0.5000602006912231, -0.3846909999847412, 0.6093874573707581, -0.8364413976669312, -0.022578014060854912, -0.24966125190258026, -0.5039910674095154, -0.36094361543655396, 0.3997809588909149, -0.25585928559303284, -0.12029288709163666, 0.2191978245973587, 0.48938673734664917, -0.08076875656843185, 0.11978014558553696, 0.07841531187295914, 0.2603875696659088, 0.3944406807422638, 0.07628908008337021, 0.4660390019416809, -1.0479124784469604, 0.45290079712867737, -0.8187609314918518, -0.0007886162493377924, -0.1907050609588623, -1.042938232421875, -0.7036685943603516, -1.0449681282043457, -0.7493629455566406, -0.7874029874801636, -0.2944822907447815, 1.3533073663711548, 0.7276131510734558, -0.8096723556518555, -0.38211867213249207, 0.030244717374444008, 0.00003471760282991454, -0.23673944175243378, -0.29448604583740234, 0.6225841641426086, 0.2180173546075821, -0.5582289695739746, 0.1550058275461197, 0.05516715347766876, 0.08883196115493774, -0.17489440739154816, -0.05924205854535103, -0.3238290548324585, -0.18897490203380585, 0.7928680181503296, 0.217183455824852, -0.6066460013389587, -0.236625537276268, -0.12405434995889664, -0.07526057958602905, 0.14644643664360046, 0.30835598707199097, -0.4873650074005127, 0.33513861894607544, 0.492940753698349, 0.17307622730731964, 0.9596185088157654, -0.23061558604240417, 0.02696964330971241, -0.9532763361930847, 0.26713764667510986, 0.17981837689876556, 0.46572381258010864, 0.4524694085121155, -0.5488951802253723, 1.0417633056640625, 0.24135060608386993, -0.3347119390964508, -1.0234503746032715, -0.1644625961780548, -1.1774866580963135, -0.14183591306209564, 1.0711686611175537, 0.03771791607141495, -0.17791008949279785, -0.03459841385483742, -0.23202696442604065, 0.087362140417099, -0.2982822060585022, 0.3193604648113251, 0.8266913890838623, -0.09219256788492203, 0.00008473606430925429, -0.7616040110588074, 0.41050249338150024, -0.24247616529464722, -0.9957436323165894, 0.11322249472141266, 0.1890573352575302, 0.6828355193138123, -0.046138983219861984, 0.9800569415092468, -0.20570938289165497, -0.05186023190617561, 0.13606694340705872, 0.3544025719165802, -0.0834246352314949, 0.053069427609443665, -0.04939169064164162, -0.334760844707489, -0.1832520216703415, -0.24513664841651917 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
go_emotions
null
2023-06-01T14:59:54Z
7,104
68
goemotions
[ "task_categories:text-classification", "task_ids:multi-class-classification", "task_ids:multi-label-classification", "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:100K<n<1M", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:apache-2.0", "emotion", "arxiv:2005.00547", "region:us" ]
2023-06-01T14:59:54Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - found language: - en license: - apache-2.0 multilinguality: - monolingual size_categories: - 100K<n<1M - 10K<n<100K source_datasets: - original task_categories: - text-classification task_ids: - multi-class-classification - multi-label-classification paperswithcode_id: goemotions pretty_name: GoEmotions tags: - emotion dataset_info: - config_name: raw features: - name: text dtype: string - name: id dtype: string - name: author dtype: string - name: subreddit dtype: string - name: link_id dtype: string - name: parent_id dtype: string - name: created_utc dtype: float32 - name: rater_id dtype: int32 - name: example_very_unclear dtype: bool - name: admiration dtype: int32 - name: amusement dtype: int32 - name: anger dtype: int32 - name: annoyance dtype: int32 - name: approval dtype: int32 - name: caring dtype: int32 - name: confusion dtype: int32 - name: curiosity dtype: int32 - name: desire dtype: int32 - name: disappointment dtype: int32 - name: disapproval dtype: int32 - name: disgust dtype: int32 - name: embarrassment dtype: int32 - name: excitement dtype: int32 - name: fear dtype: int32 - name: gratitude dtype: int32 - name: grief dtype: int32 - name: joy dtype: int32 - name: love dtype: int32 - name: nervousness dtype: int32 - name: optimism dtype: int32 - name: pride dtype: int32 - name: realization dtype: int32 - name: relief dtype: int32 - name: remorse dtype: int32 - name: sadness dtype: int32 - name: surprise dtype: int32 - name: neutral dtype: int32 splits: - name: train num_bytes: 55343630 num_examples: 211225 download_size: 42742918 dataset_size: 55343630 - config_name: simplified features: - name: text dtype: string - name: labels sequence: class_label: names: '0': admiration '1': amusement '2': anger '3': annoyance '4': approval '5': caring '6': confusion '7': curiosity '8': desire '9': disappointment '10': disapproval '11': disgust '12': embarrassment '13': excitement '14': fear '15': gratitude '16': grief '17': joy '18': love '19': nervousness '20': optimism '21': pride '22': realization '23': relief '24': remorse '25': sadness '26': surprise '27': neutral - name: id dtype: string splits: - name: train num_bytes: 4224198 num_examples: 43410 - name: validation num_bytes: 527131 num_examples: 5426 - name: test num_bytes: 524455 num_examples: 5427 download_size: 4394818 dataset_size: 5275784 config_names: - raw - simplified --- # Dataset Card for GoEmotions ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** https://github.com/google-research/google-research/tree/master/goemotions - **Repository:** https://github.com/google-research/google-research/tree/master/goemotions - **Paper:** https://arxiv.org/abs/2005.00547 - **Leaderboard:** - **Point of Contact:** [Dora Demszky](https://nlp.stanford.edu/~ddemszky/index.html) ### Dataset Summary The GoEmotions dataset contains 58k carefully curated Reddit comments labeled for 27 emotion categories or Neutral. The raw data is included as well as the smaller, simplified version of the dataset with predefined train/val/test splits. ### Supported Tasks and Leaderboards This dataset is intended for multi-class, multi-label emotion classification. ### Languages The data is in English. ## Dataset Structure ### Data Instances Each instance is a reddit comment with a corresponding ID and one or more emotion annotations (or neutral). ### Data Fields The simplified configuration includes: - `text`: the reddit comment - `labels`: the emotion annotations - `comment_id`: unique identifier of the comment (can be used to look up the entry in the raw dataset) In addition to the above, the raw data includes: * `author`: The Reddit username of the comment's author. * `subreddit`: The subreddit that the comment belongs to. * `link_id`: The link id of the comment. * `parent_id`: The parent id of the comment. * `created_utc`: The timestamp of the comment. * `rater_id`: The unique id of the annotator. * `example_very_unclear`: Whether the annotator marked the example as being very unclear or difficult to label (in this case they did not choose any emotion labels). In the raw data, labels are listed as their own columns with binary 0/1 entries rather than a list of ids as in the simplified data. ### Data Splits The simplified data includes a set of train/val/test splits with 43,410, 5426, and 5427 examples respectively. ## Dataset Creation ### Curation Rationale From the paper abstract: > Understanding emotion expressed in language has a wide range of applications, from building empathetic chatbots to detecting harmful online behavior. Advancement in this area can be improved using large-scale datasets with a fine-grained typology, adaptable to multiple downstream tasks. ### Source Data #### Initial Data Collection and Normalization Data was collected from Reddit comments via a variety of automated methods discussed in 3.1 of the paper. #### Who are the source language producers? English-speaking Reddit users. ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? Annotations were produced by 3 English-speaking crowdworkers in India. ### Personal and Sensitive Information This dataset includes the original usernames of the Reddit users who posted each comment. Although Reddit usernames are typically disasociated from personal real-world identities, this is not always the case. It may therefore be possible to discover the identities of the individuals who created this content in some cases. ## Considerations for Using the Data ### Social Impact of Dataset Emotion detection is a worthwhile problem which can potentially lead to improvements such as better human/computer interaction. However, emotion detection algorithms (particularly in computer vision) have been abused in some cases to make erroneous inferences in human monitoring and assessment applications such as hiring decisions, insurance pricing, and student attentiveness (see [this article](https://www.unite.ai/ai-now-institute-warns-about-misuse-of-emotion-detection-software-and-other-ethical-issues/)). ### Discussion of Biases From the authors' github page: > Potential biases in the data include: Inherent biases in Reddit and user base biases, the offensive/vulgar word lists used for data filtering, inherent or unconscious bias in assessment of offensive identity labels, annotators were all native English speakers from India. All these likely affect labelling, precision, and recall for a trained model. Anyone using this dataset should be aware of these limitations of the dataset. ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators Researchers at Amazon Alexa, Google Research, and Stanford. See the [author list](https://arxiv.org/abs/2005.00547). ### Licensing Information The GitHub repository which houses this dataset has an [Apache License 2.0](https://github.com/google-research/google-research/blob/master/LICENSE). ### Citation Information @inproceedings{demszky2020goemotions, author = {Demszky, Dorottya and Movshovitz-Attias, Dana and Ko, Jeongwoo and Cowen, Alan and Nemade, Gaurav and Ravi, Sujith}, booktitle = {58th Annual Meeting of the Association for Computational Linguistics (ACL)}, title = {{GoEmotions: A Dataset of Fine-Grained Emotions}}, year = {2020} } ### Contributions Thanks to [@joeddav](https://github.com/joeddav) for adding this dataset.
[ -0.45193225145339966, -0.5899648070335388, 0.1905096024274826, 0.17723973095417023, -0.3477741479873657, -0.18820421397686005, -0.422946572303772, -0.638249397277832, 0.466029554605484, 0.19906644523143768, -0.7310289144515991, -0.8658795356750488, -0.6701567769050598, 0.17479272186756134, -0.18973302841186523, 1.2016823291778564, -0.1516028791666031, -0.28365781903266907, -0.2787022888660431, -0.4617629647254944, -0.020748287439346313, -0.6973080635070801, -0.36869367957115173, -0.11268061399459839, 0.45306214690208435, 0.4841553270816803, 0.5918885469436646, 0.5059933662414551, 0.6677212715148926, 0.31955763697624207, -0.15277186036109924, 0.03381706774234772, -0.44385626912117004, 0.054991282522678375, 0.15041713416576385, -0.4177880883216858, -0.6629576086997986, 0.05306989327073097, 0.2130991518497467, 0.20233650505542755, -0.1732884645462036, 0.4671195447444916, -0.0012130646500736475, 0.8116585612297058, -0.6617858409881592, 0.5519231557846069, -0.15428084135055542, 0.2390730082988739, -0.23438206315040588, -0.017040807753801346, -0.23659755289554596, -0.4850442111492157, -0.003998429514467716, -0.5191555619239807, 0.032723184674978256, -0.005809198133647442, 0.9714335203170776, 0.26994788646698, -0.12615841627120972, -0.3364805579185486, -0.43322834372520447, 0.6808750033378601, -0.7306316494941711, 0.0837564766407013, 0.5127292275428772, 0.21706661581993103, 0.09898103028535843, -0.6329218149185181, -0.692196786403656, 0.20208747684955597, -0.34056875109672546, 0.4194300174713135, -0.36364755034446716, -0.15448109805583954, 0.4094763696193695, 0.5222104787826538, -0.5857657194137573, -0.27197086811065674, -0.1388586312532425, -0.04941345006227493, 0.8330481052398682, 0.13194452226161957, 0.5284169912338257, -0.4024452865123749, -0.020351825281977654, -0.32943302392959595, -0.2985461950302124, 0.14430822432041168, 0.6333940625190735, 0.3757944703102112, -0.6814684271812439, 0.5410385727882385, -0.12540385127067566, 0.3854043781757355, -0.1120484247803688, 0.1845514178276062, 0.7912111282348633, -0.45165327191352844, -0.17115676403045654, -0.3488442301750183, 1.0161536931991577, 0.7123656868934631, 0.5690735578536987, 0.16917698085308075, 0.12617425620555878, 0.07009238004684448, 0.04388249292969704, -0.7129911780357361, -0.3769403100013733, 0.39323556423187256, -0.6404016017913818, -0.2904786169528961, 0.06621081382036209, -1.2739108800888062, -0.3436339497566223, -0.3272055387496948, 0.007601569872349501, -0.17259567975997925, -0.4465669095516205, -0.11772888898849487, -0.07321158051490784, 0.0888344869017601, 0.07282200455665588, -0.7444909811019897, 0.24449290335178375, 0.34620746970176697, 0.663882315158844, -0.04938417673110962, -0.1717684119939804, 0.07806748151779175, -0.2929619252681732, -0.045908123254776, 0.632154643535614, -0.8075878620147705, -0.35629087686538696, 0.20293675363063812, 0.2849680483341217, -0.06400517374277115, -0.49165382981300354, 0.74912428855896, -0.3341964781284332, 0.41337794065475464, -0.3891694247722626, -0.3612128496170044, -0.39071401953697205, 0.20411129295825958, -0.670928418636322, 1.1073585748672485, 0.14337247610092163, -0.9840981364250183, 0.2778005003929138, -1.0114043951034546, -0.3582221567630768, -0.020182877779006958, 0.09415768086910248, -0.4865916967391968, 0.016758620738983154, 0.185447558760643, 0.5842806100845337, -0.12151138484477997, 0.238835409283638, -0.43336164951324463, -0.1297023445367813, 0.2074333280324936, -0.12957647442817688, 0.864189863204956, 0.16197822988033295, -0.3488771915435791, 0.09782011061906815, -0.8359858989715576, -0.08451138436794281, 0.2584124207496643, -0.04857073351740837, -0.25177088379859924, 0.1384376436471939, 0.16073796153068542, 0.3427332043647766, 0.18671341240406036, -0.44488757848739624, 0.08313386887311935, -0.17918166518211365, 0.43589821457862854, 0.6139268279075623, 0.03517606481909752, 0.2586574852466583, -0.049873631447553635, 0.5134019255638123, 0.24526211619377136, 0.3586704432964325, -0.004908344242721796, -0.5194616913795471, -0.8079150915145874, -0.3043621778488159, 0.1645364761352539, 0.635654091835022, -0.371724396944046, 0.7843582630157471, -0.24161964654922485, -0.6135478019714355, -0.6517646908760071, 0.03059961460530758, 0.3544098734855652, 0.490946501493454, 0.5315473079681396, -0.3006362020969391, -0.6384069323539734, -0.8373399376869202, 0.007058876100927591, -0.24342414736747742, 0.08064193278551102, 0.6919002532958984, 0.8068581223487854, -0.34627649188041687, 0.7674040794372559, -0.6183912754058838, -0.15097494423389435, 0.015597211197018623, 0.31735244393348694, 0.07910488545894623, 0.35216212272644043, 0.49843546748161316, -0.8403974771499634, -0.610287070274353, -0.15288949012756348, -1.0115772485733032, -0.1356896013021469, 0.12199345231056213, -0.21832726895809174, 0.32404857873916626, 0.22539491951465607, -0.5417662858963013, 0.48971977829933167, 0.5731264352798462, -0.3832862973213196, 0.41397061944007874, -0.0580778531730175, 0.3030828535556793, -1.1468442678451538, 0.14808300137519836, 0.22445587813854218, 0.06361696124076843, -0.47333237528800964, -0.28985482454299927, -0.038662705570459366, 0.05103813111782074, -0.42057785391807556, 0.5709623098373413, -0.23879867792129517, 0.2673051655292511, 0.14015544950962067, 0.19989047944545746, -0.20302468538284302, 0.6791732907295227, 0.046225909143686295, 0.570014476776123, 0.5985339283943176, -0.44803428649902344, 0.4729171097278595, 0.34450191259384155, -0.3079730272293091, 0.9373254776000977, -0.5753979086875916, 0.20471009612083435, -0.31868991255760193, 0.2762190103530884, -1.0240315198898315, -0.6445989012718201, 0.623760461807251, -0.7148016691207886, 0.08025148510932922, 0.09772215038537979, -0.5795294046401978, -0.5302748084068298, -0.589262843132019, 0.19962182641029358, 0.46950265765190125, -0.3966794013977051, 0.6656216979026794, 0.554826557636261, -0.27917614579200745, -0.481094628572464, -0.8531841039657593, -0.026871461421251297, -0.46445414423942566, -0.6088666915893555, -0.037230234593153, -0.25872787833213806, -0.20918196439743042, 0.2118169665336609, 0.3149656057357788, -0.08797436207532883, -0.05854759365320206, 0.5580296516418457, 0.23609043657779694, 0.1463414430618286, 0.35161396861076355, -0.1999049037694931, -0.11416451632976532, 0.17769843339920044, 0.21245050430297852, 0.35819968581199646, -0.1316450834274292, -0.1740555465221405, -0.6049019694328308, 0.3436589539051056, 0.5520257353782654, -0.20762428641319275, 0.5803468823432922, 0.6885900497436523, -0.4053303301334381, 0.04042406007647514, -0.3971612751483917, -0.08280988037586212, -0.4068491458892822, 0.43863722681999207, -0.02536250837147236, -0.840234100818634, 0.840337872505188, 0.2541372776031494, -0.008935336954891682, 0.6348644495010376, 0.666593611240387, -0.08577144891023636, 0.9767601490020752, 0.4771055281162262, -0.3560480773448944, 0.49386483430862427, -0.22941304743289948, 0.30759182572364807, -0.8835004568099976, -0.3650166392326355, -0.6648072600364685, -0.5961892604827881, -0.8515433669090271, -0.27242836356163025, -0.161147341132164, -0.3826628029346466, -0.297580361366272, 0.15043438971042633, -0.6957753300666809, 0.4676581919193268, 0.5325209498405457, 0.08743530511856079, -0.0803389847278595, 0.015632161870598793, 0.2949785590171814, -0.24149417877197266, -0.4158886969089508, -0.6022000908851624, 1.108132004737854, 0.38871973752975464, 0.5350460410118103, 0.03340701386332512, 0.586700975894928, 0.37365779280662537, 0.4018665552139282, -0.5441025495529175, 0.6557772159576416, -0.18359875679016113, -0.6554728746414185, -0.13270899653434753, -0.3301883935928345, -0.8626529574394226, -0.15816418826580048, -0.10239771008491516, -0.9554743766784668, 0.3672984540462494, 0.2632829546928406, -0.204111710190773, 0.2395956665277481, -1.0040603876113892, 0.9488855004310608, -0.1760975867509842, -0.2638758718967438, 0.16416190564632416, -1.043779969215393, 0.12086927890777588, 0.12197580933570862, 0.26413804292678833, -0.08240163326263428, 0.09570272266864777, 1.1019384860992432, -0.3576816916465759, 1.0217896699905396, -0.38940608501434326, 0.16045555472373962, 0.5397739410400391, -0.33573952317237854, 0.5511656999588013, -0.14269818365573883, -0.007651555351912975, 0.29724109172821045, -0.3547883927822113, -0.16843116283416748, -0.4105965495109558, 0.6573176980018616, -0.8515365719795227, -0.06572262197732925, -0.25740182399749756, -0.4370751976966858, -0.09273386001586914, -0.0005914400098845363, 0.3225265443325043, 0.10602293908596039, -0.01986728422343731, 0.30648499727249146, 0.5145358443260193, -0.20320478081703186, 0.36674121022224426, 0.22928357124328613, 0.06677405536174774, -0.5291630625724792, 0.9828006625175476, 0.2369070202112198, -0.10115551948547363, 0.0959465503692627, 0.05053560435771942, -0.41723623871803284, -0.0965622141957283, -0.10711589455604553, 0.31481897830963135, -0.747747004032135, -0.14607325196266174, -0.5604590773582458, 0.09249814599752426, -0.3915739953517914, -0.09217920154333115, -0.19549670815467834, -0.1896325945854187, -0.49874842166900635, -0.453718900680542, 0.559168815612793, 0.45326435565948486, -0.26241442561149597, 0.2937530279159546, -0.5398314595222473, 0.17892876267433167, 0.35331881046295166, 0.5627370476722717, 0.041547030210494995, -0.44007429480552673, -0.2776133418083191, 0.1443885713815689, -0.13070961833000183, -0.7595847845077515, 0.4453880786895752, 0.21375712752342224, 0.27123352885246277, 0.3865058124065399, 0.10095073282718658, 0.5950493216514587, -0.09911750257015228, 1.0438131093978882, 0.03675540164113045, -0.6825575828552246, 0.6331504583358765, -0.26329466700553894, 0.1936512440443039, 0.7827138900756836, 0.5787752270698547, -0.6559587717056274, -0.3762857913970947, -0.8662431240081787, -1.2497769594192505, 0.7957316040992737, 0.3101215064525604, 0.3481247127056122, -0.1628301441669464, 0.19373126327991486, -0.13029588758945465, 0.2732844948768616, -0.8515786528587341, -0.6104598045349121, -0.1202612891793251, -0.5970664024353027, -0.10193563997745514, -0.462838739156723, -0.283306747674942, -0.25247135758399963, 0.7257080078125, 0.16740185022354126, 0.47320592403411865, 0.11505897343158722, -0.09724020212888718, -0.10741312056779861, 0.24078218638896942, 0.5082483887672424, 0.19352468848228455, -0.3884583115577698, 0.07785169035196304, 0.03396410867571831, -0.5820323824882507, -0.024303846061229706, 0.17622847855091095, -0.04966769739985466, -0.10456793755292892, 0.3269215226173401, 0.8999000191688538, -0.05962247774004936, -0.5468052625656128, 0.38345474004745483, -0.203621506690979, -0.2639557719230652, -0.25109735131263733, -0.014489175751805305, 0.11453324556350708, 0.3346342444419861, 0.07235512882471085, -0.09034514427185059, 0.1493852436542511, -0.43675413727760315, 0.15730020403862, 0.08247996121644974, -0.51015305519104, -0.5961721539497375, 0.48601144552230835, 0.37342265248298645, -0.42368602752685547, 0.5466786026954651, -0.301120787858963, -0.4697706401348114, 0.6264675259590149, 0.15754713118076324, 1.0665442943572998, -0.12930746376514435, 0.22880755364894867, 0.5214141607284546, 0.21295396983623505, -0.09150289744138718, 0.5290107727050781, -0.10257143527269363, -0.6244234442710876, -0.2801767587661743, -0.4758189618587494, -0.4669870436191559, 0.1423773616552353, -0.6847563982009888, 0.212315633893013, -0.21588894724845886, -0.2959107458591461, -0.07291955500841141, -0.104286789894104, -0.6504182815551758, 0.44821569323539734, 0.2993263006210327, 0.7512575387954712, -1.0771219730377197, 0.2703481614589691, 0.9239050149917603, -0.4975256323814392, -0.7118192315101624, -0.11890005320310593, 0.3169461786746979, -0.5472330451011658, 0.5100481510162354, 0.24315086007118225, 0.05799638107419014, -0.1448734700679779, -0.8541328310966492, -0.5620108246803284, 0.8772518038749695, 0.11899624019861221, -0.34272390604019165, 0.3327890634536743, 0.15010686218738556, 0.8706250786781311, -0.3839114308357239, 0.4896491467952728, 0.4713534712791443, 0.6687614917755127, 0.06640779227018356, -0.41852471232414246, -0.07847597450017929, -0.7355523109436035, -0.267301082611084, 0.1468910574913025, -0.6867579817771912, 0.6950765252113342, 0.02281671203672886, -0.18780021369457245, -0.412211149930954, 0.5211184024810791, 0.10704955458641052, 0.3302914500236511, 0.41480472683906555, 0.9795575141906738, 0.8735464215278625, -0.3911270201206207, 1.0687212944030762, -0.37310370802879333, 0.6817514300346375, 1.1675258874893188, -0.16529497504234314, 0.799856960773468, 0.2749117910861969, -0.4264281690120697, 0.5112355351448059, 0.7793259620666504, -0.0905512347817421, 0.3577139973640442, 0.16682057082653046, -0.11363320797681808, 0.01684466004371643, -0.18021492660045624, -0.5133941769599915, 0.23598693311214447, 0.2651425004005432, -0.44247040152549744, -0.01759067364037037, -0.030870046466588974, 0.5425594449043274, -0.1902805119752884, -0.1470232456922531, 0.7416827082633972, -0.16861842572689056, -0.4371451437473297, 0.31814995408058167, -0.4517427980899811, 0.714445948600769, -0.5261040925979614, 0.0843505933880806, -0.41865500807762146, 0.07386157661676407, -0.48612040281295776, -0.9544967412948608, 0.36575156450271606, 0.3165625333786011, -0.16917873919010162, -0.13098828494548798, 0.7234970927238464, -0.40663212537765503, -0.5421643853187561, 0.3351418077945709, 0.22003382444381714, 0.2806108593940735, -0.009880146943032742, -0.7285542488098145, 0.11641979962587357, 0.05442158505320549, -0.6806612014770508, 0.1490962952375412, 0.6347764730453491, 0.10680308938026428, 0.528232753276825, 0.3673306107521057, -0.01666994020342827, -0.1436242312192917, 0.018519237637519836, 0.9116153717041016, -0.7920939326286316, -0.38314586877822876, -0.885493278503418, 0.9100526571273804, -0.3559893071651459, -0.38667017221450806, 0.7279839515686035, 0.4620370864868164, 0.8468634486198425, -0.07590506970882416, 0.9293269515037537, -0.4378587305545807, 0.5425313711166382, -0.02723223902285099, 0.6237181425094604, -0.7765117287635803, -0.22083452343940735, -0.5143597722053528, -0.7400115728378296, -0.6033257842063904, 0.6622079014778137, -0.439617395401001, 0.24493080377578735, 0.5482767820358276, 0.7705250382423401, 0.18131239712238312, 0.15377165377140045, -0.00999491848051548, 0.43189772963523865, 0.1820295751094818, 0.5100839734077454, 0.5119733214378357, -0.3825947642326355, 0.4539657533168793, -0.3626994788646698, -0.26828083395957947, -0.3741694390773773, -0.8094505071640015, -0.7407199740409851, -0.5511547327041626, -0.665219247341156, -0.3433647155761719, -0.0643431693315506, 0.7487257719039917, 0.470407098531723, -0.934558093547821, -0.2185068279504776, 0.09210774302482605, 0.19273902475833893, 0.004961182828992605, -0.25536635518074036, 0.5171913504600525, -0.07037697732448578, -0.777833104133606, -0.3170832693576813, 0.33702439069747925, -0.03973851352930069, 0.09029962122440338, -0.20980598032474518, -0.3569723665714264, 0.0014272942207753658, 0.6198360919952393, 0.4130386710166931, -0.34915903210639954, -0.39980414509773254, 0.049420345574617386, 0.0272824689745903, 0.2704787254333496, 0.17899508774280548, -0.30123037099838257, 0.6016642451286316, 0.5836576819419861, 0.2641541659832001, 0.2163938283920288, 0.15023089945316315, -0.09774558246135712, -0.6443969011306763, 0.20690225064754486, 0.10873240977525711, 0.3177492022514343, 0.3446485102176666, -0.2299979329109192, 0.7592099905014038, 0.3933638632297516, -0.7262064218521118, -0.7500787377357483, -0.07178790122270584, -1.0819040536880493, 0.19171911478042603, 1.2149542570114136, -0.3007611632347107, -0.37240710854530334, 0.0902320146560669, -0.2841353416442871, 0.28230947256088257, -0.7041648626327515, 0.7922052145004272, 1.0974199771881104, -0.1945146769285202, -0.14608031511306763, -0.5064471960067749, 0.4416652023792267, 0.17780092358589172, -1.2518436908721924, 0.3334544897079468, 0.6182723641395569, -0.07979480177164078, 0.4186248481273651, 0.59708571434021, -0.2690875828266144, 0.053904976695775986, -0.2700142562389374, 0.46420133113861084, 0.150223508477211, -0.0903814360499382, -0.31048157811164856, 0.291434109210968, -0.26768121123313904, -0.29927945137023926 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
BigScienceBiasEval/crows_pairs_multilingual
BigScienceBiasEval
2022-04-26T16:26:28Z
7,092
2
null
[ "license:cc-by-sa-4.0", "arxiv:2010.00133", "region:us" ]
2022-04-26T16:26:28Z
2022-04-26T07:49:31.000Z
2022-04-26T07:49:31
--- license: cc-by-sa-4.0 --- Original from https://gitlab.inria.fr/french-crows-pairs/acl-2022-paper-data-and-code/-/tree/main/. # Data Statement for CrowS-Pairs-fr > **How to use this document:** > Fill in each section according to the instructions. Give as much detail as you can, but there's no need to extrapolate. The goal is to help people understand your data when they approach it. This could be someone looking at it in ten years, or it could be you yourself looking back at the data in two years. > For full details, the best source is the original Data Statements paper, here: https://www.aclweb.org/anthology/Q18-1041/ . > Instruction fields are given as blockquotes; delete the instructions when you're done, and provide the file with your data, for example as "DATASTATEMENT.md". The lists in some blocks are designed to be filled in, but it's good to also leave a written description of what's happening, as well as the list. It's fine to skip some fields if the information isn't known. > Only blockquoted content should be deleted; the final about statement should be left intact. Data set name: Crows-Pairs-fr Citation (if available): Névéol A, Dupont Y, Bezançon J, Fort K. French CrowS-Pairs: Extending a challenge dataset for measuring social bias in masked language models to a language other than English. Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics - ACL 2022 Data set developer(s): Aurélie Névéol, Yoann Dupont, Julien Bezançon, Karën Fort Data statement author(s): Aurélie Névéol, Yoann Dupont Others who contributed to this document: N/A License: Creative Commons Attribution-ShareAlike 4.0 (CC BY-SA 4.0). ## A. CURATION RATIONALE > *Explanation.* Which texts were included and what were the goals in selecting texts, both in the original collection and in any further sub-selection? This can be especially important in datasets too large to thoroughly inspect by hand. An explicit statement of the curation rationale can help dataset users make inferences about what other kinds of texts systems trained with them could conceivably generalize to. The French part of the corpus was built by first translating the original 1,508 sentence pairs of the English corpus into French. We then adapted the crowdsourcing method described by [Nangia et al. (2020)](https://arxiv.org/pdf/2010.00133) to collect additional sentences expressing a stereotype relevant to the French socio-cultural environment. Data collection is implemented through LanguageARC [(Fiumara et al., 2020)](https://www.aclweb.org/anthology/2020.cllrd-1.1.pdf), a citizen science platform supporting the development of language resources dedicated to social improvement. We created a LanguageARC project (https://languagearc.com/projects/19) to collect these additional sentences. Participants were asked to submit a statement that expressed a stereotype in French along with a selection of ten bias types: the nine bias types offered in CrowS-Pairs and the additional category _other_. We collected 210 additional sentences this way. ## B. LANGUAGE VARIETY/VARIETIES > *Explanation.* Languages differ from each other in structural ways that can interact with NLP algorithms. Within a language, regional or social dialects can also show great variation (Chambers and Trudgill, 1998). The language and language variety should be described with a language tag from BCP-47 identifying the language variety (e.g., en-US or yue-Hant-HK), and a prose description of the language variety, glossing the BCP-47 tag and also providing further information (e.g., "English as spoken in Palo Alto, California", or "Cantonese written with traditional characters by speakers in Hong Kong who are bilingual in Mandarin"). * BCP-47 language tags: fr-FR * Language variety description: French spoken by native French people from metropolitan France. ## C. CONTRIBUTOR DEMOGRAPHIC > ## C. SPEAKER DEMOGRAPHIC > *Explanation.* Sociolinguistics has found that variation (in pronunciation, prosody, word choice, and grammar) correlates with speaker demographic characteristics (Labov, 1966), as speakers use linguistic variation to construct and project identities (Eckert and Rickford, 2001). Transfer from native languages (L1) can affect the language produced by non-native (L2) speakers (Ellis, 1994, Ch. 8). A further important type of variation is disordered speech (e.g., dysarthria). Specifications include: N/A ## D. ANNOTATOR DEMOGRAPHIC > *Explanation.* What are the demographic characteristics of the annotators and annotation guideline developers? Their own “social address” influences their experience with language and thus their perception of what they are annotating. Specifications include: Participants to the collection project were recruited through calls for volunteers posted to social media and mailing lists in the French research community. ## E. SPEECH SITUATION N/A ## F. TEXT CHARACTERISTICS > *Explanation.* Both genre and topic influence the vocabulary and structural characteristics of texts (Biber, 1995), and should be specified. Collected data is a collection of offensive stereotyped statements in French, they might be upsetting. Along these stereotyped statements are paired anti-stereotyped statements. ## G. RECORDING QUALITY N/A ## H. OTHER > *Explanation.* There may be other information of relevance as well. Please use this space to develop any further categories that are relevant for your dataset. ## I. PROVENANCE APPENDIX Examples were gathered using the LanguageArc site and by creating a dedicated project: https://languagearc.com/projects/19 ## About this document A data statement is a characterization of a dataset that provides context to allow developers and users to better understand how experimental results might generalize, how software might be appropriately deployed, and what biases might be reflected in systems built on the software. Data Statements are from the University of Washington. Contact: [datastatements@uw.edu](mailto:datastatements@uw.edu). This document template is licensed as [CC0](https://creativecommons.org/share-your-work/public-domain/cc0/). This version of the markdown Data Statement is from June 4th 2020. The Data Statement template is based on worksheets distributed at the [2020 LREC workshop on Data Statements](https://sites.google.com/uw.edu/data-statements-for-nlp/), by Emily M. Bender, Batya Friedman, and Angelina McMillan-Major. Adapted to community Markdown template by Leon Dercyznski.
[ -0.3862594962120056, -0.5934256315231323, 0.14043200016021729, 0.46118444204330444, -0.009869778528809547, 0.09302342683076859, -0.2870059907436371, -0.5893052220344543, 0.3895858824253082, 0.6038106083869934, -0.17427517473697662, -0.6164164543151855, -0.6021960377693176, 0.33436426520347595, -0.2833450436592102, 0.859151303768158, -0.07491067796945572, -0.1291552037000656, -0.05000072717666626, -0.3593769967556, -0.23391519486904144, -0.8816176652908325, -0.5491588115692139, -0.035510264337062836, 0.4712713062763214, 0.31711894273757935, 0.6285011172294617, 0.8042564392089844, 0.23979735374450684, 0.21948456764221191, -0.06489874422550201, 0.24848370254039764, -0.2844105362892151, -0.00956230703741312, -0.11581479012966156, -0.15349890291690826, -0.2671964168548584, 0.16333991289138794, 0.4901377856731415, 0.840723991394043, 0.13450893759727478, 0.05773302540183067, 0.13817143440246582, 0.8618366122245789, -0.499625563621521, 0.48237571120262146, -0.4282422661781311, -0.08046521246433258, -0.43460842967033386, 0.007621344178915024, -0.3966556191444397, -0.35291874408721924, -0.11216802895069122, -0.3514537215232849, 0.3809781074523926, 0.018514050170779228, 0.8832845091819763, 0.010855593718588352, -0.38603758811950684, -0.09270789474248886, -0.5499536991119385, 0.6566741466522217, -0.6482990384101868, 0.47693824768066406, 0.85466468334198, 0.037134893238544464, -0.05363314971327782, -0.3689548373222351, -0.49304884672164917, -0.22427955269813538, -0.21715174615383148, 0.07714257389307022, -0.170863538980484, -0.257252961397171, 0.36893701553344727, 0.23155592381954193, -0.6943178176879883, 0.027758300304412842, -0.5743142366409302, -0.336646169424057, 1.047736406326294, -0.1799120008945465, 0.20149067044258118, -0.22185595333576202, -0.06230572238564491, -0.14371763169765472, -0.5005605816841125, 0.10810935497283936, 0.5495539307594299, 0.6360507607460022, -0.6392547488212585, 0.6399827599525452, -0.2985333502292633, 0.5772351026535034, -0.11690971255302429, 0.20894314348697662, 0.6522420644760132, -0.39466750621795654, 0.04544799402356148, -0.17827291786670685, 0.7993968725204468, 0.546416699886322, 0.6279345154762268, -0.2207413762807846, -0.06815991550683975, -0.03858022391796112, -0.23414450883865356, -0.3862530589103699, -0.5294434428215027, 0.24600951373577118, -0.3466016948223114, -0.12745589017868042, 0.1605222374200821, -0.8432256579399109, -0.32160747051239014, -0.2821446359157562, -0.1309862583875656, -0.20896971225738525, -0.19532957673072815, 0.009708077646791935, -0.27771952748298645, 0.07189682871103287, 0.008712006732821465, -0.7263671159744263, 0.4118722379207611, 0.3270120918750763, 0.6869579553604126, -0.24582228064537048, -0.1696665734052658, -0.5012553334236145, 0.006962030194699764, -0.22172990441322327, 0.49949368834495544, -0.6222089529037476, -0.5127798914909363, 0.2377871572971344, 0.24025662243366241, 0.049689892679452896, -0.5853469967842102, 0.45801210403442383, -0.22833332419395447, 0.2837148606777191, -0.5582904815673828, -0.33284875750541687, -0.10369846224784851, -0.2057395875453949, -0.7576294541358948, 1.0529558658599854, 0.2715824246406555, -0.8029331564903259, 0.3467768728733063, -0.48712751269340515, -0.508901834487915, 0.15069255232810974, -0.2959383428096771, -0.15471585094928741, -0.22098343074321747, 0.2962992489337921, 0.31456759572029114, -0.19817185401916504, 0.15281280875205994, -0.18245019018650055, 0.024922076612710953, 0.3295332193374634, -0.2259223908185959, 1.080678105354309, 0.2558419108390808, -0.2970128357410431, -0.3481808304786682, -0.6718872785568237, -0.2696110010147095, 0.20726223289966583, -0.3574824631214142, -0.3405360281467438, 0.08342844247817993, 0.2056504189968109, 0.10480007529258728, 0.19218170642852783, -0.5184819102287292, 0.06588533520698547, -0.41435930132865906, 0.2620745003223419, 0.5613109469413757, 0.06660173833370209, 0.3370182514190674, -0.40063589811325073, 0.39641690254211426, -0.0778876468539238, 0.2057136595249176, 0.1064443290233612, -0.6366392970085144, -0.6347733736038208, -0.23503516614437103, 0.3407176434993744, 0.5976635813713074, -0.672238826751709, 0.6578887104988098, 0.06075553968548775, -0.24530932307243347, -0.31984075903892517, 0.25412338972091675, 0.3369884490966797, 0.3210926055908203, 0.5349047780036926, -0.44340869784355164, -0.6590415239334106, -1.1376478672027588, -0.13243651390075684, -0.36861664056777954, 0.12419834733009338, 0.461112380027771, 0.3379232883453369, -0.11251223832368851, 0.9548981785774231, -0.48913100361824036, -0.09596482664346695, -0.32020577788352966, -0.04224994033575058, 0.028615083545446396, 0.4849278926849365, 0.7259092926979065, -0.8428965210914612, -0.5392162799835205, -0.19177810847759247, -0.580470085144043, -0.40268775820732117, 0.06698329001665115, -0.1673501431941986, 0.4513285756111145, 0.3144855201244354, -0.2918902635574341, 0.4038531482219696, 0.5796116590499878, -0.2705576717853546, 0.38165488839149475, 0.0888105183839798, -0.03620244562625885, -1.0020322799682617, -0.13087831437587738, 0.45328280329704285, 0.03556174412369728, -0.5136205554008484, -0.14960289001464844, -0.30742377042770386, 0.18115919828414917, -0.32490935921669006, 0.7184996008872986, -0.36681005358695984, 0.3035791218280792, 0.24333526194095612, 0.3005360960960388, -0.011496401391923428, 0.3671361207962036, 0.21437563002109528, 0.4308256208896637, 0.5285085439682007, -0.5391281247138977, 0.23301459848880768, 0.24119842052459717, -0.16174253821372986, 0.20004747807979584, -0.5257333517074585, 0.1837242990732193, -0.20044182240962982, 0.2040090709924698, -0.6816294193267822, -0.23555535078048706, 0.5115567445755005, -0.551032304763794, 0.10814087092876434, -0.07892445474863052, -0.4311583638191223, -0.27935782074928284, -0.19615061581134796, 0.3379833698272705, 0.3811989426612854, -0.3060396611690521, 0.31409117579460144, 0.536151111125946, -0.13651816546916962, -0.6633261442184448, -1.0021543502807617, 0.16491514444351196, -0.17247022688388824, -0.4525110423564911, -0.04960722476243973, -0.15305127203464508, -0.7069817185401917, -0.14784149825572968, 0.0806904286146164, -0.1638021171092987, -0.07939962297677994, 0.11747393757104874, 0.1670004278421402, 0.019799092784523964, 0.28404179215431213, -0.12077923864126205, 0.11344398558139801, -0.04444452375173569, -0.2805894613265991, 0.5655897259712219, 0.0763617604970932, -0.23869535326957703, -0.1814209669828415, 0.595518946647644, 0.12100612372159958, -0.36818408966064453, 0.7332761883735657, 0.45407935976982117, -0.24011830985546112, -0.1652524769306183, -0.6774795055389404, -0.09821610897779465, -0.3795035481452942, 0.2530967891216278, -0.1667056828737259, -0.76099693775177, 0.490901380777359, 0.574108362197876, 0.14476290345191956, 0.625951886177063, 0.4715718924999237, 0.005464010406285524, 0.5868043303489685, 0.5982592105865479, -0.19110940396785736, 0.30832579731941223, -0.2957082688808441, 0.1726297289133072, -0.5038892030715942, -0.28696897625923157, -0.786803662776947, -0.11953511089086533, -0.7366987466812134, -0.5949970483779907, -0.10093031823635101, 0.05411162227392197, -0.13969866931438446, 0.41813337802886963, -0.6045835018157959, 0.19867092370986938, 0.4098823666572571, -0.03792589530348778, 0.1838725209236145, 0.12025482952594757, 0.01160483155399561, -0.10672882944345474, -0.5167726874351501, -0.6723963022232056, 1.136436104774475, 0.40502962470054626, 0.5097474455833435, 0.13218365609645844, 0.8636346459388733, 0.6414607167243958, 0.08933741599321365, -0.5261301398277283, 0.5663987398147583, -0.49462148547172546, -0.6278125047683716, -0.24897867441177368, -0.5305370688438416, -0.8824766874313354, -0.0062935189343988895, -0.11394856125116348, -0.9826711416244507, 0.6858341097831726, 0.21348322927951813, -0.0472109280526638, 0.11975456029176712, -0.7134089469909668, 0.5967093110084534, -0.2779831886291504, -0.09579509496688843, 0.14603526890277863, -0.6142153739929199, 0.11361179500818253, -0.2429921180009842, 0.4952007830142975, -0.1923774778842926, 0.006687580607831478, 0.8241496682167053, -0.3717171251773834, 1.0613155364990234, -0.19137690961360931, 0.027804458513855934, 0.3479786217212677, -0.08641574531793594, 0.4385165572166443, -0.03526964411139488, -0.2983391284942627, 0.36580345034599304, 0.08448010683059692, -0.4945521354675293, -0.3583398759365082, 0.4176918566226959, -0.7474695444107056, -0.4226497411727905, -0.3363812267780304, -0.6829555630683899, -0.018631896004080772, -0.1588786393404007, 0.1536862552165985, 0.63873291015625, -0.2263602316379547, 0.2293824553489685, 0.33087918162345886, -0.4509020745754242, 0.3608909547328949, 0.4919625222682953, -0.29456812143325806, -0.17525726556777954, 0.7622423768043518, 0.3856465816497803, 0.3382098972797394, 0.45436567068099976, 0.22751709818840027, -0.32754698395729065, -0.33605366945266724, -0.18318256735801697, 0.34782037138938904, -0.6011379957199097, 0.11856187134981155, -0.8033738136291504, -0.17670993506908417, -0.7195694446563721, -0.1581975817680359, -0.0019568181596696377, -0.7684751749038696, -0.06409693509340286, -0.24683725833892822, 0.5747538208961487, 0.6370579600334167, -0.379690945148468, 0.0715523362159729, -0.4279268980026245, 0.3181704580783844, 0.1780465841293335, -0.07274846732616425, -0.2056421935558319, -0.5033692121505737, -0.20121179521083832, 0.3028884828090668, 0.0027381363324820995, -0.8937284350395203, 0.4388493001461029, 0.09652874618768692, 0.6220911741256714, 0.12100984156131744, 0.355642706155777, 0.14353133738040924, -0.12503455579280853, 1.0206962823867798, -0.05606800317764282, -0.6248107552528381, 0.5210998058319092, -0.2522994875907898, 0.16923834383487701, 0.512218713760376, 0.467704176902771, -0.6847251057624817, -0.6433700323104858, -0.7159702777862549, -0.9921841621398926, 0.5796661376953125, 0.4158768951892853, 0.19219058752059937, -0.259556382894516, 0.29843583703041077, 0.00918495561927557, 0.13191011548042297, -0.7998864650726318, -0.7092524170875549, -0.2212275117635727, -0.2182060182094574, -0.3077220916748047, -0.19005218148231506, -0.3882843554019928, -0.4011555016040802, 0.6524202823638916, 0.032756876200437546, 0.14861637353897095, 0.3148902654647827, -0.030328528955578804, 0.10014133900403976, 0.2917288541793823, 0.4299613833427429, 0.7127763032913208, -0.2498655915260315, 0.29507988691329956, 0.16417458653450012, -0.5750609040260315, -0.08187401294708252, 0.436724454164505, -0.3195478916168213, 0.19073982536792755, 0.4348420202732086, 0.5616064667701721, -0.4126431345939636, -0.3747013509273529, 0.3582514524459839, 0.0952083095908165, -0.20434856414794922, -0.26669031381607056, -0.19633148610591888, -0.016402924433350563, 0.05587083101272583, 0.37394529581069946, 0.1190279945731163, 0.0012395327212288976, -0.5798519253730774, 0.41269588470458984, 0.194898322224617, -0.41250449419021606, -0.24918466806411743, 0.5342576503753662, 0.26077190041542053, -0.4631173312664032, 0.3525554835796356, -0.4721689820289612, -0.40451544523239136, 0.7337722778320312, 0.3220856785774231, 0.928472101688385, -0.08050459623336792, 0.5079352855682373, 0.4054492115974426, 0.5580844283103943, 0.09707603603601456, 0.19808697700500488, -0.009204194881021976, -0.9529817700386047, -0.28701379895210266, -0.56241774559021, -0.060464270412921906, 0.16933733224868774, -0.6360913515090942, 0.18707965314388275, -0.4205411970615387, -0.08766064792871475, 0.05691711604595184, -0.04817427322268486, -0.7074888944625854, 0.19043731689453125, 0.20496368408203125, 0.9015972018241882, -1.2247446775436401, 0.7173417210578918, 0.6219982504844666, -0.7776433825492859, -0.8873414993286133, 0.08620122820138931, 0.28977227210998535, -0.8113367557525635, 0.8158054351806641, -0.1490294188261032, 0.08324378728866577, -0.33093351125717163, -0.7189957499504089, -0.6182974576950073, 0.4964753985404968, 0.16801616549491882, -0.5914293527603149, 0.19071246683597565, 0.37414950132369995, 0.5836651921272278, -0.5194215178489685, 0.11350362747907639, 0.5680211186408997, 0.6076767444610596, 0.001235481002368033, -0.8969305753707886, 0.1498493254184723, -0.3078618049621582, -0.08553426712751389, -0.1376342922449112, -0.7336581349372864, 0.788006603717804, -0.017351416870951653, -0.14026100933551788, -0.24658091366291046, 0.44453614950180054, 0.08172444999217987, 0.17735277116298676, 0.4600425660610199, 0.2626657485961914, 0.7451527118682861, -0.15130575001239777, 1.034529685974121, -0.3305966556072235, 0.16569435596466064, 1.1420625448226929, -0.1038675308227539, 0.6460980176925659, 0.31901273131370544, -0.34689441323280334, 0.43738409876823425, 0.5706273317337036, -0.16674014925956726, 0.2134791910648346, 0.2520905137062073, -0.18274372816085815, -0.06596050411462784, -0.36829614639282227, -0.4864211678504944, 0.3774249851703644, 0.16858184337615967, -0.5217428207397461, 0.01275321189314127, -0.23531825840473175, 0.30451005697250366, 0.35528746247291565, 0.0792110487818718, 0.48544809222221375, 0.19063004851341248, -0.34509870409965515, 0.5665213465690613, -0.15916429460048676, 0.5123438239097595, -0.43212890625, -0.0665944442152977, -0.4587724804878235, -0.16201885044574738, -0.48778554797172546, -0.780150830745697, 0.29543954133987427, 0.04257963225245476, -0.4706314206123352, -0.1545889526605606, 0.24851180613040924, -0.5322344303131104, -0.6952673196792603, 0.4207496643066406, 0.5624006390571594, 0.5319579243659973, 0.07697945833206177, -0.7839430570602417, 0.13966986536979675, 0.3696601986885071, 0.10757872462272644, 0.10024619847536087, 0.3169376850128174, -0.2692447602748871, 0.5346681475639343, 0.38721346855163574, 0.3907638192176819, 0.02914697304368019, 0.48789116740226746, 0.752078652381897, -0.3665999174118042, -0.14920251071453094, -0.6223202347755432, 0.5735282897949219, -0.32357123494148254, -0.24559566378593445, 0.8598889112472534, 0.8385533690452576, 0.9527083039283752, 0.17338675260543823, 1.102803349494934, -0.37981051206588745, 0.6562681794166565, -0.3364758789539337, 0.4954838752746582, -0.45701169967651367, 0.25390613079071045, -0.33468255400657654, -1.044046401977539, -0.29271283745765686, 0.5008336305618286, -0.43139418959617615, 0.1603541076183319, 0.6510156989097595, 1.0179100036621094, 0.2910962402820587, -0.12103588134050369, 0.08421717584133148, 0.35895463824272156, 0.2680039703845978, 0.23331576585769653, 0.4907192587852478, -0.35972750186920166, 0.4786708652973175, -0.455807089805603, -0.3916325271129608, 0.128416508436203, -0.6236925721168518, -0.8275088667869568, -0.8285316824913025, -0.6398900747299194, -0.554672360420227, 0.2505291700363159, 0.9695338010787964, 0.5381038784980774, -1.0408403873443604, -0.4446181058883667, 0.30912071466445923, 0.03555089607834816, -0.15207228064537048, -0.2745656967163086, 0.3707801103591919, -0.07092354446649551, -0.6899992823600769, 0.1558336466550827, 0.11250564455986023, -0.011189321056008339, -0.21216969192028046, -0.1380196213722229, -0.4422621726989746, 0.053203023970127106, 0.5062408447265625, 0.6012542247772217, -0.7038346529006958, -0.3968121409416199, -0.051901835948228836, -0.13571226596832275, 0.06426458805799484, 0.5920552015304565, -0.43483152985572815, 0.5460591316223145, 0.3881904184818268, 0.2721996009349823, 0.46260395646095276, 0.14741364121437073, 0.7032484412193298, -0.9305517077445984, 0.3333131968975067, 0.17264966666698456, 0.3976822793483734, 0.5281498432159424, -0.35464122891426086, 0.6164250373840332, 0.4642544686794281, -0.4529404640197754, -0.5659632682800293, 0.1519777625799179, -1.0957369804382324, -0.11601809412240982, 1.5261421203613281, 0.03222333639860153, 0.11654400825500488, -0.6051010489463806, -0.2652377784252167, 0.19863048195838928, -0.6577750444412231, 0.5708832740783691, 0.6744816899299622, -0.08585768193006516, -0.1861274689435959, -0.5536168217658997, 0.6481600403785706, 0.13232184946537018, -0.6086052060127258, 0.17911557853221893, 0.49039226770401, 0.11852817982435226, 0.26530858874320984, 0.6777294278144836, -0.15781156718730927, -0.19413259625434875, -0.031908851116895676, 0.28200703859329224, 0.15639540553092957, 0.06902448832988739, -0.09098894894123077, -0.042982425540685654, -0.029191074892878532, -0.16325242817401886 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
paws
null
2023-06-01T14:59:56Z
7,088
18
paws
[ "task_categories:text-classification", "task_ids:semantic-similarity-classification", "task_ids:semantic-similarity-scoring", "task_ids:text-scoring", "task_ids:multi-input-text-classification", "annotations_creators:expert-generated", "annotations_creators:machine-generated", "language_creators:machine-generated", "multilinguality:monolingual", "size_categories:100K<n<1M", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:other", "paraphrase-identification", "arxiv:1904.01130", "region:us" ]
2023-06-01T14:59:56Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated - machine-generated language_creators: - machine-generated language: - en license: - other multilinguality: - monolingual size_categories: - 100K<n<1M - 10K<n<100K source_datasets: - original task_categories: - text-classification task_ids: - semantic-similarity-classification - semantic-similarity-scoring - text-scoring - multi-input-text-classification paperswithcode_id: paws pretty_name: 'PAWS: Paraphrase Adversaries from Word Scrambling' tags: - paraphrase-identification dataset_info: - config_name: labeled_final features: - name: id dtype: int32 - name: sentence1 dtype: string - name: sentence2 dtype: string - name: label dtype: class_label: names: '0': '0' '1': '1' splits: - name: train num_bytes: 12239978 num_examples: 49401 - name: test num_bytes: 1987802 num_examples: 8000 - name: validation num_bytes: 1975870 num_examples: 8000 download_size: 4687157 dataset_size: 16203650 - config_name: labeled_swap features: - name: id dtype: int32 - name: sentence1 dtype: string - name: sentence2 dtype: string - name: label dtype: class_label: names: '0': '0' '1': '1' splits: - name: train num_bytes: 7963651 num_examples: 30397 download_size: 2257283 dataset_size: 7963651 - config_name: unlabeled_final features: - name: id dtype: int32 - name: sentence1 dtype: string - name: sentence2 dtype: string - name: label dtype: class_label: names: '0': '0' '1': '1' splits: - name: train num_bytes: 157806996 num_examples: 645652 - name: validation num_bytes: 2442173 num_examples: 10000 download_size: 47393331 dataset_size: 160249169 config_names: - labeled_final - labeled_swap - unlabeled_final --- # Dataset Card for PAWS: Paraphrase Adversaries from Word Scrambling ## 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:** [PAWS](https://github.com/google-research-datasets/paws) - **Repository:** [PAWS](https://github.com/google-research-datasets/paws) - **Paper:** [PAWS: Paraphrase Adversaries from Word Scrambling](https://arxiv.org/abs/1904.01130) - **Point of Contact:** [Yuan Zhang](zhangyua@google.com) ### Dataset Summary PAWS: Paraphrase Adversaries from Word Scrambling This dataset contains 108,463 human-labeled and 656k noisily labeled pairs that feature the importance of modeling structure, context, and word order information for the problem of paraphrase identification. The dataset has two subsets, one based on Wikipedia and the other one based on the Quora Question Pairs (QQP) dataset. For further details, see the accompanying paper: PAWS: Paraphrase Adversaries from Word Scrambling (https://arxiv.org/abs/1904.01130) PAWS-QQP is not available due to license of QQP. It must be reconstructed by downloading the original data and then running our scripts to produce the data and attach the labels. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages The text in the dataset is in English. ## Dataset Structure ### Data Instances Below are two examples from the dataset: | | Sentence 1 | Sentence 2 | Label | | :-- | :---------------------------- | :---------------------------- | :---- | | (1) | Although interchangeable, the body pieces on the 2 cars are not similar. | Although similar, the body parts are not interchangeable on the 2 cars. | 0 | | (2) | Katz was born in Sweden in 1947 and moved to New York City at the age of 1. | Katz was born in 1947 in Sweden and moved to New York at the age of one. | 1 | The first pair has different semantic meaning while the second pair is a paraphrase. State-of-the-art models trained on existing datasets have dismal performance on PAWS (<40% accuracy); however, including PAWS training data for these models improves their accuracy to 85% while maintaining performance on existing datasets such as the [Quora Question Pairs](https://data.quora.com/First-Quora-Dataset-Release-Question-Pairs). ### Data Fields This corpus contains pairs generated from Wikipedia pages, and can be downloaded here: * **PAWS-Wiki Labeled (Final)**: containing pairs that are generated from both word swapping and back translation methods. All pairs have human judgements on both paraphrasing and fluency and they are split into Train/Dev/Test sections. * **PAWS-Wiki Labeled (Swap-only)**: containing pairs that have no back translation counterparts and therefore they are not included in the first set. Nevertheless, they are high-quality pairs with human judgements on both paraphrasing and fluency, and they can be included as an auxiliary training set. * **PAWS-Wiki Unlabeled (Final)**: Pairs in this set have noisy labels without human judgments and can also be used as an auxiliary training set. They are generated from both word swapping and back translation methods. All files are in the tsv format with four columns: Column Name | Data :------------ | :-------------------------- id | A unique id for each pair sentence1 | The first sentence sentence2 | The second sentence (noisy_)label | (Noisy) label for each pair Each label has two possible values: `0` indicates the pair has different meaning, while `1` indicates the pair is a paraphrase. ### Data Splits The number of examples and the proportion of paraphrase (Yes%) pairs are shown below: Data | Train | Dev | Test | Yes% :------------------ | ------: | -----: | ----: | ----: Labeled (Final) | 49,401 | 8,000 | 8,000 | 44.2% Labeled (Swap-only) | 30,397 | -- | -- | 9.6% Unlabeled (Final) | 645,652 | 10,000 | -- | 50.0% ## Dataset Creation ### Curation Rationale Existing paraphrase identification datasets lack sentence pairs that have high lexical overlap without being paraphrases. Models trained on such data fail to distinguish pairs like *flights from New York to Florida* and *flights from Florida to New York*. ### Source Data #### Initial Data Collection and Normalization Their automatic generation method is based on two ideas. The first swaps words to generate a sentence pair with the same BOW, controlled by a language model. The second uses back translation to generate paraphrases with high BOW overlap but different word order. These two strategies generate high-quality, diverse PAWS pairs, balanced evenly between paraphrases and non-paraphrases. #### Who are the source language producers? Mentioned above. ### Annotations #### Annotation process Sentence pairs are presented to five annotators, each of which gives a binary judgment as to whether they are paraphrases or not. They chose binary judgments to make dataset have the same label schema as the QQP corpus. Overall, human agreement is high on both Quora (92.0%) and Wikipedia (94.7%) and each label only takes about 24 seconds. As such, answers are usually straight-forward to human raters. #### 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 List the people involved in collecting the dataset and their affiliation(s). If funding information is known, include it here. ### Licensing Information The dataset may be freely used for any purpose, although acknowledgement of Google LLC ("Google") as the data source would be appreciated. The dataset is provided "AS IS" without any warranty, express or implied. Google disclaims all liability for any damages, direct or indirect, resulting from the use of the dataset. ### Citation Information ``` @InProceedings{paws2019naacl, title = {{PAWS: Paraphrase Adversaries from Word Scrambling}}, author = {Zhang, Yuan and Baldridge, Jason and He, Luheng}, booktitle = {Proc. of NAACL}, year = {2019} } ``` ### Contributions Thanks to [@bhavitvyamalik](https://github.com/bhavitvyamalik) for adding this dataset.
[ -0.20821945369243622, -0.6607036590576172, 0.42052802443504333, 0.3831900358200073, -0.4903211295604706, 0.023604124784469604, 0.06732126325368881, -0.27586057782173157, 0.5570546984672546, 0.6434294581413269, -0.32519111037254333, -0.6374858021736145, -0.5365100502967834, 0.21492137014865875, -0.4424026906490326, 1.1006383895874023, 0.08294658362865448, -0.12580391764640808, -0.2221466451883316, -0.4483908414840698, -0.020794205367565155, -0.634078860282898, -0.40887632966041565, -0.08466482907533646, 0.18588009476661682, 0.47361642122268677, 1.0280336141586304, 0.8297864198684692, 0.3477587103843689, 0.2562621831893921, -0.19983047246932983, -0.07404628396034241, -0.2370586395263672, -0.14461325109004974, -0.14406709372997284, -0.33499714732170105, -0.3102514147758484, 0.09704642742872238, 0.549965500831604, 0.6577363014221191, -0.3136790990829468, 0.18700776994228363, 0.1414404809474945, 0.6920272707939148, -0.4676094055175781, 0.18929043412208557, -0.7678991556167603, -0.10754964500665665, -0.3030692934989929, -0.2276788204908371, -0.09246348589658737, -0.5082818865776062, -0.12121026962995529, -0.9356305599212646, 0.42215728759765625, 0.11658903956413269, 1.060034990310669, -0.1345285028219223, -0.21094408631324768, -0.4753652811050415, -0.13648860156536102, 0.6627477407455444, -0.8242283463478088, 0.13306115567684174, 0.7015210390090942, -0.09331167489290237, -0.1465388834476471, -1.001372218132019, -0.776495099067688, 0.038483019918203354, -0.21302616596221924, 0.058056507259607315, 0.04980579391121864, -0.11119931936264038, 0.30929598212242126, 0.5235554575920105, -0.6043193936347961, -0.591597318649292, -0.4563967287540436, -0.30090585350990295, 0.6182088851928711, 0.3105120062828064, 0.4837684631347656, -0.3722273111343384, -0.3717365264892578, -0.4845825433731079, -0.2632960379123688, 0.3648544251918793, 0.32452648878097534, 0.18687351047992706, -0.2126748412847519, 0.5807746648788452, -0.44984549283981323, 0.26884952187538147, 0.1514647901058197, -0.07475195080041885, 0.8163979649543762, -0.6443690657615662, -0.02852359414100647, -0.2763904929161072, 1.0866072177886963, 0.5569263100624084, 0.041294071823358536, -0.3508913218975067, -0.08440365642309189, -0.18471089005470276, -0.08719120174646378, -0.45426279306411743, -0.4715431332588196, 0.08423323184251785, -0.593447744846344, -0.3943272829055786, 0.17379099130630493, -0.9807969927787781, -0.35167375206947327, -0.14120763540267944, 0.5667866468429565, -0.6763649582862854, -0.10550576448440552, 0.5777344703674316, -0.7677256464958191, 0.52483069896698, -0.13478533923625946, -0.7944690585136414, 0.5449727773666382, 0.6259010434150696, 0.8379353284835815, -0.0007349601364694536, -0.780514121055603, -0.3873916566371918, 0.1229613795876503, -0.32369446754455566, 0.47315606474876404, -0.6139942407608032, -0.4056400656700134, -0.1607574224472046, 0.3964783549308777, -0.24607932567596436, -0.4302351772785187, 0.995794415473938, -0.31652265787124634, 0.30704420804977417, -0.7673386335372925, -0.41429147124290466, -0.19120492041110992, 0.13197074830532074, -0.5996821522712708, 1.393011212348938, -0.1068793460726738, -1.1295313835144043, 0.191167950630188, -0.27974656224250793, -0.4986742436885834, 0.07779782265424728, 0.04238336160778999, -0.31752705574035645, -0.10219182819128036, 0.4947129487991333, 0.503094494342804, -0.4359121024608612, 0.2859363555908203, -0.24576719105243683, -0.3330662250518799, 0.278903990983963, -0.07463891059160233, 1.1343274116516113, -0.046439845114946365, -0.3109842836856842, -0.32122543454170227, -0.9107305407524109, 0.12407057732343674, 0.4017060399055481, -0.40423598885536194, -0.5356597900390625, -0.013653275556862354, 0.14797379076480865, 0.5108146071434021, 0.41495636105537415, -0.5230240225791931, -0.05518905073404312, -0.3615957498550415, 0.6186853051185608, 0.36282458901405334, 0.32263749837875366, 0.40719905495643616, -0.7263171076774597, 0.6075943112373352, -0.08928173035383224, 0.39264819025993347, 0.098619244992733, -0.6224699020385742, -0.6767634749412537, 0.08931300044059753, 0.13146062195301056, 0.6711437106132507, -0.9011643528938293, 0.5139046907424927, -0.45302098989486694, -0.6683363914489746, -0.6672338247299194, 0.17137987911701202, 0.6577304005622864, 0.4791034758090973, 0.7707751989364624, -0.1410483568906784, -0.29208293557167053, -0.8777914047241211, -0.3812783658504486, -0.2693187892436981, 0.05123114213347435, 0.12290532886981964, 0.6424552798271179, 0.3420912027359009, 0.7057152986526489, -0.5396747589111328, 0.0470670685172081, -0.3553917407989502, 0.1300303041934967, -0.08257728815078735, 0.4864216446876526, 0.584204912185669, -0.9131395220756531, -0.6515337824821472, -0.4368145763874054, -0.7073313593864441, 0.007532766554504633, -0.22464479506015778, -0.39309659600257874, -0.22223494946956635, 0.6328874230384827, -0.7990862131118774, 0.16475071012973785, 0.2777961194515228, -0.3217150866985321, 0.6095024347305298, -0.19939880073070526, 0.1898166686296463, -1.3514209985733032, 0.33601582050323486, -0.13671064376831055, 0.22148637473583221, -0.5283228754997253, 0.019249843433499336, 0.10770620405673981, -0.040400974452495575, -0.37966325879096985, 0.39063701033592224, -0.4841420650482178, 0.15924285352230072, 0.1405305415391922, 0.25067606568336487, 0.2549666166305542, 0.6126342415809631, 0.08975215256214142, 0.6823822855949402, 0.5984700918197632, -0.5642699599266052, 0.19330734014511108, 0.7798321843147278, -0.4340249300003052, 0.3443951904773712, -0.782076358795166, 0.21650676429271698, -0.02149812877178192, 0.33606240153312683, -0.9267536401748657, -0.2765321135520935, 0.5394524335861206, -0.7004454135894775, -0.11226586997509003, 0.1913396269083023, -0.7113555669784546, -0.2886725068092346, -0.9210138916969299, 0.03425571322441101, 0.5197814106941223, -0.33290064334869385, 0.18263863027095795, 0.48419585824012756, -0.19687919318675995, -0.6959578990936279, -0.6564096212387085, 0.3701191544532776, -0.4568031430244446, -0.4003802537918091, 0.4616093635559082, -0.2043248564004898, 0.018582211807370186, -0.05253639444708824, 0.029621705412864685, -0.21083413064479828, -0.12825746834278107, 0.053521499037742615, -0.03029561974108219, -0.10551134496927261, 0.18940718472003937, -0.07960058003664017, 0.1592588722705841, 0.17273904383182526, 0.10076004266738892, 0.38451406359672546, -0.13470116257667542, 0.08980666846036911, -0.40329277515411377, 0.43350377678871155, 0.7710413336753845, -0.24378995597362518, 0.8182403445243835, 0.6839012503623962, -0.1529974788427353, 0.18495282530784607, -0.5426383018493652, -0.0796201154589653, -0.4871746897697449, 0.2968641519546509, -0.454086035490036, -0.2957710921764374, 0.6937422752380371, 0.5281247496604919, 0.07160106301307678, 0.4992293119430542, 0.1593334674835205, -0.012544595636427402, 0.8214083313941956, 0.2863460183143616, -0.19799022376537323, 0.2956068217754364, -0.20174972712993622, -0.12280190736055374, -0.9079261422157288, -0.38652071356773376, -0.5348432064056396, -0.2786344289779663, -0.5971409678459167, -0.48098820447921753, -0.024155478924512863, 0.2334623634815216, -0.004167990293353796, 0.6148279905319214, -0.4588908851146698, 0.44953158497810364, 0.8380332589149475, 0.3655436038970947, 0.12194634974002838, 0.041916996240615845, -0.15945038199424744, -0.14075183868408203, -0.7370951771736145, -0.5484445095062256, 1.2387781143188477, 0.2057500183582306, 0.3365538418292999, -0.1497272551059723, 0.7218788862228394, 0.2453860342502594, -0.41584324836730957, -0.5650084018707275, 1.038309931755066, -0.11403187364339828, -0.5636615753173828, -0.3610965311527252, -0.08830627053976059, -0.9761054515838623, 0.2865193486213684, -0.28349071741104126, -0.6484804153442383, 0.24770106375217438, -0.009058807976543903, -0.22990307211875916, 0.21046561002731323, -0.5219359993934631, 0.875368595123291, -0.03459017723798752, -0.25336188077926636, 0.0034836516715586185, -1.2610113620758057, 0.20895640552043915, 0.018132520839571953, 0.164419487118721, -0.1638236939907074, -0.29124516248703003, 1.274707317352295, -0.5762765407562256, 0.673794150352478, -0.17744280397891998, 0.28987929224967957, 0.45629987120628357, -0.2160281091928482, 0.6365103721618652, -0.19804349541664124, -0.1352492868900299, -0.023479647934436798, 0.2720220983028412, -0.5522176623344421, -0.4156980514526367, 0.42309805750846863, -0.6006035804748535, -0.500544011592865, -0.3269280791282654, -0.5036159157752991, -0.3692755103111267, 0.12094877660274506, 0.5236918926239014, 0.30254143476486206, 0.061182983219623566, 0.5491317510604858, 0.4483785033226013, -0.2943900227546692, 0.2965976297855377, 0.5775721669197083, 0.3039757311344147, -0.7357097268104553, 1.116363525390625, 0.060126420110464096, 0.1312926858663559, 0.44697779417037964, 0.332376629114151, -0.3925117254257202, -0.49150899052619934, -0.11631214618682861, 0.6088436841964722, -0.8598700761795044, 0.09822499752044678, -0.9282510280609131, -0.11276710033416748, -0.5874321460723877, -0.04196059703826904, -0.05138378217816353, -0.6427351236343384, -0.08159492164850235, -0.11165235936641693, 0.4176260232925415, 0.41517937183380127, -0.020060116425156593, 0.3172515630722046, -0.7601655721664429, 0.46759462356567383, 0.19838780164718628, -0.15754833817481995, -0.16689063608646393, -0.6882027983665466, -0.3169090151786804, 0.028013044968247414, -0.4104006588459015, -1.0727317333221436, 0.3656769394874573, 0.4385729730129242, 0.7309294939041138, 0.09393438696861267, 0.4359261393547058, 0.7968611121177673, -0.3122164309024811, 1.1128531694412231, 0.07740393280982971, -0.9066687226295471, 0.5091895461082458, -0.37802574038505554, 0.1648843139410019, 0.8862224817276001, 0.48859429359436035, -0.5699419379234314, -0.7192603349685669, -0.9871566891670227, -1.1557329893112183, 0.9000428318977356, 0.385079950094223, 0.2691580057144165, -0.2760118246078491, 0.39186516404151917, 0.0675852820277214, 0.29253196716308594, -0.8641825318336487, -0.40028563141822815, -0.12311114370822906, -0.3021007776260376, -0.1723170131444931, -0.2077949196100235, -0.04687119647860527, -0.4599992036819458, 0.7698869705200195, 0.1363561600446701, 0.11941338330507278, 0.22670705616474152, -0.22432826459407806, 0.2135874330997467, 0.19085952639579773, 0.35347625613212585, 0.4651467204093933, -0.167174831032753, 0.018655698746442795, 0.2347966730594635, -0.8407735824584961, 0.0215988140553236, 0.048043884336948395, -0.10085494816303253, 0.20421425998210907, 0.4552743136882782, 0.7368923425674438, 0.3660752475261688, -0.6945340037345886, 0.7083240151405334, 0.02788349986076355, -0.5086920261383057, 0.01377202570438385, -0.12109209597110748, 0.15846659243106842, 0.27747663855552673, 0.22642627358436584, -0.11617707461118698, 0.39761197566986084, -0.4074448347091675, 0.19975411891937256, 0.276763379573822, 0.005942143965512514, -0.5264093279838562, 0.7349905371665955, 0.05174567922949791, -0.26022592186927795, 0.48721078038215637, -0.2698277533054352, -0.5501266121864319, 0.6507570743560791, 0.3919551372528076, 0.9132289290428162, -0.08851868659257889, 0.43712934851646423, 0.5460096001625061, 0.40116629004478455, -0.4321076571941376, 0.3260127604007721, -0.3938063085079193, -0.5432864427566528, 0.15470345318317413, -0.7331609725952148, -0.2581307888031006, 0.6260536909103394, -0.9919182062149048, 0.3244793713092804, -0.18741120398044586, -0.06981827318668365, 0.1310993731021881, -0.1453634649515152, -0.3521539270877838, 0.2113836407661438, -0.06945042312145233, 0.7825109958648682, -1.2044914960861206, 0.8373129367828369, 0.9299746751785278, -0.6206036806106567, -0.6984995603561401, 0.6229487657546997, -0.36872443556785583, -0.8796695470809937, 0.45332324504852295, 0.09460362046957016, 0.08183782547712326, -0.00007043228833936155, -0.4326208531856537, -0.7690398693084717, 1.0837349891662598, 0.25521549582481384, -0.05832425877451897, -0.3894565999507904, 0.2633412182331085, 0.6189059019088745, 0.08613714575767517, -0.15316875278949738, 0.6389787197113037, 0.18765884637832642, 0.12394984811544418, -0.8382356762886047, 0.3118813633918762, -0.4548174738883972, 0.07215121388435364, 0.021151529625058174, -0.7250229716300964, 0.8942715525627136, -0.07528810948133469, -0.17699243128299713, -0.02155272848904133, 0.37867215275764465, 0.24289369583129883, 0.3857942521572113, 0.47034916281700134, 0.5998538732528687, 0.5967303514480591, 0.3167994022369385, 0.7813557386398315, -0.6242545247077942, 0.32991358637809753, 1.1404720544815063, 0.1485428661108017, 1.117136001586914, 0.6588883996009827, -0.5163329243659973, 0.2365715503692627, 0.5124729871749878, 0.0721038207411766, 0.7789125442504883, -0.1576983630657196, -0.04765172675251961, -0.2375965416431427, 0.22429431974887848, -0.41590937972068787, 0.28046122193336487, 0.43807166814804077, -0.559262216091156, -0.09770447015762329, 0.009317143820226192, 0.11334322392940521, 0.023942140862345695, -0.02228469029068947, 0.7134193181991577, -0.038170456886291504, -0.7660801410675049, 0.808805525302887, -0.07418951392173767, 0.578277051448822, -0.5252241492271423, 0.18223729729652405, -0.3141784965991974, -0.06888207793235779, -0.1273331642150879, -1.070413589477539, 0.4138626754283905, -0.17981387674808502, -0.1561834216117859, -0.11922065913677216, 0.4682786166667938, -0.5499873161315918, -0.3815274238586426, 0.305724173784256, 0.33181869983673096, 0.45096784830093384, -0.1303747296333313, -1.1953338384628296, -0.26309460401535034, 0.14689159393310547, -0.40337225794792175, 0.29826870560646057, 0.551593542098999, -0.01010031346231699, 0.5647308230400085, 0.41781073808670044, 0.005985729396343231, 0.2943781614303589, -0.3077711760997772, 0.8139087557792664, -0.7420733571052551, -0.6796771287918091, -0.7745468616485596, 0.34559929370880127, -0.3297499418258667, -0.4761386215686798, 1.0638560056686401, 0.8374904990196228, 0.5665714144706726, -0.1669798195362091, 0.853131890296936, -0.26396051049232483, 0.6589046120643616, -0.5131275653839111, 0.5283058881759644, -0.729228675365448, 0.032269299030303955, -0.42595452070236206, -0.5487991571426392, 0.033692073076963425, 0.5097943544387817, -0.326729953289032, -0.2839663624763489, 0.8733805418014526, 0.963490903377533, -0.11027878522872925, -0.031746406108140945, 0.1725897639989853, 0.02287343516945839, -0.009631684981286526, 0.5830822587013245, 0.47401538491249084, -0.9731961488723755, 1.110825538635254, -0.6294534206390381, 0.04022190719842911, -0.13620759546756744, -0.5008675456047058, -0.8444344997406006, -1.0940827131271362, -0.6043367981910706, -0.6046895980834961, 0.2236114889383316, 0.5773681402206421, 0.18815438449382782, -0.6990882754325867, -0.11916480958461761, -0.32536351680755615, -0.1600930541753769, -0.31354960799217224, -0.28830617666244507, 0.6011475920677185, -0.3423006236553192, -0.6294437050819397, 0.18006370961666107, -0.026958642527461052, 0.010955484583973885, 0.337195485830307, -0.1338854730129242, -0.47718456387519836, 0.22136986255645752, 0.31843462586402893, 0.5059382319450378, -0.7357482314109802, 0.025876447558403015, 0.19708465039730072, -0.34072908759117126, 0.2072809487581253, 0.41068246960639954, -0.46867337822914124, 0.3194115459918976, 0.6687703132629395, 0.3842247426509857, 0.4041351079940796, 0.3374158442020416, 0.21002869307994843, -0.6489241123199463, 0.21675844490528107, 0.11699748039245605, 0.22365833818912506, 0.4424968659877777, -0.09895743429660797, 0.3718307316303253, 0.6149517297744751, -0.5470030903816223, -0.883685827255249, -0.2707931101322174, -1.0411620140075684, -0.15483038127422333, 1.4448598623275757, -0.27458488941192627, -0.17740397155284882, -0.33015456795692444, -0.29252803325653076, 0.27469709515571594, -0.4000481367111206, 0.7589177489280701, 1.010694980621338, 0.06601254642009735, 0.11381449550390244, -0.645521879196167, 0.6920045614242554, 0.4345116913318634, -0.6712489128112793, 0.1654830127954483, 0.186555415391922, 0.6033053994178772, 0.11231312155723572, 0.8503181338310242, -0.1515856832265854, 0.23323751986026764, 0.30741801857948303, 0.10101720690727234, 0.12996333837509155, 0.15751269459724426, -0.27015239000320435, 0.13593503832817078, -0.009636089205741882, -0.749553382396698 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mteb/biosses-sts
mteb
2022-09-27T19:13:38Z
7,044
0
null
[ "language:en", "region:us" ]
2022-09-27T19:13:38Z
2022-04-19T14:47:25.000Z
2022-04-19T14:47:25
--- 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
bcui19/chat-v2-anthropic-helpfulness
bcui19
2023-06-26T23:22:50Z
7,043
0
null
[ "license:apache-2.0", "region:us" ]
2023-06-26T23:22:50Z
2023-06-26T22:57:58.000Z
2023-06-26T22:57:58
--- license: apache-2.0 dataset_info: features: - name: prompt dtype: string - name: response dtype: string - name: source dtype: string splits: - name: train num_bytes: 162490682.0 num_examples: 155270 - name: test num_bytes: 8773391.0 num_examples: 8336 download_size: 82339171 dataset_size: 171264073.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
clips/mfaq
clips
2022-10-20T11:32:50Z
7,027
26
null
[ "task_categories:question-answering", "task_ids:multiple-choice-qa", "annotations_creators:no-annotation", "language_creators:other", "multilinguality:multilingual", "size_categories:unknown", "source_datasets:original", "language:cs", "language:da", "language:de", "language:en", "language:es", "language:fi", "language:fr", "language:he", "language:hr", "language:hu", "language:id", "language:it", "language:nl", "language:no", "language:pl", "language:pt", "language:ro", "language:ru", "language:sv", "language:tr", "language:vi", "license:cc0-1.0", "arxiv:2109.12870", "region:us" ]
2022-10-20T11:32:50Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - no-annotation language_creators: - other language: - cs - da - de - en - es - fi - fr - he - hr - hu - id - it - nl - 'no' - pl - pt - ro - ru - sv - tr - vi license: - cc0-1.0 multilinguality: - multilingual pretty_name: MFAQ - a Multilingual FAQ Dataset size_categories: - unknown source_datasets: - original task_categories: - question-answering task_ids: - multiple-choice-qa --- # MFAQ 🚨 See [MQA](https://huggingface.co/datasets/clips/mqa) or [MFAQ Light](maximedb/mfaq_light) for an updated version of the dataset. MFAQ is a multilingual corpus of *Frequently Asked Questions* parsed from the [Common Crawl](https://commoncrawl.org/). ``` from datasets import load_dataset load_dataset("clips/mfaq", "en") { "qa_pairs": [ { "question": "Do I need a rental Car in Cork?", "answer": "If you plan on travelling outside of Cork City, for instance to Kinsale [...]" }, ... ] } ``` ## Languages We collected around 6M pairs of questions and answers in 21 different languages. To download a language specific subset you need to specify the language key as configuration. See below for an example. ``` load_dataset("clips/mfaq", "en") # replace "en" by any language listed below ``` | Language | Key | Pairs | Pages | |------------|-----|-----------|-----------| | All | all | 6,346,693 | 1,035,649 | | English | en | 3,719,484 | 608,796 | | German | de | 829,098 | 111,618 | | Spanish | es | 482,818 | 75,489 | | French | fr | 351,458 | 56,317 | | Italian | it | 155,296 | 24,562 | | Dutch | nl | 150,819 | 32,574 | | Portuguese | pt | 138,778 | 26,169 | | Turkish | tr | 102,373 | 19,002 | | Russian | ru | 91,771 | 22,643 | | Polish | pl | 65,182 | 10,695 | | Indonesian | id | 45,839 | 7,910 | | Norwegian | no | 37,711 | 5,143 | | Swedish | sv | 37,003 | 5,270 | | Danish | da | 32,655 | 5,279 | | Vietnamese | vi | 27,157 | 5,261 | | Finnish | fi | 20,485 | 2,795 | | Romanian | ro | 17,066 | 3,554 | | Czech | cs | 16,675 | 2,568 | | Hebrew | he | 11,212 | 1,921 | | Hungarian | hu | 8,598 | 1,264 | | Croatian | hr | 5,215 | 819 | ## Data Fields #### Nested (per page - default) The data is organized by page. Each page contains a list of questions and answers. - **id** - **language** - **num_pairs**: the number of FAQs on the page - **domain**: source web domain of the FAQs - **qa_pairs**: a list of questions and answers - **question** - **answer** - **language** #### Flattened The data is organized by pair (i.e. pages are flattened). You can access the flat version of any language by appending `_flat` to the configuration (e.g. `en_flat`). The data will be returned pair-by-pair instead of page-by-page. - **domain_id** - **pair_id** - **language** - **domain**: source web domain of the FAQs - **question** - **answer** ## Source Data This section was adapted from the source data description of [OSCAR](https://huggingface.co/datasets/oscar#source-data) Common Crawl is a non-profit foundation which produces and maintains an open repository of web crawled data that is both accessible and analysable. Common Crawl's complete web archive consists of petabytes of data collected over 8 years of web crawling. The repository contains raw web page HTML data (WARC files), metdata extracts (WAT files) and plain text extracts (WET files). The organisation's crawlers has always respected nofollow and robots.txt policies. To construct MFAQ, the WARC files of Common Crawl were used. We looked for `FAQPage` markup in the HTML and subsequently parsed the `FAQItem` from the page. ## People This model was developed by [Maxime De Bruyn](https://www.linkedin.com/in/maximedebruyn/), Ehsan Lotfi, Jeska Buhmann and Walter Daelemans. ## Licensing Information ``` These data are released under this licensing scheme. We do not own any of the text from which these data has been extracted. We license the actual packaging of these data under the Creative Commons CC0 license ("no rights reserved") http://creativecommons.org/publicdomain/zero/1.0/ 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. We will comply to legitimate requests by removing the affected sources from the next release of the corpus. ``` ## Citation information ``` @misc{debruyn2021mfaq, title={MFAQ: a Multilingual FAQ Dataset}, author={Maxime {De Bruyn} and Ehsan Lotfi and Jeska Buhmann and Walter Daelemans}, year={2021}, eprint={2109.12870}, archivePrefix={arXiv}, primaryClass={cs.CL} } ```
[ -0.6412535905838013, -0.6600787043571472, 0.14822803437709808, 0.05604183301329613, -0.12758013606071472, 0.008713321760296822, 0.1890910118818283, -0.2535773515701294, 0.34550896286964417, 0.42066389322280884, -0.6379606127738953, -0.7666378617286682, -0.3136698603630066, 0.38199689984321594, -0.4987013041973114, 0.9489607810974121, 0.00905862357467413, -0.017696574330329895, -0.37081974744796753, -0.46305328607559204, 0.21028797328472137, -0.4966561198234558, -0.43513360619544983, 0.1660057157278061, 0.40632864832878113, 0.4120883345603943, 0.9377670884132385, 0.5325992703437805, 0.3272481858730316, 0.2712429463863373, 0.03853883594274521, 0.24813666939735413, -0.3139379620552063, -0.26493483781814575, -0.10212288051843643, -0.2951628565788269, -0.4610728919506073, 0.2366366982460022, 0.4814017415046692, 0.7601878046989441, -0.0158776193857193, 0.32015398144721985, 0.01711897924542427, 0.9984202980995178, -0.43421509861946106, -0.04640038311481476, -0.3763432204723358, -0.11811419576406479, -0.033453553915023804, -0.10947921127080917, 0.06251216679811478, -0.3435860574245453, -0.05273853987455368, -0.671608030796051, 0.41637375950813293, 0.08814448118209839, 1.1626884937286377, 0.05359967425465584, -0.6277053952217102, -0.2596896290779114, -0.2992032468318939, 0.7637754678726196, -0.5673292279243469, 0.5718011856079102, 0.7284868359565735, 0.09034886211156845, -0.28341710567474365, -0.509645402431488, -0.9616511464118958, 0.1851412057876587, -0.18444187939167023, 0.1692410409450531, -0.45200517773628235, -0.4229015111923218, 0.1587272733449936, 0.5574942827224731, -0.8897621035575867, -0.42745116353034973, -0.67185378074646, -0.3181222677230835, 0.9622232913970947, 0.1622360497713089, 0.3739047050476074, -0.36500558257102966, -0.5003975033760071, -0.13073720037937164, -0.576453685760498, 0.370801717042923, 0.541161298751831, 0.0537576787173748, -0.48116955161094666, 0.5468500852584839, -0.5768847465515137, 0.642264187335968, 0.26426976919174194, -0.12376117706298828, 0.5950336456298828, -0.7122907638549805, 0.02584586665034294, -0.5674384236335754, 0.9574779868125916, 0.7222490906715393, 0.15485869348049164, -0.23109865188598633, -0.04780450835824013, -0.41432425379753113, -0.027751224115490913, -0.49494096636772156, -0.006159412674605846, 0.7213382720947266, -0.48156386613845825, -0.18056577444076538, 0.27470576763153076, -0.9711793065071106, -0.18171362578868866, -0.08243102580308914, 0.3458499610424042, -0.32567477226257324, -0.37745964527130127, 0.24046586453914642, -0.3105984330177307, 0.5813030004501343, 0.222175732254982, -0.5437734127044678, 0.29834720492362976, 0.42412975430488586, 0.8583136200904846, -0.2621456980705261, -0.3514570891857147, -0.34006267786026, 0.04133813828229904, -0.06719707697629929, 0.743386447429657, -0.3568679094314575, -0.2577182650566101, 0.14523696899414062, 0.5090480446815491, -0.17719756066799164, -0.5766878724098206, 0.4954088032245636, -0.6753230094909668, 0.36133596301078796, -0.25682827830314636, -0.25063127279281616, -0.3517228364944458, 0.3369481563568115, -0.9258981347084045, 1.2285854816436768, 0.4994742274284363, -0.8846787810325623, 0.14221219718456268, -0.500052809715271, -0.30148983001708984, -0.1015915721654892, -0.09920366108417511, -0.20029085874557495, -0.6007311344146729, 0.3589929938316345, 0.6378518342971802, -0.40473249554634094, 0.12566788494586945, -0.20964482426643372, -0.23197908699512482, 0.36538732051849365, -0.15107335150241852, 1.326743483543396, 0.41210034489631653, -0.2247978299856186, -0.3150925934314728, -1.0454901456832886, -0.1531134694814682, 0.32831934094429016, -0.7478783130645752, -0.1512502133846283, -0.2559252679347992, 0.02835792861878872, 0.5615410804748535, 0.42991945147514343, -0.4815872013568878, 0.1904277801513672, -0.43541795015335083, 0.30283820629119873, 0.4946073293685913, 0.26839450001716614, 0.4667356610298157, -0.911320149898529, 0.7435430884361267, 0.1722421795129776, 0.13086362183094025, 0.13715305924415588, -0.4903412163257599, -0.7391137480735779, -0.1873057633638382, 0.14178644120693207, 0.6206598877906799, -0.8561525940895081, 0.35817086696624756, -0.2976660132408142, -0.6144022345542908, -0.7512615919113159, 0.2469739317893982, 0.26017823815345764, 0.4134950637817383, 0.49534088373184204, -0.04845703765749931, -0.3436770439147949, -0.8506807088851929, -0.17242826521396637, -0.08644761890172958, -0.029306523501873016, 0.5366515517234802, 0.8130117058753967, -0.17140629887580872, 0.9347714781761169, -0.683926522731781, -0.14224936068058014, -0.23255407810211182, -0.10197354108095169, 0.40513747930526733, 0.5638338923454285, 0.8774358034133911, -1.2742066383361816, -0.7314794063568115, -0.3324751555919647, -0.4548906683921814, -0.06568006426095963, -0.07744983583688736, -0.4743771553039551, 0.4705461859703064, 0.23761796951293945, -0.6717182397842407, 0.3981122076511383, 0.4855283200740814, -0.4951478838920593, 0.7254464626312256, 0.19811542332172394, 0.4080270230770111, -1.0438878536224365, 0.3908546566963196, -0.06924533098936081, -0.16722075641155243, -0.495968222618103, 0.096674345433712, -0.15814733505249023, 0.058258380740880966, -0.6029108166694641, 0.7914711833000183, -0.3304348289966583, 0.17414061725139618, 0.1303417831659317, 0.2247070074081421, 0.3299237787723541, 0.8258010745048523, -0.15308742225170135, 1.071253776550293, 0.47901302576065063, -0.9158889651298523, 0.362994521856308, 0.5598429441452026, -0.31016242504119873, 0.4027504026889801, -0.5931811928749084, 0.14995886385440826, -0.12592889368534088, 0.2532840073108673, -1.1064646244049072, -0.3181792199611664, 0.49562764167785645, -0.852608859539032, -0.1265861839056015, -0.2591762840747833, -0.556691586971283, -0.2952229678630829, -0.6489237546920776, 0.14191798865795135, 0.23190712928771973, -0.30221930146217346, 0.4227084815502167, 0.7027251124382019, -0.08099919557571411, -0.8802797198295593, -0.542575478553772, -0.3241293430328369, -0.03776197507977486, -0.8363526463508606, 0.2360910028219223, -0.3902776539325714, -0.33606547117233276, 0.1560882329940796, -0.24788004159927368, -0.5382280945777893, 0.22993972897529602, 0.11277657002210617, 0.11846647411584854, -0.13830925524234772, 0.03348126262426376, -0.02013450115919113, 0.0537714920938015, -0.01860874705016613, 0.04469723999500275, 0.8608598113059998, -0.2815328538417816, -0.1368592530488968, -0.2239023894071579, 0.6657496690750122, 0.6472753882408142, -0.35296377539634705, 0.9368445873260498, 0.6870532631874084, -0.2803070545196533, 0.13476800918579102, -0.46763917803764343, 0.15169788897037506, -0.48506349325180054, 0.06773344427347183, -0.1817297637462616, -0.7839839458465576, 0.761198878288269, 0.14627842605113983, 0.16507160663604736, 0.9599354863166809, 0.45121195912361145, -0.37477630376815796, 0.8880516290664673, 0.5445272922515869, -0.06143521890044212, 0.16921401023864746, -0.5785276889801025, -0.22940458357334137, -0.7107008099555969, -0.3428899943828583, -0.7296081781387329, -0.21748192608356476, -0.652289628982544, -0.5240809321403503, 0.24784542620182037, 0.04480144381523132, -0.4611169993877411, 0.2862735390663147, -0.37334516644477844, 0.3362587094306946, 0.5809603929519653, 0.08407792448997498, 0.2873479127883911, 0.005576640833169222, -0.3251534700393677, 0.26094111800193787, -0.621707022190094, -0.5412553548812866, 1.1556627750396729, 0.02698320709168911, 0.39916375279426575, 0.3398887515068054, 0.5067824721336365, 0.3863956034183502, -0.2022918164730072, -0.7059116363525391, 0.4639439284801483, -0.09966722875833511, -1.2201244831085205, -0.26326555013656616, -0.4005240499973297, -1.1462348699569702, 0.25030046701431274, -0.2220066338777542, -0.7983065247535706, 0.5519044995307922, -0.128130242228508, -0.37781813740730286, 0.10553478449583054, -0.3900955021381378, 0.6552664041519165, -0.1406078189611435, -0.5111558437347412, -0.018592972308397293, -0.9331170320510864, 0.22671861946582794, -0.09141378104686737, 0.6257394552230835, -0.2376355081796646, -0.16034246981143951, 1.0798529386520386, -0.48901602625846863, 0.7151120901107788, -0.10562712699174881, 0.12269848585128784, 0.42011314630508423, -0.08745824545621872, 0.3447168171405792, 0.06895126402378082, -0.29193031787872314, 0.13754993677139282, 0.4428119361400604, -0.6548368334770203, -0.41694605350494385, 0.48218557238578796, -1.0135196447372437, -0.6153454184532166, -0.5813178420066833, -0.3808537721633911, -0.2643434703350067, 0.4476448893547058, 0.2918775975704193, 0.3599728047847748, -0.1221541240811348, 0.44395121932029724, 0.6039044857025146, -0.4276796877384186, 0.343446284532547, 0.8712208867073059, -0.22676129639148712, -0.5559596419334412, 0.6407368183135986, 0.2981327474117279, 0.10266361385583878, 0.39565399289131165, 0.06367945671081543, -0.34157758951187134, -0.3769221603870392, -0.3822592794895172, 0.4745113253593445, -0.5945982933044434, -0.3819551169872284, -1.0117870569229126, -0.12733134627342224, -0.6587066650390625, -0.17808401584625244, -0.12393125146627426, -0.5967989563941956, -0.21696440875530243, -0.06639315187931061, 0.6899368762969971, 0.38252583146095276, -0.19015350937843323, 0.3318140208721161, -0.8508302569389343, 0.5624349117279053, 0.13360168039798737, 0.23551224172115326, -0.02503407746553421, -0.5381264686584473, -0.3452536463737488, 0.25143197178840637, -0.3302932679653168, -0.929400622844696, 0.5019881129264832, 0.2907761335372925, 0.6798796653747559, 0.3072044551372528, 0.5935426950454712, 0.5874432921409607, -0.12428132444620132, 1.0642027854919434, -0.058468274772167206, -0.6234947443008423, 0.39225611090660095, -0.595452606678009, 0.3419124484062195, 0.919506311416626, 1.0910766124725342, -0.8193394541740417, -0.37052005529403687, -0.8499050736427307, -1.1926544904708862, 0.839199960231781, 0.2162836194038391, 0.2083589881658554, -0.08392436057329178, 0.3001193702220917, 0.18388420343399048, 0.3929213583469391, -0.7426033616065979, -0.729214608669281, -0.10234062373638153, -0.0997292548418045, 0.30491170287132263, -0.10172786563634872, -0.28975430130958557, -0.5577923059463501, 0.8330085277557373, -0.07409030199050903, 0.3665688931941986, 0.5165525674819946, -0.17892934381961823, -0.060007162392139435, 0.31272879242897034, 0.36851659417152405, 0.6647318005561829, -0.29733628034591675, -0.013865262269973755, 0.04612233117222786, -0.6947017312049866, 0.0009884217288345098, 0.0006162262288853526, -0.21222664415836334, 0.037390463054180145, 0.1662224978208542, 0.2971233129501343, -0.025436056777834892, -0.6383651494979858, 0.8607301115989685, -0.04784413427114487, -0.35181769728660583, -0.6291259527206421, 0.10579212009906769, 0.09837589412927628, 0.2966237962245941, 0.6831575036048889, -0.09248703718185425, 0.1954231709241867, -0.5112847685813904, 0.5182546377182007, 0.3060212731361389, -0.1326693743467331, -0.20534206926822662, 0.5054051280021667, 0.13678905367851257, -0.12158571183681488, 0.5903247594833374, -0.15242554247379303, -0.6052257418632507, 0.7070986032485962, 0.35604944825172424, 0.5062463879585266, 0.11187107115983963, 0.34127694368362427, 0.6254209280014038, 0.17474080622196198, 0.1896756887435913, 0.6492651104927063, -0.019669659435749054, -0.8965944051742554, -0.03847815841436386, -0.7850981950759888, -0.35517260432243347, 0.49827954173088074, -0.823361337184906, 0.2023906260728836, -0.4644416868686676, -0.02955518290400505, -0.030541112646460533, 0.39722710847854614, -0.9303154945373535, 0.31849977374076843, -0.20143884420394897, 1.0998728275299072, -0.7052223086357117, 0.7008116841316223, 0.8962582945823669, -1.036657691001892, -0.8430056571960449, 0.056760091334581375, 0.20202948153018951, -0.8057870268821716, 0.3904736340045929, 0.0033707183320075274, -0.25982147455215454, 0.03259292617440224, -1.0434585809707642, -1.0508025884628296, 1.1905553340911865, 0.05796683952212334, -0.12905703485012054, 0.181871697306633, 0.29945042729377747, 0.36513859033584595, -0.38168761134147644, -0.01741733029484749, 0.6097527146339417, 0.5038225650787354, 0.09256751090288162, -0.7770536541938782, 0.18990066647529602, -0.6583506464958191, -0.7476356029510498, -0.09656380116939545, -1.085939645767212, 0.864264190196991, -0.010755163617432117, -0.2776634693145752, -0.10080872476100922, 0.5016563534736633, 0.15225914120674133, 0.45087844133377075, 0.4392358064651489, 0.36460861563682556, 0.9080021977424622, 0.06556646525859833, 1.0660170316696167, -0.5587385296821594, 0.5248255133628845, 0.7857388854026794, 0.060239143669605255, 0.9865432977676392, 0.402764230966568, -0.5496722459793091, 0.3569694459438324, 0.5672615170478821, -0.18020138144493103, 0.4923180639743805, -0.1659025102853775, -0.05820324644446373, -0.19327378273010254, -0.06229577213525772, -0.48272407054901123, 0.5643150210380554, 0.17947924137115479, -0.2895545959472656, -0.11754205822944641, -0.30343034863471985, 0.43630462884902954, -0.11572221666574478, -0.23056529462337494, 0.6585196852684021, -0.04503302648663521, -0.37723103165626526, 0.969931423664093, -0.10196511447429657, 0.7462952733039856, -0.49427491426467896, 0.04628407210111618, -0.46002301573753357, -0.1610269397497177, -0.5542450547218323, -0.97804856300354, 0.5296195149421692, 0.14919640123844147, -0.43007537722587585, -0.014398760162293911, 0.5469846129417419, -0.39797061681747437, -0.3297528028488159, 0.1794741004705429, 0.7966226935386658, 0.42833182215690613, -0.014811827801167965, -0.9452508687973022, -0.26565536856651306, 0.21613898873329163, -0.3320312201976776, 0.378963440656662, 0.359851211309433, 0.1946345418691635, 0.6850066781044006, 0.7185699939727783, -0.2270486056804657, 0.044361136853694916, -0.42680105566978455, 1.091396450996399, -0.8015797734260559, -0.3028443157672882, -0.511486828327179, 0.662628710269928, -0.0988750159740448, -0.558081865310669, 0.7712532877922058, 0.8063343167304993, 0.9349104762077332, -0.15255604684352875, 0.9056054353713989, -0.3024199903011322, 0.7565360069274902, -0.41842415928840637, 1.1447136402130127, -1.140839695930481, 0.004843090660870075, -0.25608107447624207, -0.47660964727401733, -0.1932695508003235, 0.6505813002586365, -0.2668856382369995, -0.1427481472492218, 0.5859389901161194, 0.9189326763153076, 0.043688785284757614, -0.26141560077667236, 0.14708520472049713, 0.23081979155540466, -0.03990411385893822, 0.3781549334526062, 0.6107662916183472, -0.6592774391174316, 0.7815335988998413, -0.4424508512020111, -0.003822595812380314, -0.2362985759973526, -0.5163343548774719, -0.6528538465499878, -0.9795742630958557, -0.4006538689136505, -0.6091203093528748, -0.18461468815803528, 1.139922022819519, 0.3490334749221802, -1.015546202659607, -0.16693814098834991, 0.4722515940666199, 0.32572734355926514, -0.1727994978427887, -0.28407374024391174, 0.584274172782898, 0.1838318109512329, -0.6944919228553772, 0.1347898542881012, -0.14723701775074005, 0.06929182261228561, 0.08679357916116714, -0.056128524243831635, -0.7497884631156921, 0.23967155814170837, 0.34041011333465576, 0.39605098962783813, -0.43716534972190857, -0.12509016692638397, 0.283201664686203, -0.3657870590686798, 0.4086940288543701, 0.2746082842350006, -0.6913207173347473, -0.04896257072687149, 0.6268708109855652, 0.39903950691223145, 0.3112025558948517, 0.10674211382865906, 0.4742373824119568, -0.6124500632286072, 0.039011623710393906, 0.19184178113937378, 0.345692902803421, 0.16833613812923431, -0.5302034020423889, 0.7036104202270508, 0.3484160006046295, -0.5043388605117798, -0.6462152600288391, 0.04257594421505928, -1.3262434005737305, -0.24352185428142548, 1.5698373317718506, -0.23799994587898254, -0.3521713614463806, -0.6498023867607117, -0.19029714167118073, 0.36399704217910767, -0.7122275233268738, 0.511557936668396, 0.9186641573905945, -0.16270186007022858, -0.03642967343330383, -0.7474700212478638, 0.5654224753379822, -0.028877943754196167, -0.5316401124000549, -0.056926462799310684, 0.5098134875297546, 0.5813553929328918, 0.19447490572929382, 0.7949944138526917, -0.23664148151874542, 0.36278051137924194, -0.07924140989780426, -0.022214902564883232, 0.02145632542669773, 0.051056526601314545, -0.24091678857803345, 0.35342368483543396, -0.20415934920310974, -0.1552954763174057 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mit-han-lab/pile-val-backup
mit-han-lab
2023-08-21T21:37:19Z
6,794
3
null
[ "region:us" ]
2023-08-21T21:37:19Z
2023-08-21T21:33:21.000Z
2023-08-21T21:33:21
This is a backup for the pile val dataset downloaded from here: `https://the-eye.eu/public/AI/pile/val.jsonl.zst` Please respect the original license of the dataset.
[ -0.35005998611450195, -0.19477704167366028, 0.029251890257000923, 0.17545710504055023, -0.5281206369400024, -0.07608038932085037, 0.6717608571052551, 0.28797367215156555, 0.6200141906738281, 1.3794128894805908, -0.8249590992927551, -0.4401243031024933, -0.24725446105003357, 0.21154990792274475, -0.7294291257858276, 1.556164026260376, 0.2949684262275696, 0.0942281186580658, -0.17976275086402893, -0.23238179087638855, -0.20177915692329407, -0.5366359353065491, -0.8618799448013306, 0.07752605527639389, 0.7014092206954956, 0.4950564205646515, 0.512593686580658, 0.45782285928726196, 0.8495426774024963, 0.0983666330575943, 0.0939999371767044, -0.5711394548416138, -0.9875867366790771, -0.22822068631649017, -0.3752863109111786, 0.058647818863391876, -0.7386713624000549, -0.1341254562139511, 1.140786051750183, 0.4736914336681366, -0.048393432050943375, 0.3304573893547058, -0.3189795911312103, 1.5281742811203003, -0.8119564056396484, 0.06220380216836929, -0.35653603076934814, 0.2852482199668884, -0.1935272216796875, -0.2512795925140381, -0.12272214889526367, -0.34947094321250916, -0.2665078938007355, -0.6644457578659058, 0.3910018503665924, 0.15777209401130676, 0.9384447336196899, 0.5819412469863892, -0.5362931489944458, 0.2622912526130676, -0.5201233625411987, 0.5934129357337952, -0.36128535866737366, 0.3040468096733093, 0.4884982407093048, 0.7859984636306763, -0.14922867715358734, -0.6440187096595764, -0.2561933696269989, 0.13340717554092407, 0.15781494975090027, 0.37601879239082336, 0.1338212788105011, -0.679427444934845, 0.02819700725376606, 0.8596471548080444, -0.5362100005149841, -0.29976552724838257, -0.9574306011199951, -0.1346796751022339, 0.9974225759506226, 0.6258118152618408, 0.268525630235672, -0.19342638552188873, -0.6179790496826172, -0.6836779713630676, -1.1243897676467896, -0.04693489894270897, 0.1315116286277771, 0.3486640155315399, -0.5473760962486267, 0.7205744981765747, -0.5156109929084778, 0.7457464933395386, -0.11707291007041931, 0.5577414631843567, 0.785273015499115, -0.37863823771476746, -0.44820043444633484, 0.09893681108951569, 0.6106221079826355, 0.8037177324295044, 0.04825039952993393, 0.14282403886318207, -0.17799155414104462, -0.32466447353363037, 0.43956369161605835, -0.7599867582321167, -0.9466075897216797, 0.2667050063610077, -0.4082813262939453, -0.363765686750412, 0.6387989521026611, -0.858504056930542, -0.3774457573890686, -0.055944010615348816, -0.0408489964902401, -0.1250678151845932, -0.4886173605918884, 0.32065433263778687, -0.21673598885536194, 0.10152943432331085, 0.21355709433555603, -0.54158616065979, 0.30244186520576477, 0.574164628982544, 0.7951047420501709, 0.2299528419971466, -0.6368657350540161, -0.9777387380599976, 0.06816710531711578, -0.47630006074905396, 0.9721242189407349, 0.22705277800559998, -0.6805648803710938, 0.11470885574817657, 0.8436389565467834, 0.09988640248775482, -0.3588118851184845, 0.9135159254074097, -0.6266064047813416, 0.416279137134552, -0.6171795725822449, -0.24365630745887756, -0.640264093875885, 0.20018839836120605, -1.2830535173416138, 0.9879311919212341, 0.7906528115272522, -1.2159678936004639, 0.5734299421310425, -0.687985360622406, -0.045915182679891586, 0.3856044113636017, 0.1160028874874115, -0.9339087009429932, -0.15008927881717682, 0.10250914096832275, 0.23398900032043457, 0.16927970945835114, -0.34324052929878235, -0.7833162546157837, -0.4358251392841339, -0.10414107143878937, 0.059871867299079895, 1.6435831785202026, 0.20299683511257172, 0.2710937559604645, 0.0667528510093689, -0.9722864627838135, -0.4469850957393646, 0.2957357168197632, -0.20167666673660278, -0.5422588586807251, 0.17348861694335938, -0.18082523345947266, 0.2756832242012024, 0.08477577567100525, -0.4363241195678711, 0.4542888402938843, -0.11012441664934158, -0.09809660911560059, 0.7733981609344482, 0.18062138557434082, 0.20514686405658722, -0.4335281252861023, 0.5985532402992249, 0.02175743691623211, -0.040742989629507065, 0.4537828266620636, -0.17526759207248688, -0.4307004511356354, -0.4526190757751465, 0.1869012415409088, 0.555948793888092, -0.6150259971618652, 0.8298126459121704, -0.5133857131004333, -0.44146728515625, -0.43855851888656616, -0.19894841313362122, -0.027806103229522705, 0.23511314392089844, -0.11967886984348297, -0.22367297112941742, -0.8543983697891235, -0.9583348631858826, 0.5239773392677307, -0.2408638298511505, -0.2877967059612274, 0.3795751929283142, 0.9850127696990967, -0.11565244942903519, 0.9720588326454163, -0.469361275434494, -0.3402037024497986, -0.0039028788451105356, -0.21619293093681335, 0.44418370723724365, 0.4021359980106354, 1.17457914352417, -0.8229224681854248, -0.6179046034812927, -0.1245294138789177, -0.8710406422615051, -0.06201591715216637, 0.11147801578044891, -0.6309937834739685, 0.20786231756210327, 0.0062192645855247974, -0.21986055374145508, 0.5297139883041382, 0.9488670825958252, -1.1840980052947998, 0.7886205911636353, -0.020029403269290924, 0.5630336999893188, -1.3745871782302856, 0.5803103446960449, -0.5144972205162048, -0.5689194202423096, -0.24757124483585358, 0.06813473999500275, -0.10436529666185379, -0.08044154942035675, -0.9448624849319458, 0.7285400032997131, -0.38467198610305786, -0.6959256529808044, 0.06599085032939911, -0.1039024218916893, -0.03720018267631531, 0.11746715009212494, -0.3777157664299011, 1.2362653017044067, 1.0939003229141235, -0.7497218251228333, 0.8249397873878479, 0.8434953093528748, -0.37484848499298096, 0.744260847568512, -0.4491235017776489, 0.3153565227985382, -0.2500031292438507, 0.31521591544151306, -0.4318167269229889, -0.3044773042201996, 0.8193283081054688, -0.3556077778339386, -0.3176913857460022, -0.5106284618377686, -0.1561979204416275, -0.45117393136024475, -0.6261545419692993, 0.39000436663627625, 0.5792787075042725, -0.699508786201477, 0.3155671954154968, 0.6315380334854126, -0.3897971510887146, -0.7181702852249146, -0.8224360346794128, 0.002273276448249817, -0.376650869846344, -0.26758110523223877, -0.1001337394118309, -0.198978990316391, -0.6510146260261536, 0.39366209506988525, 0.4237907826900482, -0.27863240242004395, -0.16843464970588684, 0.2077212929725647, 0.28137826919555664, -0.3708464503288269, -0.24096669256687164, -0.497700035572052, -0.39721137285232544, -0.06409995257854462, 0.008663968183100224, 0.5546811819076538, -0.3201812505722046, -0.004976979922503233, -0.15638087689876556, 0.41558581590652466, 0.6944160461425781, 0.3068668246269226, 0.8627889156341553, 0.22301636636257172, -0.3516150116920471, -0.044248614460229874, 0.07460583746433258, -0.26134201884269714, -0.3957160711288452, 0.2433885782957077, -0.17475935816764832, -0.677487313747406, 0.7773114442825317, 0.5740552544593811, 0.09910552203655243, 1.229374647140503, 0.45283904671669006, -0.33992812037467957, 0.6333220601081848, 0.49606865644454956, -0.5478260517120361, 0.26160499453544617, -0.549048125743866, -0.31645992398262024, -0.9466607570648193, -0.09729284793138504, -0.31363773345947266, -0.013572252355515957, 0.04733951389789581, 0.23007962107658386, -0.035309527069330215, 0.4738726019859314, -0.5392605662345886, 0.27481609582901, -0.5277135968208313, 0.6031003594398499, 0.6021862626075745, 0.18173302710056305, 0.22233031690120697, 0.29740551114082336, 0.6514495015144348, 0.38050606846809387, -0.5767635107040405, -0.2716953158378601, 0.8518814444541931, 0.017780037596821785, 0.309653639793396, -0.036234088242053986, 0.46666863560676575, 0.7670654654502869, -0.12797702848911285, -0.48217132687568665, 0.6644120812416077, -0.3785155117511749, -1.0857058763504028, -0.4172917902469635, -0.5559343099594116, -1.3216283321380615, 0.3116092085838318, -0.2524198889732361, -0.6324662566184998, -0.11678873747587204, 0.49122512340545654, -0.3073611557483673, 0.7298160791397095, -0.44347718358039856, 1.0524245500564575, 0.2127971351146698, 0.17047995328903198, -0.3508591949939728, -0.5730010271072388, 0.4821729063987732, -0.08634725213050842, 0.07412181049585342, -0.30388396978378296, 0.34112584590911865, 0.8772134184837341, -0.7273252010345459, 0.6214060187339783, -0.13230116665363312, 0.06956983357667923, 0.5542913675308228, 0.11838861554861069, 0.6347932815551758, 0.032758500427007675, -0.15556809306144714, 0.0555572509765625, 0.046993281692266464, -0.8143671751022339, -0.14400550723075867, 0.6571863889694214, -0.6019224524497986, 0.0644635260105133, -0.5847931504249573, -0.32817670702934265, 0.45123323798179626, 0.31143423914909363, 0.45427751541137695, 0.7861769199371338, -0.26456913352012634, 0.5816739201545715, 0.6460713148117065, -0.00791938416659832, 0.32205402851104736, 0.4230547249317169, -0.6620508432388306, -0.4733178913593292, 0.9101223349571228, -0.019159628078341484, -0.05842471495270729, 0.36157968640327454, 0.43317264318466187, -0.4161350429058075, -0.5260633230209351, -0.7884028553962708, -0.04917208105325699, -0.7771829962730408, -0.21851760149002075, -0.5541515350341797, -0.3928857147693634, -0.47010692954063416, -0.5680813193321228, -0.27250462770462036, -0.648899495601654, -0.11713315546512604, -0.18562732636928558, 1.035876989364624, 0.7212990522384644, -0.527499258518219, 0.3748551905155182, -1.333271861076355, 0.23970094323158264, 0.2463712841272354, 0.7095381021499634, -0.606457531452179, -0.20506063103675842, -0.5607811212539673, 0.1939973533153534, 0.18945710361003876, -0.45892053842544556, 0.629830002784729, -0.07292180508375168, 0.4247831106185913, 0.06296063959598541, 0.26483094692230225, -0.00038740268792025745, -0.012813572771847248, 1.1825343370437622, 0.11765311658382416, -0.2900105118751526, 0.25570687651634216, -0.9060092568397522, 0.4412537217140198, 0.8810258507728577, 0.058860763907432556, -0.35232675075531006, -0.011467148549854755, -0.8005828857421875, -0.8521324396133423, 0.7273830771446228, 0.2762589156627655, -0.5335819721221924, 0.2956691384315491, -0.09101632982492447, 0.33461835980415344, 0.1397940069437027, -0.5593649744987488, -0.12386463582515717, -0.4203944206237793, -0.22443746030330658, -0.27951934933662415, -0.13632848858833313, -0.39411836862564087, -0.029925992712378502, 0.9269995093345642, 0.26823532581329346, 0.40890297293663025, 0.012159300968050957, -0.09864367544651031, -0.26037442684173584, -0.008487804792821407, 0.6573424935340881, 0.6847611665725708, -0.7880213260650635, -0.05085746571421623, 0.2678048610687256, -0.7982050180435181, -0.23096902668476105, -0.07486085593700409, -0.40448248386383057, -0.2689141631126404, -0.01756737381219864, 0.7937476634979248, 0.02875811792910099, -0.2518160343170166, 0.5051509141921997, 0.16564740240573883, -0.41952160000801086, -0.8328155875205994, -0.3500891327857971, -0.46051210165023804, 0.3169873356819153, 0.31095197796821594, 0.15939544141292572, 0.6195332407951355, -0.19655440747737885, 0.5811736583709717, 0.12618973851203918, -0.29298460483551025, -0.3022158741950989, 0.4774767756462097, 0.10854002088308334, -0.3783797025680542, 1.0403944253921509, -0.2796071171760559, -0.48127952218055725, 0.6378810405731201, 0.170682892203331, 1.2584344148635864, 0.03599090129137039, 0.13106386363506317, 0.6737891435623169, -0.022083988413214684, -0.048199672251939774, 0.6667261123657227, 0.4566757380962372, -0.6306451559066772, -0.6196020841598511, -0.34907084703445435, -0.42195990681648254, -0.14814330637454987, -0.5961787700653076, 0.24512554705142975, -0.5760787725448608, 0.275204598903656, -0.8648056387901306, -0.16115418076515198, -0.47326916456222534, 0.36524325609207153, -0.06376706063747406, 0.7288033366203308, -0.8098030090332031, 0.7213027477264404, 0.8096876740455627, -0.5930081605911255, -0.4628368616104126, -0.3069859743118286, 0.28185954689979553, -0.9963468909263611, 0.30781298875808716, -0.2977316975593567, -0.5023683905601501, 0.2295731008052826, -0.9219863414764404, -1.0066217184066772, 0.8599216938018799, 0.03923264890909195, -0.2806130349636078, 0.39637279510498047, -0.35929378867149353, 0.13063043355941772, -0.12220177054405212, -0.21145033836364746, 0.17522738873958588, 0.18749283254146576, 0.1365993171930313, -0.3279677927494049, -0.029082993045449257, -0.6339296698570251, -0.502131462097168, 0.6178421378135681, -0.6938304901123047, 0.7461863160133362, 0.1395779401063919, -0.05590687692165375, -0.12204588204622269, 0.4580940902233124, 0.606070339679718, 0.028345532715320587, 0.6480361223220825, 0.8687179088592529, 0.27311137318611145, -0.15409861505031586, 1.3409764766693115, -0.14855383336544037, 0.8603939414024353, 0.7999060750007629, -0.2078704535961151, 0.9270412921905518, 0.3107294738292694, -0.07420652359724045, 0.42690297961235046, 0.7204736471176147, -0.511039674282074, 0.9289635419845581, -0.3017902672290802, -0.13214685022830963, 0.1593136489391327, 0.15363112092018127, -0.7089641094207764, -0.03397774323821068, 0.18156269192695618, 0.10270246863365173, -0.2500206530094147, -0.4762287735939026, -0.27799656987190247, -0.5290497541427612, -0.857014000415802, 0.6049284338951111, -0.06296421587467194, -0.21685791015625, 0.5817156434059143, -0.9776860475540161, 0.20167027413845062, -0.21567590534687042, -0.0884530246257782, -0.07531891763210297, 0.25284987688064575, -0.12579497694969177, -1.2275580167770386, 0.7869443297386169, -0.3597012758255005, -0.2987212538719177, -0.33206191658973694, 0.7155275940895081, -0.1304895132780075, -0.8674722909927368, -0.11315978318452835, 0.05867942422628403, 0.639865517616272, 0.3712874948978424, -0.7596396803855896, -0.09145871549844742, -0.06262219697237015, -0.37544679641723633, 0.37061020731925964, 0.13047078251838684, 0.14073601365089417, 0.7813510894775391, 0.34166085720062256, 0.24986395239830017, 0.005080761853605509, 0.20494720339775085, 0.6358875632286072, -0.8949706554412842, -0.7853285670280457, -0.37247487902641296, 1.2131863832473755, -0.45575758814811707, -0.7545976638793945, 0.43725770711898804, 0.9956337809562683, 0.9641226530075073, -0.7904471158981323, 0.9012635350227356, -0.19417156279087067, 1.0005930662155151, -0.9510129690170288, 0.8526191115379333, -0.5951626300811768, -0.5573346018791199, -0.18110942840576172, -1.016844630241394, -0.5347080826759338, 0.9523917436599731, 0.23861432075500488, -0.31768888235092163, 0.8862655162811279, 0.4385407567024231, -0.0036892283242195845, -0.03211015462875366, 0.3335558772087097, 0.09226804226636887, -0.10682226717472076, 0.5506439805030823, 0.7552411556243896, -0.48056405782699585, 0.2931893765926361, -0.3771677017211914, -0.09561067074537277, -0.5873135924339294, -1.1490237712860107, -0.8528873920440674, -0.6563385725021362, -0.33985650539398193, -0.5417354106903076, 0.12530551850795746, 0.9869527816772461, 0.6612685918807983, -1.144282579421997, -0.23993180692195892, -0.40741607546806335, -0.17947204411029816, -0.2780056595802307, -0.2187536507844925, 0.67060786485672, 0.4335469901561737, -0.4420105218887329, 0.39918798208236694, 0.31820523738861084, 0.260164737701416, -0.010297883301973343, -0.261196106672287, 0.057467956095933914, -0.468539297580719, 0.5223954319953918, 0.7702376842498779, -0.36252185702323914, -0.3809705972671509, -0.3219757676124573, -0.06294321268796921, 0.28299379348754883, 0.6974551677703857, -0.6156904697418213, 0.046916842460632324, 1.1619055271148682, 0.5430309772491455, 0.4611976444721222, 0.31989213824272156, 0.8667904734611511, -0.38671380281448364, 0.4561326801776886, 0.21369871497154236, 0.9597569704055786, 0.31779444217681885, -0.5563951730728149, 1.0058914422988892, 0.2804562747478485, -0.7118501663208008, -0.5747897624969482, 0.05580262094736099, -1.3992679119110107, 0.03142388164997101, 0.928991436958313, -0.03811904042959213, -0.3192576766014099, -0.07755664736032486, -0.6536719799041748, 0.3162589371204376, -0.5992673635482788, 0.8229075074195862, 0.616174578666687, 0.40931305289268494, -0.8749098181724548, -0.4551669657230377, 0.5769028067588806, 0.1386478841304779, -0.7577755451202393, 0.20956875383853912, 0.76641845703125, -0.03367902338504791, -0.11569917947053909, 0.6709252595901489, -0.3707094192504883, 0.20887428522109985, 0.4738299250602722, 0.34062474966049194, 0.012409527786076069, -0.6339613199234009, -0.6423136591911316, 0.006934479810297489, -0.2499426007270813, -0.44581180810928345 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
HuggingFaceM4/general-pmd-synthetic-testing-with-embeddings
HuggingFaceM4
2023-04-20T13:40:41Z
6,704
0
null
[ "license:bigscience-openrail-m", "region:us" ]
2023-04-20T13:40:41Z
2023-04-20T13:12:55.000Z
2023-04-20T13:12:55
--- license: bigscience-openrail-m --- This dataset is designed to be used in testing. It's derived from general-pmd/localized_narratives__ADE20k dataset The current splits are: `['100.unique', '100.repeat', '300.unique', '300.repeat', '1k.unique', '1k.repeat', '10k.unique', '10k.repeat']`. The `unique` ones ensure uniqueness across `text` entries. The `repeat` ones are repeating the same 10 unique records: - these are useful for memory leaks debugging as the records are always the same and thus remove the record variation from the equation. The default split is `100.unique` The full process of this dataset creation, including which records were used to build it, is documented inside [general-pmd-synthetic-testing.py](https://huggingface.co/datasets/HuggingFaceM4/general-pmd-synthetic-testing/blob/main/general-pmd-synthetic-testing.py)
[ -0.5811522603034973, -0.7712484002113342, 0.15182921290397644, 0.31842976808547974, -0.2556803524494171, -0.16247984766960144, 0.08368343114852905, 0.08025901764631271, 0.21233446896076202, 0.6143736839294434, -0.9519351124763489, -0.6592703461647034, -0.06854060292243958, 0.24876022338867188, -0.3025149703025818, 1.3916748762130737, -0.47112855315208435, -0.021546637639403343, -0.1773509681224823, -0.5259461998939514, -0.16553933918476105, -0.5576134920120239, -0.2700946629047394, 0.0015410489868372679, 0.37901943922042847, 0.4145198166370392, 0.6492887735366821, 0.8191148042678833, 0.3258086144924164, 0.17718932032585144, 0.15730510652065277, 0.24237443506717682, -0.21321803331375122, 0.15983863174915314, 0.023712117224931717, -0.2845897376537323, -0.4959201514720917, 0.2773865759372711, 0.6384783983230591, 0.6733457446098328, -0.21519280970096588, 0.38960227370262146, -0.18207068741321564, 0.3397309184074402, -0.5120795369148254, -0.048536211252212524, -0.10874387621879578, 0.12554273009300232, -0.31511014699935913, 0.17889198660850525, -0.16655102372169495, -0.11985078454017639, 0.04294575750827789, -0.6745487451553345, 0.739290714263916, -0.07390138506889343, 0.9434877038002014, 0.05497400462627411, -0.5948646664619446, -0.03591357171535492, -0.5659555792808533, 0.6536151766777039, -0.572883129119873, -0.06201891601085663, 0.36602967977523804, 0.3311619162559509, 0.03842488303780556, -0.40462610125541687, -0.5165072679519653, 0.17583167552947998, 0.09947436302900314, -0.09155725687742233, 0.20164664089679718, -0.2616886794567108, 0.41046109795570374, 0.7627482414245605, -1.0472984313964844, -0.06664317846298218, -0.40480726957321167, -0.3069232404232025, 1.0170159339904785, 0.5620801448822021, 0.466244101524353, -0.1748533546924591, -0.5722662806510925, -0.16293631494045258, -0.6920410394668579, -0.2402396947145462, 0.5803940892219543, 0.2130831927061081, -0.15338803827762604, 0.6730519533157349, -0.3387908935546875, 0.7357869744300842, -0.0886317566037178, -0.31314849853515625, 0.8004332184791565, -0.6026821732521057, -0.3719933032989502, -0.13087208569049835, 0.9858142137527466, 0.24715977907180786, 0.3280213177204132, -0.023649267852306366, -0.19369500875473022, 0.18845392763614655, 0.33322227001190186, -0.8008788228034973, -0.7247719764709473, 0.250718355178833, -0.3048247694969177, -0.3473280072212219, 0.2655225098133087, -0.4910860061645508, -0.33002036809921265, -0.40518394112586975, 0.5515581369400024, -0.6841675043106079, -0.3721303343772888, 0.31771060824394226, -0.18319466710090637, 0.010296838358044624, -0.09846070408821106, -0.6293931007385254, 0.5818435549736023, 0.5490527749061584, 0.6375145316123962, -0.5429940223693848, -0.42785927653312683, -0.2616078555583954, -0.09680525213479996, -0.2032543122768402, 0.8228389024734497, -0.10306092351675034, -0.2709735333919525, -0.27664855122566223, 0.27715879678726196, -0.35812902450561523, -0.9313052296638489, 0.2772168219089508, -0.23911309242248535, 0.4757826328277588, -0.2367047369480133, -0.5570812225341797, -0.10356105864048004, 0.32316431403160095, -0.8879457116127014, 0.9894708395004272, 0.42980730533599854, -0.6853876113891602, 0.4721437394618988, -0.5187681317329407, -0.3067806363105774, -0.0941399335861206, -0.01739661768078804, -0.5854344964027405, -0.0016268646577373147, 0.2852913737297058, 0.056457117199897766, -0.3303421139717102, -0.02393069677054882, -0.26662158966064453, -0.3086584210395813, 0.0883442834019661, -0.32274046540260315, 0.8784224987030029, 0.3392643630504608, -0.14088214933872223, -0.15376624464988708, -1.216238021850586, 0.273058146238327, 0.04663129150867462, -0.28591153025627136, -0.362342894077301, -0.2963697016239166, 0.24695467948913574, 0.02589443512260914, -0.042381349951028824, -0.7396536469459534, 0.46692344546318054, -0.21314559876918793, 0.002743067918345332, 0.689777672290802, 0.6217237114906311, 0.20118889212608337, -0.4651738107204437, 0.8272683024406433, 0.5406314134597778, 0.153188556432724, -0.31467685103416443, -0.5578492879867554, -0.4821356236934662, -0.37419018149375916, 0.46329209208488464, 0.6290081143379211, -0.1572732776403427, 0.3759283423423767, 0.06472905725240707, -0.5255329012870789, -0.3881746530532837, 0.11652090400457382, 0.18533578515052795, 0.2113220989704132, 0.1909540295600891, -0.1777559518814087, -0.5286370515823364, -1.1508630514144897, 0.02840656414628029, 0.12472247332334518, -0.2911888360977173, 0.1926586925983429, 0.7146049737930298, -0.3077465891838074, 0.9391607642173767, -0.8899338245391846, -0.11507316678762436, 0.16358140110969543, 0.15331339836120605, 0.5644184350967407, 0.5330698490142822, 0.593874454498291, -0.7768242359161377, -0.6364235281944275, -0.4719531536102295, -0.6245688796043396, -0.2817930579185486, -0.4648447036743164, -0.3205096125602722, 0.22729985415935516, -0.04875661060214043, -0.7604038119316101, 0.34676817059516907, 0.6210498809814453, -0.7505293488502502, 1.001288652420044, -0.15409475564956665, 0.2335137128829956, -1.3491582870483398, -0.01205395720899105, -0.009986854158341885, -0.018868882209062576, -0.08066781610250473, -0.07233548164367676, 0.2646385133266449, 0.04661180078983307, -0.23917023837566376, 0.4425186812877655, -0.5646229982376099, 0.1376541256904602, 0.12644533812999725, -0.06358599662780762, -0.07606343924999237, 0.1366496980190277, -0.4115583598613739, 0.6704492568969727, 0.5853524208068848, -0.6072965860366821, 0.8288006782531738, 0.3389400541782379, -0.5003635883331299, 0.624528169631958, -0.46905332803726196, 0.25609922409057617, 0.21627125144004822, -0.0627128928899765, -0.8561615347862244, -0.008650480769574642, 0.16023209691047668, -0.2198587954044342, 0.143501415848732, -0.07489172369241714, -0.7190321087837219, -0.23280328512191772, -0.21769185364246368, 0.5607013702392578, 0.40899181365966797, -0.5750936269760132, 0.039218466728925705, 0.36392781138420105, -0.04692571982741356, -0.4323488175868988, -0.4337840974330902, -0.1439429074525833, -0.4438934326171875, -0.8681543469429016, 0.34460559487342834, -0.5954933762550354, -0.47075125575065613, 0.16683577001094818, -0.34819042682647705, -0.5001910328865051, -0.2619386613368988, 0.5661187171936035, 0.19362173974514008, -0.47773823142051697, 0.03908369690179825, -0.11762651801109314, -0.1935778707265854, 0.05732197314500809, -0.13657766580581665, 0.5464488863945007, 0.28331494331359863, -0.1565837562084198, -0.11268327385187149, 0.5086737871170044, 0.6309617161750793, -0.08229806274175644, 0.880154550075531, 0.2678421437740326, -0.37427017092704773, -0.691810131072998, -0.24339614808559418, 0.10319424420595169, -0.42520231008529663, 0.19626641273498535, -0.7145374417304993, -0.4299642741680145, 0.8788270354270935, 0.21847720444202423, -0.17452900111675262, 0.8297179341316223, 0.33140042424201965, -0.01989048160612583, 0.8281170725822449, 0.21746230125427246, -0.2488119751214981, -0.12312079966068268, -0.34576666355133057, -0.17025063931941986, -0.7287147641181946, -0.040847111493349075, -0.129714697599411, -0.4065244793891907, -0.4342169463634491, -0.33786740899086, -0.01642714999616146, 0.13945689797401428, -0.5149930119514465, 0.3470619022846222, -0.29172438383102417, 0.7241091132164001, 0.38554224371910095, 0.06702540069818497, 0.3244369328022003, -0.02967427298426628, -0.5066179037094116, -0.25844308733940125, -0.13526774942874908, -0.23804925382137299, 1.4062498807907104, -0.12853938341140747, 0.747638463973999, -0.02839176170527935, 0.7046496868133545, 0.2346276342868805, 0.25943392515182495, -0.43545135855674744, 0.41510748863220215, -0.11107323318719864, -0.7967362999916077, -0.18067876994609833, -0.5802698731422424, -0.8678162693977356, 0.020697148516774178, 0.3941388726234436, -0.47052714228630066, -0.22816745936870575, -0.2824825048446655, -0.36535513401031494, 0.356850266456604, -0.7320796251296997, 1.0589585304260254, -0.09137780219316483, 0.13565996289253235, 0.12830832600593567, -0.30018845200538635, 0.35006168484687805, -0.32572513818740845, -0.132277250289917, -0.03867952525615692, 0.1070747971534729, 0.8881371021270752, -0.6984770894050598, 0.5777936577796936, -0.2652413845062256, -0.032666049897670746, 0.3661116361618042, 0.2546130120754242, 0.3161982595920563, 0.2918166518211365, 0.03674084693193436, -0.1015312522649765, 0.12482696771621704, -0.2851317524909973, -0.2671917676925659, 0.7583579421043396, -0.7784121036529541, -0.2430998831987381, -0.6831730008125305, -0.855934739112854, -0.09494609385728836, 0.2714567482471466, 0.3239758610725403, 0.6776602864265442, -0.41858795285224915, 0.3981100022792816, 0.685380220413208, -0.41232922673225403, 0.10808942466974258, 0.8523880243301392, -0.12232168018817902, -0.6529881954193115, 0.5159327983856201, 0.36194947361946106, 0.14166676998138428, 0.07433795183897018, -0.016091935336589813, -0.249783456325531, -0.5074836611747742, -0.3138491213321686, 0.4419470429420471, -0.4078695476055145, -0.19296187162399292, -0.37076541781425476, -0.4836471974849701, -0.3606437146663666, 0.21663327515125275, -0.48914554715156555, -0.5551369190216064, -0.19365863502025604, -0.4744229018688202, 0.5073621273040771, 0.5164068937301636, -0.304439514875412, 0.002088095061480999, -0.7252084016799927, 0.6621806025505066, 0.23096831142902374, 0.3620700538158417, -0.6303948163986206, -0.4516470730304718, -0.1406307965517044, -0.02023189142346382, -0.2773366868495941, -1.1043230295181274, 0.6770966649055481, 0.1814882904291153, 0.7105412483215332, 0.34750059247016907, 0.44155240058898926, 0.538094162940979, -0.4487980008125305, 0.9231619238853455, -0.3034667372703552, -0.4390166401863098, 0.7479857206344604, -0.672786295413971, 0.2269999086856842, 0.4356386065483093, 0.5496953129768372, -0.684650719165802, -0.1459413766860962, -1.0595592260360718, -1.130430817604065, 0.6339235305786133, 0.09612493962049484, -0.12600333988666534, 0.03301814943552017, 0.4513132572174072, 0.5014661550521851, 0.004425281658768654, -0.27165016531944275, -0.8238455057144165, 0.20675717294216156, -0.4077526032924652, -0.2401966154575348, -0.4486525058746338, -0.5337919592857361, -0.3346908390522003, 0.5830396413803101, 0.11977618932723999, -0.03051372617483139, 0.06371860206127167, -0.17315754294395447, 0.11476054042577744, -0.077579565346241, 0.39491358399391174, 0.7780242562294006, -0.5185077786445618, 0.19007202982902527, 0.04484718665480614, -0.9404647946357727, 0.40532374382019043, 0.04079502820968628, -0.1144830584526062, 0.0010040076449513435, 0.09565872699022293, 0.6312665939331055, -0.15636499226093292, -0.5706156492233276, 0.21117354929447174, -0.10702426731586456, -0.306140661239624, -0.6737067699432373, 0.2949521243572235, 0.1924804449081421, 0.07596290111541748, 0.37177854776382446, 0.08507505804300308, -0.11316682398319244, -0.2859022617340088, 0.8938587307929993, -0.11778362095355988, 0.021152833476662636, -0.5037615299224854, 0.5891844630241394, -0.08346617221832275, -0.3519245982170105, 1.2726892232894897, -0.46066245436668396, -0.20848795771598816, 0.6601425409317017, 0.5592685341835022, 0.7790549397468567, -0.3790775537490845, 0.5642341375350952, 0.5866498947143555, 0.11695373058319092, -0.09106872230768204, 0.4397660493850708, 0.08006319403648376, -0.9509032964706421, -0.19700826704502106, -0.6485666036605835, -0.28496384620666504, 0.5899549722671509, -0.8635522127151489, 0.2659315764904022, -0.33110687136650085, 0.11097236722707748, -0.030482742935419083, 0.2705821096897125, -0.6072554588317871, 0.4575844705104828, 0.14753937721252441, 0.9342619180679321, -1.1390109062194824, 0.7540754079818726, 0.6162094473838806, -0.3636285364627838, -0.6025387644767761, -0.2003091722726822, 0.419552206993103, -0.4701409935951233, 0.6444472670555115, 0.11057329922914505, 0.8478547930717468, -0.44678598642349243, -0.3609312176704407, -0.8165648579597473, 1.042917251586914, 0.20923662185668945, -0.23854871094226837, 0.27167609333992004, 0.5051608085632324, 0.44637227058410645, -0.38372328877449036, 0.07039234787225723, 0.6619889140129089, 0.2808150351047516, -0.16060683131217957, -0.899651288986206, 0.057515960186719894, -0.740557849407196, -0.21524865925312042, 0.24228794872760773, -0.5160343647003174, 1.2076705694198608, -0.20829346776008606, -0.1562691479921341, 0.028968142345547676, 0.09189815074205399, 0.7661365270614624, 0.2359604835510254, 0.5464571118354797, 1.0538524389266968, 0.8283031582832336, -0.38502392172813416, 1.0375431776046753, -0.011455651372671127, 0.5382325053215027, 1.2740386724472046, -0.18475483357906342, 0.5333322286605835, 0.029443873092532158, -0.37486621737480164, 0.4812033772468567, 0.8667795062065125, -0.414558470249176, 0.6212880611419678, 0.3780724108219147, -0.29056504368782043, -0.11447528749704361, 0.4542646110057831, -0.40061381459236145, 0.2577413022518158, 0.10011295229196548, -0.5432630181312561, -0.25717803835868835, -0.2061597853899002, 0.2568663954734802, -0.4689697027206421, 0.2433985471725464, 0.4316817820072174, -0.124336838722229, -0.5200212597846985, 0.5092188715934753, -0.34244412183761597, 0.39930087327957153, -0.6037437915802002, 0.14400964975357056, -0.5284637212753296, 0.5599341988563538, 0.01894274912774563, -0.9594994783401489, 0.3315019905567169, -0.076928049325943, -0.6397274732589722, -0.23721082508563995, 0.4437335133552551, -0.37448957562446594, -0.4751451015472412, 0.02306305430829525, 0.2944507896900177, 0.14960938692092896, -0.6162261962890625, -0.5849294066429138, -0.07433615624904633, 0.2842938005924225, -0.8039716482162476, 0.5190375447273254, 0.659381628036499, 0.10247250646352768, 0.4767155349254608, 0.6188771724700928, 0.21570290625095367, 0.24258525669574738, 0.1165061891078949, 0.6140710115432739, -1.027392864227295, -0.6431224346160889, -0.7155662775039673, 0.8250189423561096, -0.1647813767194748, -0.8457618355751038, 1.0531154870986938, 1.183854341506958, 0.6764570474624634, -0.1683885008096695, 0.7431991696357727, 0.05045090988278389, 0.5471423268318176, -0.2981632649898529, 0.7666192054748535, -0.251272052526474, 0.08763986825942993, -0.02515300177037716, -0.9848117232322693, -0.06632719933986664, 0.39361822605133057, 0.1071377694606781, -0.2776257395744324, 1.0235966444015503, 0.7649198770523071, -0.07572940737009048, 0.21794503927230835, 0.04722002521157265, 0.4185366630554199, 0.35383525490760803, 0.6102921962738037, 0.4789111614227295, -0.7291741967201233, 0.4880707561969757, -0.5652583837509155, -0.1067616194486618, 0.42581865191459656, -0.4621537923812866, -0.41417625546455383, -0.7662785649299622, -0.7948738932609558, -0.43126437067985535, -0.22589895129203796, 0.3923362195491791, 0.6585502028465271, -1.0436979532241821, -0.05853329226374626, 0.05012468248605728, -0.18755482137203217, -0.3044291138648987, -0.3243659436702728, 0.3336956202983856, -0.0608631856739521, -0.6264107823371887, 0.4245789349079132, -0.057407230138778687, -0.040307171642780304, 0.02190348505973816, -0.05947941541671753, -0.00005056427471572533, -0.22610358893871307, 0.2778412997722626, 0.21249954402446747, -0.08153257519006729, -0.2610691785812378, 0.013382414355874062, -0.01762939989566803, 0.1667255461215973, 0.5845126509666443, -0.812312126159668, 0.5411511659622192, 0.800239086151123, 0.12374454736709595, 0.6872097253799438, 0.06746117770671844, 0.7960081100463867, -0.9500285983085632, 0.13493090867996216, 0.06024033576250076, 0.24741806089878082, 0.053173087537288666, -0.20178239047527313, 0.9421677589416504, 0.6508961915969849, -0.6153566241264343, -0.9382131695747375, -0.04853709787130356, -1.044021725654602, -0.13255727291107178, 1.532835841178894, -0.11371370404958725, -0.13913759589195251, -0.027691207826137543, -0.23321186006069183, 0.07782624661922455, -0.18420469760894775, 0.5645657181739807, 0.9188191294670105, -0.47101280093193054, -0.18134506046772003, -0.4813864529132843, 0.455419659614563, -0.07867148518562317, -0.6727632880210876, 0.19247359037399292, 0.5638330578804016, 0.9210827350616455, 0.15996184945106506, 0.475944459438324, -0.4887029528617859, -0.1863286793231964, 0.4808981418609619, 0.06289549916982651, -0.12990185618400574, -0.22437071800231934, -0.1580563336610794, 0.3262931704521179, -0.6310350298881531, -0.5498063564300537 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
stas/openwebtext-10k
stas
2021-09-15T00:18:50Z
6,702
7
null
[ "region:us" ]
2021-09-15T00:18:50Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
10K slice of OpenWebText - An open-source replication of the WebText dataset from OpenAI. This is a small subset representing the first 10K records from the original dataset - created for testing. The full 8M-record dataset is [here](https://huggingface.co/datasets/openwebtext). ``` $ python -c "from datasets import load_dataset; ds=load_dataset('stas/openwebtext-10k'); print(ds)" DatasetDict({ train: Dataset({ features: ['text'], num_rows: 10000 }) }) ``` * Records: 10,000 * compressed size: ~15MB * uncompressed size: 50MB To convert to jsonlines: ``` from datasets import load_dataset dataset_name = "stas/openwebtext-10k" name = dataset_name.split('/')[-1] ds = load_dataset(dataset_name, split='train') ds.to_json(f"{name}.jsonl", orient="records", lines=True) ``` To see how this subset was created, here is the [instructions file](https://huggingface.co/datasets/stas/openwebtext-10k/blob/main/process.txt).
[ -0.6496302485466003, -0.45448917150497437, 0.13085691630840302, 0.24434475600719452, -0.30571451783180237, -0.34659090638160706, -0.13964594900608063, -0.29207882285118103, 0.33778032660484314, 0.6364041566848755, -0.6766809821128845, -0.3708805739879608, -0.2283981442451477, 0.26824215054512024, -0.6172112226486206, 1.3013373613357544, 0.00992383249104023, -0.19439302384853363, -0.10467945039272308, -0.2860809564590454, 0.1802215725183487, -0.14930860698223114, -0.18439728021621704, 0.09111586213111877, 0.2369118630886078, 0.20426204800605774, 0.49996626377105713, 0.8688087463378906, 0.40061238408088684, 0.22354573011398315, -0.05903680995106697, -0.0370066836476326, -0.6210706830024719, -0.2701610326766968, -0.016779156401753426, -0.24732562899589539, -0.24230515956878662, 0.24841730296611786, 0.6316443085670471, 0.9134473204612732, 0.1054435595870018, 0.4852946996688843, -0.04946016147732735, 0.7212247252464294, -0.5449371933937073, -0.1382686048746109, -0.29389113187789917, -0.03392855077981949, -0.31996795535087585, 0.19307105243206024, -0.4071955978870392, -0.4075348377227783, 0.21678447723388672, -1.012016773223877, 0.23968394100666046, 0.17349757254123688, 1.1658806800842285, -0.05335391312837601, -0.532807469367981, 0.043590862303972244, -0.47139307856559753, 0.5774105787277222, -0.7568274736404419, 0.2664991021156311, 0.47313082218170166, 0.3831076920032501, -0.32420140504837036, -0.8510312438011169, -0.4903687834739685, 0.26755356788635254, 0.028859177604317665, -0.07396503537893295, -0.09146302938461304, -0.2686150074005127, 0.48005184531211853, 0.6752604246139526, -0.8359484076499939, -0.3408588171005249, -0.5080842971801758, -0.4425405263900757, 0.641136109828949, 0.15023863315582275, 0.03490566462278366, -0.18743422627449036, -0.4088740646839142, -0.655252993106842, -0.3280653655529022, -0.16597707569599152, 0.5619758367538452, 0.47572576999664307, -0.2898833155632019, 0.6360159516334534, -0.5995773673057556, 0.5959330201148987, -0.2626650333404541, -0.17337660491466522, 0.4691541790962219, -0.487830251455307, -0.26916834712028503, 0.04265196993947029, 1.1848101615905762, 0.37663137912750244, 0.08270552009344101, -0.014352204278111458, -0.2310984879732132, -0.07662571966648102, 0.2627306580543518, -1.0137994289398193, -0.5711067914962769, 0.4308534264564514, -0.7811076045036316, -0.1165049746632576, 0.4574984014034271, -0.741573691368103, -0.3869679272174835, -0.21029077470302582, 0.4267299771308899, -0.789343535900116, -0.2390071302652359, -0.09364859014749527, -0.4977223575115204, -0.06521058082580566, 0.2481776922941208, -0.554607093334198, 0.39387059211730957, 0.5877262353897095, 0.8634082078933716, 0.026609014719724655, -0.3624134659767151, -0.24557845294475555, -0.0691186934709549, -0.15365754067897797, 0.6037979125976562, 0.22667452692985535, -0.0764261856675148, -0.10751982033252716, 0.15019544959068298, 0.39016714692115784, -0.5661908388137817, 0.2159973531961441, -0.2984641492366791, 0.09934713691473007, -0.2961950898170471, -0.554491400718689, 0.01390151772648096, 0.23578841984272003, -1.013634204864502, 1.0249381065368652, 0.68670654296875, -0.8707276582717896, 0.3574743866920471, -0.5007895231246948, -0.5646771192550659, 0.07488365471363068, 0.03830443322658539, -0.2579136788845062, -0.05902663990855217, 0.2837567627429962, 0.19441457092761993, -0.3021593391895294, -0.2503982186317444, -0.4818706512451172, -0.2186768352985382, 0.3604806661605835, -0.20523688197135925, 1.0801693201065063, 0.4860663115978241, -0.02518170140683651, -0.2747281491756439, -1.258485198020935, 0.12422195822000504, 0.1085328608751297, -0.4638822078704834, -0.6002879738807678, -0.2941698431968689, 0.4544084668159485, -0.015616192482411861, 0.13430452346801758, -0.9033805131912231, 0.4308799207210541, -0.2938195765018463, 0.3885433077812195, 0.728509247303009, -0.1076386347413063, 0.18206742405891418, -0.3576321303844452, 0.2564088702201843, 0.31175264716148376, 0.3326708674430847, -0.3507594168186188, -0.44987502694129944, -0.3013651371002197, -0.183493971824646, 0.47741809487342834, 0.346499502658844, -0.6030226945877075, 0.4331046938896179, -0.45442071557044983, -0.4472794234752655, -0.9362584352493286, -0.12590660154819489, 0.18828152120113373, 0.31992995738983154, 0.5294493436813354, -0.09966425597667694, -0.7838060259819031, -1.1413813829421997, -0.16293154656887054, 0.1853400617837906, -0.40613532066345215, -0.06987801194190979, 0.8719028234481812, -0.24890699982643127, 1.1275312900543213, -0.8554518818855286, -0.47012457251548767, 0.20121996104717255, -0.08373658359050751, 0.5225256085395813, 0.46342703700065613, 0.5188455581665039, -0.5784592032432556, -0.6054400205612183, -0.026640653610229492, -0.5017449259757996, -0.0067827035672962666, -0.14268048107624054, -0.38452062010765076, -0.05280711501836777, 0.07043474167585373, -0.36517372727394104, 0.6603509783744812, 0.6130879521369934, -0.5857278108596802, 0.5853922963142395, 0.027023974806070328, 0.18803250789642334, -1.3325244188308716, 0.22914114594459534, 0.14123831689357758, -0.3935181796550751, -0.28631871938705444, 0.021070173010230064, 0.2645670175552368, 0.027026036754250526, -0.5467371344566345, 0.3725774884223938, -0.6558997631072998, -0.19085858762264252, -0.018142422661185265, 0.1962251216173172, 0.0013279212871566415, 0.29369014501571655, -0.46576741337776184, 0.7191126346588135, 0.1467249095439911, -0.4222927689552307, 0.3852018117904663, 0.7447807788848877, -0.6868905425071716, 0.5114417672157288, -0.32982659339904785, 0.03864578530192375, 0.32292434573173523, 0.20913995802402496, -0.7874118089675903, -0.2974906265735626, -0.0523112490773201, -0.4946388006210327, -0.17548131942749023, -0.2066800743341446, -0.3002738952636719, -0.36999762058258057, -0.6212143898010254, 0.1479625254869461, 0.5750046968460083, -0.6111491322517395, 0.19755853712558746, 0.4340638518333435, 0.30020061135292053, -0.4753219485282898, -0.9638175964355469, -0.13159765303134918, 0.27899399399757385, -0.5017098784446716, 0.3297062814235687, -0.08963440358638763, -0.13343346118927002, 0.39242613315582275, -0.02482188120484352, -0.06924724578857422, -0.03593200817704201, 0.32132020592689514, 0.08102092891931534, -0.16179724037647247, -0.6113349199295044, 0.02414955385029316, -0.010575531981885433, 0.014421413652598858, -0.3706313967704773, 0.6643373370170593, 0.1020725667476654, -0.08544906973838806, -0.4763675928115845, 0.24120131134986877, 0.3454073369503021, 0.25368770956993103, 0.9117262959480286, 0.5686897039413452, -0.29802045226097107, -0.47178950905799866, -0.049911804497241974, -0.1038007140159607, -0.44318893551826477, 0.17168429493904114, -0.5836470723152161, -0.6885589361190796, 0.7122361063957214, -0.01446489617228508, 0.13608062267303467, 0.7015442848205566, 0.10558509826660156, -0.3341751992702484, 0.765238344669342, 0.1272132694721222, -0.2645225524902344, 0.31266310811042786, -0.6187874674797058, -0.185408353805542, -1.1061797142028809, -0.03533359616994858, -0.6825251579284668, -0.5295727849006653, -0.5281236171722412, -0.19638481736183167, 0.31031498312950134, 0.2772681713104248, -0.5076804161071777, 0.6216540336608887, -0.6884787082672119, 0.42950570583343506, 0.7258636355400085, 0.29619336128234863, 0.08874417841434479, 0.02629103884100914, -0.2001720815896988, 0.31605422496795654, -0.16708821058273315, -0.24092787504196167, 1.2896926403045654, 0.032413847744464874, 0.8537147045135498, 0.15016292035579681, 0.6736001372337341, 0.32908502221107483, 0.061688974499702454, -0.4234091341495514, 0.5832974314689636, -0.2615151107311249, -0.44991812109947205, -0.2987278997898102, -0.6400397419929504, -0.9375008940696716, 0.04954791069030762, -0.03762425109744072, -0.805574893951416, -0.07660821825265884, 0.12668094038963318, -0.09175640344619751, 0.5384642481803894, -0.641921877861023, 0.943414568901062, 0.1497492790222168, -0.1271333545446396, 0.31165722012519836, -0.6438587307929993, 0.42616939544677734, 0.11836182326078415, 0.2427491396665573, 0.006607716903090477, 0.05355944111943245, 1.1401512622833252, -0.9630757570266724, 0.5566222071647644, -0.34580692648887634, 0.055972304195165634, 0.3604171872138977, 0.1486249417066574, 0.4351732134819031, -0.030831899493932724, 0.020201126113533974, 0.3339628577232361, 0.5080429911613464, -0.4649432599544525, -0.17533379793167114, 0.5523988604545593, -1.046626091003418, -0.03978830575942993, -0.2365490198135376, -0.4027322232723236, 0.09780042618513107, 0.43215569853782654, 0.4193083345890045, 0.6413079500198364, -0.2118649184703827, 0.5515597462654114, 0.41191646456718445, -0.2222607433795929, 0.5170281529426575, 0.25331825017929077, -0.5210596919059753, -1.1440128087997437, 0.762148916721344, 0.17136280238628387, 0.223671555519104, 0.43157705664634705, 0.32668060064315796, -0.3025331199169159, -0.6503773927688599, -0.7611148357391357, 0.2162642776966095, -0.5486875772476196, -0.37995705008506775, -0.709294855594635, -0.23865769803524017, -0.9363541603088379, 0.06648651510477066, -0.4504225552082062, -0.6778982281684875, -0.3435021936893463, 0.1653844118118286, 0.7458348870277405, 0.6888644695281982, -0.1390039026737213, 0.45967337489128113, -1.0836015939712524, 0.34707698225975037, -0.24020512402057648, 0.4730512499809265, 0.03684559464454651, -0.5408604741096497, -0.5761094689369202, 0.3102627694606781, -0.2531505227088928, -0.9065383076667786, 0.5221631526947021, 0.00025481623015366495, 0.41479402780532837, 0.5368780493736267, 0.4355233907699585, 0.7955500483512878, -0.38192686438560486, 1.2023921012878418, 0.09666592627763748, -0.9194554686546326, 0.6527619957923889, -0.41895920038223267, 0.30583110451698303, 0.7629510760307312, 0.5137300491333008, -0.7180132865905762, -0.17070527374744415, -0.5525317788124084, -1.038116216659546, 0.9442334771156311, 0.13228043913841248, -0.32180601358413696, 0.0771673321723938, 0.41231417655944824, 0.48648160696029663, 0.08635488152503967, -0.47313180565834045, -0.4072197377681732, -0.5103535652160645, -0.5965706706047058, 0.09027080237865448, 0.03865640610456467, -0.4609277844429016, -0.2530243396759033, 0.8035224080085754, -0.4598408341407776, 0.45872288942337036, 0.38525259494781494, -0.3162778317928314, 0.01173295546323061, -0.12209669500589371, 0.6929189562797546, 0.49273282289505005, -0.4557337164878845, 0.0021705706603825092, -0.1743282526731491, -1.0202502012252808, 0.09877502173185349, -0.05884964019060135, -0.3809533715248108, -0.24603955447673798, 0.6529861688613892, 0.9673649668693542, -0.20234736800193787, -0.6166644096374512, 0.6453598737716675, -0.06297411024570465, -0.3345898985862732, -0.44600406289100647, -0.12407003343105316, 0.07379962503910065, 0.12729328870773315, 0.7192361950874329, -0.291275292634964, -0.010142703540623188, -0.40022823214530945, 0.5614110827445984, 0.08105231076478958, -0.22306755185127258, -0.5057557225227356, 0.8503894805908203, -0.049159158021211624, -0.25171202421188354, 1.0040847063064575, -0.09604337066411972, -0.2834428548812866, 0.48331478238105774, 0.5395364165306091, 0.7831937074661255, 0.10016337782144547, 0.17698799073696136, 0.4024355709552765, 0.4760258197784424, -0.07427342236042023, 0.4529264569282532, 0.08878625184297562, -0.8620740175247192, -0.18381735682487488, -0.9892792701721191, -0.3938688635826111, 0.40627792477607727, -0.936258852481842, 0.039109762758016586, -0.5184043645858765, 0.02730611339211464, 0.03178121894598007, -0.06938862800598145, -0.6162775158882141, 0.1874740868806839, -0.21896085143089294, 1.3141635656356812, -0.8760417699813843, 0.8411362171173096, 0.7679488658905029, -0.7041190266609192, -0.9614561796188354, -0.10582460463047028, 0.009745392017066479, -0.599471926689148, 0.3410603404045105, 0.17639628052711487, 0.9077984094619751, -0.140037402510643, -0.44491758942604065, -0.6497923731803894, 1.0426868200302124, 0.17149364948272705, -0.6310155987739563, 0.21553915739059448, 0.4839804172515869, 0.30304622650146484, -0.013003143481910229, 0.5866400003433228, 0.6204149127006531, 0.4926832616329193, -0.2690461277961731, -0.8170298337936401, 0.24117587506771088, -0.28261178731918335, 0.047321293503046036, 0.469348281621933, -0.7262095212936401, 1.2175824642181396, 0.11386798322200775, 0.055764708667993546, -0.03028087317943573, 0.6778826713562012, 0.055922847241163254, 0.0826137512922287, 0.7434878349304199, 0.9968599677085876, 0.5461480021476746, -0.26702681183815, 1.0484254360198975, -0.01326149981468916, 0.5936388969421387, 0.9015695452690125, -0.36407506465911865, 0.8305712342262268, 0.5400116443634033, -0.6028021574020386, 0.4921204745769501, 0.7139309644699097, -0.10908330976963043, 0.7030633091926575, 0.026887288317084312, -0.014945311471819878, 0.281136155128479, 0.3011910915374756, -0.2254001945257187, 0.16883942484855652, -0.005222204141318798, -0.36482861638069153, -0.1287614107131958, 0.33583864569664, 0.1547796130180359, -0.1359064280986786, -0.042888250201940536, 0.8609275817871094, -0.1567402184009552, -0.4193623960018158, 0.506600022315979, -0.1906120479106903, 0.7124112248420715, -0.6056042909622192, -0.0350092351436615, -0.27014097571372986, 0.3545515537261963, -0.24906739592552185, -1.1108911037445068, 0.27936241030693054, -0.14433206617832184, -0.3583959639072418, -0.2005172073841095, 0.4800487756729126, -0.3523813784122467, -0.18696987628936768, 0.24236628413200378, -0.09587115049362183, 0.37096333503723145, -0.19907279312610626, -0.4205368459224701, 0.32536712288856506, 0.5484026670455933, -0.8211542963981628, 0.8799977898597717, 0.5631805658340454, 0.0048814257606863976, 0.3182695806026459, 0.9726626873016357, 0.24664261937141418, 0.2873038351535797, -0.13939087092876434, 1.0205729007720947, -1.0967823266983032, -0.6574410200119019, -0.4760691821575165, 0.7851874828338623, -0.4796932637691498, -0.6626566052436829, 0.6300784945487976, 1.1407264471054077, 1.2506399154663086, -0.32505011558532715, 0.9722813367843628, -0.4991329312324524, 0.6458054780960083, -0.44349876046180725, 0.8957318067550659, -0.48836493492126465, -0.3185933828353882, -0.15107496082782745, -0.7808725237846375, 0.09100493043661118, 0.5553200244903564, 0.40351971983909607, -0.36540132761001587, 0.9152722358703613, 0.6849389672279358, -0.14254029095172882, 0.4068099558353424, 0.170614555478096, 0.39532971382141113, 0.4796183407306671, 0.3749890625476837, 0.563775897026062, -0.9098677635192871, 0.7105555534362793, -0.8571221232414246, -0.29167866706848145, -0.030796756967902184, -0.8689247965812683, -0.694697380065918, -0.7735888957977295, -0.23993995785713196, -0.6727054119110107, -0.3698229491710663, 0.956680953502655, 0.6238878965377808, -1.0048949718475342, -0.19935646653175354, 0.13732317090034485, -0.27422034740448, -0.4261305630207062, -0.32428228855133057, 0.5038455724716187, 0.1370117962360382, -0.5632359385490417, 0.5793099999427795, -0.12077058851718903, 0.005132620222866535, -0.12415677309036255, -0.0408301018178463, -0.39752134680747986, -0.2011396735906601, 0.5225236415863037, 0.10879050940275192, -0.28879106044769287, -0.4494885504245758, -0.35427817702293396, -0.03556977957487106, 0.046731896698474884, 0.7242138385772705, -0.7882351875305176, 0.10969827324151993, 0.6811700463294983, 0.6217496991157532, 0.7268927693367004, 0.15313220024108887, 0.18679235875606537, -0.8992977142333984, 0.3199722170829773, 0.027809420600533485, 0.38104167580604553, 0.0036205712240189314, -0.28735223412513733, 0.8051674962043762, 0.6162811517715454, -0.4598323702812195, -1.1889704465866089, -0.3521411418914795, -1.3360849618911743, -0.3086235821247101, 0.9537221789360046, -0.21557916700839996, -0.7763829231262207, 0.1529858410358429, -0.18651650846004486, 0.36365991830825806, -0.5770309567451477, 0.2623469829559326, 0.4684883654117584, -0.1324497014284134, -0.062314316630363464, -0.4921281337738037, 0.341046005487442, -0.2753940224647522, -0.7960866093635559, 0.12169395387172699, 0.47707149386405945, 0.6146796941757202, 0.35079073905944824, 0.6357987523078918, -0.17286361753940582, -0.09738508611917496, 0.5207881927490234, 0.5830594897270203, -0.32031702995300293, -0.1739015281200409, 0.007662083487957716, 0.43988412618637085, -0.48936888575553894, -0.5603460669517517 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
hf-internal-testing/librispeech_asr_demo
hf-internal-testing
2022-04-07T07:06:24Z
6,676
2
null
[ "region:us" ]
2022-04-07T07:06:24Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
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
setimes
null
2022-11-03T16:47:00Z
6,672
0
null
[ "task_categories:translation", "annotations_creators:found", "language_creators:found", "multilinguality:multilingual", "size_categories:100K<n<1M", "source_datasets:original", "language:bg", "language:bs", "language:el", "language:en", "language:hr", "language:mk", "language:ro", "language:sq", "language:sr", "language:tr", "license:cc-by-sa-4.0", "region:us" ]
2022-11-03T16:47:00Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- pretty_name: SETimes – A Parallel Corpus of English and South-East European Languages annotations_creators: - found language_creators: - found language: - bg - bs - el - en - hr - mk - ro - sq - sr - tr license: - cc-by-sa-4.0 multilinguality: - multilingual size_categories: - 100K<n<1M source_datasets: - original task_categories: - translation task_ids: [] paperswithcode_id: null dataset_info: - config_name: bg-bs features: - name: id dtype: string - name: translation dtype: translation: languages: - bg - bs splits: - name: train num_bytes: 53816914 num_examples: 136009 download_size: 15406039 dataset_size: 53816914 - config_name: bg-el features: - name: id dtype: string - name: translation dtype: translation: languages: - bg - el splits: - name: train num_bytes: 115127431 num_examples: 212437 download_size: 28338218 dataset_size: 115127431 - config_name: bs-el features: - name: id dtype: string - name: translation dtype: translation: languages: - bs - el splits: - name: train num_bytes: 57102373 num_examples: 137602 download_size: 16418250 dataset_size: 57102373 - config_name: bg-en features: - name: id dtype: string - name: translation dtype: translation: languages: - bg - en splits: - name: train num_bytes: 84421414 num_examples: 213160 download_size: 23509552 dataset_size: 84421414 - config_name: bs-en features: - name: id dtype: string - name: translation dtype: translation: languages: - bs - en splits: - name: train num_bytes: 38167846 num_examples: 138387 download_size: 13477699 dataset_size: 38167846 - config_name: el-en features: - name: id dtype: string - name: translation dtype: translation: languages: - el - en splits: - name: train num_bytes: 95011154 num_examples: 227168 download_size: 26637317 dataset_size: 95011154 - config_name: bg-hr features: - name: id dtype: string - name: translation dtype: translation: languages: - bg - hr splits: - name: train num_bytes: 81774321 num_examples: 203465 download_size: 23165617 dataset_size: 81774321 - config_name: bs-hr features: - name: id dtype: string - name: translation dtype: translation: languages: - bs - hr splits: - name: train num_bytes: 38742816 num_examples: 138402 download_size: 13887348 dataset_size: 38742816 - config_name: el-hr features: - name: id dtype: string - name: translation dtype: translation: languages: - el - hr splits: - name: train num_bytes: 86642323 num_examples: 205008 download_size: 24662936 dataset_size: 86642323 - config_name: en-hr features: - name: id dtype: string - name: translation dtype: translation: languages: - en - hr splits: - name: train num_bytes: 57995502 num_examples: 205910 download_size: 20238640 dataset_size: 57995502 - config_name: bg-mk features: - name: id dtype: string - name: translation dtype: translation: languages: - bg - mk splits: - name: train num_bytes: 110119623 num_examples: 207169 download_size: 26507432 dataset_size: 110119623 - config_name: bs-mk features: - name: id dtype: string - name: translation dtype: translation: languages: - bs - mk splits: - name: train num_bytes: 53972847 num_examples: 132779 download_size: 15267045 dataset_size: 53972847 - config_name: el-mk features: - name: id dtype: string - name: translation dtype: translation: languages: - el - mk splits: - name: train num_bytes: 115285053 num_examples: 207262 download_size: 28103006 dataset_size: 115285053 - config_name: en-mk features: - name: id dtype: string - name: translation dtype: translation: languages: - en - mk splits: - name: train num_bytes: 84735835 num_examples: 207777 download_size: 23316519 dataset_size: 84735835 - config_name: hr-mk features: - name: id dtype: string - name: translation dtype: translation: languages: - hr - mk splits: - name: train num_bytes: 82230621 num_examples: 198876 download_size: 23008021 dataset_size: 82230621 - config_name: bg-ro features: - name: id dtype: string - name: translation dtype: translation: languages: - bg - ro splits: - name: train num_bytes: 88058251 num_examples: 210842 download_size: 24592883 dataset_size: 88058251 - config_name: bs-ro features: - name: id dtype: string - name: translation dtype: translation: languages: - bs - ro splits: - name: train num_bytes: 40894475 num_examples: 137365 download_size: 14272958 dataset_size: 40894475 - config_name: el-ro features: - name: id dtype: string - name: translation dtype: translation: languages: - el - ro splits: - name: train num_bytes: 93167572 num_examples: 212359 download_size: 26164582 dataset_size: 93167572 - config_name: en-ro features: - name: id dtype: string - name: translation dtype: translation: languages: - en - ro splits: - name: train num_bytes: 63354811 num_examples: 213047 download_size: 21549096 dataset_size: 63354811 - config_name: hr-ro features: - name: id dtype: string - name: translation dtype: translation: languages: - hr - ro splits: - name: train num_bytes: 61696975 num_examples: 203777 download_size: 21276645 dataset_size: 61696975 - config_name: mk-ro features: - name: id dtype: string - name: translation dtype: translation: languages: - mk - ro splits: - name: train num_bytes: 88449831 num_examples: 206168 download_size: 24409734 dataset_size: 88449831 - config_name: bg-sq features: - name: id dtype: string - name: translation dtype: translation: languages: - bg - sq splits: - name: train num_bytes: 87552911 num_examples: 211518 download_size: 24385772 dataset_size: 87552911 - config_name: bs-sq features: - name: id dtype: string - name: translation dtype: translation: languages: - bs - sq splits: - name: train num_bytes: 40407355 num_examples: 137953 download_size: 14097831 dataset_size: 40407355 - config_name: el-sq features: - name: id dtype: string - name: translation dtype: translation: languages: - el - sq splits: - name: train num_bytes: 98779961 num_examples: 226577 download_size: 27676986 dataset_size: 98779961 - config_name: en-sq features: - name: id dtype: string - name: translation dtype: translation: languages: - en - sq splits: - name: train num_bytes: 66898163 num_examples: 227516 download_size: 22718906 dataset_size: 66898163 - config_name: hr-sq features: - name: id dtype: string - name: translation dtype: translation: languages: - hr - sq splits: - name: train num_bytes: 61296829 num_examples: 205044 download_size: 21160637 dataset_size: 61296829 - config_name: mk-sq features: - name: id dtype: string - name: translation dtype: translation: languages: - mk - sq splits: - name: train num_bytes: 88053621 num_examples: 206601 download_size: 24241420 dataset_size: 88053621 - config_name: ro-sq features: - name: id dtype: string - name: translation dtype: translation: languages: - ro - sq splits: - name: train num_bytes: 66845652 num_examples: 212320 download_size: 22515258 dataset_size: 66845652 - config_name: bg-sr features: - name: id dtype: string - name: translation dtype: translation: languages: - bg - sr splits: - name: train num_bytes: 84698624 num_examples: 211172 download_size: 24007151 dataset_size: 84698624 - config_name: bs-sr features: - name: id dtype: string - name: translation dtype: translation: languages: - bs - sr splits: - name: train num_bytes: 38418660 num_examples: 135945 download_size: 13804698 dataset_size: 38418660 - config_name: el-sr features: - name: id dtype: string - name: translation dtype: translation: languages: - el - sr splits: - name: train num_bytes: 95035416 num_examples: 224311 download_size: 27108001 dataset_size: 95035416 - config_name: en-sr features: - name: id dtype: string - name: translation dtype: translation: languages: - en - sr splits: - name: train num_bytes: 63670296 num_examples: 225169 download_size: 22279147 dataset_size: 63670296 - config_name: hr-sr features: - name: id dtype: string - name: translation dtype: translation: languages: - hr - sr splits: - name: train num_bytes: 58560895 num_examples: 203989 download_size: 20791317 dataset_size: 58560895 - config_name: mk-sr features: - name: id dtype: string - name: translation dtype: translation: languages: - mk - sr splits: - name: train num_bytes: 85333924 num_examples: 207295 download_size: 23878419 dataset_size: 85333924 - config_name: ro-sr features: - name: id dtype: string - name: translation dtype: translation: languages: - ro - sr splits: - name: train num_bytes: 63899703 num_examples: 210612 download_size: 22113558 dataset_size: 63899703 - config_name: sq-sr features: - name: id dtype: string - name: translation dtype: translation: languages: - sq - sr splits: - name: train num_bytes: 67503584 num_examples: 224595 download_size: 23330640 dataset_size: 67503584 - config_name: bg-tr features: - name: id dtype: string - name: translation dtype: translation: languages: - bg - tr splits: - name: train num_bytes: 86915746 num_examples: 206071 download_size: 23915651 dataset_size: 86915746 - config_name: bs-tr features: - name: id dtype: string - name: translation dtype: translation: languages: - bs - tr splits: - name: train num_bytes: 40280655 num_examples: 133958 download_size: 13819443 dataset_size: 40280655 - config_name: el-tr features: - name: id dtype: string - name: translation dtype: translation: languages: - el - tr splits: - name: train num_bytes: 91637159 num_examples: 207029 download_size: 25396713 dataset_size: 91637159 - config_name: en-tr features: - name: id dtype: string - name: translation dtype: translation: languages: - en - tr splits: - name: train num_bytes: 62858968 num_examples: 207678 download_size: 21049989 dataset_size: 62858968 - config_name: hr-tr features: - name: id dtype: string - name: translation dtype: translation: languages: - hr - tr splits: - name: train num_bytes: 61188085 num_examples: 199260 download_size: 20809412 dataset_size: 61188085 - config_name: mk-tr features: - name: id dtype: string - name: translation dtype: translation: languages: - mk - tr splits: - name: train num_bytes: 87536870 num_examples: 203231 download_size: 23781873 dataset_size: 87536870 - config_name: ro-tr features: - name: id dtype: string - name: translation dtype: translation: languages: - ro - tr splits: - name: train num_bytes: 66726535 num_examples: 206104 download_size: 22165394 dataset_size: 66726535 - config_name: sq-tr features: - name: id dtype: string - name: translation dtype: translation: languages: - sq - tr splits: - name: train num_bytes: 66371734 num_examples: 207107 download_size: 22014678 dataset_size: 66371734 - config_name: sr-tr features: - name: id dtype: string - name: translation dtype: translation: languages: - sr - tr splits: - name: train num_bytes: 63371906 num_examples: 205993 download_size: 21602038 dataset_size: 63371906 --- # Dataset Card for SETimes – A Parallel Corpus of English and South-East European Languages ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** http://nlp.ffzg.hr/resources/corpora/setimes/ - **Repository:** None - **Paper:** None - **Leaderboard:** [More Information Needed] - **Point of Contact:** [More Information Needed] ### Dataset Summary [More Information Needed] ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances Here are some examples of questions and facts: ### Data Fields [More Information Needed] ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data [More Information Needed] #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations [More Information Needed] #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information [More Information Needed] ### Contributions Thanks to [@abhishekkrthakur](https://github.com/abhishekkrthakur) for adding this dataset.
[ -0.5278050303459167, -0.3506675064563751, 0.10617436468601227, 0.3860802948474884, -0.1602816879749298, 0.2268940508365631, -0.6748906970024109, -0.3581985533237457, 0.6044951677322388, 0.6748165488243103, -0.7961093783378601, -1.031823992729187, -0.6878775358200073, 0.37257081270217896, -0.11366208642721176, 1.105509638786316, -0.20516395568847656, 0.016688721254467964, -0.14737536013126373, -0.44362151622772217, -0.3364311754703522, -0.32683849334716797, -0.4801793694496155, -0.15301434695720673, 0.3916724622249603, 0.8629775643348694, 0.7541444301605225, 0.9931045174598694, 0.6652543544769287, 0.29620257019996643, 0.09623845666646957, 0.08552077412605286, -0.3870178163051605, -0.04508541151881218, -0.32035407423973083, -0.4104442298412323, -0.5107208490371704, 0.0846821665763855, 0.7940865755081177, 0.894388735294342, 0.2147112935781479, 0.7826341390609741, 0.16715119779109955, 0.5481740236282349, -0.46819034218788147, 0.6971055269241333, -0.29495248198509216, 0.05323158577084541, -0.8228635787963867, -0.2729240357875824, -0.13876873254776, -0.5159197449684143, -0.19707311689853668, -0.6522988677024841, 0.19044208526611328, 0.14541345834732056, 0.9715322852134705, 0.11053351312875748, -0.054392170161008835, -0.27241185307502747, -0.615395724773407, 0.9451055526733398, -0.7435713410377502, 0.08305202424526215, 0.7902079224586487, 0.259901225566864, 0.18798288702964783, -1.015005111694336, -0.5508947372436523, 0.2144445776939392, -0.21055105328559875, 0.3006932735443115, -0.05939126014709473, -0.34412243962287903, 0.6997867822647095, 0.5310174822807312, -0.6291186213493347, -0.0976998507976532, -0.9239119291305542, -0.17865179479122162, 0.6948329210281372, 0.42986974120140076, 0.21617628633975983, -0.2608782649040222, 0.06597090512514114, -0.15781672298908234, -0.6163839101791382, 0.06027275323867798, 0.6173179745674133, 0.5904723405838013, -0.6925656795501709, 0.8655937910079956, -0.1619526892900467, 0.7283959984779358, -0.21042302250862122, 0.022199071943759918, 0.7512868642807007, -0.7156572341918945, 0.1638445407152176, -0.13641338050365448, 0.8327659368515015, 0.5015738010406494, 0.17109017074108124, 0.08795315772294998, -0.013524927198886871, -0.03377734497189522, -0.08563265949487686, -0.6905369758605957, -0.2204565405845642, 0.6745522618293762, -0.7079260349273682, -0.23710064589977264, 0.2118903398513794, -1.145022988319397, 0.0033020058181136847, -0.6150653958320618, -0.008947848342359066, -0.3750680685043335, -0.14768436551094055, -0.1339147984981537, -0.19499985873699188, 0.15628227591514587, -0.1351505070924759, -0.7363457679748535, 0.5091700553894043, 0.547005295753479, 0.8211641907691956, -0.08789701759815216, -0.451490193605423, -0.14985622465610504, 0.39796182513237, -0.11373184621334076, 0.6020304560661316, -0.5861116647720337, -0.5011406540870667, 0.2075830101966858, 0.48150140047073364, -0.0517423041164875, -0.23079077899456024, 0.9246392846107483, -0.1226535513997078, 0.610619306564331, -0.6670552492141724, -0.5078620910644531, 0.026281995698809624, 0.23208919167518616, -0.9205126762390137, 1.2072426080703735, 0.10274238139390945, -1.2149721384048462, 0.3027940094470978, -1.1017872095108032, -0.44849130511283875, 0.37466686964035034, -0.33972638845443726, -0.24249127507209778, -0.4231870472431183, 0.1983862817287445, 0.49320366978645325, -0.46306896209716797, 0.08986362814903259, -0.24690021574497223, -0.23472291231155396, 0.07701679319143295, -0.10206221044063568, 1.430088758468628, 0.3783651888370514, -0.29961979389190674, 0.1284269243478775, -0.8521125316619873, 0.031186005100607872, 0.23942847549915314, -0.16415664553642273, -0.22064156830310822, -0.14115069806575775, 0.46546614170074463, 0.07635423541069031, 0.6941347122192383, -0.4977306127548218, -0.0052914745174348354, -0.06951568275690079, 0.2981894314289093, 0.5528416633605957, -0.0072848317213356495, 0.22565029561519623, -0.5708648562431335, 0.6433769464492798, 0.1499941200017929, 0.20569893717765808, -0.006068511866033077, -0.3990350067615509, -0.8077713847160339, -0.28586387634277344, 0.3387351930141449, 0.9640153646469116, -0.7288206815719604, 0.8586483597755432, -0.5995071530342102, -0.6589120030403137, -0.6431978344917297, 0.07908057421445847, 0.44476714730262756, 0.4195825457572937, 0.37683960795402527, -0.17487242817878723, -0.9750913977622986, -0.9516581296920776, 0.17717066407203674, -0.05793841928243637, 0.16458062827587128, 0.549349844455719, 0.8090448975563049, 0.046318087726831436, 0.8815377354621887, -0.6614729762077332, -0.06972381472587585, -0.3207741379737854, -0.028026849031448364, 0.4086665213108063, 0.6006956100463867, 0.6158443093299866, -0.7639475464820862, -0.5381317734718323, -0.22580941021442413, -1.0188262462615967, -0.41456127166748047, 0.19828148186206818, -0.15475380420684814, 0.1942368745803833, 0.5159285068511963, -0.24082447588443756, 0.4944149851799011, 0.6641538143157959, -0.5818938612937927, 0.6422688364982605, 0.007052242290228605, 0.21140827238559723, -1.655898094177246, 0.43423977494239807, -0.17018982768058777, -0.02032732032239437, -0.2512860596179962, -0.10916689783334732, -0.010863899253308773, -0.13104182481765747, -0.3632875978946686, 0.7229732871055603, -0.3475732207298279, 0.09270457923412323, 0.0629090815782547, 0.06851649284362793, -0.013728088699281216, 0.34381741285324097, -0.09706707298755646, 0.97586590051651, 0.7203993201255798, -0.4560641646385193, 0.5688932538032532, 0.5225622057914734, -0.36822831630706787, 0.6919675469398499, -0.8758071660995483, -0.14888057112693787, -0.25196805596351624, 0.11918484419584274, -0.7838283181190491, -0.3572537899017334, 0.4881148636341095, -0.5377182364463806, 0.22835586965084076, -0.10781672596931458, -0.7813982367515564, -0.5114580988883972, -0.5313201546669006, 0.29889416694641113, 0.26363372802734375, -0.29053929448127747, 0.17868417501449585, 0.7703723907470703, -0.24739962816238403, -0.6783242225646973, -0.837935745716095, 0.16178256273269653, -0.3074326813220978, -0.693869948387146, 0.5332239270210266, -0.29445087909698486, -0.44872772693634033, 0.2998231053352356, 0.46278637647628784, 0.025149038061499596, -0.2214924395084381, 0.3064630627632141, 0.18099384009838104, -0.11021017283201218, 0.059379592537879944, -0.028892170637845993, -0.13910283148288727, -0.17386411130428314, -0.16733814775943756, 0.7410600781440735, -0.16232995688915253, -0.18524102866649628, -0.3544941842556, 0.6654009222984314, 0.2898476719856262, -0.3571165204048157, 0.8270825743675232, 0.9864611029624939, -0.5171108841896057, 0.03763662651181221, -0.4939020276069641, -0.11745192110538483, -0.43104416131973267, 0.14871437847614288, -0.3912143111228943, -0.8290358781814575, 1.121048927307129, 0.3106502890586853, 0.3646559417247772, 0.7437648773193359, 0.7284019589424133, 0.07966813445091248, 0.47434380650520325, 0.5054125785827637, -0.24061864614486694, 0.5622727274894714, -0.5387353897094727, -0.03199777752161026, -0.7409030795097351, -0.23242418467998505, -0.8900999426841736, -0.3938913941383362, -0.9935391545295715, -0.39779090881347656, -0.037402451038360596, -0.13613338768482208, -0.30600252747535706, 0.732666552066803, -0.39757275581359863, 0.582208514213562, 0.8899643421173096, 0.012163150124251842, 0.13139104843139648, -0.03373214602470398, -0.04568822681903839, -0.2300068885087967, -0.6575689315795898, -0.7854509353637695, 1.4465492963790894, 0.23257505893707275, 0.35031989216804504, 0.14748892188072205, 0.8927818536758423, 0.25532013177871704, -0.02433268167078495, -0.28184348344802856, 0.6640180945396423, -0.3794316053390503, -0.7536307573318481, -0.401776522397995, -0.2957778871059418, -1.0667814016342163, -0.26094821095466614, -0.13917836546897888, -0.7228990793228149, 0.3695603609085083, 0.004084442276507616, -0.20505066215991974, 0.28118467330932617, -0.5960749983787537, 1.0212253332138062, 0.12659236788749695, -0.48503023386001587, -0.12329894304275513, -0.9310382008552551, 0.13179397583007812, 0.04552537202835083, 0.4895884096622467, -0.2924814224243164, -0.15189208090305328, 1.2799545526504517, -0.4866669178009033, 1.0375157594680786, -0.07614663243293762, 0.36027178168296814, 0.4864416718482971, -0.2838297486305237, 0.3642886281013489, 0.2512494623661041, -0.1390308439731598, 0.47340404987335205, 0.17350246012210846, -0.5892501473426819, -0.18704605102539062, 0.8196396231651306, -0.8234694004058838, -0.16925130784511566, -0.4714006781578064, -0.7529223561286926, -0.0031432274263352156, 0.4065878391265869, 0.3826603889465332, 0.3280285894870758, -0.12613986432552338, 0.3712029755115509, 0.4682430028915405, -0.14124959707260132, 0.5035659074783325, 0.3324720859527588, -0.20803044736385345, -0.6054399609565735, 0.7330834865570068, 0.4077143669128418, -0.09454432874917984, 0.30408647656440735, -0.012412511743605137, -0.26718467473983765, -0.32607796788215637, -0.3093324303627014, 0.3653869926929474, -0.6707463264465332, -0.09767528623342514, -0.4994764029979706, -0.3000718653202057, -0.8042172193527222, -0.07966727018356323, -0.07599449902772903, -0.7984818816184998, -0.36267855763435364, -0.38255852460861206, 0.6607081890106201, 0.21446692943572998, -0.5541535019874573, 0.29084229469299316, -0.7706659436225891, 0.16864873468875885, -0.10096515715122223, 0.47430506348609924, -0.3998846113681793, -0.344760924577713, -0.4721118211746216, 0.014134850353002548, -0.1614505499601364, -0.7923840880393982, 0.35628655552864075, 0.017469577491283417, 0.6892531514167786, 0.2024376392364502, 0.04993399605154991, 0.592616856098175, -0.39431455731391907, 1.0058964490890503, -0.16522035002708435, -0.6390523910522461, 0.6537616848945618, -0.5610504150390625, 0.3823917508125305, 0.8912366032600403, 0.416525661945343, -0.7610088586807251, -0.19040362536907196, -0.9460777640342712, -1.1175800561904907, 0.83943772315979, 0.34286707639694214, 0.1975277066230774, -0.2447064071893692, 0.019729310646653175, 0.08576256781816483, 0.1893196403980255, -0.6994399428367615, -0.7675459980964661, -0.09285445511341095, -0.47749829292297363, -0.012220986187458038, -0.32449230551719666, -0.560461163520813, -0.3484327793121338, 0.7947078347206116, 0.14285245537757874, 0.23555828630924225, -0.09528536349534988, 0.16415467858314514, -0.06031869724392891, 0.21721279621124268, 0.45010894536972046, 0.8583768010139465, -0.3872331380844116, -0.043634653091430664, -0.04922856390476227, -0.6553857326507568, -0.4555748403072357, 0.34293144941329956, -0.29468223452568054, 0.1367466002702713, 0.5230724215507507, 0.8328953385353088, -0.009526540525257587, -0.6147210597991943, 0.47835466265678406, 0.0805717185139656, -0.14435982704162598, -0.9339019656181335, -0.3403785824775696, -0.025818439200520515, 0.23199166357517242, 0.12996821105480194, -0.2558082640171051, -0.054165665060281754, -0.413648784160614, 0.3089973032474518, -0.03721537068486214, -0.3107265830039978, -0.33002692461013794, 0.5162999033927917, 0.24041640758514404, -0.341979056596756, 0.5117475390434265, -0.2346072494983673, -0.29228129982948303, 0.7284209132194519, 0.4885726869106293, 0.9093040227890015, -0.0992727130651474, 0.22093866765499115, 0.6299824714660645, 0.48917171359062195, -0.030192766338586807, 1.1108912229537964, 0.0859411209821701, -0.7920588254928589, -0.3210625946521759, -0.5316393375396729, -0.31739306449890137, 0.12281155586242676, -0.8165550231933594, 0.5354017019271851, -0.5481231212615967, -0.23028284311294556, 0.08348223567008972, 0.16971591114997864, -1.0594828128814697, 0.0756511315703392, -0.14822636544704437, 0.9499290585517883, -1.0815699100494385, 0.723002552986145, 0.7560402154922485, -0.9058956503868103, -0.6346227526664734, -0.21242716908454895, 0.03584420308470726, -0.7725452780723572, 0.5109138488769531, -0.07106111198663712, 0.5428550839424133, -0.056353311985731125, -0.806489884853363, -1.056082010269165, 1.3156782388687134, 0.07946129888296127, -0.30753424763679504, 0.1702689379453659, 0.33995747566223145, 0.4853489398956299, -0.5236306190490723, 0.023831313475966454, 0.6351609826087952, 0.7858836054801941, -0.0013610433088615537, -0.87735515832901, 0.1174648106098175, -0.534228503704071, -0.15207412838935852, 0.23670846223831177, -0.5681530237197876, 0.8714562654495239, 0.053952429443597794, -0.06602165102958679, -0.19312584400177002, 0.6450276374816895, 0.42181676626205444, 0.36710962653160095, 0.34419023990631104, 0.751864492893219, 0.7417914271354675, -0.22874540090560913, 0.9593785405158997, -0.7343445420265198, 0.257973313331604, 1.4402515888214111, -0.06223207712173462, 0.7661985158920288, 0.5239334106445312, -0.49669376015663147, 0.3935629725456238, 0.6673583984375, -0.313750296831131, 0.24693448841571808, 0.2092265486717224, -0.05331937223672867, 0.015333997085690498, -0.48016923666000366, -0.5564814209938049, 0.3901687562465668, 0.643514096736908, -0.5712013244628906, -0.10104027390480042, -0.08509793877601624, 0.3597053587436676, 0.19519448280334473, -0.3364924192428589, 0.4587656855583191, -0.12234096229076385, -0.37156543135643005, 0.009782117791473866, 0.013386787846684456, 0.5465356707572937, -0.6074404120445251, 0.031914710998535156, -0.16619446873664856, 0.0661882683634758, -0.4628771245479584, -1.147779941558838, 0.7368202209472656, 0.028178628534078598, -0.49588286876678467, -0.10716907680034637, 0.43044018745422363, -0.5839443206787109, -0.9625471234321594, 0.06340087950229645, 0.5544871091842651, 0.3281894028186798, 0.4297846853733063, -0.8015406727790833, 0.11635256558656693, 0.02711683325469494, -0.21724486351013184, -0.022055556997656822, 0.5009556412696838, -0.32781580090522766, 0.3633608818054199, 0.7100504636764526, 0.3220504820346832, 0.11256122589111328, 0.3321392834186554, 0.6439720392227173, -0.8089205026626587, -0.4336628317832947, -0.5474569797515869, 0.5843062400817871, -0.5791984796524048, -0.48876646161079407, 0.9242708086967468, 0.9583303928375244, 1.1375051736831665, -0.0072293090634047985, 1.0819193124771118, -0.6022125482559204, 1.016587734222412, -0.3446505665779114, 0.8213801980018616, -0.3572048544883728, 0.10749535262584686, -0.26942700147628784, -0.9570127129554749, -0.5234000086784363, 0.38766375184059143, -0.4493115246295929, -0.007301350124180317, 0.7987385392189026, 0.7974287867546082, -0.01733582280576229, 0.1454920768737793, 0.07523055374622345, 0.27496105432510376, 0.08268105983734131, 0.298347145318985, 0.23132921755313873, -0.5131184458732605, 0.637990415096283, -0.6669188141822815, -0.22447800636291504, 0.1391194611787796, -0.8581163287162781, -0.8676239848136902, -0.9970318078994751, -0.5242717266082764, -0.625697672367096, 0.02829388715326786, 1.2071348428726196, 0.358598917722702, -1.1689144372940063, -0.5748752355575562, 0.30722862482070923, 0.01694159023463726, -0.1704036444425583, -0.2678864896297455, 0.83692866563797, -0.1487055867910385, -1.0106841325759888, -0.06146867945790291, 0.04157847538590431, -0.05095351114869118, -0.14855174720287323, -0.007131810300052166, -0.3449958264827728, -0.1789064109325409, 0.3206076920032501, 0.5251781344413757, -0.4615706503391266, -0.2472999095916748, -0.125076562166214, -0.05181137099862099, -0.1806388646364212, 0.6337763071060181, -0.3344428241252899, 0.24460673332214355, 0.7818941473960876, 0.27122753858566284, 0.4032478332519531, -0.29014259576797485, 0.39599233865737915, -0.8554128408432007, 0.4999508857727051, 0.280597984790802, 0.6811037063598633, 0.3593326508998871, -0.26820850372314453, 0.9203127026557922, 0.35680416226387024, -0.508476734161377, -0.7046269774436951, 0.08664700388908386, -1.2664401531219482, -0.006924675777554512, 1.3232804536819458, -0.19219647347927094, -0.31793707609176636, -0.3592524826526642, -0.16676849126815796, 0.41715312004089355, -0.5152608752250671, 0.5885199904441833, 0.9773699045181274, 0.33725446462631226, 0.002078880788758397, -0.5720228552818298, 0.42695924639701843, -0.027166828513145447, -1.009269118309021, 0.13531948626041412, 0.5281217694282532, 0.15824198722839355, 0.31839263439178467, 0.6848834156990051, -0.6452129483222961, 0.03529667481780052, 0.009591787122189999, 0.26149266958236694, -0.14044339954853058, -0.14841344952583313, -0.08564531058073044, -0.031043963506817818, -0.27370184659957886, -0.4157491624355316 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
hate_speech_offensive
null
2023-01-25T14:31:41Z
6,637
9
hate-speech-and-offensive-language
[ "task_categories:text-classification", "annotations_creators:expert-generated", "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:unknown", "hate-speech-detection", "arxiv:1703.04009", "region:us" ]
2023-01-25T14:31:41Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated - crowdsourced language_creators: - found language: - en license: - unknown multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - text-classification task_ids: [] paperswithcode_id: hate-speech-and-offensive-language pretty_name: Hate Speech and Offensive Language tags: - hate-speech-detection dataset_info: features: - name: count dtype: int64 - name: hate_speech_count dtype: int64 - name: offensive_language_count dtype: int64 - name: neither_count dtype: int64 - name: class dtype: class_label: names: '0': hate speech '1': offensive language '2': neither - name: tweet dtype: string splits: - name: train num_bytes: 3207826 num_examples: 24783 download_size: 2546446 dataset_size: 3207826 train-eval-index: - config: default task: text-classification task_id: multi_class_classification splits: train_split: train col_mapping: tweet: text label: target metrics: - type: accuracy name: Accuracy - type: f1 name: F1 macro args: average: macro - type: f1 name: F1 micro args: average: micro - type: f1 name: F1 weighted args: average: weighted - type: precision name: Precision macro args: average: macro - type: precision name: Precision micro args: average: micro - type: precision name: Precision weighted args: average: weighted - type: recall name: Recall macro args: average: macro - type: recall name: Recall micro args: average: micro - type: recall name: Recall weighted args: average: weighted --- # Dataset Card for [Dataset Name] ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** https://github.com/t-davidson/hate-speech-and-offensive-language - **Repository:** https://github.com/t-davidson/hate-speech-and-offensive-language - **Paper:** https://arxiv.org/abs/1703.04009 - **Leaderboard:** - **Point of Contact:** https://docs.google.com/forms/d/e/1FAIpQLSdrPNlfVBlqxun2tivzAtsZaOoPC5YYMocn-xscCgeRakLXHg/viewform?usp=pp_url&entry.1506871634&entry.147453066&entry.1390333885&entry.516829772 ### Dataset Summary An annotated dataset for hate speech and offensive language detection on tweets. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages English (`en`) ## Dataset Structure ### Data Instances ``` { "count": 3, "hate_speech_annotation": 0, "offensive_language_annotation": 0, "neither_annotation": 3, "label": 2, # "neither" "tweet": "!!! RT @mayasolovely: As a woman you shouldn't complain about cleaning up your house. &amp; as a man you should always take the trash out...") } ``` ### Data Fields ``` count: (Integer) number of users who coded each tweet (min is 3, sometimes more users coded a tweet when judgments were determined to be unreliable, hate_speech_annotation: (Integer) number of users who judged the tweet to be hate speech, offensive_language_annotation: (Integer) number of users who judged the tweet to be offensive, neither_annotation: (Integer) number of users who judged the tweet to be neither offensive nor non-offensive, label: (Class Label) class label for majority of CF users (0: 'hate-speech', 1: 'offensive-language' or 2: 'neither'), tweet: (string) ``` ### Data Splits This dataset is not splitted, only the train split is available. ## 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 Usernames are not anonymized in the dataset. ## 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 ### Citation Information @inproceedings{hateoffensive, title = {Automated Hate Speech Detection and the Problem of Offensive Language}, author = {Davidson, Thomas and Warmsley, Dana and Macy, Michael and Weber, Ingmar}, booktitle = {Proceedings of the 11th International AAAI Conference on Web and Social Media}, series = {ICWSM '17}, year = {2017}, location = {Montreal, Canada}, pages = {512-515} } ### Contributions Thanks to [@hugoabonizio](https://github.com/hugoabonizio) for adding this dataset.
[ -0.3701755702495575, -0.7054367065429688, -0.09137918800115585, 0.22706280648708344, -0.18695642054080963, 0.3538232743740082, -0.4639403223991394, -0.46580928564071655, 0.3568755090236664, 0.24024882912635803, -0.5927736163139343, -1.1859822273254395, -0.9332757592201233, 0.05919914320111275, -0.43575727939605713, 1.08806574344635, 0.18669246137142181, -0.27750399708747864, 0.2771865725517273, -0.3412536084651947, -0.1645696610212326, -0.4048996865749359, -0.566790759563446, 0.04140882566571236, 0.5113710165023804, 0.5746450424194336, 0.6936788558959961, 0.8093022108078003, 0.39502841234207153, 0.2371836006641388, -0.08404718339443207, -0.0013038449687883258, -0.6556919813156128, -0.01782936602830887, -0.2858942747116089, 0.06556527316570282, -0.37117141485214233, 0.14894556999206543, 0.5501243472099304, 0.37453529238700867, -0.01432813424617052, 0.4616204798221588, 0.0803392082452774, 0.2588590085506439, -0.5907647013664246, 0.3271660804748535, -0.5333345532417297, -0.06409904360771179, -0.5726116895675659, 0.16505049169063568, -0.011986108496785164, -0.5355640649795532, -0.3091519773006439, -0.45545628666877747, 0.07740532606840134, -0.03019995242357254, 0.6721540093421936, 0.02447299100458622, -0.288524329662323, -0.31305086612701416, -0.43989670276641846, 0.8479705452919006, -0.8641571402549744, 0.29910463094711304, 0.6023351550102234, 0.0854782909154892, 0.18480348587036133, -0.5405091643333435, -0.8555582165718079, 0.12878811359405518, -0.12049361318349838, 0.1455286294221878, -0.3806540071964264, -0.2201981395483017, 0.4104245901107788, 0.19047626852989197, -0.47607141733169556, 0.1630980223417282, -0.5725967288017273, -0.22771120071411133, 0.9454130530357361, 0.1883368194103241, 0.45284247398376465, -0.48919036984443665, 0.029325885698199272, -0.08904342353343964, -0.133524551987648, -0.04316931962966919, 0.5343115925788879, 0.697749674320221, -0.6242450475692749, 0.5792320966720581, -0.14570550620555878, 0.3752979040145874, -0.21667514741420746, -0.17580752074718475, 0.7141589522361755, -0.2857853174209595, -0.08421715348958969, -0.18181666731834412, 1.139086365699768, 0.655085027217865, 0.3568766713142395, -0.01989983767271042, 0.005150938872247934, 0.21091723442077637, 0.15660667419433594, -0.8514775633811951, -0.2570306956768036, 0.39398592710494995, -0.41535741090774536, -0.5131982564926147, -0.07752232998609543, -1.1630465984344482, -0.4890253245830536, -0.11274926364421844, 0.08188647031784058, -0.25718197226524353, -0.5580700635910034, -0.27194517850875854, -0.2958298623561859, 0.1740303337574005, 0.07957255095243454, -0.746593177318573, 0.3141517639160156, 0.48656803369522095, 0.7920034527778625, -0.33916664123535156, -0.05756201595067978, -0.21619834005832672, 0.1124635711312294, -0.14816099405288696, 0.420554518699646, -0.5942507982254028, -0.35057276487350464, 0.3381675183773041, -0.01479362417012453, 0.0672593042254448, -0.38123759627342224, 1.1071429252624512, -0.2752786874771118, 0.24493475258350372, -0.35848215222358704, -0.3381083309650421, -0.06984259933233261, 0.28149285912513733, -0.48094627261161804, 1.2650715112686157, 0.21508803963661194, -0.9418761134147644, 0.38433465361595154, -0.995011031627655, -0.5487794280052185, 0.17365768551826477, -0.24519717693328857, -0.6189324259757996, -0.39514508843421936, 0.15543024241924286, 0.3909188508987427, -0.2682182192802429, 0.1940360814332962, -0.45788294076919556, -0.0426967479288578, -0.1071336418390274, 0.028832491487264633, 1.5176141262054443, 0.3872760236263275, -0.6698262691497803, 0.20101575553417206, -0.7914442420005798, -0.23313549160957336, 0.4853137135505676, -0.21954195201396942, -0.10272591561079025, 0.022924065589904785, 0.49451470375061035, 0.41978567838668823, 0.06832986325025558, -0.7219415307044983, -0.13921478390693665, -0.17882387340068817, 0.3018111288547516, 0.9124719500541687, -0.10071365535259247, 0.1942165344953537, -0.34587955474853516, 0.43510451912879944, 0.03518061712384224, 0.34421616792678833, 0.4842450022697449, -0.6751823425292969, -0.6660814881324768, -0.11952847242355347, -0.10568392276763916, 0.7481153011322021, -0.5947129130363464, 0.7414678931236267, -0.3616107702255249, -0.6949259042739868, -0.3385903537273407, 0.11454695463180542, 0.45483532547950745, 0.4711452126502991, 0.4762130379676819, -0.1527213454246521, -1.0182303190231323, -0.7708715796470642, -0.20903457701206207, -0.47124457359313965, 0.23929011821746826, 0.4853154718875885, 0.7754065990447998, -0.08605194091796875, 0.8605483174324036, -0.5192168951034546, -0.33734118938446045, -0.41011306643486023, 0.1796533316373825, 0.06482737511396408, 0.4507233798503876, 0.7246628403663635, -0.9547973871231079, -0.7429799437522888, -0.2921019494533539, -0.6490309834480286, -0.4933430254459381, 0.43450799584388733, -0.26688578724861145, 0.0939495787024498, 0.2899271845817566, -0.016429869458079338, 0.6287378072738647, 0.5781821012496948, -0.6559188365936279, 0.5567328333854675, 0.629211962223053, 0.3580284118652344, -1.254846215248108, -0.06126042455434799, 0.27560141682624817, 0.044777870178222656, -0.8333905935287476, -0.324424147605896, -0.2383248507976532, 0.16989199817180634, -0.49273303151130676, 0.5474050641059875, 0.02202906273305416, 0.31880679726600647, 0.008538996800780296, 0.11221584677696228, -0.2546789050102234, 0.5271180272102356, -0.13204073905944824, 0.6673675775527954, 0.5557115077972412, -0.5596736669540405, 0.27018433809280396, 0.48434004187583923, -0.4021858274936676, 0.5693866014480591, -0.5491845011711121, 0.10089138895273209, -0.17572493851184845, -0.0005705366493202746, -1.0933889150619507, -0.31086012721061707, 0.8693063259124756, -0.7942275404930115, -0.06508728116750717, -0.24142256379127502, -0.8269665241241455, -0.6402652263641357, -0.5296385884284973, 0.30778267979621887, 0.35253041982650757, -0.2385064661502838, 0.4457486569881439, 0.958386242389679, 0.08148269355297089, -0.5379745364189148, -0.9318454265594482, 0.07970905303955078, -0.3265484869480133, -0.5899726748466492, 0.46852096915245056, -0.24817897379398346, -0.4194797873497009, -0.07842423021793365, 0.34140631556510925, -0.027459342032670975, 0.16310252249240875, 0.3237834572792053, 0.0024960339069366455, 0.1218409389257431, -0.02522919699549675, -0.16872918605804443, 0.3957121670246124, 0.0775567814707756, -0.18160118162631989, 0.6003395915031433, 0.10691457986831665, -0.054273199290037155, -0.37066230177879333, 0.5017586946487427, 0.2881840467453003, -0.14859917759895325, 0.9015368223190308, 1.126286268234253, -0.6097182631492615, 0.047907181084156036, -0.49939289689064026, -0.03733639419078827, -0.402212917804718, 0.33758389949798584, 0.04452186077833176, -0.9026358723640442, 0.8226132392883301, 0.6359729766845703, 0.2645818293094635, 0.7495440244674683, 0.8329645991325378, 0.03382192552089691, 0.8279862999916077, 0.39061933755874634, -0.2543008625507355, 0.7965230941772461, -0.3825152814388275, 0.16516204178333282, -0.5956610441207886, -0.3283158838748932, -0.8688395619392395, -0.3899267315864563, -0.8373088240623474, -0.45455530285835266, 0.02182634361088276, -0.17937947809696198, -0.5673677325248718, 0.5051230192184448, -0.6173087954521179, 0.27521222829818726, 0.5341377854347229, -0.05695595219731331, -0.10844387859106064, 0.09394954890012741, -0.1004614531993866, -0.2726663649082184, -0.42243692278862, -0.5237271785736084, 0.9962731599807739, 0.29323145747184753, 0.289060115814209, 0.4958631694316864, 0.6500512361526489, 0.5628880262374878, 0.4379064440727234, -0.5681623816490173, 0.6110178828239441, -0.3452792465686798, -0.8712607026100159, -0.34553682804107666, -0.4349852502346039, -0.9011181592941284, 0.033025987446308136, -0.24792666733264923, -1.0833141803741455, 0.3802713453769684, -0.008175104856491089, -0.13970331847667694, 0.5994781851768494, -0.5987639427185059, 0.8468730449676514, 0.050591714680194855, -0.37266114354133606, 0.008350404910743237, -0.6347171068191528, 0.22415322065353394, 0.134231299161911, 0.6563765406608582, -0.37311017513275146, -0.020600227639079094, 1.4443989992141724, -0.28831663727760315, 1.2047890424728394, -0.2619992196559906, -0.010604072362184525, 0.3377467691898346, -0.2725658416748047, 0.35027962923049927, -0.19573014974594116, -0.3007514178752899, 0.4566271901130676, -0.5392833948135376, -0.2284558266401291, -0.2587539851665497, 0.5417478680610657, -0.7763885259628296, -0.32606247067451477, -0.2936733067035675, -0.3600744605064392, 0.02634574845433235, 0.34737229347229004, 0.2499023973941803, 0.2420387864112854, -0.13358154892921448, 0.17599257826805115, 0.3677217364311218, -0.24701403081417084, 0.35699281096458435, 0.31215235590934753, -0.11953427642583847, -0.713813304901123, 0.7112501859664917, 0.39191263914108276, -0.038192808628082275, 0.17241816222667694, 0.18437489867210388, -0.30057743191719055, -0.5323562026023865, -0.24068096280097961, 0.17009182274341583, -0.7327197194099426, -0.23129765689373016, -0.9123901128768921, -0.24454189836978912, -0.9204150438308716, -0.015196367166936398, -0.06869840621948242, -0.3906466066837311, -0.39521872997283936, -0.3028060793876648, 0.5830081105232239, 0.6535513997077942, -0.48077040910720825, 0.38379937410354614, -0.26309776306152344, 0.5158066749572754, 0.049165382981300354, 0.4423455595970154, 0.07912983745336533, -0.8693960309028625, -0.4381825625896454, 0.15974240005016327, -0.4758959710597992, -1.0041120052337646, 0.43721240758895874, 0.03747980296611786, 0.5759481191635132, 0.2266981452703476, 0.29296115040779114, 0.45991432666778564, -0.2437894195318222, 1.1156513690948486, 0.07317807525396347, -0.6865014433860779, 0.761320173740387, -0.5592712163925171, 0.1485830694437027, 0.5037391781806946, 0.4895224869251251, -0.7745375633239746, -0.6545368432998657, -0.8063182234764099, -1.0555976629257202, 1.029136061668396, 0.5842922925949097, 0.26511886715888977, -0.47722166776657104, -0.15991513431072235, -0.2286861091852188, 0.0813598483800888, -0.9336674213409424, -1.1507774591445923, -0.33833834528923035, -0.28898805379867554, 0.08457616716623306, -0.3364059031009674, -0.2790136933326721, -0.5479071736335754, 0.8921273946762085, 0.2660588026046753, 0.3375038802623749, -0.27660977840423584, -0.059517282992601395, 0.0017018980579450727, 0.2871456742286682, 0.45865437388420105, 0.5965371131896973, -0.35760220885276794, -0.006748594343662262, 0.058151789009571075, -0.714179515838623, -0.09751283377408981, 0.16590838134288788, -0.23706841468811035, 0.028041869401931763, 0.2392093986272812, 0.7906569242477417, -0.04696114361286163, -0.29409554600715637, 0.5968849658966064, -0.06138308346271515, -0.4188079237937927, -0.48191651701927185, 0.009355582296848297, -0.10907895117998123, 0.20476660132408142, 0.578335702419281, -0.22257180511951447, 0.11159039288759232, -0.3798380196094513, 0.33164483308792114, 0.15555259585380554, -0.2551634609699249, -0.26454097032546997, 0.7982295751571655, 0.11382966488599777, -0.5781612992286682, 0.36226117610931396, -0.47930803894996643, -0.7464964985847473, 0.528292715549469, 0.35426247119903564, 0.9237968921661377, -0.16861706972122192, 0.45509737730026245, 0.8675331473350525, 0.4899057149887085, 0.3692731261253357, 0.44241923093795776, -0.07458718866109848, -0.9657720923423767, -0.1630062311887741, -0.6599807143211365, -0.06799929589033127, 0.30627328157424927, -0.6012705564498901, 0.2848235070705414, -0.651714026927948, -0.225335955619812, 0.15888938307762146, 0.22996458411216736, -0.8297885656356812, 0.3495672643184662, 0.3597474992275238, 0.8106581568717957, -1.1408350467681885, 0.5799906849861145, 0.46131905913352966, -0.721053421497345, -0.7372100949287415, -0.03553153946995735, 0.4110807776451111, -0.7408943772315979, 0.59036785364151, 0.04921097680926323, 0.11206533014774323, 0.024287885054945946, -0.8659788966178894, -0.691572368144989, 0.8967050313949585, 0.19595713913440704, -0.13103646039962769, 0.37055864930152893, 0.3193944990634918, 0.5961753129959106, -0.40643104910850525, 0.2634179890155792, 0.68874591588974, 0.628972589969635, 0.12725239992141724, -0.706042468547821, 0.19652286171913147, -0.49013686180114746, -0.1216546818614006, 0.013725961558520794, -0.607266366481781, 0.679621696472168, 0.07202547788619995, -0.4279678463935852, -0.44504207372665405, 0.715825617313385, 0.15501923859119415, 0.31816521286964417, 0.5678353309631348, 0.7466907501220703, 0.7342290282249451, -0.18319888412952423, 0.9407147765159607, -0.12189806997776031, 0.3402811288833618, 1.1493339538574219, 0.21382781863212585, 0.6642508506774902, 0.051035359501838684, -0.3934561014175415, 0.5238332748413086, 0.3965027928352356, -0.0615500807762146, 0.3639442026615143, 0.22566445171833038, -0.21886946260929108, 0.029559681192040443, -0.5481999516487122, -0.32073017954826355, 0.484805703163147, 0.5739501118659973, -0.5077243447303772, -0.23693294823169708, -0.08146326243877411, 0.4543309509754181, 0.23831552267074585, -0.37614673376083374, 0.8162187933921814, -0.16925571858882904, -0.27945077419281006, 0.5907001495361328, 0.11359354108572006, 0.9645426869392395, -0.32241082191467285, 0.1416424810886383, -0.03195052966475487, -0.20683293044567108, -0.5093867778778076, -1.0875297784805298, 0.5478443503379822, 0.32948097586631775, -0.3691951334476471, -0.25064677000045776, 0.44792360067367554, -0.5316410660743713, -0.5410441756248474, 0.46340441703796387, 0.15775583684444427, 0.23480576276779175, 0.14796486496925354, -1.080152988433838, 0.5316306948661804, 0.24063201248645782, -0.11112619191408157, 0.05237766355276108, 0.3935508131980896, -0.1612103432416916, 0.4222419261932373, 0.5809421539306641, 0.10935197025537491, 0.20344816148281097, 0.5419365167617798, 0.9359325170516968, -0.6697568893432617, -0.29493236541748047, -0.902132511138916, 0.6585632562637329, -0.5397436022758484, -0.3651154935359955, 0.8490850925445557, 0.7713323831558228, 1.1308205127716064, 0.26693424582481384, 1.1837923526763916, -0.7579385042190552, 0.9188841581344604, 0.013736369088292122, 0.7586519718170166, -0.5380195379257202, -0.025434104725718498, -0.6779595613479614, -0.6345239281654358, -0.6146607398986816, 0.6770663261413574, -0.59850013256073, 0.23319877684116364, 0.3729499280452728, 1.011989712715149, 0.01451027300208807, 0.008929206058382988, 0.2334674447774887, 0.6113760471343994, 0.597260057926178, 0.166476771235466, 0.20517168939113617, -0.5699551701545715, 0.7594982981681824, -0.5816311836242676, -0.1805570423603058, -0.21682386100292206, -0.8219916820526123, -0.8697106242179871, -0.8587285280227661, -0.686126708984375, -0.7760853171348572, -0.04909465089440346, 1.0640019178390503, 0.5686989426612854, -1.137060523033142, -0.40199533104896545, 0.2643621861934662, 0.3407233655452728, -0.02880368009209633, -0.3130684792995453, 0.4467628598213196, 0.05609655752778053, -0.8944207429885864, -0.19469058513641357, 0.020339861512184143, -0.05276266857981682, 0.14295993745326996, -0.19432532787322998, -0.6980574131011963, -0.05178402364253998, 0.593683123588562, 0.3795550465583801, -0.6676942706108093, -0.3496602177619934, -0.2927910387516022, -0.18729311227798462, 0.13281747698783875, 0.31265243887901306, -0.27568817138671875, 0.25041255354881287, 0.4200512766838074, 0.41239821910858154, 0.3262859284877777, 0.015513960272073746, 0.055708106607198715, -0.8243054151535034, 0.0747990757226944, 0.4133325517177582, 0.30537304282188416, 0.49513623118400574, -0.2517302632331848, 0.5673993229866028, 0.396587610244751, -0.40874698758125305, -0.798977792263031, 0.14302551746368408, -1.105004072189331, 0.1192900612950325, 1.476415753364563, 0.10582355409860611, -0.2777179479598999, -0.5062549710273743, -0.14115622639656067, 0.5918670892715454, -0.9118319153785706, 0.6888503432273865, 0.7831266522407532, 0.26574209332466125, -0.1986055225133896, -0.4612194001674652, 0.6985315084457397, -0.10434664040803909, -0.8113258481025696, 0.21831142902374268, 0.4664528965950012, 0.1803450733423233, 0.1803240031003952, 0.8304781913757324, -0.22605347633361816, 0.10388001799583435, -0.21547293663024902, 0.29139962792396545, 0.09006226062774658, 0.05549502745270729, 0.004810661543160677, 0.04099248722195625, -0.35260406136512756, -0.23426899313926697 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mkb
null
2023-06-01T14:59:56Z
6,554
1
null
[ "task_categories:text-generation", "task_categories:fill-mask", "task_ids:language-modeling", "task_ids:masked-language-modeling", "annotations_creators:no-annotation", "multilinguality:translation", "size_categories:1K<n<10K", "size_categories:n<1K", "source_datasets:original", "language:bn", "language:en", "language:gu", "language:hi", "language:ml", "language:mr", "language:or", "language:pa", "language:ta", "language:te", "language:ur", "license:cc-by-4.0", "arxiv:2007.07691", "region:us" ]
2023-06-01T14:59:56Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- task_categories: - text-generation - fill-mask multilinguality: - translation task_ids: - language-modeling - masked-language-modeling language: - bn - en - gu - hi - ml - mr - or - pa - ta - te - ur annotations_creators: - no-annotation source_datasets: - original size_categories: - 1K<n<10K - n<1K license: - cc-by-4.0 paperswithcode_id: null pretty_name: CVIT MKB dataset_info: - config_name: or-ur features: - name: translation dtype: translation: languages: - or - ur splits: - name: train num_bytes: 39336 num_examples: 98 download_size: 52428800 dataset_size: 39336 - config_name: ml-or features: - name: translation dtype: translation: languages: - ml - or splits: - name: train num_bytes: 224084 num_examples: 427 download_size: 52428800 dataset_size: 224084 - config_name: bn-ta features: - name: translation dtype: translation: languages: - bn - ta splits: - name: train num_bytes: 2020506 num_examples: 3460 download_size: 52428800 dataset_size: 2020506 - config_name: gu-mr features: - name: translation dtype: translation: languages: - gu - mr splits: - name: train num_bytes: 1818018 num_examples: 3658 download_size: 52428800 dataset_size: 1818018 - config_name: hi-or features: - name: translation dtype: translation: languages: - hi - or splits: - name: train num_bytes: 188779 num_examples: 389 download_size: 52428800 dataset_size: 188779 - config_name: en-or features: - name: translation dtype: translation: languages: - en - or splits: - name: train num_bytes: 276520 num_examples: 768 download_size: 52428800 dataset_size: 276520 - config_name: mr-ur features: - name: translation dtype: translation: languages: - mr - ur splits: - name: train num_bytes: 225305 num_examples: 490 download_size: 52428800 dataset_size: 225305 - config_name: en-ta features: - name: translation dtype: translation: languages: - en - ta splits: - name: train num_bytes: 2578828 num_examples: 5744 download_size: 52428800 dataset_size: 2578828 - config_name: hi-ta features: - name: translation dtype: translation: languages: - hi - ta splits: - name: train num_bytes: 1583237 num_examples: 2761 download_size: 52428800 dataset_size: 1583237 - config_name: bn-en features: - name: translation dtype: translation: languages: - bn - en splits: - name: train num_bytes: 2001834 num_examples: 5634 download_size: 52428800 dataset_size: 2001834 - config_name: bn-or features: - name: translation dtype: translation: languages: - bn - or splits: - name: train num_bytes: 220893 num_examples: 447 download_size: 52428800 dataset_size: 220893 - config_name: ml-ta features: - name: translation dtype: translation: languages: - ml - ta splits: - name: train num_bytes: 1958818 num_examples: 3124 download_size: 52428800 dataset_size: 1958818 - config_name: gu-ur features: - name: translation dtype: translation: languages: - gu - ur splits: - name: train num_bytes: 311082 num_examples: 749 download_size: 52428800 dataset_size: 311082 - config_name: bn-ml features: - name: translation dtype: translation: languages: - bn - ml splits: - name: train num_bytes: 1587528 num_examples: 2938 download_size: 52428800 dataset_size: 1587528 - config_name: bn-hi features: - name: translation dtype: translation: languages: - bn - hi splits: - name: train num_bytes: 1298611 num_examples: 2706 download_size: 52428800 dataset_size: 1298611 - config_name: gu-te features: - name: translation dtype: translation: languages: - gu - te splits: - name: train num_bytes: 1669386 num_examples: 3528 download_size: 52428800 dataset_size: 1669386 - config_name: hi-ml features: - name: translation dtype: translation: languages: - hi - ml splits: - name: train num_bytes: 1208956 num_examples: 2305 download_size: 52428800 dataset_size: 1208956 - config_name: or-te features: - name: translation dtype: translation: languages: - or - te splits: - name: train num_bytes: 209457 num_examples: 440 download_size: 52428800 dataset_size: 209457 - config_name: en-ml features: - name: translation dtype: translation: languages: - en - ml splits: - name: train num_bytes: 2007061 num_examples: 5017 download_size: 52428800 dataset_size: 2007061 - config_name: en-hi features: - name: translation dtype: translation: languages: - en - hi splits: - name: train num_bytes: 1865430 num_examples: 5272 download_size: 52428800 dataset_size: 1865430 - config_name: mr-te features: - name: translation dtype: translation: languages: - mr - te splits: - name: train num_bytes: 1434444 num_examples: 2839 download_size: 52428800 dataset_size: 1434444 - config_name: bn-te features: - name: translation dtype: translation: languages: - bn - te splits: - name: train num_bytes: 1431096 num_examples: 2939 download_size: 52428800 dataset_size: 1431096 - config_name: gu-hi features: - name: translation dtype: translation: languages: - gu - hi splits: - name: train num_bytes: 1521174 num_examples: 3213 download_size: 52428800 dataset_size: 1521174 - config_name: ta-ur features: - name: translation dtype: translation: languages: - ta - ur splits: - name: train num_bytes: 329809 num_examples: 637 download_size: 52428800 dataset_size: 329809 - config_name: te-ur features: - name: translation dtype: translation: languages: - te - ur splits: - name: train num_bytes: 254581 num_examples: 599 download_size: 52428800 dataset_size: 254581 - config_name: gu-ml features: - name: translation dtype: translation: languages: - gu - ml splits: - name: train num_bytes: 1822865 num_examples: 3469 download_size: 52428800 dataset_size: 1822865 - config_name: hi-te features: - name: translation dtype: translation: languages: - hi - te splits: - name: train num_bytes: 1078371 num_examples: 2289 download_size: 52428800 dataset_size: 1078371 - config_name: en-te features: - name: translation dtype: translation: languages: - en - te splits: - name: train num_bytes: 1784517 num_examples: 5177 download_size: 52428800 dataset_size: 1784517 - config_name: ml-te features: - name: translation dtype: translation: languages: - ml - te splits: - name: train num_bytes: 1556164 num_examples: 2898 download_size: 52428800 dataset_size: 1556164 - config_name: hi-ur features: - name: translation dtype: translation: languages: - hi - ur splits: - name: train num_bytes: 313360 num_examples: 742 download_size: 52428800 dataset_size: 313360 - config_name: mr-or features: - name: translation dtype: translation: languages: - mr - or splits: - name: train num_bytes: 219193 num_examples: 432 download_size: 52428800 dataset_size: 219193 - config_name: en-ur features: - name: translation dtype: translation: languages: - en - ur splits: - name: train num_bytes: 289419 num_examples: 1019 download_size: 52428800 dataset_size: 289419 - config_name: ml-ur features: - name: translation dtype: translation: languages: - ml - ur splits: - name: train num_bytes: 295806 num_examples: 624 download_size: 52428800 dataset_size: 295806 - config_name: bn-mr features: - name: translation dtype: translation: languages: - bn - mr splits: - name: train num_bytes: 1554154 num_examples: 3054 download_size: 52428800 dataset_size: 1554154 - config_name: gu-ta features: - name: translation dtype: translation: languages: - gu - ta splits: - name: train num_bytes: 2284643 num_examples: 3998 download_size: 52428800 dataset_size: 2284643 - config_name: bn-gu features: - name: translation dtype: translation: languages: - bn - gu splits: - name: train num_bytes: 1840059 num_examples: 3810 download_size: 52428800 dataset_size: 1840059 - config_name: bn-ur features: - name: translation dtype: translation: languages: - bn - ur splits: - name: train num_bytes: 234561 num_examples: 559 download_size: 52428800 dataset_size: 234561 - config_name: ml-mr features: - name: translation dtype: translation: languages: - ml - mr splits: - name: train num_bytes: 1568672 num_examples: 2803 download_size: 52428800 dataset_size: 1568672 - config_name: or-ta features: - name: translation dtype: translation: languages: - or - ta splits: - name: train num_bytes: 267193 num_examples: 470 download_size: 52428800 dataset_size: 267193 - config_name: ta-te features: - name: translation dtype: translation: languages: - ta - te splits: - name: train num_bytes: 1773728 num_examples: 3100 download_size: 52428800 dataset_size: 1773728 - config_name: gu-or features: - name: translation dtype: translation: languages: - gu - or splits: - name: train num_bytes: 256362 num_examples: 541 download_size: 52428800 dataset_size: 256362 - config_name: en-gu features: - name: translation dtype: translation: languages: - en - gu splits: - name: train num_bytes: 2318080 num_examples: 6615 download_size: 52428800 dataset_size: 2318080 - config_name: hi-mr features: - name: translation dtype: translation: languages: - hi - mr splits: - name: train num_bytes: 1243583 num_examples: 2491 download_size: 52428800 dataset_size: 1243583 - config_name: mr-ta features: - name: translation dtype: translation: languages: - mr - ta splits: - name: train num_bytes: 1906073 num_examples: 3175 download_size: 52428800 dataset_size: 1906073 - config_name: en-mr features: - name: translation dtype: translation: languages: - en - mr splits: - name: train num_bytes: 2140298 num_examples: 5867 download_size: 52428800 dataset_size: 2140298 config_names: - bn-en - bn-gu - bn-hi - bn-ml - bn-mr - bn-or - bn-ta - bn-te - bn-ur - en-gu - en-hi - en-ml - en-mr - en-or - en-ta - en-te - en-ur - gu-hi - gu-ml - gu-mr - gu-or - gu-ta - gu-te - gu-ur - hi-ml - hi-mr - hi-or - hi-ta - hi-te - hi-ur - ml-mr - ml-or - ml-ta - ml-te - ml-ur - mr-or - mr-ta - mr-te - mr-ur - or-ta - or-te - or-ur - ta-te - ta-ur - te-ur --- # Dataset Card for CVIT MKB ## 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:** [Link](http://preon.iiit.ac.in/~jerin/bhasha/) - **Repository:** - **Paper:** [ARXIV](https://arxiv.org/abs/2007.07691) - **Leaderboard:** - **Point of Contact:** [email](cvit-bhasha@googlegroups.com) ### Dataset Summary Indian Prime Minister's speeches - Mann Ki Baat, on All India Radio, translated into many languages. ### Supported Tasks and Leaderboards [MORE INFORMATION NEEDED] ### Languages Hindi, Telugu, Tamil, Malayalam, Gujarati, Urdu, Bengali, Oriya, Marathi, Punjabi, and English ## Dataset Structure ### Data Instances [MORE INFORMATION NEEDED] ### Data Fields - `src_tag`: `string` text in source language - `tgt_tag`: `string` translation of source language in target language ### Data Splits [MORE INFORMATION NEEDED] ## Dataset Creation ### Curation Rationale [MORE INFORMATION NEEDED] ### Source Data [MORE INFORMATION NEEDED] #### Initial Data Collection and Normalization [MORE INFORMATION NEEDED] #### Who are the source language producers? [MORE INFORMATION NEEDED] ### Annotations #### Annotation process [MORE INFORMATION NEEDED] #### Who are the annotators? [MORE INFORMATION NEEDED] ### Personal and Sensitive Information [MORE INFORMATION NEEDED] ## Considerations for Using the Data ### Social Impact of Dataset [MORE INFORMATION NEEDED] ### Discussion of Biases [MORE INFORMATION NEEDED] ### Other Known Limitations [MORE INFORMATION NEEDED] ## Additional Information ### Dataset Curators [MORE INFORMATION NEEDED] ### Licensing Information The datasets and pretrained models provided here are licensed under Creative Commons Attribution-ShareAlike 4.0 International License. ### Citation Information ``` @misc{siripragada2020multilingual, title={A Multilingual Parallel Corpora Collection Effort for Indian Languages}, author={Shashank Siripragada and Jerin Philip and Vinay P. Namboodiri and C V Jawahar}, year={2020}, eprint={2007.07691}, archivePrefix={arXiv}, primaryClass={cs.CL} } ``` ### Contributions Thanks to [@vasudevgupta7](https://github.com/vasudevgupta7) for adding this dataset.
[ -0.34434330463409424, -0.4476320445537567, -0.01673901453614235, 0.39011073112487793, -0.4235634207725525, 0.21663065254688263, -0.4554005563259125, -0.1818808615207672, 0.31567782163619995, 0.34882283210754395, -0.7246776223182678, -0.7528091073036194, -0.7573923468589783, 0.07600296288728714, -0.11514456570148468, 0.922681450843811, -0.0069929081946611404, 0.08049222826957703, -0.20626141130924225, -0.3418419659137726, -0.6441873908042908, -0.37891465425491333, -0.37927401065826416, -0.14130619168281555, 0.11371014267206192, 0.7360044717788696, 0.38948044180870056, 0.6141725778579712, 0.5222476720809937, 0.27033230662345886, 0.055042609572410583, 0.12439923733472824, -0.4382743835449219, -0.22688178718090057, -0.25008898973464966, -0.3526521325111389, -0.5357084274291992, -0.06082585081458092, 0.8438304662704468, 0.5075355768203735, -0.05125625059008598, 0.6116023063659668, 0.1436462551355362, 0.6240944862365723, -0.569823682308197, 0.7386385798454285, -0.3811267018318176, -0.1684236079454422, -0.572201132774353, -0.10216541588306427, -0.16918745636940002, -0.47150883078575134, -0.2584788501262665, -0.45000094175338745, -0.057341404259204865, -0.08418505638837814, 1.0623867511749268, 0.013322170823812485, -0.2891719937324524, 0.008892455138266087, -0.6082054376602173, 0.9235315918922424, -0.5164076089859009, 0.3767184019088745, 0.6085843443870544, 0.5338233709335327, 0.24933162331581116, -0.607835054397583, -0.6864936351776123, 0.28222420811653137, -0.11298133432865143, 0.44312843680381775, -0.04140690714120865, -0.25283709168434143, 0.4249214828014374, 0.4962949752807617, -0.5172693133354187, -0.21914730966091156, -0.8760749101638794, -0.18514423072338104, 0.661876916885376, 0.28835415840148926, 0.32938313484191895, -0.6844105124473572, -0.3211002051830292, -0.4580319821834564, -0.3857208788394928, 0.2403717339038849, 0.41570550203323364, 0.46233800053596497, -0.8277152180671692, 0.6717339754104614, -0.19355899095535278, 0.6559337973594666, -0.12555968761444092, -0.11574642360210419, 0.8479704260826111, -0.8232382535934448, -0.16417160630226135, -0.05249540135264397, 0.9761801362037659, 0.3427792191505432, 0.1402217149734497, 0.339027464389801, 0.1794557124376297, -0.006740936078131199, -0.0140239791944623, -0.7475972175598145, 0.041745856404304504, 0.2627023160457611, -0.5435566306114197, -0.21732404828071594, 0.22019079327583313, -1.093949794769287, -0.034720439463853836, -0.4737741947174072, 0.022292684763669968, -0.3841087222099304, -0.5258354544639587, -0.13950030505657196, -0.09965496510267258, 0.8428098559379578, 0.05243546515703201, -0.7391834259033203, 0.2157057374715805, 0.4315691590309143, 0.8248417973518372, -0.2029227763414383, -0.1316947638988495, -0.2341056764125824, 0.3428974151611328, 0.00008480934775434434, 0.646406888961792, -0.5363813042640686, -0.7176165580749512, 0.14426444470882416, 0.29477646946907043, -0.21967852115631104, -0.2325356900691986, 0.9369983673095703, -0.01666022278368473, 0.20172826945781708, -0.6069988012313843, -0.08486204594373703, -0.10828045755624771, 0.4033507704734802, -0.5641657114028931, 1.2489320039749146, 0.14559213817119598, -0.8623320460319519, 0.4646646976470947, -0.844634473323822, -0.4097922742366791, 0.2102614939212799, -0.5939314961433411, -0.5925394892692566, -0.3418012261390686, 0.4082126021385193, 0.6181846261024475, -0.6053398847579956, 0.337014764547348, -0.09721408039331436, -0.08078952133655548, -0.23793841898441315, -0.274698406457901, 1.222895622253418, 0.350137323141098, -0.2657194137573242, 0.13204139471054077, -1.0450586080551147, 0.0013155107153579593, 0.15337061882019043, -0.1914292573928833, -0.1682310402393341, -0.2552947402000427, 0.3630267083644867, 0.44189754128456116, 0.34734442830085754, -0.579522967338562, 0.22561661899089813, -0.27045685052871704, 0.2886841893196106, 0.8545635938644409, 0.19533215463161469, 0.22127915918827057, -0.4227290749549866, 0.5935875177383423, 0.32570376992225647, 0.4917825162410736, 0.06715072691440582, -0.6206870675086975, -0.6470727920532227, -0.44432371854782104, 0.20271791517734528, 0.8147539496421814, -0.6921460628509521, 0.4220825135707855, -0.6062343120574951, -0.840860903263092, -0.5724212527275085, 0.14073127508163452, 0.5487068295478821, 0.3755846321582794, 0.3501087725162506, -0.5178614854812622, -0.7387709617614746, -1.1248921155929565, 0.005001306999474764, -0.13896256685256958, 0.3335611820220947, 0.5076364874839783, 0.7303696870803833, -0.2277476042509079, 0.8993136882781982, -0.6325101852416992, -0.269882470369339, -0.34733375906944275, 0.14843721687793732, 0.2255963385105133, 0.6739082336425781, 0.5330716371536255, -1.1572997570037842, -0.6062723398208618, -0.15255148708820343, -0.6768850684165955, -0.1735970377922058, -0.14361311495304108, -0.34770381450653076, 0.0851021334528923, 0.22500427067279816, -0.4134111702442169, 0.6984043717384338, 0.5453708171844482, -0.3150413930416107, 0.5334796905517578, 0.04115970432758331, 0.45336195826530457, -1.6397992372512817, 0.24133899807929993, -0.03858588635921478, 0.028416838496923447, -0.42555326223373413, -0.3942177891731262, 0.047781553119421005, -0.09227783977985382, -0.5881323218345642, 0.6742990612983704, -0.44321921467781067, 0.22073857486248016, 0.10974690318107605, -0.05124258995056152, -0.17986072599887848, 0.5337997674942017, -0.1067197248339653, 0.849956750869751, 0.8275305032730103, -0.5002146363258362, 0.14238256216049194, 0.7599605321884155, -0.3515610694885254, 0.7590389251708984, -0.7461503148078918, -0.21697470545768738, -0.2236425131559372, 0.1188528910279274, -1.0741221904754639, -0.33891239762306213, 0.5656559467315674, -0.735156238079071, 0.3598632216453552, -0.04566367715597153, -0.6974829435348511, -0.38341858983039856, -0.49543657898902893, 0.36771076917648315, 0.491451233625412, -0.2517964541912079, 0.632371723651886, 0.46271467208862305, 0.04580829665064812, -0.6116123199462891, -1.0597412586212158, -0.14570024609565735, -0.056513044983148575, -0.5482742786407471, 0.3484359383583069, -0.3866040110588074, -0.06335540860891342, -0.07446897029876709, 0.07891805469989777, -0.1267898976802826, -0.31976285576820374, 0.5806049704551697, 0.2736714780330658, -0.014868796803057194, -0.15117718279361725, -0.011248331516981125, -0.054351817816495895, -0.15027020871639252, 0.10376206785440445, 0.5313799977302551, -0.1009066104888916, -0.30948036909103394, -0.48434117436408997, 0.4603186845779419, 0.6155840754508972, -0.5155344009399414, 0.9241056442260742, 1.0598968267440796, -0.408088743686676, 0.27100202441215515, -0.6493474841117859, 0.046314992010593414, -0.41318389773368835, 0.2792362570762634, -0.34358343482017517, -0.5669715404510498, 0.8783639669418335, 0.06948550790548325, -0.0017039998201653361, 0.8980819582939148, 0.9410810470581055, 0.5518466830253601, 0.6761713027954102, 0.6229856610298157, -0.3066858947277069, 0.5946019291877747, -0.5281143188476562, 0.13008126616477966, -0.9411956667900085, -0.5355283617973328, -0.7012487649917603, 0.02696409448981285, -1.0286552906036377, -0.5772591829299927, 0.07141448557376862, -0.14844413101673126, -0.3075753450393677, 0.5647873282432556, -0.7729038596153259, 0.1189323142170906, 0.712829053401947, 0.0891214981675148, -0.06641039997339249, -0.06411922723054886, -0.15089108049869537, -0.13125331699848175, -0.49623793363571167, -0.4392687678337097, 1.1614301204681396, 0.1677011251449585, 0.29106399416923523, 0.21958301961421967, 0.6773902773857117, 0.13858483731746674, 0.19594748318195343, -0.19192545115947723, 0.5660294890403748, -0.08669362217187881, -0.8598969578742981, -0.16616229712963104, -0.2913690209388733, -0.8271461129188538, -0.10226330161094666, -0.3828064203262329, -0.7310355305671692, 0.6360904574394226, -0.07715407013893127, -0.1705210655927658, 0.2151772826910019, -0.7854483127593994, 0.9938933253288269, -0.18666872382164001, -0.47426873445510864, -0.09512840211391449, -0.8170642256736755, 0.3474644422531128, 0.035857878625392914, 0.48921969532966614, -0.1089629977941513, 0.035972289741039276, 0.9859647750854492, -0.39085695147514343, 0.9843323826789856, -0.18275567889213562, 0.4664457440376282, 0.41594138741493225, -0.5551788210868835, 0.46638303995132446, 0.22746503353118896, -0.08183347433805466, 0.4723265767097473, -0.00673483544960618, -0.6952023506164551, -0.24966807663440704, 0.7506322860717773, -1.0051358938217163, -0.2929295599460602, -0.7519257664680481, -0.45110002160072327, 0.026428036391735077, 0.3393089175224304, 0.2930494546890259, 0.30250439047813416, 0.04105887934565544, 0.4412546753883362, 0.4340215027332306, -0.4041351079940796, 0.3861577808856964, 0.38608673214912415, 0.2504270672798157, -0.6857313513755798, 0.8381761908531189, 0.43481168150901794, 0.16715729236602783, 0.3981512784957886, 0.042863208800554276, -0.24217213690280914, -0.24693943560123444, -0.37182462215423584, 0.24070695042610168, -0.7009943127632141, -0.17747734487056732, -0.5916069149971008, -0.341721773147583, -0.759278416633606, -0.09002694487571716, -0.24455954134464264, -0.39469724893569946, -0.19459185004234314, -0.24312281608581543, 0.627922534942627, 0.33258116245269775, -0.3803660273551941, 0.3114081621170044, -0.578546404838562, 0.2817367911338806, 0.13663244247436523, 0.46754634380340576, -0.11699799448251724, -0.4421674311161041, -0.39244773983955383, -0.006627217400819063, -0.48045745491981506, -0.8604099154472351, 0.459977388381958, 0.10307849943637848, 0.7684699892997742, 0.09158405661582947, -0.016068432480096817, 0.7620344161987305, -0.21636587381362915, 1.2292492389678955, 0.15470634400844574, -0.5902573466300964, 0.7243509292602539, -0.608613908290863, 0.5201337337493896, 0.8991225957870483, 0.460215300321579, -0.3902668356895447, -0.20250307023525238, -0.8151842355728149, -1.3907049894332886, 0.7466292381286621, 0.4448164403438568, 0.198518306016922, -0.13860419392585754, 0.14310190081596375, -0.02604280225932598, 0.22459973394870758, -0.8204827308654785, -0.8363004922866821, -0.35474666953086853, -0.2810603082180023, -0.007479047868400812, -0.31344664096832275, -0.08718109130859375, -0.6410008072853088, 0.8416962623596191, 0.3590509593486786, 0.43490734696388245, 0.07319897413253784, 0.08425139635801315, 0.04359898716211319, 0.4107193052768707, 0.7644438147544861, 0.71527099609375, -0.4168134927749634, -0.2913130819797516, 0.18808700144290924, -0.8388333320617676, -0.13729603588581085, 0.2042992115020752, -0.0966561883687973, -0.02650734968483448, 0.1878977119922638, 0.8612597584724426, 0.12346205860376358, -0.4779288172721863, 0.6938990950584412, -0.1093449592590332, -0.2292780727148056, -0.9216436743736267, -0.18520665168762207, -0.07290331274271011, 0.12405992299318314, 0.3691088855266571, 0.08478742092847824, -0.08098772168159485, -0.42264524102211, 0.3203040659427643, 0.13332092761993408, -0.35592415928840637, -0.19199292361736298, 0.8921011686325073, 0.07323668897151947, -0.32819172739982605, 0.48722222447395325, -0.1757497787475586, -0.3082517087459564, 0.5150497555732727, 0.14655940234661102, 0.9312805533409119, -0.26949357986450195, 0.15038740634918213, 0.9134758114814758, 0.4766402542591095, -0.05506699159741402, 0.6481629014015198, -0.1064162328839302, -0.43251439929008484, -0.4810568392276764, -0.6857925057411194, -0.24528053402900696, 0.17229290306568146, -0.9250373244285583, 0.6674789786338806, -0.36974412202835083, -0.09044990688562393, -0.04316228628158569, 0.21765415370464325, -1.0583406686782837, 0.25777482986450195, -0.010954717174172401, 0.9168122410774231, -1.1968331336975098, 0.851800799369812, 0.7242628931999207, -1.1473878622055054, -0.9447827935218811, -0.21079353988170624, 0.09470579028129578, -0.7391101717948914, 0.6443005204200745, -0.023260919377207756, 0.425855815410614, -0.16871240735054016, -0.5637013912200928, -0.8879284262657166, 1.3735291957855225, 0.1555161029100418, -0.4416936933994293, 0.36174696683883667, 0.4196155369281769, 0.3759070038795471, -0.3272492587566376, 0.5044808983802795, 0.43249571323394775, 0.8474563360214233, 0.08568871021270752, -0.8283200860023499, 0.12694963812828064, -0.6324807405471802, -0.015955906361341476, 0.11781506985425949, -1.0112786293029785, 0.7970784306526184, 0.26732608675956726, 0.02333071455359459, -0.35904720425605774, 0.6275863647460938, 0.34931620955467224, 0.26489830017089844, 0.3148384094238281, 0.5631558299064636, 0.4418773353099823, -0.1913638859987259, 1.1486166715621948, -0.5716640949249268, 0.311834454536438, 1.018372654914856, 0.19624805450439453, 0.7825554013252258, 0.4520055949687958, -0.21302632987499237, 0.41777855157852173, 0.5068776607513428, -0.26296189427375793, 0.45697838068008423, 0.08843381702899933, 0.03755200654268265, -0.1662043184041977, -0.301076740026474, -0.5536953806877136, 0.645385205745697, 0.378011554479599, -0.4327239692211151, -0.08942337334156036, 0.11881773173809052, 0.11726702749729156, 0.1328897774219513, -0.3185975253582001, 0.4365684390068054, -0.03939063847064972, -0.41894954442977905, 0.5409506559371948, -0.08804011344909668, 0.687597930431366, -0.7129206657409668, -0.18306347727775574, 0.01130570750683546, 0.06091414391994476, -0.3866497278213501, -0.792324423789978, 0.5270251631736755, -0.053097691386938095, -0.5688498020172119, -0.33503881096839905, 0.5358511209487915, -0.4995681643486023, -0.8806813955307007, 0.1667042374610901, 0.3480086624622345, 0.2884066104888916, 0.3201640546321869, -0.964226484298706, 0.4095284938812256, 0.09950888901948929, -0.39196836948394775, 0.26915886998176575, 0.28897276520729065, -0.27612340450286865, 0.32680544257164, 0.5553920269012451, 0.25236156582832336, 0.11612746864557266, 0.08968740701675415, 0.8421779870986938, -0.7143157720565796, -0.40568724274635315, -0.6612669229507446, 0.8906471729278564, -0.5439972877502441, -0.5817171335220337, 0.9776896834373474, 0.9550763368606567, 1.116980791091919, -0.07967640459537506, 1.115936040878296, -0.47855523228645325, 0.6770898103713989, -0.08716584742069244, 0.7751330733299255, -0.590643584728241, 0.041740451008081436, -0.5547328591346741, -0.7030293345451355, -0.3102494776248932, 0.5492767691612244, -0.5352665185928345, 0.19158361852169037, 0.5186466574668884, 0.9184079170227051, -0.10628776252269745, -0.14557446539402008, 0.18806728720664978, 0.39625775814056396, 0.2631324827671051, 0.5087859630584717, 0.03591819107532501, -0.8127182722091675, 0.7459327578544617, -0.4159105122089386, -0.2800345718860626, -0.025973958894610405, -0.8488879799842834, -0.8745933175086975, -1.0404092073440552, -0.5959468483924866, -0.3597917854785919, -0.09182949364185333, 1.0228087902069092, 0.6486555933952332, -0.9698036909103394, -0.41238439083099365, 0.21365493535995483, 0.021488457918167114, -0.20860005915164948, -0.24675805866718292, 0.7845069169998169, 0.20526941120624542, -0.8072481155395508, -0.18337684869766235, 0.18740136921405792, -0.10018154233694077, -0.07075683027505875, -0.1319035142660141, -0.7405694127082825, 0.06299573928117752, 0.5830868482589722, 0.5756630897521973, -0.5781574845314026, -0.2709566652774811, -0.1982552856206894, -0.07996766269207001, 0.1496029496192932, 0.38611456751823425, -0.36969441175460815, 0.6048694849014282, 0.6948525309562683, 0.38682952523231506, 0.5530149340629578, -0.0249201450496912, 0.14632585644721985, -0.8272815942764282, 0.444151371717453, 0.005292159039527178, 0.26964324712753296, 0.4151171147823334, -0.43794283270835876, 0.592434823513031, 0.3665030896663666, -0.5216149687767029, -0.9449378848075867, -0.06162899732589722, -1.5818767547607422, 0.13842223584651947, 1.4193843603134155, 0.15855470299720764, -0.5308311581611633, -0.19239559769630432, -0.281477689743042, 0.5761839151382446, -0.5903528928756714, 0.41189703345298767, 0.8290080428123474, 0.23677021265029907, -0.24144308269023895, -0.9087709784507751, 0.37708210945129395, 0.03383782505989075, -0.7762762308120728, -0.058809276670217514, 0.22119686007499695, 0.22793276607990265, 0.19653527438640594, 0.9974575042724609, -0.4730979800224304, 0.21829253435134888, -0.07318026572465897, 0.4247435927391052, -0.20601291954517365, 0.057438794523477554, -0.009918092750012875, -0.04093071073293686, -0.18291161954402924, -0.4824436604976654 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
angelolab/ark_example
angelolab
2023-11-28T20:05:52Z
6,552
0
null
[ "task_categories:image-segmentation", "task_ids:instance-segmentation", "annotations_creators:no-annotation", "size_categories:n<1K", "source_datasets:original", "license:apache-2.0", "MIBI", "Multiplexed-Imaging", "region:us" ]
2023-11-28T20:05:52Z
2022-08-25T23:15:17.000Z
2022-08-25T23:15:17
--- annotations_creators: - no-annotation language: [] language_creators: [] license: - apache-2.0 multilinguality: [] pretty_name: An example dataset for analyzing multiplexed imaging data. size_categories: - n<1K source_datasets: - original tags: - MIBI - Multiplexed-Imaging task_categories: - image-segmentation task_ids: - instance-segmentation --- # Dataset Card for [Dataset Name] ## Table of Contents - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** - **Repository:** - **Paper:** - **Leaderboard:** - **Point of Contact:** ### Dataset Summary [More Information Needed] ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields [More Information Needed] ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information [More Information Needed] ### Contributions Thanks to [@angelolab](https://github.com/angelolab) for adding this dataset.
[ -0.49114203453063965, -0.4987211525440216, 0.1638951450586319, 0.27260175347328186, -0.21063530445098877, 0.22168579697608948, -0.29089993238449097, -0.4192383289337158, 0.6809281706809998, 0.6627718806266785, -0.9019916653633118, -1.2109194993972778, -0.7599334120750427, 0.09991183131933212, -0.16042578220367432, 1.246769905090332, -0.06340092420578003, -0.17317484319210052, -0.19328206777572632, -0.24274764955043793, -0.47823747992515564, -0.3790271282196045, -0.5466826558113098, -0.2690359652042389, 0.5021534562110901, 0.8795349597930908, 0.6793122887611389, 0.9621085524559021, 0.7095510363578796, 0.27820226550102234, -0.027256958186626434, 0.043325670063495636, -0.691733181476593, -0.1926947683095932, -0.19098307192325592, -0.10801980644464493, -0.9142037630081177, 0.1107378825545311, 0.6309638619422913, 0.7881137132644653, -0.051095783710479736, 0.8365328311920166, 0.14049507677555084, 0.7534564733505249, -0.6051835417747498, 0.8448054790496826, -0.28588026762008667, 0.04258173704147339, -0.5562565922737122, -0.08236811310052872, -0.0972457081079483, -0.4779122769832611, -0.18775540590286255, -0.8222330808639526, 0.09403461962938309, 0.0003119542670901865, 0.7499759197235107, 0.062110427767038345, -0.19613690674304962, -0.2264954149723053, -0.5498754978179932, 0.6409873366355896, -0.6375710964202881, 0.03470759838819504, 0.8493777513504028, 0.3732760548591614, 0.16029302775859833, -1.0750648975372314, -0.5098015666007996, 0.38872429728507996, -0.1871250569820404, 0.37359464168548584, -0.10904107987880707, -0.1914372593164444, 0.6017838716506958, 0.4095076620578766, -0.5791261792182922, -0.257931113243103, -0.7682068347930908, -0.244986891746521, 1.055778980255127, 0.47542133927345276, 0.16231335699558258, -0.32587191462516785, -0.04256323352456093, -0.2434699535369873, -0.36909350752830505, 0.05515678599476814, 0.45041635632514954, 0.5568781495094299, -0.6963617205619812, 0.7361221313476562, -0.32427456974983215, 0.5631211996078491, -0.18878807127475739, -0.03940063714981079, 0.7387913465499878, -0.6636837124824524, 0.04022366926074028, 0.11608809977769852, 0.7408822774887085, 0.6664053201675415, -0.08146341145038605, 0.09732685983181, -0.03452525660395622, -0.17850416898727417, 0.12026103585958481, -0.8337658047676086, -0.3526307940483093, 0.5861182808876038, -0.8074727654457092, -0.37480202317237854, 0.35439765453338623, -1.1552019119262695, -0.2455691248178482, -0.4347555935382843, 0.06493780761957169, -0.05653369426727295, -0.31778356432914734, -0.15726716816425323, -0.18721117079257965, 0.34810397028923035, 0.05451390519738197, -0.7709094882011414, 0.5840586423873901, 0.6066202521324158, 0.8386396169662476, -0.17532913386821747, -0.20953188836574554, -0.25959062576293945, 0.4660125970840454, -0.11504603177309036, 0.6372356414794922, -0.42645737528800964, -0.6997858881950378, 0.1989380568265915, 0.3506777882575989, 0.052571237087249756, -0.24263589084148407, 0.967937707901001, -0.07670557498931885, 0.25398674607276917, -0.7681889533996582, -0.47359901666641235, -0.12161076068878174, 0.30075809359550476, -1.0318595170974731, 1.3884518146514893, 0.22787664830684662, -0.945986270904541, 0.43723002076148987, -1.2426083087921143, -0.47457483410835266, 0.3113022744655609, -0.23499244451522827, -0.5857855677604675, -0.42652541399002075, -0.035368647426366806, 0.5655105710029602, -0.4279319643974304, 0.1869078129529953, -0.3438626527786255, -0.20089426636695862, -0.09077204018831253, 0.028996966779232025, 1.3129360675811768, 0.35260009765625, -0.2710983157157898, 0.23085586726665497, -1.0757100582122803, -0.00678097503259778, 0.39274635910987854, -0.2627886235713959, -0.05748489126563072, -0.09507956355810165, 0.6108903288841248, 0.04965914785861969, 0.49308982491493225, -0.34450778365135193, 0.21414726972579956, 0.07619728893041611, 0.44024184346199036, 0.6759724617004395, 0.167265847325325, 0.35541683435440063, -0.4700332581996918, 0.4643053710460663, 0.08394349366426468, 0.5165300369262695, 0.1143791601061821, -0.7365677356719971, -0.5545752048492432, -0.20175980031490326, 0.19415853917598724, 0.7648664712905884, -0.5868320465087891, 0.9139824509620667, -0.5836839079856873, -0.7739841938018799, -0.347866028547287, 0.1348481923341751, 0.29134905338287354, 0.6106813549995422, 0.47088906168937683, -0.43539148569107056, -0.7900410890579224, -0.8844969868659973, 0.21230164170265198, -0.14261595904827118, 0.32890644669532776, 0.5672503113746643, 0.9835713505744934, -0.15293098986148834, 0.9324782490730286, -0.8238345384597778, -0.27457407116889954, -0.46420198678970337, 0.09551595151424408, 0.3331660330295563, 0.6351398825645447, 0.6143428683280945, -0.9667750000953674, -0.4820156395435333, -0.3329751789569855, -0.7414171099662781, -0.21371625363826752, 0.09109842032194138, -0.3417966663837433, -0.07324794679880142, 0.24524691700935364, -0.2969140112400055, 0.7227942943572998, 0.5999851226806641, -0.6738452911376953, 0.5191013813018799, 0.13532771170139313, 0.12643803656101227, -1.5215387344360352, 0.4251466691493988, 0.007409550249576569, 0.14135433733463287, -0.6167271137237549, -0.27073463797569275, -0.0030813785269856453, -0.11553265154361725, -0.3225306570529938, 0.7397987842559814, -0.30261462926864624, 0.07151199877262115, 0.1178111582994461, -0.12248589843511581, 0.11449448019266129, 0.37961262464523315, -0.1017172634601593, 0.7180002331733704, 0.6674450039863586, -0.5323257446289062, 0.43459197878837585, 0.6128950715065002, -0.3146313428878784, 0.6999845504760742, -0.8805105686187744, -0.04272491857409477, -0.22974228858947754, 0.3053106367588043, -1.08304762840271, -0.559350848197937, 0.6198561787605286, -0.6124938726425171, 0.23985527455806732, -0.08573124557733536, -0.787014365196228, -0.4729101359844208, -0.5387768149375916, 0.27299660444259644, 0.27612006664276123, -0.2283075898885727, 0.4735548496246338, 0.788884699344635, 0.09665314853191376, -0.4201289713382721, -0.8968674540519714, 0.14064262807369232, -0.21717044711112976, -0.5881962776184082, 0.6685262322425842, -0.3780488967895508, -0.11740017682313919, 0.11005903035402298, 0.3483414053916931, -0.16820082068443298, 0.12208909541368484, 0.42530205845832825, 0.186808779835701, 0.07409756630659103, -0.14754867553710938, -0.09282109141349792, -0.10845691710710526, -0.014607620425522327, -0.02644241601228714, 0.47697970271110535, 0.09279034286737442, -0.3072053790092468, -0.3511861562728882, 0.5433141589164734, 0.26099008321762085, -0.27438899874687195, 0.7972877025604248, 1.0393656492233276, -0.5641788840293884, 0.05331381782889366, -0.4422612190246582, -0.1651569902896881, -0.4313194155693054, 0.19266286492347717, -0.18466585874557495, -0.6160998344421387, 1.2121301889419556, 0.15757858753204346, 0.262508749961853, 0.7457019090652466, 0.6177929043769836, 0.1089390367269516, 0.7117608785629272, 0.47189152240753174, -0.3047153353691101, 0.6421328186988831, -0.7333118319511414, -0.09403800219297409, -0.871326744556427, -0.4590362310409546, -0.7845833897590637, -0.48863479495048523, -0.8757553100585938, -0.3577403128147125, 0.020958172157406807, -0.07978275418281555, -0.35740435123443604, 0.5857371687889099, -0.6723617911338806, 0.448293000459671, 0.8829880356788635, 0.11395829170942307, -0.027628261595964432, -0.004457914270460606, 0.007320730946958065, 0.01347473356872797, -0.6312543749809265, -0.6633313298225403, 1.2568284273147583, 0.3657476603984833, 0.3878266513347626, 0.1624027043581009, 0.9677181839942932, 0.35629093647003174, 0.23137162625789642, -0.4322873055934906, 0.6438936591148376, -0.21056948602199554, -0.9250944256782532, -0.42406153678894043, -0.31760531663894653, -1.0019117593765259, -0.3075961768627167, -0.34424227476119995, -0.7591115236282349, 0.49137842655181885, 0.13126564025878906, -0.24629586935043335, 0.25312644243240356, -0.7095443606376648, 1.1346595287322998, 0.019299283623695374, -0.5496991872787476, 0.1690433919429779, -0.9133794903755188, 0.08469433337450027, 0.20661744475364685, 0.5417003631591797, -0.16626065969467163, -0.04388140141963959, 1.1720337867736816, -0.4679041802883148, 1.1783053874969482, -0.29715731739997864, 0.30171769857406616, 0.5392752289772034, -0.36305204033851624, 0.5074167847633362, 0.09172297269105911, -0.15634334087371826, 0.4129711389541626, -0.1040157675743103, -0.4767392575740814, -0.41474542021751404, 0.5944554805755615, -0.8540802597999573, -0.15249089896678925, -0.41932860016822815, -0.4379476010799408, 0.06656122952699661, 0.4078802168369293, 0.23335447907447815, 0.27986109256744385, -0.22580987215042114, 0.44195491075515747, 0.46267005801200867, -0.09790431708097458, 0.311292827129364, 0.2344237118959427, -0.00023885106202214956, -0.8592022061347961, 0.8593621253967285, 0.5637078285217285, -0.022797299548983574, 0.2369401752948761, 0.07474803924560547, -0.4008474349975586, -0.4530870020389557, -0.302017480134964, 0.1119399219751358, -0.7144572138786316, -0.17032431066036224, -0.4038389325141907, -0.25354233384132385, -0.8053842186927795, -0.10283808410167694, -0.07428217679262161, -0.6353096961975098, -0.5459862947463989, -0.49265429377555847, 0.6930533647537231, 0.4686768651008606, -0.5889332294464111, 0.30513107776641846, -0.7729068398475647, 0.25875550508499146, 0.026074659079313278, 0.6695946455001831, -0.07833568006753922, -0.2929178476333618, -0.5305613279342651, 0.048909444361925125, -0.3929998278617859, -0.9096455574035645, 0.26931923627853394, 0.09331650286912918, 0.9489097595214844, 0.22854703664779663, 0.16657057404518127, 0.5942997932434082, -0.21467618644237518, 1.1954476833343506, 0.06068506836891174, -0.6031927466392517, 0.7940007448196411, -0.6150076389312744, 0.30004939436912537, 1.039039969444275, 0.4234388768672943, -0.49780967831611633, 0.014983190223574638, -0.9511317610740662, -1.309406042098999, 0.7774205803871155, 0.33605459332466125, 0.2198023647069931, -0.2542307674884796, 0.2864646315574646, -0.1521829068660736, 0.19556637108325958, -0.8582360744476318, -0.974722146987915, -0.3636937439441681, -0.3936888575553894, 0.02808069996535778, -0.3166886270046234, -0.520847499370575, -0.4691610634326935, 0.7643235921859741, 0.06992195546627045, 0.25853002071380615, 0.04120337963104248, 0.26131531596183777, -0.0849740207195282, 0.040025580674409866, 0.5209949016571045, 0.7360622882843018, -0.49370115995407104, -0.07955987006425858, -0.030151020735502243, -0.8443023562431335, -0.3080437183380127, 0.23176836967468262, -0.39726608991622925, -0.12930737435817719, 0.5562753081321716, 0.8192924857139587, 0.06066850945353508, -0.26923683285713196, 0.4945874512195587, 0.04132271558046341, -0.4735776484012604, -0.7003563046455383, -0.07965182512998581, -0.008426296524703503, 0.16955994069576263, 0.44784706830978394, -0.2682441771030426, 0.2837713360786438, -0.5848729610443115, 0.3399749994277954, 0.03507246449589729, -0.4270733892917633, -0.2409605085849762, 0.6924681067466736, 0.2652527093887329, -0.385785847902298, 0.39210548996925354, -0.2422608882188797, -0.27635520696640015, 0.8480347394943237, 0.20906826853752136, 0.9215617775917053, -0.06291786581277847, 0.3626054525375366, 0.838947057723999, 0.4020194113254547, -0.09123343229293823, 0.9459365606307983, -0.14804309606552124, -0.6741538643836975, -0.17963141202926636, -0.393310546875, -0.346036821603775, 0.08969759941101074, -1.0360867977142334, 0.39658087491989136, -0.6501331925392151, -0.432715505361557, 0.0628768652677536, 0.322184681892395, -0.9581825137138367, 0.25935032963752747, -0.0617082454264164, 1.0038771629333496, -1.049005389213562, 0.6923853754997253, 0.7930225729942322, -0.9287245869636536, -0.882282018661499, -0.3585442900657654, 0.2484189122915268, -0.6158536672592163, 0.5586230158805847, -0.08826818317174911, 0.5012960433959961, -0.055025115609169006, -0.9215404987335205, -0.8423447608947754, 1.65501868724823, 0.02628319524228573, -0.21581648290157318, 0.3027888238430023, 0.33803844451904297, 0.44451913237571716, -0.47358667850494385, 0.18372510373592377, 0.5864862203598022, 0.8706895709037781, 0.3289821147918701, -0.6724634766578674, 0.23996266722679138, -0.5728885531425476, -0.09736904501914978, -0.03762570768594742, -0.7235365509986877, 0.7785051465034485, 0.01619742065668106, -0.10367469489574432, -0.35171160101890564, 0.5938600301742554, 0.4322941303253174, 0.500232994556427, 0.3218234181404114, 0.7735167741775513, 0.7662279009819031, -0.2836732268333435, 1.0271140336990356, -0.5587863326072693, 0.3845767080783844, 1.4018886089324951, -0.1781938225030899, 0.7498376965522766, 0.3828192949295044, -0.3319907486438751, 0.40674373507499695, 0.7449998259544373, -0.347942054271698, 0.443183034658432, 0.2311152070760727, 0.08286473155021667, -0.0021903873421251774, -0.4387013912200928, -0.6478873491287231, 0.40660154819488525, 0.47563400864601135, -0.6041908264160156, -0.051904499530792236, -0.3832660913467407, 0.15225932002067566, 0.04499170929193497, -0.4209445118904114, 0.8714194893836975, -0.23068620264530182, -0.21706943213939667, 0.08460363000631332, -0.09020224958658218, 0.40698426961898804, -0.5895001292228699, -0.22013729810714722, -0.17938849329948425, -0.10780078917741776, -0.5827851891517639, -1.251238465309143, 0.6130639910697937, -0.07695860415697098, -0.58113694190979, -0.25813183188438416, 0.5535125732421875, -0.32059425115585327, -0.9449864029884338, 0.2168474942445755, 0.327384352684021, 0.13333670794963837, 0.3664693534374237, -1.0591161251068115, 0.3540145754814148, -0.04111145809292793, -0.42382586002349854, 0.1625799834728241, 0.5449641942977905, -0.04384511336684227, 0.35843050479888916, 0.7388419508934021, 0.2635296583175659, -0.06021139398217201, 0.44187232851982117, 0.9664385914802551, -0.6966280937194824, -0.5003004670143127, -0.5676254630088806, 0.9025748372077942, -0.6141332983970642, -0.5015513300895691, 0.7803103923797607, 0.9860917329788208, 0.9947046041488647, 0.07934675365686417, 1.0237849950790405, -0.5582396984100342, 0.7700322270393372, -0.2784571349620819, 0.9408248662948608, -0.5044851899147034, -0.009772585704922676, -0.6062673926353455, -0.9409942626953125, -0.5677687525749207, 0.8104262948036194, -0.38071107864379883, 0.19324354827404022, 0.3850039839744568, 0.8508054614067078, 0.07948677241802216, 0.15776827931404114, 0.09087373316287994, 0.2824758291244507, 0.3058519959449768, 0.17465688288211823, 0.1646030992269516, -0.7174018621444702, 0.6255480647087097, -0.6114886403083801, -0.21823276579380035, -0.04901595786213875, -1.1224850416183472, -0.8172324299812317, -1.0340064764022827, -0.6506239175796509, -0.5665857791900635, -0.0933583676815033, 1.069855809211731, 0.7340131402015686, -1.1253207921981812, -0.5203559398651123, 0.15218648314476013, 0.18542426824569702, -0.172377347946167, -0.29527518153190613, 0.6386712789535522, 0.21485070884227753, -0.5891746878623962, -0.26219624280929565, 0.0247648898512125, 0.06845714896917343, -0.1729729175567627, -0.2167409509420395, -0.32938238978385925, -0.25573426485061646, 0.5517948865890503, 0.4630189538002014, -0.39340299367904663, -0.2639600336551666, -0.09807673841714859, 0.024753032252192497, -0.07677444815635681, 0.49145445227622986, -0.1215878278017044, 0.36548924446105957, 0.7402313351631165, 0.2872825860977173, 0.5467730760574341, -0.026573237031698227, 0.1972227841615677, -0.7378824949264526, 0.08845178037881851, 0.17753392457962036, 0.43975749611854553, 0.2970792055130005, -0.5124210119247437, 0.9204647541046143, 0.28193381428718567, -0.5273897647857666, -0.7024204730987549, -0.084745392203331, -1.4037450551986694, 0.016909653320908546, 1.279653549194336, -0.004024089314043522, -0.3313605487346649, -0.3560941219329834, -0.2555101811885834, 0.35736870765686035, -0.7802110910415649, 0.6694265007972717, 0.9587870836257935, 0.15791328251361847, -0.07992339879274368, -0.6320734024047852, 0.5519575476646423, -0.4245089292526245, -1.1027023792266846, 0.1323195993900299, 0.5720279812812805, 0.013606728054583073, 0.37789052724838257, 0.8760666251182556, -0.42142996191978455, 0.0903269350528717, 0.015519936569035053, 0.30987852811813354, -0.21792034804821014, -0.21560138463974, 0.08576071262359619, 0.021982189267873764, -0.1750386506319046, -0.1951231211423874 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
lamini/lamini_docs
lamini
2023-07-23T23:48:57Z
6,550
6
null
[ "region:us" ]
2023-07-23T23:48:57Z
2023-07-23T23:48:50.000Z
2023-07-23T23:48:50
--- dataset_info: features: - name: question dtype: string - name: answer dtype: string - name: input_ids sequence: int32 - name: attention_mask sequence: int8 - name: labels sequence: int64 splits: - name: train num_bytes: 1846734.3 num_examples: 1260 - name: test num_bytes: 205192.7 num_examples: 140 download_size: 698607 dataset_size: 2051927.0 --- # Dataset Card for "lamini_docs" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.6886050701141357, -0.14073191583156586, 0.29570943117141724, 0.14006058871746063, -0.2390969842672348, -0.23731333017349243, 0.20159436762332916, 0.016714943572878838, 0.6983432173728943, 0.6918520331382751, -0.8973891139030457, -0.8093218207359314, -0.6249447464942932, -0.3557955026626587, -0.2564164102077484, 1.2893983125686646, 0.007835516706109047, 0.26959332823753357, -0.34412866830825806, -0.2722596824169159, -0.3037305474281311, -0.3278345465660095, -0.8785431981086731, -0.6415327787399292, 0.9938096404075623, 0.7623669505119324, 0.29286763072013855, 0.36030784249305725, 0.9044845104217529, 0.13816344738006592, 0.11133896559476852, 0.08209449797868729, -0.4350869655609131, -0.05660504475235939, -0.21037298440933228, -0.5971892476081848, -1.1021790504455566, 0.19728481769561768, 0.5782331824302673, 0.5206947326660156, -0.19523021578788757, 0.7688306570053101, -0.5644406676292419, 0.9030536413192749, -0.20872433483600616, 0.3857100009918213, -0.0116765471175313, 0.06810899078845978, -0.7714059948921204, -0.2898075580596924, 0.11261843144893646, -0.42677319049835205, -0.24858981370925903, -1.139745831489563, 0.05853990092873573, 0.060080092400312424, 0.8567949533462524, 0.25339728593826294, -0.006184726022183895, -0.2455078810453415, -0.2329597920179367, -0.07205605506896973, -0.4164199233055115, 0.21898570656776428, 0.8396586775779724, 0.43698665499687195, 0.1034599170088768, -0.8046286702156067, -0.45640766620635986, 0.14087162911891937, -0.11592650413513184, 0.38969969749450684, 0.284872829914093, -0.09703250229358673, 0.6969656348228455, 0.6915844082832336, -0.46849048137664795, -0.0825963020324707, -0.8120776414871216, -0.1740788221359253, 0.843357503414154, 0.23116467893123627, 0.3639574646949768, 0.04812858998775482, -0.15994632244110107, -0.41097503900527954, -0.601096510887146, 0.003060798393562436, 0.4810243844985962, 0.029154716059565544, -1.2311125993728638, 0.5622780919075012, 0.1437157839536667, 0.4740111231803894, 0.21875311434268951, 0.5017533302307129, 0.6870089769363403, -0.40831586718559265, -0.12298793345689774, -0.1720184087753296, 0.43339085578918457, 0.5058982372283936, 0.1884399652481079, 0.17343661189079285, -0.01875094138085842, -0.4506514072418213, 0.10852830111980438, -1.1157275438308716, -0.5871059894561768, 0.5394404530525208, -0.7304670214653015, -0.21710924804210663, 0.43287259340286255, -0.8721617460250854, -0.6837179064750671, -0.4892467260360718, -0.2693563401699066, -0.14204460382461548, -0.6316094994544983, -0.2595908045768738, -0.8719226717948914, 0.49603214859962463, 0.26077646017074585, -0.8366609215736389, 0.24137739837169647, 0.847476065158844, 0.6934323310852051, 0.24102874100208282, -0.527023196220398, -0.7838389277458191, 0.3709936738014221, -0.10354726761579514, 1.044493556022644, -0.5608704090118408, -0.6417276859283447, -0.0025671259500086308, 0.39027103781700134, -0.028572916984558105, -0.3392880856990814, 0.9552008509635925, -0.17961615324020386, 0.05402759835124016, -0.7463013529777527, -0.7247039079666138, -0.03602224960923195, 0.1659984439611435, -1.0291427373886108, 1.001367211341858, 0.48123273253440857, -0.7109546065330505, 0.20226162672042847, -1.4827371835708618, -0.3193521797657013, 0.5818389058113098, 0.060294296592473984, -0.4145441949367523, 0.3349744975566864, -0.273734450340271, 0.44004181027412415, -0.29173603653907776, 0.5715252161026001, -0.703267514705658, -0.12351950258016586, 0.22940179705619812, 0.2612289488315582, 1.1325277090072632, 0.2885226607322693, 0.3259473145008087, 0.19870300590991974, -1.0150418281555176, -0.16324783861637115, 0.06221264228224754, -0.01801893301308155, -0.37576839327812195, -0.5742235779762268, 0.41348782181739807, -0.21562154591083527, 0.2305607944726944, -0.3178394138813019, 0.5589534044265747, 0.2505091428756714, -0.00829249806702137, 0.6813198328018188, 0.023296060040593147, 0.3252546787261963, -0.5963624715805054, 0.32332301139831543, -0.06625679135322571, 0.4973846673965454, 0.08509326726198196, -0.43499889969825745, -0.7143332958221436, -0.008000601083040237, 0.5429815649986267, 0.6791305541992188, -0.37282857298851013, 0.4657888114452362, 0.07755662500858307, -0.7846635580062866, -0.34450358152389526, 0.13394653797149658, 0.2046799212694168, 0.34429168701171875, 0.15188327431678772, -0.7109850645065308, -0.674407422542572, -0.652003824710846, 0.5237842798233032, -0.113900326192379, -0.033192653208971024, 0.5929673910140991, 0.9570552110671997, -0.5527865290641785, 0.5367239713668823, -0.8832956552505493, -0.35434412956237793, 0.3096989393234253, 0.05698375403881073, 0.27474141120910645, 0.7049471139907837, 0.9064216613769531, -0.8851659893989563, -0.4485324025154114, -0.4929729700088501, -0.6471158862113953, -0.3655795454978943, 0.2547476887702942, -0.5827597379684448, -0.2855454385280609, 0.26831114292144775, -0.5044063925743103, 0.4221876859664917, 0.8520409464836121, -0.527489185333252, 0.314481645822525, -0.06772395223379135, 0.02870948798954487, -1.381408929824829, 0.7140837907791138, -0.07773824036121368, -0.20381814241409302, -0.7522782683372498, 0.17682349681854248, 0.03621538728475571, -0.3277399241924286, -0.13761307299137115, 0.7813897132873535, -0.27833741903305054, 0.021420767530798912, 0.002007061382755637, 0.10492583364248276, 0.11025580763816833, 0.09824644029140472, 0.27473530173301697, 0.7557379603385925, 1.041656732559204, -0.2819381654262543, 0.8941819071769714, 0.6884169578552246, 0.1255382001399994, 1.3078453540802002, -0.7304028868675232, 0.15293940901756287, -0.1368751972913742, 0.4923011362552643, -0.35627394914627075, -0.6419077515602112, 0.6141773462295532, -0.2609315812587738, 0.5365138649940491, -0.3650769591331482, -0.42107680439949036, -0.7238733172416687, -0.5423030257225037, 0.5002699494361877, 0.24388869106769562, -0.5475706458091736, 0.31644588708877563, 0.9889810681343079, 0.03673198074102402, -0.022230885922908783, -0.9400159120559692, 0.14309443533420563, -0.2906722128391266, -0.15538248419761658, 0.42999395728111267, -0.7599104642868042, -0.2306317389011383, -0.26151883602142334, 0.5607464909553528, -0.4087052047252655, -0.10714215785264969, 0.6711447834968567, 0.0645519345998764, -0.22476981580257416, 0.45197486877441406, -0.2650761008262634, -0.7056002616882324, 0.05111556500196457, -0.189256951212883, 0.5119619369506836, -0.20823268592357635, -0.15637406706809998, -0.45892298221588135, 0.40831050276756287, 0.3757483661174774, -0.2522418200969696, 0.4758463203907013, 1.2764912843704224, -0.5259155631065369, -0.1450396180152893, -0.6408485770225525, -0.0730462446808815, -0.4504324495792389, -0.28655537962913513, -0.21816426515579224, -0.42341262102127075, 0.6640332341194153, -0.15531843900680542, -0.19400236010551453, 0.7080339193344116, 0.6762673854827881, -0.1333364099264145, 0.0456613190472126, 0.5776335000991821, -0.2771150469779968, 0.4680452048778534, -0.6060255765914917, -0.30837923288345337, -1.1568275690078735, -0.4879584014415741, -0.4467845559120178, -0.27668797969818115, -0.6085366010665894, -0.45255014300346375, -0.008878127671778202, -0.040399692952632904, -0.11915066838264465, 0.6112033128738403, -0.6966304183006287, 0.27875909209251404, 0.8192692995071411, 0.1288750022649765, -0.07873573899269104, -0.239620178937912, 0.32357609272003174, 0.5207734107971191, -0.5916177034378052, -0.13029919564723969, 1.368638277053833, 0.3977488577365875, 0.7439098358154297, 0.16678494215011597, 0.8716978430747986, 0.3398953080177307, 0.44895023107528687, -0.24664370715618134, 0.33191531896591187, -0.2529218792915344, -0.679872453212738, -0.18653026223182678, -0.1756579577922821, -0.7656616568565369, -0.4958554208278656, -0.12027373909950256, -0.27188289165496826, 0.6950439810752869, 0.11295969784259796, -0.1360326111316681, 0.3534260392189026, -0.6472967267036438, 0.8603278994560242, -0.25567933917045593, -0.2613583505153656, -0.19803199172019958, -0.6416248083114624, 0.10668762773275375, 0.05085108056664467, 0.12497153133153915, -0.3763495683670044, -0.10738452523946762, 0.9101089835166931, -0.5263974070549011, 1.1290310621261597, -0.6110503673553467, -0.1286826878786087, 0.17913194000720978, -0.34834203124046326, 0.10426389425992966, 0.7076132893562317, -0.30792728066444397, 0.12933118641376495, 0.11249476671218872, -0.4548178017139435, -0.19044229388237, 0.8529167771339417, -0.6129276156425476, -0.0017766798846423626, -0.3617994785308838, -0.8381175398826599, 0.10908836871385574, 0.4193686246871948, 0.17448972165584564, 0.856476366519928, -0.49330076575279236, -0.1093335896730423, 0.7427791953086853, 0.30362868309020996, 0.3421596884727478, 0.5066588521003723, -0.08360733836889267, -0.5070474147796631, 1.0342198610305786, 0.23281127214431763, -0.47121185064315796, 0.3069506585597992, 0.3782612085342407, -0.13903352618217468, -0.5528498291969299, -0.5950730443000793, 0.37313562631607056, -0.4616903066635132, -0.4121667742729187, -0.07052486389875412, -0.4002159535884857, -0.32537323236465454, -0.27862492203712463, -0.20423977077007294, -0.7103576064109802, -0.7602547407150269, -0.45588335394859314, 0.9625213742256165, 0.7137750387191772, -0.7511641979217529, 0.438225120306015, -0.8411168456077576, 0.39772745966911316, 0.10350394994020462, 0.9963568449020386, -0.347775399684906, -0.20575878024101257, -0.3333025872707367, -0.013537510298192501, 0.05093938857316971, -0.5037303566932678, 0.0251289252191782, 0.3258448839187622, 0.6211350560188293, 0.4217548072338104, -0.07692687958478928, 0.637187123298645, -0.09517090022563934, 0.6250218749046326, 0.21902985870838165, -0.6388563513755798, 0.700320839881897, -0.4862031042575836, 0.37118038535118103, 1.1539515256881714, 0.547322690486908, -0.44859373569488525, 0.12949159741401672, -1.0250979661941528, -0.5221874713897705, 0.5440993905067444, -0.05871119722723961, 0.1881260722875595, 0.41990914940834045, 0.6526415944099426, 0.16233104467391968, 0.4227178692817688, -0.7124984860420227, -0.8262038230895996, -0.22404496371746063, -0.2188086062669754, 0.03473453223705292, -0.46384522318840027, -0.6876705288887024, -0.6026989221572876, 0.7048169374465942, -0.15288303792476654, 0.20968760550022125, 0.13298138976097107, 0.1880771815776825, -0.12079402804374695, -0.12425525486469269, 0.7774161696434021, 0.7143570780754089, -0.6317265033721924, -0.024452779442071915, -0.01629485934972763, -0.3772394359111786, -0.3979344666004181, 0.6733520030975342, -0.19146783649921417, -0.16697528958320618, 0.4376973807811737, 1.0364114046096802, -0.4162016808986664, -0.2424849569797516, 0.3101486563682556, -0.16574376821517944, -0.3013588488101959, -0.6497306823730469, 0.15552650392055511, 0.21038997173309326, 0.13128122687339783, -0.038800355046987534, -0.09641000628471375, 0.2477903813123703, -0.5794219970703125, 0.5146557688713074, 0.0419541671872139, -0.7256312370300293, -0.4363475441932678, 0.3107222020626068, 0.5463735461235046, -0.6372789144515991, 0.7384373545646667, -0.14027154445648193, -0.4880124032497406, 0.6305895447731018, 0.3362944722175598, 0.6642599701881409, -0.2746172249317169, 0.7016509175300598, 0.5185240507125854, -0.06655717641115189, 0.1869194656610489, 0.6185016632080078, -0.4750605821609497, -0.4942066967487335, 0.41018161177635193, -0.3089092969894409, -0.5842775106430054, -0.13718830049037933, -0.8139697909355164, 0.23781521618366241, -0.5854005217552185, -0.3760816156864166, -0.008492632769048214, 0.34448227286338806, -0.7004894018173218, 0.15965858101844788, 0.33494094014167786, 1.4817500114440918, -0.7653306126594543, 0.9488611817359924, 0.6715927124023438, -0.656244158744812, -0.5187476277351379, -0.21087852120399475, 0.12052563577890396, -0.9253687858581543, 0.1702934205532074, 0.07053560763597488, 0.39186403155326843, -0.2932013273239136, -0.6021933555603027, -0.5653797388076782, 1.3971835374832153, 0.09489328414201736, -0.667867124080658, 0.2052551656961441, 0.022131988778710365, 0.5540288090705872, -0.5359957218170166, 0.43070897459983826, 0.418830007314682, 1.174824833869934, 0.006459049414843321, -0.6203575134277344, 0.007634887937456369, -0.6676433682441711, -0.34831488132476807, 0.09652408212423325, -1.0191717147827148, 0.31078287959098816, -0.006665235385298729, 0.06929735839366913, 0.0500212162733078, 0.3422548174858093, -0.021206598728895187, 0.6158023476600647, 0.23035062849521637, 0.8905419111251831, 1.326547384262085, -0.3661021590232849, 1.2667988538742065, -0.32807332277297974, 0.35006627440452576, 1.1994673013687134, -0.30634811520576477, 0.3241438567638397, 0.5414690971374512, 0.055555954575538635, 0.5207332372665405, 0.5531188249588013, -0.9383002519607544, 0.34377866983413696, 0.3389256000518799, -0.08966907858848572, -0.05446864664554596, -0.47074028849601746, -0.8205962181091309, 0.03708631917834282, 0.5978463888168335, -0.400088369846344, 0.14201486110687256, -0.059351932257413864, 0.12655538320541382, -0.31234535574913025, -0.44293922185897827, 0.7691099047660828, 0.24688518047332764, -0.4238520562648773, 0.12354961782693863, -0.20359796285629272, 0.19864632189273834, -0.8790980577468872, -0.10227120667695999, -0.23870420455932617, -0.050381701439619064, -0.5842464566230774, -1.1825603246688843, 0.7179778814315796, -0.35419800877571106, -0.29085996747016907, -0.1880064457654953, 0.6690376996994019, -0.42929914593696594, -0.7975354194641113, 0.29873141646385193, 0.30333366990089417, 0.09392724186182022, 0.4617263078689575, -1.2191095352172852, 0.14754320681095123, -0.2286771982908249, -0.16283100843429565, 0.004555521532893181, 0.007999652065336704, 0.156280055642128, 0.7368549108505249, 0.7684178352355957, 0.1266048103570938, -0.5568138957023621, 0.5821484923362732, 1.0522563457489014, -0.3954590857028961, -0.1615155190229416, -0.4477072060108185, 0.6632866859436035, -0.6788724660873413, -0.7982894778251648, 0.5931686162948608, 1.0323125123977661, 0.7339727282524109, -0.16749858856201172, 0.6515882015228271, -0.36710262298583984, 0.26642906665802, -0.40869152545928955, 0.7890601754188538, -0.5057367086410522, -0.040759287774562836, 0.12080851942300797, -0.5939623713493347, -0.799169659614563, 0.46206599473953247, 0.06099590286612511, -0.3701648712158203, 0.6324744820594788, 0.9756559133529663, -0.22892136871814728, 0.07405867427587509, -0.07493570446968079, 0.19455069303512573, 0.1523115038871765, 0.35145747661590576, 0.24696654081344604, -0.43669649958610535, -0.07537966221570969, -0.25784778594970703, -0.4188757538795471, 0.005448048934340477, -0.9765421152114868, -1.0642138719558716, -0.8782070279121399, -0.4742960035800934, -0.4020157754421234, 0.15888743102550507, 0.6498691439628601, 1.0790914297103882, -1.09101402759552, -0.5031832456588745, -0.03937913104891777, 0.39801132678985596, 0.20274823904037476, -0.11355181783437729, 0.8096457719802856, 0.3073773682117462, -0.5636888146400452, -0.07015708833932877, 0.10153291374444962, 0.24110600352287292, -0.15776103734970093, -0.15563811361789703, -0.0939188078045845, 0.04940752685070038, 0.1106700673699379, 0.5914919376373291, 0.017664840444922447, -0.0797637328505516, -0.6032671928405762, -0.08109164983034134, 0.17182599008083344, 1.1480717658996582, -0.23776337504386902, 0.19840356707572937, 0.6385694742202759, 0.11478418856859207, 0.939395546913147, -0.020364563912153244, 0.7905508279800415, -0.430422842502594, 0.2804468274116516, -0.24326640367507935, 0.5707852840423584, 0.27113184332847595, -0.43681538105010986, 1.209294080734253, 0.35585731267929077, -0.49087607860565186, -0.6634598970413208, 0.09827550500631332, -1.4466224908828735, 0.20695200562477112, 0.8198562264442444, -0.0740690678358078, -0.4011460542678833, 0.029280085116624832, -0.45715612173080444, 0.18795424699783325, -0.7188742756843567, 0.3002465069293976, 0.5041330456733704, 0.1541062444448471, -0.33188560605049133, -0.2215976119041443, 0.6762792468070984, -0.3925742506980896, -1.3457082509994507, 0.12641943991184235, 0.39444515109062195, 0.043778710067272186, 0.3575064241886139, 0.8610815405845642, -0.18197333812713623, 0.2715516984462738, 0.17298702895641327, 0.07413668930530548, -0.5936228632926941, -0.4165927469730377, -0.15252815186977386, 0.023658372461795807, -0.2011689692735672, 0.03825199976563454 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
b-mc2/sql-create-context
b-mc2
2023-09-29T20:22:24Z
6,493
196
null
[ "task_categories:text-generation", "task_categories:question-answering", "task_categories:table-question-answering", "size_categories:10K<n<100K", "language:en", "license:cc-by-4.0", "SQL", "code", "NLP", "text-to-sql", "context-sql", "spider", "wikisql", "sqlglot", "region:us" ]
2023-09-29T20:22:24Z
2023-04-21T03:23:24.000Z
2023-04-21T03:23:24
--- license: cc-by-4.0 task_categories: - text-generation - question-answering - table-question-answering language: - en tags: - SQL - code - NLP - text-to-sql - context-sql - spider - wikisql - sqlglot pretty_name: sql-create-context size_categories: - 10K<n<100K --- #### Overview This dataset builds from [WikiSQL](https://huggingface.co/datasets/wikisql) and [Spider](https://huggingface.co/datasets/spider). There are 78,577 examples of natural language queries, SQL CREATE TABLE statements, and SQL Query answering the question using the CREATE statement as context. This dataset was built with text-to-sql LLMs in mind, intending to prevent hallucination of column and table names often seen when trained on text-to-sql datasets. The CREATE TABLE statement can often be copy and pasted from different DBMS and provides table names, column names and their data types. By providing just the CREATE TABLE statement as context, we can hopefully provide better grounding for models without having to provide actual rows of data, limiting token usage and exposure to private, sensitive, or proprietary data. #### Cleansing and Augmentation Cleansing and data augmentation has been done on the combined WikiSQL and Spider data. I used [SQLGlot](https://github.com/tobymao/sqlglot) on queries from Spider and WikiSQL and parsed them into different tables and columns, I then inferred column data types based on usage of `>` `<` operators as well as the use of `MIN()` `MAX()` `AVG()` `SUM()` on columns. While this isn't perfect, it increases the likelihood of inferring the correct datatype for a column, the columns otherwise default to VARCHAR type. These tables and columns are then used to generate CREATE TABLE statements using the inferred types. SQLGlot is used again to ensure both the SQL queries and CREATE TABLE statements parse without errors. Some queries that do not have column names, e.g. SELECT * FROM table, have a default Id column added to the CREATE TABLE statement. Some other queries which use the generic `table` as the FROM table have instead been changed to a variation of `table_name_1` or some other number which is also reflected in the CREATE TABLE statement. #### TODO - Further augment the data by converting queries and CREATE TABLE statements into different SQL dialects, this can be done with SQLGlot. Reference to the dialect might also be added to the question. - Support other informative contexts beyond CREATE TABLE - Better parse datatypes to clean up things like numbers for column names and other numbers as strings If you have any edits you'd like to see in a version 2 of this dataset, let me know. Random sample: ```json { "question": "Please show the themes of competitions with host cities having populations larger than 1000.", "context": "CREATE TABLE city (City_ID VARCHAR, Population INTEGER); CREATE TABLE farm_competition (Theme VARCHAR, Host_city_ID VARCHAR)", "answer": "SELECT T2.Theme FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID WHERE T1.Population > 1000" }, { "question": "Please show the different statuses of cities and the average population of cities with each status.", "context": "CREATE TABLE city (Status VARCHAR, Population INTEGER)", "answer": "SELECT Status, AVG(Population) FROM city GROUP BY Status" }, ```
[ -0.4307619035243988, -0.8506563305854797, 0.3098739683628082, 0.047851674258708954, -0.32544392347335815, -0.0720897763967514, 0.019654694944620132, -0.2863174080848694, 0.4929271936416626, 0.9183260202407837, -0.4054519534111023, -0.7172038555145264, -0.1782657951116562, 0.3095467984676361, -0.2792057693004608, 1.1844558715820312, 0.16745057702064514, 0.06546062976121902, -0.32375988364219666, -0.22131183743476868, -0.2771499752998352, -0.4689435064792633, -0.5505653619766235, 0.19958755373954773, 0.2519528865814209, 0.475735604763031, 0.788204550743103, 0.5299092531204224, 0.4357869327068329, 0.1085001677274704, -0.08783549070358276, 0.6034353971481323, -0.5044320225715637, 0.024530887603759766, -0.1722973734140396, -0.5067582726478577, -0.23753926157951355, -0.18590764701366425, 0.5132881999015808, 1.0464303493499756, 0.05237038433551788, 0.1583850085735321, 0.07223571836948395, 1.0977665185928345, -0.5550940036773682, 0.3174375295639038, -0.9044839143753052, 0.3274870216846466, -0.25617507100105286, -0.10697194933891296, -0.3759373128414154, -0.6559981107711792, 0.03961797058582306, -0.6472999453544617, 0.2925817370414734, 0.21215572953224182, 0.6976910829544067, 0.0880955308675766, -0.8808208107948303, -0.3343299329280853, -0.6466934680938721, 0.24216945469379425, -0.7472379207611084, 0.06487604975700378, 0.29761216044425964, 0.3943233788013458, -0.5845666527748108, -0.5984367728233337, -0.8548890948295593, -0.2686403691768646, -0.596587598323822, -0.015563884750008583, 0.23984690010547638, -0.21041938662528992, 0.33345139026641846, 0.42901378870010376, -0.7614373564720154, -0.1857454627752304, -0.4119146168231964, -0.1317608654499054, 0.6349750757217407, 0.3897826671600342, 0.10807744413614273, -0.3636367917060852, -0.20921844244003296, 0.012818795628845692, -0.8747891187667847, 0.0655880719423294, 0.16469663381576538, 0.7160444259643555, -0.27645257115364075, 0.9526744484901428, -0.5866050720214844, 0.8170650005340576, 0.032310884445905685, 0.04660678654909134, 0.26235225796699524, -0.4489564597606659, -0.030544543638825417, -0.1743200719356537, 0.7394037246704102, 0.6896878480911255, 0.4819108247756958, -0.2831037640571594, 0.15892504155635834, -0.1818026900291443, 0.023592457175254822, -0.3842570185661316, -0.18395429849624634, 0.43650779128074646, -0.2324143499135971, -0.41550877690315247, 0.07102839648723602, -1.009961485862732, -0.6961137056350708, -0.21604368090629578, 0.3392806649208069, -0.18803948163986206, -0.3036416172981262, -0.28359177708625793, -0.28120866417884827, 0.5332136154174805, 0.30548062920570374, -0.7914965748786926, 0.3875144422054291, 0.31422436237335205, 0.5099413394927979, -0.3694019913673401, 0.09347480535507202, -0.15410539507865906, 0.439899742603302, -0.6988541483879089, 0.7192315459251404, -0.15267588198184967, -0.6024726629257202, -0.015755530446767807, 0.143026664853096, 0.09797312319278717, -0.798707902431488, 0.26391229033470154, -0.2900608479976654, 0.375545471906662, -0.8858718276023865, -0.5329550504684448, 0.02386665903031826, 0.16047734022140503, -0.8512424230575562, 1.0289579629898071, 0.41170355677604675, -0.7859640121459961, 0.8602208495140076, -0.7491509318351746, -0.6388434767723083, 0.1536329835653305, -0.2950960695743561, -0.2474827766418457, 0.08122991025447845, 0.08279162645339966, 0.09759003669023514, -0.45071595907211304, 0.13630297780036926, -0.2653316259384155, -0.13491129875183105, 0.3838375508785248, 0.07839866727590561, 0.7328857779502869, 0.2832275629043579, -0.29129645228385925, -0.2744004726409912, -0.9246241450309753, 0.071930892765522, 0.21020576357841492, -0.3377019166946411, 0.0015284530818462372, 0.3074069619178772, -0.11826171725988388, 0.15731318295001984, 0.13154089450836182, -0.4321810305118561, 0.10938168317079544, -0.5121532082557678, 0.19674602150917053, 0.22649674117565155, 0.3721531927585602, 0.3087204694747925, -0.3270747661590576, 0.11101733893156052, 0.2583790421485901, -0.09871779382228851, 0.429612934589386, -0.37085017561912537, -0.9304646253585815, 0.018388964235782623, 0.17360162734985352, 0.7114977836608887, -0.9516962170600891, 0.45329946279525757, -0.43206170201301575, -0.4604068100452423, -0.25707677006721497, -0.23944975435733795, 0.044169776141643524, 0.8190237283706665, 0.5035310983657837, 0.06407558172941208, -0.7586750984191895, -1.1208723783493042, -0.4244272708892822, -0.09602058678865433, 0.06549901515245438, 0.48312461376190186, 0.5411329865455627, 0.34035152196884155, 1.1994096040725708, -0.6903148293495178, 0.015462381765246391, -0.24497167766094208, -0.24812950193881989, 0.4022150933742523, 0.7117841243743896, 0.7226634621620178, -0.7582448720932007, -0.8888520002365112, 0.05196608230471611, -0.9380708336830139, 0.0515965037047863, 0.13403178751468658, -0.3515482544898987, 0.4910782277584076, -0.008932969532907009, -0.967864453792572, 0.6339944005012512, -0.20431582629680634, -0.48763221502304077, 0.6479578018188477, 0.14891372621059418, 0.5165361166000366, -1.1779396533966064, -0.05539579316973686, -0.37247234582901, -0.06358678638935089, -0.7513320446014404, -0.0325518473982811, -0.21911673247814178, -0.351603627204895, -0.38918536901474, 0.44755423069000244, -0.4352470636367798, -0.26487359404563904, 0.2570483088493347, -0.09932819753885269, 0.1505717635154724, 0.23524297773838043, 0.05376412346959114, 0.8705825805664062, 0.4571166932582855, -0.6641772985458374, 0.20985686779022217, 0.24181513488292694, -0.2421269416809082, 0.5107855200767517, -0.5621599555015564, -0.006121575366705656, -0.24103683233261108, 0.23179133236408234, -1.2578109502792358, -0.5741657614707947, 0.3315333425998688, -0.4919508099555969, 0.06729134172201157, -0.25502610206604004, -0.6981135606765747, -0.4060131311416626, -0.16072683036327362, -0.3105107545852661, 0.5831395387649536, -0.4908985197544098, 0.506416916847229, 0.35123732686042786, 0.22536814212799072, -0.5221995711326599, -0.8823758959770203, 0.1039862185716629, -0.6027371883392334, -0.6966391205787659, 0.30426478385925293, 0.10711988806724548, -0.4605552852153778, 0.1511000096797943, -0.14703762531280518, -0.36585885286331177, -0.1160639077425003, -0.06641901284456253, 0.3051064610481262, -0.05799499899148941, 0.133564755320549, 0.08436000347137451, 0.21394184231758118, 0.06766878068447113, -0.06459912657737732, 0.5229741930961609, 0.11172083020210266, 0.0058097816072404385, -0.1093897596001625, 0.5447303652763367, 0.49696242809295654, -0.11191783845424652, 1.103954792022705, 0.48433372378349304, -0.2747223675251007, -0.14083722233772278, -0.5408896207809448, -0.12422282993793488, -0.41194626688957214, 0.16754741966724396, -0.3680645525455475, -0.7828932404518127, 0.7702344655990601, 0.42560040950775146, 0.2625432312488556, 0.8702768683433533, 0.36017581820487976, -0.4048382639884949, 0.644248366355896, -0.09524936228990555, 0.4142819344997406, -0.037597592920064926, -0.16429440677165985, 0.030991336330771446, -0.28169316053390503, -0.4495835304260254, -0.6356565952301025, 0.1476990133523941, -0.7991829514503479, -0.487338125705719, 0.45131418108940125, -0.07996492087841034, -0.199989914894104, 0.4763285219669342, -0.7716295123100281, 0.5398189425468445, 0.274431973695755, 0.017745738849043846, 0.23663781583309174, 0.30002403259277344, 0.12913870811462402, -0.17527620494365692, -0.35199645161628723, -0.4101865589618683, 1.308799386024475, -0.4367431700229645, 0.5321530103683472, 0.4178483486175537, 0.8117292523384094, 0.5419142842292786, 0.15833130478858948, -0.31157541275024414, 0.7376709580421448, -0.342678964138031, -0.9926396012306213, -0.11686768382787704, -0.6677400469779968, -0.9254423379898071, 0.4914250671863556, -0.5463889837265015, -0.5503992438316345, 0.14872345328330994, 0.20291434228420258, 0.03939734026789665, 0.1827053278684616, -0.9397599101066589, 0.6633040904998779, 0.0630856454372406, -0.4453381896018982, 0.16661790013313293, -0.6732366681098938, 0.43542319536209106, 0.02869858779013157, 0.26036372780799866, -0.19467589259147644, -0.1230834349989891, 0.5236687064170837, -0.8559629321098328, 0.5801724195480347, -0.5599554181098938, 0.23191587626934052, 0.7269677519798279, 0.043147165328264236, 0.7016465067863464, 0.10730475187301636, -0.3281250596046448, -0.3210589289665222, 0.11114587634801865, -0.25947508215904236, -0.7185375094413757, 0.5876598358154297, -0.5287014245986938, -0.5515364408493042, -0.22796054184436798, -0.4144137501716614, -0.2719579339027405, 0.0728411078453064, 0.400873064994812, 0.4103583097457886, -0.07110586762428284, 0.5237704515457153, 0.5834226012229919, -0.16809998452663422, 0.3196374177932739, 0.6527256965637207, -0.11815308034420013, -0.41432008147239685, 0.5094085931777954, 0.5713922381401062, 0.21145017445087433, 0.45784491300582886, -0.013981443829834461, -0.5580285787582397, -0.5935477614402771, -0.3061046600341797, -0.07625860720872879, -0.561683177947998, -0.28373050689697266, -0.7988983392715454, -0.08685825765132904, -0.6093894839286804, -0.035067398101091385, 0.060669876635074615, -0.9365503191947937, -0.23772487044334412, -0.19117051362991333, 0.6003358960151672, 0.39346182346343994, 0.12917686998844147, 0.21689490973949432, -0.3825129270553589, 0.1863505244255066, 0.17355719208717346, 0.25199443101882935, -0.20456483960151672, -0.2028077095746994, -0.0542551651597023, 0.1170225515961647, -0.08301647007465363, -1.1985559463500977, 0.4040851294994354, 0.32802605628967285, 0.5937621593475342, -0.10650298744440079, 0.3008318543434143, 0.679515540599823, -0.3518444895744324, 1.082604169845581, -0.12097574770450592, -0.48499011993408203, 0.7729797959327698, -0.46855369210243225, 0.0037442478351294994, 0.937218427658081, 0.4972992539405823, -0.15888826549053192, -0.23707333207130432, -0.6054375767707825, -0.99997878074646, 0.49935078620910645, 0.5227822065353394, 0.05652693286538124, -0.28275230526924133, 0.5985534191131592, 0.2418365329504013, 0.3498323857784271, -1.0871068239212036, -0.5927172303199768, -0.13199321925640106, -0.024689465761184692, 0.28255558013916016, -0.10146284103393555, -0.24592021107673645, -0.39016464352607727, 0.3944614827632904, 0.004190949723124504, 0.22662711143493652, 0.2278754562139511, -0.03051147423684597, 0.2888805568218231, 0.29721760749816895, 0.2632940113544464, 0.7182542681694031, -0.34485262632369995, -0.004848193842917681, 0.504091203212738, -0.2339354008436203, -0.07236669212579727, 0.17411383986473083, -0.16401872038841248, 0.08079064637422562, 0.18006457388401031, 0.48222267627716064, -0.2675265073776245, -0.5642335414886475, 0.16431668400764465, 0.06260035932064056, -0.23040243983268738, -0.5893846750259399, 0.1595577746629715, 0.192441925406456, -0.21527963876724243, 0.5015362501144409, -0.2622685134410858, 0.4608825445175171, -0.46715253591537476, 0.23507066071033478, 0.42621517181396484, -0.0769323781132698, 0.08968642354011536, 0.49137580394744873, 0.051574282348155975, -0.1562919318675995, 0.725849449634552, -0.33778950572013855, 0.0049652778543531895, 0.7947182059288025, 0.6100980043411255, 0.4098542630672455, 0.28271734714508057, 0.1604718118906021, 0.5638131499290466, 0.27611806988716125, 0.3923020660877228, 0.6938461661338806, -0.027874112129211426, -0.7157789468765259, -0.152205228805542, -0.6802379488945007, -0.1595015972852707, 0.19015829265117645, -0.4957103729248047, 0.20917046070098877, -0.54036945104599, -0.2866530120372772, 0.3036578893661499, 0.09646879136562347, -0.5741788148880005, 0.3170267939567566, -0.3760930299758911, 0.7747656106948853, -0.9435411095619202, 0.46092069149017334, 0.7400129437446594, -0.7193196415901184, -0.8624127507209778, -0.3576900064945221, 0.0954744815826416, -0.48569154739379883, 0.2232125997543335, -0.10542064160108566, 0.4586215913295746, -0.21068039536476135, -0.6830077171325684, -1.0866284370422363, 1.0382721424102783, 0.13962319493293762, -0.09707624465227127, -0.07882280647754669, 0.6414791941642761, 0.6234621405601501, -0.6281219720840454, 0.05796622857451439, 0.7034256458282471, 0.518696129322052, 0.2007300704717636, -0.6090116500854492, 0.20878863334655762, -0.2301085740327835, -0.015821559354662895, 0.2900460660457611, -0.40045997500419617, 0.8480002284049988, -0.10902290791273117, -0.06054304167628288, -0.11882147938013077, 0.56284099817276, 0.4379022419452667, 0.202333465218544, 0.4804120659828186, 0.5701082944869995, 0.5391343235969543, -0.4824771583080292, 0.9994773268699646, -0.09615489840507507, 0.37018686532974243, 1.1181676387786865, -0.31594496965408325, 0.4884752333164215, 0.4216257333755493, -0.6936254501342773, 0.502825915813446, 0.8507346510887146, -0.2395356297492981, 0.5346943736076355, 0.21870900690555573, -0.255599707365036, 0.12531057000160217, -0.060744088143110275, -0.7336658835411072, 0.4078986644744873, 0.3908390998840332, -0.3468793034553528, -0.27768105268478394, -0.34587860107421875, 0.35758498311042786, -0.022149285301566124, 0.02050868794322014, 0.9556935429573059, -0.2876243591308594, -0.594382643699646, 0.5142529010772705, -0.37887004017829895, 0.3546299636363983, -0.6028002500534058, -0.014453335665166378, -0.5439741015434265, -0.32836344838142395, -0.4642132520675659, -0.9470728635787964, 0.721941351890564, -0.07814353704452515, -0.37332430481910706, 0.5254471898078918, 0.47778552770614624, -0.46894001960754395, -0.4237923324108124, -0.23432567715644836, 0.4536147713661194, 0.4725720286369324, 0.17468109726905823, -0.4736866354942322, -0.3444138765335083, 0.25317928194999695, -0.05168578773736954, 0.32981207966804504, 0.4792993664741516, 0.0010335876140743494, 0.3683636486530304, 0.7263436913490295, 0.02165371924638748, 0.08036363869905472, -0.09755963087081909, 0.8466550707817078, -0.5360598564147949, -0.4302780032157898, -0.5860413908958435, 0.7884392142295837, -0.644978404045105, -0.3356267213821411, 0.8545846343040466, 0.9502509832382202, 0.4227988123893738, -0.4538542926311493, 0.6427156925201416, -0.7046048045158386, 0.623421847820282, -0.4225221574306488, 0.6907986402511597, -0.6263484358787537, 0.06795615702867508, -0.2393510490655899, -1.0365269184112549, -0.19029580056667328, 0.22983430325984955, -0.22251510620117188, 0.06328796595335007, 0.5040369629859924, 0.9889295101165771, 0.39238590002059937, -0.03663601353764534, 0.019496938213706017, -0.003472131211310625, 0.2959437668323517, 0.24702884256839752, 0.5377643704414368, -0.2847737967967987, 0.6581458449363708, -0.2474033087491989, -0.006827968172729015, -0.10448561608791351, -0.5942392945289612, -0.4793025255203247, -0.4860932528972626, -0.2516426742076874, -0.646255373954773, 0.11418133974075317, 0.8088403940200806, 0.6919609308242798, -0.9636463522911072, -0.22751721739768982, -0.17448103427886963, 0.16780154407024384, 0.021628309041261673, -0.452250599861145, 0.4892975389957428, -0.3885035812854767, -0.36218470335006714, 0.2703050971031189, -0.1823132187128067, 0.2205146998167038, 0.16079214215278625, 0.32684263586997986, -0.24442067742347717, 0.12632916867733002, 0.6600609421730042, 0.354333758354187, -0.5536670088768005, -0.3176112473011017, -0.2989063560962677, -0.032856594771146774, 0.3012445569038391, 0.29042574763298035, -0.7069540619850159, 0.2752304673194885, 0.6427581906318665, 0.23466359078884125, 0.819077730178833, 0.13822902739048004, 0.37750545144081116, -0.7979657649993896, 0.07036365568637848, 0.14346083998680115, 0.12292594462633133, 0.35965225100517273, -0.672126829624176, 0.9361445307731628, 0.29767999053001404, -0.38225457072257996, -0.7441637516021729, 0.12965324521064758, -1.0212678909301758, -0.17136548459529877, 1.0061230659484863, 0.24973060190677643, -0.06700925529003143, -0.2477341592311859, 0.01946914568543434, 0.09094076603651047, -0.3985651731491089, 0.4502778947353363, 0.6078699231147766, -0.44767096638679504, 0.08541464805603027, -0.3707553744316101, 0.8752897381782532, 0.05022037774324417, -1.16337251663208, -0.056602828204631805, 0.7014947533607483, 0.5999011397361755, 0.09574378281831741, 0.6505077481269836, -0.43253475427627563, 0.12440965324640274, 0.23293699324131012, -0.019751649349927902, 0.15889310836791992, -0.0007100792718119919, 0.17430563271045685, 0.433001309633255, -0.14190228283405304, -0.0663541927933693 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
hf-internal-testing/fill10
hf-internal-testing
2023-06-09T21:30:54Z
6,420
0
null
[ "region:us" ]
2023-06-09T21:30:54Z
2023-06-09T21:12:14.000Z
2023-06-09T21:12:14
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
bigcode/commitpackft
bigcode
2023-08-20T07:13:43Z
6,380
23
null
[ "language:code", "license:mit", "arxiv:2308.07124", "region:us" ]
2023-08-20T07:13:43Z
2023-06-27T06:54:48.000Z
2023-06-27T06:54:48
--- license: mit pretty_name: CommitPackFT language: - code --- ![Octopack](https://github.com/bigcode-project/octopack/blob/31f3320f098703c7910e43492c39366eeea68d83/banner.png?raw=true) # Dataset Card for CommitPackFT ## Table of Contents - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [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) - [Additional Information](#additional-information) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Repository:** https://github.com/bigcode-project/octopack - **Paper:** [OctoPack: Instruction Tuning Code Large Language Models](https://arxiv.org/abs/2308.07124) - **Point of Contact:** [Niklas Muennighoff](mailto:n.muennighoff@gmail.com) ### Dataset Summary > CommitPackFT is a 2GB filtered version of [CommitPack](https://huggingface.co/datasets/bigcode/commitpack) to contain only high-quality commit messages that resemble natural language instructions. > - **Creation:** The dataset can be recreated using instructions available [here](https://github.com/bigcode-project/octopack). - **Languages:** 277 - **OctoPack🐙🎒:** <table> <tr> <th>Data</t> <td><a href=https://huggingface.co/datasets/bigcode/commitpack>CommitPack</a></td> <td>4TB of GitHub commits across 350 programming languages</td> </tr> <tr> <th></t> <td><a href=https://huggingface.co/datasets/bigcode/commitpackft>CommitPackFT</a></td> <td>Filtered version of CommitPack for high-quality commit messages that resemble instructions</td> </tr> <tr> <th>Model</t> <td><a href=https://huggingface.co/bigcode/octocoder>OctoCoder</a></td> <td>StarCoder (16B parameters) instruction tuned on CommitPackFT + OASST</td> </tr> <tr> <th></t> <td><a href=https://huggingface.co/bigcode/octogeex>OctoGeeX</a></td> <td>CodeGeeX2 (6B parameters) instruction tuned on CommitPackFT + OASST</td> </tr> <tr> <th>Evaluation&nbsp;&nbsp;</t> <td><a href=https://huggingface.co/datasets/bigcode/humanevalpack>HumanEvalPack</a></td> <td>Extension of OpenAI's HumanEval to cover 3 scenarios across 6 languages</td> </tr> </table> ## Dataset Structure ### Data Instances An example looks as follows: ```json { 'commit': '0c17311f7fd511f5dae8f8e4acc2dce1a2de3cf5', 'old_file': 'main.py', 'new_file': 'main.py', 'old_contents': "import numpy as np\nimport matplotlib.pyplot as plt\n\n# generate sample data\nx_data = np.linspace(-5, 5, 20)\ny_data = np.random.normal(0.0, 1.0, x_data.size)\n\nplt.plot(x_data, y_data, 'o')\nplt.show()\n", 'new_contents': "import math\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n# generate sample data\nx_data = np.linspace(-math.pi, math.pi, 30)\ny_data = np.sin(x_data) + np.random.normal(0.0, 0.1, x_data.size)\n\nplt.plot(x_data, y_data, 'o')\nplt.show()\n\n", 'subject': 'Change to sin() function with noise', 'message': 'Change to sin() function with noise\n', 'lang': 'Python', 'license': 'mit', 'repos': 'MorganR/basic-gaussian-process' } ``` ### Data Fields The data fields are the same among all splits: - `commit`: unique commit id - `old_file`: name of the file before the commit - `new_file`: name of the file after the commit - `old_contents`: contents of the file before the commit - `new_contents`: contents of the file after the commit - `subject`: subject of the commit (this is used for all experiments in the paper) - `message`: message of the commit (commonly the same as the subject) - `lang`: programming language - `license`: license of the repository the code stems from, one of `['mit', 'artistic-2.0', 'isc', 'cc0-1.0', 'epl-1.0', 'mpl-2.0', 'unlicense', 'unknown', 'apache-2.0', 'bsd-3-clause', 'agpl-3.0', 'lgpl-2.1', 'bsd-2-clause']` - `repos`: name of the the repository the code stems from (if multiple, they are comma separated) ### Data Splits | Name | Megabytes | % of total | Samples | % of total | | --- | --- | --- | --- | --- | | total | 1545.02 | 100.0% | 702062 | 100.0% | | ruby | 195.292 | 12.6401% | 69413 | 9.887% | | yaml | 190.876 | 12.3543% | 114320 | 16.2835% | | python | 132.68 | 8.5876% | 56025 | 7.9801% | | markdown | 131.152 | 8.4887% | 62518 | 8.9049% | | javascript | 125.008 | 8.091% | 52989 | 7.5476% | | json | 86.744 | 5.6144% | 39777 | 5.6657% | | shell | 66.864 | 4.3277% | 31217 | 4.4465% | | text | 66.664 | 4.3148% | 46588 | 6.6359% | | php | 60.22 | 3.8977% | 24791 | 3.5312% | | java | 56.284 | 3.6429% | 20635 | 2.9392% | | html | 48.42 | 3.1339% | 20214 | 2.8792% | | c# | 26.84 | 1.7372% | 9346 | 1.3312% | | xml | 23.676 | 1.5324% | 9337 | 1.3299% | | html+erb | 23.104 | 1.4954% | 10910 | 1.554% | | c | 21.08 | 1.3644% | 8506 | 1.2116% | | ini | 21.04 | 1.3618% | 11360 | 1.6181% | | coffeescript | 16.96 | 1.0977% | 5513 | 0.7853% | | swift | 16.272 | 1.0532% | 4849 | 0.6907% | | restructuredtext | 15.728 | 1.018% | 6560 | 0.9344% | | typescript | 14.284 | 0.9245% | 5868 | 0.8358% | | c++ | 14.136 | 0.9149% | 4992 | 0.711% | | scss | 13.208 | 0.8549% | 6829 | 0.9727% | | go | 12.132 | 0.7852% | 5004 | 0.7128% | | scala | 11.184 | 0.7239% | 5040 | 0.7179% | | haml | 10.74 | 0.6951% | 4415 | 0.6289% | | css | 9.364 | 0.6061% | 5049 | 0.7192% | | rust | 7.244 | 0.4689% | 2996 | 0.4267% | | toml | 5.584 | 0.3614% | 3424 | 0.4877% | | jsx | 5.5 | 0.356% | 2199 | 0.3132% | | kotlin | 5.368 | 0.3474% | 2214 | 0.3154% | | clojure | 5.068 | 0.328% | 2403 | 0.3423% | | perl | 4.988 | 0.3228% | 2288 | 0.3259% | | bitbake | 4.464 | 0.2889% | 1308 | 0.1863% | | groovy | 4.168 | 0.2698% | 1486 | 0.2117% | | twig | 3.956 | 0.256% | 1610 | 0.2293% | | nix | 3.84 | 0.2485% | 1593 | 0.2269% | | sql | 3.74 | 0.2421% | 2069 | 0.2947% | | less | 3.724 | 0.241% | 1360 | 0.1937% | | haskell | 3.308 | 0.2141% | 1389 | 0.1978% | | handlebars | 3.292 | 0.2131% | 1429 | 0.2035% | | unknown | 3.048 | 0.1973% | 1597 | 0.2275% | | batchfile | 2.984 | 0.1931% | 1466 | 0.2088% | | cucumber | 2.588 | 0.1675% | 976 | 0.139% | | makefile | 2.528 | 0.1636% | 960 | 0.1367% | | elixir | 2.348 | 0.152% | 1150 | 0.1638% | | jade | 2.348 | 0.152% | 1119 | 0.1594% | | cmake | 2.268 | 0.1468% | 981 | 0.1397% | | powershell | 2.064 | 0.1336% | 991 | 0.1412% | | slim | 2.056 | 0.1331% | 1052 | 0.1498% | | emacs-lisp | 1.972 | 0.1276% | 1015 | 0.1446% | | dart | 1.96 | 0.1269% | 765 | 0.109% | | viml | 1.956 | 0.1266% | 1063 | 0.1514% | | asciidoc | 1.864 | 0.1206% | 523 | 0.0745% | | lua | 1.852 | 0.1199% | 920 | 0.131% | | llvm | 1.6 | 0.1036% | 780 | 0.1111% | | smarty | 1.588 | 0.1028% | 737 | 0.105% | | diff | 1.48 | 0.0958% | 680 | 0.0969% | | common-lisp | 1.448 | 0.0937% | 778 | 0.1108% | | saltstack | 1.412 | 0.0914% | 617 | 0.0879% | | vue | 1.384 | 0.0896% | 587 | 0.0836% | | sass | 1.364 | 0.0883% | 705 | 0.1004% | | fish | 1.328 | 0.086% | 813 | 0.1158% | | erlang | 1.192 | 0.0772% | 480 | 0.0684% | | freemarker | 1.028 | 0.0665% | 510 | 0.0726% | | stylus | 0.948 | 0.0614% | 480 | 0.0684% | | qml | 0.936 | 0.0606% | 368 | 0.0524% | | hcl | 0.912 | 0.059% | 421 | 0.06% | | html+django | 0.848 | 0.0549% | 399 | 0.0568% | | mako | 0.756 | 0.0489% | 170 | 0.0242% | | ada | 0.728 | 0.0471% | 265 | 0.0377% | | ocaml | 0.704 | 0.0456% | 333 | 0.0474% | | f# | 0.656 | 0.0425% | 254 | 0.0362% | | elm | 0.62 | 0.0401% | 265 | 0.0377% | | tex | 0.564 | 0.0365% | 307 | 0.0437% | | rdoc | 0.552 | 0.0357% | 270 | 0.0385% | | csv | 0.532 | 0.0344% | 375 | 0.0534% | | protocol-buffer | 0.524 | 0.0339% | 181 | 0.0258% | | smalltalk | 0.46 | 0.0298% | 284 | 0.0405% | | arduino | 0.456 | 0.0295% | 225 | 0.032% | | java-server-pages | 0.452 | 0.0293% | 173 | 0.0246% | | scheme | 0.42 | 0.0272% | 213 | 0.0303% | | groff | 0.396 | 0.0256% | 192 | 0.0273% | | objective-c++ | 0.376 | 0.0243% | 86 | 0.0122% | | desktop | 0.364 | 0.0236% | 186 | 0.0265% | | factor | 0.356 | 0.023% | 113 | 0.0161% | | crystal | 0.348 | 0.0225% | 182 | 0.0259% | | rhtml | 0.348 | 0.0225% | 135 | 0.0192% | | haxe | 0.344 | 0.0223% | 174 | 0.0248% | | glsl | 0.34 | 0.022% | 164 | 0.0234% | | gas | 0.336 | 0.0217% | 193 | 0.0275% | | html+php | 0.332 | 0.0215% | 150 | 0.0214% | | qmake | 0.32 | 0.0207% | 140 | 0.0199% | | julia | 0.312 | 0.0202% | 180 | 0.0256% | | cython | 0.308 | 0.0199% | 123 | 0.0175% | | html+eex | 0.292 | 0.0189% | 135 | 0.0192% | | tcl | 0.292 | 0.0189% | 103 | 0.0147% | | org | 0.272 | 0.0176% | 136 | 0.0194% | | perl6 | 0.268 | 0.0173% | 122 | 0.0174% | | m4 | 0.264 | 0.0171% | 101 | 0.0144% | | xslt | 0.256 | 0.0166% | 99 | 0.0141% | | svg | 0.252 | 0.0163% | 169 | 0.0241% | | nimrod | 0.236 | 0.0153% | 67 | 0.0095% | | r | 0.228 | 0.0148% | 121 | 0.0172% | | robotframework | 0.212 | 0.0137% | 85 | 0.0121% | | racket | 0.196 | 0.0127% | 117 | 0.0167% | | textile | 0.184 | 0.0119% | 61 | 0.0087% | | assembly | 0.172 | 0.0111% | 105 | 0.015% | | purescript | 0.172 | 0.0111% | 80 | 0.0114% | | unity3d-asset | 0.156 | 0.0101% | 101 | 0.0144% | | visual-basic | 0.152 | 0.0098% | 48 | 0.0068% | | dm | 0.148 | 0.0096% | 16 | 0.0023% | | pod | 0.148 | 0.0096% | 54 | 0.0077% | | standard-ml | 0.148 | 0.0096% | 72 | 0.0103% | | fortran | 0.144 | 0.0093% | 70 | 0.01% | | gettext-catalog | 0.132 | 0.0085% | 72 | 0.0103% | | idris | 0.132 | 0.0085% | 38 | 0.0054% | | livescript | 0.128 | 0.0083% | 63 | 0.009% | | xtend | 0.128 | 0.0083% | 55 | 0.0078% | | actionscript | 0.12 | 0.0078% | 49 | 0.007% | | vala | 0.116 | 0.0075% | 50 | 0.0071% | | awk | 0.104 | 0.0067% | 52 | 0.0074% | | ceylon | 0.1 | 0.0065% | 49 | 0.007% | | jupyter-notebook | 0.1 | 0.0065% | 48 | 0.0068% | | dockerfile | 0.096 | 0.0062% | 39 | 0.0056% | | rouge | 0.096 | 0.0062% | 41 | 0.0058% | | asp | 0.092 | 0.006% | 22 | 0.0031% | | sqf | 0.092 | 0.006% | 45 | 0.0064% | | edn | 0.088 | 0.0057% | 48 | 0.0068% | | liquid | 0.088 | 0.0057% | 30 | 0.0043% | | xquery | 0.084 | 0.0054% | 39 | 0.0056% | | linker-script | 0.08 | 0.0052% | 37 | 0.0053% | | mediawiki | 0.08 | 0.0052% | 33 | 0.0047% | | parrot-internal-representation | 0.08 | 0.0052% | 23 | 0.0033% | | solidity | 0.08 | 0.0052% | 37 | 0.0053% | | json5 | 0.076 | 0.0049% | 33 | 0.0047% | | systemverilog | 0.076 | 0.0049% | 35 | 0.005% | | thrift | 0.076 | 0.0049% | 28 | 0.004% | | groovy-server-pages | 0.072 | 0.0047% | 25 | 0.0036% | | processing | 0.072 | 0.0047% | 35 | 0.005% | | cuda | 0.068 | 0.0044% | 25 | 0.0036% | | graphviz-dot | 0.068 | 0.0044% | 35 | 0.005% | | inno-setup | 0.064 | 0.0041% | 16 | 0.0023% | | api-blueprint | 0.06 | 0.0039% | 23 | 0.0033% | | nsis | 0.06 | 0.0039% | 15 | 0.0021% | | gentoo-ebuild | 0.056 | 0.0036% | 16 | 0.0023% | | logtalk | 0.056 | 0.0036% | 21 | 0.003% | | jasmin | 0.052 | 0.0034% | 9 | 0.0013% | | literate-coffeescript | 0.052 | 0.0034% | 19 | 0.0027% | | webidl | 0.052 | 0.0034% | 6 | 0.0009% | | coldfusion-cfc | 0.048 | 0.0031% | 20 | 0.0028% | | opencl | 0.048 | 0.0031% | 23 | 0.0033% | | openscad | 0.048 | 0.0031% | 21 | 0.003% | | pan | 0.048 | 0.0031% | 23 | 0.0033% | | pascal | 0.048 | 0.0031% | 25 | 0.0036% | | pony | 0.048 | 0.0031% | 16 | 0.0023% | | turtle | 0.048 | 0.0031% | 21 | 0.003% | | chapel | 0.044 | 0.0028% | 20 | 0.0028% | | ioke | 0.044 | 0.0028% | 25 | 0.0036% | | ooc | 0.044 | 0.0028% | 15 | 0.0021% | | sparql | 0.044 | 0.0028% | 23 | 0.0033% | | applescript | 0.04 | 0.0026% | 19 | 0.0027% | | augeas | 0.04 | 0.0026% | 13 | 0.0019% | | g-code | 0.04 | 0.0026% | 7 | 0.001% | | mirah | 0.04 | 0.0026% | 16 | 0.0023% | | capn-proto | 0.036 | 0.0023% | 12 | 0.0017% | | digital-command-language | 0.036 | 0.0023% | 19 | 0.0027% | | hy | 0.036 | 0.0023% | 12 | 0.0017% | | logos | 0.036 | 0.0023% | 19 | 0.0027% | | modelica | 0.036 | 0.0023% | 15 | 0.0021% | | vcl | 0.036 | 0.0023% | 18 | 0.0026% | | antlr | 0.032 | 0.0021% | 15 | 0.0021% | | gdscript | 0.032 | 0.0021% | 9 | 0.0013% | | graphql | 0.032 | 0.0021% | 17 | 0.0024% | | hlsl | 0.032 | 0.0021% | 11 | 0.0016% | | gnuplot | 0.028 | 0.0018% | 17 | 0.0024% | | http | 0.028 | 0.0018% | 19 | 0.0027% | | ninja | 0.028 | 0.0018% | 14 | 0.002% | | oz | 0.028 | 0.0018% | 8 | 0.0011% | | raml | 0.028 | 0.0018% | 9 | 0.0013% | | aspectj | 0.024 | 0.0016% | 8 | 0.0011% | | autohotkey | 0.024 | 0.0016% | 15 | 0.0021% | | fancy | 0.024 | 0.0016% | 8 | 0.0011% | | moonscript | 0.024 | 0.0016% | 10 | 0.0014% | | piglatin | 0.024 | 0.0016% | 11 | 0.0016% | | stata | 0.024 | 0.0016% | 10 | 0.0014% | | urweb | 0.024 | 0.0016% | 6 | 0.0009% | | xs | 0.024 | 0.0016% | 7 | 0.001% | | yang | 0.024 | 0.0016% | 6 | 0.0009% | | agda | 0.02 | 0.0013% | 10 | 0.0014% | | coldfusion | 0.02 | 0.0013% | 9 | 0.0013% | | emberscript | 0.02 | 0.0013% | 7 | 0.001% | | latte | 0.02 | 0.0013% | 7 | 0.001% | | literate-haskell | 0.02 | 0.0013% | 7 | 0.001% | | postscript | 0.02 | 0.0013% | 9 | 0.0013% | | scilab | 0.02 | 0.0013% | 10 | 0.0014% | | tcsh | 0.02 | 0.0013% | 10 | 0.0014% | | volt | 0.02 | 0.0013% | 9 | 0.0013% | | apl | 0.016 | 0.001% | 7 | 0.001% | | genshi | 0.016 | 0.001% | 3 | 0.0004% | | jsonld | 0.016 | 0.001% | 6 | 0.0009% | | krl | 0.016 | 0.001% | 4 | 0.0006% | | lean | 0.016 | 0.001% | 3 | 0.0004% | | lfe | 0.016 | 0.001% | 6 | 0.0009% | | metal | 0.016 | 0.001% | 4 | 0.0006% | | monkey | 0.016 | 0.001% | 4 | 0.0006% | | mupad | 0.016 | 0.001% | 4 | 0.0006% | | nesc | 0.016 | 0.001% | 7 | 0.001% | | nit | 0.016 | 0.001% | 3 | 0.0004% | | pike | 0.016 | 0.001% | 6 | 0.0009% | | purebasic | 0.016 | 0.001% | 5 | 0.0007% | | renpy | 0.016 | 0.001% | 3 | 0.0004% | | vhdl | 0.016 | 0.001% | 5 | 0.0007% | | xproc | 0.016 | 0.001% | 3 | 0.0004% | | zephir | 0.016 | 0.001% | 4 | 0.0006% | | apacheconf | 0.012 | 0.0008% | 2 | 0.0003% | | boo | 0.012 | 0.0008% | 2 | 0.0003% | | brainfuck | 0.012 | 0.0008% | 2 | 0.0003% | | bro | 0.012 | 0.0008% | 3 | 0.0004% | | cartocss | 0.012 | 0.0008% | 3 | 0.0004% | | creole | 0.012 | 0.0008% | 2 | 0.0003% | | csound | 0.012 | 0.0008% | 4 | 0.0006% | | dylan | 0.012 | 0.0008% | 2 | 0.0003% | | eagle | 0.012 | 0.0008% | 4 | 0.0006% | | ecl | 0.012 | 0.0008% | 4 | 0.0006% | | eiffel | 0.012 | 0.0008% | 2 | 0.0003% | | flux | 0.012 | 0.0008% | 3 | 0.0004% | | io | 0.012 | 0.0008% | 4 | 0.0006% | | jsoniq | 0.012 | 0.0008% | 6 | 0.0009% | | lilypond | 0.012 | 0.0008% | 6 | 0.0009% | | lsl | 0.012 | 0.0008% | 3 | 0.0004% | | mask | 0.012 | 0.0008% | 4 | 0.0006% | | nginx | 0.012 | 0.0008% | 2 | 0.0003% | | nu | 0.012 | 0.0008% | 2 | 0.0003% | | pov-ray-sdl | 0.012 | 0.0008% | 5 | 0.0007% | | ragel-in-ruby-host | 0.012 | 0.0008% | 4 | 0.0006% | | slash | 0.012 | 0.0008% | 4 | 0.0006% | | sourcepawn | 0.012 | 0.0008% | 3 | 0.0004% | | squirrel | 0.012 | 0.0008% | 4 | 0.0006% | | ston | 0.012 | 0.0008% | 6 | 0.0009% | | uno | 0.012 | 0.0008% | 2 | 0.0003% | | wisp | 0.012 | 0.0008% | 3 | 0.0004% | | xbase | 0.012 | 0.0008% | 3 | 0.0004% | | yacc | 0.012 | 0.0008% | 3 | 0.0004% | | zig | 0.012 | 0.0008% | 4 | 0.0006% | | abap | 0.008 | 0.0005% | 1 | 0.0001% | | arc | 0.008 | 0.0005% | 2 | 0.0003% | | ats | 0.008 | 0.0005% | 3 | 0.0004% | | blitzmax | 0.008 | 0.0005% | 1 | 0.0001% | | bluespec | 0.008 | 0.0005% | 2 | 0.0003% | | c2hs-haskell | 0.008 | 0.0005% | 2 | 0.0003% | | clean | 0.008 | 0.0005% | 1 | 0.0001% | | dns-zone | 0.008 | 0.0005% | 2 | 0.0003% | | forth | 0.008 | 0.0005% | 2 | 0.0003% | | harbour | 0.008 | 0.0005% | 1 | 0.0001% | | igor-pro | 0.008 | 0.0005% | 1 | 0.0001% | | inform-7 | 0.008 | 0.0005% | 2 | 0.0003% | | isabelle | 0.008 | 0.0005% | 2 | 0.0003% | | jflex | 0.008 | 0.0005% | 1 | 0.0001% | | literate-agda | 0.008 | 0.0005% | 1 | 0.0001% | | maple | 0.008 | 0.0005% | 2 | 0.0003% | | mathematica | 0.008 | 0.0005% | 1 | 0.0001% | | module-management-system | 0.008 | 0.0005% | 1 | 0.0001% | | mtml | 0.008 | 0.0005% | 2 | 0.0003% | | netlinx | 0.008 | 0.0005% | 1 | 0.0001% | | parrot-assembly | 0.008 | 0.0005% | 2 | 0.0003% | | pawn | 0.008 | 0.0005% | 3 | 0.0004% | | propeller-spin | 0.008 | 0.0005% | 1 | 0.0001% | | pure-data | 0.008 | 0.0005% | 1 | 0.0001% | | rebol | 0.008 | 0.0005% | 3 | 0.0004% | | red | 0.008 | 0.0005% | 1 | 0.0001% | | sage | 0.008 | 0.0005% | 1 | 0.0001% | | sas | 0.008 | 0.0005% | 1 | 0.0001% | | scaml | 0.008 | 0.0005% | 1 | 0.0001% | | smt | 0.008 | 0.0005% | 3 | 0.0004% | | supercollider | 0.008 | 0.0005% | 2 | 0.0003% | | unrealscript | 0.008 | 0.0005% | 1 | 0.0001% | | xpages | 0.008 | 0.0005% | 1 | 0.0001% | ## Additional Information ### Licensing Information Each sample comes from a code repository with a permissive license. The license is provided by the `license` field for each sample. ### Citation Information ```bibtex @article{muennighoff2023octopack, title={OctoPack: Instruction Tuning Code Large Language Models}, author={Niklas Muennighoff and Qian Liu and Armel Zebaze and Qinkai Zheng and Binyuan Hui and Terry Yue Zhuo and Swayam Singh and Xiangru Tang and Leandro von Werra and Shayne Longpre}, journal={arXiv preprint arXiv:2308.07124}, year={2023} } ```
[ -0.5804096460342407, -0.6192707419395447, 0.285213440656662, 0.13425582647323608, -0.1821833997964859, 0.11033769696950912, -0.1710425764322281, -0.26695701479911804, 0.7650960087776184, 0.2757425904273987, -0.4799613654613495, -0.8639769554138184, -0.569779634475708, -0.026080533862113953, 0.125546395778656, 0.8485486507415771, 0.0005267957458272576, -0.3286058306694031, -0.043728239834308624, -0.16076214611530304, 0.10450392961502075, -0.16928082704544067, -0.5646242499351501, -0.025782253593206406, 0.26459163427352905, 0.3485856354236603, 0.6754466891288757, 1.0276981592178345, 0.6780664324760437, 0.47490474581718445, -0.16802191734313965, 0.01935412548482418, -0.20030206441879272, -0.262023389339447, 0.2487153857946396, -0.5797052979469299, -0.40291714668273926, -0.08674606680870056, 0.5629968047142029, 0.5471451878547668, 0.07820229232311249, 0.43155357241630554, -0.13938383758068085, 1.0410600900650024, -0.533395528793335, 0.3529641628265381, -0.23630398511886597, -0.08873005956411362, -0.21423688530921936, -0.1210801973938942, -0.04546545818448067, -0.7086198329925537, -0.21554847061634064, -0.701923668384552, 0.1979774534702301, -0.08059034496545792, 1.2674745321273804, 0.03508948162198067, -0.1402241289615631, -0.2702513337135315, -0.2671244442462921, 0.7636468410491943, -0.9810016751289368, 0.23627500236034393, 0.550629734992981, -0.04878263920545578, -0.31908223032951355, -0.7292007803916931, -0.8097867369651794, 0.15741214156150818, -0.37842851877212524, 0.18294021487236023, -0.10355083644390106, -0.3084593713283539, 0.30473393201828003, 0.6884533166885376, -0.8293195366859436, -0.12911319732666016, -0.5634207725524902, -0.1541307121515274, 0.9340863227844238, 0.17928311228752136, 0.3161570429801941, -0.5366058945655823, -0.3370295464992523, -0.4082723557949066, -0.12328987568616867, 0.6407491564750671, 0.42622312903404236, 0.20167787373065948, -0.7632339596748352, 0.5241715312004089, -0.3208770155906677, 0.49328431487083435, 0.18153901398181915, -0.563644528388977, 0.9353027939796448, -0.5350179076194763, -0.29390424489974976, -0.162587508559227, 1.309578537940979, 0.7096329927444458, -0.31926462054252625, 0.4346652030944824, 0.2191832959651947, -0.0851927176117897, 0.043331123888492584, -0.8230366110801697, -0.3661699593067169, 0.8624405264854431, -0.5376604795455933, -0.30974477529525757, 0.1313459873199463, -1.1882379055023193, -0.136038139462471, -0.202724426984787, 0.09352614730596542, -0.5720274448394775, -0.26380977034568787, 0.058664482086896896, -0.26065173745155334, 0.3997877836227417, 0.38136544823646545, -0.9292013049125671, 0.038622379302978516, 0.4677237570285797, 1.0169975757598877, -0.001842505531385541, -0.11732516437768936, -0.24329693615436554, 0.11153259128332138, -0.24706031382083893, 0.6172717809677124, -0.1952977329492569, -0.24859493970870972, -0.31405168771743774, 0.29048243165016174, -0.027227509766817093, -0.09941359609365463, 0.4822908043861389, -0.1118849664926529, 0.1109209880232811, -0.294775128364563, -0.15220342576503754, -0.1585792750120163, 0.22566761076450348, -0.7683924436569214, 1.1126761436462402, 0.5307983756065369, -1.1524280309677124, 0.21384286880493164, -0.47349250316619873, -0.1558120846748352, -0.009730770252645016, -0.1054220125079155, -0.9314481019973755, -0.37531501054763794, 0.4258165955543518, 0.3244655132293701, -0.35369905829429626, -0.12842653691768646, -0.24456843733787537, 0.0017370217246934772, 0.09627223759889603, -0.02626952715218067, 1.352932333946228, 0.49678558111190796, -0.49280238151550293, 0.06048188358545303, -1.0135142803192139, 0.1558312624692917, 0.37651410698890686, -0.6209913492202759, -0.04923764988780022, -0.45659884810447693, -0.08021474629640579, 0.1164301335811615, 0.51405930519104, -0.606652557849884, 0.4428105652332306, -0.3970429599285126, 0.5670603513717651, 0.7642408609390259, 0.17941145598888397, 0.3875211775302887, -0.5094650387763977, 0.31612086296081543, 0.22853907942771912, 0.31229710578918457, -0.25592631101608276, -0.37838298082351685, -0.7644630074501038, -0.6360777616500854, 0.04416932165622711, 0.60751873254776, -0.41372746229171753, 0.6801085472106934, -0.31681424379348755, -0.9054030179977417, -0.5505710244178772, 0.13517998158931732, 0.2810567617416382, 0.5274492502212524, 0.3709189295768738, -0.3029259145259857, -0.6098693609237671, -0.9666904807090759, 0.05679070204496384, -0.17716489732265472, 0.15700145065784454, 0.3153981566429138, 0.8760663270950317, -0.35276320576667786, 0.9246549606323242, -0.9952698349952698, -0.20494221150875092, -0.07530541718006134, 0.024489711970090866, 0.6170216798782349, 0.7691123485565186, 0.5565879344940186, -0.7243512272834778, -0.8406457901000977, 0.20535466074943542, -0.6888165473937988, 0.11551835387945175, -0.30638259649276733, -0.21446922421455383, 0.2639067471027374, 0.3668898344039917, -0.7795125842094421, 0.6619418263435364, 0.46682560443878174, -0.45720869302749634, 0.8073821067810059, -0.34040334820747375, 0.52884441614151, -1.3144443035125732, 0.1980796456336975, 0.11565978080034256, -0.0015591585543006659, -0.5189725756645203, -0.08354369550943375, 0.22352664172649384, -0.07449214160442352, -0.38850995898246765, 0.46074968576431274, -0.7765483856201172, 0.04230957478284836, 0.46743643283843994, -0.07025597989559174, -0.09418091922998428, 0.6626472473144531, -0.2570785880088806, 0.9155339002609253, 0.8443395495414734, -0.3164965510368347, 0.39905139803886414, 0.23559542000293732, -0.3753088116645813, 0.2732301354408264, -0.63038569688797, 0.003067683894187212, -0.08535250276327133, 0.1467701643705368, -1.2221390008926392, -0.3881334662437439, 0.4621255695819855, -0.6957409977912903, 0.24777927994728088, -0.3460947573184967, -0.2933008074760437, -0.7801010012626648, -0.9073213338851929, 0.11863967776298523, 0.538798451423645, -0.1828507035970688, 0.4421217441558838, 0.4426501989364624, -0.12066091597080231, -0.5617247223854065, -0.7292490601539612, -0.18697978556156158, -0.04618421196937561, -0.8208234310150146, 0.3667697608470917, -0.170405313372612, -0.23709559440612793, -0.08314933627843857, -0.12617269158363342, -0.22966720163822174, -0.2746885120868683, 0.40832650661468506, 0.3122192919254303, -0.2073574811220169, -0.3963015675544739, -0.3105306029319763, -0.25581327080726624, -0.20309396088123322, -0.13569629192352295, 0.5203849673271179, -0.4017941355705261, -0.5185225605964661, -0.5035322904586792, 0.35564175248146057, 0.8533447980880737, -0.5438399314880371, 1.0680758953094482, 0.6583187580108643, -0.0353945717215538, -0.003553610760718584, -0.39977726340293884, 0.16264086961746216, -0.4801238179206848, 0.012829636223614216, -0.28884249925613403, -0.8166096210479736, 0.7956064939498901, 0.09753777831792831, 0.2766627073287964, 0.7434616684913635, 0.4321313500404358, -0.16103656589984894, 0.8309109807014465, 0.3859420120716095, -0.09186819940805435, 0.4877542555332184, -0.7999553680419922, 0.29098376631736755, -0.6474187970161438, -0.4214952290058136, -0.7603334188461304, -0.2510378956794739, -0.7954792976379395, -0.6263219118118286, 0.3999050557613373, 0.3457767367362976, -0.3553031086921692, 0.47485753893852234, -0.9996137022972107, 0.16940172016620636, 0.6550900936126709, 0.2589367926120758, 0.05584615841507912, -0.09939800947904587, -0.3301086127758026, 0.022172706201672554, -0.4090074896812439, -0.5077462196350098, 1.184538722038269, 0.09064235538244247, 0.6967697143554688, 0.15259656310081482, 0.8755361437797546, 0.09598188102245331, -0.08235210180282593, -0.332143634557724, 0.4202130436897278, 0.1709171086549759, -0.5301622152328491, -0.4424871802330017, -0.42856329679489136, -1.2067233324050903, 0.2763163149356842, -0.16299310326576233, -0.99200838804245, 0.31809061765670776, 0.13609658181667328, -0.23249489068984985, 0.6110742688179016, -1.0536247491836548, 0.8673778772354126, -0.2905288636684418, -0.5549072027206421, 0.041625041514635086, -0.7236285209655762, 0.2574603259563446, 0.1940503716468811, 0.5244888663291931, -0.06652074307203293, -0.04670220613479614, 0.9220314621925354, -1.0121561288833618, 0.555686891078949, -0.07967371493577957, 0.19282077252864838, 0.566598117351532, -0.12547484040260315, 0.8117880821228027, 0.1249127984046936, -0.16685980558395386, 0.07994038611650467, 0.1232752874493599, -0.6262526512145996, -0.20846274495124817, 0.8999381065368652, -0.8921912312507629, -0.7225948572158813, -0.6205887198448181, -0.4324783980846405, 0.3455416262149811, 0.5723655223846436, 0.2042839080095291, 0.3311912715435028, 0.2620728611946106, 0.35678672790527344, 0.5756717920303345, -0.45017489790916443, 0.7939382195472717, 0.38858774304389954, -0.0549645721912384, -0.9191210865974426, 0.93182772397995, 0.0560203492641449, 0.29361891746520996, 0.34989774227142334, 0.0812571719288826, -0.17286449670791626, -0.6194826364517212, -0.41184258460998535, 0.48485809564590454, -0.40379491448402405, -0.23268257081508636, -0.8197638988494873, -0.028409253805875778, -0.849996030330658, -0.7505759596824646, -0.46115249395370483, -0.47568127512931824, -0.26388001441955566, -0.011004986241459846, 0.9312628507614136, 0.5741481184959412, -0.31321966648101807, 0.134471133351326, -0.7485876679420471, 0.43675291538238525, 0.12073998898267746, 0.4536512792110443, -0.1359984129667282, -0.27137553691864014, -0.3584766089916229, 0.06587789207696915, -0.3761996924877167, -0.8569214344024658, 0.8566010594367981, -0.3582502007484436, 0.5650022625923157, 0.1303953379392624, 0.1547032743692398, 0.9010927081108093, -0.06954237073659897, 0.9857348203659058, 0.4627847969532013, -0.8402655124664307, 0.8308107256889343, -0.35610446333885193, 0.5021582245826721, 0.5942697525024414, 0.5348029732704163, -0.4977865219116211, -0.5620994567871094, -0.9543957710266113, -1.0908604860305786, 0.8876914381980896, 0.3129458427429199, -0.5215744972229004, 0.03239746019244194, 0.006320436019450426, -0.1660424917936325, 0.03554079681634903, -0.8612620234489441, -0.9202907681465149, -0.2367517650127411, -0.23096279799938202, 0.03901130333542824, 0.11843419075012207, -0.1402660608291626, -0.54620361328125, 0.49906405806541443, -0.024253414943814278, 0.6567522287368774, 0.4741581976413727, -0.03872554749250412, -0.05400095507502556, 0.25528842210769653, 0.6217578053474426, 0.6826627254486084, -0.4063383638858795, 0.12771867215633392, -0.03435693681240082, -0.7960110306739807, 0.10268726199865341, 0.07048551738262177, -0.2745192050933838, -0.07893570512533188, 0.42568424344062805, 0.49791842699050903, -0.2559809684753418, -0.22289887070655823, 0.4290756583213806, 0.08455916494131088, -0.45100513100624084, -0.375415176153183, 0.07371056824922562, 0.3637060225009918, 0.2492218017578125, 0.515055775642395, 0.2749619483947754, -0.1331651508808136, -0.5313498377799988, 0.25073951482772827, 0.44028419256210327, -0.29291826486587524, 0.036631859838962555, 0.7101337909698486, -0.10050581395626068, -0.3233557343482971, 0.3747189939022064, -0.0973174124956131, -0.7150075435638428, 0.9930500984191895, 0.3364482820034027, 0.5787363052368164, -0.07411970943212509, 0.10479750484228134, 1.0110583305358887, 0.48980456590652466, 0.2154923528432846, 0.3458288908004761, 0.12912635505199432, -0.284111350774765, -0.02570987306535244, -0.8260650038719177, -0.0919879674911499, 0.25934314727783203, -0.4745171368122101, 0.3347311019897461, -0.6252073645591736, -0.15071795880794525, 0.2747066915035248, 0.30622729659080505, -0.5352602005004883, 0.18937847018241882, -0.18724876642227173, 0.9360466003417969, -0.9094272255897522, 0.7517958879470825, 0.8017794489860535, -0.9888827800750732, -1.0094059705734253, -0.3069971203804016, 0.04955706372857094, -0.538951575756073, 0.4287748634815216, -0.03399759903550148, 0.18808825314044952, -0.16934728622436523, -0.5630800127983093, -1.206145167350769, 1.45673668384552, 0.054027244448661804, -0.4158850908279419, 0.3598872125148773, 0.235590860247612, 0.37729573249816895, -0.10773039609193802, 0.6404646635055542, 0.586649477481842, 0.6995841860771179, 0.012633347883820534, -0.981180727481842, 0.3292253911495209, -0.7489781379699707, -0.13975408673286438, 0.31615111231803894, -1.1109824180603027, 1.1301486492156982, -0.17900899052619934, 0.0445575974881649, -0.44629228115081787, 0.5345427989959717, 0.42106255888938904, 0.07973107695579529, 0.2826973497867584, 0.8372730612754822, 0.8998396992683411, -0.3380254805088043, 1.1775789260864258, -0.3352449834346771, 0.6845688223838806, 0.7225356698036194, 0.31953972578048706, 0.7523369789123535, 0.5411920547485352, -0.7406283020973206, 0.526117742061615, 0.6028265953063965, -0.126067116856575, 0.41120076179504395, 0.009061253629624844, -0.2661516070365906, 0.1817086637020111, 0.2503456473350525, -0.8043225407600403, 0.0024801320396363735, 0.4126996099948883, -0.46008607745170593, -0.05833764001727104, -0.21221356093883514, 0.2216232270002365, -0.027077801525592804, -0.38171762228012085, 0.6049757599830627, -0.20562876760959625, -0.4852586090564728, 0.9873530864715576, -0.03557093068957329, 0.852746307849884, -0.6974241137504578, -0.012660236097872257, -0.29103755950927734, 0.3192853629589081, -0.7193658351898193, -1.2684857845306396, 0.21779775619506836, -0.07304989546537399, -0.411056786775589, -0.19329075515270233, 0.427346408367157, -0.21908681094646454, -0.4598345458507538, 0.11423613131046295, -0.07001901417970657, 0.24801211059093475, 0.4381060302257538, -0.9077598452568054, 0.31324559450149536, 0.6059058308601379, -0.6303489208221436, 0.32330214977264404, 0.5552307367324829, 0.18061818182468414, 0.6227031350135803, 1.0684120655059814, 0.19368791580200195, 0.4012635052204132, -0.5243085622787476, 1.1280839443206787, -0.9232153296470642, -0.6023726463317871, -0.7661988139152527, 0.9132185578346252, -0.36290982365608215, -0.4470629394054413, 0.9693878293037415, 0.9865209460258484, 0.7932020425796509, -0.23543448746204376, 0.968509316444397, -0.6915461421012878, 0.396332710981369, -0.3481535017490387, 0.7307769656181335, -0.6413277983665466, -0.03357638791203499, -0.3375678062438965, -0.5322080254554749, -0.4003395140171051, 0.8389280438423157, -0.38929516077041626, -0.054604142904281616, 0.8054546117782593, 1.2230116128921509, 0.1430731862783432, -0.023899151012301445, -0.08439972996711731, 0.23933514952659607, 0.29948559403419495, 0.8130366206169128, 0.17592713236808777, -0.6046990156173706, 0.730707049369812, -0.7353410720825195, -0.23471316695213318, -0.3728810250759125, -0.7864054441452026, -0.6800625324249268, -0.730725109577179, -0.376664936542511, -0.36153092980384827, -0.3016405999660492, 1.0559028387069702, 0.743560254573822, -0.9007396697998047, -0.38474106788635254, -0.061248667538166046, 0.27800488471984863, -0.15267157554626465, -0.27961447834968567, 0.7918497920036316, -0.08969929069280624, -0.540701150894165, 0.01689075119793415, 0.32209745049476624, 0.13624441623687744, 0.22661882638931274, -0.2188783884048462, -0.5441187620162964, -0.12573124468326569, 0.4374327063560486, 0.5624126195907593, -0.5851849317550659, 0.000955091614741832, -0.28237587213516235, -0.5210458040237427, 0.6495360136032104, 0.24220864474773407, -0.4514569640159607, 0.37749072909355164, 0.7495037317276001, 0.2825603783130646, 0.9027915596961975, -0.015523433685302734, 0.1812473088502884, -0.21946734189987183, 0.24343721568584442, -0.18757180869579315, 0.27309295535087585, 0.06336050480604172, -0.5361020565032959, 0.5844733715057373, 0.38380980491638184, -0.5173380970954895, -0.6641597747802734, -0.3754886984825134, -1.3814747333526611, -0.1951708346605301, 0.9870709776878357, -0.23053646087646484, -0.7642642855644226, 0.039446864277124405, -0.3500007092952728, 0.24835143983364105, -0.8567361831665039, 0.12265153974294662, 0.404352605342865, -0.22515007853507996, -0.18720680475234985, -0.9339218735694885, 0.5812968015670776, 0.03799161687493324, -0.9569638967514038, -0.0360250398516655, 0.37238067388534546, 0.3107130527496338, 0.6443913578987122, 0.8158738017082214, -0.290021687746048, 0.08100702613592148, 0.39402055740356445, 0.42900171875953674, -0.15471522510051727, 0.2601591646671295, -0.09444285929203033, 0.3976513743400574, -0.07342179864645004, -0.33187639713287354 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
gem
null
2023-06-01T14:59:56Z
6,356
22
gem
[ "task_categories:fill-mask", "task_categories:summarization", "task_categories:table-to-text", "task_categories:tabular-to-text", "task_categories:text-generation", "task_categories:text2text-generation", "task_ids:dialogue-modeling", "task_ids:rdf-to-text", "task_ids:news-articles-summarization", "task_ids:text-simplification", "annotations_creators:crowdsourced", "annotations_creators:found", "language_creators:crowdsourced", "language_creators:found", "language_creators:machine-generated", "multilinguality:monolingual", "multilinguality:multilingual", "size_categories:100K<n<1M", "size_categories:10K<n<100K", "size_categories:1K<n<10K", "source_datasets:extended|other-vision-datasets", "source_datasets:original", "language:cs", "language:de", "language:en", "language:es", "language:ru", "language:tr", "language:vi", "license:other", "intent-to-text", "meaning-representation-to-text", "concepts-to-text", "arxiv:2102.01672", "region:us" ]
2023-06-01T14:59:56Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced - found language_creators: - crowdsourced - found - machine-generated language: - cs - de - en - es - ru - tr - vi license: - other multilinguality: - monolingual - multilingual size_categories: - 100K<n<1M - 10K<n<100K - 1K<n<10K source_datasets: - extended|other-vision-datasets - original task_categories: - fill-mask - summarization - table-to-text - tabular-to-text - text-generation - text2text-generation task_ids: - dialogue-modeling - rdf-to-text - news-articles-summarization - text-simplification paperswithcode_id: gem pretty_name: GEM tags: - intent-to-text - meaning-representation-to-text - concepts-to-text dataset_info: - config_name: mlsum_de features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: text dtype: string - name: topic dtype: string - name: url dtype: string - name: title dtype: string - name: date dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 858060337 num_examples: 220748 - name: validation num_bytes: 49712791 num_examples: 11392 - name: test num_bytes: 49146354 num_examples: 10695 - name: challenge_train_sample num_bytes: 1894220 num_examples: 500 - name: challenge_validation_sample num_bytes: 2202723 num_examples: 500 - name: challenge_test_covid num_bytes: 19771285 num_examples: 5058 download_size: 362783528 dataset_size: 980787710 - config_name: mlsum_es features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: text dtype: string - name: topic dtype: string - name: url dtype: string - name: title dtype: string - name: date dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 1211240956 num_examples: 259888 - name: validation num_bytes: 51611723 num_examples: 9977 - name: test num_bytes: 72117564 num_examples: 13366 - name: challenge_train_sample num_bytes: 2366443 num_examples: 500 - name: challenge_validation_sample num_bytes: 2658596 num_examples: 500 - name: challenge_test_covid num_bytes: 13576624 num_examples: 1938 download_size: 525621426 dataset_size: 1353571906 - config_name: wiki_lingua_es_en_v0 features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 215665468 num_examples: 79515 - name: validation num_bytes: 25891008 num_examples: 8835 - name: test num_bytes: 50195305 num_examples: 19797 download_size: 169406387 dataset_size: 291751781 - config_name: wiki_lingua_ru_en_v0 features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 159631205 num_examples: 36898 - name: validation num_bytes: 18626973 num_examples: 4100 - name: test num_bytes: 34865311 num_examples: 9094 download_size: 169406387 dataset_size: 213123489 - config_name: wiki_lingua_tr_en_v0 features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 7689845 num_examples: 3193 - name: validation num_bytes: 942122 num_examples: 355 - name: test num_bytes: 1875110 num_examples: 808 download_size: 169406387 dataset_size: 10507077 - config_name: wiki_lingua_vi_en_v0 features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 31599580 num_examples: 9206 - name: validation num_bytes: 3618660 num_examples: 1023 - name: test num_bytes: 6267359 num_examples: 2167 download_size: 169406387 dataset_size: 41485599 - config_name: wiki_lingua_arabic_ar features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - ar - en - name: target_aligned dtype: translation: languages: - ar - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 208106335 num_examples: 20441 - name: validation num_bytes: 31126187 num_examples: 2919 - name: test num_bytes: 60915220 num_examples: 5841 download_size: 58984103 dataset_size: 300147742 - config_name: wiki_lingua_chinese_zh features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - zh - en - name: target_aligned dtype: translation: languages: - zh - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 86130302 num_examples: 13211 - name: validation num_bytes: 13060918 num_examples: 1886 - name: test num_bytes: 25310021 num_examples: 3775 download_size: 32899156 dataset_size: 124501241 - config_name: wiki_lingua_czech_cs features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - cs - en - name: target_aligned dtype: translation: languages: - cs - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 41107318 num_examples: 5033 - name: validation num_bytes: 6305328 num_examples: 718 - name: test num_bytes: 12124770 num_examples: 1438 download_size: 14515534 dataset_size: 59537416 - config_name: wiki_lingua_dutch_nl features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - nl - en - name: target_aligned dtype: translation: languages: - nl - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 169067454 num_examples: 21866 - name: validation num_bytes: 25521003 num_examples: 3123 - name: test num_bytes: 49165151 num_examples: 6248 download_size: 56492150 dataset_size: 243753608 - config_name: wiki_lingua_english_en features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - en - en - name: target_aligned dtype: translation: languages: - en - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 464171624 num_examples: 99020 - name: validation num_bytes: 67652281 num_examples: 13823 - name: test num_bytes: 138944243 num_examples: 28614 download_size: 118031903 dataset_size: 670768148 - config_name: wiki_lingua_french_fr features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - fr - en - name: target_aligned dtype: translation: languages: - fr - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 372039357 num_examples: 44556 - name: validation num_bytes: 54992250 num_examples: 6364 - name: test num_bytes: 108831855 num_examples: 12731 download_size: 118758047 dataset_size: 535863462 - config_name: wiki_lingua_german_de features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - de - en - name: target_aligned dtype: translation: languages: - de - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 322276536 num_examples: 40839 - name: validation num_bytes: 47631883 num_examples: 5833 - name: test num_bytes: 93715331 num_examples: 11669 download_size: 107638803 dataset_size: 463623750 - config_name: wiki_lingua_hindi_hi features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - hi - en - name: target_aligned dtype: translation: languages: - hi - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 99672133 num_examples: 6942 - name: validation num_bytes: 14706378 num_examples: 991 - name: test num_bytes: 28543048 num_examples: 1984 download_size: 21042040 dataset_size: 142921559 - config_name: wiki_lingua_indonesian_id features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - id - en - name: target_aligned dtype: translation: languages: - id - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 263974954 num_examples: 33237 - name: validation num_bytes: 39297987 num_examples: 4747 - name: test num_bytes: 76567819 num_examples: 9497 download_size: 83968162 dataset_size: 379840760 - config_name: wiki_lingua_italian_it features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - it - en - name: target_aligned dtype: translation: languages: - it - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 267090482 num_examples: 35661 - name: validation num_bytes: 39227425 num_examples: 5093 - name: test num_bytes: 76840429 num_examples: 10189 download_size: 88921209 dataset_size: 383158336 - config_name: wiki_lingua_japanese_ja features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - ja - en - name: target_aligned dtype: translation: languages: - ja - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 73871019 num_examples: 8853 - name: validation num_bytes: 10807006 num_examples: 1264 - name: test num_bytes: 21175951 num_examples: 2530 download_size: 22803299 dataset_size: 105853976 - config_name: wiki_lingua_korean_ko features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - ko - en - name: target_aligned dtype: translation: languages: - ko - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 73106687 num_examples: 8524 - name: validation num_bytes: 10788276 num_examples: 1216 - name: test num_bytes: 21172641 num_examples: 2436 download_size: 23336917 dataset_size: 105067604 - config_name: wiki_lingua_portuguese_pt features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - pt - en - name: target_aligned dtype: translation: languages: - pt - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 405546332 num_examples: 57159 - name: validation num_bytes: 59729210 num_examples: 8165 - name: test num_bytes: 117775356 num_examples: 16331 download_size: 137542940 dataset_size: 583050898 - config_name: wiki_lingua_russian_ru features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - ru - en - name: target_aligned dtype: translation: languages: - ru - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 406299624 num_examples: 37028 - name: validation num_bytes: 59651340 num_examples: 5288 - name: test num_bytes: 116330937 num_examples: 10580 download_size: 106281321 dataset_size: 582281901 - config_name: wiki_lingua_spanish_es features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - es - en - name: target_aligned dtype: translation: languages: - es - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 604276564 num_examples: 79212 - name: validation num_bytes: 88677656 num_examples: 11316 - name: test num_bytes: 177096288 num_examples: 22632 download_size: 198247534 dataset_size: 870050508 - config_name: wiki_lingua_thai_th features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - th - en - name: target_aligned dtype: translation: languages: - th - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 139287649 num_examples: 10325 - name: validation num_bytes: 21097845 num_examples: 1475 - name: test num_bytes: 40049968 num_examples: 2950 download_size: 29988180 dataset_size: 200435462 - config_name: wiki_lingua_turkish_tr features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - tr - en - name: target_aligned dtype: translation: languages: - tr - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 21987247 num_examples: 3148 - name: validation num_bytes: 3229714 num_examples: 449 - name: test num_bytes: 6197850 num_examples: 900 download_size: 7055820 dataset_size: 31414811 - config_name: wiki_lingua_vietnamese_vi features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source_aligned dtype: translation: languages: - vi - en - name: target_aligned dtype: translation: languages: - vi - en - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 128025008 num_examples: 13707 - name: validation num_bytes: 19414734 num_examples: 1957 - name: test num_bytes: 37430208 num_examples: 3917 download_size: 38035490 dataset_size: 184869950 - config_name: xsum features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: xsum_id dtype: string - name: document dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 66299136 num_examples: 23206 - name: validation num_bytes: 2270306 num_examples: 1117 - name: test num_bytes: 2598509 num_examples: 1166 - name: challenge_train_sample num_bytes: 1429145 num_examples: 500 - name: challenge_validation_sample num_bytes: 1012689 num_examples: 500 - name: challenge_test_backtranslation num_bytes: 1262047 num_examples: 500 - name: challenge_test_bfp_02 num_bytes: 1090364 num_examples: 500 - name: challenge_test_bfp_05 num_bytes: 1078076 num_examples: 500 - name: challenge_test_nopunc num_bytes: 1127796 num_examples: 500 - name: challenge_test_covid num_bytes: 1867180 num_examples: 401 download_size: 258277147 dataset_size: 80035248 - config_name: common_gen features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: concept_set_id dtype: int32 - name: concepts list: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 10475926 num_examples: 67389 - name: validation num_bytes: 405872 num_examples: 993 - name: test num_bytes: 153170 num_examples: 1497 - name: challenge_train_sample num_bytes: 85413 num_examples: 500 - name: challenge_validation_sample num_bytes: 215192 num_examples: 500 - name: challenge_test_scramble num_bytes: 60411 num_examples: 500 download_size: 1933517 dataset_size: 11395984 - config_name: cs_restaurants features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: dialog_act dtype: string - name: dialog_act_delexicalized dtype: string - name: target_delexicalized dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 873145 num_examples: 3569 - name: validation num_bytes: 288222 num_examples: 781 - name: test num_bytes: 295696 num_examples: 842 - name: challenge_train_sample num_bytes: 127869 num_examples: 500 - name: challenge_validation_sample num_bytes: 193239 num_examples: 500 - name: challenge_test_scramble num_bytes: 185574 num_examples: 500 download_size: 1531111 dataset_size: 1963745 - config_name: dart features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: dart_id dtype: int32 - name: tripleset list: list: string - name: subtree_was_extended dtype: bool - name: target_sources list: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 23047610 num_examples: 62659 - name: validation num_bytes: 1934054 num_examples: 2768 - name: test num_bytes: 3476953 num_examples: 5097 download_size: 29939366 dataset_size: 28458617 - config_name: e2e_nlg features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: meaning_representation dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 9129030 num_examples: 33525 - name: validation num_bytes: 1856097 num_examples: 4299 - name: test num_bytes: 2133695 num_examples: 4693 - name: challenge_train_sample num_bytes: 145319 num_examples: 500 - name: challenge_validation_sample num_bytes: 226525 num_examples: 500 - name: challenge_test_scramble num_bytes: 236199 num_examples: 500 download_size: 14668048 dataset_size: 13726865 - config_name: totto features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: totto_id dtype: int32 - name: table_page_title dtype: string - name: table_webpage_url dtype: string - name: table_section_title dtype: string - name: table_section_text dtype: string - name: table list: list: - name: column_span dtype: int32 - name: is_header dtype: bool - name: row_span dtype: int32 - name: value dtype: string - name: highlighted_cells list: list: int32 - name: example_id dtype: string - name: sentence_annotations list: - name: original_sentence dtype: string - name: sentence_after_deletion dtype: string - name: sentence_after_ambiguity dtype: string - name: final_sentence dtype: string - name: overlap_subset dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 676032144 num_examples: 121153 - name: validation num_bytes: 50736204 num_examples: 7700 - name: test num_bytes: 41330062 num_examples: 7700 - name: challenge_train_sample num_bytes: 2283076 num_examples: 500 - name: challenge_validation_sample num_bytes: 3398639 num_examples: 500 - name: challenge_test_scramble num_bytes: 2638966 num_examples: 500 download_size: 189534609 dataset_size: 776419091 - config_name: web_nlg_en features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: input list: string - name: target dtype: string - name: references list: string - name: category dtype: string - name: webnlg_id dtype: string splits: - name: train num_bytes: 13067615 num_examples: 35426 - name: validation num_bytes: 1153995 num_examples: 1667 - name: test num_bytes: 1403601 num_examples: 1779 - name: challenge_train_sample num_bytes: 193198 num_examples: 502 - name: challenge_validation_sample num_bytes: 359868 num_examples: 499 - name: challenge_test_scramble num_bytes: 402407 num_examples: 500 - name: challenge_test_numbers num_bytes: 409213 num_examples: 500 download_size: 13181969 dataset_size: 16989897 - config_name: web_nlg_ru features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: input list: string - name: target dtype: string - name: references list: string - name: category dtype: string - name: webnlg_id dtype: string splits: - name: train num_bytes: 6888009 num_examples: 14630 - name: validation num_bytes: 795998 num_examples: 790 - name: test num_bytes: 1145282 num_examples: 1102 - name: challenge_train_sample num_bytes: 247089 num_examples: 501 - name: challenge_validation_sample num_bytes: 514117 num_examples: 500 - name: challenge_test_scramble num_bytes: 521625 num_examples: 500 download_size: 7854845 dataset_size: 10112120 - config_name: wiki_auto_asset_turk features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: source dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 161095379 num_examples: 483801 - name: validation num_bytes: 8211308 num_examples: 20000 - name: test_asset num_bytes: 475336 num_examples: 359 - name: test_turk num_bytes: 406842 num_examples: 359 - name: challenge_train_sample num_bytes: 219542 num_examples: 500 - name: challenge_validation_sample num_bytes: 213048 num_examples: 500 - name: challenge_test_asset_backtranslation num_bytes: 436820 num_examples: 359 - name: challenge_test_asset_bfp02 num_bytes: 432742 num_examples: 359 - name: challenge_test_asset_bfp05 num_bytes: 432742 num_examples: 359 - name: challenge_test_asset_nopunc num_bytes: 432735 num_examples: 359 - name: challenge_test_turk_backtranslation num_bytes: 417204 num_examples: 359 - name: challenge_test_turk_bfp02 num_bytes: 414381 num_examples: 359 - name: challenge_test_turk_bfp05 num_bytes: 414383 num_examples: 359 - name: challenge_test_turk_nopunc num_bytes: 414388 num_examples: 359 download_size: 126927527 dataset_size: 174016850 - config_name: schema_guided_dialog features: - name: gem_id dtype: string - name: gem_parent_id dtype: string - name: dialog_acts list: - name: act dtype: class_label: names: '0': AFFIRM '1': AFFIRM_INTENT '2': CONFIRM '3': GOODBYE '4': INFORM '5': INFORM_COUNT '6': INFORM_INTENT '7': NEGATE '8': NEGATE_INTENT '9': NOTIFY_FAILURE '10': NOTIFY_SUCCESS '11': OFFER '12': OFFER_INTENT '13': REQUEST '14': REQUEST_ALTS '15': REQ_MORE '16': SELECT '17': THANK_YOU - name: slot dtype: string - name: values list: string - name: context list: string - name: dialog_id dtype: string - name: service dtype: string - name: turn_id dtype: int32 - name: prompt dtype: string - name: target dtype: string - name: references list: string splits: - name: train num_bytes: 146648117 num_examples: 164982 - name: validation num_bytes: 9376504 num_examples: 10000 - name: test num_bytes: 10160596 num_examples: 10000 - name: challenge_train_sample num_bytes: 441326 num_examples: 500 - name: challenge_validation_sample num_bytes: 491492 num_examples: 500 - name: challenge_test_backtranslation num_bytes: 512834 num_examples: 500 - name: challenge_test_bfp02 num_bytes: 529404 num_examples: 500 - name: challenge_test_bfp05 num_bytes: 515151 num_examples: 500 - name: challenge_test_nopunc num_bytes: 509332 num_examples: 500 - name: challenge_test_scramble num_bytes: 514644 num_examples: 500 download_size: 17826468 dataset_size: 169699400 config_names: - common_gen - cs_restaurants - dart - e2e_nlg - mlsum_de - mlsum_es - schema_guided_dialog - totto - web_nlg_en - web_nlg_ru - wiki_auto_asset_turk - wiki_lingua_es_en - wiki_lingua_ru_en - wiki_lingua_tr_en - wiki_lingua_vi_en - xsum --- # Dataset Card for GEM ## 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://gem-benchmark.github.io/](https://gem-benchmark.github.io/) - **Repository:** - **Paper:** [The GEM Benchmark: Natural Language Generation, its Evaluation and Metrics](https://arxiv.org/abs/2102.01672) - **Point of Contact:** [Sebastian Gehrman](gehrmann@google.com) - **Size of downloaded dataset files:** 2.19 GB - **Size of the generated dataset:** 3.92 GB - **Total amount of disk used:** 6.10 GB ### Dataset Summary GEM is a benchmark environment for Natural Language Generation with a focus on its Evaluation, both through human annotations and automated Metrics. GEM aims to: - measure NLG progress across 13 datasets spanning many NLG tasks and languages. - provide an in-depth analysis of data and models presented via data statements and challenge sets. - develop standards for evaluation of generated text using both automated and human metrics. It is our goal to regularly update GEM and to encourage toward more inclusive practices in dataset development by extending existing data or developing datasets for additional languages. You can find more complete information in the dataset cards for each of the subsets: - [CommonGen](https://gem-benchmark.com/data_cards/common_gen) - [Czech Restaurant](https://gem-benchmark.com/data_cards/cs_restaurants) - [DART](https://gem-benchmark.com/data_cards/dart) - [E2E](https://gem-benchmark.com/data_cards/e2e_nlg) - [MLSum](https://gem-benchmark.com/data_cards/mlsum) - [Schema-Guided Dialog](https://gem-benchmark.com/data_cards/schema_guided_dialog) - [WebNLG](https://gem-benchmark.com/data_cards/web_nlg) - [Wiki-Auto/ASSET/TURK](https://gem-benchmark.com/data_cards/wiki_auto_asset_turk) - [WikiLingua](https://gem-benchmark.com/data_cards/wiki_lingua) - [XSum](https://gem-benchmark.com/data_cards/xsum) The subsets are organized by task: ``` { "summarization": { "mlsum": ["mlsum_de", "mlsum_es"], "wiki_lingua": ["wiki_lingua_es_en", "wiki_lingua_ru_en", "wiki_lingua_tr_en", "wiki_lingua_vi_en"], "xsum": ["xsum"], }, "struct2text": { "common_gen": ["common_gen"], "cs_restaurants": ["cs_restaurants"], "dart": ["dart"], "e2e": ["e2e_nlg"], "totto": ["totto"], "web_nlg": ["web_nlg_en", "web_nlg_ru"], }, "simplification": { "wiki_auto_asset_turk": ["wiki_auto_asset_turk"], }, "dialog": { "schema_guided_dialog": ["schema_guided_dialog"], }, } ``` Each example has one `target` per example in its training set, and a set of `references` (with one or more items) in its validation and test set. ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances #### common_gen - **Size of downloaded dataset files:** 1.85 MB - **Size of the generated dataset:** 9.23 MB - **Total amount of disk used:** 11.07 MB An example of `validation` looks as follows. ``` {'concept_set_id': 0, 'concepts': ['field', 'look', 'stand'], 'gem_id': 'common_gen-validation-0', 'references': ['The player stood in the field looking at the batter.', 'The coach stands along the field, looking at the goalkeeper.', 'I stood and looked across the field, peacefully.', 'Someone stands, looking around the empty field.'], 'target': 'The player stood in the field looking at the batter.'} ``` #### cs_restaurants - **Size of downloaded dataset files:** 1.47 MB - **Size of the generated dataset:** 1.31 MB - **Total amount of disk used:** 2.77 MB An example of `validation` looks as follows. ``` {'dialog_act': '?request(area)', 'dialog_act_delexicalized': '?request(area)', 'gem_id': 'cs_restaurants-validation-0', 'references': ['Jakou lokalitu hledáte ?'], 'target': 'Jakou lokalitu hledáte ?', 'target_delexicalized': 'Jakou lokalitu hledáte ?'} ``` #### dart - **Size of downloaded dataset files:** 29.37 MB - **Size of the generated dataset:** 27.44 MB - **Total amount of disk used:** 56.81 MB An example of `validation` looks as follows. ``` {'dart_id': 0, 'gem_id': 'dart-validation-0', 'references': ['A school from Mars Hill, North Carolina, joined in 1973.'], 'subtree_was_extended': True, 'target': 'A school from Mars Hill, North Carolina, joined in 1973.', 'target_sources': ['WikiSQL_decl_sents'], 'tripleset': [['Mars Hill College', 'JOINED', '1973'], ['Mars Hill College', 'LOCATION', 'Mars Hill, North Carolina']]} ``` #### e2e_nlg - **Size of downloaded dataset files:** 14.60 MB - **Size of the generated dataset:** 12.14 MB - **Total amount of disk used:** 26.74 MB An example of `validation` looks as follows. ``` {'gem_id': 'e2e_nlg-validation-0', 'meaning_representation': 'name[Alimentum], area[city centre], familyFriendly[no]', 'references': ['There is a place in the city centre, Alimentum, that is not family-friendly.'], 'target': 'There is a place in the city centre, Alimentum, that is not family-friendly.'} ``` #### mlsum_de - **Size of downloaded dataset files:** 347.36 MB - **Size of the generated dataset:** 951.06 MB - **Total amount of disk used:** 1.30 GB An example of `validation` looks as follows. ``` {'date': '00/04/2019', 'gem_id': 'mlsum_de-validation-0', 'references': ['In einer Kleinstadt auf der Insel Usedom war eine junge Frau tot in ihrer Wohnung gefunden worden. Nun stehen zwei Bekannte unter Verdacht.'], 'target': 'In einer Kleinstadt auf der Insel Usedom war eine junge Frau tot in ihrer Wohnung gefunden worden. Nun stehen zwei Bekannte unter Verdacht.', 'text': 'Kerzen und Blumen stehen vor dem Eingang eines Hauses, in dem eine 18-jährige Frau tot aufgefunden wurde. In einer Kleinstadt auf der Insel Usedom war eine junge Frau tot in ...', 'title': 'Tod von 18-Jähriger auf Usedom: Zwei Festnahmen', 'topic': 'panorama', 'url': 'https://www.sueddeutsche.de/panorama/usedom-frau-tot-festnahme-verdaechtige-1.4412256'} ``` #### mlsum_es - **Size of downloaded dataset files:** 514.11 MB - **Size of the generated dataset:** 1.31 GB - **Total amount of disk used:** 1.83 GB An example of `validation` looks as follows. ``` {'date': '05/01/2019', 'gem_id': 'mlsum_es-validation-0', 'references': ['El diseñador que dio carta de naturaleza al estilo genuinamente americano celebra el medio siglo de su marca entre grandes fastos y problemas financieros. Conectar con las nuevas generaciones es el regalo que precisa más que nunca'], 'target': 'El diseñador que dio carta de naturaleza al estilo genuinamente americano celebra el medio siglo de su marca entre grandes fastos y problemas financieros. Conectar con las nuevas generaciones es el regalo que precisa más que nunca', 'text': 'Un oso de peluche marcándose un heelflip de monopatín es todo lo que Ralph Lauren necesitaba esta Navidad. Estampado en un jersey de lana azul marino, supone la guinda que corona ...', 'title': 'Ralph Lauren busca el secreto de la eterna juventud', 'topic': 'elpais estilo', 'url': 'http://elpais.com/elpais/2019/01/04/estilo/1546617396_933318.html'} ``` #### schema_guided_dialog - **Size of downloaded dataset files:** 8.64 MB - **Size of the generated dataset:** 45.78 MB - **Total amount of disk used:** 54.43 MB An example of `validation` looks as follows. ``` {'dialog_acts': [{'act': 2, 'slot': 'song_name', 'values': ['Carnivore']}, {'act': 2, 'slot': 'playback_device', 'values': ['TV']}], 'dialog_id': '10_00054', 'gem_id': 'schema_guided_dialog-validation-0', 'prompt': 'Yes, I would.', 'references': ['Please confirm the song Carnivore on tv.'], 'target': 'Please confirm the song Carnivore on tv.', 'turn_id': 15} ``` #### totto - **Size of downloaded dataset files:** 187.73 MB - **Size of the generated dataset:** 757.99 MB - **Total amount of disk used:** 945.72 MB An example of `validation` looks as follows. ``` {'example_id': '7391450717765563190', 'gem_id': 'totto-validation-0', 'highlighted_cells': [[3, 0], [3, 2], [3, 3]], 'overlap_subset': 'True', 'references': ['Daniel Henry Chamberlain was the 76th Governor of South Carolina from 1874.', 'Daniel Henry Chamberlain was the 76th Governor of South Carolina, beginning in 1874.', 'Daniel Henry Chamberlain was the 76th Governor of South Carolina who took office in 1874.'], 'sentence_annotations': [{'final_sentence': 'Daniel Henry Chamberlain was the 76th Governor of South Carolina from 1874.', 'original_sentence': 'Daniel Henry Chamberlain (June 23, 1835 – April 13, 1907) was an American planter, lawyer, author and the 76th Governor of South Carolina ' 'from 1874 until 1877.', 'sentence_after_ambiguity': 'Daniel Henry Chamberlain was the 76th Governor of South Carolina from 1874.', 'sentence_after_deletion': 'Daniel Henry Chamberlain was the 76th Governor of South Carolina from 1874.'}, ... ], 'table': [[{'column_span': 1, 'is_header': True, 'row_span': 1, 'value': '#'}, {'column_span': 2, 'is_header': True, 'row_span': 1, 'value': 'Governor'}, {'column_span': 1, 'is_header': True, 'row_span': 1, 'value': 'Took Office'}, {'column_span': 1, 'is_header': True, 'row_span': 1, 'value': 'Left Office'}], [{'column_span': 1, 'is_header': True, 'row_span': 1, 'value': '74'}, {'column_span': 1, 'is_header': False, 'row_span': 1, 'value': '-'}, {'column_span': 1, 'is_header': False, 'row_span': 1, 'value': 'Robert Kingston Scott'}, {'column_span': 1, 'is_header': False, 'row_span': 1, 'value': 'July 6, 1868'}], ... ], 'table_page_title': 'List of Governors of South Carolina', 'table_section_text': 'Parties Democratic Republican', 'table_section_title': 'Governors under the Constitution of 1868', 'table_webpage_url': 'http://en.wikipedia.org/wiki/List_of_Governors_of_South_Carolina', 'target': 'Daniel Henry Chamberlain was the 76th Governor of South Carolina from 1874.', 'totto_id': 0} ``` #### web_nlg_en - **Size of downloaded dataset files:** 12.95 MB - **Size of the generated dataset:** 14.63 MB - **Total amount of disk used:** 27.57 MB An example of `validation` looks as follows. ``` {'category': 'Airport', 'gem_id': 'web_nlg_en-validation-0', 'input': ['Aarhus | leader | Jacob_Bundsgaard'], 'references': ['The leader of Aarhus is Jacob Bundsgaard.'], 'target': 'The leader of Aarhus is Jacob Bundsgaard.', 'webnlg_id': 'dev/Airport/1/Id1'} ``` #### web_nlg_ru - **Size of downloaded dataset files:** 7.63 MB - **Size of the generated dataset:** 8.41 MB - **Total amount of disk used:** 16.04 MB An example of `validation` looks as follows. ``` {'category': 'Airport', 'gem_id': 'web_nlg_ru-validation-0', 'input': ['Punjab,_Pakistan | leaderTitle | Provincial_Assembly_of_the_Punjab'], 'references': ['Пенджаб, Пакистан, возглавляется Провинциальной ассамблеей Пенджаба.', 'Пенджаб, Пакистан возглавляется Провинциальной ассамблеей Пенджаба.'], 'target': 'Пенджаб, Пакистан, возглавляется Провинциальной ассамблеей Пенджаба.', 'webnlg_id': 'dev/Airport/1/Id1'} ``` #### wiki_auto_asset_turk - **Size of downloaded dataset files:** 127.27 MB - **Size of the generated dataset:** 152.77 MB - **Total amount of disk used:** 280.04 MB An example of `validation` looks as follows. ``` {'gem_id': 'wiki_auto_asset_turk-validation-0', 'references': ['The Gandalf Awards honor excellent writing in in fantasy literature.'], 'source': 'The Gandalf Awards, honoring achievement in fantasy literature, were conferred by the World Science Fiction Society annually from 1974 to 1981.', 'source_id': '350_691837-1-0-0', 'target': 'The Gandalf Awards honor excellent writing in in fantasy literature.', 'target_id': '350_691837-0-0-0'} ``` #### wiki_lingua_es_en - **Size of downloaded dataset files:** 169.41 MB - **Size of the generated dataset:** 287.60 MB - **Total amount of disk used:** 457.01 MB An example of `validation` looks as follows. ``` 'references': ["Practice matted hair prevention from early in your cat's life. Make sure that your cat is grooming itself effectively. Keep a close eye on cats with long hair."], 'source': 'Muchas personas presentan problemas porque no cepillaron el pelaje de sus gatos en una etapa temprana de su vida, ya que no lo consideraban necesario. Sin embargo, a medida que...', 'target': "Practice matted hair prevention from early in your cat's life. Make sure that your cat is grooming itself effectively. Keep a close eye on cats with long hair."} ``` #### wiki_lingua_ru_en - **Size of downloaded dataset files:** 169.41 MB - **Size of the generated dataset:** 211.21 MB - **Total amount of disk used:** 380.62 MB An example of `validation` looks as follows. ``` {'gem_id': 'wiki_lingua_ru_en-val-0', 'references': ['Get immediate medical care if you notice signs of a complication. Undergo diagnostic tests to check for gallstones and complications. Ask your doctor about your treatment ' 'options.'], 'source': 'И хотя, скорее всего, вам не о чем волноваться, следует незамедлительно обратиться к врачу, если вы подозреваете, что у вас возникло осложнение желчекаменной болезни. Это ...', 'target': 'Get immediate medical care if you notice signs of a complication. Undergo diagnostic tests to check for gallstones and complications. Ask your doctor about your treatment ' 'options.'} ``` #### wiki_lingua_tr_en - **Size of downloaded dataset files:** 169.41 MB - **Size of the generated dataset:** 10.35 MB - **Total amount of disk used:** 179.75 MB An example of `validation` looks as follows. ``` {'gem_id': 'wiki_lingua_tr_en-val-0', 'references': ['Open Instagram. Go to the video you want to download. Tap ⋮. Tap Copy Link. Open Google Chrome. Tap the address bar. Go to the SaveFromWeb site. Tap the "Paste Instagram Video" text box. Tap and hold the text box. Tap PASTE. Tap Download. Download the video. Find the video on your Android.'], 'source': 'Instagram uygulamasının çok renkli kamera şeklindeki simgesine dokun. Daha önce giriş yaptıysan Instagram haber kaynağı açılır. Giriş yapmadıysan istendiğinde e-posta adresini ...', 'target': 'Open Instagram. Go to the video you want to download. Tap ⋮. Tap Copy Link. Open Google Chrome. Tap the address bar. Go to the SaveFromWeb site. Tap the "Paste Instagram Video" text box. Tap and hold the text box. Tap PASTE. Tap Download. Download the video. Find the video on your Android.'} ``` #### wiki_lingua_vi_en - **Size of downloaded dataset files:** 169.41 MB - **Size of the generated dataset:** 41.02 MB - **Total amount of disk used:** 210.43 MB An example of `validation` looks as follows. ``` {'gem_id': 'wiki_lingua_vi_en-val-0', 'references': ['Select the right time of year for planting the tree. You will usually want to plant your tree when it is dormant, or not flowering, during cooler or colder times of year.'], 'source': 'Bạn muốn cung cấp cho cây cơ hội tốt nhất để phát triển và sinh tồn. Trồng cây đúng thời điểm trong năm chính là yếu tố then chốt. Thời điểm sẽ thay đổi phụ thuộc vào loài cây ...', 'target': 'Select the right time of year for planting the tree. You will usually want to plant your tree when it is dormant, or not flowering, during cooler or colder times of year.'} ``` #### xsum - **Size of downloaded dataset files:** 254.89 MB - **Size of the generated dataset:** 70.67 MB - **Total amount of disk used:** 325.56 MB An example of `validation` looks as follows. ``` {'document': 'Burberry reported pre-tax profits of £166m for the year to March. A year ago it made a loss of £16.1m, hit by charges at its Spanish operations.\n' 'In the past year it has opened 21 new stores and closed nine. It plans to open 20-30 stores this year worldwide.\n' 'The group has also focused on promoting the Burberry brand online...', 'gem_id': 'xsum-validation-0', 'references': ['Luxury fashion designer Burberry has returned to profit after opening new stores and spending more on online marketing'], 'target': 'Luxury fashion designer Burberry has returned to profit after opening new stores and spending more on online marketing', 'xsum_id': '10162122'} ``` ### Data Fields The data fields are the same among all splits. #### common_gen - `gem_id`: a `string` feature. - `concept_set_id`: a `int32` feature. - `concepts`: a `list` of `string` features. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### cs_restaurants - `gem_id`: a `string` feature. - `dialog_act`: a `string` feature. - `dialog_act_delexicalized`: a `string` feature. - `target_delexicalized`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### dart - `gem_id`: a `string` feature. - `dart_id`: a `int32` feature. - `tripleset`: a `list` of `string` features. - `subtree_was_extended`: a `bool` feature. - `target_sources`: a `list` of `string` features. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### e2e_nlg - `gem_id`: a `string` feature. - `meaning_representation`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### mlsum_de - `gem_id`: a `string` feature. - `text`: a `string` feature. - `topic`: a `string` feature. - `url`: a `string` feature. - `title`: a `string` feature. - `date`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### mlsum_es - `gem_id`: a `string` feature. - `text`: a `string` feature. - `topic`: a `string` feature. - `url`: a `string` feature. - `title`: a `string` feature. - `date`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### schema_guided_dialog - `gem_id`: a `string` feature. - `act`: a classification label, with possible values including `AFFIRM` (0), `AFFIRM_INTENT` (1), `CONFIRM` (2), `GOODBYE` (3), `INFORM` (4). - `slot`: a `string` feature. - `values`: a `list` of `string` features. - `dialog_id`: a `string` feature. - `turn_id`: a `int32` feature. - `prompt`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### totto - `gem_id`: a `string` feature. - `totto_id`: a `int32` feature. - `table_page_title`: a `string` feature. - `table_webpage_url`: a `string` feature. - `table_section_title`: a `string` feature. - `table_section_text`: a `string` feature. - `column_span`: a `int32` feature. - `is_header`: a `bool` feature. - `row_span`: a `int32` feature. - `value`: a `string` feature. - `highlighted_cells`: a `list` of `int32` features. - `example_id`: a `string` feature. - `original_sentence`: a `string` feature. - `sentence_after_deletion`: a `string` feature. - `sentence_after_ambiguity`: a `string` feature. - `final_sentence`: a `string` feature. - `overlap_subset`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### web_nlg_en - `gem_id`: a `string` feature. - `input`: a `list` of `string` features. - `target`: a `string` feature. - `references`: a `list` of `string` features. - `category`: a `string` feature. - `webnlg_id`: a `string` feature. #### web_nlg_ru - `gem_id`: a `string` feature. - `input`: a `list` of `string` features. - `target`: a `string` feature. - `references`: a `list` of `string` features. - `category`: a `string` feature. - `webnlg_id`: a `string` feature. #### wiki_auto_asset_turk - `gem_id`: a `string` feature. - `source_id`: a `string` feature. - `target_id`: a `string` feature. - `source`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### wiki_lingua_es_en - `gem_id`: a `string` feature. - `source`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### wiki_lingua_ru_en - `gem_id`: a `string` feature. - `source`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### wiki_lingua_tr_en - `gem_id`: a `string` feature. - `source`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### wiki_lingua_vi_en - `gem_id`: a `string` feature. - `source`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. #### xsum - `gem_id`: a `string` feature. - `xsum_id`: a `string` feature. - `document`: a `string` feature. - `target`: a `string` feature. - `references`: a `list` of `string` features. ### Data Splits #### common_gen | |train|validation|test| |----------|----:|---------:|---:| |common_gen|67389| 993|1497| #### cs_restaurants | |train|validation|test| |--------------|----:|---------:|---:| |cs_restaurants| 3569| 781| 842| #### dart | |train|validation|test| |----|----:|---------:|---:| |dart|62659| 2768|6959| #### e2e_nlg | |train|validation|test| |-------|----:|---------:|---:| |e2e_nlg|33525| 4299|4693| #### mlsum_de | |train |validation|test | |--------|-----:|---------:|----:| |mlsum_de|220748| 11392|10695| #### mlsum_es | |train |validation|test | |--------|-----:|---------:|----:| |mlsum_es|259886| 9977|13365| #### schema_guided_dialog | |train |validation|test | |--------------------|-----:|---------:|----:| |schema_guided_dialog|164982| 10000|10000| #### totto | |train |validation|test| |-----|-----:|---------:|---:| |totto|121153| 7700|7700| #### web_nlg_en | |train|validation|test| |----------|----:|---------:|---:| |web_nlg_en|35426| 1667|1779| #### web_nlg_ru | |train|validation|test| |----------|----:|---------:|---:| |web_nlg_ru|14630| 790|1102| #### wiki_auto_asset_turk | |train |validation|test_asset|test_turk| |--------------------|-----:|---------:|---------:|--------:| |wiki_auto_asset_turk|373801| 73249| 359| 359| #### wiki_lingua_es_en | |train|validation|test | |-----------------|----:|---------:|----:| |wiki_lingua_es_en|79515| 8835|19797| #### wiki_lingua_ru_en | |train|validation|test| |-----------------|----:|---------:|---:| |wiki_lingua_ru_en|36898| 4100|9094| #### wiki_lingua_tr_en | |train|validation|test| |-----------------|----:|---------:|---:| |wiki_lingua_tr_en| 3193| 355| 808| #### wiki_lingua_vi_en | |train|validation|test| |-----------------|----:|---------:|---:| |wiki_lingua_vi_en| 9206| 1023|2167| #### xsum | |train|validation|test| |----|----:|---------:|---:| |xsum|23206| 1117|1166| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information CC-BY-SA-4.0 ### Citation Information ``` @article{gem_benchmark, author = {Sebastian Gehrmann and Tosin P. Adewumi and Karmanya Aggarwal and Pawan Sasanka Ammanamanchi and Aremu Anuoluwapo and Antoine Bosselut and Khyathi Raghavi Chandu and Miruna{-}Adriana Clinciu and Dipanjan Das and Kaustubh D. Dhole and Wanyu Du and Esin Durmus and Ondrej Dusek and Chris Emezue and Varun Gangal and Cristina Garbacea and Tatsunori Hashimoto and Yufang Hou and Yacine Jernite and Harsh Jhamtani and Yangfeng Ji and Shailza Jolly and Dhruv Kumar and Faisal Ladhak and Aman Madaan and Mounica Maddela and Khyati Mahajan and Saad Mahamood and Bodhisattwa Prasad Majumder and Pedro Henrique Martins and Angelina McMillan{-}Major and Simon Mille and Emiel van Miltenburg and Moin Nadeem and Shashi Narayan and Vitaly Nikolaev and Rubungo Andre Niyongabo and Salomey Osei and Ankur P. Parikh and Laura Perez{-}Beltrachini and Niranjan Ramesh Rao and Vikas Raunak and Juan Diego Rodriguez and Sashank Santhanam and Jo{\~{a}}o Sedoc and Thibault Sellam and Samira Shaikh and Anastasia Shimorina and Marco Antonio Sobrevilla Cabezudo and Hendrik Strobelt and Nishant Subramani and Wei Xu and Diyi Yang and Akhila Yerukola and Jiawei Zhou}, title = {The {GEM} Benchmark: Natural Language Generation, its Evaluation and Metrics}, journal = {CoRR}, volume = {abs/2102.01672}, year = {2021}, url = {https://arxiv.org/abs/2102.01672}, archivePrefix = {arXiv}, eprint = {2102.01672} } ``` ### Contributions Thanks to [@yjernite](https://github.com/yjernite) for adding this dataset.
[ -0.5278796553611755, -0.742447555065155, 0.12751762568950653, -0.0765967071056366, -0.152996227145195, 0.04890553280711174, -0.31145158410072327, -0.4018360674381256, 0.26347264647483826, 0.4472234845161438, -0.8520665168762207, -0.9849998354911804, -0.3357442021369934, 0.14979074895381927, -0.2341110110282898, 1.2052698135375977, -0.12358369678258896, -0.18677294254302979, -0.20270086824893951, -0.09998300671577454, -0.552653431892395, -0.3437384068965912, -0.4115245044231415, -0.14264145493507385, 0.28084537386894226, 0.5951203107833862, 0.5034862160682678, 0.7665924429893494, 0.661363959312439, 0.25194305181503296, 0.015157956629991531, 0.10932833701372147, -0.5099215507507324, -0.05976935848593712, 0.044593457132577896, -0.3411073684692383, -0.5626809597015381, 0.11430678516626358, 0.6474409103393555, 0.4097220301628113, -0.20606324076652527, 0.5229632258415222, 0.0987224206328392, 0.9049790501594543, -0.21476610004901886, 0.44820255041122437, -0.4760296940803528, -0.09492896497249603, -0.4452360272407532, 0.08761873096227646, -0.06492885947227478, -0.3020097017288208, 0.024642955511808395, -0.847585141658783, 0.4822593927383423, 0.23587225377559662, 1.2177882194519043, 0.1523367017507553, -0.09787028282880783, -0.24110299348831177, -0.447409987449646, 0.8747066855430603, -0.6459359526634216, 0.12905697524547577, 0.5882851481437683, 0.3903123140335083, -0.13129228353500366, -0.49536409974098206, -0.6567177772521973, 0.08791251480579376, -0.349518746137619, 0.275813490152359, -0.22292296588420868, -0.28933820128440857, 0.6111658811569214, 0.5763639211654663, -1.0165321826934814, -0.16599272191524506, -0.454636812210083, 0.0163099467754364, 0.9962588548660278, 0.4038083255290985, 0.2838464379310608, -0.38564661145210266, -0.05246840417385101, -0.531654417514801, -0.5694385170936584, 0.040230099111795425, 0.3112967014312744, 0.5483811497688293, -0.7063232660293579, 0.4906036853790283, -0.5061109066009521, 0.7426852583885193, -0.07711610943078995, -0.1780840903520584, 0.6696193814277649, -0.6654947996139526, -0.24100448191165924, -0.19190891087055206, 0.9743680357933044, 0.47127223014831543, -0.15164814889431, -0.008944903500378132, -0.07550959289073944, -0.03414779528975487, -0.09036591649055481, -0.6228280663490295, -0.3439176678657532, 0.5832322239875793, -0.494261234998703, -0.29454925656318665, 0.02068452164530754, -1.2002081871032715, -0.37449076771736145, -0.11593823879957199, 0.24731053411960602, -0.4177190661430359, -0.21747314929962158, 0.014531928114593029, -0.1898672878742218, 0.3410862982273102, 0.269930899143219, -0.6816524863243103, 0.38102641701698303, 0.3872798681259155, 0.6014829277992249, 0.03182031959295273, -0.24124224483966827, -0.13899695873260498, -0.06373632699251175, -0.07004091143608093, 0.7052263021469116, -0.28012728691101074, -0.4309276044368744, -0.24626567959785461, 0.173395037651062, -0.0746786966919899, -0.296124666929245, 0.8562116622924805, 0.010236850008368492, 0.5707176327705383, -0.78598952293396, -0.35908693075180054, -0.202964648604393, 0.4298182725906372, -0.8535831570625305, 1.5451172590255737, 0.3838125467300415, -0.8768724799156189, 0.5776489973068237, -0.8042384386062622, -0.36287397146224976, 0.20335684716701508, -0.13727116584777832, -0.5190601348876953, -0.27015817165374756, 0.36874857544898987, 0.5166981220245361, -0.8483102321624756, 0.12274745851755142, 0.03286285325884819, -0.09911397099494934, 0.10581042617559433, -0.018932871520519257, 1.0469610691070557, 0.2429322600364685, -0.3485870063304901, -0.03705558925867081, -1.0814759731292725, -0.008967090398073196, 0.5605125427246094, -0.3132282495498657, -0.023610319942235947, 0.06066981703042984, 0.3793134093284607, 0.2683676779270172, 0.12817786633968353, -0.4842722713947296, 0.2143636792898178, -0.33559370040893555, 0.27407899498939514, 0.5569424033164978, 0.025724099949002266, 0.2650449275970459, -0.5393252968788147, 0.3954392671585083, -0.07751425355672836, 0.38617178797721863, 0.2184673547744751, -0.5642568469047546, -0.7011690735816956, -0.18477420508861542, 0.4158768951892853, 0.5749070048332214, -0.667671799659729, 0.9315246343612671, -0.7838057279586792, -0.8642833828926086, -0.6466124653816223, 0.15663506090641022, 0.2951546907424927, 0.5700239539146423, 0.37600311636924744, -0.35391947627067566, -0.646537184715271, -0.8642738461494446, 0.15554814040660858, -0.12635737657546997, 0.23264244198799133, 0.5374982953071594, 0.8757932186126709, -0.006953626871109009, 1.0145725011825562, -0.6671014428138733, -0.3982837498188019, -0.5682672262191772, 0.002719373907893896, 0.5978577136993408, 0.5285466313362122, 0.7892576456069946, -0.7756986618041992, -0.7052449584007263, -0.07298795878887177, -0.7700914740562439, 0.07262609899044037, -0.1322612762451172, -0.21091820299625397, 0.03836880624294281, -0.008172432892024517, -0.7191181182861328, 0.4586747884750366, 0.4640961289405823, -0.5240982174873352, 0.4779227077960968, -0.1292441487312317, 0.22492453455924988, -1.3192012310028076, 0.32225555181503296, 0.21376824378967285, 0.0593070313334465, -0.6150578260421753, 0.0007997911889106035, -0.18602187931537628, -0.006374839693307877, -0.16559188067913055, 0.6827505230903625, -0.4636012315750122, 0.19007837772369385, 0.3020792007446289, 0.1779058426618576, 0.04035743698477745, 0.5415298342704773, -0.1257207989692688, 0.8156161308288574, 0.7387825846672058, -0.5111974477767944, 0.5981854200363159, 0.48672938346862793, -0.555670440196991, 0.5157471299171448, -0.562458336353302, -0.13164310157299042, -0.12926894426345825, 0.34501081705093384, -0.9000498056411743, -0.46841874718666077, 0.42708006501197815, -0.7055850028991699, 0.23669929802417755, -0.2287358194589615, -0.8175903558731079, -0.6239112019538879, -0.4425855278968811, 0.03321672976016998, 0.6912306547164917, -0.3327910602092743, 0.6434544920921326, 0.4930742084980011, 0.114358089864254, -0.515108048915863, -0.761479914188385, 0.01145899761468172, -0.26522648334503174, -0.7432644963264465, 0.11706465482711792, -0.18581178784370422, -0.22694067656993866, 0.11645592004060745, 0.09183990955352783, 0.033480267971754074, 0.12876655161380768, 0.1546611785888672, 0.3466699719429016, 0.058366820216178894, -0.02826470509171486, -0.331404447555542, -0.015788329765200615, -0.08419898897409439, 0.0429755263030529, 0.6356232762336731, -0.052614741027355194, -0.0852113738656044, -0.2706718444824219, 0.21891744434833527, 0.23178209364414215, -0.17789536714553833, 0.9038305282592773, 0.654744565486908, -0.40468382835388184, -0.11943116784095764, -0.5239297151565552, -0.007548895664513111, -0.3925021290779114, 0.2967112958431244, -0.19356012344360352, -0.4677474796772003, 0.7979865670204163, 0.3643641769886017, 0.2958645224571228, 1.0443675518035889, 0.4682753384113312, -0.20385552942752838, 0.7527918815612793, 0.1467365324497223, -0.27695006132125854, 0.3760368227958679, -0.7546218037605286, -0.059304915368556976, -0.6732906699180603, -0.40008339285850525, -0.7732740044593811, -0.25302228331565857, -0.6663574576377869, -0.4563647210597992, 0.12868253886699677, 0.05251440405845642, -0.299375057220459, 0.49814918637275696, -0.7755871415138245, 0.49945154786109924, 0.5748523473739624, 0.10609086602926254, -0.11628131568431854, 0.1314336657524109, 0.012299601919949055, 0.018870988860726357, -0.6500361561775208, -0.2868818938732147, 1.3291956186294556, 0.310030072927475, 0.5865030884742737, 0.19689923524856567, 0.7113924026489258, 0.3354451060295105, -0.0014176701661199331, -0.4197939932346344, 0.7431895732879639, -0.1682574450969696, -0.8566322922706604, -0.2612988352775574, -0.5733229517936707, -0.9335331320762634, -0.1496877819299698, -0.5598650574684143, -0.842847466468811, 0.16670988500118256, 0.12081970274448395, -0.21972422301769257, 0.33793094754219055, -0.7191018462181091, 0.8143222332000732, -0.29204219579696655, -0.457774817943573, 0.009577736258506775, -0.7889481782913208, 0.21563729643821716, -0.00003636638939497061, 0.43833401799201965, -0.3062906563282013, 0.4686811864376068, 1.0396116971969604, -0.6424018740653992, 0.7782422304153442, -0.23640458285808563, 0.20792196691036224, 0.3306969106197357, -0.17199359834194183, 0.6899406909942627, -0.1733471304178238, -0.023751258850097656, 0.32645004987716675, -0.22105072438716888, -0.3074072003364563, -0.40102168917655945, 0.682036280632019, -0.768090546131134, -0.24125535786151886, -0.7089967727661133, -0.4054648280143738, -0.08873344212770462, 0.3273340165615082, 0.3962772488594055, 0.37986159324645996, -0.21536527574062347, 0.3256469666957855, 0.7379637360572815, -0.29591596126556396, 0.2533118426799774, 0.2743346393108368, 0.05013440549373627, -0.5760275721549988, 0.9354296922683716, 0.20540350675582886, -0.005395353771746159, 0.31916239857673645, 0.07844769209623337, -0.42866960167884827, -0.5922260880470276, -0.6448124647140503, 0.3214487135410309, -0.6283157467842102, -0.37840020656585693, -0.5069166421890259, -0.23523226380348206, -0.6062641143798828, -0.03666066378355026, -0.14338546991348267, -0.49626561999320984, -0.25301888585090637, -0.24402351677417755, 0.8040821552276611, 0.646679699420929, -0.2721792161464691, 0.30043894052505493, -0.6430104374885559, 0.19102351367473602, 0.04266480728983879, 0.482923686504364, -0.1357014775276184, -0.32570376992225647, -0.45874324440956116, 0.11506769806146622, -0.16739824414253235, -0.7089230418205261, 0.4247705638408661, -0.011848384514451027, 0.6826313734054565, 0.11989562213420868, -0.06428353488445282, 0.5972455739974976, -0.20257584750652313, 1.2531392574310303, 0.1767091155052185, -0.6392309069633484, 0.7409104704856873, -0.5732342004776001, 0.16100676357746124, 0.8643137216567993, 0.20163217186927795, -0.615736722946167, 0.005212187767028809, -0.8118886351585388, -0.9592763781547546, 1.0167171955108643, 0.4960208237171173, -0.12924784421920776, 0.14383991062641144, 0.2152760773897171, -0.0960339903831482, 0.05730937048792839, -0.7759971618652344, -0.763416051864624, -0.08597895503044128, -0.3142127990722656, -0.15423069894313812, -0.10611028969287872, -0.40477436780929565, -0.4424203932285309, 0.9866287708282471, 0.24319112300872803, 0.314741313457489, 0.08995512872934341, -0.03271137923002243, 0.026140335947275162, 0.20258760452270508, 0.36459070444107056, 0.48534631729125977, -0.4923948049545288, -0.291419118642807, 0.36429035663604736, -0.7817298769950867, -0.18568865954875946, 0.3407520353794098, -0.2154286801815033, 0.01712220534682274, 0.3280857801437378, 0.7965629696846008, -0.1545417457818985, -0.4878971576690674, 0.36985069513320923, -0.1745702177286148, -0.5061273574829102, -0.29242047667503357, 0.08551132678985596, -0.2286667823791504, -0.0872349888086319, 0.33173394203186035, -0.18063274025917053, 0.07625333964824677, -0.5170324444770813, 0.03190244734287262, 0.29536619782447815, -0.11994239687919617, -0.16029304265975952, 0.5648239254951477, 0.16042934358119965, 0.027031436562538147, 0.7245542407035828, -0.3220055103302002, -0.35880041122436523, 0.6045569777488708, 0.0989789292216301, 0.8904544115066528, 0.07136054337024689, 0.15815803408622742, 0.7891902923583984, 0.47793012857437134, -0.10795517265796661, 0.5995963215827942, 0.0024545181076973677, -0.6750501990318298, -0.1589728742837906, -0.6967312097549438, -0.10571079701185226, 0.2556561827659607, -0.6905996203422546, 0.3542086184024811, -0.3367985785007477, -0.17268480360507965, -0.08129153400659561, 0.5882717370986938, -1.062554121017456, 0.5515614748001099, 0.10955780744552612, 1.1071536540985107, -1.0952154397964478, 0.6207597851753235, 0.6277397871017456, -0.6534306406974792, -0.9615005850791931, -0.24581556022167206, 0.17228861153125763, -0.5623413920402527, 0.3517303466796875, -0.18753744661808014, 0.34478408098220825, -0.14313904941082, -0.6369796395301819, -0.997214674949646, 1.360478401184082, -0.05690173804759979, -0.43332192301750183, -0.009671970270574093, 0.3093472123146057, 0.512525200843811, -0.14204655587673187, 0.30195096135139465, 0.8075762987136841, 0.611536979675293, 0.21696825325489044, -0.8714250326156616, 0.186552956700325, -0.6170749664306641, -0.13987421989440918, 0.2144797295331955, -0.6498947143554688, 0.7683193683624268, 0.14909899234771729, -0.22903433442115784, -0.2502084970474243, 0.3431828022003174, 0.28448987007141113, 0.09123142063617706, 0.33843085169792175, 1.0143109560012817, 0.8658304214477539, -0.6114509701728821, 1.188730239868164, -0.2530413866043091, 0.5899091958999634, 0.9176371097564697, -0.12341213971376419, 0.6646849513053894, 0.10798045247793198, -0.4169890880584717, 0.5186524987220764, 0.7901209592819214, -0.45515531301498413, 0.573763370513916, 0.063888318836689, -0.05673453211784363, -0.028058791533112526, 0.04079139605164528, -0.6452454924583435, 0.4223804771900177, 0.3987342119216919, -0.2543935179710388, -0.3557409346103668, -0.20895014703273773, 0.1434597671031952, -0.2641710937023163, -0.1912931501865387, 0.846385657787323, -0.3380832374095917, -0.35036465525627136, 0.5070618987083435, -0.09370800107717514, 0.5200438499450684, -0.827250599861145, -0.02765747345983982, -0.19747622311115265, -0.009406804107129574, -0.35745570063591003, -1.0173648595809937, 0.1461314707994461, 0.22051528096199036, -0.35865479707717896, -0.24783514440059662, 0.6135510802268982, -0.17723575234413147, -0.6878419518470764, 0.006802125833928585, 0.4452785551548004, 0.2773798406124115, 0.25114110112190247, -1.1033713817596436, 0.1303219348192215, 0.19073106348514557, -0.43945935368537903, 0.2110256552696228, 0.30801093578338623, 0.03238985314965248, 0.4462182819843292, 0.7293844819068909, 0.17690858244895935, -0.10033480823040009, -0.0642479807138443, 0.9573550224304199, -0.7281385064125061, -0.45981502532958984, -0.6085149645805359, 0.8075695037841797, -0.4932105839252472, -0.44259828329086304, 1.0069586038589478, 1.0398162603378296, 0.846680223941803, 0.15227186679840088, 1.073819637298584, -0.6609912514686584, 0.7870513796806335, -0.49360892176628113, 0.8684799075126648, -0.6995189189910889, 0.21869751811027527, -0.382262647151947, -0.8328592777252197, -0.28288689255714417, 0.6046807169914246, -0.3882801830768585, 0.1431674212217331, 0.4654545187950134, 0.8777848482131958, 0.10797855257987976, 0.10330111533403397, -0.06253068894147873, 0.2438298761844635, 0.1860998570919037, 0.6118950843811035, 0.3443911075592041, -0.7404935359954834, 0.46516042947769165, -0.5180174112319946, -0.17503884434700012, -0.08615250140428543, -0.7924991250038147, -0.9082699418067932, -0.8810152411460876, -0.4177304208278656, -0.7391746044158936, -0.10439810901880264, 1.0598838329315186, 0.6226820945739746, -0.9622710943222046, -0.35272520780563354, -0.05997350439429283, -0.012830871157348156, -0.16146241128444672, -0.2703529894351959, 0.6734937429428101, 0.13732652366161346, -0.5754479169845581, 0.15281347930431366, -0.12590961158275604, 0.06818246096372604, 0.1333436518907547, -0.03827602043747902, -0.28890660405158997, -0.17717060446739197, 0.391602098941803, 0.3669149577617645, -0.3980723023414612, -0.0433504693210125, -0.02065703086555004, -0.1257733553647995, 0.15097713470458984, 0.2777054011821747, -0.57022625207901, 0.38824403285980225, 0.706044614315033, 0.14127065241336823, 0.6422798037528992, -0.058482956141233444, 0.22330759465694427, -0.8399730920791626, -0.04894508793950081, 0.090485580265522, 0.3988598883152008, 0.2223355919122696, -0.43707698583602905, 0.775365948677063, 0.28245827555656433, -0.37185728549957275, -0.846598207950592, -0.24849575757980347, -1.175588846206665, -0.0818779245018959, 1.282263159751892, 0.19345641136169434, -0.4033815860748291, -0.14180150628089905, -0.13154283165931702, 0.02680387534201145, -0.476062536239624, 0.5338298678398132, 0.8795825839042664, 0.05423370748758316, -0.03558962792158127, -0.5557076930999756, 0.7266807556152344, -0.07814188301563263, -1.136032223701477, 0.2660931944847107, 0.5566734671592712, 0.4196121394634247, 0.18978746235370636, 0.723339319229126, -0.1578892320394516, 0.17027415335178375, 0.16196201741695404, 0.44699472188949585, -0.0012609615223482251, -0.110908642411232, -0.2313387393951416, -0.1529584676027298, -0.278037428855896, -0.1049477681517601 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
PolyAI/banking77
PolyAI
2022-10-25T10:12:22Z
6,353
20
null
[ "task_categories:text-classification", "task_ids:intent-classification", "task_ids:multi-class-classification", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:cc-by-4.0", "arxiv:2003.04807", "region:us" ]
2022-10-25T10:12:22Z
2022-04-27T12:54:13.000Z
2022-04-27T12:54:13
--- annotations_creators: - expert-generated extended: - original language_creators: - expert-generated language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - text-classification task_ids: - intent-classification - multi-class-classification paperswithcode_id: null pretty_name: BANKING77 --- # Dataset Card for BANKING77 ## 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:** [Github](https://github.com/PolyAI-LDN/task-specific-datasets) - **Repository:** [Github](https://github.com/PolyAI-LDN/task-specific-datasets) - **Paper:** [ArXiv](https://arxiv.org/abs/2003.04807) - **Leaderboard:** - **Point of Contact:** ### Dataset Summary Dataset composed of online banking queries annotated with their corresponding intents. BANKING77 dataset provides a very fine-grained set of intents in a banking domain. It comprises 13,083 customer service queries labeled with 77 intents. It focuses on fine-grained single-domain intent detection. ### Supported Tasks and Leaderboards Intent classification, intent detection ### Languages English ## Dataset Structure ### Data Instances An example of 'train' looks as follows: ``` { 'label': 11, # integer label corresponding to "card_arrival" intent 'text': 'I am still waiting on my card?' } ``` ### Data Fields - `text`: a string feature. - `label`: One of classification labels (0-76) corresponding to unique intents. Intent names are mapped to `label` in the following way: | label | intent (category) | |---:|:-------------------------------------------------| | 0 | activate_my_card | | 1 | age_limit | | 2 | apple_pay_or_google_pay | | 3 | atm_support | | 4 | automatic_top_up | | 5 | balance_not_updated_after_bank_transfer | | 6 | balance_not_updated_after_cheque_or_cash_deposit | | 7 | beneficiary_not_allowed | | 8 | cancel_transfer | | 9 | card_about_to_expire | | 10 | card_acceptance | | 11 | card_arrival | | 12 | card_delivery_estimate | | 13 | card_linking | | 14 | card_not_working | | 15 | card_payment_fee_charged | | 16 | card_payment_not_recognised | | 17 | card_payment_wrong_exchange_rate | | 18 | card_swallowed | | 19 | cash_withdrawal_charge | | 20 | cash_withdrawal_not_recognised | | 21 | change_pin | | 22 | compromised_card | | 23 | contactless_not_working | | 24 | country_support | | 25 | declined_card_payment | | 26 | declined_cash_withdrawal | | 27 | declined_transfer | | 28 | direct_debit_payment_not_recognised | | 29 | disposable_card_limits | | 30 | edit_personal_details | | 31 | exchange_charge | | 32 | exchange_rate | | 33 | exchange_via_app | | 34 | extra_charge_on_statement | | 35 | failed_transfer | | 36 | fiat_currency_support | | 37 | get_disposable_virtual_card | | 38 | get_physical_card | | 39 | getting_spare_card | | 40 | getting_virtual_card | | 41 | lost_or_stolen_card | | 42 | lost_or_stolen_phone | | 43 | order_physical_card | | 44 | passcode_forgotten | | 45 | pending_card_payment | | 46 | pending_cash_withdrawal | | 47 | pending_top_up | | 48 | pending_transfer | | 49 | pin_blocked | | 50 | receiving_money | | 51 | Refund_not_showing_up | | 52 | request_refund | | 53 | reverted_card_payment? | | 54 | supported_cards_and_currencies | | 55 | terminate_account | | 56 | top_up_by_bank_transfer_charge | | 57 | top_up_by_card_charge | | 58 | top_up_by_cash_or_cheque | | 59 | top_up_failed | | 60 | top_up_limits | | 61 | top_up_reverted | | 62 | topping_up_by_card | | 63 | transaction_charged_twice | | 64 | transfer_fee_charged | | 65 | transfer_into_account | | 66 | transfer_not_received_by_recipient | | 67 | transfer_timing | | 68 | unable_to_verify_identity | | 69 | verify_my_identity | | 70 | verify_source_of_funds | | 71 | verify_top_up | | 72 | virtual_card_not_working | | 73 | visa_or_mastercard | | 74 | why_verify_identity | | 75 | wrong_amount_of_cash_received | | 76 | wrong_exchange_rate_for_cash_withdrawal | ### Data Splits | Dataset statistics | Train | Test | | --- | --- | --- | | Number of examples | 10 003 | 3 080 | | Average character length | 59.5 | 54.2 | | Number of intents | 77 | 77 | | Number of domains | 1 | 1 | ## Dataset Creation ### Curation Rationale Previous intent detection datasets such as Web Apps, Ask Ubuntu, the Chatbot Corpus or SNIPS are limited to small number of classes (<10), which oversimplifies the intent detection task and does not emulate the true environment of commercial systems. Although there exist large scale *multi-domain* datasets ([HWU64](https://github.com/xliuhw/NLU-Evaluation-Data) and [CLINC150](https://github.com/clinc/oos-eval)), the examples per each domain may not sufficiently capture the full complexity of each domain as encountered "in the wild". This dataset tries to fill the gap and provides a very fine-grained set of intents in a *single-domain* i.e. **banking**. Its focus on fine-grained single-domain intent detection makes it complementary to the other two multi-domain datasets. ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process The dataset does not contain any additional annotations. #### Who are the annotators? [N/A] ### Personal and Sensitive Information [N/A] ## Considerations for Using the Data ### Social Impact of Dataset The purpose of this dataset it to help develop better intent detection systems. Any comprehensive intent detection evaluation should involve both coarser-grained multi-domain datasets and a fine-grained single-domain dataset such as BANKING77. ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [PolyAI](https://github.com/PolyAI-LDN) ### Licensing Information Creative Commons Attribution 4.0 International ### Citation Information ``` @inproceedings{Casanueva2020, author = {I{\~{n}}igo Casanueva and Tadas Temcinas and Daniela Gerz and Matthew Henderson and Ivan Vulic}, title = {Efficient Intent Detection with Dual Sentence Encoders}, year = {2020}, month = {mar}, note = {Data available at https://github.com/PolyAI-LDN/task-specific-datasets}, url = {https://arxiv.org/abs/2003.04807}, booktitle = {Proceedings of the 2nd Workshop on NLP for ConvAI - ACL 2020} } ``` ### Contributions Thanks to [@dkajtoch](https://github.com/dkajtoch) for adding this dataset.
[ -0.5334160327911377, -0.6251887679100037, 0.1746477484703064, 0.13247139751911163, -0.21844995021820068, -0.02183941937983036, -0.18619774281978607, -0.46433496475219727, 0.44565895199775696, 0.7164758443832397, -0.8125491142272949, -0.9742786884307861, -0.5240012407302856, -0.028493346646428108, -0.060466423630714417, 1.0319844484329224, 0.21813246607780457, -0.4373112618923187, -0.012541043572127819, -0.05715997517108917, -0.6007598042488098, -0.3745056688785553, -0.6720136404037476, -0.13451744616031647, 0.33192288875579834, 0.6497283577919006, 0.39178717136383057, 0.3574630618095398, 0.7539336681365967, 0.36907708644866943, -0.05769490450620651, 0.16056528687477112, -0.4452421963214874, -0.21129824221134186, 0.036509670317173004, -0.3750704228878021, -0.8368971943855286, -0.1331140547990799, 0.4005843997001648, 0.31495401263237, 0.0320567786693573, 0.4088189899921417, 0.09242561459541321, 1.013200044631958, -0.5001844167709351, 0.5469611287117004, -0.38086068630218506, -0.14859437942504883, -0.28748348355293274, -0.2774716019630432, -0.16461336612701416, -0.42014673352241516, 0.19816552102565765, -0.6133871674537659, 0.11910725384950638, 0.19548849761486053, 0.972865879535675, 0.025341013446450233, -0.2771705090999603, -0.6592202186584473, -0.65989089012146, 0.6286534070968628, -0.6807734966278076, 0.04967557266354561, 0.6861398220062256, 0.3739464282989502, -0.1371370553970337, -0.5450640916824341, -0.5025009512901306, 0.18881796300411224, -0.6159164309501648, 0.26366111636161804, -0.18279394507408142, -0.07513462007045746, 0.5032113194465637, 0.4209505617618561, -0.6533609628677368, -0.3402215838432312, -0.7610602378845215, -0.25601863861083984, 0.9193695187568665, 0.25223463773727417, 0.09309931099414825, -0.3907448351383209, -0.2423275262117386, -0.13394410908222198, -0.21008481085300446, 0.7297865748405457, 0.5304232239723206, 0.4034404456615448, -0.5151165127754211, 0.4167025089263916, -0.41983136534690857, 0.7481899261474609, 0.1587945520877838, -0.300121009349823, 0.6163345575332642, -0.4137629568576813, -0.2592636048793793, 0.4201299846172333, 0.7957462668418884, 0.3774680495262146, -0.100881427526474, 0.20060037076473236, -0.17084020376205444, 0.07306405901908875, 0.05406590551137924, -0.5443218946456909, -0.21752671897411346, 0.9052443504333496, -0.7316299080848694, -0.44530653953552246, 0.3264026939868927, -0.8994591236114502, -0.15216754376888275, -0.24110566079616547, 0.18149353563785553, -0.49581378698349, -0.13274748623371124, 0.24177759885787964, -0.29210537672042847, 0.47840285301208496, 0.02901327982544899, -0.9073558449745178, 0.31334954500198364, 0.6330924034118652, 0.6276375651359558, -0.23739135265350342, -0.14601446688175201, -0.21155954897403717, 0.2558765113353729, -0.0345153771340847, 1.0705344676971436, -0.44785094261169434, -0.5141952037811279, 0.0827927440404892, 0.36065593361854553, -0.30052700638771057, -0.514124870300293, 0.9514781832695007, -0.2467876672744751, 0.16759561002254486, -0.40625864267349243, -0.3979634940624237, -0.23955214023590088, 0.46976765990257263, -0.9238488674163818, 1.106321930885315, 0.13514840602874756, -0.7943815588951111, 0.4889003038406372, -1.1548006534576416, -0.4497576951980591, 0.11721476912498474, 0.07864820212125778, -0.738938570022583, -0.2707509398460388, 0.06305214017629623, 0.539175271987915, -0.292339563369751, 0.23463377356529236, -0.2382027804851532, -0.40103739500045776, 0.20193901658058167, -0.299557626247406, 1.1576850414276123, 0.23647545278072357, -0.40602442622184753, 0.19805754721164703, -1.115567922592163, -0.14357389509677887, 0.3198223114013672, -0.40616288781166077, -0.2585499584674835, -0.22806060314178467, 0.022209983319044113, 0.13664191961288452, 0.40945541858673096, -0.6364149451255798, 0.1947653591632843, -0.12174852192401886, 0.3390277624130249, 0.6337153911590576, -0.010057711973786354, 0.3466574251651764, -0.7482450008392334, 0.3093473017215729, 0.24221405386924744, 0.695257306098938, -0.16406919062137604, -0.7683151960372925, -0.581874668598175, -0.36075901985168457, 0.081788569688797, 0.7537267208099365, -0.1678849309682846, 0.9062990546226501, -0.4261314570903778, -0.5661080479621887, -0.38619565963745117, 0.2370918095111847, 0.3381792902946472, 0.4379691481590271, 0.41180533170700073, -0.3346065580844879, -0.4837142825126648, -0.8738852739334106, -0.09754727780818939, -0.057068124413490295, 0.3483121395111084, 0.8035018444061279, 0.6450404524803162, -0.2970181405544281, 0.870756983757019, -0.734988808631897, -0.6773213744163513, -0.6135863661766052, -0.1610945165157318, 0.5793418884277344, 0.5412938594818115, 0.6807711720466614, -1.114022970199585, -0.6042694449424744, -0.13054171204566956, -0.5861883163452148, 0.16348469257354736, -0.28380852937698364, -0.3320842683315277, 0.07182525843381882, 0.16501592099666595, -0.59309321641922, 0.8668826222419739, 0.4843691289424896, -0.7544488310813904, 0.5441539883613586, -0.20263926684856415, 0.2467980682849884, -1.2506908178329468, 0.31985998153686523, -0.03802390769124031, 0.002072154311463237, -0.7334954142570496, -0.6237881183624268, 0.038601476699113846, 0.09532836824655533, -0.4223534166812897, 0.5256370306015015, -0.31432825326919556, -0.034695468842983246, 0.11676879972219467, -0.15147928893566132, -0.03113398142158985, 0.7231246829032898, 0.034816086292266846, 0.6787631511688232, 0.8725508451461792, -0.7722697854042053, 0.2743161916732788, 0.5527076125144958, -0.4527929127216339, 0.6004080176353455, -0.5270236134529114, -0.2250751256942749, -0.0733380988240242, 0.3703708350658417, -1.3313822746276855, -0.5605394840240479, 0.5613777041435242, -0.6042329668998718, 0.16000451147556305, -0.3199092447757721, -0.20008334517478943, -0.7032012343406677, -0.35215750336647034, 0.28002065420150757, 0.4726904332637787, -0.4620884656906128, 0.9151026606559753, 0.4752987325191498, 0.06285151094198227, -0.5290458798408508, -0.727065920829773, -0.18806077539920807, -0.330516517162323, -0.701683521270752, 0.3565467894077301, -0.0016302396543323994, -0.0390971414744854, 0.10655293613672256, 0.013962752185761929, -0.07373998314142227, -0.030261997133493423, 0.3255554139614105, 0.6011592745780945, 0.017123468220233917, -0.1938796490430832, -0.1068648099899292, -0.17058371007442474, -0.0270222295075655, -0.17429032921791077, 0.8125120997428894, -0.02152397856116295, -0.2935466468334198, -0.526244580745697, 0.4199916124343872, 0.5075997710227966, -0.3774111270904541, 0.7779496312141418, 0.6735232472419739, -0.2355133444070816, 0.014626209624111652, -0.4851638078689575, -0.01727202720940113, -0.5380169153213501, -0.1689555048942566, -0.4645792245864868, -0.7268308997154236, 0.9636286497116089, -0.07388096302747726, 0.4360719323158264, 0.7419940829277039, 0.48908811807632446, 0.06625422090291977, 0.7130506038665771, 0.3105641305446625, -0.06608042120933533, 0.5521510243415833, -0.6380468606948853, 0.36362266540527344, -0.7551671862602234, -0.6475639939308167, -0.5785086154937744, -0.30471593141555786, -0.7219625115394592, -0.1971997320652008, 0.0165928453207016, -0.16265369951725006, -0.20311316847801208, 0.666103184223175, -0.7306670546531677, 0.3601054549217224, 0.734580397605896, 0.1772402673959732, 0.0024920303840190172, -0.04290738329291344, -0.054980844259262085, 0.4761066436767578, -0.6492513418197632, -0.47686946392059326, 1.3767002820968628, 0.018920233473181725, 0.650184690952301, 0.29063817858695984, 0.8778620362281799, 0.5240068435668945, 0.14824903011322021, -0.7070766687393188, 0.49675804376602173, -0.3069908618927002, -0.8678490519523621, -0.19924050569534302, -0.35274168848991394, -1.3386396169662476, -0.10292942821979523, -0.2215120792388916, -1.0831048488616943, 0.7309188842773438, 0.2972084581851959, -0.6072083115577698, 0.4115225374698639, -0.9376360774040222, 1.1278772354125977, -0.3090611696243286, -0.34773099422454834, 0.12546709179878235, -0.6871125102043152, 0.5146540999412537, 0.04024829342961311, 0.2922065258026123, -0.38586604595184326, 0.27491065859794617, 0.8324989080429077, -0.4699276387691498, 0.7650859355926514, -0.17097215354442596, 0.07985682040452957, 0.8302526473999023, -0.3065595328807831, 0.6758562922477722, 0.09619933366775513, 0.23320089280605316, 0.12888340651988983, 0.09316873550415039, -0.5793824195861816, -0.2172791063785553, 0.8280720114707947, -0.6605824828147888, -0.20965249836444855, -0.5278224349021912, -0.4540923237800598, -0.004624759778380394, 0.44118812680244446, 0.2262219488620758, 0.39936038851737976, 0.030490582808852196, 0.3685385584831238, 0.9302968978881836, -0.3826901912689209, 0.36454063653945923, 0.2920363247394562, 0.07040470838546753, -0.3996666371822357, 0.9383841156959534, -0.08963339030742645, 0.1818818897008896, 0.3294145464897156, 0.24465659260749817, -0.6647265553474426, -0.19849632680416107, -0.3652488589286804, 0.10121525079011917, -0.5459755659103394, -0.22203364968299866, -0.7187167406082153, 0.050790365785360336, -1.0228805541992188, -0.22080573439598083, -0.30058425664901733, -0.16956827044487, -0.23555149137973785, -0.10772208869457245, 0.7299454212188721, 0.5091971755027771, -0.22418007254600525, 0.38047274947166443, -0.7672274112701416, 0.6127920150756836, 0.15162666141986847, 0.5371326804161072, -0.23455382883548737, -0.3267659842967987, -0.048220355063676834, -0.02348707802593708, -0.060601044446229935, -0.7780243754386902, 0.4687012732028961, 0.009062307886779308, 0.6992069482803345, 0.5208942890167236, 0.07426973432302475, 0.7160882353782654, 0.03963295370340347, 0.8941687345504761, 0.1439787894487381, -0.5692253112792969, 0.7093433737754822, -0.4415544271469116, 0.338576078414917, 0.959022045135498, 0.46658146381378174, -0.5313530564308167, 0.020015493035316467, -0.8800543546676636, -1.0846971273422241, 0.9956584572792053, 0.3294931650161743, -0.14972831308841705, 0.09396630525588989, 0.21594589948654175, -0.07832875847816467, 0.1466986984014511, -0.616110622882843, -0.8324503302574158, -0.14781589806079865, -0.3427093029022217, -0.005427153315395117, -0.2096025049686432, -0.12423863261938095, -0.3831178843975067, 0.7202408909797668, 0.18881118297576904, 0.5874509811401367, 0.3888135552406311, 0.05601589009165764, 0.1475485861301422, 0.2944989502429962, 0.7154062986373901, 0.6253159046173096, -0.5472515821456909, -0.2246554046869278, -0.049937594681978226, -0.7944685816764832, -0.018344327807426453, 0.19286257028579712, -0.3775002658367157, -0.06348606944084167, 0.1644747108221054, 0.7543607950210571, -0.04625480994582176, -0.6327871084213257, 0.4753226935863495, -0.32260817289352417, -0.4503870904445648, -0.7134202122688293, 0.16912941634655, -0.1509293019771576, 0.17842397093772888, 0.4064207375049591, 0.20330457389354706, 0.3370053172111511, -0.8029223680496216, 0.3050506114959717, 0.23613131046295166, -0.5502839684486389, -0.0365351140499115, 0.5244370102882385, 0.010608728043735027, -0.4744037687778473, 0.43550947308540344, -0.39307835698127747, -0.5788501501083374, 0.8463619947433472, 0.3577089011669159, 0.9407902359962463, -0.13792917132377625, 0.03748588636517525, 0.7345763444900513, 0.3085785508155823, -0.11370041966438293, 0.8388237953186035, -0.12899309396743774, -0.6010705232620239, -0.11392400413751602, -0.658885657787323, -0.19104015827178955, 0.20285357534885406, -0.894330620765686, 0.3883986175060272, -0.418763667345047, -0.2370748519897461, 0.2004794478416443, 0.041442591696977615, -1.0451469421386719, 0.1903693974018097, 0.1345137506723404, 0.934903085231781, -0.8337364196777344, 0.8493452072143555, 0.72642582654953, -0.4048062264919281, -0.9729814529418945, -0.34014812111854553, -0.05171816423535347, -0.7413037419319153, 0.21113964915275574, 0.3288271129131317, 0.19100555777549744, -0.20195931196212769, -0.4252941608428955, -0.849643349647522, 1.403449535369873, -0.2758190929889679, -0.6334860324859619, 0.2962631285190582, 0.40128880739212036, 0.2660005986690521, -0.4023544490337372, 0.20025669038295746, 1.101891279220581, 0.735428512096405, 0.2225123792886734, -0.7765496373176575, 0.13110479712486267, -0.3838489055633545, -0.617303192615509, 0.23823833465576172, -0.8651494979858398, 0.9343369007110596, -0.030332880094647408, 0.08690526336431503, -0.39156174659729004, 0.2828185558319092, 0.39727088809013367, 0.5051052570343018, 0.6792871952056885, 0.7197733521461487, 0.8184856176376343, -0.3150844871997833, 1.1576229333877563, -0.5987654328346252, 0.45823928713798523, 1.0580339431762695, 0.0068033598363399506, 0.6476184129714966, 0.2845468521118164, -0.23165105283260345, 0.3795495927333832, 0.717335045337677, -0.14032220840454102, 0.45018118619918823, -0.011385898105800152, -0.22179438173770905, -0.2354469895362854, 0.020320117473602295, -0.25440743565559387, 0.4303598403930664, 0.6183743476867676, -0.3746732771396637, -0.04120291769504547, -0.1949540376663208, -0.20209020376205444, -0.4708922803401947, -0.4692331850528717, 0.8275672793388367, -0.24363698065280914, -0.5627806186676025, 0.3455815315246582, -0.3186147212982178, 0.9494422078132629, -0.9360222220420837, 0.014386394061148167, -0.2530565559864044, 0.33114609122276306, -0.48684078454971313, -0.9705305695533752, 0.2830759882926941, -0.04467443749308586, -0.052752260118722916, -0.027181681245565414, 1.0095770359039307, -0.2690054476261139, -0.5747284889221191, 0.24117803573608398, 0.15056529641151428, 0.3947666883468628, -0.0003422285080887377, -1.0783528089523315, 0.20081765949726105, 0.23360054194927216, -0.3896801769733429, 0.1529596745967865, 0.5263044834136963, 0.051014456897974014, 0.6186250448226929, 0.9499561786651611, 0.11419545859098434, 0.23821012675762177, 0.03215060383081436, 0.968619704246521, -0.8985532522201538, -0.663758397102356, -0.6943330764770508, 0.5448875427246094, -0.4942081868648529, -0.596735417842865, 0.7975613474845886, 1.0244088172912598, 0.983919620513916, 0.012397515587508678, 1.0193884372711182, -0.5785247683525085, 0.4987761080265045, -0.1857118308544159, 0.4971485137939453, -0.603007972240448, 0.17651723325252533, -0.31582051515579224, -0.7431486248970032, -0.2830003499984741, 0.7122525572776794, -0.5170913934707642, -0.08108599483966827, 0.31473320722579956, 0.8289645910263062, -0.1570167988538742, 0.08020880818367004, 0.20520293712615967, -0.10990408062934875, 0.26936614513397217, 0.6712615489959717, 0.4568946659564972, -0.712874710559845, 0.9449109435081482, -0.6203943490982056, -0.019722918048501015, -0.4157539904117584, -0.5479816794395447, -0.9867436289787292, -0.4985770881175995, -0.3044590950012207, -0.5122041702270508, -0.24321359395980835, 1.0099294185638428, 0.5452924370765686, -1.1469030380249023, -0.413293719291687, -0.050605181604623795, 0.026407411321997643, -0.27029669284820557, -0.2524844706058502, 0.7228406071662903, -0.18597279489040375, -0.6502460837364197, -0.03924798592925072, 0.23459722101688385, 0.1690444052219391, -0.0339510403573513, -0.0467270128428936, -0.25333258509635925, 0.15460079908370972, 0.5905140042304993, 0.39938074350357056, -0.4471006691455841, -0.0416574627161026, -0.0018397128442302346, -0.09508631378412247, 0.3274955451488495, 0.7719053030014038, -0.2567126154899597, 0.2834571301937103, 0.6585594415664673, 0.3292218744754791, 0.5689490437507629, 0.20708231627941132, -0.1378077268600464, -0.28123602271080017, 0.1718115210533142, 0.10827387869358063, 0.42262956500053406, -0.009190754033625126, -0.7435482740402222, 0.4446835219860077, 0.17502357065677643, -0.5110806226730347, -0.6225112676620483, -0.20154309272766113, -1.5944463014602661, -0.2361893653869629, 1.2903777360916138, -0.0979827344417572, -0.8116756677627563, -0.5363796949386597, -0.4471524953842163, 0.0479499027132988, -0.9197224378585815, 0.6305163502693176, 0.5167824029922485, -0.28063565492630005, 0.18616215884685516, -0.7647019028663635, 0.8053035736083984, 0.028047285974025726, -0.9796359539031982, 0.17882166802883148, 0.3812335133552551, 0.256708562374115, 0.3169828951358795, 0.9532859921455383, -0.1781599074602127, 0.3544071316719055, 0.14177021384239197, 0.07317715138196945, 0.04236089810729027, -0.1863897442817688, 0.11528555303812027, 0.05895167589187622, -0.3534404933452606, -0.36888083815574646 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mteb/amazon_massive_intent
mteb
2022-09-27T19:10:30Z
6,335
6
null
[ "language:af", "language:am", "language:ar", "language:az", "language:bn", "language:cy", "language:da", "language:de", "language:el", "language:en", "language:es", "language:fa", "language:fr", "language:he", "language:hi", "language:hu", "language:hy", "language:id", "language:is", "language:it", "language:ja", "language:jv", "language:ka", "language:km", "language:kn", "language:ko", "language:lv", "language:ml", "language:mn", "language:ms", "language:my", "language:nb", "language:nl", "language:pl", "language:pt", "language:ro", "language:ru", "language:sl", "language:sq", "language:sv", "language:sw", "language:ta", "language:te", "language:th", "language:tl", "language:tr", "language:ur", "language:vi", "language:zh", "region:us" ]
2022-09-27T19:10:30Z
2022-05-15T20:59:15.000Z
2022-05-15T20:59:15
--- language: - af - am - ar - az - bn - cy - da - de - el - en - es - fa - fr - he - hi - hu - hy - id - is - it - ja - jv - ka - km - kn - ko - lv - ml - mn - ms - my - nb - nl - pl - pt - ro - ru - sl - sq - sv - sw - ta - te - th - tl - tr - ur - vi - zh ---
[ -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
Abirate/english_quotes
Abirate
2022-10-25T08:39:16Z
6,330
22
null
[ "task_categories:text-classification", "task_ids:multi-label-classification", "annotations_creators:expert-generated", "language_creators:expert-generated", "language_creators:crowdsourced", "multilinguality:monolingual", "source_datasets:original", "language:en", "doi:10.57967/hf/1053", "region:us" ]
2022-10-25T08:39:16Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - expert-generated - crowdsourced language: - en multilinguality: - monolingual source_datasets: - original task_categories: - text-classification task_ids: - multi-label-classification --- # ****Dataset Card for English quotes**** # **I-Dataset Summary** english_quotes is a dataset of all the quotes retrieved from [goodreads quotes](https://www.goodreads.com/quotes). This dataset can be used for multi-label text classification and text generation. The content of each quote is in English and concerns the domain of datasets for NLP and beyond. # **II-Supported Tasks and Leaderboards** - Multi-label text classification : The dataset can be used to train a model for text-classification, which consists of classifying quotes by author as well as by topic (using tags). Success on this task is typically measured by achieving a high or low accuracy. - Text-generation : The dataset can be used to train a model to generate quotes by fine-tuning an existing pretrained model on the corpus composed of all quotes (or quotes by author). # **III-Languages** The texts in the dataset are in English (en). # **IV-Dataset Structure** #### Data Instances A JSON-formatted example of a typical instance in the dataset: ```python {'author': 'Ralph Waldo Emerson', 'quote': '“To be yourself in a world that is constantly trying to make you something else is the greatest accomplishment.”', 'tags': ['accomplishment', 'be-yourself', 'conformity', 'individuality']} ``` #### Data Fields - **author** : The author of the quote. - **quote** : The text of the quote. - **tags**: The tags could be characterized as topics around the quote. #### Data Splits I kept the dataset as one block (train), so it can be shuffled and split by users later using methods of the hugging face dataset library like the (.train_test_split()) method. # **V-Dataset Creation** #### Curation Rationale I want to share my datasets (created by web scraping and additional cleaning treatments) with the HuggingFace community so that they can use them in NLP tasks to advance artificial intelligence. #### Source Data The source of Data is [goodreads](https://www.goodreads.com/?ref=nav_home) site: from [goodreads quotes](https://www.goodreads.com/quotes) #### Initial Data Collection and Normalization The data collection process is web scraping using BeautifulSoup and Requests libraries. The data is slightly modified after the web scraping: removing all quotes with "None" tags, and the tag "attributed-no-source" is removed from all tags, because it has not added value to the topic of the quote. #### Who are the source Data producers ? The data is machine-generated (using web scraping) and subjected to human additional treatment. below, I provide the script I created to scrape the data (as well as my additional treatment): ```python import requests from bs4 import BeautifulSoup import pandas as pd import json from collections import OrderedDict page = requests.get('https://www.goodreads.com/quotes') if page.status_code == 200: pageParsed = BeautifulSoup(page.content, 'html5lib') # Define a function that retrieves information about each HTML quote code in a dictionary form. def extract_data_quote(quote_html): quote = quote_html.find('div',{'class':'quoteText'}).get_text().strip().split('\n')[0] author = quote_html.find('span',{'class':'authorOrTitle'}).get_text().strip() if quote_html.find('div',{'class':'greyText smallText left'}) is not None: tags_list = [tag.get_text() for tag in quote_html.find('div',{'class':'greyText smallText left'}).find_all('a')] tags = list(OrderedDict.fromkeys(tags_list)) if 'attributed-no-source' in tags: tags.remove('attributed-no-source') else: tags = None data = {'quote':quote, 'author':author, 'tags':tags} return data # Define a function that retrieves all the quotes on a single page. def get_quotes_data(page_url): page = requests.get(page_url) if page.status_code == 200: pageParsed = BeautifulSoup(page.content, 'html5lib') quotes_html_page = pageParsed.find_all('div',{'class':'quoteDetails'}) return [extract_data_quote(quote_html) for quote_html in quotes_html_page] # Retrieve data from the first page. data = get_quotes_data('https://www.goodreads.com/quotes') # Retrieve data from all pages. for i in range(2,101): print(i) url = f'https://www.goodreads.com/quotes?page={i}' data_current_page = get_quotes_data(url) if data_current_page is None: continue data = data + data_current_page data_df = pd.DataFrame.from_dict(data) for i, row in data_df.iterrows(): if row['tags'] is None: data_df = data_df.drop(i) # Produce the data in a JSON format. data_df.to_json('C:/Users/Abir/Desktop/quotes.jsonl',orient="records", lines =True,force_ascii=False) # Then I used the familiar process to push it to the Hugging Face hub. ``` #### Annotations Annotations are part of the initial data collection (see the script above). # **VI-Additional Informations** #### Dataset Curators Abir ELTAIEF #### Licensing Information This work is licensed under a Creative Commons Attribution 4.0 International License (all software and libraries used for web scraping are made available under this Creative Commons Attribution license). #### Contributions Thanks to [@Abirate](https://huggingface.co/Abirate) for adding this dataset.
[ -0.29182499647140503, -0.6157962083816528, 0.08716963231563568, 0.21001498401165009, -0.27116721868515015, -0.0381111279129982, -0.06332028657197952, -0.3677278161048889, 0.4082038998603821, 0.37367966771125793, -0.644248902797699, -0.6167759895324707, -0.3725145757198334, 0.4058138430118561, -0.2956610918045044, 1.3934358358383179, 0.013810308650135994, -0.1932498812675476, -0.3675045967102051, -0.019242363050580025, 0.01466619037091732, -0.39791497588157654, -0.31626036763191223, -0.08776555955410004, 0.40693292021751404, 0.18784649670124054, 0.7624122500419617, 0.5895377993583679, 0.44522565603256226, 0.3039756119251251, -0.01233632117509842, 0.2510707676410675, -0.3147256374359131, 0.2226560115814209, -0.4344179630279541, -0.5272290110588074, -0.11076272279024124, 0.3644009232521057, 0.6669725775718689, 0.5833708643913269, -0.12375480681657791, 0.20116469264030457, 0.28909650444984436, 0.6047750115394592, -0.2701554000377655, 0.148971825838089, -0.6544999480247498, -0.02133166790008545, -0.27009421586990356, 0.0326387844979763, -0.16200238466262817, -0.8076064586639404, 0.092928946018219, -0.7028719186782837, 0.3892284035682678, 0.09202450513839722, 1.1359208822250366, 0.1126788929104805, -0.24151940643787384, -0.5021142363548279, -0.02469976432621479, 1.1204696893692017, -0.565247654914856, -0.038511086255311966, 0.5411815047264099, -0.07291948050260544, -0.21855537593364716, -0.7048962116241455, -0.7303286194801331, 0.061161842197179794, -0.3506474196910858, 0.17091435194015503, -0.47822025418281555, -0.4495214819908142, 0.1607416272163391, 0.32844704389572144, -0.4045572280883789, -0.37660378217697144, -0.4500933587551117, -0.3102094829082489, 0.749942421913147, -0.048993054777383804, 0.2303394377231598, -0.791252851486206, -0.4607069492340088, -0.4177732765674591, -0.11219169944524765, 0.17254707217216492, 0.2526612877845764, 0.6660448312759399, -0.3599388599395752, 0.6121513843536377, -0.20995165407657623, 0.4631859064102173, -0.25240471959114075, -0.2157486230134964, 0.6763689517974854, -0.5029754638671875, -0.030295971781015396, -0.22342245280742645, 1.1363424062728882, 0.7042969465255737, 0.42387455701828003, -0.03807949274778366, 0.16190437972545624, -0.07351504266262054, 0.0701637715101242, -0.4808388352394104, -0.36493828892707825, 0.36737701296806335, -0.5170887112617493, -0.3881124258041382, 0.16692453622817993, -1.1116207838058472, -0.4299093186855316, -0.014661930501461029, 0.2788613736629486, -0.39460819959640503, -0.011684251949191093, -0.040644336491823196, -0.7950924634933472, -0.1896727979183197, 0.22755423188209534, -0.5712694525718689, 0.07060637325048447, 0.296159029006958, 0.8981375098228455, 0.07654233276844025, -0.42089468240737915, -0.3777227997779846, 0.0803886279463768, -0.11646036058664322, 0.7637389898300171, -0.45706361532211304, -0.04367462545633316, 0.2096407413482666, 0.29028183221817017, -0.0815851092338562, -0.5267311334609985, 0.8473069071769714, -0.1597093790769577, 0.31865477561950684, -0.6340574026107788, -0.2736589312553406, -0.05816814303398132, 0.29006701707839966, -0.7462841272354126, 1.0554308891296387, 0.1761603206396103, -1.0471028089523315, 0.15405766665935516, -0.5009739398956299, -0.6031559109687805, -0.1421952247619629, 0.15275314450263977, -0.5541343688964844, -0.11706870049238205, 0.30981653928756714, 0.893551766872406, -0.3437903821468353, -0.3275964856147766, -0.572597861289978, 0.13718564808368683, 0.5210170149803162, -0.06606656312942505, 0.908677875995636, 0.4013201892375946, 0.08575745671987534, -0.3585233688354492, -0.9668019413948059, 0.09590674936771393, 0.4995279610157013, -0.5319433212280273, -0.4497224986553192, 0.0521843358874321, 0.3964715003967285, 0.11518703401088715, 0.3402850329875946, -0.6387329697608948, 0.421465128660202, -0.28155484795570374, 0.5406017899513245, 0.8101750612258911, 0.30564334988594055, 0.25546184182167053, -0.5708826184272766, 0.35733985900878906, 0.009783041663467884, -0.09591630101203918, -0.11094356328248978, -0.2594277858734131, -0.4660789370536804, -0.397249698638916, 0.0012679917272180319, 0.45445847511291504, -0.8644832968711853, 0.5417032837867737, -0.18381859362125397, -0.5462568998336792, -0.5689235329627991, 0.3372681140899658, 0.23997615277767181, 0.4563003480434418, 0.6105641722679138, -0.0436420775949955, -0.5394066572189331, -0.7236696481704712, -0.39716511964797974, -0.20900221168994904, 0.027108196169137955, 0.2567128837108612, 0.5913085341453552, -0.18464508652687073, 0.9285791516304016, -0.7597187161445618, -0.5112212896347046, -0.3165329098701477, 0.047808606177568436, 0.4403614401817322, 0.6306149959564209, 0.5757815837860107, -0.6215273141860962, -0.7207633852958679, -0.15157514810562134, -0.9326754808425903, -0.10321397334337234, -0.34188181161880493, -0.5190683603286743, -0.02003798633813858, 0.08978888392448425, -0.7847424745559692, 0.16157016158103943, 0.1154177114367485, -0.1579090803861618, 0.3952428996562958, 0.08075759559869766, 0.07194482535123825, -1.377339482307434, -0.002192493760958314, 0.4080175459384918, -0.060546621680259705, -0.3546123802661896, -0.22119657695293427, -0.0808243602514267, 0.21857275068759918, -0.11237716674804688, 0.4252932071685791, -0.45709431171417236, 0.24035905301570892, 0.1976509541273117, 0.20399022102355957, 0.3946561813354492, 0.32086601853370667, -0.09651751071214676, 0.5469796657562256, 0.623626708984375, -0.5445353984832764, 0.462203711271286, 0.8720382452011108, -0.18122270703315735, 0.6831142902374268, -0.373635470867157, -0.10154466331005096, -0.08765629678964615, 0.42427191138267517, -0.96732497215271, -0.32307636737823486, 0.33210742473602295, -0.414700984954834, -0.06959695369005203, -0.03668913245201111, -0.4926590919494629, -0.5206213593482971, -0.634842574596405, -0.21987876296043396, 0.22530128061771393, -0.5180650949478149, 0.31723037362098694, 0.30352240800857544, -0.2368803322315216, -0.6638388633728027, -0.8683397769927979, 0.01488556433469057, -0.1604996770620346, -0.3578597605228424, 0.31866592168807983, -0.20925942063331604, -0.1774645894765854, -0.008700663223862648, -0.03251633420586586, -0.12194778770208359, -0.047957900911569595, 0.08429975062608719, 0.12929391860961914, 0.25198692083358765, 0.0899137556552887, 0.10812222957611084, 0.09480300545692444, 0.095413438975811, -0.016774695366621017, 0.563317596912384, -0.03559175133705139, 0.0944303572177887, -0.8042256832122803, 0.47812309861183167, 0.2350115329027176, -0.077926866710186, 0.8796179890632629, 0.673949658870697, -0.4165096879005432, -0.31874963641166687, -0.2252965122461319, 0.09312194585800171, -0.44719409942626953, 0.17994624376296997, -0.2576649487018585, -0.283812016248703, 0.5671142935752869, 0.23270314931869507, 0.19479897618293762, 0.6711311936378479, 0.39027857780456543, -0.5982791781425476, 0.6024535298347473, 0.27669835090637207, -0.3126242160797119, 0.46651291847229004, -0.45703017711639404, -0.003650194499641657, -0.5719082355499268, -0.2863564193248749, -0.7578561305999756, -0.21835476160049438, -0.5626092553138733, -0.22951048612594604, 0.1435491442680359, 0.4008600115776062, -0.14573536813259125, 0.5216875076293945, -0.8862915635108948, 0.3471725285053253, 0.6768271327018738, 0.29972440004348755, 0.16443653404712677, 0.3154228925704956, -0.02296949364244938, 0.02222318947315216, -0.3790220022201538, -0.5507509708404541, 1.0163064002990723, 0.24131400883197784, 0.9005401134490967, -0.052673909813165665, 0.6702667474746704, 0.5976755619049072, 0.04125647991895676, -0.4896095395088196, 0.5254871249198914, 0.038049761205911636, -0.6827815771102905, -0.0661277025938034, -0.4499415159225464, -1.000813364982605, 0.10794125497341156, -0.1703682839870453, -0.7163893580436707, 0.3098767101764679, -0.06635735183954239, -0.20465810596942902, 0.14771969616413116, -0.7125809192657471, 0.635278046131134, 0.06836777180433273, -0.4454103708267212, -0.020985253155231476, -0.8651312589645386, -0.11857688426971436, 0.040583644062280655, 0.32027900218963623, -0.22352269291877747, 0.07069708406925201, 1.056317687034607, -0.40684831142425537, 0.8572466969490051, -0.2343519926071167, 0.007249255198985338, 0.4902476966381073, -0.14151768386363983, 0.553041934967041, -0.09245359152555466, -0.40381985902786255, 0.20626814663410187, 0.21080821752548218, -0.4741390645503998, -0.1626225709915161, 0.5965859293937683, -0.8900103569030762, -0.04704016074538231, -0.7707151174545288, -0.32123804092407227, -0.21738015115261078, 0.3010927736759186, 0.32733064889907837, 0.25422707200050354, -0.15017856657505035, 0.38162222504615784, 0.19669994711875916, -0.3129669725894928, 0.7578518390655518, 0.07048334181308746, 0.01175894308835268, -0.753332793712616, 0.6967048645019531, 0.1841641217470169, 0.05227072909474373, 0.41767868399620056, 0.08099981397390366, -0.4156031608581543, -0.2522006332874298, -0.06676097214221954, 0.35608920454978943, -0.9002070426940918, -0.5482616424560547, -0.9055902361869812, -0.20927748084068298, -0.6832079291343689, -0.1544337123632431, -0.20566131174564362, -0.3661450147628784, -0.7450162172317505, -0.38140660524368286, 0.7412319183349609, 0.6093494296073914, -0.3883359432220459, 0.5665261745452881, -0.6824373006820679, 0.37207311391830444, -0.0709102600812912, 0.18928593397140503, 0.0053039006888866425, -0.22883713245391846, -0.453255295753479, 0.12076947093009949, -0.6111401319503784, -0.8782420754432678, 0.6899774074554443, 0.31755968928337097, 0.5436668992042542, 0.25223731994628906, 0.5077767372131348, 0.642526388168335, -0.39040422439575195, 0.9296666383743286, 0.44343116879463196, -0.8343763947486877, 0.5730922222137451, -0.29367145895957947, -0.20359402894973755, 0.6108052134513855, 0.6771607398986816, -0.5668962597846985, -0.24641254544258118, -0.4494900107383728, -0.7681683897972107, 0.9335870742797852, 0.4243188500404358, 0.3049490451812744, -0.22020426392555237, 0.4139384627342224, 0.20641829073429108, 0.3230600655078888, -1.1002185344696045, -0.5040802955627441, -0.5107635259628296, -0.49779465794563293, -0.117525115609169, 0.15226010978221893, -0.34365594387054443, -0.5687534213066101, 0.8365832567214966, -0.21784831583499908, 0.528289794921875, 0.384909451007843, -0.13671404123306274, -0.08386491984128952, 0.2570699453353882, -0.01984911970794201, 0.3558124005794525, -0.19337862730026245, 0.004998140502721071, -0.057545702904462814, -0.33773329854011536, -0.2196987271308899, 0.33864736557006836, 0.23652200400829315, -0.06826647371053696, 0.3899248242378235, 0.5373387336730957, -0.24503467977046967, -0.40141376852989197, 0.5096448659896851, 0.03416679427027702, -0.07994893193244934, -0.31257984042167664, 0.1713574379682541, -0.018832135945558548, 0.4920424520969391, 0.7855039834976196, 0.14123161137104034, 0.016225215047597885, -0.5690845847129822, 0.49364763498306274, 0.5998335480690002, 0.06469497829675674, -0.3485482931137085, 0.5715811848640442, -0.08905824273824692, -0.09621071815490723, 0.5160056352615356, 0.05503281205892563, -0.612654447555542, 0.3622518479824066, 0.6285756826400757, 0.6142672300338745, 0.18053869903087616, 0.525413990020752, 0.4322468936443329, 0.3309551179409027, 0.17646141350269318, 0.28129249811172485, -0.17753927409648895, -0.897129476070404, 0.0658746287226677, -1.090614914894104, -0.28273341059684753, 0.1393626481294632, -0.7898659110069275, 0.10939359664916992, -0.5400973558425903, -0.25329655408859253, 0.27542489767074585, 0.2407352179288864, -0.6190460324287415, 0.37425559759140015, -0.12227098643779755, 0.695213258266449, -1.005602240562439, 0.47190818190574646, 0.550094485282898, -0.8996238112449646, -0.5895594954490662, 0.17784972488880157, -0.14463908970355988, -0.7236574292182922, 0.17128711938858032, 0.2646566331386566, 0.461252897977829, 0.011144262738525867, -0.9970160722732544, -0.8044016361236572, 0.9168667793273926, 0.17327730357646942, -0.079258993268013, 0.007766355760395527, 0.1502671092748642, 0.503149151802063, -0.1637834906578064, 0.31356677412986755, 0.45943763852119446, 0.5287712812423706, 0.029336296021938324, -0.6227541565895081, 0.18666639924049377, -0.5729123950004578, -0.1792639195919037, -0.27797242999076843, -0.9004154801368713, 0.893374502658844, -0.027273721992969513, 0.06808553636074066, 0.25742241740226746, 0.705599308013916, 0.07214277237653732, 0.3537360727787018, 0.29226601123809814, 0.5625994801521301, 1.016379952430725, -0.18973219394683838, 1.1332472562789917, 0.14767523109912872, 0.738418698310852, 0.5980045199394226, -0.14367522299289703, 0.7529191970825195, 0.4066098630428314, -0.4661713242530823, 0.6135897040367126, 0.6586151719093323, -0.3640459477901459, 0.7373213171958923, -0.10309485346078873, -0.0655687153339386, 0.07658041268587112, -0.06235387548804283, -0.6009464859962463, 0.23364408314228058, 0.08703059703111649, -0.6082719564437866, -0.31027764081954956, 0.13877640664577484, 0.41900134086608887, 0.06537976861000061, -0.08962889760732651, 0.8108101487159729, 0.09973205626010895, -0.4826478064060211, 0.7437850832939148, -0.009927071630954742, 0.6251009702682495, -0.5566732883453369, 0.14673203229904175, -0.06879515200853348, 0.4116511344909668, -0.4567895531654358, -0.8590236902236938, 0.2507316470146179, 0.17421989142894745, -0.49917155504226685, -0.3890587389469147, 0.4581471383571625, -0.32509666681289673, -0.5473200678825378, 0.14112727344036102, 0.253924697637558, 0.3175947368144989, -0.024856526404619217, -0.975242555141449, 0.1467219889163971, 0.4566524028778076, -0.5711525678634644, 0.2886051833629608, 0.4451538622379303, 0.42115551233291626, 0.5188755989074707, 0.9467024207115173, -0.07378682494163513, -0.013886595144867897, -0.16112764179706573, 1.0621757507324219, -0.9151965379714966, -0.3905494213104248, -0.721809983253479, 0.6406248211860657, -0.5784716010093689, -0.4308166205883026, 1.000946044921875, 0.6580162048339844, 0.5885318517684937, 0.020337458699941635, 1.1661560535430908, -0.3380018174648285, 0.8971711993217468, -0.2595055103302002, 0.9180685877799988, -0.8053881525993347, -0.20655110478401184, -0.6590182185173035, -0.6979593634605408, -0.2540270686149597, 1.126424789428711, -0.164574533700943, 0.11910062283277512, 0.641998827457428, 0.6041390299797058, 0.09613265097141266, 0.13886654376983643, -0.27733269333839417, 0.5097447037696838, 0.4304177761077881, 0.14931468665599823, 0.4824652075767517, -0.6222984790802002, 0.4182388186454773, -0.5252286195755005, -0.20346365869045258, -0.032857395708560944, -0.9312785863876343, -0.8766224980354309, -0.7568503618240356, -0.49364379048347473, -0.7711441516876221, -0.2022867500782013, 1.0814096927642822, 0.3577360510826111, -0.8515095710754395, -0.1178584098815918, -0.03304549679160118, 0.19256740808486938, -0.24119485914707184, -0.35248759388923645, 0.5987467169761658, -0.29924526810646057, -0.827151358127594, 0.24412544071674347, -0.3055674135684967, -0.022926870733499527, 0.1966673731803894, 0.20792677998542786, -0.4540904760360718, 0.2414582520723343, 0.43174266815185547, 0.19986039400100708, -0.32093074917793274, -0.09814158827066422, -0.3598792850971222, -0.22776195406913757, 0.2688053548336029, -0.022194387391209602, -0.6348152160644531, 0.1695730984210968, 0.4415428042411804, 0.46420857310295105, 0.39739343523979187, 0.27754631638526917, 0.06622792780399323, -0.8472388982772827, -0.0911439061164856, 0.06806890666484833, 0.5045788288116455, 0.40126991271972656, -0.4391120672225952, 0.4243949055671692, 0.5898703932762146, -0.43683117628097534, -0.9705870151519775, -0.22521844506263733, -1.3154971599578857, -0.3303215205669403, 1.176222324371338, -0.17061860859394073, -0.24409811198711395, 0.09355311840772629, -0.23868560791015625, 0.3244134485721588, -0.8064984679222107, 0.5043265223503113, 0.7561318278312683, -0.08815344423055649, 0.11956487596035004, -0.26424139738082886, 0.47499170899391174, 0.20593412220478058, -0.8803989291191101, 0.24918879568576813, 0.5870007276535034, 0.4829297363758087, 0.4281161427497864, 0.44747093319892883, 0.14600063860416412, -0.20705753564834595, -0.055719733238220215, 0.2937822639942169, 0.07867329567670822, -0.13797609508037567, -0.022466320544481277, 0.5076069831848145, -0.6051511764526367, -0.32171928882598877 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
alzoubi36/privacy_qa
alzoubi36
2023-06-24T07:54:51Z
6,313
0
null
[ "region:us" ]
2023-06-24T07:54:51Z
2023-06-24T07:53:01.000Z
2023-06-24T07:53:01
--- dataset_info: features: - name: question dtype: string - name: text dtype: string - name: label dtype: int64 splits: - name: train num_bytes: 31955449 num_examples: 157420 - name: validation num_bytes: 5661628 num_examples: 27780 - name: test num_bytes: 13381983 num_examples: 62150 download_size: 17138117 dataset_size: 50999060 --- # Dataset for the PrivacyQA task in the [PrivacyGLUE](https://github.com/infsys-lab/privacy-glue) dataset
[ -0.11641814559698105, -0.2742037773132324, 0.2190900295972824, -0.010091623291373253, 0.3392028212547302, 0.36620277166366577, 0.3843225836753845, 0.06608742475509644, 0.2387768030166626, 0.6368581056594849, -0.9236060976982117, -0.8684670329093933, -0.3557513654232025, -0.4910203516483307, -0.5863865613937378, 1.113440752029419, 0.19833216071128845, -0.08303549885749817, -0.6367722749710083, 0.026618320494890213, -0.03391179442405701, -0.2659827768802643, 0.09648877382278442, -0.5313105583190918, 0.3895327150821686, 1.0869877338409424, 0.767163872718811, 0.3017696738243103, 0.45998668670654297, 0.040293022990226746, -0.13710346817970276, -0.03890842944383621, -0.7987169027328491, -0.09202040731906891, -0.2491576373577118, 0.12605758011341095, -0.5705490708351135, 0.2586212754249573, 0.5967035293579102, 0.6052213907241821, -0.4321761727333069, 1.0014477968215942, 0.2552875578403473, 0.4905175268650055, -0.9173587560653687, 0.11540279537439346, -0.05972922965884209, 0.18064677715301514, -0.4195602536201477, 0.26539546251296997, 0.21114365756511688, -0.4600946307182312, -0.026901299133896828, -0.6647347211837769, 0.2078142613172531, 0.19299492239952087, 0.8633095026016235, 0.33604830503463745, -0.6002918481826782, -0.010341616347432137, -0.1085023283958435, 0.405177503824234, -0.2981509268283844, 0.6529866456985474, 0.9549192190170288, 0.3403202295303345, -0.3964727520942688, -1.0671703815460205, -0.008328570052981377, -0.12095378339290619, 0.04580855369567871, -0.14441116154193878, 0.06148667261004448, -0.027831077575683594, 0.6660206913948059, 0.6992849111557007, -0.9938210248947144, -0.4172723889350891, -0.7013789415359497, -0.6348674893379211, 0.6395739316940308, 0.34017080068588257, 0.18227319419384003, 0.06490663439035416, -0.15503326058387756, 0.05237414315342903, -0.726938784122467, 0.14830879867076874, 0.12213362753391266, 0.10339200496673584, -0.3510877192020416, 0.6493270993232727, -0.6395602226257324, 0.5354727506637573, 0.26435020565986633, 0.025104235857725143, 0.7345954179763794, -0.3914642930030823, -0.4172419607639313, 0.31540828943252563, 0.33043769001960754, 0.1599791795015335, -0.11429436504840851, -0.14567479491233826, 0.1254417598247528, 0.029702818021178246, 0.1951407492160797, -1.0863075256347656, -1.0788675546646118, 0.557946503162384, -0.11179566383361816, -0.06989651918411255, 0.31135162711143494, -0.4307379722595215, -0.6198922395706177, -0.15950855612754822, 0.3850384056568146, 0.20034822821617126, 0.01898564025759697, 0.32283464074134827, -0.30589231848716736, -0.06607571989297867, -0.1663152575492859, -0.9092129468917847, 0.6226729154586792, 0.8330373764038086, 0.6818864941596985, 0.18959248065948486, -0.23961587250232697, -1.0035440921783447, 0.30712050199508667, -0.16544847190380096, 0.5057218670845032, -0.5442056059837341, -0.4171900749206543, -0.1788996160030365, 0.37138330936431885, 0.050275880843400955, -0.37736520171165466, 0.40856391191482544, -0.3398633599281311, 0.31243187189102173, -0.5505591630935669, -0.8835175633430481, -0.344762921333313, 0.11341516673564911, -1.0774097442626953, 1.4326409101486206, 0.40559062361717224, -0.46919506788253784, 0.3885093331336975, -1.086621642112732, -0.28238731622695923, 0.46212854981422424, -0.04791242629289627, -0.5371661186218262, -0.35298657417297363, 0.005938970949500799, 0.42867812514305115, -0.08178285509347916, 0.18339984118938446, -0.6887868642807007, -0.563441276550293, 0.35700079798698425, 0.38993626832962036, 1.2625291347503662, 0.07182075828313828, -0.18383900821208954, 0.16303180158138275, -0.4846661686897278, 0.06965381652116776, -0.19095681607723236, 0.05308054760098457, -0.1449124664068222, -0.6936424970626831, -0.04321197792887688, -0.0320163369178772, 0.7097830176353455, -0.8967825174331665, 0.1820426732301712, 0.09022796154022217, 0.18462036550045013, 0.5498248934745789, 0.20875120162963867, 0.6766678690910339, -0.20435209572315216, 0.5694311261177063, -0.3500523865222931, 0.7484192848205566, 0.5732229351997375, -0.6968499422073364, -0.24399176239967346, -0.21036633849143982, 0.6312268972396851, 0.7444035410881042, -0.45881062746047974, 0.23289623856544495, 0.16298647224903107, -0.8268253207206726, -0.3466760516166687, 0.27654537558555603, 0.6757776737213135, 0.29032987356185913, -0.02240655943751335, -0.25234752893447876, -0.3414632976055145, -0.8715696334838867, 0.03414994478225708, 0.26516738533973694, -0.20310120284557343, 0.05963393300771713, 0.9960552453994751, -0.34453290700912476, 0.839002788066864, -0.8527315855026245, -0.3634493947029114, 0.642066478729248, -0.17273926734924316, 0.6147770285606384, 0.7552164793014526, 0.675818920135498, -1.0207693576812744, -0.380122572183609, -0.5458604693412781, -0.7649411559104919, -0.16997304558753967, 0.5833097100257874, -0.6589018106460571, -0.2380692958831787, 0.2804875373840332, -0.5081831812858582, 0.71236252784729, 1.2741081714630127, -0.9975713491439819, 0.343845933675766, 0.4755852222442627, 0.3228217661380768, -0.9237388372421265, 0.2010805606842041, -0.10741336643695831, -0.5858303904533386, -0.7446070909500122, 0.01151778269559145, 0.27004486322402954, -0.3705384135246277, -0.7529751062393188, 0.5554962158203125, -0.5099482536315918, -0.13173680007457733, 0.07892711460590363, -0.3809387683868408, -0.0042789774015545845, 0.3858422636985779, -0.4907761514186859, 1.20549476146698, 0.9720155596733093, -0.08683544397354126, 0.6638646721839905, 0.881033718585968, -0.34255868196487427, -0.04482165351510048, -0.5548223257064819, 0.5244048833847046, 0.11091940104961395, 0.2596539556980133, -0.8600269556045532, -0.9857368469238281, 0.8936559557914734, -0.3675861358642578, -0.2979685664176941, -0.2915806174278259, -0.8809545636177063, -0.3192511200904846, -0.8203405141830444, 0.6495926976203918, 0.592164933681488, -0.5328715443611145, 0.29396334290504456, 0.9793926477432251, 0.05014754459261894, -0.7130194902420044, -0.8723894357681274, 0.006168179214000702, -0.5341936945915222, -0.19738532602787018, 0.3369075357913971, -0.2813960015773773, -0.19659416377544403, 0.193158358335495, 0.12290892750024796, -0.2964371144771576, -0.06149632856249809, 0.9622634649276733, 0.30511677265167236, 0.057599134743213654, 0.26651230454444885, 0.030673792585730553, -0.32511383295059204, 0.1700429618358612, -0.34396013617515564, 0.26508209109306335, -0.43682175874710083, -0.23452875018119812, -0.16711969673633575, 0.40552130341529846, 0.13471856713294983, 0.19467371702194214, 0.6081409454345703, 0.5458916425704956, -0.7861276268959045, -0.16666153073310852, -0.4258970320224762, -0.23359999060630798, -0.5202593803405762, -0.12190185487270355, -0.20089109241962433, -1.5843604803085327, 0.5057277679443359, -0.010591860860586166, -0.06361277401447296, 0.24602589011192322, 0.6269885301589966, 0.07272215187549591, 0.373704731464386, 0.6722427010536194, -0.532341480255127, 0.22076019644737244, -0.22973501682281494, 0.06920444220304489, -0.8155533671379089, -0.15888284146785736, -0.10146892070770264, 0.016897261142730713, -0.6632739305496216, -0.5222155451774597, 0.5487944483757019, 0.03062424063682556, -0.5352311134338379, 0.759773313999176, -0.6167928576469421, 0.6864277124404907, 0.932451605796814, 0.5961435437202454, 0.07893091440200806, -0.08419997990131378, 0.6083790063858032, 0.08292020112276077, -0.7044094204902649, -0.42519575357437134, 1.2434635162353516, 0.3008958697319031, 0.6048182845115662, 0.2366572916507721, 0.9682243466377258, 0.4243655204772949, 0.09740318357944489, -0.20992827415466309, 0.7923418879508972, -0.31961923837661743, -0.7917125225067139, -0.5302919149398804, -0.22793130576610565, -1.013312578201294, -0.31589993834495544, 0.058158598840236664, -1.1153167486190796, 0.25800544023513794, 0.30935612320899963, -0.4456692636013031, -0.06663379818201065, -0.2835444509983063, 1.258601427078247, 0.46342214941978455, -0.2520020604133606, -0.1706547737121582, -0.7079326510429382, 0.4701334536075592, -0.13137736916542053, -0.27265676856040955, -0.41948938369750977, -0.061683665961027145, 0.9541221857070923, -0.20393884181976318, 0.9180652499198914, -0.19041259586811066, -0.19532497227191925, 0.2862105071544647, -0.09119515120983124, 0.16151747107505798, 0.5280938148498535, 0.016224030405282974, 0.19173036515712738, -0.0028608590364456177, -0.5186030268669128, -0.14095790684223175, 0.5879272222518921, -0.0005774021265096962, 0.1824364811182022, -0.6431547403335571, -0.812606692314148, -0.14267805218696594, 0.002553106751292944, 0.15877020359039307, 0.8015450239181519, -0.3249441087245941, 0.035198111087083817, 1.0903363227844238, 0.17783015966415405, 0.1523926556110382, 0.22584299743175507, -0.4189968705177307, 0.030861902981996536, 0.942675769329071, 0.2912690043449402, -0.18298271298408508, 0.18503861129283905, 0.00621071457862854, -0.4735473692417145, -0.2345890998840332, -0.28461775183677673, 0.15408924221992493, -0.8233766555786133, -0.3292746841907501, -0.24803988635540009, -0.4532676637172699, -0.48388609290122986, 0.01848878338932991, -0.04576878622174263, -0.6735652685165405, -0.6468424797058105, -0.4657130241394043, 0.9640972018241882, 0.5034114122390747, -0.48948103189468384, -0.02046869322657585, -0.9934571981430054, 0.6492014527320862, 0.3576485216617584, 0.6437003016471863, -0.7949212193489075, -0.25394535064697266, -0.5375010371208191, 0.017238616943359375, -0.15414480865001678, -0.6263680458068848, 0.04218984395265579, 0.33083274960517883, 0.5898312926292419, -0.10438136756420135, -0.043399032205343246, 0.21098856627941132, -0.20389215648174286, 1.0521434545516968, -0.16273127496242523, -0.8476507067680359, 0.4882175326347351, -0.7972468137741089, 0.4836546778678894, 0.9329330325126648, 0.5598301887512207, -0.2845073342323303, -0.46166151762008667, -1.0739332437515259, -0.8256453275680542, 0.2272600680589676, 0.48633235692977905, -0.10600445419549942, 0.31336140632629395, 0.21833133697509766, 0.1928938329219818, 0.5765873193740845, -0.41728609800338745, -0.41267848014831543, 0.15342463552951813, -0.32449254393577576, 0.1972498595714569, -0.3587159514427185, -0.6754177808761597, -0.23958821594715118, 0.6963889002799988, -0.18572893738746643, 0.2706485688686371, -0.30736619234085083, 0.036628760397434235, 0.03729211539030075, -0.19345387816429138, 0.08044548332691193, 0.8807756304740906, -0.5024835467338562, -0.25772303342819214, 0.25175341963768005, -0.6388171911239624, -0.02140752412378788, 0.4384019374847412, 0.08247732371091843, -0.11084412038326263, 0.330425500869751, 0.30859532952308655, -0.02896001562476158, -0.6700516939163208, 0.59210205078125, 0.05608183145523071, -0.5661040544509888, -0.6704651713371277, 0.4675406813621521, 0.14708957076072693, 0.6103702783584595, 0.20827889442443848, -0.4887181222438812, 1.2208454608917236, -0.31975889205932617, 0.7359894514083862, 0.017281193286180496, -0.5550712943077087, -0.15017388761043549, 0.767116367816925, -0.03826922923326492, -0.34840908646583557, 0.9514244198799133, -0.39253345131874084, -0.34577494859695435, 0.5802733302116394, -0.03396287187933922, 0.937103271484375, -0.13092884421348572, 0.45934343338012695, 0.1773318350315094, -0.00643360149115324, -0.1038777083158493, 1.1597919464111328, -0.2134334146976471, -0.6084710359573364, -0.3700617253780365, -0.06101381033658981, -0.7688242793083191, -0.09636713564395905, -0.9084140062332153, -0.37943655252456665, -0.31431955099105835, -0.23511414229869843, -0.2329815924167633, -0.06649736315011978, -0.4368975758552551, 0.26125937700271606, 0.2650197148323059, 1.164107322692871, -0.9127336740493774, 0.807787299156189, 0.7677526473999023, 0.11669716984033585, -0.6354405283927917, -0.06354175508022308, 0.5806096792221069, -0.49288272857666016, 0.3454177677631378, 0.18748874962329865, -0.1395048201084137, -0.4977149963378906, -1.0779913663864136, -1.207431435585022, 1.2672382593154907, 0.4860473573207855, -0.6800127029418945, 0.414106547832489, 0.25028786063194275, 0.2563764452934265, -0.041902147233486176, -0.6324580907821655, 0.8791862726211548, 0.5994843244552612, -0.4109129309654236, -1.1295801401138306, 0.32552891969680786, -0.7175610661506653, -0.45520514249801636, 0.4907219409942627, -0.5714238882064819, 0.7292988896369934, 0.17794665694236755, -0.0824555829167366, 0.02833450213074684, 0.960845947265625, 0.5036678910255432, 0.4031476080417633, 0.546549916267395, 0.7353231310844421, 0.9314616322517395, -0.2511349320411682, 0.678648829460144, 0.04991387575864792, 0.8749732971191406, 1.600385308265686, -0.16792932152748108, 0.09545662254095078, 0.3107469081878662, 0.02818543091416359, 0.2483196258544922, 0.6676605343818665, -0.4555147588253021, 0.8800153732299805, 0.22696232795715332, -0.30564117431640625, -0.07175196707248688, -0.3956526815891266, -0.2907717823982239, 0.3637159764766693, 0.5218515396118164, 0.16661646962165833, -0.0937901958823204, 0.02441496215760708, -0.033818963915109634, -0.37627461552619934, -0.37870585918426514, 0.7292078733444214, 0.10335264354944229, -0.12005206197500229, 0.12906590104103088, -0.6062641143798828, 0.1816786825656891, -0.35077786445617676, -0.4174123704433441, 0.3821331560611725, 0.007260774727910757, -0.4212544858455658, -1.6718425750732422, 0.47318464517593384, -0.36410531401634216, 0.17087487876415253, -0.12566177546977997, 0.7952936291694641, -0.6971117258071899, -0.2656257748603821, 0.22672481834888458, 0.11863825470209122, 0.18159329891204834, -0.05390632152557373, -1.0405515432357788, -0.17054536938667297, 0.0116033423691988, -0.5262519717216492, 0.393017053604126, 0.025905167683959007, -0.09826161712408066, 0.7796264886856079, 0.30091962218284607, -0.492297887802124, -0.15234625339508057, 0.2833041548728943, 1.1408274173736572, -0.5907511711120605, -0.6048025488853455, -0.3753979802131653, 0.9220039248466492, -0.4215475618839264, -0.8540260195732117, 1.02120041847229, 0.9825410842895508, 0.6701480150222778, -0.1545497477054596, 0.6744755506515503, -0.2383219301700592, 0.6669267416000366, -0.6960028409957886, 0.43780508637428284, -0.3467293679714203, -0.4646061360836029, -0.20015743374824524, -0.6318132281303406, -0.4427489638328552, 0.33806315064430237, 0.2572780251502991, -0.3244752287864685, 0.6304758787155151, 1.4279500246047974, -0.42376333475112915, 0.29155799746513367, -0.05332322046160698, 0.10330207645893097, 0.0870649591088295, 0.614290714263916, 0.6729575395584106, -0.6194745302200317, 0.09132306277751923, -0.4859037399291992, -0.4487495422363281, 0.17028851807117462, -0.9257146120071411, -1.128401517868042, -0.7715503573417664, -0.6624911427497864, -0.638232409954071, 0.2620144486427307, 0.87992924451828, 0.9996436834335327, -1.1155859231948853, -0.3818502426147461, 0.2421354055404663, -0.242840975522995, -0.3846208453178406, -0.11559860408306122, 0.5878380537033081, 0.2904132902622223, -0.5136226415634155, 0.5460334420204163, 0.015273173339664936, -0.04141253978013992, 0.0753476619720459, 0.1884302943944931, -0.1722630262374878, -0.3119729161262512, 0.22090962529182434, 0.24599476158618927, -0.14231260120868683, -0.23354320228099823, -0.3860206604003906, -0.05080002546310425, -0.13950440287590027, 0.7425667643547058, -0.47958260774612427, 0.07014402747154236, 0.6540947556495667, 0.4006726145744324, 0.7804902195930481, 0.08609769493341446, 0.4419613778591156, -0.8603397607803345, 0.2415725290775299, 0.10754980891942978, 0.4549017548561096, 0.2048887312412262, -0.87505042552948, 1.221359133720398, -0.3015618324279785, -0.9250770807266235, -0.7259687185287476, 0.08512377738952637, -1.3505189418792725, -0.13752761483192444, 0.9118779897689819, -0.10959672927856445, -0.5022784471511841, -0.35770970582962036, -0.22115306556224823, 0.27114731073379517, -0.9728724360466003, 0.7100340127944946, 0.5248818397521973, -0.01754002645611763, -0.2329382598400116, -0.48045414686203003, 0.8066517114639282, 0.05172641947865486, -0.9172027707099915, 0.06863639503717422, 0.5509393811225891, 0.3196200728416443, 0.05312953144311905, 0.7639477849006653, -0.09567712247371674, 0.6700782179832458, 0.05393456667661667, -0.2474551945924759, -0.235147625207901, -0.5573889017105103, -0.22982898354530334, 0.19552567601203918, -0.47855958342552185, -0.6083455085754395 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
inria-soda/tabular-benchmark
inria-soda
2023-09-04T16:37:39Z
6,291
15
null
[ "task_categories:tabular-classification", "task_categories:tabular-regression", "region:us" ]
2023-09-04T16:37:39Z
2022-10-27T12:34:58.000Z
2022-10-27T12:34:58
--- annotations_creators: [] license: [] pretty_name: tabular_benchmark tags: [] task_categories: - tabular-classification - tabular-regression configs: - config_name: clf_cat_albert data_files: clf_cat/albert.csv - config_name: clf_cat_compas-two-years data_files: clf_cat/compas-two-years.csv - config_name: clf_cat_covertype data_files: clf_cat/covertype.csv - config_name: clf_cat_default-of-credit-card-clients data_files: clf_cat/default-of-credit-card-clients.csv - config_name: clf_cat_electricity data_files: clf_cat/electricity.csv - config_name: clf_cat_eye_movements data_files: clf_cat/eye_movements.csv - config_name: clf_cat_road-safety data_files: clf_cat/road-safety.csv - config_name: clf_num_Bioresponse data_files: clf_num/Bioresponse.csv - config_name: clf_num_Diabetes130US data_files: clf_num/Diabetes130US.csv - config_name: clf_num_Higgs data_files: clf_num/Higgs.csv - config_name: clf_num_MagicTelescope data_files: clf_num/MagicTelescope.csv - config_name: clf_num_MiniBooNE data_files: clf_num/MiniBooNE.csv - config_name: clf_num_bank-marketing data_files: clf_num/bank-marketing.csv - config_name: clf_num_california data_files: clf_num/california.csv - config_name: clf_num_covertype data_files: clf_num/covertype.csv - config_name: clf_num_credit data_files: clf_num/credit.csv - config_name: clf_num_default-of-credit-card-clients data_files: clf_num/default-of-credit-card-clients.csv - config_name: clf_num_electricity data_files: clf_num/electricity.csv - config_name: clf_num_eye_movements data_files: clf_num/eye_movements.csv - config_name: clf_num_heloc data_files: clf_num/heloc.csv - config_name: clf_num_house_16H data_files: clf_num/house_16H.csv - config_name: clf_num_jannis data_files: clf_num/jannis.csv - config_name: clf_num_pol data_files: clf_num/pol.csv - config_name: reg_cat_Airlines_DepDelay_1M data_files: reg_cat/Airlines_DepDelay_1M.csv - config_name: reg_cat_Allstate_Claims_Severity data_files: reg_cat/Allstate_Claims_Severity.csv - config_name: reg_cat_Bike_Sharing_Demand data_files: reg_cat/Bike_Sharing_Demand.csv - config_name: reg_cat_Brazilian_houses data_files: reg_cat/Brazilian_houses.csv - config_name: reg_cat_Mercedes_Benz_Greener_Manufacturing data_files: reg_cat/Mercedes_Benz_Greener_Manufacturing.csv - config_name: reg_cat_SGEMM_GPU_kernel_performance data_files: reg_cat/SGEMM_GPU_kernel_performance.csv - config_name: reg_cat_abalone data_files: reg_cat/abalone.csv - config_name: reg_cat_analcatdata_supreme data_files: reg_cat/analcatdata_supreme.csv - config_name: reg_cat_delays_zurich_transport data_files: reg_cat/delays_zurich_transport.csv - config_name: reg_cat_diamonds data_files: reg_cat/diamonds.csv - config_name: reg_cat_house_sales data_files: reg_cat/house_sales.csv - config_name: reg_cat_medical_charges data_files: reg_cat/medical_charges.csv - config_name: reg_cat_nyc-taxi-green-dec-2016 data_files: reg_cat/nyc-taxi-green-dec-2016.csv - config_name: reg_cat_particulate-matter-ukair-2017 data_files: reg_cat/particulate-matter-ukair-2017.csv - config_name: reg_cat_seattlecrime6 data_files: reg_cat/seattlecrime6.csv - config_name: reg_cat_topo_2_1 data_files: reg_cat/topo_2_1.csv - config_name: reg_cat_visualizing_soil data_files: reg_cat/visualizing_soil.csv - config_name: reg_num_Ailerons data_files: reg_num/Ailerons.csv - config_name: reg_num_Bike_Sharing_Demand data_files: reg_num/Bike_Sharing_Demand.csv - config_name: reg_num_Brazilian_houses data_files: reg_num/Brazilian_houses.csv - config_name: reg_num_MiamiHousing2016 data_files: reg_num/MiamiHousing2016.csv - config_name: reg_num_abalone data_files: reg_num/abalone.csv - config_name: reg_num_cpu_act data_files: reg_num/cpu_act.csv - config_name: reg_num_delays_zurich_transport data_files: reg_num/delays_zurich_transport.csv - config_name: reg_num_diamonds data_files: reg_num/diamonds.csv - config_name: reg_num_elevators data_files: reg_num/elevators.csv - config_name: reg_num_house_16H data_files: reg_num/house_16H.csv - config_name: reg_num_house_sales data_files: reg_num/house_sales.csv - config_name: reg_num_houses data_files: reg_num/houses.csv - config_name: reg_num_medical_charges data_files: reg_num/medical_charges.csv - config_name: reg_num_nyc-taxi-green-dec-2016 data_files: reg_num/nyc-taxi-green-dec-2016.csv - config_name: reg_num_pol data_files: reg_num/pol.csv - config_name: reg_num_sulfur data_files: reg_num/sulfur.csv - config_name: reg_num_superconduct data_files: reg_num/superconduct.csv - config_name: reg_num_wine_quality data_files: reg_num/wine_quality.csv - config_name: reg_num_yprop_4_1 data_files: reg_num/yprop_4_1.csv --- # Tabular Benchmark ## Dataset Description This dataset is a curation of various datasets from [openML](https://www.openml.org/) and is curated to benchmark performance of various machine learning algorithms. - **Repository:** https://github.com/LeoGrin/tabular-benchmark/community - **Paper:** https://hal.archives-ouvertes.fr/hal-03723551v2/document ### Dataset Summary Benchmark made of curation of various tabular data learning tasks, including: - Regression from Numerical and Categorical Features - Regression from Numerical Features - Classification from Numerical and Categorical Features - Classification from Numerical Features ### Supported Tasks and Leaderboards - `tabular-regression` - `tabular-classification` ## Dataset Structure ### Data Splits This dataset consists of four splits (folders) based on tasks and datasets included in tasks. - reg_num: Task identifier for regression on numerical features. - reg_cat: Task identifier for regression on numerical and categorical features. - clf_num: Task identifier for classification on numerical features. - clf_cat: Task identifier for classification on categorical features. Depending on the dataset you want to load, you can load the dataset by passing `task_name/dataset_name` to `data_files` argument of `load_dataset` like below: ```python from datasets import load_dataset dataset = load_dataset("inria-soda/tabular-benchmark", data_files="reg_cat/house_sales.csv") ``` ## Dataset Creation ### Curation Rationale This dataset is curated to benchmark performance of tree based models against neural networks. The process of picking the datasets for curation is mentioned in the paper as below: - **Heterogeneous columns**. Columns should correspond to features of different nature. This excludes images or signal datasets where each column corresponds to the same signal on different sensors. - **Not high dimensional**. We only keep datasets with a d/n ratio below 1/10. - **Undocumented datasets** We remove datasets where too little information is available. We did keep datasets with hidden column names if it was clear that the features were heterogeneous. - **I.I.D. data**. We remove stream-like datasets or time series. - **Real-world data**. We remove artificial datasets but keep some simulated datasets. The difference is subtle, but we try to keep simulated datasets if learning these datasets are of practical importance (like the Higgs dataset), and not just a toy example to test specific model capabilities. - **Not too small**. We remove datasets with too few features (< 4) and too few samples (< 3 000). For benchmarks on numerical features only, we remove categorical features before checking if enough features and samples are remaining. - **Not too easy**. We remove datasets which are too easy. Specifically, we remove a dataset if a simple model (max of a single tree and a regression, logistic or OLS) reaches a score whose relative difference with the score of both a default Resnet (from Gorishniy et al. [2021]) and a default HistGradientBoosting model (from scikit learn) is below 5%. Other benchmarks use different metrics to remove too easy datasets, like removing datasets perfectly separated by a single decision classifier [Bischl et al., 2021], but this ignores varying Bayes rate across datasets. As tree ensembles are superior to simple trees and logistic regresison [Fernández-Delgado et al., 2014], a close score for the simple and powerful models suggests that we are already close to the best achievable score. - **Not deterministic**. We remove datasets where the target is a deterministic function of the data. This mostly means removing datasets on games like poker and chess. Indeed, we believe that these datasets are very different from most real-world tabular datasets, and should be studied separately ### Source Data **Numerical Classification** |dataset_name|n_samples|n_features|original_link|new_link| |---|---|---|---|---| |electricity|38474.0|7.0|https://www.openml.org/d/151|https://www.openml.org/d/44120| |covertype|566602.0|10.0|https://www.openml.org/d/293|https://www.openml.org/d/44121| |pol|10082.0|26.0|https://www.openml.org/d/722|https://www.openml.org/d/44122| |house_16H|13488.0|16.0|https://www.openml.org/d/821|https://www.openml.org/d/44123| |MagicTelescope|13376.0|10.0|https://www.openml.org/d/1120|https://www.openml.org/d/44125| |bank-marketing|10578.0|7.0|https://www.openml.org/d/1461|https://www.openml.org/d/44126| |Bioresponse|3434.0|419.0|https://www.openml.org/d/4134|https://www.openml.org/d/45019| |MiniBooNE|72998.0|50.0|https://www.openml.org/d/41150|https://www.openml.org/d/44128| |default-of-credit-card-clients|13272.0|20.0|https://www.openml.org/d/42477|https://www.openml.org/d/45020| |Higgs|940160.0|24.0|https://www.openml.org/d/42769|https://www.openml.org/d/44129| |eye_movements|7608.0|20.0|https://www.openml.org/d/1044|https://www.openml.org/d/44130| |Diabetes130US|71090.0|7.0|https://www.openml.org/d/4541|https://www.openml.org/d/45022| |jannis|57580.0|54.0|https://www.openml.org/d/41168|https://www.openml.org/d/45021| |heloc|10000.0|22.0|"https://www.kaggle.com/datasets/averkiyoliabev/home-equity-line-of-creditheloc?select=heloc_dataset_v1+%281%29.csv"|https://www.openml.org/d/45026| |credit|16714.0|10.0|"https://www.kaggle.com/c/GiveMeSomeCredit/data?select=cs-training.csv"|https://www.openml.org/d/44089| |california|20634.0|8.0|"https://www.dcc.fc.up.pt/ltorgo/Regression/cal_housing.html"|https://www.openml.org/d/45028| **Categorical Classification** |dataset_name|n_samples|n_features|original_link|new_link| |---|---|---|---|---| |electricity|38474.0|8.0|https://www.openml.org/d/151|https://www.openml.org/d/44156| |eye_movements|7608.0|23.0|https://www.openml.org/d/1044|https://www.openml.org/d/44157| |covertype|423680.0|54.0|https://www.openml.org/d/1596|https://www.openml.org/d/44159| |albert|58252.0|31.0|https://www.openml.org/d/41147|https://www.openml.org/d/45035| |compas-two-years|4966.0|11.0|https://www.openml.org/d/42192|https://www.openml.org/d/45039| |default-of-credit-card-clients|13272.0|21.0|https://www.openml.org/d/42477|https://www.openml.org/d/45036| |road-safety|111762.0|32.0|https://www.openml.org/d/42803|https://www.openml.org/d/45038| **Numerical Regression** |dataset_name|n_samples|n_features|original_link|new_link| |---|---|---|---|---| |cpu_act|8192.0|21.0|https://www.openml.org/d/197|https://www.openml.org/d/44132| |pol|15000.0|26.0|https://www.openml.org/d/201|https://www.openml.org/d/44133| |elevators|16599.0|16.0|https://www.openml.org/d/216|https://www.openml.org/d/44134| |wine_quality|6497.0|11.0|https://www.openml.org/d/287|https://www.openml.org/d/44136| |Ailerons|13750.0|33.0|https://www.openml.org/d/296|https://www.openml.org/d/44137| |yprop_4_1|8885.0|42.0|https://www.openml.org/d/416|https://www.openml.org/d/45032| |houses|20640.0|8.0|https://www.openml.org/d/537|https://www.openml.org/d/44138| |house_16H|22784.0|16.0|https://www.openml.org/d/574|https://www.openml.org/d/44139| |delays_zurich_transport|5465575.0|9.0|https://www.openml.org/d/40753|https://www.openml.org/d/45034| |diamonds|53940.0|6.0|https://www.openml.org/d/42225|https://www.openml.org/d/44140| |Brazilian_houses|10692.0|8.0|https://www.openml.org/d/42688|https://www.openml.org/d/44141| |Bike_Sharing_Demand|17379.0|6.0|https://www.openml.org/d/42712|https://www.openml.org/d/44142| |nyc-taxi-green-dec-2016|581835.0|9.0|https://www.openml.org/d/42729|https://www.openml.org/d/44143| |house_sales|21613.0|15.0|https://www.openml.org/d/42731|https://www.openml.org/d/44144| |sulfur|10081.0|6.0|https://www.openml.org/d/23515|https://www.openml.org/d/44145| |medical_charges|163065.0|5.0|https://www.openml.org/d/42720|https://www.openml.org/d/44146| |MiamiHousing2016|13932.0|14.0|https://www.openml.org/d/43093|https://www.openml.org/d/44147| |superconduct|21263.0|79.0|https://www.openml.org/d/43174|https://www.openml.org/d/44148| **Categorical Regression** |dataset_name|n_samples|n_features|original_link|new_link| |---|---|---|---|---| |topo_2_1|8885.0|255.0|https://www.openml.org/d/422|https://www.openml.org/d/45041| |analcatdata_supreme|4052.0|7.0|https://www.openml.org/d/504|https://www.openml.org/d/44055| |visualizing_soil|8641.0|4.0|https://www.openml.org/d/688|https://www.openml.org/d/44056| |delays_zurich_transport|5465575.0|12.0|https://www.openml.org/d/40753|https://www.openml.org/d/45045| |diamonds|53940.0|9.0|https://www.openml.org/d/42225|https://www.openml.org/d/44059| |Allstate_Claims_Severity|188318.0|124.0|https://www.openml.org/d/42571|https://www.openml.org/d/45046| |Mercedes_Benz_Greener_Manufacturing|4209.0|359.0|https://www.openml.org/d/42570|https://www.openml.org/d/44061| |Brazilian_houses|10692.0|11.0|https://www.openml.org/d/42688|https://www.openml.org/d/44062| |Bike_Sharing_Demand|17379.0|11.0|https://www.openml.org/d/42712|https://www.openml.org/d/44063| |Airlines_DepDelay_1M|1000000.0|5.0|https://www.openml.org/d/42721|https://www.openml.org/d/45047| |nyc-taxi-green-dec-2016|581835.0|16.0|https://www.openml.org/d/42729|https://www.openml.org/d/44065| |abalone|4177.0|8.0|https://www.openml.org/d/42726|https://www.openml.org/d/45042| |house_sales|21613.0|17.0|https://www.openml.org/d/42731|https://www.openml.org/d/44066| |seattlecrime6|52031.0|4.0|https://www.openml.org/d/42496|https://www.openml.org/d/45043| |medical_charges|163065.0|5.0|https://www.openml.org/d/42720|https://www.openml.org/d/45048| |particulate-matter-ukair-2017|394299.0|6.0|https://www.openml.org/d/42207|https://www.openml.org/d/44068| |SGEMM_GPU_kernel_performance|241600.0|9.0|https://www.openml.org/d/43144|https://www.openml.org/d/44069| ### Dataset Curators Léo Grinsztajn, Edouard Oyallon, Gaël Varoquaux. ### Licensing Information [More Information Needed] ### Citation Information Léo Grinsztajn, Edouard Oyallon, Gaël Varoquaux. Why do tree-based models still outperform deep learning on typical tabular data?. NeurIPS 2022 Datasets and Benchmarks Track, Nov 2022, New Orleans, United States. ffhal-03723551v2f
[ -0.7161355018615723, -0.7459227442741394, 0.37010693550109863, 0.12378836423158646, -0.09184505045413971, -0.11244840919971466, -0.15712511539459229, -0.4005162715911865, 0.25057223439216614, 0.4272514581680298, -0.22500450909137726, -0.9872738718986511, -0.44923511147499084, 0.10095201432704926, -0.06784986704587936, 0.6979408264160156, -0.06910114735364914, 0.07878059148788452, -0.191255584359169, -0.24760594964027405, -0.14563295245170593, -0.1781594455242157, -0.47507065534591675, -0.3168319761753082, 0.13940168917179108, 0.14764055609703064, 0.6110960245132446, 0.9408609867095947, 0.8075183033943176, 0.33733034133911133, -0.06818827241659164, 0.15580207109451294, -0.23105674982070923, -0.4520052671432495, 0.09393204748630524, -0.44556134939193726, -0.701053261756897, 0.1969696283340454, 0.5642774105072021, 0.6217634677886963, -0.32315728068351746, 0.4773331880569458, -0.10611370205879211, 0.9893544316291809, -0.46644487977027893, 0.4893561899662018, -0.26732075214385986, 0.06570522487163544, -0.08351185917854309, -0.10696382820606232, -0.13135308027267456, -0.7365842461585999, 0.007733057253062725, -0.8362579345703125, 0.45978567004203796, 0.13076402246952057, 1.2066361904144287, 0.28555354475975037, -0.21501585841178894, -0.008274640887975693, -0.44856226444244385, 0.622138500213623, -0.9741342663764954, 0.3015928864479065, 0.6817748546600342, 0.1422949880361557, -0.15608079731464386, -0.6878923177719116, -0.4623349606990814, -0.18116290867328644, -0.32946327328681946, 0.34303298592567444, -0.24300001561641693, -0.33862563967704773, 0.4810642600059509, 0.516442060470581, -0.8248371481895447, -0.04230748489499092, -0.48543527722358704, -0.08067759871482849, 0.9953540563583374, 0.2943688929080963, 0.02082168683409691, -0.15955038368701935, -0.5297974944114685, -0.2772945165634155, -0.40331998467445374, 0.4598879814147949, 0.4127708673477173, 0.41023096442222595, -0.5418004989624023, 0.6545875668525696, -0.2118300348520279, 0.5369210243225098, -0.25125381350517273, -0.322995662689209, 0.7368464469909668, -0.5655835866928101, -0.30082377791404724, -0.035090189427137375, 0.9154678583145142, 0.7332877516746521, -0.11624933034181595, 0.08422389626502991, -0.06699603796005249, 0.004744464531540871, 0.0711953416466713, -0.6665946841239929, -0.38792410492897034, 0.35472020506858826, -0.8198701739311218, -0.5245333313941956, 0.22696945071220398, -1.1069856882095337, -0.11734062433242798, -0.320311576128006, 0.26991936564445496, -0.4413502812385559, -0.1984502673149109, 0.03653440624475479, -0.2445073127746582, 0.1857905387878418, 0.2671072483062744, -0.6519161462783813, 0.561156153678894, 0.2388765960931778, 0.8538700342178345, -0.0266325194388628, -0.03144160658121109, 0.06413325667381287, 0.1060791090130806, -0.4056205153465271, 0.7519627809524536, -0.1731346696615219, -0.5410009026527405, -0.2710414528846741, 0.22321656346321106, 0.06671364605426788, -0.37106791138648987, 0.6248511075973511, 0.02422196790575981, 0.25797563791275024, -0.31141942739486694, -0.30543652176856995, -0.014595995657145977, 0.34216055274009705, -0.929431676864624, 1.1516304016113281, 0.4569847583770752, -0.7255829572677612, 0.4529191255569458, -0.7593743801116943, -0.10113276541233063, -0.03481492027640343, 0.03627752512693405, -0.9050990343093872, -0.26419028639793396, 0.16674160957336426, 0.17229792475700378, -0.5186849236488342, 0.2253151386976242, -0.2109590619802475, -0.1346333920955658, -0.01723620668053627, -0.23644395172595978, 0.896403968334198, 0.42380309104919434, -0.34216248989105225, -0.05535237491130829, -1.1185466051101685, 0.13625775277614594, 0.44308632612228394, -0.4673212468624115, -0.08495379239320755, -0.16842016577720642, 0.07355567067861557, 0.12919138371944427, 0.3657515347003937, -0.6103739738464355, 0.3787151873111725, -0.12151318788528442, 0.38130640983581543, 0.6942772269248962, -0.0028964709490537643, 0.3088453710079193, -0.7371424436569214, 0.40788763761520386, 0.18754008412361145, 0.3243231773376465, 0.17310570180416107, -0.5753834247589111, -0.6505821347236633, -0.3785026967525482, 0.34829387068748474, 0.4668685793876648, -0.385296106338501, 0.593364953994751, -0.31604593992233276, -0.9783341884613037, -0.381852388381958, -0.1867000013589859, 0.40622180700302124, 0.7600447535514832, 0.5926289558410645, -0.19568291306495667, -0.4693819284439087, -1.06756591796875, -0.11381932348012924, -0.15948402881622314, 0.2305774986743927, 0.6202526092529297, 0.905728280544281, 0.0012487152125686407, 0.8584240078926086, -0.9959695935249329, -0.41092732548713684, 0.04095615819096565, -0.0392388179898262, 0.4568304717540741, 0.7166608572006226, 0.6467049717903137, -0.8073076009750366, -0.6861801147460938, 0.16866831481456757, -0.7967028617858887, 0.3365514278411865, 0.0076080141589045525, 0.0475449375808239, 0.34966719150543213, 0.359879732131958, -0.589259922504425, 0.9034636616706848, 0.09647709131240845, -0.42359039187431335, 0.672046959400177, -0.46791884303092957, 0.2964148223400116, -1.0023542642593384, 0.44814226031303406, 0.3484172523021698, -0.060057155787944794, -0.4745285212993622, -0.2320796549320221, 0.01700984686613083, 0.16107270121574402, -0.30716875195503235, 0.5658525228500366, -0.4664487838745117, 0.20210276544094086, 0.6527906060218811, -0.22731277346611023, -0.12209702283143997, 0.5998646020889282, -0.04862813651561737, 0.6547876000404358, 0.5483487844467163, -0.3026222884654999, 0.27465781569480896, 0.39217594265937805, -0.38306114077568054, 0.3378295600414276, -0.524433970451355, -0.17373256385326385, -0.13303907215595245, 0.27604472637176514, -0.9425346851348877, -0.24316255748271942, 0.382114976644516, -0.4868355691432953, 0.2846808433532715, 0.028332499787211418, -0.37258708477020264, -0.6390200257301331, -0.7213642597198486, 0.07427309453487396, 0.5155677199363708, -0.2512824535369873, 0.3471328318119049, 0.2707028090953827, 0.17145936191082, -0.5593036413192749, -0.5793122053146362, -0.21121717989444733, -0.2192070037126541, -0.33159348368644714, 0.47706690430641174, 0.04851413518190384, -0.3144437074661255, 0.29373854398727417, -0.07186976075172424, -0.3085353672504425, -0.10465645045042038, 0.4030532240867615, 0.3447684049606323, -0.26334160566329956, -0.024846015498042107, -0.4843348562717438, 0.0855170264840126, -0.015151260420680046, -0.007405084557831287, 0.272052526473999, -0.3189331293106079, -0.11783535778522491, -0.5912694334983826, 0.19144496321678162, 0.5938997268676758, -0.11368594318628311, 0.690416693687439, 0.561235249042511, -0.4502170979976654, -0.08188556879758835, -0.5087946057319641, 0.012742280028760433, -0.42751598358154297, 0.08481337130069733, -0.26362279057502747, -0.6843339204788208, 0.5909796357154846, -0.01110092457383871, 0.2362349033355713, 0.6880627870559692, 0.36839544773101807, -0.27398791909217834, 0.7380982637405396, 0.28214848041534424, 0.037773191928863525, 0.2848304808139801, -0.8917087912559509, 0.3581300973892212, -0.5255111455917358, -0.6787914037704468, -0.8490462899208069, -0.44051840901374817, -0.8592542409896851, -0.4571681022644043, 0.14400774240493774, 0.017529986798763275, -0.47121918201446533, 0.5396428108215332, -0.7008764743804932, 0.2712533175945282, 0.5843943357467651, 0.49965035915374756, 0.21926181018352509, 0.09159737825393677, -0.25790971517562866, -0.07268569618463516, -0.5164724588394165, -0.5574357509613037, 1.3035633563995361, 0.3368062674999237, 0.6545987725257874, 0.13697490096092224, 0.6789332628250122, 0.3811676502227783, 0.17955079674720764, -0.4811494052410126, 0.417665034532547, -0.16585633158683777, -0.886756420135498, -0.45738866925239563, -0.5694827437400818, -1.1566109657287598, 0.1653551161289215, -0.4183887839317322, -0.7403008341789246, 0.39485520124435425, 0.3418067395687103, -0.37259840965270996, 0.7642691135406494, -0.7544008493423462, 0.9014114737510681, -0.2857932150363922, -0.6694777607917786, 0.19854150712490082, -0.6664803624153137, 0.28898176550865173, 0.034105006605386734, 0.5355409979820251, -0.19497895240783691, -0.01577720418572426, 0.7224051356315613, -0.911138653755188, 0.6155381798744202, -0.25202661752700806, 0.3538321554660797, 0.574076771736145, -0.2559358775615692, 0.6354880332946777, -0.09372729808092117, -0.10603612661361694, 0.13238202035427094, 0.23107017576694489, -0.51753830909729, -0.3131226897239685, 0.7320887446403503, -0.8683580160140991, -0.42153826355934143, -0.685235321521759, -0.4755247235298157, -0.0401262603700161, 0.24357260763645172, 0.2434985339641571, 0.34014686942100525, -0.28118425607681274, 0.39212921261787415, 0.5701355934143066, -0.2820451259613037, 0.4229426085948944, 0.19355928897857666, 0.04233086481690407, -0.6067309379577637, 1.1831356287002563, 0.22973883152008057, 0.08938633650541306, 0.25227993726730347, 0.2514212131500244, -0.41082870960235596, -0.6020376086235046, -0.22406454384326935, 0.17428293824195862, -0.43731147050857544, -0.19122958183288574, -0.4250982701778412, -0.03158291056752205, -0.7691619396209717, -0.30140912532806396, -0.21710629761219025, -0.5458075404167175, -0.5292037725448608, -0.21398738026618958, 0.5446078181266785, 0.8059006929397583, -0.40146753191947937, 0.13160377740859985, -0.6289997696876526, 0.3437168002128601, 0.14435450732707977, 0.6433692574501038, -0.10358863323926926, -0.2588324546813965, -0.21439288556575775, -0.07087831944227219, -0.5699902176856995, -0.5444830656051636, 0.9391375780105591, -0.05659455060958862, 0.7867088913917542, 0.15913541615009308, 0.06083232909440994, 0.8291270732879639, -0.21442514657974243, 0.922619104385376, 0.5005905628204346, -0.49778303503990173, 0.47474831342697144, -0.5063424706459045, 0.32747530937194824, 0.7513092160224915, 0.631594717502594, -0.14349250495433807, -0.010760839097201824, -0.9588193893432617, -0.9184955358505249, 0.5844727158546448, 0.21383164823055267, -0.32760506868362427, 0.13144931197166443, 0.25161048769950867, 0.0009204118978232145, 0.21652694046497345, -0.7915017008781433, -0.7344145178794861, -0.1990666538476944, -0.4208543300628662, 0.029126055538654327, 0.19112680852413177, -0.21156547963619232, -0.5850896239280701, 0.7394317388534546, 0.13041561841964722, 0.4811810851097107, 0.2983996868133545, 0.08712518960237503, -0.15810911357402802, 0.043228913098573685, 0.5754449963569641, 0.6986644268035889, -0.5587784051895142, 0.0446963869035244, 0.2296871393918991, -0.8020004630088806, 0.1672358363866806, 0.07841069996356964, -0.40969228744506836, -0.1557033658027649, 0.24136726558208466, 0.4786105453968048, -0.06247570365667343, -0.2868802845478058, 0.37976351380348206, -0.2510038912296295, -0.6849107146263123, -0.3308059573173523, 0.07795104384422302, 0.056323904544115067, 0.009077796712517738, 0.41403812170028687, 0.43735283613204956, 0.09695939719676971, -0.5713220834732056, 0.19611495733261108, 0.39326247572898865, -0.5937379598617554, -0.051621727645397186, 0.6586176753044128, -0.05585440993309021, -0.22455650568008423, 0.44587990641593933, -0.059324175119400024, -0.31811991333961487, 1.031569004058838, 0.3129385709762573, 0.5820406675338745, 0.014932509511709213, 0.1821930855512619, 1.1441082954406738, 0.4310465157032013, -0.032214172184467316, 0.40253928303718567, 0.08474316447973251, -0.35359659790992737, 0.17532891035079956, -0.878738522529602, -0.14728502929210663, 0.3941061496734619, -0.5849082469940186, 0.4466886520385742, -0.5640890002250671, -0.3670394718647003, 0.17540353536605835, 0.3890375792980194, -0.7784005999565125, 0.40152475237846375, 0.04724213108420372, 1.119566798210144, -0.8981297016143799, 0.768598198890686, 0.6440153121948242, -0.7127561569213867, -0.9163921475410461, -0.4687114357948303, 0.0447685644030571, -0.38858339190483093, 0.49993619322776794, -0.0785970613360405, 0.24135680496692657, -0.09452194720506668, -0.7424046397209167, -1.083156943321228, 1.4454973936080933, -0.052556395530700684, -0.48398342728614807, 0.028095943853259087, 0.23408083617687225, 0.5305776000022888, -0.15630990266799927, 0.21103091537952423, 0.6250249147415161, 0.6979973912239075, 0.037662699818611145, -1.026711106300354, 0.14904777705669403, -0.5218167901039124, -0.032575853168964386, 0.15939150750637054, -0.8993896245956421, 0.9086740016937256, -0.11340723186731339, 0.1288708746433258, 0.020222820341587067, 0.25619345903396606, 0.41474229097366333, 0.4304046928882599, 0.40292027592658997, 1.2358862161636353, 0.7728456854820251, -0.5084872245788574, 0.790325403213501, -0.27108120918273926, 0.6094998717308044, 0.9725350737571716, -0.031217927113175392, 0.7960390448570251, 0.34062016010284424, -0.757007360458374, 0.3519340753555298, 0.8460090756416321, -0.5050300359725952, 0.4881155788898468, 0.394980251789093, -0.04842501878738403, -0.05925110727548599, -0.06051698699593544, -0.7274343371391296, 0.22684939205646515, 0.2489267736673355, -0.4593055248260498, -0.07751203328371048, -0.3864808678627014, -0.03851700574159622, 0.0065976339392364025, -0.2918715178966522, 0.6733871102333069, -0.10587681829929352, -0.4493144750595093, 0.5879872441291809, -0.2618928849697113, 0.430634468793869, -0.5506159067153931, -0.25284823775291443, -0.14217062294483185, 0.1614893227815628, -0.6539750695228577, -0.7681170701980591, 0.16420882940292358, -0.021370822563767433, -0.20033147931098938, -0.364780992269516, 0.48528745770454407, -0.04511036351323128, -0.5608583092689514, 0.0731915533542633, 0.2610818147659302, 0.3439268171787262, 0.4567835032939911, -0.7271324396133423, -0.04686915501952171, 0.09339311718940735, -0.3816864788532257, 0.2530733048915863, 0.36998212337493896, -0.19745779037475586, 0.46255815029144287, 1.0877375602722168, 0.11705856770277023, 0.08834170550107956, -0.2406425178050995, 1.0917264223098755, -0.9013450145721436, -0.22261010110378265, -0.6414453983306885, 0.7209305763244629, -0.23857741057872772, -0.6298401355743408, 0.667313277721405, 1.1044745445251465, 0.9212046265602112, -0.22858472168445587, 0.8265463709831238, -0.31885868310928345, 0.5398586988449097, -0.13451910018920898, 0.9021286368370056, -0.7718771696090698, -0.1939694583415985, -0.34388792514801025, -0.6913144588470459, -0.7037741541862488, 0.760053813457489, -0.36791083216667175, -0.0323527529835701, 0.4923827648162842, 0.7285292744636536, 0.2779883146286011, 0.16873931884765625, 0.276251882314682, 0.3127371668815613, 0.18009237945079803, 0.3030295968055725, 0.49163010716438293, -0.6400690078735352, 0.4943247139453888, -0.6411390900611877, -0.12271484732627869, -0.3439010977745056, -0.7780687212944031, -0.5651882886886597, -0.6604447960853577, -0.4170010983943939, -0.3974648416042328, -0.159934863448143, 1.1170192956924438, 0.7224853038787842, -0.9389566779136658, -0.606659471988678, -0.015523758716881275, 0.05814652517437935, -0.26800936460494995, -0.2561803162097931, 0.5891610980033875, 0.07968956977128983, -0.4562639892101288, -0.045044880360364914, 0.003549550659954548, 0.2164192497730255, 0.13452474772930145, -0.11141250282526016, -0.5726144909858704, -0.2308669239282608, 0.5117594599723816, 0.3485598564147949, -0.6741843819618225, -0.025728393346071243, 0.21073967218399048, -0.2665519714355469, 0.5055766701698303, 0.29482966661453247, -0.6464725732803345, 0.32023027539253235, 0.6702674627304077, 0.15986908972263336, 0.9041022658348083, 0.2677566409111023, -0.09040988236665726, -0.22132989764213562, -0.058007948100566864, 0.16826768219470978, 0.360146701335907, 0.10388211905956268, -0.5097247362136841, 0.7849810719490051, 0.43576154112815857, -0.513240396976471, -0.8534993529319763, -0.5243585705757141, -1.3954304456710815, -0.332194447517395, 0.7609253525733948, -0.10864439606666565, -0.5604156851768494, -0.00013904519437346607, -0.1702076941728592, 0.21171163022518158, -0.6487900018692017, 0.4257524013519287, 0.5658519864082336, -0.38533154129981995, 0.14281083643436432, -0.8701796531677246, 0.5392292141914368, -0.034522976726293564, -1.0063124895095825, -0.07140710204839706, 0.5784239172935486, 0.2737507224082947, 0.5705879926681519, 0.3701154589653015, -0.3637508153915405, 0.08605485409498215, 0.0749807208776474, 0.29252341389656067, -0.1622888743877411, -0.036003854125738144, -0.15710493922233582, 0.2825542092323303, -0.28496360778808594, -0.208787202835083 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
sahil2801/CodeAlpaca-20k
sahil2801
2023-10-03T11:46:04Z
6,241
124
null
[ "task_categories:text-generation", "size_categories:10K<n<100K", "language:en", "license:cc-by-4.0", "code", "region:us" ]
2023-10-03T11:46:04Z
2023-03-26T22:09:47.000Z
2023-03-26T22:09:47
--- license: cc-by-4.0 task_categories: - text-generation tags: - code pretty_name: CodeAlpaca 20K size_categories: - 10K<n<100K 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
HuggingFaceM4/COCO
HuggingFaceM4
2022-12-15T15:51:03Z
6,235
9
null
[ "license:cc-by-4.0", "arxiv:1405.0312", "region:us" ]
2022-12-15T15:51:03Z
2022-12-14T21:13:57.000Z
2022-12-14T21:13:57
--- license: cc-by-4.0 --- # Dataset Card for [Dataset Name] ## 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://cocodataset.org/](https://cocodataset.org/) - **Repository:** - **Paper:** [Microsoft COCO: Common Objects in Context](https://arxiv.org/abs/1405.0312) - **Leaderboard:** - **Point of Contact:** ### Dataset Summary MS COCO is a large-scale object detection, segmentation, and captioning dataset. COCO has several features: Object segmentation, Recognition in context, Superpixel stuff segmentation, 330K images (>200K labeled), 1.5 million object instances, 80 object categories, 91 stuff categories, 5 captions per image, 250,000 people with keypoints. As of now, there is only the 2014 subset (with Karpathy annotations and splits), but feel free to contribute the 2017 subset of COCO! ### 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=RGB size=640x480 at 0x7F69C1BA8550>, 'filepath': 'COCO_val2014_000000522418.jpg', 'sentids': [681330, 686718, 688839, 693159, 693204], 'filename': 'COCO_val2014_000000522418.jpg', 'imgid': 1, 'split': 'restval', 'sentences': { 'tokens': ['a', 'woman', 'wearing', 'a', 'net', 'on', 'her', 'head', 'cutting', 'a', 'cake'], 'raw': 'A woman wearing a net on her head cutting a cake. ', 'imgid': 1, 'sentid': 681330 }, 'cocoid': 522418 } ``` ### Data Fields [More Information Needed] ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information [More Information Needed] ### Contributions Thanks to [@VictorSanh](https://github.com/VictorSanh) for adding this dataset.
[ -0.49519217014312744, -0.6655373573303223, -0.07608058303594589, 0.42819204926490784, -0.27799519896507263, 0.32594403624534607, -0.32871514558792114, -0.5667752027511597, 0.538213849067688, 0.594627857208252, -0.6829265356063843, -1.0751694440841675, -0.7137278914451599, 0.22584465146064758, -0.3232143819332123, 1.0103623867034912, 0.02124035730957985, -0.29076284170150757, -0.2971768081188202, -0.1678551733493805, -0.539238691329956, -0.6210609674453735, -0.554526686668396, 0.12530572712421417, 0.47463366389274597, 0.9344202280044556, 0.6376036405563354, 0.7320025563240051, 0.643233060836792, 0.24961161613464355, -0.05428393557667732, 0.2386251538991928, -0.5431929230690002, -0.30472683906555176, -0.07602821290493011, -0.21186144649982452, -0.6408696174621582, 0.07138726860284805, 0.4185304045677185, 0.5827150344848633, 0.11284110695123672, 0.505214273929596, 0.09133491665124893, 0.6903989911079407, -0.7335516810417175, 0.7258840203285217, -0.45546647906303406, 0.14642146229743958, -0.22290043532848358, -0.11496742069721222, -0.14192625880241394, -0.3119260370731354, -0.217901811003685, -0.6685646772384644, 0.28448686003685, 0.08678460121154785, 1.014037013053894, 0.03154010325670242, -0.1801706999540329, -0.39969775080680847, -0.34910961985588074, 0.7210460901260376, -0.5013282299041748, 0.09251400828361511, 0.774982750415802, 0.36889976263046265, 0.23631587624549866, -0.9162446856498718, -0.4793657064437866, 0.18837818503379822, -0.11681847274303436, 0.1275993138551712, -0.14840295910835266, -0.3317933678627014, 0.2850158214569092, 0.5470545291900635, -0.34226658940315247, -0.22079885005950928, -0.7361612319946289, -0.3150905966758728, 1.0060993432998657, 0.27935993671417236, 0.41507354378700256, -0.25642162561416626, -0.039056986570358276, -0.3222506046295166, -0.47514307498931885, 0.24533826112747192, 0.30077990889549255, 0.41219326853752136, -0.6425834894180298, 0.841713011264801, -0.3195973038673401, 0.6629283428192139, -0.14718014001846313, -0.07259746640920639, 0.48855313658714294, -0.5871093273162842, -0.18284811079502106, 0.20701171457767487, 0.913151204586029, 0.7135142087936401, 0.18261957168579102, 0.10971038788557053, 0.2475094199180603, 0.09124290198087692, 0.02585388347506523, -0.6962697505950928, -0.5608393549919128, 0.35824233293533325, -0.4459817707538605, -0.5334610939025879, 0.38995814323425293, -0.9528583288192749, -0.16008737683296204, -0.22286151349544525, -0.30626165866851807, -0.16278424859046936, -0.21752327680587769, -0.030340557917952538, -0.09285672754049301, 0.43280962109565735, 0.16282039880752563, -0.8297544717788696, 0.41351017355918884, 0.4724062979221344, 0.9491727352142334, -0.1962253302335739, -0.07446278631687164, -0.15751180052757263, 0.12428587675094604, -0.34837278723716736, 0.7286379337310791, -0.5307809114456177, -0.5391932725906372, -0.024392269551753998, 0.5946285724639893, -0.1416241079568863, -0.41070130467414856, 0.750518798828125, -0.07060299813747406, 0.10867343842983246, -0.8145390152931213, -0.24544043838977814, -0.2062988430261612, 0.47216227650642395, -0.8160461187362671, 1.2291287183761597, 0.22557327151298523, -0.9743532538414001, 0.4722824692726135, -0.9199744462966919, -0.5375515818595886, -0.03995917737483978, -0.18848758935928345, -0.5784413814544678, -0.326663076877594, 0.4590694010257721, 0.5537015199661255, -0.4472232460975647, 0.19740764796733856, -0.3598312735557556, -0.0997459813952446, 0.2321530133485794, -0.26089075207710266, 1.278646469116211, 0.3748302757740021, -0.14706359803676605, 0.11058463156223297, -0.8931891918182373, -0.1899072676897049, 0.5111753940582275, -0.216318741440773, 0.12740866839885712, -0.16433872282505035, 0.40139535069465637, 0.3183823525905609, 0.32245105504989624, -0.40533557534217834, 0.31101298332214355, 0.04524655640125275, 0.7129676938056946, 0.49739259481430054, 0.2677846848964691, 0.20448705554008484, -0.3311140537261963, 0.49047183990478516, 0.25588706135749817, 0.6427379846572876, -0.05300852283835411, -0.7609189748764038, -0.7931860089302063, -0.2918263077735901, 0.07494354248046875, 0.45372623205184937, -0.3533281981945038, 0.7933322191238403, -0.45489126443862915, -0.5191954374313354, -0.4013822376728058, 0.16290347278118134, 0.10409904271364212, 0.4952522814273834, 0.43483608961105347, -0.6498154401779175, -0.7488573789596558, -0.8685811161994934, 0.38091257214546204, 0.05478369817137718, 0.34495866298675537, 0.6189690828323364, 0.8347196578979492, -0.11235324293375015, 1.1393647193908691, -0.8173573613166809, -0.37416207790374756, -0.48799070715904236, -0.2136499136686325, 0.15650349855422974, 0.6865240931510925, 0.6832427382469177, -1.083923101425171, -0.5537821054458618, -0.14537231624126434, -0.8606276512145996, 0.11415330320596695, 0.1666540503501892, -0.2941291630268097, -0.10303454101085663, 0.32270535826683044, -0.24604739248752594, 0.6492176055908203, 0.4981316328048706, -0.367784708738327, 0.5432091951370239, 0.06405186653137207, 0.325393944978714, -1.2099263668060303, 0.24465467035770416, -0.14783599972724915, -0.004703742917627096, -0.3978453278541565, -0.15277031064033508, 0.049958277493715286, -0.17238245904445648, -0.6870909333229065, 0.41017386317253113, -0.5046888589859009, -0.022248931229114532, 0.07187596708536148, 0.0027958822902292013, 0.22029300034046173, 0.6746675968170166, 0.20349432528018951, 0.48785191774368286, 0.8379911780357361, -0.5848966836929321, 0.4923756718635559, 0.47861289978027344, -0.48832225799560547, 0.5411912202835083, -0.7570208311080933, 0.1436130702495575, -0.14444853365421295, 0.3128463327884674, -0.9537416100502014, -0.5119780898094177, 0.6851184964179993, -0.4915240705013275, 0.10737051069736481, -0.228535458445549, -0.6265076994895935, -0.6595484614372253, -0.5253154039382935, 0.48999834060668945, 0.21139857172966003, -0.304315447807312, 0.18291817605495453, 0.6183129549026489, 0.14315026998519897, -0.6042762398719788, -0.9985639452934265, 0.2737303078174591, -0.14831914007663727, -0.607984185218811, 0.35040634870529175, -0.3564760982990265, 0.05713465064764023, 0.067386195063591, 0.07058051973581314, -0.17923302948474884, 0.015602284111082554, 0.4545828104019165, 0.27187228202819824, 0.00010382251639384776, -0.4473097622394562, -0.1024550050497055, 0.16797347366809845, -0.19255860149860382, -0.15994417667388916, 0.7576274275779724, -0.041237566620111465, -0.2925095558166504, -0.3430881202220917, 0.27667948603630066, 0.4345017373561859, -0.5407683253288269, 0.8900370001792908, 0.8929135799407959, -0.5273977518081665, 0.2040201723575592, -0.4316481649875641, 0.06365145742893219, -0.41324830055236816, 0.15359173715114594, -0.31487399339675903, -0.6635597348213196, 0.9010447859764099, 0.41435256600379944, 0.15989811718463898, 0.6410903930664062, 0.5530643463134766, 0.1758015751838684, 0.8482845425605774, 0.42698612809181213, -0.4369228482246399, 0.5315309166908264, -1.0461326837539673, 0.1295327991247177, -0.9507740139961243, -0.6567630171775818, -0.6613488793373108, -0.21865367889404297, -0.6382451057434082, -0.7316156625747681, -0.06570496410131454, 0.2910764217376709, -0.12865318357944489, 0.7841578125953674, -0.8323183059692383, 0.45099198818206787, 0.4660157859325409, 0.3413780927658081, 0.10390835255384445, -0.048393163830041885, -0.043459996581077576, 0.24729372560977936, -0.8167621493339539, -0.5611572265625, 1.0089194774627686, 0.32061564922332764, 0.39408788084983826, -0.026289213448762894, 0.6231620907783508, 0.42050594091415405, 0.1892276406288147, -0.5268723964691162, 0.5883869528770447, -0.012224951758980751, -0.8133457899093628, -0.23726922273635864, -0.17692773044109344, -0.969509482383728, -0.1284162551164627, -0.262084037065506, -0.9376880526542664, 0.5819191932678223, 0.19691689312458038, -0.13643968105316162, 0.2510180175304413, -0.5622883439064026, 1.1330897808074951, -0.18295380473136902, -0.5271150469779968, 0.198261097073555, -0.7984389662742615, 0.288900226354599, 0.2601269781589508, 0.5073365569114685, -0.32074084877967834, 0.1610916703939438, 0.9537391066551208, -0.6100621819496155, 1.1255152225494385, 0.026181116700172424, 0.22090455889701843, 0.8759322166442871, -0.21403291821479797, 0.5347938537597656, 0.14029206335544586, 0.1232433095574379, 0.3891153633594513, -0.10850702226161957, -0.5080057382583618, -0.38365888595581055, 0.7516503930091858, -0.6607739925384521, -0.18567311763763428, -0.33951181173324585, -0.4612313210964203, 0.16874773800373077, 0.25607597827911377, 0.47567903995513916, 0.30062592029571533, -0.1966017186641693, 0.4307026267051697, 0.25590088963508606, -0.35767075419425964, 0.29108116030693054, 0.042693790048360825, 0.03348963335156441, -0.6118384599685669, 1.0193004608154297, 0.30085816979408264, 0.05006834864616394, 0.4703068137168884, 0.08784737437963486, -0.4627115726470947, -0.33145588636398315, -0.21245799958705902, 0.07988578826189041, -0.8099370002746582, -0.18209350109100342, -0.7676714062690735, -0.25271302461624146, -0.8901503682136536, -0.41680851578712463, -0.22074835002422333, -0.5207362771034241, -0.5683009028434753, -0.5188822150230408, 0.4898991882801056, 0.3672254979610443, -0.1962166279554367, 0.15130235254764557, -0.5027815103530884, 0.20127816498279572, 0.14235831797122955, 0.20309537649154663, 0.0794171467423439, -0.14096388220787048, -0.3914216160774231, 0.18278175592422485, -0.4867149591445923, -0.8302318453788757, 0.5508158206939697, 0.0993669331073761, 0.566496729850769, 0.5191990733146667, 0.11890989542007446, 0.7569237351417542, 0.03550727665424347, 1.2431172132492065, 0.3248082399368286, -0.6710613965988159, 0.7180412411689758, -0.2907089293003082, 0.16783298552036285, 0.7117286324501038, 0.41823720932006836, -0.6008313894271851, -0.20643143355846405, -0.8407989740371704, -1.0971977710723877, 0.7259768843650818, 0.46025994420051575, 0.046487756073474884, -0.39182859659194946, 0.01363446842879057, -0.22924421727657318, 0.32392218708992004, -0.8645694255828857, -0.5878649950027466, -0.5159422159194946, -0.351391077041626, -0.18869902193546295, -0.22134028375148773, -0.18789136409759521, -0.5600871443748474, 0.5530166625976562, -0.003095414023846388, 0.3193972110748291, 0.2149372100830078, -0.1917232722043991, 0.025721866637468338, -0.03757220879197121, 0.5257267951965332, 0.6063234210014343, -0.3608447313308716, 0.10023988038301468, 0.11215390264987946, -0.5790172219276428, -0.1823328286409378, -0.152303546667099, -0.14505134522914886, -0.3044692575931549, 0.582534909248352, 0.8583570718765259, 0.30174776911735535, -0.5485973358154297, 0.5056368112564087, 0.08785852044820786, -0.17556527256965637, -0.5011652112007141, 0.11008236557245255, -0.020187320187687874, -0.030957840383052826, 0.22622881829738617, -0.04985567554831505, 0.12606863677501678, -0.7940750122070312, 0.2200850546360016, 0.13092751801013947, -0.48151695728302, -0.21900369226932526, 0.800432026386261, 0.05198758468031883, -0.2812478840351105, 0.6597983241081238, -0.10210934281349182, -0.45717424154281616, 1.05629563331604, 0.3342098593711853, 0.7513784170150757, 0.07137364894151688, 0.3790605068206787, 0.8518716096878052, 0.3695147931575775, -0.07615481317043304, 0.34472259879112244, -0.36003243923187256, -0.7920162081718445, 0.042578909546136856, -0.5667213201522827, -0.1507606953382492, 0.0931546688079834, -0.8646979331970215, 0.4573335349559784, -0.6391907930374146, -0.18389582633972168, 0.045871552079916, 0.17646999657154083, -1.1221530437469482, 0.40722039341926575, -0.09775285422801971, 1.0162056684494019, -0.973331093788147, 0.702903151512146, 0.5006363987922668, -0.940470814704895, -0.789888858795166, -0.4975892901420593, 0.04590092599391937, -0.8673320412635803, 0.394289493560791, 0.24289873242378235, 0.4192792773246765, -0.19493794441223145, -0.9212137460708618, -0.8331654071807861, 1.4938139915466309, 0.1464693695306778, -0.4595222473144531, 0.15480956435203552, 0.4067333936691284, 0.3541316092014313, -0.7394903302192688, 0.2552068531513214, 0.6465842127799988, 0.6900302171707153, 0.3779962658882141, -0.5059850215911865, 0.10734950006008148, -0.3998601734638214, -0.047566719353199005, -0.2623883783817291, -0.8157832026481628, 0.6382340788841248, -0.28371626138687134, -0.19117702543735504, -0.2666926980018616, 0.636801540851593, 0.3001645505428314, 0.41578131914138794, 0.40558984875679016, 0.4765363037586212, 0.649898886680603, -0.15304367244243622, 1.1039239168167114, -0.4806843400001526, 0.5299330353736877, 1.0934937000274658, 0.11711812019348145, 0.5584389567375183, 0.2264195829629898, -0.2297690063714981, 0.38245531916618347, 0.9891124963760376, -0.301447331905365, 0.433637797832489, 0.19136516749858856, 0.038607899099588394, -0.044249340891838074, -0.39438310265541077, -0.3650166392326355, 0.505157470703125, 0.32953765988349915, -0.6187958717346191, 0.06042278930544853, 0.004766310565173626, 0.1762571781873703, -0.17249566316604614, -0.33366817235946655, 0.6109692454338074, -0.040216218680143356, -0.4069451689720154, 0.4194341003894806, -0.08947718143463135, 0.4603812098503113, -0.44037890434265137, -0.10654395073652267, -0.2174949049949646, -0.1742812544107437, -0.6366658806800842, -0.9679515957832336, 0.4049763083457947, 0.06321059912443161, -0.238405242562294, 0.07520335912704468, 0.603819727897644, -0.40285778045654297, -0.9679661989212036, 0.21056772768497467, 0.03812152519822121, 0.3767530918121338, 0.01345259603112936, -1.0504944324493408, 0.568939745426178, 0.13271285593509674, -0.15363089740276337, 0.07145065069198608, 0.2352948933839798, -0.29956093430519104, 0.45488205552101135, 0.7038754820823669, 0.034784965217113495, 0.15884597599506378, 0.26541540026664734, 0.9387145042419434, -0.649264931678772, -0.5155854225158691, -0.6427768468856812, 0.7395836114883423, -0.4843328595161438, -0.34020864963531494, 0.8011323809623718, 0.9967490434646606, 1.0180941820144653, -0.061862844973802567, 0.862309992313385, -0.6126413941383362, 0.028244514018297195, -0.3123893737792969, 0.580451250076294, -0.4815479815006256, -0.006405581254512072, -0.699114203453064, -0.9407577514648438, -0.4520053565502167, 0.7067515254020691, -0.36210164427757263, 0.08438494801521301, 0.3826009929180145, 0.9731267690658569, -0.18408295512199402, 0.005756608676165342, 0.24645523726940155, 0.180304616689682, 0.3940703272819519, 0.4283231198787689, 0.34949228167533875, -0.6634312868118286, 0.617717981338501, -0.7454298734664917, -0.16865065693855286, -0.3081035017967224, -0.9671853184700012, -0.8517702221870422, -0.972358763217926, -0.6911872029304504, -0.2922654449939728, -0.08038225769996643, 0.9784974455833435, 1.0554248094558716, -1.107860803604126, -0.35564276576042175, -0.14973700046539307, 0.25021806359291077, -0.38898569345474243, -0.3025895059108734, 0.6604385375976562, 0.2650987207889557, -0.6977455019950867, 0.041106414049863815, 0.1165953204035759, -0.02679559588432312, 0.04675191640853882, -0.253147691488266, -0.32339218258857727, -0.03666229173541069, 0.7419552206993103, 0.5392300486564636, -0.47239720821380615, -0.33804863691329956, -0.07419653981924057, 0.15205231308937073, 0.2867783308029175, 0.7059866786003113, -0.15565802156925201, 0.46029767394065857, 0.49234330654144287, 0.10420168191194534, 0.7778316736221313, 0.09437534958124161, 0.06633172929286957, -0.7233115434646606, 0.2618979513645172, 0.01994653046131134, 0.5495476722717285, 0.5009757280349731, -0.5654330253601074, 0.7168083190917969, 0.3683527708053589, -0.3363878130912781, -0.7547498941421509, -0.11957050114870071, -1.5520457029342651, -0.10850173234939575, 1.0830271244049072, -0.11549967527389526, -0.5105575323104858, -0.20291972160339355, -0.4059125781059265, 0.3847346901893616, -0.5312641859054565, 0.588462769985199, 0.7547199726104736, 0.025791585445404053, -0.38355252146720886, -0.32713446021080017, 0.33481383323669434, -0.4759485125541687, -0.9619564414024353, 0.14170412719249725, 0.4849681854248047, 0.3948516845703125, 0.3070444166660309, 0.886537492275238, -0.452871710062027, 0.020533625036478043, 0.1354857236146927, 0.33358657360076904, -0.2855460047721863, -0.5594213008880615, 0.21432290971279144, 0.19774523377418518, -0.10878739506006241, -0.4847942888736725 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
wmt19
null
2023-04-05T13:44:03Z
6,116
14
null
[ "task_categories:translation", "annotations_creators:no-annotation", "language_creators:found", "multilinguality:translation", "size_categories:10M<n<100M", "source_datasets:extended|europarl_bilingual", "source_datasets:extended|news_commentary", "source_datasets:extended|opus_paracrawl", "source_datasets:extended|un_multi", "language:cs", "language:de", "language:en", "language:fi", "language:fr", "language:gu", "language:kk", "language:lt", "language:ru", "language:zh", "license:unknown", "region:us" ]
2023-04-05T13:44:03Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - no-annotation language_creators: - found language: - cs - de - en - fi - fr - gu - kk - lt - ru - zh license: - unknown multilinguality: - translation size_categories: - 10M<n<100M source_datasets: - extended|europarl_bilingual - extended|news_commentary - extended|opus_paracrawl - extended|un_multi task_categories: - translation task_ids: [] pretty_name: WMT19 paperswithcode_id: null dataset_info: - config_name: cs-en features: - name: translation dtype: translation: languages: - cs - en splits: - name: train num_bytes: 1314871994 num_examples: 7270695 - name: validation num_bytes: 696229 num_examples: 2983 download_size: 2018537046 dataset_size: 1315568223 - config_name: de-en features: - name: translation dtype: translation: languages: - de - en splits: - name: train num_bytes: 8420967590 num_examples: 38690334 - name: validation num_bytes: 757649 num_examples: 2998 download_size: 10422475109 dataset_size: 8421725239 - config_name: fi-en features: - name: translation dtype: translation: languages: - fi - en splits: - name: train num_bytes: 1422922267 num_examples: 6587448 - name: validation num_bytes: 691841 num_examples: 3000 download_size: 1006124909 dataset_size: 1423614108 - config_name: gu-en features: - name: translation dtype: translation: languages: - gu - en splits: - name: train num_bytes: 590763 num_examples: 11670 - name: validation num_bytes: 774621 num_examples: 1998 download_size: 38891457 dataset_size: 1365384 - config_name: kk-en features: - name: translation dtype: translation: languages: - kk - en splits: - name: train num_bytes: 9157438 num_examples: 126583 - name: validation num_bytes: 846857 num_examples: 2066 download_size: 41558315 dataset_size: 10004295 - config_name: lt-en features: - name: translation dtype: translation: languages: - lt - en splits: - name: train num_bytes: 513084361 num_examples: 2344893 - name: validation num_bytes: 541953 num_examples: 2000 download_size: 411309952 dataset_size: 513626314 - config_name: ru-en features: - name: translation dtype: translation: languages: - ru - en splits: - name: train num_bytes: 13721377178 num_examples: 37492126 - name: validation num_bytes: 1085596 num_examples: 3000 download_size: 4134147853 dataset_size: 13722462774 - config_name: zh-en features: - name: translation dtype: translation: languages: - zh - en splits: - name: train num_bytes: 5584359748 num_examples: 25984574 - name: validation num_bytes: 1107522 num_examples: 3981 download_size: 2195879129 dataset_size: 5585467270 - config_name: fr-de features: - name: translation dtype: translation: languages: - fr - de splits: - name: train num_bytes: 2358413485 num_examples: 9824476 - name: validation num_bytes: 441426 num_examples: 1512 download_size: 757345846 dataset_size: 2358854911 --- # Dataset Card for "wmt19" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [http://www.statmt.org/wmt19/translation-task.html](http://www.statmt.org/wmt19/translation-task.html) - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 2.02 GB - **Size of the generated dataset:** 1.32 GB - **Total amount of disk used:** 3.33 GB ### Dataset Summary <div class="course-tip course-tip-orange bg-gradient-to-br dark:bg-gradient-to-r before:border-orange-500 dark:before:border-orange-800 from-orange-50 dark:from-gray-900 to-white dark:to-gray-950 border border-orange-50 text-orange-700 dark:text-gray-400"> <p><b>Warning:</b> There are issues with the Common Crawl corpus data (<a href="https://www.statmt.org/wmt13/training-parallel-commoncrawl.tgz">training-parallel-commoncrawl.tgz</a>):</p> <ul> <li>Non-English files contain many English sentences.</li> <li>Their "parallel" sentences in English are not aligned: they are uncorrelated with their counterpart.</li> </ul> <p>We have contacted the WMT organizers.</p> </div> Translation dataset based on the data from statmt.org. Versions exist for different years using a combination of data sources. The base `wmt` allows you to create a custom dataset by choosing your own data/language pair. This can be done as follows: ```python from datasets import inspect_dataset, load_dataset_builder inspect_dataset("wmt19", "path/to/scripts") builder = load_dataset_builder( "path/to/scripts/wmt_utils.py", language_pair=("fr", "de"), subsets={ datasets.Split.TRAIN: ["commoncrawl_frde"], datasets.Split.VALIDATION: ["euelections_dev2019"], }, ) # Standard version builder.download_and_prepare() ds = builder.as_dataset() # Streamable version ds = builder.as_streaming_dataset() ``` ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances #### cs-en - **Size of downloaded dataset files:** 2.02 GB - **Size of the generated dataset:** 1.32 GB - **Total amount of disk used:** 3.33 GB An example of 'validation' looks as follows. ``` ``` ### Data Fields The data fields are the same among all splits. #### cs-en - `translation`: a multilingual `string` variable, with possible languages including `cs`, `en`. ### Data Splits |name | train |validation| |-----|------:|---------:| |cs-en|7270695| 2983| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @ONLINE {wmt19translate, author = "Wikimedia Foundation", title = "ACL 2019 Fourth Conference on Machine Translation (WMT19), Shared Task: Machine Translation of News", url = "http://www.statmt.org/wmt19/translation-task.html" } ``` ### Contributions Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@mariamabarham](https://github.com/mariamabarham), [@thomwolf](https://github.com/thomwolf) for adding this dataset.
[ -0.5818817019462585, -0.5271954536437988, 0.1633073389530182, 0.22437869012355804, -0.3802486062049866, 0.07195683568716049, -0.4730249047279358, -0.44925448298454285, 0.6325646042823792, 0.3448884189128876, -0.8516098260879517, -0.8863480091094971, -0.6044443249702454, 0.23279327154159546, -0.11415348201990128, 1.2068811655044556, -0.30201956629753113, -0.03296554461121559, -0.3808007836341858, -0.4075617790222168, -0.49147558212280273, -0.39615997672080994, -0.3535844087600708, -0.2735336422920227, 0.4620417058467865, 0.5180054306983948, 0.619006335735321, 0.9617499113082886, 0.6547801494598389, 0.31475603580474854, 0.04657617211341858, 0.10707726329565048, -0.3784986138343811, -0.21134386956691742, -0.014163616113364697, -0.23530521988868713, -0.5981542468070984, 0.1253347545862198, 0.47576823830604553, 0.663590133190155, -0.1958390474319458, 0.6180688738822937, 0.045260827988386154, 0.8547955751419067, -0.23225021362304688, 0.5271455645561218, -0.287476509809494, -0.12167161703109741, -0.4727862477302551, -0.1204361543059349, 0.03175296634435654, -0.4133797287940979, -0.1326776146888733, -0.7205554246902466, 0.08013749122619629, 0.024328116327524185, 0.9060853719711304, 0.16653570532798767, -0.1892395168542862, -0.1405024528503418, -0.3227793872356415, 0.6653283834457397, -0.7161399126052856, 0.1435565948486328, 0.6666237115859985, 0.2366875261068344, -0.02723608911037445, -0.7396125197410583, -0.49870190024375916, 0.21947290003299713, -0.1053045243024826, 0.31448429822921753, -0.08491770923137665, -0.39262276887893677, 0.51756751537323, 0.5662405490875244, -0.7921848297119141, -0.17535878717899323, -0.5707372426986694, -0.21590153872966766, 1.0472068786621094, 0.3586856722831726, 0.21111175417900085, -0.2676979601383209, -0.04951495677232742, -0.4303160309791565, -0.37683936953544617, -0.006028540898114443, 0.5320460796356201, 0.5550699234008789, -0.9523915648460388, 0.632225513458252, -0.275302916765213, 0.5047313570976257, -0.17250464856624603, 0.012093695811927319, 0.821715772151947, -0.5755061507225037, -0.1505025029182434, -0.17698320746421814, 0.9880832433700562, 0.6461425423622131, 0.036976948380470276, 0.02070741541683674, 0.010875288397073746, -0.07704398781061172, -0.11034595221281052, -0.8295167088508606, -0.2662081718444824, 0.5474467873573303, -0.6469531655311584, -0.44397759437561035, 0.08781443536281586, -1.0831332206726074, -0.17211216688156128, -0.5142259001731873, 0.31052738428115845, -0.23246248066425323, -0.3635270297527313, 0.13008756935596466, -0.3217792212963104, 0.1482771635055542, 0.21081486344337463, -0.4595065414905548, 0.2774638235569, 0.43555355072021484, 0.7496616244316101, -0.16123008728027344, -0.47013890743255615, -0.19984374940395355, -0.02265535481274128, -0.051262643188238144, 0.529093861579895, -0.23769719898700714, -0.3506559133529663, -0.04651400446891785, 0.511407732963562, -0.1403985470533371, -0.2799892723560333, 0.8852614760398865, -0.068044513463974, 0.49538299441337585, -0.6448319554328918, -0.37968823313713074, -0.0025261074770241976, 0.36467456817626953, -0.770651638507843, 1.3360226154327393, 0.23787528276443481, -0.9866488575935364, 0.08228997141122818, -0.9642612934112549, -0.5126228928565979, 0.13443078100681305, 0.08337469398975372, -0.5905980467796326, -0.15214145183563232, 0.1373504102230072, 0.44519877433776855, -0.4312717318534851, 0.3871019780635834, -0.26969972252845764, -0.19551680982112885, 0.16716544330120087, -0.13393215835094452, 1.3010261058807373, 0.2379956841468811, -0.19412140548229218, 0.08267796039581299, -1.0182111263275146, -0.13293537497520447, 0.5772694945335388, -0.34117648005485535, -0.018446145579218864, -0.28092068433761597, 0.5313778519630432, 0.2625546455383301, 0.4029701054096222, -0.5174940228462219, 0.396173894405365, -0.03498733788728714, 0.39829814434051514, 0.6855974793434143, -0.032229408621788025, 0.22832027077674866, -0.5094203948974609, 0.4079126715660095, 0.18742232024669647, 0.4243536591529846, 0.02905084937810898, -0.6937425136566162, -0.5482874512672424, -0.023052087053656578, 0.44001761078834534, 0.5744176506996155, -0.8063465356826782, 0.7901319861412048, -0.5620083808898926, -0.8112295866012573, -0.4949462115764618, 0.037517111748456955, 0.19748853147029877, 0.5868467092514038, 0.5455440282821655, -0.41029587388038635, -0.8241382837295532, -0.7338966131210327, 0.12795980274677277, -0.10852411389350891, 0.1864999234676361, 0.4173925518989563, 0.8715313076972961, -0.2653091549873352, 0.6151117086410522, -0.7165523767471313, -0.2963034510612488, -0.27814051508903503, -0.12516999244689941, 0.27754729986190796, 0.7412168383598328, 0.5642017722129822, -0.7972604632377625, -0.4805322289466858, -0.27132663130760193, -0.751012921333313, -0.046849559992551804, 0.06939697265625, -0.32720091938972473, 0.07898680865764618, 0.22454459965229034, -0.6275420784950256, 0.4254683256149292, 0.642974853515625, -0.4867244362831116, 0.47260427474975586, -0.06273123621940613, 0.12091559916734695, -1.4836910963058472, 0.40891337394714355, 0.055660273879766464, -0.05749541521072388, -0.4448859989643097, -0.14607933163642883, -0.051991481333971024, -0.10859841108322144, -0.3649122714996338, 0.6121675968170166, -0.2003992199897766, 0.2971448004245758, 0.1272350549697876, -0.03966781497001648, 0.09006757289171219, 0.5893644690513611, -0.11453551054000854, 0.5694193840026855, 0.8059171438217163, -0.48523586988449097, 0.41443806886672974, 0.5883215665817261, -0.1696658730506897, 0.6364955902099609, -0.605514645576477, 0.005676717031747103, -0.16433341801166534, 0.3710649609565735, -0.7107822895050049, -0.4777209758758545, 0.5586830973625183, -0.6110311150550842, 0.44677579402923584, -0.2901495099067688, -0.7687469720840454, -0.7269644141197205, -0.5473604202270508, 0.20348413288593292, 0.41931506991386414, -0.2995324730873108, 0.34195005893707275, 0.633892297744751, 0.19096171855926514, -0.34148281812667847, -1.0036356449127197, 0.15072870254516602, -0.2946268916130066, -0.5565861463546753, 0.42913225293159485, -0.43584686517715454, 0.09081655740737915, 0.10012763738632202, 0.21406781673431396, 0.004024944733828306, -0.0012248975690454245, 0.21641811728477478, 0.24967607855796814, 0.028540756553411484, -0.0804457888007164, -0.1036636233329773, -0.13223642110824585, 0.0334363728761673, -0.29234352707862854, 0.4593278765678406, -0.016678987070918083, -0.11668208241462708, -0.4366171956062317, 0.26220759749412537, 0.40419670939445496, -0.3714457154273987, 0.7494863271713257, 1.0237078666687012, -0.3889058828353882, 0.25202304124832153, -0.42025116086006165, -0.11368617415428162, -0.40846988558769226, 0.24904349446296692, -0.07367990911006927, -0.6195181012153625, 0.8543028831481934, 0.16097038984298706, 0.18039505183696747, 0.7730504274368286, 0.6672162413597107, -0.09473361074924469, 0.7423627972602844, 0.2790852189064026, -0.17017486691474915, 0.5311371684074402, -0.5587037801742554, -0.3510569930076599, -0.8328010439872742, -0.3953940272331238, -0.6844640970230103, -0.5181419253349304, -1.055437684059143, -0.44159048795700073, -0.019206637516617775, -0.23398621380329132, -0.2864827811717987, 0.5823001861572266, -0.7643541693687439, 0.28339773416519165, 0.5405582189559937, 0.1522049903869629, 0.025744453072547913, 0.041819825768470764, -0.09969634562730789, -0.04270494729280472, -0.5308071970939636, -0.289085328578949, 1.368458867073059, 0.3787823021411896, 0.3734501600265503, -0.027111709117889404, 0.8008660674095154, 0.18427065014839172, 0.08232937008142471, -0.3874146342277527, 0.531405508518219, -0.0883636623620987, -0.602320671081543, -0.19101157784461975, -0.6188925504684448, -1.0194337368011475, -0.10988625884056091, -0.19275203347206116, -0.5790274143218994, 0.4018017053604126, -0.05270183086395264, 0.15646900236606598, 0.3979848027229309, -0.6960896253585815, 1.065431833267212, -0.16676519811153412, -0.39183419942855835, 0.16632086038589478, -1.0421305894851685, 0.11104980856180191, 0.0713103637099266, 0.4908639192581177, -0.3515380620956421, 0.04087673872709274, 1.1936655044555664, -0.6594274640083313, 0.8920947909355164, -0.5136271715164185, 0.22750701010227203, 0.37302452325820923, -0.28632956743240356, 0.5395758748054504, -0.06326479464769363, -0.1766357421875, 0.5454540252685547, 0.15299010276794434, -0.48929980397224426, -0.22567279636859894, 0.615997314453125, -0.724923849105835, -0.018037978559732437, -0.46375980973243713, -0.7014560103416443, -0.12187251448631287, 0.41364285349845886, 0.2328556925058365, 0.3820611238479614, -0.14543940126895905, 0.21464556455612183, 0.4742203652858734, -0.20933625102043152, 0.40890637040138245, 0.32064563035964966, -0.11562503129243851, -0.7759342789649963, 1.0412101745605469, 0.2565993070602417, -0.16705091297626495, 0.2329379767179489, 0.37147051095962524, -0.3230143189430237, -0.48270562291145325, -0.7211301326751709, 0.2575365900993347, -0.5001261830329895, -0.42817381024360657, -0.541294276714325, -0.08343446254730225, -0.4938198924064636, 0.2076880931854248, -0.3018455505371094, -0.6996705532073975, -0.234135240316391, -0.21462108194828033, 0.8049709796905518, 0.4845592975616455, -0.45381757616996765, 0.10875482857227325, -0.642453134059906, 0.10029911249876022, -0.26147615909576416, 0.5080381631851196, -0.014771781861782074, -0.466372013092041, -0.6231381893157959, 0.17417283356189728, -0.3739149272441864, -0.5512703657150269, 0.3160325586795807, -0.06652332097291946, 0.4515179991722107, -0.022410722449421883, 0.14668497443199158, 0.7031201720237732, -0.32161837816238403, 0.9373798966407776, 0.0301369521766901, -0.6274675726890564, 0.5942221879959106, -0.5406716465950012, 0.41933876276016235, 0.9521297216415405, 0.4755544364452362, -0.5553271174430847, -0.2046366184949875, -0.8067523241043091, -0.8359755873680115, 0.7881196737289429, 0.4541952311992645, 0.1663028448820114, 0.11428126692771912, 0.20551662147045135, -0.08771279454231262, 0.3343070149421692, -0.6538217067718506, -0.8406834006309509, -0.2990097105503082, -0.4759029448032379, -0.045278459787368774, 0.006514579523354769, -0.3165988624095917, -0.6996298432350159, 0.7794270515441895, -0.04523707181215286, 0.31566354632377625, 0.161870077252388, 0.08836880326271057, -0.17613229155540466, 0.044352032244205475, 0.569432258605957, 0.5972577333450317, -0.4047259986400604, -0.09378621727228165, 0.050092313438653946, -0.851498544216156, -0.1592356413602829, 0.4738802909851074, -0.21374830603599548, 0.00879073329269886, 0.29864802956581116, 0.7356555461883545, 0.04150376468896866, -0.3732112646102905, 0.5476284027099609, -0.21513667702674866, -0.4519871771335602, -0.27028027176856995, -0.3136797845363617, 0.25148987770080566, 0.018318507820367813, 0.2482842653989792, 0.05120500922203064, -0.004494443070143461, -0.3818092346191406, 0.2707365155220032, 0.12043532729148865, -0.31237396597862244, -0.4869455397129059, 0.6561662554740906, 0.16781853139400482, -0.03728688880801201, 0.530350387096405, -0.2856113314628601, -0.5007801055908203, 0.6228075623512268, 0.2096697837114334, 0.7549445033073425, -0.09228875488042831, 0.13132119178771973, 0.7404713034629822, 0.3799903392791748, -0.007285154424607754, 0.5599916577339172, -0.11545797437429428, -0.5476392507553101, -0.2037619650363922, -0.5703928470611572, -0.2226947695016861, 0.15426643192768097, -0.9259020686149597, 0.42602643370628357, -0.19064906239509583, -0.16327279806137085, -0.11421652883291245, 0.4685073792934418, -1.0093915462493896, 0.1960885375738144, -0.09391944110393524, 1.0441597700119019, -1.0337144136428833, 0.7473203539848328, 0.6971420645713806, -0.8071659803390503, -0.7989085912704468, -0.17845988273620605, 0.18520984053611755, -0.6481615304946899, 0.12327206879854202, 0.07402332872152328, 0.7123453617095947, -0.0023001781664788723, -0.7664307951927185, -0.7091514468193054, 1.2727161645889282, 0.23047824203968048, -0.3524642884731293, 0.15443402528762817, 0.4235004186630249, 0.6001865863800049, -0.18693843483924866, 0.20324933528900146, 0.47607848048210144, 0.7999754548072815, 0.19370631873607635, -0.8270021677017212, 0.33349335193634033, -0.43436896800994873, -0.2673643231391907, 0.1403275728225708, -0.7954235672950745, 0.547480583190918, 0.08772565424442291, 0.00936194509267807, -0.17442770302295685, 0.462422639131546, 0.2418186366558075, 0.4004921317100525, 0.20932215452194214, 0.8802654147148132, 0.8641306757926941, -0.2970426082611084, 1.1553000211715698, -0.3105396628379822, 0.5058201551437378, 1.024504542350769, 0.056835684925317764, 0.6465097069740295, 0.44905906915664673, -0.46893203258514404, 0.36316418647766113, 0.7977259755134583, -0.4463074505329132, 0.3800329864025116, 0.1083364337682724, 0.15793867409229279, 0.02801867574453354, -0.28207430243492126, -0.6735005378723145, 0.29004544019699097, 0.2166808694601059, -0.2934274971485138, -0.19556057453155518, 0.03278259560465813, 0.26937246322631836, -0.20994415879249573, -0.18637850880622864, 0.7492053508758545, 0.057424016296863556, -0.2485327124595642, 0.4281325340270996, -0.039287079125642776, 0.602322518825531, -0.6040976047515869, 0.1137387678027153, -0.2615462839603424, 0.04454270750284195, -0.5140269994735718, -1.0240650177001953, 0.6037678718566895, -0.06832516193389893, -0.3169056475162506, -0.3679449260234833, 0.47486943006515503, -0.5170921087265015, -0.7822200655937195, 0.19587627053260803, 0.45569267868995667, 0.37235698103904724, 0.1567196398973465, -1.2252203226089478, 0.5203577280044556, 0.12173399329185486, -0.38908401131629944, 0.4501389265060425, 0.5442507863044739, -0.06816735118627548, 0.2959483563899994, 0.8076819181442261, 0.12488767504692078, -0.17455841600894928, 0.27493563294410706, 0.9352245330810547, -0.6066375970840454, -0.2986598312854767, -0.671802818775177, 0.834201991558075, -0.27353498339653015, -0.368602991104126, 0.8183861374855042, 1.1342008113861084, 1.0854588747024536, -0.08458959311246872, 0.7648404836654663, -0.509529173374176, 0.5533391237258911, -0.18893416225910187, 0.9187225699424744, -0.7683762907981873, -0.016777578741312027, -0.47415444254875183, -0.6849932670593262, -0.4122612476348877, 0.3061521053314209, -0.11008027195930481, 0.0948423370718956, 0.4825070798397064, 0.8116384148597717, -0.05579064041376114, 0.07353900372982025, 0.009329033084213734, 0.21743805706501007, 0.31212642788887024, 0.5151875615119934, 0.2552632987499237, -0.9998604655265808, 0.6305423974990845, -0.6477094292640686, -0.08499684929847717, 0.019481081515550613, -0.9241413474082947, -0.8338225483894348, -1.0483334064483643, -0.6426330804824829, -0.6610450148582458, -0.19587264955043793, 1.072414755821228, 0.5965213179588318, -0.8743687868118286, -0.3613141179084778, -0.02451859414577484, 0.12022082507610321, -0.11884934455156326, -0.2893737852573395, 0.6839532256126404, 0.21033033728599548, -0.7410151362419128, 0.01883781887590885, -0.030067792162299156, 0.15114273130893707, -0.0007259744452312589, -0.13739575445652008, -0.32570570707321167, -0.27117887139320374, 0.43674951791763306, 0.34300461411476135, -0.2578805088996887, 0.08105739206075668, -0.19194991886615753, -0.08509299904108047, 0.24592836201190948, 0.45272964239120483, -0.3202778995037079, 0.24899688363075256, 0.5363050103187561, 0.4481722116470337, 0.7310264706611633, -0.05524234101176262, 0.21266981959342957, -0.7378292083740234, 0.22090011835098267, 0.04079132899641991, 0.4252130687236786, 0.4617139995098114, -0.32296890020370483, 0.8827623724937439, 0.5525230169296265, -0.48278090357780457, -0.9404374957084656, -0.24302981793880463, -1.3158618211746216, 0.024918613955378532, 1.0674322843551636, 0.0923672467470169, -0.4468517601490021, -0.09885121136903763, -0.1627366840839386, 0.29637160897254944, -0.4948328137397766, 0.3605096638202667, 0.7451961636543274, 0.1254071593284607, 0.06025604531168938, -0.6827403903007507, 0.5254752039909363, -0.11927378177642822, -1.0711750984191895, 0.217261403799057, 0.30197325348854065, 0.345263808965683, 0.12130731344223022, 0.6250487565994263, -0.3578093945980072, 0.04127010703086853, -0.07674930989742279, 0.3195725977420807, -0.43037736415863037, 0.08486597239971161, -0.29405689239501953, -0.2675374448299408, -0.35451096296310425, -0.2860959470272064 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
facebook/winoground
facebook
2023-11-02T17:15:41Z
6,001
63
null
[ "task_categories:image-to-text", "task_categories:text-to-image", "task_categories:image-classification", "language:en", "arxiv:2204.03162", "region:us" ]
2023-11-02T17:15:41Z
2022-03-25T22:27:33.000Z
2022-03-25T22:27:33
--- pretty_name: Winoground task_categories: - image-to-text - text-to-image - image-classification extra_gated_prompt: >- By clicking on “Access repository” below, you also agree that you are using it solely for research purposes. The full license agreement is available in the dataset files. language: - en --- # Dataset Card for Winoground ## Dataset Description Winoground is a novel task and dataset for evaluating the ability of vision and language models to conduct visio-linguistic compositional reasoning. Given two images and two captions, the goal is to match them correctly—but crucially, both captions contain a completely identical set of words/morphemes, only in a different order. The dataset was carefully hand-curated by expert annotators and is labeled with a rich set of fine-grained tags to assist in analyzing model performance. In our accompanying paper, we probe a diverse range of state-of-the-art vision and language models and find that, surprisingly, none of them do much better than chance. Evidently, these models are not as skilled at visio-linguistic compositional reasoning as we might have hoped. In the paper, we perform an extensive analysis to obtain insights into how future work might try to mitigate these models’ shortcomings. We aim for Winoground to serve as a useful evaluation set for advancing the state of the art and driving further progress in the field. We are thankful to Getty Images for providing the image data. ## Data The captions and tags are located in `data/examples.jsonl` and the images are located in `data/images.zip`. You can load the data as follows: ```python from datasets import load_dataset examples = load_dataset('facebook/winoground', use_auth_token=<YOUR USER ACCESS TOKEN>) ``` You can get `<YOUR USER ACCESS TOKEN>` by following these steps: 1) log into your Hugging Face account 2) click on your profile picture 3) click "Settings" 4) click "Access Tokens" 5) generate an access token ## Model Predictions and Statistics The image-caption model scores from our paper are saved in `statistics/model_scores`. To compute many of the tables and graphs from our paper, run the following commands: ```bash git clone https://huggingface.co/datasets/facebook/winoground cd winoground pip install -r statistics/requirements.txt python statistics/compute_statistics.py ``` ## FLAVA Colab notebook code for Winoground evaluation https://colab.research.google.com/drive/1c3l4r4cEA5oXfq9uXhrJibddwRkcBxzP?usp=sharing ## CLIP Colab notebook code for Winoground evaluation https://colab.research.google.com/drive/15wwOSte2CjTazdnCWYUm2VPlFbk2NGc0?usp=sharing ## Paper FAQ ### Why is the group score for a random model equal to 16.67%? <details> <summary>Click for a proof!</summary> Intuitively, we might think that we can multiply the probabilities from the image and text score to get 1/16 = 6.25%. But, these scores are not conditionally independent. We can find the correct probability with combinatorics: For ease of notation, let: - a = s(c_0, i_0) - b = s(c_1, i_0) - c = s(c_1, i_1) - d = s(c_0, i_1) The group score is defined as 1 if a > b, a > d, c > b, c > d and 0 otherwise. As one would say to GPT-3, let's think step by step: 1. There are 4! = 24 different orderings of a, c, b, d. 2. There are only 4 orderings for which a > b, a > d, c > b, c > d: - a, c, b, d - a, c, d, b - c, a, b, d - c, a, d, b 3. No ordering is any more likely than another because a, b, c, d are sampled from the same random distribution. 4. We can conclude that the probability of a group score of 1 is 4/24 = 0.166... </details> ## Citation Information [https://arxiv.org/abs/2204.03162](https://arxiv.org/abs/2204.03162) Tristan Thrush and Candace Ross contributed equally. ```bibtex @inproceedings{thrush_and_ross2022winoground, author = {Tristan Thrush and Ryan Jiang and Max Bartolo and Amanpreet Singh and Adina Williams and Douwe Kiela and Candace Ross}, title = {Winoground: Probing vision and language models for visio-linguistic compositionality}, booktitle = {CVPR}, year = 2022, } ```
[ -0.28599947690963745, -0.6458777785301208, 0.4439007341861725, 0.24620957672595978, -0.1790657639503479, -0.01847570575773716, -0.043149713426828384, -0.6404505372047424, 0.14351803064346313, 0.2825374901294708, -0.3665863871574402, -0.7004086971282959, -0.6609176397323608, -0.28311464190483093, -0.22870750725269318, 1.2274086475372314, 0.08151192963123322, 0.07967762649059296, -0.21654342114925385, -0.24515214562416077, -0.46359995007514954, -0.2815536558628082, -0.5270400643348694, -0.2254876345396042, 0.3418896496295929, 0.2358437329530716, 0.6611288785934448, 0.5394124388694763, 0.7774857878684998, 0.3585791289806366, -0.09015551209449768, -0.16521377861499786, -0.5011159181594849, -0.019732896238565445, 0.012515682727098465, -0.5589131712913513, -0.6062259078025818, 0.4363201856613159, 0.36973270773887634, 0.6102076172828674, -0.4055880010128021, 0.1607200652360916, 0.23138797283172607, 0.6891801357269287, -0.22098468244075775, 0.3269491195678711, -0.5340604782104492, -0.06391268223524094, -0.03181798756122589, -0.04618440195918083, -0.38583967089653015, -0.5834219455718994, 0.16583582758903503, -0.4703213572502136, 0.29098162055015564, 0.2160659283399582, 0.9670755863189697, -0.10305456817150116, -0.22510983049869537, -0.06014811992645264, -0.3100416958332062, 0.7449308633804321, -0.502350926399231, 0.009808974340558052, 0.2169497013092041, 0.30275627970695496, -0.24757343530654907, -0.43349185585975647, -0.5757519602775574, -0.2752511501312256, 0.05838341265916824, 0.44794273376464844, -0.21591554582118988, 0.0562337227165699, 0.2873988449573517, 0.6727180480957031, -1.0150693655014038, -0.29906031489372253, -0.5211176872253418, -0.21582895517349243, 0.832887589931488, 0.06605496257543564, 0.4980102479457855, -0.23660092055797577, -0.5681166648864746, -0.5090715289115906, -0.25536394119262695, 0.29246747493743896, 0.46307942271232605, 0.18487060070037842, -0.3749523460865021, 0.7378559112548828, -0.1078135296702385, 0.9220062494277954, 0.059936657547950745, -0.17972435057163239, 0.5175056457519531, -0.30794522166252136, -0.3585239350795746, -0.2016318142414093, 0.9686676263809204, 0.8035961985588074, 0.6344622373580933, 0.06530165672302246, -0.09434115886688232, 0.32400476932525635, -0.04762829467654228, -0.6355915069580078, -0.5203599333763123, 0.12079855054616928, -0.668776273727417, -0.4408131539821625, 0.27489715814590454, -0.7085753679275513, -0.14989109337329865, -0.286331444978714, 0.7009217143058777, -0.6649651527404785, -0.15515665709972382, 0.2148500233888626, -0.4179339110851288, 0.2826067805290222, 0.3963731527328491, -0.4790375828742981, 0.08055418729782104, 0.4599287211894989, 0.8339220285415649, -0.3676689565181732, -0.5671623945236206, -0.28139424324035645, -0.008867255412042141, -0.3770444393157959, 0.9543212652206421, -0.7121945023536682, -0.12649239599704742, -0.36791107058525085, 0.17171408236026764, -0.42857885360717773, -0.44603580236434937, 0.2767355442047119, -0.22873957455158234, 0.7634874582290649, -0.12816500663757324, -0.6736599802970886, -0.43748220801353455, 0.18081392347812653, -0.7332572937011719, 0.9278228878974915, 0.12972776591777802, -0.7791363596916199, 0.4656706750392914, -0.4172515869140625, -0.35335686802864075, 0.07062249630689621, -0.2626691460609436, -0.037647176533937454, 0.18882505595684052, 0.03711365535855293, 0.52875155210495, -0.05573699250817299, 0.26187610626220703, -0.5196734666824341, -0.3781716525554657, 0.09501077979803085, -0.36839282512664795, 1.0712093114852905, 0.08354123681783676, -0.311114639043808, 0.11768088489770889, -0.6962037682533264, 0.18208758533000946, 0.2528752088546753, -0.2687922716140747, -0.21794673800468445, -0.01225190982222557, 0.17641787230968475, 0.41524332761764526, 0.17323485016822815, -0.3046417534351349, 0.31242042779922485, -0.25736021995544434, 0.046697624027729034, 0.8889934420585632, 0.07153124362230301, 0.309827983379364, -0.48216280341148376, 0.6184712052345276, -0.09392157942056656, 0.34893956780433655, 0.00040586083196103573, -0.9468256235122681, -0.2858720123767853, -0.22478078305721283, -0.004017313476651907, 0.7529295682907104, -0.7882779240608215, 0.21963365375995636, -0.08269811421632767, -0.6766961216926575, -0.3564102053642273, -0.07948526740074158, 0.4783061146736145, 0.4911574721336365, 0.2261202186346054, -0.5906551480293274, -0.07199578732252121, -1.0578057765960693, -0.20883376896381378, -0.4317743480205536, -0.08380760997533798, 0.17618869245052338, 0.3648624122142792, 0.16157670319080353, 0.7273601293563843, -0.7307985424995422, -0.3535494804382324, -0.33294954895973206, -0.11154655367136002, 0.5339852571487427, 0.5946606993675232, 0.7683672904968262, -0.8248565196990967, -0.44901803135871887, -0.25617077946662903, -0.867850124835968, 0.06834141165018082, 0.14321249723434448, -0.2960472106933594, 0.17741145193576813, 0.1947740912437439, -0.6107962131500244, 0.6210858821868896, 0.8037322759628296, -0.5371019840240479, 0.7780211567878723, -0.22194965183734894, 0.4019007980823517, -1.211629033088684, -0.002497248351573944, 0.13725227117538452, 0.018256088718771935, -0.5216174721717834, -0.010430713184177876, -0.35200297832489014, -0.03396639972925186, -0.22359289228916168, 0.4872521758079529, -0.5325366854667664, 0.16008004546165466, -0.04720008373260498, 0.17906366288661957, 0.03863776475191116, 0.6346185803413391, -0.08595836907625198, 0.4819284975528717, 0.867385983467102, -0.3588671088218689, 0.3289891481399536, 0.12112294137477875, -0.5418863892555237, 0.9356444478034973, -0.7163808345794678, -0.20494526624679565, -0.18981976807117462, 0.027486860752105713, -1.4719661474227905, -0.4514477550983429, 0.36527082324028015, -0.596386730670929, 0.4120856523513794, 0.04903694614768028, -0.4913024306297302, -0.4672859013080597, -0.391190767288208, 0.3288407623767853, 0.4562366008758545, -0.18318814039230347, 0.5791956186294556, 0.6247075200080872, -0.09615854173898697, -0.24854978919029236, -0.7173661589622498, -0.024182861670851707, -0.32452109456062317, -0.938660740852356, 0.2509543001651764, -0.4328078627586365, -0.2552177906036377, 0.009669080376625061, -0.06260847300291061, 0.00680139334872365, -0.3619721531867981, 0.2745147943496704, 0.4039171040058136, 0.008682481944561005, 0.11844538897275925, -0.3048304319381714, -0.0839918926358223, -0.05037643015384674, -0.20111247897148132, 0.33292287588119507, -0.3672448396682739, -0.22993499040603638, -0.28115278482437134, 0.5444652438163757, 0.39940518140792847, -0.24001216888427734, 0.6077366471290588, 0.6162749528884888, -0.384067177772522, -0.011703824624419212, -0.5455559492111206, -0.07371773570775986, -0.5035473704338074, 0.27100926637649536, -0.29356276988983154, -0.7731407880783081, 0.7147976160049438, 0.5834249258041382, -0.07640618085861206, 0.5571570992469788, 0.4435822367668152, -0.24513083696365356, 0.9382057189941406, 0.6970759034156799, -0.04746350646018982, 0.5486713647842407, -0.1723022609949112, 0.12060671299695969, -0.4941287040710449, -0.2907246947288513, -0.14281800389289856, -0.3711031377315521, -0.9975157380104065, -0.4663698971271515, 0.4228060245513916, -0.036181479692459106, -0.023926356807351112, 0.41571396589279175, -0.7443471550941467, 0.5046663284301758, 0.6617856025695801, 0.30741503834724426, 0.12373840808868408, 0.26929372549057007, -0.1294860988855362, -0.03429452329874039, -0.7033525705337524, -0.3771149218082428, 0.9378318190574646, 0.08370359241962433, 0.7821164131164551, 0.07647500187158585, 0.6694541573524475, 0.24706047773361206, 0.5022175908088684, -0.5796792507171631, 0.856911301612854, -0.20020556449890137, -0.7402829527854919, -0.19041869044303894, -0.45653045177459717, -0.9730048179626465, 0.32010847330093384, -0.020647471770644188, -1.158856987953186, 0.16187462210655212, 0.1975971907377243, -0.2064642608165741, 0.21525724232196808, -1.0240530967712402, 1.1093165874481201, -0.24547460675239563, -0.31344637274742126, 0.2139502614736557, -0.8843117356300354, 0.5100602507591248, 0.17997139692306519, 0.2240200787782669, -0.19910867512226105, 0.39055314660072327, 1.1079071760177612, -0.269186794757843, 0.7098366618156433, -0.23972386121749878, -0.1298653781414032, 0.6883401870727539, 0.23282518982887268, 0.2205996960401535, -0.22760318219661713, 0.006438235752284527, 0.10786743462085724, 0.1865493208169937, -0.33612993359565735, -0.5076791644096375, 0.6044878959655762, -0.27970314025878906, -0.4412805736064911, -0.551888644695282, -0.6394878029823303, -0.09764759242534637, 0.16254356503486633, 0.4361853003501892, 0.42888838052749634, -0.004482734482735395, 0.03844280540943146, 0.35722118616104126, -0.3014337718486786, 0.46847665309906006, 0.0984393060207367, -0.4036409556865692, -0.5843136310577393, 1.0784798860549927, 0.17044369876384735, 0.43190672993659973, 0.16178160905838013, 0.26588141918182373, -0.2649388611316681, -0.0904184952378273, -0.10909004509449005, 0.39653852581977844, -0.7293184995651245, -0.056506384164094925, -0.3711949288845062, -0.01190605852752924, -0.2659685015678406, 0.010803277604281902, -0.15789952874183655, -0.34742361307144165, -0.04504820331931114, -0.269148051738739, 0.21867817640304565, 0.7175474762916565, -0.23066695034503937, 0.25330308079719543, -0.37502023577690125, 0.28446972370147705, 0.3223302364349365, 0.5979418158531189, 0.057604216039180756, -0.46586874127388, 0.053663741797208786, -0.0851018875837326, -0.38547590374946594, -1.1960216760635376, 0.16275686025619507, 0.07296206057071686, 0.7174387574195862, 0.5320584774017334, -0.28521740436553955, 0.660929262638092, -0.4258542060852051, 0.7140573859214783, 0.2552422881126404, -0.690142035484314, 0.5247890949249268, -0.5468597412109375, 0.08998610824346542, 0.6487342119216919, 0.24010984599590302, -0.41258329153060913, -0.48846808075904846, -0.9805899262428284, -0.6658260226249695, 0.7142342925071716, 0.3904646337032318, -0.1388920545578003, 0.09551193565130234, 0.05767850577831268, -0.019291162490844727, 0.22910532355308533, -0.9291561841964722, -0.3292691707611084, -0.027217116206884384, -0.4465635418891907, -0.3398226499557495, -0.08068078011274338, -0.11167258024215698, -0.3996191620826721, 0.4407058358192444, -0.054298896342515945, 0.5668765306472778, 0.13499349355697632, 0.1941903829574585, 0.11758361756801605, -0.09141924977302551, 0.6301288604736328, 0.7205848097801208, -0.48700764775276184, -0.05752567946910858, -0.26420655846595764, -0.6224104166030884, -0.018269581720232964, 0.23717650771141052, 0.02851225435733795, 0.032342299818992615, 0.672936201095581, 0.672622799873352, -0.05763790011405945, -0.6031895279884338, 0.7673808932304382, -0.08693663775920868, -0.26527169346809387, -0.11397221684455872, 0.20900766551494598, 0.0875026136636734, 0.32255181670188904, 0.4649181663990021, 0.16204708814620972, 0.10995432734489441, -0.5733139514923096, 0.4934602975845337, 0.41868647933006287, -0.4694478213787079, -0.32644450664520264, 0.6727566719055176, -0.30391213297843933, -0.2847196161746979, 0.2755211293697357, -0.3724502623081207, -0.6115337014198303, 0.7765448689460754, 0.24631251394748688, 0.8784404397010803, -0.4310706555843353, 0.46633365750312805, 0.3316056430339813, 0.6567798852920532, -0.13781441748142242, 0.6041722297668457, 0.0804484635591507, -0.5934683084487915, -0.25400310754776, -0.729034960269928, -0.1432526856660843, 0.07356683164834976, -0.7098070383071899, -0.07986538112163544, 0.008851535618305206, -0.127040833234787, -0.09023844450712204, -0.2197292298078537, -0.7920845746994019, 0.43399348855018616, 0.05452098697423935, 0.8293069005012512, -0.99359130859375, 0.361514687538147, 0.6223713159561157, -0.40914469957351685, -1.0402759313583374, 0.07443716377019882, 0.1706850230693817, -0.8017163276672363, 0.3666827082633972, 0.4600456953048706, 0.11462903022766113, -0.1479688137769699, -0.818459153175354, -0.7831853628158569, 0.9810865521430969, 0.21574696898460388, -0.3498231768608093, 0.05329607427120209, -0.15277479588985443, 0.6918075680732727, -0.47302982211112976, 0.394776314496994, 0.3071778416633606, 0.4531098008155823, 0.20491036772727966, -0.7856083512306213, 0.09174854308366776, -0.4012719690799713, 0.03546537458896637, -0.11314254999160767, -0.5679174065589905, 0.8071103692054749, -0.5319567918777466, -0.23503659665584564, -0.22117380797863007, 0.4659448564052582, 0.45178064703941345, 0.5372767448425293, 0.5557375550270081, 0.5665598511695862, 0.6565764546394348, -0.18958191573619843, 1.2580311298370361, -0.1668548882007599, 0.5232304930686951, 1.0648752450942993, -0.12295503914356232, 0.7934211492538452, 0.5345174074172974, -0.4604109525680542, 0.39099952578544617, 0.8501747250556946, -0.12689566612243652, 0.5329050421714783, 0.2627738118171692, 0.0328025296330452, -0.24845129251480103, 0.1919197142124176, -0.38555923104286194, 0.685724675655365, 0.07684581726789474, -0.4281511604785919, -0.28270217776298523, 0.05655524879693985, -0.008656986989080906, -0.15436403453350067, -0.026981741189956665, 0.5926104784011841, 0.1363029032945633, -0.7641217708587646, 0.39116182923316956, -0.2613688111305237, 0.3930037319660187, -0.5454652905464172, -0.09529563784599304, -0.32678377628326416, 0.1321442425251007, -0.12451505661010742, -1.075740098953247, 0.1525198519229889, -0.07103113830089569, -0.24413293600082397, -0.03214113786816597, 0.5147051811218262, -0.6098877787590027, -0.8302080035209656, 0.43891772627830505, 0.5794495344161987, 0.40150925517082214, -0.1755136251449585, -0.8364874720573425, -0.0775262638926506, 0.2685563862323761, -0.5531425476074219, 0.19744734466075897, 0.44035080075263977, -0.07799069583415985, 0.5806627869606018, 0.5867827534675598, 0.062157921493053436, 0.05525841936469078, 0.11650172621011734, 0.7403902411460876, -0.6083378791809082, -0.5160745978355408, -0.883023738861084, 0.6975460648536682, -0.13794651627540588, -0.36346328258514404, 0.7679635286331177, 0.6670019030570984, 0.9746482372283936, -0.15049923956394196, 0.6040313839912415, -0.364857017993927, 0.1827470064163208, -0.42326927185058594, 0.8694237470626831, -0.8592594861984253, -0.07424742728471756, -0.8281452655792236, -1.064605474472046, -0.35628408193588257, 0.6843670606613159, -0.39816901087760925, 0.39237815141677856, 0.6023609638214111, 0.9133948683738708, -0.12920868396759033, -0.10760018974542618, 0.23986098170280457, 0.1058301031589508, 0.32115083932876587, 0.8553534746170044, 0.5260910391807556, -0.5498510003089905, 0.5720432996749878, -0.26025503873825073, -0.6593114137649536, 0.00774961756542325, -0.9025634527206421, -0.891244649887085, -0.7493935823440552, -0.4107781946659088, -0.42466747760772705, -0.11271589994430542, 0.39203205704689026, 0.4366719126701355, -0.6135791540145874, -0.32893106341362, 0.10000276565551758, 0.10674622654914856, -0.4534434378147125, -0.36066922545433044, 0.5408874750137329, 0.13134963810443878, -0.494424045085907, 0.05972704663872719, 0.2966262102127075, 0.19066910445690155, 0.114590585231781, -0.026902182027697563, -0.2730594873428345, 0.0022122799418866634, 0.61989825963974, -0.0558575764298439, -0.5890595316886902, -0.3761672377586365, -0.013734192587435246, -0.1733226627111435, 0.16161949932575226, 0.2344462126493454, -0.43141305446624756, 0.5763975977897644, 0.6059370040893555, 0.138132244348526, 0.2901367247104645, 0.3349502980709076, 0.3023481070995331, -0.42930904030799866, -0.0009537215810269117, -0.07730282098054886, 0.35178622603416443, 0.36798039078712463, -0.10353624075651169, 0.6639226675033569, 0.6483191847801208, -0.5744002461433411, -0.7336028218269348, 0.07818065583705902, -1.398924469947815, -0.0695393979549408, 1.1184141635894775, -0.057812660932540894, -0.3157021403312683, 0.38590845465660095, -0.27004474401474, 0.03507465124130249, -0.29118871688842773, 0.6808231472969055, 0.9361104369163513, -0.331668496131897, -0.1140817329287529, -0.6906443238258362, 0.38165876269340515, 0.24225130677223206, -0.7145230770111084, -0.27126345038414, 0.6274454593658447, 0.4559837579727173, 0.28842806816101074, 0.7370160222053528, -0.019957344979047775, 0.195744127035141, 0.04407137259840965, 0.15502050518989563, 0.06958078593015671, -0.33089083433151245, -0.27644965052604675, 0.5185766220092773, -0.46136531233787537, -0.3826755881309509 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
m1guelpf/nouns
m1guelpf
2022-09-25T06:18:40Z
5,983
9
null
[ "task_categories:text-to-image", "annotations_creators:machine-generated", "language_creators:other", "multilinguality:monolingual", "size_categories:10K<n<100K", "language:en", "license:cc0-1.0", "region:us" ]
2022-09-25T06:18:40Z
2022-09-25T03:30:09.000Z
2022-09-25T03:30:09
--- license: cc0-1.0 annotations_creators: - machine-generated language: - en language_creators: - other multilinguality: - monolingual pretty_name: 'Nouns auto-captioned' size_categories: - 10K<n<100K tags: [] task_categories: - text-to-image task_ids: [] --- # Dataset Card for Nouns auto-captioned _Dataset used to train Nouns text to image model_ Automatically generated captions for Nouns from their attributes, colors and items. Help on the captioning script appreciated! For each row the dataset contains `image` and `text` keys. `image` is a varying size PIL jpeg, and `text` is the accompanying text caption. Only a train split is provided. ## Citation If you use this dataset, please cite it as: ``` @misc{piedrafita2022nouns, author = {Piedrafita, Miguel}, title = {Nouns auto-captioned}, year={2022}, howpublished= {\url{https://huggingface.co/datasets/m1guelpf/nouns/}} } ```
[ -0.2710294723510742, -0.24509099125862122, -0.012552617117762566, 0.3471297025680542, -0.4577803909778595, 0.0834084078669548, 0.04298634082078934, -0.01904286816716194, 0.2602071464061737, 0.3611879348754883, -0.5555445551872253, -0.40761807560920715, -0.39573928713798523, 0.4370061755180359, -0.260002076625824, 1.0216468572616577, 0.03296860307455063, 0.0799994096159935, -0.3047615587711334, -0.017489591613411903, -0.5633734464645386, -0.21830309927463531, -0.5845623016357422, -0.059529200196266174, 0.7916193008422852, 0.7585223317146301, 0.7892181277275085, 1.3300535678863525, 0.8302350044250488, 0.35556167364120483, 0.4987766742706299, 0.0317397378385067, -0.08675839751958847, -0.11486051231622696, -0.34528079628944397, -0.23586419224739075, -0.2429901361465454, 0.18766425549983978, 0.6908386945724487, 0.2585294544696808, 0.03747514635324478, 0.2833080589771271, -0.44111067056655884, 0.48566120862960815, -0.3582412600517273, 0.8318746089935303, -0.6495891213417053, 0.03268185257911682, -0.1712019443511963, -0.2646348476409912, -0.12475113570690155, -0.28851318359375, -0.2981947958469391, -0.803519606590271, -0.05558527633547783, 0.6590662002563477, 1.4584121704101562, 0.30653369426727295, -0.14927814900875092, -0.30442550778388977, -0.3322688639163971, 0.7988301515579224, -0.55466228723526, -0.05604313686490059, 0.676562488079071, 0.5278037190437317, 0.31305715441703796, -0.7382099628448486, -0.7117128968238831, -0.17988546192646027, -0.2845340371131897, 0.10793504118919373, 0.031061241403222084, -0.31109514832496643, 0.2695150673389435, 0.7485647797584534, -0.33912158012390137, -0.025314372032880783, -0.867638349533081, -0.25757157802581787, 0.8943687081336975, 0.3155372142791748, 0.5285137295722961, -0.43600067496299744, -0.36392268538475037, -0.4748881459236145, -0.30862516164779663, -0.31862062215805054, 0.660577654838562, 0.6531380414962769, -0.46750035881996155, 1.0665016174316406, -0.21557515859603882, 0.5233222246170044, -0.06354095786809921, 0.03609480336308479, 0.5899205803871155, -0.4069424569606781, -0.5759562849998474, -0.11104708909988403, 1.002892017364502, 0.8041465878486633, 0.6334101557731628, -0.29823654890060425, -0.11213485151529312, 0.13812324404716492, 0.27482762932777405, -0.5975267887115479, -0.7630789875984192, 0.14429442584514618, -0.45817551016807556, -0.5745972990989685, 0.3967944085597992, -0.8282516002655029, -0.15828056633472443, -0.49347925186157227, 0.4694720208644867, -0.13164262473583221, -0.26980024576187134, -0.06492982804775238, -0.2635660469532013, 0.6312648057937622, 0.0038173943758010864, -0.9806484580039978, 0.4705253541469574, 0.13682341575622559, 0.7489455342292786, -0.2055559754371643, -0.43616610765457153, -0.2809264063835144, 0.02792896330356598, -0.22559641301631927, 1.0596859455108643, -0.21094927191734314, -0.21799740195274353, -0.11401382088661194, 0.726618766784668, -0.47198209166526794, -0.42507943511009216, 0.35495656728744507, -0.389303058385849, 0.6871317028999329, -0.2998672425746918, -0.5613920092582703, 0.09014987200498581, 0.1923559457063675, -1.030133605003357, 0.6750330924987793, 0.362636923789978, -0.9544067978858948, 0.1014602780342102, -1.3173165321350098, -0.6311708688735962, 0.26586708426475525, -0.16591721773147583, -0.7710129618644714, -0.24387377500534058, 0.19115924835205078, 0.4956115782260895, -0.06681329011917114, -0.12143911421298981, -0.23704855144023895, -0.0733112320303917, 0.1669570356607437, 0.061410121619701385, 0.7955927848815918, 0.373277485370636, 0.2298252135515213, -0.11612814664840698, -0.5748149752616882, -0.05811554193496704, 0.7372472882270813, -0.15619614720344543, 0.0791432335972786, -0.2745015621185303, 0.6461514234542847, 0.03462706506252289, 0.3850003182888031, -0.6256513595581055, 0.3952438235282898, -0.20139342546463013, 0.2806381583213806, 0.37405872344970703, 0.15486139059066772, 0.6665976047515869, -0.3427540063858032, 0.6215542554855347, 0.0027032301295548677, 0.2494732141494751, -0.4854397177696228, -0.2211049348115921, -0.3889602720737457, -0.32403311133384705, 0.4805891215801239, 0.5216242671012878, -0.847436785697937, 0.8257589340209961, -0.09176161140203476, -0.3565705418586731, -0.32163697481155396, 0.0016764997271820903, 0.12609724700450897, 0.49622273445129395, 0.32489174604415894, -0.3209454417228699, -0.4624886214733124, -1.0582244396209717, 0.22347673773765564, -0.22166112065315247, 0.21040469408035278, 0.48000186681747437, 0.6010067462921143, 0.08198171108961105, 0.8044083118438721, -0.6814115643501282, -0.7610016465187073, -0.07360942661762238, 0.022724729031324387, 0.18269243836402893, 0.7944867014884949, 0.5971614122390747, -0.8302475810050964, -0.33047738671302795, -0.26702165603637695, -0.7511422038078308, -0.07873173803091049, -0.38316747546195984, -0.4450160562992096, 0.0687374621629715, 0.5244395732879639, -0.3773280084133148, 0.40073591470718384, 0.21422937512397766, -0.4164670407772064, 0.6112357378005981, -0.04669226333498955, 0.19258679449558258, -1.1898378133773804, 0.20643004775047302, -0.0342063382267952, -0.12533541023731232, 0.003923078533262014, -0.13184168934822083, 0.06016789749264717, 0.1980360746383667, -0.2811906933784485, 0.5704696774482727, -0.7550609111785889, -0.2056794911623001, -0.2772487998008728, -0.4314265847206116, 0.08586790412664413, 0.4580465257167816, 0.15915925800800323, 0.5257895588874817, 0.9592634439468384, -0.2509321868419647, 1.2016429901123047, 0.6674122214317322, -0.33988282084465027, 0.7721826434135437, -0.6930309534072876, -0.20946508646011353, -0.1573992371559143, -0.17603115737438202, -0.9667704105377197, -0.6057659983634949, 0.5986905097961426, -0.5079818964004517, 0.3192141354084015, -0.26288747787475586, -0.9985682368278503, -0.4039035737514496, -0.21396872401237488, 0.24259008467197418, 0.06722791492938995, -0.3401660919189453, 0.38411667943000793, 0.38845378160476685, -0.21351312100887299, -0.1411767154932022, -0.7870094180107117, 0.37133198976516724, -0.31479084491729736, -0.04638979583978653, 0.1601542979478836, -0.33885490894317627, -0.02809392288327217, 0.01795542985200882, 0.19172601401805878, -0.36788180470466614, -0.16967390477657318, 0.40040960907936096, 0.44186222553253174, 0.028955167159438133, 0.5158302187919617, 0.10140740126371384, -0.09917113184928894, 0.05867045745253563, 0.016696525737643242, 0.5066615343093872, -0.29631057381629944, -0.19642330706119537, -0.6545485854148865, 0.22340603172779083, 0.5507270097732544, -0.038324251770973206, 0.7634864449501038, 0.5079048871994019, -0.39717844128608704, 0.07819739729166031, -0.17229607701301575, -0.18590836226940155, -0.40283235907554626, 0.18840743601322174, -0.32197681069374084, -0.01555393636226654, 0.5430837869644165, 0.23399513959884644, -0.01624089665710926, 0.7600660920143127, 0.49521148204803467, -0.5990564823150635, 0.35601863265037537, 0.2565249502658844, -0.2814096510410309, 0.4858570396900177, -0.5816865563392639, -0.22928595542907715, -0.6310566663742065, -0.3014245927333832, -0.26123082637786865, -0.43802541494369507, -0.4711826741695404, -0.12754832208156586, -0.06895647943019867, -0.22835904359817505, -0.3936381936073303, 0.529015839099884, -0.6323968768119812, 0.9583168625831604, 0.5534415245056152, 0.03993873670697212, 0.17859838902950287, 0.42434290051460266, 0.1452019214630127, 0.1113927811384201, -0.5628374814987183, -0.38438594341278076, 1.0589241981506348, 0.4061463475227356, 0.8744287490844727, -0.2542565166950226, 0.4387020468711853, 0.517790675163269, 0.03757700324058533, -0.7180187702178955, 0.3413800895214081, -0.2075410634279251, -0.6315216422080994, -0.3809218108654022, -0.08630837500095367, -1.097758173942566, -0.14705272018909454, -0.2688443958759308, -0.04882362484931946, 0.018835797905921936, -0.014148704707622528, -0.05526712164282799, 0.21927009522914886, -0.5866424441337585, 1.007839322090149, -0.39709681272506714, 0.06299788504838943, 0.4427814781665802, -0.756874680519104, 0.009673665277659893, 0.14603839814662933, -0.09789568930864334, -0.34536731243133545, -0.094698466360569, 0.7453968524932861, -0.1978103369474411, 0.7515261173248291, -0.20692893862724304, 0.15435217320919037, -0.0376322902739048, -0.19037549197673798, -0.08338381350040436, 0.03666552156209946, 0.15489502251148224, 0.16719990968704224, 0.12292389571666718, -0.5024341940879822, -0.1635943055152893, 0.6409866809844971, -0.7019683718681335, 0.23074284195899963, -0.5513302683830261, -0.6204329133033752, 0.14591403305530548, 0.16732002794742584, 0.5657485723495483, 0.40388625860214233, -0.08673729747533798, 0.1489172875881195, 0.17454738914966583, -0.13350607454776764, 0.6088823080062866, 0.030887411907315254, -0.20003582537174225, -0.5889294147491455, 0.8164430856704712, 0.03357568010687828, -0.03427428379654884, 0.23461349308490753, 0.32662233710289, -0.5682721138000488, -0.27977702021598816, -0.7636646032333374, 0.5294787883758545, -0.3709132969379425, -0.8372088074684143, -0.42640992999076843, -0.4594511091709137, -0.4876774251461029, 0.027673665434122086, -0.33598044514656067, -0.49286267161369324, -0.7104926705360413, -0.19240473210811615, 0.8101938962936401, 0.5966663956642151, -0.05146154761314392, 0.7321519255638123, -0.39500856399536133, 0.44386112689971924, 0.2661856710910797, 0.5845643877983093, -0.3333497941493988, -0.6809594035148621, -0.29510101675987244, -0.2690889537334442, 0.003949339035898447, -0.8277263045310974, 0.7515108585357666, 0.4895423948764801, 0.5848962068557739, 0.36395344138145447, 0.016804877668619156, 0.2757612466812134, -0.533169150352478, 0.5392274260520935, 0.17656216025352478, -0.5377664566040039, 0.7117030024528503, -0.43188783526420593, 0.47264063358306885, 0.5679041743278503, 0.46345043182373047, -0.22690868377685547, -0.2856154441833496, -0.866921067237854, -0.7038398385047913, 0.7261177897453308, 0.4691157341003418, 0.3787551522254944, 0.03342206031084061, 0.2959721088409424, 0.09095454216003418, 0.4636911451816559, -1.001346468925476, -0.5164434313774109, -0.5293827652931213, -0.5229621529579163, 0.3106835186481476, -0.03358675166964531, -0.09564203023910522, -0.6159060597419739, 0.6736111640930176, -0.28184112906455994, 0.5448841452598572, -0.04962465539574623, -0.046946920454502106, 0.019368525594472885, -0.2840101718902588, 0.4487049877643585, 0.29281580448150635, -0.25844281911849976, -0.09793663769960403, -0.4144100546836853, -0.3629997968673706, -0.2543918788433075, 0.1759539395570755, 0.08635734021663666, 0.13443362712860107, 0.41645997762680054, 0.6917097568511963, -0.12491513043642044, -0.11484800279140472, 0.5164474248886108, -0.010943395085632801, -0.29319190979003906, -0.7608521580696106, 0.011906085535883904, 0.0738786906003952, 0.22026875615119934, 0.21611951291561127, -0.19853097200393677, -0.09355367720127106, -0.3804071843624115, 0.15607409179210663, 0.26327750086784363, 0.06413315236568451, -0.2202138751745224, 0.4430631697177887, 0.02380111999809742, -0.2418903112411499, 0.6642758250236511, -0.3278796076774597, -0.3211236894130707, 0.8713887333869934, 0.2525049149990082, 0.5336778163909912, -0.06987514346837997, 0.2408735752105713, 0.6995434761047363, 0.42461347579956055, 0.043465957045555115, 0.5969608426094055, -0.06898899376392365, -0.962776780128479, 0.03767186030745506, -0.7072468400001526, -0.22677721083164215, 0.30554714798927307, -0.7334494590759277, 0.1564510315656662, -0.6316880583763123, 0.031030699610710144, 0.19358058273792267, 0.08753932267427444, -0.8440355658531189, 0.48551324009895325, 0.18428853154182434, 0.8110772967338562, -1.3042384386062622, 0.7260908484458923, 0.7783435583114624, -0.8788300156593323, -0.8163661956787109, -0.39157184958457947, -0.3271953761577606, -0.9034423828125, 0.7980763912200928, 0.01995808817446232, 0.3526604175567627, 0.15999062359333038, -1.1776317358016968, -0.636757493019104, 1.0488792657852173, -0.20943592488765717, -0.40010616183280945, 0.18635383248329163, 0.14100216329097748, 0.4547399580478668, -0.9155063629150391, 0.160775825381279, 0.5444726347923279, 0.7577083706855774, 0.21542677283287048, -0.7933191657066345, -0.40418675541877747, -0.43077200651168823, -0.1590844988822937, -0.42085662484169006, -0.34291279315948486, 0.5322601199150085, -0.2701021730899811, -0.29498642683029175, 0.3242124617099762, 0.6938402056694031, 0.02658606879413128, 0.33440685272216797, 0.7537215352058411, 0.36569085717201233, 0.47131550312042236, -0.2673180401325226, 0.8410383462905884, 0.12903298437595367, 0.49948129057884216, 1.2511764764785767, -0.1173633486032486, 0.6317257881164551, 0.6941803693771362, -0.24150590598583221, 0.571850061416626, 0.6080185770988464, -1.0345348119735718, 0.6329982876777649, 0.25589898228645325, 0.23360846936702728, -0.014887222088873386, -0.019579287618398666, -0.09796106070280075, 0.5574036240577698, 0.1804574429988861, -0.860245943069458, -0.20750530064105988, 0.30530017614364624, 0.029531331732869148, 0.17741301655769348, -0.31960856914520264, 1.020108699798584, -0.30533283948898315, -0.16628314554691315, 0.19445966184139252, -0.23517398536205292, 0.577017068862915, -0.21352523565292358, 0.011467574164271355, -0.3231792449951172, -0.17074039578437805, -0.27581584453582764, -1.092147946357727, 0.45806658267974854, -0.06790510565042496, -0.4300599694252014, -0.2122710645198822, 0.6301423907279968, -0.8015338778495789, -0.9103732109069824, -0.12121821939945221, 0.4697333574295044, 0.5520362854003906, -0.05852508544921875, -1.0302953720092773, 0.09519978612661362, -0.03808702155947685, 0.020284587517380714, -0.08418718725442886, 0.1149059310555458, 0.209489643573761, 0.6116331815719604, 0.5514323711395264, 0.3670046329498291, -0.05837620794773102, 0.29077765345573425, 0.8136343359947205, -0.668450117111206, -0.492816299200058, -0.53053218126297, 0.36873534321784973, -0.37709271907806396, -0.11114552617073059, 0.5406427383422852, 0.8972374796867371, 0.6449458003044128, -0.663353681564331, 0.5236465334892273, -0.29099196195602417, 0.632376492023468, -0.3524555563926697, 0.9899482727050781, -0.518332302570343, -0.2630433440208435, 0.07213342934846878, -0.7206974625587463, -0.5525618195533752, 0.821685254573822, -0.012519219890236855, 0.013521965593099594, 0.4785340428352356, 0.9413933157920837, -0.2194606214761734, -0.16642732918262482, 0.16558167338371277, 0.010906736366450787, -0.04889300465583801, 0.24271100759506226, 0.6331188678741455, -0.8525576591491699, 0.26365217566490173, -0.4368584156036377, -0.004406445659697056, 0.06756964325904846, -1.177799940109253, -0.7520677447319031, -0.876545250415802, -0.8965345621109009, -0.20954757928848267, -0.012765051797032356, 0.854026198387146, 0.7931154370307922, -0.9103481769561768, -0.282121479511261, 0.13325895369052887, -0.02832353673875332, 0.08315960317850113, -0.34371277689933777, 0.7314544916152954, -0.30748406052589417, -0.9583503007888794, -0.02093249373137951, 0.03496694937348366, 0.3722347021102905, -0.10214642435312271, 0.15352311730384827, -0.38214775919914246, -0.015632502734661102, 0.2510758936405182, 0.5090301632881165, -0.28956687450408936, 0.07520531117916107, -0.17438912391662598, -0.1952883005142212, 0.330196350812912, 0.3435724973678589, -0.6034079790115356, 0.2867630124092102, 0.43366819620132446, 0.14333656430244446, 0.18046393990516663, 0.05180106684565544, 0.20685575902462006, -0.8563129901885986, -0.05189243331551552, 0.07316688448190689, 0.5053929090499878, 0.6805804371833801, -0.41796496510505676, 0.5563841462135315, 0.3715059459209442, -0.48052743077278137, -0.7039318680763245, -0.19168499112129211, -1.3847264051437378, -0.0030022524297237396, 1.1939196586608887, 0.16700761020183563, -0.4158007800579071, -0.007354814559221268, -0.3431473970413208, 0.18365222215652466, -0.35636353492736816, 0.7791570425033569, 0.5713562369346619, 0.0738644003868103, -0.42049121856689453, -0.14457933604717255, 0.4699528217315674, -0.12512865662574768, -1.1414391994476318, 0.09715751558542252, 0.46530166268348694, 0.48412495851516724, 0.17592239379882812, 0.21575075387954712, -0.48738566040992737, 0.2293597012758255, -0.14101135730743408, 0.5352716445922852, -0.5236406922340393, -0.3520036041736603, -0.424255907535553, -0.11062771081924438, -0.4587497115135193, -0.9540189504623413 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
stingning/ultrachat
stingning
2023-10-12T05:55:01Z
5,977
290
null
[ "task_categories:conversational", "task_categories:text-generation", "size_categories:1M<n<10M", "language:en", "license:mit", "region:us" ]
2023-10-12T05:55:01Z
2023-04-20T15:15:28.000Z
2023-04-20T15:15:28
--- license: mit task_categories: - conversational - text-generation language: - en size_categories: - 1M<n<10M pretty_name: UltraChat --- # Dataset Card for Dataset Name ## Dataset Description An open-source, large-scale, and multi-round dialogue data powered by Turbo APIs. In consideration of factors such as safeguarding privacy, **we do not directly use any data available on the Internet as prompts**. To ensure generation quality, two separate ChatGPT Turbo APIs are adopted in generation, where one plays the role of the user to generate queries and the other generates the response. We instruct the user model with carefully designed prompts to mimic human user behavior and call the two APIs iteratively. The generated dialogues undergo further post-processing and filtering. ULtraChat is composed of three sectors: - 🌏 **Questions about the World**: The dialogue data in this sector is derived from a wide range of inquiries related to concepts, entities, and objects from the real world. The topics covered are extensive, spanning areas such as technology, art, and entrepreneurship. - ✍🏻 **Writing and Creation**: The dialogue data in this sector is driven by the demands for writing/creation from scratch, and encompasses any tasks that an AI assistant may aid within the creative process, spanning from email composition to crafting narratives and plays, and beyond. - 📋 **Assistance on Existent Materials**: The dialogue data in this sector is generated based on existing materials, including but not limited to rewriting, continuation, summarization, and inference, covering a diverse range of topics. - Repository: [UltraChat](https://github.com/thunlp/UltraChat) - Explorer: [plain-explorer](http://39.101.77.220/), [Nomic-AI-Atlas-Explorer](https://atlas.nomic.ai/map/0ce65783-c3a9-40b5-895d-384933f50081/a7b46301-022f-45d8-bbf4-98107eabdbac) ## Dataset Structure Each line in the downloaded data file is a json dict containing the data id and dialogue data in a list format. Below is an example line. ``` { "id": "0", "data": [ "How can cross training benefit groups like runners, swimmers, or weightlifters?", "Cross training can benefit groups like runners, swimmers, or weightlifters in the following ways: ...", "That makes sense. I've been wanting to improve my running time, but I never thought about incorporating strength training. Do you have any recommendations for specific exercises?", "Sure, here are some strength training exercises that can benefit runners: ...", "Hmm, I'm not really a fan of weightlifting though. Can I incorporate other forms of exercise into my routine to improve my running time?", "Yes, absolutely! ...", "..." ] } ``` ### Citation Information ```bibtex @misc{UltraChat, author = {Ding, Ning and Chen, Yulin and Xu, Bokai and Hu, Shengding and Qin, Yujia and Liu, Zhiyuan and Sun, Maosong and Zhou, Bowen}, title = {UltraChat: A Large-scale Auto-generated Multi-round Dialogue Data}, year = {2023}, publisher = {GitHub}, journal = {GitHub repository}, howpublished = {\url{https://github.com/thunlp/ultrachat}}, } ```
[ -0.1984962522983551, -0.7477875351905823, 0.1739877611398697, -0.059579260647296906, -0.16397947072982788, 0.32003530859947205, -0.13300234079360962, -0.38873982429504395, 0.26309847831726074, 0.42227405309677124, -0.8059874773025513, -0.36935073137283325, -0.008893774822354317, -0.07338358461856842, -0.22502195835113525, 1.3080010414123535, 0.2393256425857544, -0.05934528261423111, -0.026945386081933975, -0.11857400834560394, -0.5142056941986084, -0.6177197098731995, -0.529923677444458, -0.3198244869709015, 0.20230107009410858, 0.516608715057373, 0.6116636395454407, 0.5939136147499084, 0.3389156758785248, 0.3484891355037689, 0.03849280625581741, 0.22791831195354462, -0.6740221381187439, 0.34235382080078125, 0.18797096610069275, -0.2334214746952057, -0.29075372219085693, 0.02637956663966179, 0.7749999761581421, 0.5774331092834473, -0.07354554533958435, 0.24663640558719635, 0.17807172238826752, 0.4754478931427002, -0.08012513816356659, 0.3323098421096802, -0.5060916543006897, 0.06655791401863098, -0.1012546569108963, -0.2678174078464508, 0.051154233515262604, -0.17845477163791656, 0.10184673219919205, -0.7893878221511841, 0.21359775960445404, 0.28018641471862793, 0.8312579393386841, 0.11864466220140457, -0.05353924632072449, -0.09307979792356491, -0.8437466025352478, 0.601714551448822, -0.8003544211387634, 0.16001377999782562, 0.23280100524425507, 0.17431043088436127, -0.1319311261177063, -0.6993268132209778, -0.6769663691520691, -0.04605437442660332, -0.05723061040043831, 0.30485889315605164, -0.12257229536771774, 0.0641455128788948, 0.5228391885757446, 0.42068180441856384, -0.6856167912483215, -0.09446398168802261, -0.26959314942359924, -0.25210270285606384, 0.5990302562713623, 0.720910906791687, 0.39811426401138306, -0.40526068210601807, -0.2089059203863144, -0.3802640438079834, -0.4147629141807556, 0.1718953251838684, 0.4112832248210907, 0.4621236324310303, -0.44955429434776306, 0.5077393651008606, -0.45456886291503906, 0.29025909304618835, -0.25981631875038147, -0.05880466103553772, 0.3414190113544464, -0.8008920550346375, -0.0811305120587349, 0.010196959599852562, 1.1925745010375977, 0.6234728097915649, 0.1302081197500229, 0.05590067058801651, 0.18993620574474335, -0.5343331098556519, -0.08420588821172714, -1.0069763660430908, -0.2768416404724121, 0.22687888145446777, -0.5067533254623413, -0.1644912213087082, -0.022275879979133606, -0.9459009766578674, -0.39745888113975525, -0.16925372183322906, -0.09815128147602081, -0.41456887125968933, -0.280983030796051, -0.0016637493390589952, -0.1435537487268448, 0.2014251947402954, 0.0399240180850029, -0.8333565592765808, 0.13364259898662567, 0.22607086598873138, 0.8828642964363098, 0.3889111876487732, -0.21639825403690338, -0.10273844003677368, 0.05105330049991608, -0.22278374433517456, 0.9235023856163025, -0.4352453052997589, -0.38935035467147827, -0.09870315343141556, 0.17512379586696625, -0.18455851078033447, -0.28604239225387573, 0.603071391582489, -0.04387468099594116, 0.2633528709411621, -0.17588216066360474, -0.4502604603767395, -0.07709808647632599, 0.05888134241104126, -0.4803678095340729, 1.3135391473770142, 0.11386994272470474, -0.7778663039207458, 0.1473890095949173, -0.9560379981994629, -0.14685603976249695, 0.24767756462097168, -0.0870400071144104, -0.08727022260427475, -0.2924068868160248, 0.3814171850681305, 0.5260772705078125, -0.6718477010726929, 0.12186895310878754, -0.3288993835449219, -0.2693818509578705, 0.4324832856655121, -0.5465461611747742, 0.9107826352119446, 0.30262434482574463, -0.43431535363197327, -0.020487522706389427, -0.8228644728660583, 0.21434740722179413, 0.23269639909267426, -0.14686018228530884, -0.2244647890329361, -0.05530250445008278, 0.17849093675613403, 0.11818255484104156, 0.10064704716205597, -0.7192803025245667, 0.3854779601097107, -0.435442715883255, 0.5121538043022156, 0.7587876319885254, 0.04771033674478531, -0.011938693933188915, -0.196211576461792, 0.5893283486366272, -0.04599529504776001, 0.21520233154296875, -0.36396053433418274, -0.48638254404067993, -0.7619677782058716, 0.008460904471576214, 0.2156570851802826, 0.8120875358581543, -0.6849716901779175, 0.6574803590774536, -0.32713714241981506, -0.5973567962646484, -0.6534279584884644, 0.21666324138641357, 0.3796832859516144, 0.6616211533546448, 0.2127312570810318, -0.265375018119812, -0.7399995923042297, -0.6139774322509766, 0.04077170789241791, -0.3481857180595398, 0.12125717848539352, 0.7460719347000122, 0.4327510893344879, -0.22451205551624298, 0.8354700803756714, -0.6473720073699951, 0.03301231563091278, -0.5778067708015442, 0.19140535593032837, 0.13912533223628998, 0.4948829412460327, 0.36833512783050537, -0.41428714990615845, -0.6593257188796997, -0.15957000851631165, -0.8841755390167236, -0.13633614778518677, -0.3761214017868042, -0.24624213576316833, -0.06434571743011475, 0.37087151408195496, -0.7282828688621521, 0.5698679685592651, 0.331670343875885, -0.35173532366752625, 0.5764245390892029, 0.02608410269021988, 0.22304409742355347, -1.4065698385238647, 0.20387813448905945, -0.055310823023319244, -0.04467247799038887, -0.6215734481811523, -0.4402327239513397, -0.519529402256012, -0.24516405165195465, -0.3039238750934601, 0.674491286277771, -0.30453622341156006, 0.0663011446595192, -0.03095274791121483, 0.008553083054721355, -0.09769897162914276, 0.5434943437576294, -0.19672806560993195, 0.9846031069755554, 0.6171786785125732, -0.32387232780456543, 0.7349591851234436, 0.6647000908851624, -0.37549424171447754, 0.43731462955474854, -0.933073878288269, 0.34556758403778076, 0.14527910947799683, 0.5193632245063782, -1.1809749603271484, -0.24416205286979675, 0.3304382562637329, -0.7556275129318237, -0.0931052565574646, -0.1644272655248642, -0.5506379008293152, -0.4349370300769806, -0.38561543822288513, 0.364660382270813, 0.46977347135543823, -0.22073465585708618, 0.1914951354265213, 0.3688771724700928, -0.3164527416229248, -0.4812961518764496, -0.5317986011505127, 0.1210896223783493, -0.30519843101501465, -0.5684158802032471, -0.10312197357416153, -0.3940274715423584, -0.005331671796739101, -0.09843294322490692, 0.10799713432788849, -0.10095629096031189, -0.15360921621322632, 0.282271146774292, 0.2806876599788666, -0.07507386058568954, -0.2017320692539215, -0.27252399921417236, -0.169846773147583, -0.19807814061641693, -0.3258393108844757, 0.6285809278488159, -0.1234191358089447, -0.14332343637943268, -0.7959015369415283, 0.54168301820755, 0.4356271028518677, 0.07214182615280151, 0.6347734332084656, 0.9150557518005371, 0.023237023502588272, 0.06542851775884628, -0.3495388329029083, -0.12099222093820572, -0.4664013087749481, 0.16781017184257507, -0.0562625415623188, -0.8241044878959656, 0.7370902895927429, -0.04722267761826515, 0.2025720179080963, 0.5957998633384705, 0.609078049659729, -0.3731611669063568, 1.1830662488937378, 0.4175383150577545, -0.14310087263584137, 0.6637827754020691, -0.7403706312179565, 0.2488749921321869, -1.1430939435958862, -0.3950421214103699, -0.616917610168457, -0.2833488881587982, -0.5507729053497314, -0.19401085376739502, 0.28829461336135864, -0.015446730889379978, -0.29339176416397095, 0.3802182972431183, -0.7950882911682129, 0.42709946632385254, 0.6429152488708496, -0.167239248752594, 0.10654684156179428, 0.06163755804300308, -0.297656774520874, -0.07695058733224869, -0.8553240299224854, -0.4699297249317169, 1.2002325057983398, 0.1442853808403015, 0.9920783638954163, -0.11100375652313232, 0.4458957612514496, 0.28505223989486694, -0.26905977725982666, -0.6189380288124084, 0.6756678223609924, 0.20858965814113617, -0.7029542922973633, -0.2782284915447235, -0.7176836133003235, -1.230177879333496, -0.07881069928407669, -0.18158301711082458, -1.1033122539520264, 0.10521433502435684, -0.07014673948287964, -0.5834879875183105, 0.4489167332649231, -0.7339111566543579, 0.7759251594543457, -0.3130190968513489, -0.18371263146400452, 0.048940956592559814, -0.9037203192710876, 0.19628921151161194, 0.21519558131694794, 0.0983625203371048, -0.32929727435112, 0.34460362792015076, 1.042215347290039, -0.5973283648490906, 0.9975647926330566, -0.11789563298225403, 0.3644839823246002, 0.6337952017784119, -0.11055304110050201, 0.35106605291366577, 0.22407302260398865, 0.14013616740703583, 0.19714413583278656, 0.22761473059654236, -0.3190520703792572, -0.5916072130203247, 0.5096070170402527, -0.9891731142997742, -0.13681378960609436, -0.5160364508628845, -0.8449837565422058, -0.23444080352783203, 0.30317768454551697, 0.20259591937065125, 0.7466464638710022, -0.153799906373024, 0.49546390771865845, 0.5288573503494263, -0.34533587098121643, 0.5086418390274048, 0.3672993779182434, 0.12480010092258453, -0.5463352799415588, 0.8840138912200928, -0.043037980794906616, 0.098106250166893, 0.17973147332668304, 0.24902237951755524, -0.5633162260055542, -0.40398192405700684, -0.5723664164543152, 0.11921590566635132, -0.415622740983963, -0.15355785191059113, -0.7076258659362793, -0.3061322569847107, -0.7395541667938232, 0.2331950068473816, -0.3489111661911011, -0.49587157368659973, -0.2976614534854889, -0.11179746687412262, 0.6315303444862366, 0.6875318288803101, -0.17290641367435455, 0.4598742425441742, -0.8609024882316589, 0.29007986187934875, 0.14952553808689117, 0.26737508177757263, 0.07107130438089371, -0.45654258131980896, -0.5688940286636353, 0.35147181153297424, -0.49291500449180603, -0.3491004705429077, 0.21915221214294434, 0.18553970754146576, 0.6612467765808105, 0.31896451115608215, 0.05736050009727478, 0.8491142392158508, -0.3679555654525757, 1.2433174848556519, 0.26827841997146606, -0.4970252513885498, 0.46829262375831604, -0.6074239611625671, 0.1450619250535965, 0.7058770060539246, 0.3506203591823578, -0.8163903951644897, -0.16876855492591858, -0.9061771035194397, -0.8738136887550354, 0.9664733409881592, 0.371225506067276, 0.46471714973449707, 0.2527094781398773, 0.2266385555267334, -0.19321835041046143, 0.20064061880111694, -0.6002690196037292, -0.41660287976264954, -0.49909791350364685, -0.28626447916030884, 0.11766313016414642, -0.03259294107556343, -0.29814600944519043, -0.7675778269767761, 0.6933687329292297, -0.2689071595668793, 0.664659321308136, 0.18366973102092743, 0.23493875563144684, 0.24153798818588257, 0.1989699900150299, 0.3144959509372711, 0.3442944884300232, -0.30033382773399353, -0.34637582302093506, -0.08744801580905914, -0.6078410744667053, 0.057339806109666824, 0.28925850987434387, -0.039005037397146225, -0.10791096091270447, 0.3771314024925232, 1.0038089752197266, -0.11861974000930786, -0.7126085162162781, 0.1405898630619049, -0.26463449001312256, -0.21466006338596344, -0.20936249196529388, 0.1874103546142578, 0.00298185832798481, 0.25905728340148926, 0.31991732120513916, -0.3015156686306, 0.1870480328798294, -0.7322906255722046, 0.11360170692205429, 0.3232088088989258, -0.3407878577709198, -0.2659541666507721, 0.5547726154327393, 0.3225211203098297, -0.2867952585220337, 0.9140059947967529, -0.21692922711372375, -0.45092594623565674, 0.4145752191543579, 0.3905961215496063, 0.9269975423812866, -0.04947331175208092, 0.31510159373283386, 0.31293973326683044, 0.22333261370658875, 0.1965653896331787, 0.3066816031932831, -0.14459802210330963, -0.7575739622116089, -0.2521960139274597, -0.5256887674331665, -0.494110643863678, 0.45564278960227966, -0.26195403933525085, -0.05168924480676651, -0.4500717520713806, -0.13850726187229156, 0.12240124493837357, 0.26648926734924316, -0.5302737355232239, 0.11199717968702316, -0.0293171014636755, 0.5798614025115967, -0.6262248158454895, 0.5502838492393494, 0.5904382467269897, -0.6894001960754395, -1.1295995712280273, -0.012365550734102726, 0.24516132473945618, -0.7461122274398804, 0.18875764310359955, 0.01328227948397398, 0.09793692082166672, -0.03497776389122009, -0.7383105158805847, -0.7097858786582947, 1.122494101524353, 0.3157973289489746, -0.2205585241317749, -0.096979521214962, 0.31755125522613525, 0.5271596908569336, -0.4435803294181824, 0.8146653175354004, 0.591386079788208, 0.2940441370010376, 0.32170018553733826, -0.8874310851097107, -0.016659604385495186, -0.6238654255867004, -0.027158230543136597, -0.13591039180755615, -0.9684863686561584, 0.5919377207756042, -0.0654204934835434, -0.03609631210565567, 0.14156751334667206, 0.25134116411209106, 0.025024104863405228, 0.17534828186035156, 0.37476205825805664, 0.550838053226471, 0.7055675983428955, -0.17244382202625275, 0.962638795375824, -0.45265626907348633, 0.42430296540260315, 0.9551839828491211, -0.14579375088214874, 0.21219289302825928, -0.0496029257774353, -0.17612558603286743, 0.6515341997146606, 0.8006998896598816, -0.13677215576171875, 0.32399624586105347, -0.08232825249433517, -0.20794205367565155, -0.07771167159080505, -0.45191171765327454, -0.46749550104141235, 0.4376225471496582, 0.3053024411201477, -0.2016059160232544, -0.09284234791994095, -0.060624219477176666, 0.08236408233642578, -0.43858498334884644, 0.22475197911262512, 1.0412211418151855, -0.106776162981987, -0.3929399847984314, 0.8656405210494995, -0.4858543872833252, 0.5024582147598267, -0.7291788458824158, -0.21316532790660858, -0.3456917703151703, -0.027059897780418396, -0.32028186321258545, -0.9212417602539062, 0.10385626554489136, 0.20459841191768646, 0.011310409754514694, -0.25201502442359924, 0.628075897693634, -0.28998538851737976, -0.5069132447242737, 0.047307442873716354, 0.5335208773612976, 0.6389689445495605, 0.16916002333164215, -1.2945561408996582, -0.025745732709765434, 0.2990611493587494, -0.5099910497665405, 0.19340552389621735, 0.504417359828949, 0.09733178466558456, 0.7087237238883972, 1.0318684577941895, 0.13121072947978973, -0.04462544620037079, 0.287612646818161, 0.9641639590263367, -0.8079738020896912, -0.4949526786804199, -0.5859260559082031, 0.6533893942832947, -0.44355320930480957, -0.6032126545906067, 0.7968584895133972, 0.8440443277359009, 0.5506614446640015, 0.4782285988330841, 1.0193593502044678, -0.40649303793907166, 0.6600944399833679, -0.37513795495033264, 0.6315399408340454, -0.5476078987121582, 0.2569113075733185, -0.516379714012146, -0.7576978206634521, 0.1582885980606079, 0.4410243630409241, 0.09479691833257675, 0.1532369703054428, 0.775117814540863, 0.8815925121307373, -0.015614182688295841, 0.24119003117084503, -0.03628138080239296, 0.1810338944196701, 0.48578035831451416, 0.470628023147583, 0.8309074640274048, -0.421987384557724, 0.8901832699775696, -0.17956307530403137, -0.326769083738327, -0.05479691922664642, -0.5546248555183411, -1.0141913890838623, -0.8224043846130371, -0.10877708345651627, -0.47768697142601013, -0.12811405956745148, 1.0028252601623535, 0.9055420160293579, -0.6060816645622253, -0.4291587471961975, 0.07731592655181885, -0.0019548905547708273, -0.11946840584278107, -0.2798541784286499, 0.24246060848236084, -0.21135865151882172, -0.5923299193382263, 0.4601207673549652, -0.04166111350059509, 0.23688048124313354, -0.15724904835224152, 0.01878056488931179, -0.3510693907737732, 0.13532373309135437, 0.3595077395439148, 0.5193552374839783, -0.24763266742229462, -0.07230958342552185, -0.1235162615776062, 0.09477609395980835, 0.2711833119392395, 0.9446461796760559, -0.5316462516784668, 0.4059590697288513, 0.41829073429107666, 0.5896850228309631, 0.7012640237808228, 0.17018376290798187, 0.3444714844226837, -0.7110997438430786, 0.25780144333839417, 0.21036039292812347, 0.2516428530216217, 0.4293443262577057, -0.5101820230484009, 0.6942473649978638, 0.6151100397109985, -0.7589567303657532, -0.8200966119766235, -0.012034464627504349, -0.9580065608024597, -0.07966835796833038, 1.1982555389404297, -0.017089663073420525, 0.04303396865725517, -0.40381520986557007, -0.4935685694217682, 0.40539294481277466, -0.8875439763069153, 0.4951612651348114, 0.7313252687454224, -0.6169126629829407, -0.04344552755355835, -0.8883471488952637, 0.5811086893081665, 0.2587677538394928, -0.9907625317573547, 0.5132274031639099, 0.4970894753932953, 0.22346173226833344, 0.06307385116815567, 0.9561406373977661, 0.0773237869143486, -0.056150034070014954, -0.007121944800019264, 0.17924849689006805, -0.11883675307035446, -0.25635308027267456, -0.10520052164793015, -0.3393535912036896, -0.3423078954219818, -0.13392584025859833 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
dbpedia_14
null
2023-01-25T14:29:11Z
5,964
10
dbpedia
[ "task_categories:text-classification", "task_ids:topic-classification", "annotations_creators:machine-generated", "language_creators:crowdsourced", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "license:cc-by-sa-3.0", "region:us" ]
2023-01-25T14:29:11Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - machine-generated language_creators: - crowdsourced language: - en license: - cc-by-sa-3.0 multilinguality: - monolingual size_categories: - 100K<n<1M source_datasets: - original task_categories: - text-classification task_ids: - topic-classification paperswithcode_id: dbpedia pretty_name: DBpedia dataset_info: features: - name: label dtype: class_label: names: '0': Company '1': EducationalInstitution '2': Artist '3': Athlete '4': OfficeHolder '5': MeanOfTransportation '6': Building '7': NaturalPlace '8': Village '9': Animal '10': Plant '11': Album '12': Film '13': WrittenWork - name: title dtype: string - name: content dtype: string config_name: dbpedia_14 splits: - name: train num_bytes: 178428970 num_examples: 560000 - name: test num_bytes: 22310285 num_examples: 70000 download_size: 68341743 dataset_size: 200739255 --- # Dataset Card for DBpedia14 ## 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:** [DBpedia14 homepage](https://wiki.dbpedia.org/develop/datasets) - **Repository:** [DBpedia14 repository](https://github.com/dbpedia/extraction-framework) - **Paper:** [DBpedia--a large-scale, multilingual knowledge base extracted from Wikipedia](https://content.iospress.com/articles/semantic-web/sw134) - **Point of Contact:** [Xiang Zhang](mailto:xiang.zhang@nyu.edu) ### Dataset Summary The DBpedia ontology classification dataset is constructed by picking 14 non-overlapping classes from DBpedia 2014. They are listed in classes.txt. From each of thse 14 ontology classes, we randomly choose 40,000 training samples and 5,000 testing samples. Therefore, the total size of the training dataset is 560,000 and testing dataset 70,000. There are 3 columns in the dataset (same for train and test splits), corresponding to class index (1 to 14), title and content. The title and content are escaped using double quotes ("), and any internal double quote is escaped by 2 double quotes (""). There are no new lines in title or content. ### Supported Tasks and Leaderboards - `text-classification`, `topic-classification`: The dataset is mainly used for text classification: given the content and the title, predict the correct topic. ### Languages Although DBpedia is a multilingual knowledge base, the DBpedia14 extract contains English data mainly, other languages may appear (e.g. a film whose title is origanlly not English). ## Dataset Structure ### Data Instances A typical data point, comprises of a title, a content and the corresponding label. An example from the DBpedia test set looks as follows: ``` { 'title':'', 'content':" TY KU /taɪkuː/ is an American alcoholic beverage company that specializes in sake and other spirits. The privately-held company was founded in 2004 and is headquartered in New York City New York. While based in New York TY KU's beverages are made in Japan through a joint venture with two sake breweries. Since 2011 TY KU's growth has extended its products into all 50 states.", 'label':0 } ``` ### Data Fields - 'title': a string containing the title of the document - escaped using double quotes (") and any internal double quote is escaped by 2 double quotes (""). - 'content': a string containing the body of the document - escaped using double quotes (") and any internal double quote is escaped by 2 double quotes (""). - 'label': one of the 14 possible topics. ### Data Splits The data is split into a training and test set. For each of the 14 classes we have 40,000 training samples and 5,000 testing samples. Therefore, the total size of the training dataset is 560,000 and testing dataset 70,000. ## Dataset Creation ### Curation Rationale The DBPedia ontology classification dataset is constructed by Xiang Zhang (xiang.zhang@nyu.edu), licensed under the terms of the Creative Commons Attribution-ShareAlike License and the GNU Free Documentation License. It is used as a text classification benchmark in the following paper: Xiang Zhang, Junbo Zhao, Yann LeCun. Character-level Convolutional Networks for Text Classification. Advances in Neural Information Processing Systems 28 (NIPS 2015). ### 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 The DBPedia ontology classification dataset is constructed by Xiang Zhang (xiang.zhang@nyu.edu), licensed under the terms of the Creative Commons Attribution-ShareAlike License and the GNU Free Documentation License. It is used as a text classification benchmark in the following paper: Xiang Zhang, Junbo Zhao, Yann LeCun. Character-level Convolutional Networks for Text Classification. Advances in Neural Information Processing Systems 28 (NIPS 2015). ### Licensing Information The DBPedia ontology classification dataset is licensed under the terms of the Creative Commons Attribution-ShareAlike License and the GNU Free Documentation License. ### Citation Information Xiang Zhang, Junbo Zhao, Yann LeCun. Character-level Convolutional Networks for Text Classification. Advances in Neural Information Processing Systems 28 (NIPS 2015). Lehmann, Jens, Robert Isele, Max Jakob, Anja Jentzsch, Dimitris Kontokostas, Pablo N. Mendes, Sebastian Hellmann et al. "DBpedia–a large-scale, multilingual knowledge base extracted from Wikipedia." Semantic web 6, no. 2 (2015): 167-195. ### Contributions Thanks to [@hfawaz](https://github.com/hfawaz) for adding this dataset.
[ -0.4866557717323303, -0.6128597259521484, 0.14836335182189941, 0.06236139312386513, -0.15478309988975525, -0.1304343342781067, -0.40736258029937744, -0.49126142263412476, 0.09398213028907776, 0.5150623917579651, -0.6865696310997009, -0.8890019655227661, -0.4769217073917389, 0.3509327173233032, -0.22289177775382996, 1.1236919164657593, 0.12244804948568344, 0.028335953131318092, -0.18617267906665802, -0.11379466950893402, -0.23573561012744904, -0.5210660696029663, -0.4790167510509491, -0.12089583277702332, 0.5557016134262085, 0.6431535482406616, 0.41081151366233826, 0.7451733350753784, 0.5976946949958801, 0.2468673288822174, -0.06756944209337234, 0.275224506855011, -0.4199468493461609, -0.11519057303667068, -0.15802685916423798, -0.4021267592906952, -0.28173741698265076, 0.13677920401096344, 0.651887834072113, 0.6982266306877136, -0.1316034197807312, 0.1897083967924118, 0.20037950575351715, 0.6306410431861877, -0.43849411606788635, 0.44982394576072693, -0.5339271426200867, -0.016687730327248573, -0.46860790252685547, 0.010803879238665104, -0.3850058913230896, -0.3451423943042755, 0.21462313830852509, -0.8458963632583618, 0.2031763643026352, 0.09100876748561859, 1.1552997827529907, 0.14562544226646423, -0.3025248050689697, -0.060431402176618576, -0.33666178584098816, 0.8716632127761841, -0.5304562449455261, 0.2958008050918579, 0.4088486433029175, 0.23747387528419495, -0.013189739547669888, -0.7394388318061829, -0.8231185078620911, 0.1736263930797577, -0.07176605612039566, 0.08706293255090714, 0.06102614104747772, -0.1536271572113037, 0.4308222532272339, 0.3470112979412079, -0.5501237511634827, 0.2668255567550659, -0.30985164642333984, -0.13484066724777222, 0.7963873744010925, 0.17512387037277222, 0.22237858176231384, -0.6697700619697571, -0.3292236030101776, -0.40001094341278076, -0.46288126707077026, -0.0037475363351404667, 0.29224956035614014, 0.5289527773857117, -0.2594586908817291, 0.5214644074440002, -0.19112829864025116, 0.6098954677581787, -0.05411525443196297, -0.26559412479400635, 0.6714423894882202, -0.7772136926651001, -0.14902210235595703, 0.18254607915878296, 1.0076385736465454, 0.5870373249053955, 0.27640435099601746, -0.2588086426258087, 0.26055508852005005, -0.09183403104543686, 0.11373433470726013, -0.9625656604766846, -0.12714679539203644, 0.32999905943870544, -0.5763680934906006, -0.442644864320755, 0.15093998610973358, -1.1942566633224487, -0.5589385628700256, -0.0838891789317131, 0.11755242943763733, -0.4519156217575073, -0.2878997027873993, -0.052812423557043076, -0.3227660059928894, 0.3725125789642334, 0.07754147797822952, -0.9434716105461121, 0.2677212357521057, 0.4739055931568146, 0.562064528465271, -0.2670121192932129, -0.4391622841358185, 0.15842093527317047, 0.14830148220062256, -0.22835610806941986, 0.8376848697662354, -0.330056369304657, -0.2388586699962616, -0.026370804756879807, 0.28413501381874084, -0.07653046399354935, -0.29633915424346924, 0.8150346875190735, -0.409530907869339, 0.4138915538787842, -0.6693720817565918, -0.7116154432296753, -0.1719973087310791, 0.3799404799938202, -0.6819242238998413, 1.1603991985321045, 0.09970296919345856, -1.0088268518447876, 0.7478288412094116, -0.48021912574768066, -0.18855293095111847, 0.11044349521398544, -0.20225851237773895, -0.44543179869651794, -0.5372899770736694, -0.02039632573723793, 0.586037278175354, -0.6350036263465881, 0.09282982349395752, -0.2814067602157593, -0.15084362030029297, 0.32450923323631287, -0.1965196132659912, 1.0754961967468262, 0.18071837723255157, -0.3522949516773224, -0.2746511399745941, -1.1509217023849487, 0.16500864923000336, 0.15155445039272308, -0.3719233572483063, -0.48681244254112244, -0.05702630430459976, 0.32452771067619324, 0.19396139681339264, 0.2652721405029297, -0.6173946261405945, 0.15246231853961945, -0.37542667984962463, 0.3352719247341156, 0.5712264180183411, 0.2249043583869934, 0.5578212738037109, -0.2674923837184906, 0.19689689576625824, -0.06296690553426743, 0.13937154412269592, 0.030894292518496513, -0.5081606507301331, -0.7420536279678345, -0.16373760998249054, 0.5488134026527405, 0.6616515517234802, -0.6793850064277649, 0.9569070339202881, -0.6809218525886536, -0.9782050848007202, -0.21886634826660156, -0.012675025500357151, 0.31231361627578735, 0.5644288063049316, 0.46539512276649475, -0.14308586716651917, -0.5417119264602661, -0.628402054309845, 0.03495696932077408, -0.047520775347948074, 0.0726516917347908, 0.3543975353240967, 0.6240942478179932, -0.12739236652851105, 0.7980122566223145, -0.6017161011695862, -0.5410470962524414, -0.2262936234474182, -0.07301458716392517, 0.17706365883350372, 0.3987753391265869, 0.6738181114196777, -0.9806371927261353, -0.57941734790802, 0.03188548982143402, -0.9839227199554443, -0.045957501977682114, -0.0024936844129115343, -0.28294771909713745, 0.43427330255508423, 0.2971056401729584, -0.5776217579841614, 0.2393554151058197, 0.2197169065475464, -0.5463548302650452, 0.38824963569641113, 0.017573000863194466, 0.23776192963123322, -1.275649070739746, 0.21830745041370392, 0.15709249675273895, 0.42757540941238403, -0.4552646279335022, -0.2492000162601471, 0.10761096328496933, -0.031844109296798706, -0.16694161295890808, 0.3672729432582855, -0.3183266222476959, 0.1372431516647339, 0.10612388700246811, 0.14943726360797882, 0.22981221973896027, 0.5675458908081055, 0.09117449820041656, 0.5425025224685669, 0.5320295691490173, -0.8266816139221191, 0.5889053344726562, 0.547815203666687, -0.5144871473312378, 0.7357531189918518, -0.4424038231372833, -0.2481047362089157, -0.04079718515276909, 0.1915351003408432, -0.8575990200042725, -0.23804186284542084, 0.41387492418289185, -0.5101165175437927, 0.24568310379981995, 0.033959608525037766, -0.8133404850959778, -0.26270541548728943, -0.42765751481056213, -0.09464593231678009, 0.3814176023006439, -0.34785228967666626, 0.48980024456977844, 0.47292885184288025, 0.07528343051671982, -0.6920180916786194, -1.0112837553024292, -0.0333651639521122, -0.23973701894283295, -0.5908163189888, 0.7520567774772644, -0.16138193011283875, -0.02440531924366951, 0.25749504566192627, 0.00037806545151397586, -0.36857956647872925, -0.033273521810770035, 0.18896454572677612, 0.30088669061660767, -0.05080963671207428, 0.4551456868648529, -0.0645693689584732, 0.05963382497429848, 0.10813350975513458, -0.08048245310783386, 0.41543903946876526, 0.1261262446641922, 0.24833405017852783, -0.43378740549087524, 0.08697902411222458, 0.29223307967185974, -0.14363138377666473, 1.0506422519683838, 0.6499294638633728, -0.3542097508907318, -0.1756572723388672, -0.40322503447532654, -0.01971062459051609, -0.4268474578857422, 0.4687831997871399, -0.2790830731391907, -0.4009650647640228, 0.5010257959365845, 0.37105217576026917, 0.11537261307239532, 0.8050625920295715, 0.17964105308055878, -0.05625537037849426, 0.4787050187587738, 0.4953552186489105, -0.02673058956861496, 0.4996693730354309, -0.6057809591293335, 0.0012925172923132777, -0.48679307103157043, -0.6709005236625671, -0.9052736759185791, -0.11192363500595093, -0.9885343313217163, -0.18739774823188782, -0.09619871526956558, -0.153319850564003, -0.378354549407959, 0.615201473236084, -0.7079859375953674, 0.31588214635849, 0.5812668204307556, 0.28608617186546326, 0.25996673107147217, 0.21809490025043488, 0.12486542761325836, -0.18859533965587616, -0.6700607538223267, -0.43391627073287964, 1.2600828409194946, 0.2101670652627945, 0.5528022646903992, 0.008062570355832577, 0.5755909085273743, 0.1791781783103943, -0.1101217120885849, -0.6129973530769348, 0.7047363519668579, -0.48290976881980896, -0.7407383322715759, -0.5979437232017517, -0.5617159605026245, -1.0189661979675293, -0.05945749580860138, -0.571505069732666, -0.4995541274547577, 0.5379710793495178, -0.20413580536842346, -0.1334669589996338, 0.27298158407211304, -0.87050461769104, 1.1897727251052856, -0.07122823596000671, -0.2960678040981293, -0.10062553733587265, -0.6594159007072449, -0.03601226955652237, -0.18962228298187256, 0.22039441764354706, -0.11730992048978806, -0.2272021621465683, 1.0585085153579712, -0.4763554632663727, 0.8160015344619751, -0.2538398504257202, 0.018335385248064995, 0.29458820819854736, -0.5592843890190125, 0.2257510870695114, -0.14344505965709686, -0.094192735850811, 0.41606420278549194, 0.009959768503904343, -0.287910521030426, -0.5455084443092346, 0.7301580309867859, -0.9368274211883545, -0.09098854660987854, -0.6167972087860107, -0.26430243253707886, -0.12247534096240997, 0.39407286047935486, 0.6057958602905273, 0.3460351228713989, -0.16189703345298767, 0.5374773144721985, 0.9557753801345825, -0.3515702784061432, 0.2274039387702942, 0.4345777630805969, 0.10291987657546997, -0.38413774967193604, 0.9114503264427185, 0.7657894492149353, -0.0433775968849659, 0.6843441128730774, -0.0024902925360947847, -0.356059193611145, -0.4226696789264679, -0.29231345653533936, 0.14918459951877594, -0.7674791812896729, -0.25982391834259033, -0.7727882862091064, -0.42996516823768616, -0.6941318511962891, 0.2605782449245453, -0.08368290215730667, -0.507944643497467, -0.4679800868034363, -0.27263081073760986, 0.6265313625335693, 0.3898701071739197, 0.034919533878564835, 0.2269158512353897, -0.5846124887466431, 0.16165751218795776, 0.3054979741573334, 0.47077590227127075, -0.005424245726317167, -0.4596586227416992, -0.27759668231010437, -0.04175024479627609, -0.19181065261363983, -0.7574323415756226, 0.12064140290021896, 0.3035106062889099, 0.7649351954460144, 0.2908441126346588, 0.31957578659057617, 0.37458324432373047, -0.3984749913215637, 0.8893264532089233, 0.07729508727788925, -0.5517646670341492, 0.5098225474357605, -0.16540005803108215, 0.017033938318490982, 0.676623523235321, 0.6233285665512085, -0.5209702253341675, -0.006575946230441332, -0.664749026298523, -0.8266512751579285, 0.8610594272613525, 0.14054766297340393, 0.189996138215065, 0.020259423181414604, 0.29633405804634094, 0.09351067245006561, 0.09018919616937637, -0.9176784753799438, -0.70918869972229, -0.3648356795310974, -0.33717307448387146, -0.09447754919528961, -0.379511296749115, 0.032601818442344666, -0.16066482663154602, 0.7824661135673523, 0.24938702583312988, 0.25065886974334717, 0.1918260008096695, -0.07421921193599701, 0.20996910333633423, 0.2944280803203583, 0.09464817494153976, 0.5141671299934387, -0.30985990166664124, -0.0920228436589241, 0.1122448593378067, -0.8073444962501526, -0.04474829137325287, 0.5415772199630737, -0.2915935516357422, -0.046355947852134705, 0.31234437227249146, 0.699553906917572, 0.16224604845046997, -0.5501795411109924, 0.5352547764778137, -0.11632508039474487, -0.31761980056762695, -0.37285155057907104, 0.16480351984500885, -0.22528618574142456, 0.120892234146595, 0.5113779306411743, -0.17744804918766022, 0.2778796851634979, -0.4145011901855469, 0.16218969225883484, -0.011005505919456482, -0.1443682610988617, -0.05517594888806343, 0.3831377327442169, 0.28963330388069153, 0.08482429385185242, 0.5520918965339661, -0.18809522688388824, -0.2452186942100525, 0.6592763662338257, 0.13548006117343903, 0.6210578680038452, -0.01970735937356949, 0.3744555711746216, 0.7262804508209229, 0.4038279354572296, -0.009936588816344738, 0.21063387393951416, -0.09944985806941986, -0.966011643409729, -0.18347762525081635, -0.53929203748703, -0.29734256863594055, 0.10164079815149307, -0.6163533329963684, 0.38599783182144165, -0.4382275342941284, -0.13829171657562256, 0.4124126434326172, 0.4871934652328491, -0.546316921710968, 0.3882613480091095, 0.013580765575170517, 1.1888697147369385, -0.8710837364196777, 0.7726399898529053, 0.5957133173942566, -0.8832613825798035, -0.7812661528587341, -0.07869772613048553, -0.2629075348377228, -0.3528193533420563, 0.6463279128074646, 0.2972036898136139, 0.3825274705886841, 0.004898586310446262, -0.5307651162147522, -0.799952507019043, 1.21824049949646, 0.11560911685228348, -0.19466519355773926, -0.2491873800754547, 0.23284763097763062, 0.58185213804245, -0.10785672813653946, -0.004486266523599625, 0.507853627204895, 0.6450058221817017, -0.04974335432052612, -0.7584666013717651, 0.061900291591882706, -0.360000342130661, -0.0008488678140565753, -0.05499804764986038, -0.7332960963249207, 0.6328780651092529, 0.08028876781463623, -0.20128969848155975, -0.0296313539147377, 0.49160727858543396, 0.21284827589988708, 0.2566387355327606, 0.4673265218734741, 0.6906700730323792, 0.9570896029472351, -0.3524702489376068, 0.9644749760627747, -0.09290548413991928, 0.32300683856010437, 0.8944036364555359, -0.06727857887744904, 0.7321813702583313, 0.1972513198852539, -0.42962130904197693, 0.7943766117095947, 0.9243568181991577, -0.5370362401008606, 0.7361944913864136, -0.0411292128264904, 0.08177298307418823, -0.02316313423216343, -0.25628161430358887, -0.671499490737915, 0.47693076729774475, 0.3384040594100952, -0.4843212068080902, -0.03486858308315277, 0.07257997244596481, 0.2047351747751236, 0.105754554271698, -0.3179752230644226, 0.7288489937782288, -0.09738092124462128, -0.5755594968795776, 0.43818336725234985, -0.02682548575103283, 0.6893120408058167, -0.6791955828666687, 0.07116024196147919, -0.0848536342382431, 0.19500300288200378, -0.4814217686653137, -0.9958685636520386, 0.19402992725372314, 0.05294794961810112, -0.5374796986579895, -0.12355931103229523, 0.6780277490615845, -0.41813433170318604, -0.4614968001842499, 0.24446065723896027, 0.1387293040752411, 0.23982220888137817, -0.013965770602226257, -0.7811748385429382, -0.03758940100669861, -0.05619658902287483, -0.3635909855365753, 0.22914566099643707, 0.8361877202987671, 0.06982412189245224, 0.49259549379348755, 0.4794396460056305, -0.02263975515961647, 0.06445527076721191, -0.025548534467816353, 0.7417730689048767, -0.7376755475997925, -0.6086416244506836, -0.5807971358299255, 0.31808939576148987, -0.5632093548774719, -0.4404982626438141, 1.0690116882324219, 0.7450381517410278, 1.0326368808746338, 0.0703754797577858, 0.8717809915542603, -0.4389471709728241, 0.8043354153633118, -0.4551844596862793, 0.8165942430496216, -0.562717080116272, 0.06732078641653061, -0.4696712791919708, -0.8558929562568665, -0.2378891557455063, 0.5905576348304749, -0.26364055275917053, 0.2714649438858032, 0.7622272968292236, 0.6266781091690063, 0.3133894205093384, 0.033321917057037354, 0.05770564079284668, 0.31698542833328247, -0.09225980937480927, 0.43316033482551575, 0.36838972568511963, -0.7439939975738525, 1.0515512228012085, -0.6109923124313354, -0.25530803203582764, -0.04776602238416672, -0.7910689115524292, -0.9774055480957031, -0.7771419286727905, -0.48399484157562256, -0.6072366237640381, -0.03304089233279228, 0.7275095582008362, 0.6374505162239075, -0.8892075419425964, -0.22822433710098267, -0.15364548563957214, 0.12295036762952805, -0.16703224182128906, -0.2986545264720917, 0.6076856851577759, -0.22579744458198547, -0.7224250435829163, -0.14051702618598938, -0.1442943662405014, 0.03301113098859787, -0.1566285341978073, 0.0076254671439528465, -0.32595106959342957, -0.3050234019756317, 0.44250908493995667, 0.20127153396606445, -0.3996497094631195, -0.013353602029383183, 0.2271272987127304, -0.3409937620162964, 0.000678836542647332, 0.10480497032403946, -0.5307910442352295, 0.2843753695487976, 0.5730773210525513, 0.6560114622116089, 0.5022778511047363, -0.19187693297863007, 0.17359653115272522, -0.671851396560669, 0.07978087663650513, -0.10559886693954468, 0.20706908404827118, 0.33949822187423706, -0.4291672706604004, 0.7496011257171631, 0.4376189112663269, -0.5258299112319946, -0.7942041754722595, -0.2948918044567108, -1.1949307918548584, -0.3515894412994385, 1.2592283487319946, -0.1553960144519806, -0.320626437664032, -0.1123051717877388, -0.11410966515541077, 0.3301877975463867, -0.47398242354393005, 0.62348473072052, 0.9366681575775146, 0.2748866379261017, -0.1673254668712616, -0.3151051998138428, 0.646300733089447, -0.16500817239284515, -1.071196436882019, -0.01998453214764595, 0.44644853472709656, 0.32863932847976685, 0.37988486886024475, 0.5020607709884644, -0.13590212166309357, 0.23864829540252686, 0.04623118415474892, 0.4230412542819977, 0.14297747611999512, -0.15495310723781586, -0.0773724913597107, 0.11255182325839996, -0.2255326360464096, -0.28374966979026794 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
carblacac/twitter-sentiment-analysis
carblacac
2022-10-25T05:42:06Z
5,951
11
other
[ "task_categories:text-classification", "annotations_creators:expert-generated", "language_creators:other", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "license:apache-2.0", "region:us" ]
2022-10-25T05:42:06Z
2022-06-05T15:25:44.000Z
2022-06-05T15:25:44
--- pretty_name: "TSATC: Twitter Sentiment Analysis Training Corpus" annotations_creators: - expert-generated language_creators: - other language: - en license: - apache-2.0 multilinguality: - monolingual size_categories: - 100K<n<1M source_datasets: - original task_categories: - text-classification task_ids: - feeling-classification paperswithcode_id: other configs: - None --- # Dataset Card for TSATC: Twitter Sentiment Analysis Training Corpus ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [TSATC](https://github.com/cblancac/SentimentAnalysisBert/blob/main/data) - **Repository:** [TSATC](https://github.com/cblancac/SentimentAnalysisBert/blob/main/data) - **Paper:** [TSATC: Twitter Sentiment Analysis Training Corpus](http://thinknook.com/twitter-sentiment-analysis-training-corpus-dataset-2012-09-22/) - **Point of Contact:** [Carlos Blanco](carblacac7@gmail.com) ### Dataset Summary TSATC: Twitter Sentiment Analysis Training Corpus The original Twitter Sentiment Analysis Dataset contains 1,578,627 classified tweets, each row is marked as 1 for positive sentiment and 0 for negative sentiment. It can be downloaded from http://thinknook.com/wp-content/uploads/2012/09/Sentiment-Analysis-Dataset.zip. The dataset is based on data from the following two sources: University of Michigan Sentiment Analysis competition on Kaggle Twitter Sentiment Corpus by Niek Sanders This dataset has been transformed, selecting in a random way a subset of them, applying a cleaning process, and dividing them between the test and train subsets, keeping a balance between the number of positive and negative tweets within each of these subsets. These two files can be founded on https://github.com/cblancac/SentimentAnalysisBert/blob/main/data. Finally, the train subset has been divided in two smallest datasets, train (80%) and validation (20%). The final dataset has been created with these two new subdatasets plus the previous test dataset. ### Supported Tasks and Leaderboards [More Information Needed] ### Languages The text in the dataset is in English. ## Dataset Structure ### Data Instances Below are two examples from the dataset: | | Text | Feeling | | :-- | :---------------------------- | :------ | | (1) | blaaah. I don't feel good aagain. | 0 | | (2) | My birthday is coming June 3. | 1 | ### Data Fields In the final dataset, all files are in the JSON format with f columns: | Column Name | Data | | :------------ | :-------------------------- | | text | A sentence (or tweet) | | feeling | The feeling of the sentence | Each feeling has two possible values: `0` indicates the sentence has a negative sentiment, while `1` indicates a positive feeling. ### Data Splits The number of examples and the proportion sentiments are shown below: | Data | Train | Validation | Test | | :------------------ | ------: | ------------: | ----: | | Size | 119.988 | 29.997 | 61.998 | | Labeled positive | 60.019 | 14.947 | 31029 | | Labeled negative | 59.969 | 15.050 | 30969 | ## Dataset Creation ### Curation Rationale Existing paraphrase identification datasets lack sentence pairs that have high lexical overlap without being paraphrases. Models trained on such data fail to distinguish pairs like *flights from New York to Florida* and *flights from Florida to New York*. ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? Mentioned above. ### 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] ### Citation Information ``` @InProceedings{paws2019naacl, title = {{TSATC: Twitter Sentiment Analysis Training Corpus}}, author = {Ibrahim Naji}, booktitle = {thinknook}, year = {2012} } ``` ### Contributions Thanks to myself [@carblacac](https://github.com/cblancac/) for adding this transformed dataset from the original one.
[ -0.38708409667015076, -0.49856266379356384, 0.19691196084022522, 0.37953001260757446, -0.4722961485385895, 0.36273065209388733, -0.38288697600364685, -0.180571511387825, 0.6392451524734497, 0.2517312169075012, -0.7838744521141052, -1.097519874572754, -0.7513794898986816, 0.15356238186359406, -0.2504645884037018, 1.2314597368240356, -0.04084135591983795, 0.006139210890978575, 0.016263946890830994, -0.43398091197013855, -0.2625077962875366, -0.5359668731689453, -0.5423884987831116, -0.06250996887683868, 0.5418347120285034, 0.5971854329109192, 0.3794443607330322, 0.13269734382629395, 0.39218130707740784, 0.17197252810001373, -0.02683081291615963, -0.01154513843357563, -0.4574378430843353, -0.12693843245506287, 0.06170979142189026, -0.35919255018234253, -0.5319569706916809, 0.19271467626094818, 0.42762643098831177, 0.43055278062820435, 0.017730282619595528, 0.43951502442359924, 0.06942765414714813, 0.6874973177909851, -0.44759124517440796, 0.3748652935028076, -0.4474208950996399, -0.020481979474425316, -0.2581455111503601, -0.1173916906118393, -0.18400172889232635, -0.8181769847869873, -0.08517472445964813, -0.37741684913635254, 0.12154998630285263, -0.09364861249923706, 1.2193046808242798, -0.056522250175476074, -0.4092719256877899, -0.2141561061143875, -0.1853356659412384, 0.8902642130851746, -0.8072295188903809, 0.036060504615306854, 0.34174126386642456, 0.13529238104820251, 0.2699282467365265, -0.4484620988368988, -0.5418727397918701, 0.006890058051794767, -0.02264711633324623, 0.43613773584365845, -0.004201725125312805, -0.16208967566490173, 0.22218292951583862, 0.4097788333892822, -0.485398530960083, -0.4510171413421631, -0.4772765636444092, -0.23913072049617767, 0.5997933149337769, 0.06941478699445724, 0.28033316135406494, -0.581537127494812, -0.11054923385381699, -0.2653702199459076, -0.1864512413740158, -0.04499641805887222, 0.33870965242385864, 0.5930343866348267, -0.5831760764122009, 0.5823239088058472, -0.18878374993801117, 0.2154279351234436, -0.1438329666852951, 0.022094525396823883, 0.9668612480163574, -0.3462618887424469, -0.2012287676334381, -0.09989869594573975, 1.068229079246521, 0.6739797592163086, 0.5170937180519104, -0.06461900472640991, -0.17435328662395477, 0.16800491511821747, 0.026579951867461205, -0.7165895700454712, -0.24931228160858154, 0.5131080746650696, -0.5351616144180298, -0.6623138785362244, 0.22870610654354095, -1.0377839803695679, -0.3699485659599304, -0.269404798746109, 0.4397389888763428, -0.46695274114608765, -0.5700756907463074, 0.08192507177591324, -0.4409959316253662, 0.3940393626689911, -0.047869402915239334, -0.5398656725883484, 0.2139652520418167, 0.5420885682106018, 0.8984992504119873, 0.128860205411911, -0.28061819076538086, -0.13751143217086792, -0.30517277121543884, -0.2984485924243927, 0.679834246635437, -0.2476159632205963, -0.43498530983924866, 0.24014006555080414, 0.125249981880188, -0.11431531608104706, -0.2522429823875427, 0.8258377909660339, -0.31398776173591614, 0.326106458902359, -0.8110799789428711, -0.4156874418258667, 0.028831109404563904, 0.39848819375038147, -0.5862112641334534, 1.2063521146774292, 0.23511385917663574, -1.0798230171203613, 0.3761652708053589, -0.9924390316009521, -0.6257637143135071, -0.16418571770191193, 0.11556712538003922, -0.41350892186164856, -0.0028302830178290606, 0.2524123787879944, 0.623202919960022, -0.22886711359024048, 0.16104918718338013, -0.452473908662796, -0.08549683541059494, 0.26796141266822815, 0.1375172883272171, 1.3204739093780518, 0.2995859682559967, -0.20227210223674774, -0.07280935347080231, -0.6675078272819519, 0.03140157461166382, 0.30960017442703247, -0.05012919008731842, -0.11740610003471375, -0.252519816160202, 0.28758811950683594, 0.451151579618454, 0.37110063433647156, -0.7734697461128235, 0.11196933686733246, -0.34505128860473633, 0.5730628371238708, 0.6555840373039246, 0.29168403148651123, 0.3149058520793915, -0.3159027099609375, 0.46543988585472107, 0.30480772256851196, 0.31112730503082275, 0.35014644265174866, -0.4133262038230896, -0.8708183169364929, 0.043082863092422485, 0.22143222391605377, 0.5069408416748047, -0.7077860832214355, 0.7042874097824097, -0.5661051273345947, -0.696038544178009, -0.6426870226860046, 0.00875349622219801, 0.09551601111888885, 0.5309619903564453, 0.4602934420108795, 0.06780364364385605, -0.8942466974258423, -0.7858219742774963, -0.1736309677362442, -0.3174767792224884, 0.2493550330400467, 0.11205621808767319, 0.6763885617256165, 0.11355389654636383, 0.8304653763771057, -0.628636360168457, -0.2859996557235718, -0.5633099675178528, 0.19860275089740753, 0.1802823394536972, 0.3279839754104614, 0.6301504373550415, -0.6521164774894714, -0.72294020652771, -0.3397865891456604, -0.8480578660964966, -0.24860860407352448, -0.03695335239171982, -0.4555342495441437, 0.27894970774650574, 0.39997291564941406, -0.5030825138092041, 0.3634428083896637, 0.4519112706184387, -0.36549249291419983, 0.3575816750526428, 0.4802874028682709, 0.2986411452293396, -1.5221288204193115, 0.047943636775016785, 0.2656969726085663, 0.025100097060203552, -0.46490296721458435, -0.3268192410469055, 0.0141192227602005, 0.18167611956596375, -0.340533971786499, 0.4906255900859833, -0.03146090358495712, 0.40628042817115784, 0.048387229442596436, 0.10131307691335678, 0.07543720304965973, 0.5877602100372314, -0.1191282644867897, 0.5280306935310364, 0.5920186638832092, -0.22176684439182281, 0.17526157200336456, 0.46970802545547485, -0.24293677508831024, 0.6207757592201233, -0.560184121131897, 0.011446098797023296, -0.13231031596660614, 0.2115992307662964, -1.1328147649765015, -0.2760831415653229, 0.5352410078048706, -0.9092254042625427, 0.04356922209262848, -0.06837848573923111, -0.7750489711761475, -0.39069128036499023, -0.7717938423156738, -0.016965650022029877, 0.6112474799156189, -0.2856374979019165, 0.5319263339042664, 0.4419030249118805, 0.23017027974128723, -0.5949147343635559, -1.1908529996871948, 0.24287819862365723, -0.41403982043266296, -0.5557093620300293, -0.01213051937520504, -0.19296646118164062, -0.1154613047838211, 0.021262627094984055, 0.09490042179822922, 0.07637426257133484, -0.029525643214583397, 0.31448936462402344, 0.34192943572998047, -0.07052865624427795, 0.3226252794265747, 0.009633449837565422, 0.11297819763422012, 0.22076869010925293, -0.25114768743515015, 0.5943862199783325, -0.31424885988235474, 0.2048993706703186, -0.4561546742916107, 0.228440523147583, 0.4289490580558777, -0.09443674981594086, 1.1014142036437988, 1.039368748664856, -0.39601394534111023, 0.05277867987751961, -0.5882102251052856, -0.006042877212166786, -0.40870943665504456, 0.28068336844444275, -0.25682494044303894, -0.6716679930686951, 0.6892107129096985, 0.44051340222358704, 0.011488035321235657, 0.8386483192443848, 0.5866701602935791, -0.216007798910141, 0.7106672525405884, 0.23910902440547943, -0.40942469239234924, 0.5273546576499939, -0.6307662725448608, 0.29061442613601685, -0.6544836163520813, -0.3072611391544342, -0.5282152891159058, -0.3862774074077606, -0.8722959756851196, 0.007687004283070564, 0.05775006487965584, -0.3220231235027313, -0.42398226261138916, 0.49273741245269775, -0.4841250777244568, 0.2991931438446045, 0.7003036737442017, 0.36351004242897034, -0.10987506806850433, 0.023252349346876144, 0.01692628115415573, -0.10257226228713989, -0.4457753598690033, -0.5562957525253296, 1.149767518043518, 0.31139281392097473, 0.3312629163265228, -0.015473981387913227, 1.0627611875534058, 0.42884060740470886, 0.2823149859905243, -0.7739866375923157, 0.8584461212158203, -0.270890474319458, -0.6653017997741699, -0.08348348736763, -0.48626649379730225, -0.6906695365905762, -0.31138408184051514, -0.20564821362495422, -0.7590802907943726, 0.20782847702503204, -0.1710662990808487, -0.1625281572341919, 0.418570876121521, -1.0153928995132446, 0.9266483187675476, -0.040729817003011703, -0.22715821862220764, -0.0062943571247160435, -0.9180801510810852, 0.09521998465061188, 0.1826743185520172, 0.19204488396644592, -0.31338855624198914, -0.11276465654373169, 1.1054822206497192, -0.43290817737579346, 0.9547950029373169, -0.4674251675605774, 0.2081926017999649, 0.517232358455658, -0.052152249962091446, 0.19172987341880798, -0.06860582530498505, -0.2739570736885071, 0.30325907468795776, 0.017335304990410805, -0.6117655634880066, -0.2762114405632019, 0.7547519207000732, -1.0425864458084106, -0.05023009702563286, -0.4220413863658905, -0.22041261196136475, -0.45225808024406433, 0.2133651077747345, 0.42735162377357483, 0.3630993068218231, -0.12268684804439545, 0.2650779187679291, 0.19727769494056702, -0.13492287695407867, 0.3055862784385681, -0.0054693385027348995, 0.12273385375738144, -0.7425239086151123, 0.9679065346717834, 0.20749422907829285, 0.0807933658361435, 0.4805985689163208, 0.3603731393814087, -0.43499454855918884, -0.3762206733226776, 0.07773031294345856, 0.3778297007083893, -0.8407913446426392, -0.3862805664539337, -0.7644396424293518, -0.2779843807220459, -0.7528924345970154, -0.02695355750620365, -0.13534870743751526, -0.5735201239585876, -0.41626808047294617, -0.537346601486206, 0.6771995425224304, 0.5285594463348389, -0.2796913981437683, 0.43541377782821655, -0.6738327741622925, 0.20097395777702332, -0.07737521827220917, 0.3793606460094452, 0.08654019236564636, -0.5093008279800415, -0.5024328827857971, 0.11884365975856781, -0.28916892409324646, -0.8438798189163208, 0.5322061777114868, 0.06507670134305954, 0.1320856809616089, 0.18273304402828217, 0.19214759767055511, 0.6036477088928223, 0.08052873611450195, 1.090531826019287, 0.18212148547172546, -0.8848491311073303, 0.6795955300331116, -0.5115233063697815, 0.24534861743450165, 1.0023387670516968, 0.30498504638671875, -0.634687066078186, -0.453836053609848, -0.8946274518966675, -0.9289823174476624, 0.8616043925285339, 0.3906170725822449, 0.22327224910259247, -0.214866042137146, 0.20211240649223328, -0.07853440940380096, 0.4400072395801544, -0.9355308413505554, -0.46362748742103577, -0.5433565974235535, -0.652582049369812, -0.07991866022348404, -0.2445012778043747, -0.06942089647054672, -0.3499310612678528, 0.8521251082420349, 0.18000051379203796, 0.47852855920791626, 0.12105453759431839, -0.024894962087273598, 0.019873714074492455, 0.24324283003807068, 0.2544995844364166, 0.2478741556406021, -0.5691686272621155, -0.02154378965497017, 0.12371346354484558, -0.5590647459030151, -0.13733422756195068, -0.028911730274558067, -0.004924205597490072, -0.1326175481081009, 0.3970988094806671, 0.6940134167671204, -0.20832760632038116, -0.2919343113899231, 0.6106557250022888, -0.09528417885303497, -0.43452319502830505, -0.4455988109111786, -0.13567255437374115, 0.11764384061098099, 0.1858767420053482, 0.364641398191452, 0.23613014817237854, 0.09961159527301788, -0.3845011293888092, 0.07677359133958817, 0.09128163009881973, -0.41641080379486084, -0.5426355600357056, 0.4119214415550232, 0.15606488287448883, -0.11331319063901901, 0.5261667966842651, -0.48531702160835266, -0.7049258947372437, 0.6084989905357361, -0.027837319299578667, 1.3058193922042847, 0.1919194906949997, 0.5237706303596497, 0.856316089630127, 0.3888220191001892, -0.005910621024668217, 0.6275253295898438, 0.02292691171169281, -0.7736935615539551, -0.25229525566101074, -0.5205484628677368, -0.11070188134908676, 0.21885710954666138, -0.6933214068412781, 0.44767269492149353, -0.47864216566085815, -0.36831289529800415, -0.18699534237384796, 0.24616870284080505, -0.760521650314331, 0.36612170934677124, 0.2345656454563141, 0.950933575630188, -1.158502459526062, 0.5836326479911804, 0.6626594066619873, -0.7435741424560547, -0.9678118824958801, 0.2884496748447418, -0.011753193102777004, -0.7152265310287476, 0.3727729916572571, 0.1606484055519104, 0.09623394161462784, -0.05423082038760185, -0.843594491481781, -0.4452994763851166, 0.9942352771759033, 0.08178438246250153, 0.03749394416809082, 0.10364918410778046, 0.4645078480243683, 0.8542681932449341, -0.279570609331131, 0.3197014629840851, 0.5491612553596497, 0.518862247467041, 0.2172183245420456, -0.44507378339767456, 0.14348487555980682, -0.43497729301452637, -0.25611022114753723, 0.04489828646183014, -0.9406763911247253, 0.615342378616333, 0.07965123653411865, -0.10089954733848572, -0.15383680164813995, 0.5601838827133179, 0.10297570377588272, 0.3505837917327881, 0.5780396461486816, 0.5989221930503845, 0.5393543839454651, -0.28225576877593994, 1.0032556056976318, -0.26360347867012024, 0.6577258706092834, 1.0219089984893799, 0.06238291785120964, 0.8455452919006348, 0.5297830700874329, -0.3449300229549408, 0.615025520324707, 0.7986345887184143, -0.03138791024684906, 0.60042405128479, -0.08705731481313705, -0.02516607753932476, -0.16728229820728302, -0.19854311645030975, -0.1973651945590973, 0.1770509034395218, 0.25026652216911316, -0.3310683071613312, -0.14849209785461426, -0.06847146898508072, 0.2682037651538849, -0.15405356884002686, -0.22675013542175293, 0.656235933303833, 0.09161825478076935, -0.48806074261665344, 0.45878902077674866, -0.223539337515831, 0.6193556189537048, -0.5072824358940125, 0.37933051586151123, -0.2995695471763611, -0.016432587057352066, -0.5383963584899902, -1.1366080045700073, 0.3655092120170593, 0.06515264511108398, 0.12395300716161728, -0.27788835763931274, 0.6414936780929565, -0.2701595425605774, -0.6644412279129028, 0.37321770191192627, 0.5033953785896301, 0.023172054439783096, -0.04344508424401283, -0.9643622040748596, 0.14093030989170074, 0.3474818170070648, -0.4140629768371582, 0.06398721784353256, 0.6561367511749268, 0.26539093255996704, 0.3762391209602356, 0.2641274929046631, 0.1651068776845932, -0.032750170677900314, 0.5336338877677917, 0.8727797269821167, -0.7941904664039612, -0.4537533223628998, -0.8295996785163879, 0.7326681613922119, -0.4187125563621521, -0.38410648703575134, 0.7694262266159058, 0.6386348605155945, 0.6692467331886292, -0.22685179114341736, 1.0711055994033813, -0.5051326155662537, 0.8208064436912537, -0.23111429810523987, 0.5647433400154114, -0.7889083623886108, 0.10141143947839737, -0.4170038402080536, -0.5492895841598511, -0.4581563174724579, 0.5055567622184753, -0.6335899233818054, 0.34387174248695374, 0.8118318915367126, 0.9129487872123718, 0.03524026647210121, 0.10249878466129303, 0.0036629196256399155, 0.5021248459815979, 0.23870345950126648, 0.47801390290260315, 0.6733112335205078, -0.7533551454544067, 0.7536139488220215, -0.5566070079803467, -0.03945249691605568, -0.20606975257396698, -0.787580132484436, -1.189086675643921, -0.92205810546875, -0.5980537533760071, -0.963592529296875, -0.14572745561599731, 1.1847952604293823, 0.3138786554336548, -1.0178221464157104, -0.3217809498310089, -0.18972213566303253, -0.06875776499509811, 0.12362395972013474, -0.3744852840900421, 0.5704478621482849, -0.3030722737312317, -0.6125628352165222, -0.3389701545238495, -0.09829207509756088, -0.05290847644209862, 0.09539381414651871, 0.05066605657339096, -0.377458393573761, 0.03771054372191429, 0.5009750127792358, 0.11076477915048599, -0.4090549349784851, -0.34188127517700195, 0.29865339398384094, -0.24697546660900116, 0.39144155383110046, 0.43399637937545776, -0.4046328663825989, 0.18726398050785065, 0.6350180506706238, 0.23012609779834747, 0.469686359167099, -0.0023610752541571856, -0.02668730355799198, -0.8499987721443176, -0.04957375302910805, 0.34074410796165466, 0.4092996418476105, 0.5179468989372253, -0.16611088812351227, 0.6289480328559875, 0.3138193190097809, -0.36315831542015076, -0.7565216422080994, -0.29820483922958374, -1.581046462059021, 0.08948420733213425, 1.4543681144714355, 0.21747276186943054, -0.3331064283847809, 0.06058046221733093, -0.34457510709762573, 0.47952163219451904, -0.9353682398796082, 0.779202401638031, 0.9958661794662476, 0.16843248903751373, 0.023049572482705116, -0.43201106786727905, 0.4265812635421753, 0.18847712874412537, -0.8092755079269409, 0.007289604749530554, 0.12808501720428467, 0.37958070635795593, 0.004353813827037811, 0.770311713218689, -0.20258969068527222, 0.03682217001914978, -0.1044778972864151, 0.3205455541610718, 0.14496839046478271, 0.10664749145507812, -0.17574213445186615, 0.07673469930887222, -0.04486541450023651, -0.5593655109405518 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
nguha/legalbench
nguha
2023-10-18T17:18:18Z
5,940
28
null
[ "task_categories:text-classification", "task_categories:question-answering", "task_categories:text-generation", "size_categories:10K<n<100K", "language:en", "license:other", "legal", "law", "finance", "arxiv:2308.11462", "region:us" ]
2023-10-18T17:18:18Z
2023-03-16T23:03:42.000Z
2023-03-16T23:03:42
--- language: - en license: other size_categories: - 10K<n<100K task_categories: - text-classification - question-answering - text-generation tags: - legal - law - finance dataset_info: - config_name: abercrombie features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 307 num_examples: 5 - name: test num_bytes: 6240 num_examples: 95 download_size: 19499061 dataset_size: 6547 - config_name: canada_tax_court_outcomes features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 2975 num_examples: 6 - name: test num_bytes: 157411 num_examples: 244 download_size: 19499061 dataset_size: 160386 - config_name: citation_prediction_classification features: - name: answer dtype: string - name: citation dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 660 num_examples: 2 - name: test num_bytes: 26112 num_examples: 108 download_size: 19499061 dataset_size: 26772 - config_name: citation_prediction_open features: - name: answer dtype: string - name: circuit dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 555 num_examples: 2 - name: test num_bytes: 13460 num_examples: 53 download_size: 19499061 dataset_size: 14015 - config_name: consumer_contracts_qa features: - name: answer dtype: string - name: contract dtype: string - name: index dtype: string - name: question dtype: string splits: - name: train num_bytes: 9941 num_examples: 4 - name: test num_bytes: 1221320 num_examples: 396 download_size: 19499061 dataset_size: 1231261 - config_name: contract_nli_confidentiality_of_agreement features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 4070 num_examples: 8 - name: test num_bytes: 43818 num_examples: 82 download_size: 19499061 dataset_size: 47888 - config_name: contract_nli_explicit_identification features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3615 num_examples: 8 - name: test num_bytes: 62133 num_examples: 109 download_size: 19499061 dataset_size: 65748 - config_name: contract_nli_inclusion_of_verbally_conveyed_information features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3817 num_examples: 8 - name: test num_bytes: 81933 num_examples: 139 download_size: 19499061 dataset_size: 85750 - config_name: contract_nli_limited_use features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 4855 num_examples: 8 - name: test num_bytes: 98534 num_examples: 208 download_size: 19499061 dataset_size: 103389 - config_name: contract_nli_no_licensing features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2591 num_examples: 8 - name: test num_bytes: 78173 num_examples: 162 download_size: 19499061 dataset_size: 80764 - config_name: contract_nli_notice_on_compelled_disclosure features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3907 num_examples: 8 - name: test num_bytes: 80470 num_examples: 142 download_size: 19499061 dataset_size: 84377 - config_name: contract_nli_permissible_acquirement_of_similar_information features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2736 num_examples: 8 - name: test num_bytes: 87469 num_examples: 178 download_size: 19499061 dataset_size: 90205 - config_name: contract_nli_permissible_copy features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3480 num_examples: 8 - name: test num_bytes: 39015 num_examples: 87 download_size: 19499061 dataset_size: 42495 - config_name: contract_nli_permissible_development_of_similar_information features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3921 num_examples: 8 - name: test num_bytes: 62603 num_examples: 136 download_size: 19499061 dataset_size: 66524 - config_name: contract_nli_permissible_post-agreement_possession features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 4608 num_examples: 8 - name: test num_bytes: 65932 num_examples: 111 download_size: 19499061 dataset_size: 70540 - config_name: contract_nli_return_of_confidential_information features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3499 num_examples: 8 - name: test num_bytes: 35672 num_examples: 66 download_size: 19499061 dataset_size: 39171 - config_name: contract_nli_sharing_with_employees features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3173 num_examples: 8 - name: test num_bytes: 104240 num_examples: 170 download_size: 19499061 dataset_size: 107413 - config_name: contract_nli_sharing_with_third-parties features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3249 num_examples: 8 - name: test num_bytes: 104822 num_examples: 180 download_size: 19499061 dataset_size: 108071 - config_name: contract_nli_survival_of_obligations features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2272 num_examples: 8 - name: test num_bytes: 75450 num_examples: 157 download_size: 19499061 dataset_size: 77722 - config_name: contract_qa features: - name: answer dtype: string - name: index dtype: string - name: question dtype: string - name: text dtype: string splits: - name: train num_bytes: 2408 num_examples: 8 - name: test num_bytes: 26370 num_examples: 80 download_size: 19499061 dataset_size: 28778 - config_name: corporate_lobbying features: - name: answer dtype: string - name: bill_summary dtype: string - name: bill_title dtype: string - name: company_description dtype: string - name: company_name dtype: string - name: index dtype: string splits: - name: train num_bytes: 54334 num_examples: 10 - name: test num_bytes: 2974813 num_examples: 490 download_size: 19499061 dataset_size: 3029147 - config_name: cuad_affiliate_license-licensee features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 4067 num_examples: 6 - name: test num_bytes: 115798 num_examples: 198 download_size: 19499061 dataset_size: 119865 - config_name: cuad_affiliate_license-licensor features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 4247 num_examples: 6 - name: test num_bytes: 64931 num_examples: 88 download_size: 19499061 dataset_size: 69178 - config_name: cuad_anti-assignment features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2070 num_examples: 6 - name: test num_bytes: 513026 num_examples: 1172 download_size: 19499061 dataset_size: 515096 - config_name: cuad_audit_rights features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2555 num_examples: 6 - name: test num_bytes: 526977 num_examples: 1216 download_size: 19499061 dataset_size: 529532 - config_name: cuad_cap_on_liability features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2621 num_examples: 6 - name: test num_bytes: 587220 num_examples: 1246 download_size: 19499061 dataset_size: 589841 - config_name: cuad_change_of_control features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2231 num_examples: 6 - name: test num_bytes: 203823 num_examples: 416 download_size: 19499061 dataset_size: 206054 - config_name: cuad_competitive_restriction_exception features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2774 num_examples: 6 - name: test num_bytes: 115844 num_examples: 220 download_size: 19499061 dataset_size: 118618 - config_name: cuad_covenant_not_to_sue features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2581 num_examples: 6 - name: test num_bytes: 153799 num_examples: 308 download_size: 19499061 dataset_size: 156380 - config_name: cuad_effective_date features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2080 num_examples: 6 - name: test num_bytes: 87802 num_examples: 236 download_size: 19499061 dataset_size: 89882 - config_name: cuad_exclusivity features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 1897 num_examples: 6 - name: test num_bytes: 355097 num_examples: 762 download_size: 19499061 dataset_size: 356994 - config_name: cuad_expiration_date features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 1638 num_examples: 6 - name: test num_bytes: 354232 num_examples: 876 download_size: 19499061 dataset_size: 355870 - config_name: cuad_governing_law features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2420 num_examples: 6 - name: test num_bytes: 337322 num_examples: 876 download_size: 19499061 dataset_size: 339742 - config_name: cuad_insurance features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2537 num_examples: 6 - name: test num_bytes: 475827 num_examples: 1030 download_size: 19499061 dataset_size: 478364 - config_name: cuad_ip_ownership_assignment features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 4756 num_examples: 6 - name: test num_bytes: 294749 num_examples: 576 download_size: 19499061 dataset_size: 299505 - config_name: cuad_irrevocable_or_perpetual_license features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 5328 num_examples: 6 - name: test num_bytes: 160279 num_examples: 280 download_size: 19499061 dataset_size: 165607 - config_name: cuad_joint_ip_ownership features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 5011 num_examples: 6 - name: test num_bytes: 90592 num_examples: 192 download_size: 19499061 dataset_size: 95603 - config_name: cuad_license_grant features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3690 num_examples: 6 - name: test num_bytes: 709331 num_examples: 1396 download_size: 19499061 dataset_size: 713021 - config_name: cuad_liquidated_damages features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3579 num_examples: 6 - name: test num_bytes: 97839 num_examples: 220 download_size: 19499061 dataset_size: 101418 - config_name: cuad_minimum_commitment features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2874 num_examples: 6 - name: test num_bytes: 354078 num_examples: 772 download_size: 19499061 dataset_size: 356952 - config_name: cuad_most_favored_nation features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2103 num_examples: 6 - name: test num_bytes: 32800 num_examples: 64 download_size: 19499061 dataset_size: 34903 - config_name: cuad_no-solicit_of_customers features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3310 num_examples: 6 - name: test num_bytes: 40828 num_examples: 84 download_size: 19499061 dataset_size: 44138 - config_name: cuad_no-solicit_of_employees features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3619 num_examples: 6 - name: test num_bytes: 72661 num_examples: 142 download_size: 19499061 dataset_size: 76280 - config_name: cuad_non-compete features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3675 num_examples: 6 - name: test num_bytes: 211272 num_examples: 442 download_size: 19499061 dataset_size: 214947 - config_name: cuad_non-disparagement features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2168 num_examples: 6 - name: test num_bytes: 49850 num_examples: 100 download_size: 19499061 dataset_size: 52018 - config_name: cuad_non-transferable_license features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3643 num_examples: 6 - name: test num_bytes: 269505 num_examples: 542 download_size: 19499061 dataset_size: 273148 - config_name: cuad_notice_period_to_terminate_renewal features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 4166 num_examples: 6 - name: test num_bytes: 100014 num_examples: 222 download_size: 19499061 dataset_size: 104180 - config_name: cuad_post-termination_services features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 3349 num_examples: 6 - name: test num_bytes: 419477 num_examples: 808 download_size: 19499061 dataset_size: 422826 - config_name: cuad_price_restrictions features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2945 num_examples: 6 - name: test num_bytes: 19430 num_examples: 46 download_size: 19499061 dataset_size: 22375 - config_name: cuad_renewal_term features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2163 num_examples: 6 - name: test num_bytes: 168528 num_examples: 386 download_size: 19499061 dataset_size: 170691 - config_name: cuad_revenue-profit_sharing features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2581 num_examples: 6 - name: test num_bytes: 363594 num_examples: 774 download_size: 19499061 dataset_size: 366175 - config_name: cuad_rofr-rofo-rofn features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2817 num_examples: 6 - name: test num_bytes: 338243 num_examples: 690 download_size: 19499061 dataset_size: 341060 - config_name: cuad_source_code_escrow features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2696 num_examples: 6 - name: test num_bytes: 58125 num_examples: 118 download_size: 19499061 dataset_size: 60821 - config_name: cuad_termination_for_convenience features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 1506 num_examples: 6 - name: test num_bytes: 181164 num_examples: 430 download_size: 19499061 dataset_size: 182670 - config_name: cuad_third_party_beneficiary features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2378 num_examples: 6 - name: test num_bytes: 24106 num_examples: 68 download_size: 19499061 dataset_size: 26484 - config_name: cuad_uncapped_liability features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2570 num_examples: 6 - name: test num_bytes: 158009 num_examples: 294 download_size: 19499061 dataset_size: 160579 - config_name: cuad_unlimited-all-you-can-eat-license features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 2414 num_examples: 6 - name: test num_bytes: 22347 num_examples: 48 download_size: 19499061 dataset_size: 24761 - config_name: cuad_volume_restriction features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 1397 num_examples: 6 - name: test num_bytes: 129456 num_examples: 322 download_size: 19499061 dataset_size: 130853 - config_name: cuad_warranty_duration features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string - name: document_name dtype: string splits: - name: train num_bytes: 1815 num_examples: 6 - name: test num_bytes: 142580 num_examples: 320 download_size: 19499061 dataset_size: 144395 - config_name: definition_classification features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1826 num_examples: 8 - name: test num_bytes: 371743 num_examples: 1337 download_size: 19499061 dataset_size: 373569 - config_name: definition_extraction features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 2731 num_examples: 8 - name: test num_bytes: 254689 num_examples: 687 download_size: 19499061 dataset_size: 257420 - config_name: diversity_1 features: - name: aic_is_met dtype: string - name: answer dtype: string - name: index dtype: string - name: parties_are_diverse dtype: string - name: text dtype: string splits: - name: train num_bytes: 803 num_examples: 6 - name: test num_bytes: 41135 num_examples: 300 download_size: 19499061 dataset_size: 41938 - config_name: diversity_2 features: - name: aic_is_met dtype: string - name: answer dtype: string - name: index dtype: string - name: parties_are_diverse dtype: string - name: text dtype: string splits: - name: train num_bytes: 1041 num_examples: 6 - name: test num_bytes: 53537 num_examples: 300 download_size: 19499061 dataset_size: 54578 - config_name: diversity_3 features: - name: aic_is_met dtype: string - name: answer dtype: string - name: index dtype: string - name: parties_are_diverse dtype: string - name: text dtype: string splits: - name: train num_bytes: 992 num_examples: 6 - name: test num_bytes: 50744 num_examples: 300 download_size: 19499061 dataset_size: 51736 - config_name: diversity_4 features: - name: aic_is_met dtype: string - name: answer dtype: string - name: index dtype: string - name: parties_are_diverse dtype: string - name: text dtype: string splits: - name: train num_bytes: 1070 num_examples: 6 - name: test num_bytes: 53464 num_examples: 300 download_size: 19499061 dataset_size: 54534 - config_name: diversity_5 features: - name: aic_is_met dtype: string - name: answer dtype: string - name: index dtype: string - name: parties_are_diverse dtype: string - name: text dtype: string splits: - name: train num_bytes: 1232 num_examples: 6 - name: test num_bytes: 62550 num_examples: 300 download_size: 19499061 dataset_size: 63782 - config_name: diversity_6 features: - name: aic_is_met dtype: string - name: answer dtype: string - name: index dtype: string - name: parties_are_diverse dtype: string - name: text dtype: string splits: - name: train num_bytes: 2016 num_examples: 6 - name: test num_bytes: 100411 num_examples: 300 download_size: 19499061 dataset_size: 102427 - config_name: function_of_decision_section features: - name: Citation dtype: string - name: Paragraph dtype: string - name: answer dtype: string - name: index dtype: string splits: - name: train num_bytes: 1547 num_examples: 7 - name: test num_bytes: 210419 num_examples: 367 download_size: 19499061 dataset_size: 211966 - config_name: hearsay features: - name: answer dtype: string - name: index dtype: string - name: slice dtype: string - name: text dtype: string splits: - name: train num_bytes: 788 num_examples: 5 - name: test num_bytes: 17150 num_examples: 94 download_size: 19499061 dataset_size: 17938 - config_name: insurance_policy_interpretation features: - name: answer dtype: string - name: claim dtype: string - name: index dtype: string - name: policy dtype: string splits: - name: train num_bytes: 3119 num_examples: 5 - name: test num_bytes: 70764 num_examples: 133 download_size: 19499061 dataset_size: 73883 - config_name: international_citizenship_questions features: - name: answer dtype: string - name: index dtype: string - name: question dtype: string splits: - name: train num_bytes: 832 num_examples: 4 - name: test num_bytes: 2089107 num_examples: 9306 download_size: 19499061 dataset_size: 2089939 - config_name: jcrew_blocker features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 7352 num_examples: 6 - name: test num_bytes: 59879 num_examples: 54 download_size: 19499061 dataset_size: 67231 - config_name: learned_hands_benefits features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 8267 num_examples: 6 - name: test num_bytes: 87512 num_examples: 66 download_size: 19499061 dataset_size: 95779 - config_name: learned_hands_business features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 6075 num_examples: 6 - name: test num_bytes: 202116 num_examples: 174 download_size: 19499061 dataset_size: 208191 - config_name: learned_hands_consumer features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 6355 num_examples: 6 - name: test num_bytes: 795463 num_examples: 614 download_size: 19499061 dataset_size: 801818 - config_name: learned_hands_courts features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 10693 num_examples: 6 - name: test num_bytes: 228204 num_examples: 192 download_size: 19499061 dataset_size: 238897 - config_name: learned_hands_crime features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 7322 num_examples: 6 - name: test num_bytes: 846597 num_examples: 688 download_size: 19499061 dataset_size: 853919 - config_name: learned_hands_divorce features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 10651 num_examples: 6 - name: test num_bytes: 189279 num_examples: 150 download_size: 19499061 dataset_size: 199930 - config_name: learned_hands_domestic_violence features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 11170 num_examples: 6 - name: test num_bytes: 239797 num_examples: 174 download_size: 19499061 dataset_size: 250967 - config_name: learned_hands_education features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 6992 num_examples: 6 - name: test num_bytes: 79184 num_examples: 56 download_size: 19499061 dataset_size: 86176 - config_name: learned_hands_employment features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 11223 num_examples: 6 - name: test num_bytes: 909220 num_examples: 710 download_size: 19499061 dataset_size: 920443 - config_name: learned_hands_estates features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 5970 num_examples: 6 - name: test num_bytes: 216836 num_examples: 178 download_size: 19499061 dataset_size: 222806 - config_name: learned_hands_family features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 8714 num_examples: 6 - name: test num_bytes: 3073508 num_examples: 2265 download_size: 19499061 dataset_size: 3082222 - config_name: learned_hands_health features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 6155 num_examples: 6 - name: test num_bytes: 336934 num_examples: 226 download_size: 19499061 dataset_size: 343089 - config_name: learned_hands_housing features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 9726 num_examples: 6 - name: test num_bytes: 6028612 num_examples: 4494 download_size: 19499061 dataset_size: 6038338 - config_name: learned_hands_immigration features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 3955 num_examples: 6 - name: test num_bytes: 165352 num_examples: 134 download_size: 19499061 dataset_size: 169307 - config_name: learned_hands_torts features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 4484 num_examples: 6 - name: test num_bytes: 615649 num_examples: 432 download_size: 19499061 dataset_size: 620133 - config_name: learned_hands_traffic features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 6250 num_examples: 6 - name: test num_bytes: 667539 num_examples: 556 download_size: 19499061 dataset_size: 673789 - config_name: legal_reasoning_causality features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 4688 num_examples: 4 - name: test num_bytes: 87007 num_examples: 55 download_size: 19499061 dataset_size: 91695 - config_name: maud_ability_to_consummate_concept_is_subject_to_mae_carveouts features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 5322 num_examples: 1 - name: test num_bytes: 304051 num_examples: 69 download_size: 19499061 dataset_size: 309373 - config_name: maud_accuracy_of_fundamental_target_rws_bringdown_standard features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 271 num_examples: 1 - name: test num_bytes: 148869 num_examples: 175 download_size: 19499061 dataset_size: 149140 - config_name: maud_accuracy_of_target_capitalization_rw_(outstanding_shares)_bringdown_standard_answer features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1493 num_examples: 1 - name: test num_bytes: 152224 num_examples: 181 download_size: 19499061 dataset_size: 153717 - config_name: maud_accuracy_of_target_general_rw_bringdown_timing_answer features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1000 num_examples: 1 - name: test num_bytes: 152717 num_examples: 181 download_size: 19499061 dataset_size: 153717 - config_name: maud_additional_matching_rights_period_for_modifications_(cor) features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 2170 num_examples: 1 - name: test num_bytes: 312632 num_examples: 158 download_size: 19499061 dataset_size: 314802 - config_name: maud_application_of_buyer_consent_requirement_(negative_interim_covenant) features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 558 num_examples: 1 - name: test num_bytes: 96990 num_examples: 180 download_size: 19499061 dataset_size: 97548 - config_name: maud_buyer_consent_requirement_(ordinary_course) features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 2620 num_examples: 1 - name: test num_bytes: 138668 num_examples: 181 download_size: 19499061 dataset_size: 141288 - config_name: maud_change_in_law__subject_to_disproportionate_impact_modifier features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 6000 num_examples: 1 - name: test num_bytes: 448666 num_examples: 99 download_size: 19499061 dataset_size: 454666 - config_name: maud_changes_in_gaap_or_other_accounting_principles__subject_to_disproportionate_impact_modifier features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 5998 num_examples: 1 - name: test num_bytes: 444442 num_examples: 98 download_size: 19499061 dataset_size: 450440 - config_name: maud_cor_permitted_in_response_to_intervening_event features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 2631 num_examples: 1 - name: test num_bytes: 195447 num_examples: 100 download_size: 19499061 dataset_size: 198078 - config_name: maud_cor_permitted_with_board_fiduciary_determination_only features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 3970 num_examples: 1 - name: test num_bytes: 194108 num_examples: 100 download_size: 19499061 dataset_size: 198078 - config_name: maud_cor_standard_(intervening_event) features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 727 num_examples: 1 - name: test num_bytes: 175140 num_examples: 84 download_size: 19499061 dataset_size: 175867 - config_name: maud_cor_standard_(superior_offer) features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1173 num_examples: 1 - name: test num_bytes: 196905 num_examples: 100 download_size: 19499061 dataset_size: 198078 - config_name: maud_definition_contains_knowledge_requirement_-_answer features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1899 num_examples: 1 - name: test num_bytes: 231405 num_examples: 147 download_size: 19499061 dataset_size: 233304 - config_name: maud_definition_includes_asset_deals features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 614 num_examples: 1 - name: test num_bytes: 289644 num_examples: 146 download_size: 19499061 dataset_size: 290258 - config_name: maud_definition_includes_stock_deals features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 683 num_examples: 1 - name: test num_bytes: 292466 num_examples: 148 download_size: 19499061 dataset_size: 293149 - config_name: maud_fiduciary_exception__board_determination_standard features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1594 num_examples: 1 - name: test num_bytes: 288180 num_examples: 179 download_size: 19499061 dataset_size: 289774 - config_name: maud_fiduciary_exception_board_determination_trigger_(no_shop) features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 3538 num_examples: 1 - name: test num_bytes: 286236 num_examples: 179 download_size: 19499061 dataset_size: 289774 - config_name: maud_financial_point_of_view_is_the_sole_consideration features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 3290 num_examples: 1 - name: test num_bytes: 217048 num_examples: 112 download_size: 19499061 dataset_size: 220338 - config_name: maud_fls_(mae)_standard features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 4669 num_examples: 1 - name: test num_bytes: 349856 num_examples: 77 download_size: 19499061 dataset_size: 354525 - config_name: maud_general_economic_and_financial_conditions_subject_to_disproportionate_impact_modifier features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 5998 num_examples: 1 - name: test num_bytes: 445306 num_examples: 98 download_size: 19499061 dataset_size: 451304 - config_name: maud_includes_consistent_with_past_practice features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1127 num_examples: 1 - name: test num_bytes: 140161 num_examples: 181 download_size: 19499061 dataset_size: 141288 - config_name: maud_initial_matching_rights_period_(cor) features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 3041 num_examples: 1 - name: test num_bytes: 311761 num_examples: 158 download_size: 19499061 dataset_size: 314802 - config_name: maud_initial_matching_rights_period_(ftr) features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1850 num_examples: 1 - name: test num_bytes: 279202 num_examples: 132 download_size: 19499061 dataset_size: 281052 - config_name: maud_intervening_event_-_required_to_occur_after_signing_-_answer features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 3055 num_examples: 1 - name: test num_bytes: 230249 num_examples: 147 download_size: 19499061 dataset_size: 233304 - config_name: maud_knowledge_definition features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 240 num_examples: 1 - name: test num_bytes: 359730 num_examples: 167 download_size: 19499061 dataset_size: 359970 - config_name: maud_liability_standard_for_no-shop_breach_by_target_non-do_representatives features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 154 num_examples: 1 - name: test num_bytes: 40946 num_examples: 156 download_size: 19499061 dataset_size: 41100 - config_name: maud_ordinary_course_efforts_standard features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1037 num_examples: 1 - name: test num_bytes: 140251 num_examples: 181 download_size: 19499061 dataset_size: 141288 - config_name: maud_pandemic_or_other_public_health_event__subject_to_disproportionate_impact_modifier features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 3728 num_examples: 1 - name: test num_bytes: 447053 num_examples: 98 download_size: 19499061 dataset_size: 450781 - config_name: maud_pandemic_or_other_public_health_event_specific_reference_to_pandemic-related_governmental_responses_or_measures features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 3728 num_examples: 1 - name: test num_bytes: 447053 num_examples: 98 download_size: 19499061 dataset_size: 450781 - config_name: maud_relational_language_(mae)_applies_to features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 4948 num_examples: 1 - name: test num_bytes: 409477 num_examples: 90 download_size: 19499061 dataset_size: 414425 - config_name: maud_specific_performance features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 771 num_examples: 1 - name: test num_bytes: 107392 num_examples: 178 download_size: 19499061 dataset_size: 108163 - config_name: maud_tail_period_length features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 406 num_examples: 1 - name: test num_bytes: 108632 num_examples: 179 download_size: 19499061 dataset_size: 109038 - config_name: maud_type_of_consideration features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 258 num_examples: 1 - name: test num_bytes: 139270 num_examples: 172 download_size: 19499061 dataset_size: 139528 - config_name: nys_judicial_ethics features: - name: answer dtype: string - name: index dtype: string - name: question dtype: string - name: year dtype: string splits: - name: train num_bytes: 1697 num_examples: 8 - name: test num_bytes: 53974 num_examples: 292 download_size: 19499061 dataset_size: 55671 - config_name: opp115_data_retention features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1791 num_examples: 8 - name: test num_bytes: 18620 num_examples: 88 download_size: 19499061 dataset_size: 20411 - config_name: opp115_data_security features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 2123 num_examples: 8 - name: test num_bytes: 352667 num_examples: 1334 download_size: 19499061 dataset_size: 354790 - config_name: opp115_do_not_track features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 2507 num_examples: 8 - name: test num_bytes: 26363 num_examples: 110 download_size: 19499061 dataset_size: 28870 - config_name: opp115_first_party_collection_use features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 2227 num_examples: 8 - name: test num_bytes: 463566 num_examples: 2086 download_size: 19499061 dataset_size: 465793 - config_name: opp115_international_and_specific_audiences features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1643 num_examples: 8 - name: test num_bytes: 338196 num_examples: 980 download_size: 19499061 dataset_size: 339839 - config_name: opp115_policy_change features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1201 num_examples: 8 - name: test num_bytes: 94060 num_examples: 431 download_size: 19499061 dataset_size: 95261 - config_name: opp115_third_party_sharing_collection features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1217 num_examples: 8 - name: test num_bytes: 383909 num_examples: 1590 download_size: 19499061 dataset_size: 385126 - config_name: opp115_user_access,_edit_and_deletion features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1251 num_examples: 8 - name: test num_bytes: 108969 num_examples: 462 download_size: 19499061 dataset_size: 110220 - config_name: opp115_user_choice_control features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1695 num_examples: 8 - name: test num_bytes: 353113 num_examples: 1546 download_size: 19499061 dataset_size: 354808 - config_name: oral_argument_question_purpose features: - name: Docket No. dtype: string - name: answer dtype: string - name: index dtype: string - name: question dtype: string splits: - name: train num_bytes: 2415 num_examples: 7 - name: test num_bytes: 95262 num_examples: 312 download_size: 19499061 dataset_size: 97677 - config_name: overruling features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 629 num_examples: 6 - name: test num_bytes: 443484 num_examples: 2394 download_size: 19499061 dataset_size: 444113 - config_name: personal_jurisdiction features: - name: answer dtype: string - name: index dtype: string - name: slice dtype: string - name: text dtype: string splits: - name: train num_bytes: 1660 num_examples: 4 - name: test num_bytes: 21089 num_examples: 50 download_size: 19499061 dataset_size: 22749 - config_name: privacy_policy_entailment features: - name: answer dtype: string - name: description dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 6282 num_examples: 8 - name: test num_bytes: 3174950 num_examples: 4335 download_size: 19499061 dataset_size: 3181232 - config_name: privacy_policy_qa features: - name: answer dtype: string - name: index dtype: string - name: question dtype: string - name: text dtype: string splits: - name: train num_bytes: 2231 num_examples: 8 - name: test num_bytes: 2817986 num_examples: 10923 download_size: 19499061 dataset_size: 2820217 - config_name: proa features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1057 num_examples: 5 - name: test num_bytes: 25475 num_examples: 95 download_size: 19499061 dataset_size: 26532 - config_name: rule_qa features: - name: answer dtype: string - name: doctrine dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 0 num_examples: 0 - name: test num_bytes: 12665 num_examples: 50 download_size: 19499061 dataset_size: 12665 - config_name: sara_entailment features: - name: answer dtype: string - name: case id dtype: string - name: description dtype: string - name: index dtype: string - name: question dtype: string - name: statute dtype: string - name: text dtype: string splits: - name: train num_bytes: 2528 num_examples: 4 - name: test num_bytes: 225560 num_examples: 272 download_size: 19499061 dataset_size: 228088 - config_name: sara_numeric features: - name: answer dtype: string - name: case id dtype: string - name: description dtype: string - name: index dtype: string - name: question dtype: string - name: statute dtype: string - name: text dtype: string splits: - name: train num_bytes: 238363 num_examples: 4 - name: test num_bytes: 5725392 num_examples: 96 download_size: 19499061 dataset_size: 5963755 - config_name: scalr features: - name: answer dtype: string - name: choice_0 dtype: string - name: choice_1 dtype: string - name: choice_2 dtype: string - name: choice_3 dtype: string - name: choice_4 dtype: string - name: index dtype: string - name: question dtype: string splits: - name: train num_bytes: 0 num_examples: 0 - name: test num_bytes: 1026740 num_examples: 571 download_size: 19499061 dataset_size: 1026740 - config_name: ssla_company_defendants features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 5847 num_examples: 3 - name: test num_bytes: 2313039 num_examples: 1228 download_size: 19499061 dataset_size: 2318886 - config_name: ssla_individual_defendants features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 5962 num_examples: 3 - name: test num_bytes: 2002620 num_examples: 1012 download_size: 19499061 dataset_size: 2008582 - config_name: ssla_plaintiff features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 5831 num_examples: 3 - name: test num_bytes: 1926518 num_examples: 1033 download_size: 19499061 dataset_size: 1932349 - config_name: successor_liability features: - name: answer dtype: string - name: index dtype: string - name: issue dtype: string - name: text dtype: string splits: - name: train num_bytes: 1734 num_examples: 3 - name: test num_bytes: 26490 num_examples: 47 download_size: 19499061 dataset_size: 28224 - config_name: supply_chain_disclosure_best_practice_accountability features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 18987 num_examples: 8 - name: test num_bytes: 1347025 num_examples: 379 download_size: 19499061 dataset_size: 1366012 - config_name: supply_chain_disclosure_best_practice_audits features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 23879 num_examples: 8 - name: test num_bytes: 1342065 num_examples: 379 download_size: 19499061 dataset_size: 1365944 - config_name: supply_chain_disclosure_best_practice_certification features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 22058 num_examples: 8 - name: test num_bytes: 1338516 num_examples: 378 download_size: 19499061 dataset_size: 1360574 - config_name: supply_chain_disclosure_best_practice_training features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 24071 num_examples: 8 - name: test num_bytes: 1341885 num_examples: 379 download_size: 19499061 dataset_size: 1365956 - config_name: supply_chain_disclosure_best_practice_verification features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 27158 num_examples: 8 - name: test num_bytes: 1338739 num_examples: 379 download_size: 19499061 dataset_size: 1365897 - config_name: supply_chain_disclosure_disclosed_accountability features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 18902 num_examples: 8 - name: test num_bytes: 1344444 num_examples: 378 download_size: 19499061 dataset_size: 1363346 - config_name: supply_chain_disclosure_disclosed_audits features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 24404 num_examples: 8 - name: test num_bytes: 1341624 num_examples: 379 download_size: 19499061 dataset_size: 1366028 - config_name: supply_chain_disclosure_disclosed_certification features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 17987 num_examples: 8 - name: test num_bytes: 1342646 num_examples: 378 download_size: 19499061 dataset_size: 1360633 - config_name: supply_chain_disclosure_disclosed_training features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 27093 num_examples: 8 - name: test num_bytes: 1338919 num_examples: 379 download_size: 19499061 dataset_size: 1366012 - config_name: supply_chain_disclosure_disclosed_verification features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 25387 num_examples: 8 - name: test num_bytes: 1340578 num_examples: 379 download_size: 19499061 dataset_size: 1365965 - config_name: telemarketing_sales_rule features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 1230 num_examples: 4 - name: test num_bytes: 17140 num_examples: 47 download_size: 19499061 dataset_size: 18370 - config_name: textualism_tool_dictionaries features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 4842 num_examples: 4 - name: test num_bytes: 102644 num_examples: 107 download_size: 19499061 dataset_size: 107486 - config_name: textualism_tool_plain features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 3338 num_examples: 4 - name: test num_bytes: 167428 num_examples: 165 download_size: 19499061 dataset_size: 170766 - config_name: ucc_v_common_law features: - name: answer dtype: string - name: contract dtype: string - name: index dtype: string splits: - name: train num_bytes: 904 num_examples: 6 - name: test num_bytes: 12694 num_examples: 94 download_size: 19499061 dataset_size: 13598 - config_name: unfair_tos features: - name: answer dtype: string - name: index dtype: string - name: text dtype: string splits: - name: train num_bytes: 2186 num_examples: 9 - name: test num_bytes: 787061 num_examples: 3813 download_size: 19499061 dataset_size: 789247 --- # Dataset Card for Dataset Name - **Homepage: https://hazyresearch.stanford.edu/legalbench/** - **Repository: https://github.com/HazyResearch/legalbench/** - **Paper: https://arxiv.org/abs/2308.11462** ## Dataset Description ### Dataset Summary The LegalBench project is an ongoing open science effort to collaboratively curate tasks for evaluating legal reasoning in English large language models (LLMs). The benchmark currently consists of 162 tasks gathered from 40 contributors. If you have questions about the project or would like to get involved, please see the website for more information. ### Supported Tasks and Leaderboards LegalBench tasks span multiple types (binary classification, multi-class classification, extraction, generation, entailment), multiple types of text (statutes, judicial opinions, contracts, etc.), and multiple areas of law (evidence, contracts, civil procedure, etc.). For more information on tasks, we recommend visiting the website, where you can search through task descriptions, or the Github repository, which contains more granular task descriptions. We also recommend reading the paper, which provides more background on task significance and construction process. ### Languages All LegalBench tasks are in English. ## Dataset Structure ### Data Instances Detailed descriptions of the instances for each task can be found on the Github. An example of an instance, for the `abercrombie` task, is provided below: ``` { "text": "The mark "Ivory" for a product made of elephant tusks.", "label": "generic" "idx": 0 } ``` A substantial number of LegalBench tasks are binary classification tasks, which require the LLM to determine if a piece of text has some legal attribute. Because these are framed as Yes/No questions, the label space is "Yes" or "No". ### Data Fields Detailed descriptions of the instances for each task can be found on the Github. ### Data Splits Each task has a training and evaluation split. Following [RAFT](https://huggingface.co/datasets/ought/raft), train splits only consists of a few-labeled instances, reflecting the few-shot nature of most LLMs. ## Dataset Creation ### Curation Rationale LegalBench was created to enable researchers to better benchmark the legal reasoning capabilities of LLMs. ### Source Data #### Initial Data Collection and Normalization Broadly, LegalBench tasks are drawn from three sources. The first source of tasks are existing available datasets and corpora. Most of these were originally released for non-LLM evaluation settings. In creating tasks for LegalBench from these sources, we often significantly reformatted data and restructured the prediction objective. For instance, the original [CUAD dataset](https://github.com/TheAtticusProject/cuad) contains annotations on long-documents and is intended for evaluating extraction with span-prediction models. We restructure this corpora to generate a binary classification task for each type of contractual clause. While the original corpus emphasized the long-document aspects of contracts, our restructured tasks emphasize whether LLMs can identify the distinguishing features of different types of clauses. The second source of tasks are datasets that were previously constructed by legal professionals but never released. This primarily includes datasets hand-coded by legal scholars as part of prior empirical legal projects. The last category of tasks are those that were developed specifically for \name, by the authors of this paper. Overall, tasks are drawn from 36 distinct corpora. Please see the Appendix of the paper for more details. #### Who are the source language producers? LegalBench data was created by humans. Demographic information for these individuals is not available. ### Annotations #### Annotation process Please see the paper for more information on the annotation process used in the creation of each task. #### Who are the annotators? Please see the paper for more information on the identity of annotators for each task. ### Personal and Sensitive Information Data in this benchmark has either been synthetically generated, or derived from an already public source (e.g., contracts from the EDGAR database). Several tasks have been derived from the LearnedHands corpus, which consists of public posts on /r/LegalAdvice. Some posts may discuss sensitive issues. ## Considerations for Using the Data ### Social Impact of Dataset Please see the original paper for a discussion of social impact. ### Discussion of Biases Please see the original paper for a discussion of social impact. ### Other Known Limitations LegalBench primarily contains tasks corresponding to American law. ## Additional Information ### Dataset Curators Please see the website for a full list of participants in the LegalBench project. ### Licensing Information LegalBench tasks are subject to different licenses. Please see the paper for a description of the licenses. ### Citation Information If you intend to reference LegalBench broadly, please use the citation below. If you are working with a particular task, please use the citation below in addition to the task specific citation (which can be found on the task page on the website or Github). ``` @misc{guha2023legalbench, title={LegalBench: A Collaboratively Built Benchmark for Measuring Legal Reasoning in Large Language Models}, author={Neel Guha and Julian Nyarko and Daniel E. Ho and Christopher Ré and Adam Chilton and Aditya Narayana and Alex Chohlas-Wood and Austin Peters and Brandon Waldon and Daniel N. Rockmore and Diego Zambrano and Dmitry Talisman and Enam Hoque and Faiz Surani and Frank Fagan and Galit Sarfaty and Gregory M. Dickinson and Haggai Porat and Jason Hegland and Jessica Wu and Joe Nudell and Joel Niklaus and John Nay and Jonathan H. Choi and Kevin Tobia and Margaret Hagan and Megan Ma and Michael Livermore and Nikon Rasumov-Rahe and Nils Holzenberger and Noam Kolt and Peter Henderson and Sean Rehaag and Sharad Goel and Shang Gao and Spencer Williams and Sunny Gandhi and Tom Zur and Varun Iyer and Zehua Li}, year={2023}, eprint={2308.11462}, archivePrefix={arXiv}, primaryClass={cs.CL} } @article{koreeda2021contractnli, title={ContractNLI: A dataset for document-level natural language inference for contracts}, author={Koreeda, Yuta and Manning, Christopher D}, journal={arXiv preprint arXiv:2110.01799}, year={2021} } @article{hendrycks2021cuad, title={Cuad: An expert-annotated nlp dataset for legal contract review}, author={Hendrycks, Dan and Burns, Collin and Chen, Anya and Ball, Spencer}, journal={arXiv preprint arXiv:2103.06268}, year={2021} } @article{wang2023maud, title={MAUD: An Expert-Annotated Legal NLP Dataset for Merger Agreement Understanding}, author={Wang, Steven H and Scardigli, Antoine and Tang, Leonard and Chen, Wei and Levkin, Dimitry and Chen, Anya and Ball, Spencer and Woodside, Thomas and Zhang, Oliver and Hendrycks, Dan}, journal={arXiv preprint arXiv:2301.00876}, year={2023} } @inproceedings{wilson2016creation, title={The creation and analysis of a website privacy policy corpus}, author={Wilson, Shomir and Schaub, Florian and Dara, Aswarth Abhilash and Liu, Frederick and Cherivirala, Sushain and Leon, Pedro Giovanni and Andersen, Mads Schaarup and Zimmeck, Sebastian and Sathyendra, Kanthashree Mysore and Russell, N Cameron and others}, booktitle={Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)}, pages={1330--1340}, year={2016} } @inproceedings{zheng2021does, title={When does pretraining help? assessing self-supervised learning for law and the casehold dataset of 53,000+ legal holdings}, author={Zheng, Lucia and Guha, Neel and Anderson, Brandon R and Henderson, Peter and Ho, Daniel E}, booktitle={Proceedings of the eighteenth international conference on artificial intelligence and law}, pages={159--168}, year={2021} } @article{zimmeck2019maps, title={Maps: Scaling privacy compliance analysis to a million apps}, author={Zimmeck, Sebastian and Story, Peter and Smullen, Daniel and Ravichander, Abhilasha and Wang, Ziqi and Reidenberg, Joel R and Russell, N Cameron and Sadeh, Norman}, journal={Proc. Priv. Enhancing Tech.}, volume={2019}, pages={66}, year={2019} } @article{ravichander2019question, title={Question answering for privacy policies: Combining computational and legal perspectives}, author={Ravichander, Abhilasha and Black, Alan W and Wilson, Shomir and Norton, Thomas and Sadeh, Norman}, journal={arXiv preprint arXiv:1911.00841}, year={2019} } @article{holzenberger2021factoring, title={Factoring statutory reasoning as language understanding challenges}, author={Holzenberger, Nils and Van Durme, Benjamin}, journal={arXiv preprint arXiv:2105.07903}, year={2021} } @article{lippi2019claudette, title={CLAUDETTE: an automated detector of potentially unfair clauses in online terms of service}, author={Lippi, Marco and Pa{\l}ka, Przemys{\l}aw and Contissa, Giuseppe and Lagioia, Francesca and Micklitz, Hans-Wolfgang and Sartor, Giovanni and Torroni, Paolo}, journal={Artificial Intelligence and Law}, volume={27}, pages={117--139}, year={2019}, publisher={Springer} } ```
[ -0.22307048738002777, -0.6431681513786316, 0.6486245393753052, 0.13430660963058472, -0.2661953866481781, -0.20061931014060974, -0.3795955777168274, -0.6110898852348328, 0.14840739965438843, 0.6743826270103455, -0.155323788523674, -0.784281849861145, -0.5929243564605713, -0.006092630326747894, -0.32468748092651367, 1.0895700454711914, 0.013933103531599045, -0.0107338922098279, -0.3929372727870941, -0.3030020296573639, -0.30210912227630615, -0.6059847474098206, -0.48957157135009766, -0.12585754692554474, 0.3623817563056946, 0.10064531862735748, 0.5595231652259827, 0.6870940923690796, 0.31545963883399963, 0.2718628942966461, -0.29145926237106323, -0.2016151249408722, -0.23781737685203552, -0.07181255519390106, -0.29021087288856506, -0.44659459590911865, -0.4925503134727478, 0.19242623448371887, 0.43424999713897705, 0.7020319104194641, -0.2934865653514862, 0.2203935831785202, -0.11347083747386932, 0.6659643054008484, -0.6083186268806458, 0.3796708285808563, -0.605029284954071, -0.046557698398828506, -0.2941036820411682, -0.046317990869283676, -0.4670097827911377, -0.2283850610256195, -0.10381247848272324, -0.6130582690238953, 0.15709665417671204, 0.322506308555603, 1.098315715789795, 0.35125547647476196, -0.5772867798805237, -0.11351034045219421, -0.24228815734386444, 0.6754371523857117, -0.9639183878898621, 0.5172157883644104, 0.4313468039035797, 0.0404091477394104, -0.40256401896476746, -0.7496076822280884, -0.5477219820022583, -0.5776638984680176, -0.2918300926685333, 0.3532911539077759, -0.3633366823196411, 0.13080383837223053, 0.6384007334709167, 0.11566729843616486, -0.5100542902946472, 0.29024121165275574, -0.5658416748046875, -0.37789082527160645, 0.9952199459075928, -0.14081427454948425, -0.037952642887830734, -0.4260982573032379, -0.1864449679851532, 0.06270661950111389, -0.5772386193275452, 0.27812281250953674, 0.6293898224830627, 0.17876525223255157, -0.3118760287761688, 0.6763617396354675, -0.08041989058256149, 0.5747101902961731, 0.08801758289337158, -0.10746607184410095, 0.6482296586036682, -0.4091058671474457, -0.19671139121055603, 0.08250885456800461, 0.9742320775985718, 0.2726794183254242, 0.16454558074474335, -0.18911364674568176, -0.060127802193164825, -0.2629493474960327, 0.22588735818862915, -0.45401549339294434, 0.05911972001194954, 0.4647798538208008, -0.503086507320404, -0.08825933933258057, 0.2563592195510864, -0.6733396649360657, -0.547621488571167, -0.6677893996238708, -0.23058222234249115, -0.21989642083644867, -0.18330815434455872, 0.23544630408287048, -0.16246077418327332, 0.4961267411708832, 0.09027619659900665, -0.5437281727790833, 0.38255202770233154, 0.8135977983474731, 0.28959333896636963, -0.0662439838051796, -0.21454846858978271, -0.6359831094741821, 0.03214846923947334, -0.32282111048698425, 0.5853528380393982, -0.37767091393470764, -0.0947953537106514, 0.02986271120607853, 0.14307840168476105, -0.012417442165315151, -0.560805082321167, 0.8716942667961121, -0.43479546904563904, 0.21116003394126892, -0.29875677824020386, -0.6346516013145447, -0.20886974036693573, 0.2791673243045807, -0.5901829600334167, 1.1126892566680908, 0.057186756283044815, -0.8734356760978699, 0.6515594720840454, -0.641768753528595, -0.531902015209198, 0.07347098737955093, -0.4962629973888397, -0.4846667945384979, -0.024903103709220886, -0.10210154205560684, 0.4351625144481659, -0.5162186026573181, 0.6221713423728943, -0.4297350347042084, 0.07584231346845627, 0.2660369277000427, 0.06523645669221878, 1.1735879182815552, 0.4114457368850708, -0.6423822045326233, 0.20370160043239594, -0.8851861357688904, -0.11422188580036163, 0.18900060653686523, -0.5083431601524353, -0.19841593503952026, 0.07022988796234131, -0.15791408717632294, 0.4045572280883789, 0.2921813726425171, -0.5697546005249023, -0.10285292565822601, -0.3648032248020172, 0.24874532222747803, 0.6594880819320679, -0.03390587866306305, 0.25407204031944275, -0.1742536872625351, 0.5930233597755432, -0.0631553903222084, 0.006765326019376516, 0.43558141589164734, -0.43605098128318787, -0.8781359195709229, -0.20151464641094208, 0.6956703066825867, 0.5615015029907227, -0.4403340816497803, 0.6369573473930359, -0.5545128583908081, -0.4633490741252899, -0.47527647018432617, 0.20021672546863556, 0.600730836391449, 0.3130190074443817, 0.43416327238082886, -0.23310497403144836, -0.6257967948913574, -1.1029915809631348, -0.3584696352481842, -0.2951982021331787, 0.09914402663707733, 0.4222799241542816, 0.6589990854263306, 0.04178975522518158, 0.9329519867897034, -0.3867247998714447, -0.2030230313539505, -0.3501400351524353, 0.22590167820453644, 0.44175392389297485, 0.34124302864074707, 0.5945663452148438, -0.7397434711456299, -0.5675981640815735, 0.039292555302381516, -0.7868992686271667, -0.25392672419548035, -0.377744197845459, -0.25260746479034424, 0.36120572686195374, 0.802415668964386, -0.6318613886833191, 0.2879088521003723, 0.10453221201896667, -0.6860602498054504, 0.7866837978363037, -0.26898685097694397, -0.09094975888729095, -0.9808018803596497, 0.22813893854618073, 0.0811285749077797, -0.23509535193443298, -0.39470234513282776, 0.1084325835108757, -0.06741127371788025, 0.24051445722579956, -0.633599042892456, 0.4929456114768982, -0.6543691158294678, -0.3848940134048462, 0.14975805580615997, 0.26839035749435425, -0.09911888092756271, 0.5883849859237671, -0.1670117974281311, 0.6487818956375122, 0.39326921105384827, -0.5580939054489136, 0.26205822825431824, 0.2747623026371002, -0.3835691213607788, 0.6255834698677063, -0.6353133916854858, -0.046048328280448914, -0.1831989735364914, 0.22919721901416779, -0.40480363368988037, -0.13022589683532715, 0.41244715452194214, -0.2903803288936615, 0.31879922747612, -0.30131617188453674, -0.7176921367645264, -0.43372300267219543, -0.36729663610458374, -0.0021401469130069017, 0.2826921045780182, -0.1995350569486618, 0.8606157898902893, 0.5719486474990845, -0.04696192592382431, -0.8388828039169312, -0.7927227020263672, 0.17824958264827728, -0.3746882677078247, -0.5180851817131042, 0.43514499068260193, 0.0008272986742667854, -0.44625821709632874, 0.2875503599643707, 0.06515508890151978, -0.14475640654563904, 0.10993612557649612, 0.3971731662750244, 0.13171406090259552, -0.08652705699205399, 0.23839566111564636, 0.03693660348653793, -0.07580892741680145, 0.4248272776603699, -0.139435812830925, 0.3315122127532959, -0.06981994211673737, -0.33350449800491333, -0.12049400806427002, 0.24136663973331451, 0.4327952265739441, -0.2716064751148224, 0.5541315078735352, 0.30851900577545166, -0.18938197195529938, -0.06718695908784866, -0.8614043593406677, 0.25560879707336426, -0.3820984959602356, 0.34637564420700073, -0.35746896266937256, -0.8208323121070862, 0.5012373328208923, 0.18884634971618652, 0.26629209518432617, 0.9572630524635315, 0.5955021381378174, 0.035295628011226654, 0.30726000666618347, 0.422662615776062, -0.03983043506741524, 0.3411916494369507, -0.27848681807518005, 0.18640778958797455, -0.6677097082138062, -0.20489326119422913, -0.7425323128700256, -0.08169484883546829, -0.8220244646072388, -0.41198277473449707, -0.030278263613581657, 0.02739029936492443, -0.2637225389480591, 0.7344614267349243, -0.24851728975772858, 0.4217143952846527, 0.7318238019943237, 0.013375548645853996, 0.2786870300769806, -0.12514221668243408, -0.4777882695198059, 0.10440142452716827, -0.5847944617271423, -0.5022567510604858, 1.250223159790039, 0.32416078448295593, 0.24268366396427155, 0.15821854770183563, 0.9612717032432556, 0.3342321217060089, 0.025725971907377243, -0.6378620862960815, 0.8504540324211121, -0.23968501389026642, -0.9067710638046265, -0.26278308033943176, -0.5589947700500488, -1.3851134777069092, 0.13361689448356628, -0.38708892464637756, -0.7393981218338013, 0.46180739998817444, -0.09068507701158524, -0.4290449917316437, 0.007969151251018047, -0.5295737981796265, 0.9419636726379395, -0.4431045353412628, -0.6670429110527039, -0.36277204751968384, -0.8313418030738831, 0.18971097469329834, -0.1419893354177475, 0.5397210121154785, -0.29840075969696045, -0.005989768076688051, 0.9697410464286804, -0.5230119228363037, 0.853367030620575, -0.23551250994205475, -0.06503156572580338, 0.5199805498123169, -0.16304191946983337, 0.5923158526420593, -0.12990498542785645, -0.132662832736969, 0.08720976114273071, 0.10708487778902054, -0.28871116042137146, -0.41454270482063293, 0.4635627865791321, -0.4964865744113922, -0.5715275406837463, -0.5879733562469482, -0.48242080211639404, -0.12921464443206787, 0.49358105659484863, 0.034300900995731354, 0.01610942743718624, 0.06377578526735306, 0.42092347145080566, 0.2540697753429413, -0.31832969188690186, 0.2285097986459732, 0.6782013177871704, 0.029195863753557205, -0.3678310811519623, 0.6115069389343262, 0.3349646031856537, -0.09656526893377304, 0.061052583158016205, 0.11137539893388748, -0.5429145097732544, -0.7504698038101196, 0.09094934165477753, 0.5684443116188049, -0.929629921913147, -0.13652770221233368, -0.5930274724960327, -0.13763535022735596, -0.42809319496154785, 0.1346007138490677, -0.14413981139659882, -0.49283379316329956, -0.208445742726326, -0.4412027895450592, 0.2315589040517807, 0.4736716151237488, -0.050917308777570724, -0.2116980403661728, -0.585681140422821, 0.319099098443985, 0.13227638602256775, 0.4891347885131836, -0.4007824659347534, -0.5363003015518188, -0.1843525916337967, -0.12823191285133362, -0.18163548409938812, -0.6141324043273926, 0.17928490042686462, -0.07283318787813187, 1.0092350244522095, 0.09588319063186646, 0.2800242602825165, 0.5646957755088806, -0.4108508825302124, 0.8371536731719971, 0.1929083615541458, -0.7408910989761353, 0.39376726746559143, -0.3046477138996124, -0.14079248905181885, 0.9488489031791687, 0.3308385908603668, -0.30886054039001465, -0.5360809564590454, -1.0878958702087402, -1.0084166526794434, 0.6739992499351501, 0.3639557361602783, 0.02187942899763584, 0.0795426219701767, 0.4556654095649719, -0.036301106214523315, 0.2452559918165207, -1.0077427625656128, -0.18461477756500244, 0.20072920620441437, -0.25032374262809753, 0.1821342557668686, -0.2734502851963043, -0.2638844847679138, -0.3525051176548004, 0.9006765484809875, 0.021716613322496414, 0.15786249935626984, 0.1081262081861496, -0.27239733934402466, 0.2701225280761719, 0.623619556427002, 0.5059003829956055, 0.6900635957717896, -0.0946764126420021, 0.15232044458389282, 0.27962392568588257, -0.2922760546207428, 0.043333474546670914, 0.5118340849876404, -0.17867490649223328, 0.005369518883526325, 0.489997535943985, 0.8108378052711487, 0.24619728326797485, -0.7275956869125366, 0.572016716003418, 0.14811329543590546, -0.7493436336517334, -0.6042284965515137, -0.021760666742920876, 0.06273165345191956, 0.5262070298194885, 0.23692983388900757, -0.2402368187904358, 0.2663925290107727, -0.3260433077812195, 0.24480433762073517, 0.2459930032491684, -0.14711306989192963, 0.14181853830814362, 0.6650151014328003, 0.08736534416675568, 0.10099657624959946, 0.38324442505836487, -0.47956231236457825, -0.313848078250885, 0.7164598107337952, 0.16450192034244537, 0.8801863193511963, 0.46832436323165894, -0.005478396080434322, 0.4994736611843109, 0.29222947359085083, -0.12368331104516983, 0.25351887941360474, -0.017587080597877502, -0.4988195300102234, -0.5738144516944885, -0.5003620386123657, -0.17916670441627502, 0.2021489143371582, -0.4742985963821411, 0.2907834053039551, -0.39992499351501465, -0.3135281503200531, 0.13335728645324707, 0.0747874453663826, -0.6276295185089111, 0.011907014064490795, 0.13998936116695404, 0.7485855221748352, -0.6228809952735901, 0.7215057611465454, 0.683417558670044, -0.8462375402450562, -0.8300529718399048, -0.09589138627052307, 0.11311957240104675, -0.3737337589263916, 0.742871105670929, 0.041437599807977676, 0.14277368783950806, -0.28656455874443054, -0.5945199728012085, -0.7967711091041565, 1.0713324546813965, 0.6398696303367615, -0.6154817938804626, -0.03482332453131676, 0.44341573119163513, 0.6577935218811035, -0.06088918447494507, 0.06772952526807785, 0.6768463850021362, 0.6426986455917358, -0.03451553359627724, -0.889112651348114, 0.33432266116142273, -0.44070151448249817, -0.17927426099777222, -0.08473353832960129, -0.4430181384086609, 0.5974439978599548, 0.016092784702777863, -0.21049021184444427, -0.26326990127563477, 0.5927395820617676, 0.3504425585269928, 0.2302834689617157, 0.602250337600708, 0.8324661254882812, 0.8600834012031555, -0.1139845922589302, 1.1646720170974731, -0.4706774652004242, 0.42073342204093933, 1.4325629472732544, -0.12268657237291336, 0.8591712117195129, 0.5101808905601501, -0.5800414085388184, 0.6845999360084534, 0.5206775665283203, -0.4135684072971344, 0.007439018692821264, 0.47220176458358765, 0.21341386437416077, -0.32878342270851135, -0.20360177755355835, -0.34446099400520325, 0.3101838231086731, -0.04724109172821045, -0.5216441750526428, -0.13002130389213562, -0.42780235409736633, 0.29076096415519714, 0.15509633719921112, 0.012931461445987225, 0.8261668086051941, 0.1197332814335823, -0.7559031248092651, 0.5708610415458679, 0.04181608185172081, 0.5766640901565552, -0.6142374873161316, 0.08672797679901123, -0.1757391393184662, -0.0030157724395394325, -0.45639699697494507, -0.8882512450218201, 0.2912408113479614, 0.17161667346954346, -0.06681277602910995, -0.24993766844272614, 0.49224740266799927, -0.23502294719219208, -0.5241402387619019, 0.6362965106964111, 0.38459500670433044, 0.4188813865184784, 0.10690426826477051, -0.9817935824394226, -0.1675456315279007, -0.03863697871565819, -0.4749460816383362, 0.23725439608097076, 0.5811602473258972, -0.15555386245250702, 0.3573441803455353, 0.716539204120636, 0.09496939927339554, 0.2562902569770813, 0.20869384706020355, 0.9176881909370422, -0.7572984099388123, -0.4860023260116577, -0.5881912708282471, 0.8616628050804138, -0.462069034576416, -0.26359033584594727, 0.7939650416374207, 0.8564914464950562, 0.900584876537323, 0.0594373419880867, 0.7502423524856567, -0.41089358925819397, 0.5352959036827087, -0.5773444771766663, 0.5600940585136414, -0.5247281193733215, 0.3581712543964386, -0.27828916907310486, -0.930071234703064, -0.4318252205848694, 0.5162637829780579, -0.642073929309845, 0.08808791637420654, 0.8960303068161011, 0.6911012530326843, 0.0000700923555996269, -0.40353721380233765, 0.17970915138721466, 0.34417277574539185, 0.2878117561340332, 0.34873831272125244, 0.4374833405017853, -0.3559362292289734, 0.7792593240737915, -0.33799439668655396, -0.012300321832299232, -0.1607540398836136, -1.028352975845337, -0.8047226667404175, -0.4272562265396118, -0.5721887350082397, -0.5672651529312134, -0.12283602356910706, 1.0411827564239502, 0.5125616192817688, -0.9470127820968628, -0.4499913454055786, -0.27559030055999756, 0.0025281456764787436, -0.2163582742214203, -0.2245563566684723, 0.4334820508956909, -0.5451557040214539, -0.4134630560874939, 0.2627362310886383, -0.10416271537542343, -0.1308692991733551, 0.09735140204429626, -0.24958917498588562, -0.5094356536865234, 0.029962360858917236, 0.45889225602149963, 0.40258780121803284, -0.8615700006484985, -0.09244697540998459, -0.31601133942604065, -0.2957305908203125, 0.22568288445472717, 0.6359632015228271, -0.32359829545021057, 0.33669987320899963, 0.45344316959381104, 0.6813018918037415, 0.7448765635490417, -0.012390806339681149, 0.33249950408935547, -0.6712405681610107, 0.1903201937675476, 0.16211146116256714, 0.7699299454689026, 0.03772767260670662, -0.30231091380119324, 0.9467267990112305, 0.17730289697647095, -0.3416025638580322, -0.5044034719467163, -0.03237965330481529, -1.2078416347503662, -0.40202969312667847, 1.4141738414764404, -0.26906415820121765, -0.27650779485702515, -0.29930379986763, -0.19588527083396912, 0.30415990948677063, -0.5220437049865723, 0.5178688168525696, 0.795369029045105, 0.06376665830612183, -0.12779374420642853, -0.8173238039016724, 0.4115021526813507, 0.4210072159767151, -1.0497649908065796, 0.14342892169952393, 0.8373250365257263, 0.23797352612018585, 0.36734405159950256, 0.5579085350036621, -0.1745176613330841, 0.2628205418586731, -0.07743120938539505, 0.19882792234420776, -0.21230435371398926, 0.021013012155890465, -0.22209520637989044, 0.1727893352508545, 0.12357188016176224, 0.09441342204809189 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
sasha/dog-food
sasha
2022-10-25T10:32:37Z
5,937
2
null
[ "task_categories:image-classification", "task_ids:multi-class-image-classification", "annotations_creators:found", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:en", "license:unknown", "region:us" ]
2022-10-25T10:32:37Z
2022-06-20T18:54:18.000Z
2022-06-20T18:54:18
--- annotations_creators: - found language_creators: - found language: - en license: - unknown multilinguality: - monolingual pretty_name: Dog vs Food Dataset size_categories: - 1K<n<10K source_datasets: - original task_categories: - image-classification task_ids: - multi-class-image-classification --- # Dataset Card for the Dog 🐶 vs. Food 🍔 (a.k.a. Dog Food) Dataset ## Table of Contents - [Table of Contents](#table-of-contents) - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:**: https://github.com/qw2243c/Image-Recognition-Dogs-Fried-Chicken-or-Blueberry-Muffins- - **Repository:** : https://github.com/qw2243c/Image-Recognition-Dogs-Fried-Chicken-or-Blueberry-Muffins- - **Paper:** : N/A - **Leaderboard:**: N/A - **Point of Contact:**: @sasha ### Dataset Summary This is a dataset for binary image classification, between 'dog' and 'food' classes. The 'dog' class contains images of dogs that look like fried chicken and some that look like images of muffins, and the 'food' class contains images of (you guessed it) fried chicken and muffins 😋 ### Supported Tasks and Leaderboards TBC ### Languages The labels are in English (['dog', 'food']) ## Dataset Structure ### Data Instances A sample from the training set is provided below: ``` { {'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=300x470 at 0x7F176094EF28>, 'label': 0} } ``` ### Data Fields - img: A `PIL.JpegImageFile` object containing the 300x470. image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]` - label: 0-1 with the following correspondence 0 dog 1 food ### Data Splits Train (2100 images) and Test (900 images) ## Dataset Creation ### Curation Rationale N/A ### Source Data #### Initial Data Collection and Normalization This dataset was taken from the [qw2243c/Image-Recognition-Dogs-Fried-Chicken-or-Blueberry-Muffins?](https://github.com/qw2243c/Image-Recognition-Dogs-Fried-Chicken-or-Blueberry-Muffins-) Github repository, merging the 'chicken' and 'muffin' categories into a single 'food' category, and randomly splitting 10% of the data for validation. ### Annotations #### Annotation process This data was scraped from the internet and annotated based on the query words. ### Personal and Sensitive Information N/A ## Considerations for Using the Data ### Social Impact of Dataset N/A ### Discussion of Biases This dataset is imbalanced -- it has more images of food (2000) compared to dogs (1000), due to the original labeling. This should be taken into account when evaluating models. ### Other Known Limitations N/A ## Additional Information ### Dataset Curators This dataset was created by @lanceyjt, @yl3829, @wesleytao, @qw2243c and @asyouhaveknown ### Licensing Information No information is indicated on the original [github repository](https://github.com/qw2243c/Image-Recognition-Dogs-Fried-Chicken-or-Blueberry-Muffins-). ### Citation Information N/A ### Contributions Thanks to [@sashavor](https://github.com/sashavor) for adding this dataset.
[ -0.4433445334434509, -0.37031203508377075, -0.061739232391119, 0.014899632893502712, -0.18867596983909607, 0.01554958987981081, -0.11925016343593597, -0.626594603061676, 0.3838498294353485, 0.2210828959941864, -0.35838353633880615, -0.8733255863189697, -0.6264241933822632, 0.32021722197532654, -0.10316363722085953, 0.8594648241996765, -0.052439842373132706, 0.3142639994621277, -0.16260303556919098, -0.4352072775363922, -0.3849872946739197, -0.506123423576355, -0.7022318243980408, -0.2549285888671875, 0.5163465738296509, 0.4708154797554016, 0.6611162424087524, 0.896092414855957, 0.649276614189148, 0.25676682591438293, 0.15861006081104279, 0.13569943606853485, -0.2758558690547943, -0.28339892625808716, -0.04958014935255051, -0.3630582392215729, -0.22150224447250366, 0.13683922588825226, 0.29110586643218994, 0.3365083932876587, 0.03392767161130905, 0.39835548400878906, -0.2028413563966751, 0.8562889099121094, -0.6877577304840088, 0.5458712577819824, -0.48259690403938293, 0.21901756525039673, -0.2081834375858307, -0.040430858731269836, -0.0751301720738411, -0.4539715051651001, -0.22218014299869537, -0.776503324508667, 0.09710218757390976, -0.029981909319758415, 1.236640214920044, -0.03685292601585388, -0.3211246132850647, -0.4175528585910797, -0.49791890382766724, 0.6666725277900696, -0.5495277047157288, 0.22718454897403717, 0.7791330218315125, 0.39369791746139526, -0.11044950783252716, -0.90191650390625, -0.7835575938224792, 0.10270923376083374, -0.08178666234016418, 0.26758378744125366, -0.21051861345767975, -0.43013668060302734, 0.5572060346603394, 0.4866715967655182, -0.5083782076835632, -0.04859364777803421, -0.53682541847229, -0.1188267320394516, 0.729015588760376, 0.2511672377586365, 0.32201096415519714, -0.15656279027462006, -0.24968425929546356, -0.6047792434692383, -0.1463092714548111, 0.5520865321159363, 0.014480057172477245, 0.12480154633522034, -0.14132609963417053, 0.62321937084198, -0.3231102228164673, 0.3850729465484619, 0.2683808207511902, -0.26968225836753845, 0.9738258123397827, -0.5422067642211914, -0.18462440371513367, 0.08121363818645477, 0.7886238098144531, 0.795379638671875, -0.10158167779445648, 0.31804922223091125, -0.2199101448059082, 0.2161085158586502, -0.11719560623168945, -0.745596170425415, -0.4633258581161499, 0.3417166769504547, -0.6398910880088806, -0.28673866391181946, 0.34194043278694153, -0.4912572205066681, -0.2909214496612549, 0.0029159998521208763, 0.48848316073417664, -0.41999760270118713, -0.2301846444606781, 0.3148082196712494, -0.668907642364502, 0.8642974495887756, 0.16026341915130615, -0.8625466823577881, 0.2637741267681122, 0.2546526789665222, 0.6185427308082581, 0.24187666177749634, -0.17418648302555084, -0.1838064193725586, 0.3529624938964844, -0.18269991874694824, 0.8408238291740417, -0.576359212398529, -0.3519292175769806, -0.40531909465789795, 0.7311891913414001, -0.030178477987647057, -0.6680091619491577, 0.8338797092437744, -0.3786400854587555, 0.15655454993247986, -0.7510865330696106, -0.5558648705482483, -0.37370216846466064, 0.4494112432003021, -0.8846963047981262, 1.2170974016189575, 0.09311763942241669, -1.0870689153671265, 0.5832837820053101, -0.6763078570365906, -0.5210569500923157, 0.2874911427497864, -0.3843547999858856, -0.617756724357605, -0.3445773720741272, 0.4520060420036316, 0.5840330719947815, -0.21516446769237518, 0.14789552986621857, -0.5346101522445679, -0.3418399691581726, 0.23004837334156036, -0.043957263231277466, 0.9149691462516785, 0.09231738746166229, -0.09854215383529663, -0.0015147292288020253, -0.8920366764068604, 0.22249765694141388, 0.895111083984375, -0.5171773433685303, -0.40829700231552124, 0.0026790564879775047, 0.23452380299568176, 0.11899430304765701, 0.28236454725265503, -0.4356272220611572, 0.2865051031112671, 0.11693762242794037, 0.5315988063812256, 0.5423794984817505, -0.07475898414850235, 0.27775752544403076, -0.6005001664161682, 0.07243390381336212, 0.15388619899749756, 0.3974907398223877, -0.11132549494504929, -0.5593048334121704, -0.48939311504364014, -0.3322722017765045, 0.5208818316459656, 0.7353811860084534, -0.4371214509010315, 0.907273530960083, -0.33312714099884033, -0.7347201108932495, -0.5425536632537842, -0.26716235280036926, 0.17706429958343506, 0.5656431913375854, 0.4002711772918701, -0.5465670228004456, -0.6847894787788391, -1.0709220170974731, 0.262458473443985, 0.11286161094903946, -0.07592266798019409, 0.4936560392379761, 0.7532824873924255, -0.21933278441429138, 0.5934964418411255, -0.5798726677894592, -0.1269826591014862, -0.34042656421661377, -0.109274722635746, 0.31390389800071716, 0.6847915053367615, 0.6954025030136108, -0.9465404748916626, -0.6549423933029175, -0.05964493751525879, -0.8483892679214478, 0.2869282364845276, 0.15843333303928375, -0.1486918330192566, 0.13312509655952454, 0.25602054595947266, -0.5142730474472046, 0.6088652014732361, 0.15698277950286865, -0.2411201447248459, 0.5845938920974731, 0.2097569704055786, 0.4734519422054291, -1.018714189529419, 0.21889525651931763, 0.11425606906414032, 0.19069162011146545, -0.40741562843322754, -0.36187222599983215, 0.36265215277671814, -0.029970504343509674, -0.44270890951156616, 0.5396214127540588, -0.36460715532302856, -0.1363927125930786, 0.15918032824993134, -0.49092015624046326, 0.3639638423919678, 0.5244978666305542, 0.21274127066135406, 0.6114727258682251, 0.7965772151947021, -0.5734142065048218, 0.37272730469703674, 0.4155897796154022, -0.4620271325111389, 0.5060524940490723, -0.6793884634971619, 0.027726735919713974, -0.17791177332401276, 0.4290910065174103, -1.0044851303100586, -0.3756800889968872, 0.7964354157447815, -0.6138288378715515, 0.3151496350765228, -0.03627825900912285, -0.8426592350006104, -0.7030940055847168, -0.6576449275016785, 0.38965556025505066, 0.25840696692466736, -0.5505353808403015, 0.39753150939941406, 0.4980492889881134, 0.384430855512619, -0.4571431279182434, -0.6926693916320801, -0.15772712230682373, -0.0955272689461708, -0.6037607789039612, 0.29208657145500183, -0.1916380524635315, 0.18423739075660706, 0.2441290318965912, -0.09329193830490112, 0.04587502405047417, -0.174559086561203, 0.30058515071868896, 0.21187780797481537, -0.20744207501411438, 0.1784004271030426, -0.2866763770580292, 0.1516556441783905, -0.0326530896127224, -0.09988689422607422, 0.4519539177417755, -0.20798662304878235, -0.016131127253174782, -0.573481559753418, 0.3592028319835663, 0.31685447692871094, -0.32387691736221313, 0.6888723969459534, 1.1187082529067993, -0.462199330329895, 0.2897062599658966, -0.3636120855808258, -0.07264033704996109, -0.4517419934272766, 0.47398316860198975, -0.3571246266365051, -0.18538153171539307, 0.7107952237129211, 0.219837486743927, -0.07862652838230133, 0.5746729373931885, 0.11345814168453217, -0.38293248414993286, 1.0017484426498413, 0.32548099756240845, -0.20512013137340546, 0.6379655003547668, -0.530940592288971, -0.11667115241289139, -0.8324032425880432, -0.6550102233886719, -0.6259936690330505, -0.462626576423645, -0.6807881593704224, -0.3649919331073761, 0.14525467157363892, -0.1465642750263214, -0.2894696891307831, 0.21838073432445526, -0.551766574382782, 0.7680737972259521, 0.7636352181434631, 0.5586062669754028, -0.14076781272888184, 0.30398115515708923, -0.22929160296916962, -0.06258784979581833, -0.7181186079978943, -0.38776278495788574, 1.1015968322753906, 0.40227973461151123, 0.7426843047142029, -0.19012726843357086, 0.5156091451644897, 0.2197543978691101, -0.07763588428497314, -0.7650671601295471, 0.5335816740989685, -0.46751222014427185, -0.6533564925193787, -0.1855699121952057, -0.3083702325820923, -1.0586702823638916, -0.0159637238830328, -0.30067020654678345, -0.5507674813270569, 0.2461693435907364, -0.051356904208660126, -0.0016213414492085576, 0.4856305718421936, -1.0363117456436157, 1.0616121292114258, -0.5965139865875244, -0.36223477125167847, 0.2877112329006195, -0.8514094948768616, 0.13109183311462402, 0.3486860692501068, 0.14344745874404907, -0.07873769104480743, 0.04362916573882103, 1.1137808561325073, -0.3708464205265045, 0.8295232057571411, -0.23550036549568176, 0.3424668610095978, 0.21264608204364777, -0.33665117621421814, 0.613008439540863, -0.1851586103439331, -0.09659605473279953, 0.35067617893218994, 0.2414543479681015, -0.5245846509933472, -0.5893951058387756, 0.3987506031990051, -0.7289515137672424, -0.23872517049312592, -0.504784107208252, -0.2992556095123291, 0.024262329563498497, 0.3797486126422882, 0.44022637605667114, 0.1371055543422699, 0.1804804801940918, 0.3127843141555786, 0.6036601662635803, -0.3869645893573761, 0.030852576717734337, 0.4655154347419739, -0.1548994928598404, -0.7794556617736816, 1.0252164602279663, 0.2971978485584259, -0.13188762962818146, 0.3676067292690277, 0.2704627811908722, -0.4490280747413635, -0.20632672309875488, -0.35794249176979065, 0.1584523767232895, -0.9294195175170898, -0.3041999638080597, -0.5847281217575073, -0.3890446126461029, -0.4127208888530731, -0.0935107097029686, -0.22534073889255524, -0.2074650079011917, -0.5213633179664612, -0.05749794840812683, 0.35843461751937866, 0.4645686447620392, -0.272508442401886, 0.042838603258132935, -0.6849172115325928, 0.24700763821601868, 0.1586139053106308, 0.3602730929851532, 0.1380971372127533, -0.30326008796691895, -0.3601043224334717, -0.009197883307933807, -0.42142945528030396, -0.9411321878433228, 0.38348692655563354, 0.24371272325515747, 0.7126848101615906, 0.3731153905391693, -0.015818726271390915, 0.6483777165412903, 0.11856882274150848, 0.7345782518386841, 0.30828019976615906, -0.4755460321903229, 0.6745462417602539, -0.10528159886598587, 0.4056934714317322, 0.6037264466285706, 0.7838433980941772, -0.47208330035209656, -0.0951811820268631, -0.6183291673660278, -1.0079737901687622, 0.6238526105880737, 0.016029004007577896, -0.15741120278835297, -0.04720451310276985, 0.2169286459684372, 0.24950315058231354, 0.2237633764743805, -0.9808467626571655, -0.6349090337753296, -0.41424885392189026, -0.2002146691083908, 0.2328242063522339, -0.10530102252960205, 0.003517608856782317, -0.8391462564468384, 0.7095558643341064, 0.1430836319923401, 0.31689053773880005, 0.16024371981620789, 0.16591301560401917, -0.11054474860429764, -0.04387649893760681, 0.24080607295036316, 0.16730870306491852, -0.5399662852287292, 0.19736291468143463, -0.17981088161468506, -0.8565618991851807, -0.038927752524614334, -0.07525642216205597, -0.28992435336112976, -0.1619577407836914, 0.24149362742900848, 0.7239021062850952, -0.08582601696252823, -0.4100742042064667, 0.4382309019565582, -0.5638135671615601, -0.5971108675003052, -0.2552034854888916, 0.07772325724363327, -0.1647426337003708, 0.25415658950805664, 0.429255872964859, -0.0565180629491806, 0.18708500266075134, -0.5058464407920837, 0.24781036376953125, 0.390047550201416, 0.16175639629364014, -0.1574723720550537, 0.2058708816766739, -0.06851363927125931, 0.06421641260385513, 0.847460925579071, -0.5890819430351257, -0.43720537424087524, 1.038644552230835, 0.596933126449585, 0.5871454477310181, 0.003102266928181052, 0.24545393884181976, 1.0038634538650513, 0.3236960768699646, -0.09339547157287598, 0.6216169595718384, -0.1407642960548401, -0.910691499710083, 0.29819998145103455, -0.5568338632583618, -0.15045690536499023, 0.7070011496543884, -0.8846886157989502, 0.34216073155403137, -0.5337290167808533, -0.38395506143569946, 0.3729856014251709, 0.23540078103542328, -0.9125367999076843, 0.30596697330474854, 0.14683900773525238, 0.9050159454345703, -0.9362041354179382, 0.699516236782074, 0.9506092071533203, -0.6791568994522095, -0.966005265712738, -0.018119091168045998, -0.17826013267040253, -0.8868524432182312, 0.5960454344749451, 0.4137033522129059, 0.5196359157562256, -0.21041128039360046, -1.0981534719467163, -0.8851771354675293, 1.2552385330200195, -0.13512414693832397, -0.4449581205844879, 0.3292143940925598, 0.05429123714566231, 0.28553682565689087, -0.33312851190567017, 0.12757419049739838, 0.30257853865623474, 0.6527121663093567, 0.45974165201187134, -0.5949625968933105, 0.13234831392765045, -0.5604631304740906, -0.09415069222450256, -0.07515875995159149, -0.7351750135421753, 0.6783066987991333, -0.23325398564338684, -0.5506948232650757, -0.35975944995880127, 0.39963406324386597, 0.19569750130176544, 0.6426141858100891, 0.3079851269721985, 0.7484936118125916, 0.7371038794517517, 0.03494054451584816, 0.6788719892501831, -0.0480070486664772, 0.32329028844833374, 1.2351841926574707, -0.20882517099380493, 0.7532721757888794, 0.37882906198501587, -0.496209055185318, 0.17825546860694885, 1.2317818403244019, -0.802308976650238, 0.9430345892906189, 0.13869823515415192, 0.1600106656551361, -0.06006521359086037, -0.22546376287937164, -0.687559187412262, 0.4330747127532959, 0.49028655886650085, -0.6395190358161926, -0.1411452442407608, -0.06879891455173492, -0.19494469463825226, -0.4883216619491577, -0.3983154296875, 0.7906043529510498, -0.33572080731391907, -0.0360385924577713, 0.8417901992797852, 0.022003520280122757, 0.5415326952934265, -0.41038239002227783, -0.09445566684007645, -0.2549036741256714, -0.10521788895130157, -0.5620810389518738, -1.0508416891098022, 0.2486787736415863, -0.3083778917789459, -0.44603976607322693, 0.3809284269809723, 0.6768213510513306, -0.16653139889240265, -0.7588858604431152, 0.18354934453964233, 0.19658946990966797, 0.3598290681838989, 0.15391066670417786, -1.1524701118469238, 0.4862523376941681, 0.06197194382548332, -0.16744692623615265, 0.17684300243854523, 0.3935216963291168, 0.11464011669158936, 0.37438201904296875, 0.5057981610298157, -0.060678888112306595, 0.04532824829220772, -0.17501476407051086, 1.0514761209487915, -0.7505690455436707, -0.363542377948761, -0.5244228839874268, 0.36087536811828613, -0.09752774983644485, -0.03388392925262451, 0.6276953220367432, 0.9124709367752075, 1.399285078048706, -0.3329607844352722, 1.0881521701812744, -0.5238910913467407, 0.22890624403953552, -0.4993833899497986, 0.47454196214675903, -0.8636888861656189, 0.06300543248653412, -0.19869261980056763, -0.3105069100856781, -0.2840849459171295, 0.8588785529136658, -0.5131398439407349, 0.22369040548801422, 0.5557952523231506, 1.1399086713790894, -0.31275153160095215, -0.030296755954623222, 0.2407141625881195, 0.05751689523458481, -0.054106976836919785, 0.5978688597679138, 0.7073060870170593, -0.7825541496276855, 0.3615245819091797, -0.5163745284080505, -0.06955444812774658, -0.17682519555091858, -0.6112496852874756, -0.6946772933006287, -0.8416321873664856, -0.5420402884483337, -0.3354741334915161, 0.011739037930965424, 0.8014045357704163, 0.8063826560974121, -0.8613513708114624, -0.127921923995018, 0.24317310750484467, 0.05279236659407616, -0.31915128231048584, -0.23800358176231384, 0.5104938745498657, 0.15149705111980438, -0.31862008571624756, -0.29332536458969116, 0.07282963395118713, 0.2621472477912903, 0.20781712234020233, -0.15072844922542572, -0.3833475708961487, -0.18386568129062653, 0.46341472864151, 0.6819071769714355, -0.4987923800945282, 0.033641885966062546, -0.20857404172420502, -0.23355640470981598, 0.6486784219741821, 0.18958328664302826, -0.3535013198852539, 0.388068288564682, 0.22773945331573486, 0.4385259747505188, 0.46985486149787903, 0.0002488126920070499, -0.2194221168756485, -0.6257988810539246, -0.02483331225812435, -0.07260295003652573, 0.29150891304016113, 0.44092777371406555, -0.5093305706977844, 0.5592347979545593, 0.49259790778160095, -0.32573243975639343, -0.6471555829048157, -0.1999356895685196, -1.1453227996826172, -0.21052902936935425, 1.118166446685791, -0.14512836933135986, -0.7492976188659668, 0.08759574592113495, -0.17734567821025848, 0.24318724870681763, -0.6625241637229919, 0.7008922696113586, 0.5757189393043518, -0.10816377401351929, -0.15979386866092682, -0.37449538707733154, 0.3864089250564575, -0.21194705367088318, -0.8195745348930359, -0.21634496748447418, 0.5281023979187012, 0.618696928024292, 0.17471227049827576, 0.6483686566352844, -0.19648239016532898, 0.23571792244911194, 0.17986923456192017, 0.4678511321544647, -0.09029506891965866, -0.12203790247440338, -0.12315826117992401, -0.033833231776952744, -0.05614465847611427, -0.798843502998352 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
medical_questions_pairs
null
2023-01-25T14:40:20Z
5,916
32
null
[ "task_categories:text-classification", "task_ids:semantic-similarity-classification", "annotations_creators:expert-generated", "language_creators:other", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:en", "license:unknown", "arxiv:2008.13546", "region:us" ]
2023-01-25T14:40:20Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - other language: - en license: - unknown multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - original task_categories: - text-classification task_ids: - semantic-similarity-classification pretty_name: MedicalQuestionsPairs dataset_info: features: - name: dr_id dtype: int32 - name: question_1 dtype: string - name: question_2 dtype: string - name: label dtype: class_label: names: '0': 0 '1': 1 splits: - name: train num_bytes: 701650 num_examples: 3048 download_size: 665688 dataset_size: 701650 --- # Dataset Card for [medical_questions_pairs] ## 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:** [Medical questions pairs repository](https://github.com/curai/medical-question-pair-dataset) - **Paper:** [Effective Transfer Learning for Identifying Similar Questions:Matching User Questions to COVID-19 FAQs](https://arxiv.org/abs/2008.13546) ### Dataset Summary This dataset consists of 3048 similar and dissimilar medical question pairs hand-generated and labeled by Curai's doctors. Doctors with a list of 1524 patient-asked questions randomly sampled from the publicly available crawl of [HealthTap](https://github.com/durakkerem/Medical-Question-Answer-Datasets). Each question results in one similar and one different pair through the following instructions provided to the labelers: - Rewrite the original question in a different way while maintaining the same intent. Restructure the syntax as much as possible and change medical details that would not impact your response. e.g. "I'm a 22-y-o female" could become "My 26 year old daughter" - Come up with a related but dissimilar question for which the answer to the original question would be WRONG OR IRRELEVANT. Use similar key words. The first instruction generates a positive question pair (similar) and the second generates a negative question pair (different). With the above instructions, the task was intentionally framed such that positive question pairs can look very different by superficial metrics, and negative question pairs can conversely look very similar. This ensures that the task is not trivial. ### Supported Tasks and Leaderboards - `text-classification` : The dataset can be used to train a model to identify similar and non similar medical question pairs. ### Languages The text in the dataset is in English. ## Dataset Structure ### Data Instances The dataset contains dr_id, question_1, question_2, label. 11 different doctors were used for this task so dr_id ranges from 1 to 11. The label is 1 if the question pair is similar and 0 otherwise. ### Data Fields - `dr_id`: 11 different doctors were used for this task so dr_id ranges from 1 to 11 - `question_1`: Original Question - `question_2`: Rewritten Question maintaining the same intent like Original Question - `label`: The label is 1 if the question pair is similar and 0 otherwise. ### Data Splits The dataset as of now consists of only one split(train) but can be split seperately based on the requirement | | train | |----------------------------|------:| | Non similar Question Pairs | 1524 | | Similar Question Pairs | 1524 | ## Dataset Creation Doctors with a list of 1524 patient-asked questions randomly sampled from the publicly available crawl of [HealthTap](https://github.com/durakkerem/Medical-Question-Answer-Datasets). Each question results in one similar and one different pair through the following instructions provided to the labelers: - Rewrite the original question in a different way while maintaining the same intent. Restructure the syntax as much as possible and change medical details that would not impact your response. e.g. "I'm a 22-y-o female" could become "My 26 year old daughter" - Come up with a related but dissimilar question for which the answer to the original question would be WRONG OR IRRELEVANT. Use similar key words. The first instruction generates a positive question pair (similar) and the second generates a negative question pair (different). With the above instructions, the task was intentionally framed such that positive question pairs can look very different by superficial metrics, and negative question pairs can conversely look very similar. This ensures that the task is not trivial. ### Curation Rationale [More Information Needed] ### Source Data 1524 patient-asked questions randomly sampled from the publicly available crawl of [HealthTap](https://github.com/durakkerem/Medical-Question-Answer-Datasets) #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations [More Information Needed] #### Annotation process Doctors with a list of 1524 patient-asked questions randomly sampled from the publicly available crawl of [HealthTap](https://github.com/durakkerem/Medical-Question-Answer-Datasets). Each question results in one similar and one different pair through the following instructions provided to the labelers: - Rewrite the original question in a different way while maintaining the same intent. Restructure the syntax as much as possible and change medical details that would not impact your response. e.g. "I'm a 22-y-o female" could become "My 26 year old daughter" - Come up with a related but dissimilar question for which the answer to the original question would be WRONG OR IRRELEVANT. Use similar key words. The first instruction generates a positive question pair (similar) and the second generates a negative question pair (different). With the above instructions, the task was intentionally framed such that positive question pairs can look very different by superficial metrics, and negative question pairs can conversely look very similar. This ensures that the task is not trivial. #### Who are the annotators? **Curai's doctors** ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data [More Information Needed] ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information [More Information Needed] ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information ``` @misc{mccreery2020effective, title={Effective Transfer Learning for Identifying Similar Questions: Matching User Questions to COVID-19 FAQs}, author={Clara H. McCreery and Namit Katariya and Anitha Kannan and Manish Chablani and Xavier Amatriain}, year={2020}, eprint={2008.13546}, archivePrefix={arXiv}, primaryClass={cs.IR} } ``` ### Contributions Thanks to [@tuner007](https://github.com/tuner007) for adding this dataset.
[ -0.401043176651001, -1.0756324529647827, 0.33166906237602234, -0.23479343950748444, -0.1542084962129593, -0.09391844272613525, -0.04797247797250748, -0.31162145733833313, 0.6017529368400574, 0.6695917844772339, -0.7254520058631897, -0.5104650259017944, -0.5874850153923035, 0.3000226616859436, -0.10011392831802368, 1.2913048267364502, -0.1722249537706375, 0.21370486915111542, -0.4241360127925873, -0.4824081063270569, -0.45323753356933594, -0.40930336713790894, -0.7687525153160095, -0.26094120740890503, 0.5290278792381287, 0.6436975598335266, 0.25287869572639465, 0.503067135810852, 0.7067545652389526, 0.19823047518730164, 0.07712753862142563, 0.16276681423187256, -0.5201866626739502, 0.30348828434944153, -0.28546130657196045, -0.3885056674480438, -0.21518629789352417, 0.07203490287065506, 0.21509993076324463, 0.8267648816108704, -0.035196494311094284, 0.6304620504379272, -0.017779512330889702, 0.5082135200500488, -0.19153665006160736, 0.045027654618024826, -0.4528208374977112, 0.03779524564743042, 0.050010718405246735, -0.15839102864265442, -0.040295448154211044, -0.5661671161651611, -0.06890394538640976, -0.5614421367645264, 0.24322892725467682, 0.03470071405172348, 0.9228772521018982, 0.21957941353321075, -0.40773439407348633, -0.25159353017807007, -0.43940815329551697, 0.39998164772987366, -0.5338775515556335, 0.08377407491207123, 0.7075309753417969, 0.3988145887851715, 0.28887733817100525, -0.8062964677810669, -0.5946981906890869, 0.16822977364063263, -0.35511666536331177, 0.2763387858867645, 0.0026455202605575323, -0.47926270961761475, 0.3778532147407532, 0.22883914411067963, -0.7886503338813782, -0.10818719118833542, -0.7673208713531494, -0.19440869987010956, 0.8748817443847656, 0.3228644132614136, 0.296264111995697, -0.2830643355846405, -0.2791064381599426, -0.11682973057031631, -0.46621567010879517, 0.07692189514636993, -0.026728548109531403, 0.2552892565727234, -0.31269633769989014, 0.5510819554328918, -0.2917075455188751, 0.4817635416984558, 0.32771483063697815, -0.009290071204304695, 0.6494917869567871, -0.5533280968666077, -0.04944077879190445, -0.08622057735919952, 0.7665104866027832, 0.600003719329834, 0.13669174909591675, 0.014528612606227398, 0.2953738570213318, -0.11963250488042831, 0.2317519336938858, -0.6665191054344177, -0.2885892689228058, 0.592133641242981, -0.645538330078125, -0.31843626499176025, 0.04554859548807144, -0.7693419456481934, -0.2668817341327667, -0.26423180103302, 0.47260186076164246, -0.2528885006904602, -0.10033747553825378, 0.10952267795801163, -0.14274458587169647, 0.37324321269989014, 0.15190401673316956, -0.6363533735275269, 0.40328264236450195, 0.47655320167541504, 0.443102091550827, -0.22150900959968567, 0.022040817886590958, -0.40145400166511536, 0.009414107538759708, 0.0957498624920845, 0.5739189982414246, -0.4588257372379303, -0.3455093801021576, -0.17343769967556, 0.46529683470726013, -0.14576010406017303, -0.6730096340179443, 0.3484712839126587, -0.4298405051231384, 0.7412002086639404, -0.6332841515541077, -0.5860970616340637, -0.11996341496706009, 0.66517573595047, -0.5498940348625183, 0.934775173664093, 0.36660635471343994, -1.0154404640197754, 0.2497352957725525, -0.5340141654014587, -0.4011685848236084, 0.12635760009288788, -0.36411362886428833, -0.6389737725257874, -0.48648539185523987, 0.32216140627861023, 0.4491223692893982, -0.46730780601501465, 0.19163291156291962, -0.21049341559410095, -0.13612830638885498, 0.20667654275894165, -0.044251833111047745, 1.153262972831726, 0.07595115900039673, -0.22912411391735077, -0.04885369911789894, -0.9363875985145569, 0.054781246930360794, 0.25410783290863037, -0.28026220202445984, -0.3403918743133545, -0.37357014417648315, -0.14139194786548615, 0.28508275747299194, 0.3604678213596344, -0.7018907070159912, 0.2800478935241699, -0.20158228278160095, 0.2159477025270462, 0.4836711585521698, 0.5141085386276245, 0.22136276960372925, -0.7770787477493286, 0.7498810887336731, 0.21611690521240234, 0.3223646283149719, 0.1451730877161026, -0.8267215490341187, -0.5391289591789246, 0.1090753898024559, 0.213327094912529, 0.7432612180709839, -0.8444235324859619, 0.3256378173828125, -0.23484715819358826, -0.5307987332344055, -0.911789059638977, 0.11560890078544617, 0.5956009030342102, 1.083791732788086, 0.8096126317977905, -0.3502265512943268, -0.7097809910774231, -0.9311553835868835, -0.0038853411097079515, -0.2541442811489105, 0.19340184330940247, 0.6765815019607544, 0.6431080102920532, -0.10303393006324768, 0.5435745120048523, -1.0569168329238892, -0.14886286854743958, -0.24616897106170654, -0.17824961245059967, 0.18376334011554718, 0.7646371126174927, 0.42163005471229553, -0.9527689814567566, -0.7451313734054565, -0.16350650787353516, -0.7183143496513367, -0.09308940917253494, -0.05220557004213333, -0.25486862659454346, -0.2215207815170288, 0.6218374967575073, -0.23670652508735657, 0.3205490708351135, 0.18458856642246246, -0.3130839765071869, 0.4512791931629181, -0.10694824159145355, 0.4231945872306824, -1.5647848844528198, 0.36935245990753174, -0.12960271537303925, 0.13110089302062988, -0.682283341884613, 0.01920057088136673, -0.18331794440746307, 0.12401755899190903, -0.2840234041213989, 0.5407369136810303, -0.12248989194631577, 0.457431823015213, 0.28660303354263306, -0.14314475655555725, 0.03071313537657261, 0.5223588943481445, -0.34024757146835327, 0.5728015899658203, 0.5758300423622131, -0.49184539914131165, 0.46126264333724976, 0.7302828431129456, -0.13512739539146423, 0.7941742539405823, -0.8774720430374146, 0.3357031047344208, -0.5233421325683594, 0.09860522300004959, -1.026553750038147, -0.3122096359729767, 0.6557214260101318, -0.5734443664550781, 0.028167584910988808, -0.10845667123794556, -0.26269716024398804, -0.5887849926948547, -0.407865047454834, 0.5515477657318115, 0.6615281105041504, -0.08824662119150162, 0.27205827832221985, 0.3716350197792053, -0.22571904957294464, -0.5286706686019897, -0.9716009497642517, -0.37973353266716003, -0.23870736360549927, -0.5948675274848938, 0.3426142930984497, -0.27389851212501526, -0.22024913132190704, 0.22648806869983673, 0.15573176741600037, -0.5048370957374573, -0.04312876984477043, 0.2748357653617859, 0.19893315434455872, -0.335540235042572, 0.37784695625305176, 0.14618386328220367, 0.16511085629463196, 0.026100628077983856, -0.003220477607101202, 0.497908353805542, 0.25448352098464966, -0.2820660471916199, -0.25295719504356384, 0.6597620844841003, 0.21018175780773163, -0.3559526205062866, 0.8261755108833313, 0.6477736234664917, -0.3261636793613434, 0.1850740909576416, -0.5467222332954407, -0.41616174578666687, -0.4126739501953125, 0.2541593015193939, -0.22231635451316833, -0.9092534184455872, 0.740172266960144, 0.2863790988922119, 0.0067214700393378735, 0.7006630897521973, 0.7731214165687561, -0.29208868741989136, 0.7021178007125854, 0.2273857742547989, 0.06928086280822754, 0.07742578536272049, -0.42519715428352356, -0.03868202865123749, -0.662390410900116, -0.6525768637657166, -0.4470604658126831, -0.5346315503120422, -0.6541441679000854, -0.521691620349884, 0.3495510220527649, -0.27032753825187683, -0.2238835245370865, 0.32008641958236694, -0.760453462600708, 0.10426682233810425, 0.6741712689399719, 0.5617250204086304, 0.07236258685588837, -0.14026963710784912, -0.033627949655056, 0.046063605695962906, -0.6577572822570801, -0.2410951405763626, 1.3698985576629639, 0.10704869031906128, 0.577908456325531, -0.07845689356327057, 0.9313249588012695, 0.07305975258350372, 0.2953029274940491, -0.310802161693573, 0.4887901842594147, -0.20369687676429749, -0.8754123449325562, -0.35443559288978577, -0.5319777131080627, -1.3775571584701538, 0.030765190720558167, -0.4732992351055145, -0.4300493001937866, 0.2862890362739563, 0.025224508717656136, -0.5750153660774231, 0.13376182317733765, -0.6843256950378418, 0.9005616307258606, -0.09118818491697311, -0.17391051352024078, 0.2930506467819214, -1.144494652748108, 0.13908781111240387, -0.16565604507923126, 0.037580933421850204, -0.06609007716178894, 0.035583727061748505, 1.0445863008499146, -0.4006102979183197, 0.6435415744781494, -0.138760045170784, 0.2964395582675934, 0.45686784386634827, -0.46611452102661133, -0.01588626019656658, 0.09283632040023804, -0.10089831799268723, -0.22758924961090088, 0.3751804232597351, -0.4155363440513611, -0.6735401153564453, 0.5984559655189514, -0.7524755597114563, -0.5254623889923096, -0.18735811114311218, -0.5092653632164001, -0.2236407995223999, 0.2643241584300995, 0.18649086356163025, 0.43945953249931335, -0.054830700159072876, 0.025380222126841545, 0.6106109023094177, -0.34322234988212585, -0.13231657445430756, 0.46880972385406494, -0.010217266157269478, -0.5268381237983704, 0.47634977102279663, 0.26848989725112915, 0.18651631474494934, 0.4727570414543152, 0.317818820476532, -0.29637962579727173, -0.24013802409172058, -0.24513761699199677, 0.48517534136772156, -0.5659497380256653, -0.18108367919921875, -0.8129963874816895, -0.3176935017108917, -0.7234570384025574, 0.17907969653606415, 0.19945596158504486, -0.455022931098938, -0.4833469092845917, -0.1634664088487625, 0.5605558156967163, 0.5871113538742065, -0.010802940465509892, 0.009458770044147968, -0.614403247833252, 0.6450740098953247, 0.6210592985153198, 0.2112364023923874, -0.16772718727588654, -0.5453363656997681, -0.078055240213871, 0.25915926694869995, -0.3366130292415619, -1.0030394792556763, 0.19824999570846558, 0.09130427986383438, 0.5990069508552551, 0.061329424381256104, 0.24060480296611786, 0.700177788734436, -0.29058748483657837, 0.8252695798873901, 0.18301019072532654, -0.2122470736503601, 0.7318902015686035, -0.09511623531579971, 0.24164097011089325, 1.1629583835601807, 0.7499035596847534, -0.5948570370674133, -0.17693574726581573, -0.9033780694007874, -0.6801024675369263, 0.5525505542755127, 0.13201071321964264, 0.04177243262529373, -0.11776101589202881, 0.5894842743873596, 0.27118390798568726, 0.13745348155498505, -0.5554437041282654, -0.7997158169746399, 0.07766714692115784, -0.4568111300468445, -0.06053279712796211, -0.09147466719150543, -0.3604721426963806, -0.6684651374816895, 0.5876377820968628, 0.03895239159464836, 0.31481072306632996, 0.58536696434021, 0.14088085293769836, 0.12506596744060516, 0.4534691572189331, 0.44956111907958984, 0.3261021375656128, -0.27346906065940857, 0.18782348930835724, 0.29687440395355225, -0.6728434562683105, 0.10700993984937668, 0.1815803349018097, -0.3517377972602844, -0.05463623255491257, 0.23323477804660797, 0.4833795726299286, -0.19644629955291748, -0.5593745112419128, 0.5677910447120667, -0.05776703730225563, -0.4490729868412018, -0.13218648731708527, -0.06898348033428192, 0.23994599282741547, 0.12128376215696335, 0.08330295979976654, 0.00839417427778244, 0.0793602243065834, -0.6447821855545044, 0.5404563546180725, 0.09919052571058273, -0.4750727117061615, -0.15940433740615845, 0.7517135739326477, 0.06965804845094681, -0.5043432116508484, 0.586622416973114, -0.1947353482246399, -0.5222912430763245, 0.7926725149154663, 0.33318376541137695, 0.48134973645210266, -0.15548653900623322, 0.36564916372299194, 0.7473884224891663, 0.1509067714214325, 0.016697149723768234, 0.8980757594108582, 0.1313907653093338, -0.7281211614608765, -0.14681586623191833, -0.2111983448266983, -0.16579186916351318, 0.18939505517482758, -0.9856508374214172, 0.29390865564346313, -0.5410240888595581, -0.2672835886478424, 0.13939934968948364, -0.022521687671542168, -0.8443471193313599, 0.5117261409759521, -0.2436828911304474, 0.7268421649932861, -1.0166465044021606, 0.6200588941574097, 0.9755061864852905, -0.8772927522659302, -0.9677576422691345, -0.16531789302825928, -0.22140389680862427, -0.929354727268219, 0.49562862515449524, 0.0005899027455598116, 0.5984523296356201, -0.30855047702789307, -0.6452627778053284, -0.6763757467269897, 1.0317858457565308, 0.1418428122997284, -0.27840086817741394, -0.16337378323078156, 0.37117549777030945, 0.7714141607284546, -0.3688531517982483, 0.1415228247642517, 0.58417809009552, 0.298841267824173, 0.12304484099149704, -0.9839374423027039, 0.32611730694770813, -0.42926305532455444, -0.4487018883228302, 0.07834634184837341, -0.5364246964454651, 0.7891168594360352, -0.37830933928489685, 0.14168767631053925, 0.003023833269253373, 0.1667778193950653, 0.21978163719177246, 0.6230730414390564, 0.4489648938179016, 0.7319512367248535, 0.7998263835906982, 0.024446727707982063, 0.8733596205711365, -0.35742443799972534, 0.45077475905418396, 1.2290682792663574, -0.023540597409009933, 0.6466514468193054, 0.5730795860290527, -0.32470622658729553, 0.5049657821655273, 0.5051918029785156, -0.3158302307128906, 0.5782414674758911, 0.3238562345504761, 0.11578870564699173, -0.07684504985809326, -0.135295569896698, -0.681860089302063, 0.4162466526031494, -0.0012327327858656645, -0.7048495411872864, -0.09667202085256577, -0.013404320925474167, 0.10600125789642334, 0.2237115204334259, -0.09535909444093704, 0.8796862959861755, -0.001476019504480064, -0.702458381652832, 0.5394760370254517, -0.2870199978351593, 0.5149056911468506, -0.44721919298171997, -0.11660417169332504, -0.25125110149383545, -0.10049033910036087, -0.29561081528663635, -0.9034044742584229, 0.3812866806983948, -0.17524905502796173, -0.4059889018535614, -0.19895823299884796, 0.5566583275794983, -0.7717379927635193, -0.7317323088645935, -0.053685758262872696, 0.7782620191574097, 0.303623229265213, 0.32093897461891174, -1.1283448934555054, -0.15031757950782776, 0.2158077508211136, 0.22449956834316254, 0.048314932733774185, 0.27627864480018616, 0.06514516472816467, 0.5647704005241394, 0.44525450468063354, 0.3029364049434662, -0.06635451316833496, 0.02671007812023163, 0.8234970569610596, -0.4947715997695923, -0.34872815012931824, -0.5601592659950256, 0.3893530070781708, -0.3149764835834503, -0.6124297976493835, 0.7146449089050293, 0.7618404626846313, 0.8509110808372498, -0.11257820576429367, 0.6578620076179504, -0.30358612537384033, 0.9969380497932434, -0.06914862245321274, 0.7298210859298706, -0.7611181735992432, 0.18519939482212067, -0.40025395154953003, -0.3310648202896118, -0.2917817234992981, 0.4646969437599182, -0.34854984283447266, 0.09141640365123749, 0.6388815641403198, 0.854398787021637, 0.12082827091217041, -0.023313913494348526, 0.015004917047917843, 0.19820599257946014, 0.12693510949611664, 0.8433644771575928, 0.3653893768787384, -0.8471729159355164, 0.5172271132469177, -0.47846469283103943, -0.12612973153591156, 0.09049844741821289, -0.31937989592552185, -0.7653926610946655, -0.836560070514679, -0.8908831477165222, -0.6680952310562134, 0.10350583493709564, 0.9663453698158264, 0.5701193809509277, -0.9901971220970154, 0.05501293018460274, 0.39633315801620483, 0.09812729060649872, -0.3106003999710083, -0.19889824092388153, 0.5396251678466797, 0.2898748815059662, -0.3778604567050934, -0.3111155033111572, -0.19616533815860748, 0.030219510197639465, 0.059678442776203156, 0.1595008820295334, -0.5151399970054626, -0.10678216069936752, 0.34822356700897217, 0.2693006098270416, -0.3467137813568115, -0.3898298442363739, 0.17988823354244232, -0.2805764675140381, 0.3469213545322418, 0.4486551880836487, -0.626184344291687, 0.3613227307796478, 0.5497977137565613, 0.7023818492889404, 0.5127149820327759, 0.26704952120780945, 0.05918377265334129, -0.5535962581634521, -0.2699212431907654, 0.444375604391098, 0.13557426631450653, 0.3381684422492981, -0.48089274764060974, 0.6373462677001953, 0.40205973386764526, -0.5131361484527588, -0.6311672925949097, -0.001205888227559626, -1.3234809637069702, -0.25969433784484863, 1.3669193983078003, -0.011403090320527554, -0.044169116765260696, -0.39051538705825806, -0.44365039467811584, 0.2786980867385864, -0.22843970358371735, 0.7229111790657043, 0.5338596105575562, -0.26617950201034546, -0.002409819746389985, -0.18663933873176575, 0.24895311892032623, 0.3957001566886902, -1.0320426225662231, -0.3956323564052582, 0.111228808760643, 0.7897189855575562, 0.10308974981307983, 0.928511381149292, -0.1868639886379242, 0.2018572986125946, -0.18327416479587555, -0.18249087035655975, -0.03191889077425003, 0.23198659718036652, -0.20092321932315826, 0.4246189296245575, -0.2840396761894226, -0.44630226492881775 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
scientific_papers
null
2023-04-05T13:39:46Z
5,815
81
null
[ "task_categories:summarization", "annotations_creators:found", "language_creators:found", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "license:unknown", "abstractive-summarization", "arxiv:1804.05685", "region:us" ]
2023-04-05T13:39:46Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - found language: - en language_creators: - found license: - unknown multilinguality: - monolingual pretty_name: ScientificPapers size_categories: - 100K<n<1M source_datasets: - original task_categories: - summarization task_ids: [] paperswithcode_id: null tags: - abstractive-summarization dataset_info: - config_name: arxiv features: - name: article dtype: string - name: abstract dtype: string - name: section_names dtype: string splits: - name: train num_bytes: 7148341992 num_examples: 203037 - name: validation num_bytes: 217125524 num_examples: 6436 - name: test num_bytes: 217514961 num_examples: 6440 download_size: 4504646347 dataset_size: 7582982477 - config_name: pubmed features: - name: article dtype: string - name: abstract dtype: string - name: section_names dtype: string splits: - name: train num_bytes: 2252027383 num_examples: 119924 - name: validation num_bytes: 127403398 num_examples: 6633 - name: test num_bytes: 127184448 num_examples: 6658 download_size: 4504646347 dataset_size: 2506615229 --- # Dataset Card for "scientific_papers" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** - **Repository:** https://github.com/armancohan/long-summarization - **Paper:** [A Discourse-Aware Attention Model for Abstractive Summarization of Long Documents](https://arxiv.org/abs/1804.05685) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of downloaded dataset files:** 9.01 GB - **Size of the generated dataset:** 10.09 GB - **Total amount of disk used:** 19.10 GB ### Dataset Summary Scientific papers datasets contains two sets of long and structured documents. The datasets are obtained from ArXiv and PubMed OpenAccess repositories. Both "arxiv" and "pubmed" have two features: - article: the body of the document, paragraphs separated by "/n". - abstract: the abstract of the document, paragraphs separated by "/n". - section_names: titles of sections, separated by "/n". ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Dataset Structure ### Data Instances #### arxiv - **Size of downloaded dataset files:** 4.50 GB - **Size of the generated dataset:** 7.58 GB - **Total amount of disk used:** 12.09 GB An example of 'train' looks as follows. ``` This example was too long and was cropped: { "abstract": "\" we have studied the leptonic decay @xmath0 , via the decay channel @xmath1 , using a sample of tagged @xmath2 decays collected...", "article": "\"the leptonic decays of a charged pseudoscalar meson @xmath7 are processes of the type @xmath8 , where @xmath9 , @xmath10 , or @...", "section_names": "[sec:introduction]introduction\n[sec:detector]data and the cleo- detector\n[sec:analysys]analysis method\n[sec:conclusion]summary" } ``` #### pubmed - **Size of downloaded dataset files:** 4.50 GB - **Size of the generated dataset:** 2.51 GB - **Total amount of disk used:** 7.01 GB An example of 'validation' looks as follows. ``` This example was too long and was cropped: { "abstract": "\" background and aim : there is lack of substantial indian data on venous thromboembolism ( vte ) . \\n the aim of this study was...", "article": "\"approximately , one - third of patients with symptomatic vte manifests pe , whereas two - thirds manifest dvt alone .\\nboth dvt...", "section_names": "\"Introduction\\nSubjects and Methods\\nResults\\nDemographics and characteristics of venous thromboembolism patients\\nRisk factors ..." } ``` ### Data Fields The data fields are the same among all splits. #### arxiv - `article`: a `string` feature. - `abstract`: a `string` feature. - `section_names`: a `string` feature. #### pubmed - `article`: a `string` feature. - `abstract`: a `string` feature. - `section_names`: a `string` feature. ### Data Splits | name |train |validation|test| |------|-----:|---------:|---:| |arxiv |203037| 6436|6440| |pubmed|119924| 6633|6658| ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @article{Cohan_2018, title={A Discourse-Aware Attention Model for Abstractive Summarization of Long Documents}, url={http://dx.doi.org/10.18653/v1/n18-2097}, DOI={10.18653/v1/n18-2097}, journal={Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers)}, publisher={Association for Computational Linguistics}, author={Cohan, Arman and Dernoncourt, Franck and Kim, Doo Soon and Bui, Trung and Kim, Seokhwan and Chang, Walter and Goharian, Nazli}, year={2018} } ``` ### Contributions Thanks to [@thomwolf](https://github.com/thomwolf), [@jplu](https://github.com/jplu), [@lewtun](https://github.com/lewtun), [@patrickvonplaten](https://github.com/patrickvonplaten) for adding this dataset.
[ -0.5661994218826294, -0.5422104001045227, 0.2979637682437897, 0.11175484210252762, -0.4007759094238281, 0.03792642429471016, -0.25338131189346313, -0.43377572298049927, 0.653186023235321, 0.4486059844493866, -0.44921714067459106, -0.8361669778823853, -0.578814685344696, 0.16637559235095978, -0.15483660995960236, 1.1543313264846802, -0.10769332200288773, -0.13818521797657013, -0.32881760597229004, -0.26348260045051575, -0.221441388130188, -0.4842450022697449, -0.43943360447883606, -0.15125025808811188, 0.459322065114975, 0.335927814245224, 0.3820451498031616, 0.9574927091598511, 0.6601860523223877, 0.2525758445262909, -0.1541595309972763, 0.020600635558366776, -0.42564794421195984, -0.17454540729522705, 0.03436622396111488, -0.22240981459617615, -0.7088640332221985, -0.14477059245109558, 0.7481797933578491, 0.6854727864265442, -0.040510378777980804, 0.35629674792289734, 0.08780869096517563, 0.8778440356254578, -0.5101146697998047, 0.4817684292793274, -0.0012799588730558753, -0.1716323345899582, -0.4554080069065094, 0.03640751168131828, -0.13468465209007263, -0.3994169533252716, 0.02937294729053974, -0.6698127388954163, 0.1436997801065445, -0.027505481615662575, 0.8748904466629028, 0.10719378292560577, -0.06465048342943192, -0.16705593466758728, -0.3498038649559021, 0.6187001466751099, -0.7864784598350525, 0.17196734249591827, 0.5712001919746399, 0.07229646295309067, -0.022945085540413857, -0.7335817813873291, -0.4805929660797119, 0.03049018234014511, -0.23810526728630066, 0.28247615694999695, -0.07707221060991287, -0.21923913061618805, 0.5171184539794922, 0.5183718204498291, -0.766185462474823, -0.15474967658519745, -0.5758819580078125, -0.17160721123218536, 1.0183355808258057, 0.24608707427978516, 0.11181742697954178, -0.4215473234653473, -0.1426330804824829, -0.2520252466201782, -0.4370918273925781, 0.03812495991587639, 0.41643184423446655, 0.4587242603302002, -0.7919752597808838, 0.6418623924255371, -0.1687667816877365, 0.7147980332374573, -0.07156945765018463, -0.014251732267439365, 0.7294173240661621, -0.8559695482254028, -0.10929138213396072, -0.01882730983197689, 0.9434217214584351, 0.499296098947525, 0.02007603831589222, 0.2311583012342453, 0.1516977846622467, -0.1499023139476776, -0.10531765222549438, -0.8331209421157837, -0.3302713632583618, 0.6470355987548828, -0.5883687138557434, -0.34466299414634705, 0.07360590994358063, -1.2571284770965576, -0.35000336170196533, -0.405009388923645, 0.11822259426116943, -0.3939463198184967, -0.4843825101852417, 0.07008644193410873, -0.23404236137866974, 0.3113608956336975, 0.10095977783203125, -0.49387526512145996, 0.44280165433883667, 0.437253475189209, 0.882827639579773, -0.2481083869934082, -0.2200745940208435, -0.22731587290763855, 0.03943679854273796, 0.006014705635607243, 0.659421443939209, -0.2850542366504669, -0.6215868592262268, -0.08250799030065536, 0.26256996393203735, -0.043013546615839005, -0.1661801040172577, 0.9111636877059937, -0.0336628295481205, 0.33461862802505493, -0.6304261684417725, -0.5236995220184326, 0.0022118904162198305, 0.123182512819767, -0.6981397271156311, 1.050506830215454, 0.1353902369737625, -0.9891427159309387, 0.17770987749099731, -0.8682824373245239, -0.49162372946739197, 0.05036921426653862, 0.0016701732529327273, -0.6346091032028198, -0.2777877151966095, 0.29271918535232544, 0.44719332456588745, -0.4163060784339905, 0.21845151484012604, -0.3560872972011566, -0.09354428201913834, 0.16015084087848663, 0.17104732990264893, 1.214419960975647, 0.19356021285057068, -0.16251927614212036, -0.01054130494594574, -0.9609075784683228, -0.1497635841369629, 0.44258978962898254, -0.0618467852473259, -0.20141509175300598, -0.23467466235160828, 0.2681729197502136, 0.09136554598808289, 0.21115264296531677, -0.48711976408958435, 0.371387779712677, -0.3003637492656708, 0.4683900475502014, 0.6949954032897949, 0.20473091304302216, 0.26509562134742737, -0.44161421060562134, 0.360129177570343, 0.13722777366638184, 0.24741865694522858, -0.13827739655971527, -0.490962415933609, -0.616020917892456, -0.447771817445755, 0.5882052183151245, 0.4943653643131256, -0.6240081191062927, 0.769687831401825, -0.4868299663066864, -0.7382287383079529, -0.470188170671463, -0.1436595767736435, 0.39054128527641296, 0.7510969042778015, 0.4167211651802063, -0.49639496207237244, -0.6644575595855713, -0.8693357706069946, 0.15064117312431335, -0.1302211880683899, 0.12729312479496002, 0.5539707541465759, 0.9425968527793884, -0.10452038794755936, 0.7573050856590271, -0.8885331153869629, -0.30156421661376953, -0.14295397698879242, -0.03743854537606239, 0.21593724191188812, 0.5790572166442871, 0.6168835759162903, -0.7703369855880737, -0.46926233172416687, -0.24860139191150665, -0.7882319092750549, -0.2844666838645935, 0.08920764178037643, -0.08013249933719635, 0.3441416323184967, 0.3710245192050934, -0.6394491195678711, 0.477317214012146, 0.2765826880931854, -0.3633159101009369, 0.4870747923851013, -0.13571451604366302, 0.19034014642238617, -1.3318346738815308, 0.5381190776824951, 0.15362221002578735, -0.08442657440900803, -0.5013439655303955, -0.2697429955005646, -0.10492505878210068, -0.06383997201919556, -0.36805909872055054, 0.7315019965171814, -0.426204115152359, 0.09188802540302277, 0.10528115928173065, 0.11805463582277298, 0.0455356165766716, 0.542704701423645, -0.010954459197819233, 0.6702647805213928, 0.7401970624923706, -0.5861502289772034, 0.09677993506193161, 0.4534517228603363, -0.11287152767181396, 0.6072261333465576, -0.9654260277748108, -0.034061554819345474, -0.28255948424339294, 0.413461834192276, -0.9437336325645447, -0.5492190718650818, 0.5689975619316101, -0.655966579914093, 0.5198116302490234, -0.23608969151973724, -0.681743860244751, -0.5651566386222839, -0.670573890209198, 0.2843751013278961, 0.47370800375938416, -0.12223099172115326, 0.42464059591293335, 0.7748704552650452, -0.13771958649158478, -0.4073387086391449, -0.7441307902336121, -0.09238352626562119, -0.1342049241065979, -0.6593320965766907, 0.47192543745040894, -0.32795771956443787, -0.0552588626742363, 0.10092604905366898, 0.2510182857513428, 0.0486607626080513, -0.19142840802669525, 0.266046404838562, 0.24359934031963348, 0.1810348778963089, 0.027059780433773994, -0.012767977081239223, -0.15971380472183228, 0.06755758821964264, -0.10619989782571793, 0.3628824055194855, -0.13373512029647827, -0.13488170504570007, -0.3979148268699646, 0.38002312183380127, 0.46975481510162354, -0.2750091552734375, 0.5336189866065979, 0.7003797292709351, -0.42398953437805176, 0.2979530990123749, -0.3900679349899292, -0.18898043036460876, -0.38485175371170044, 0.25758305191993713, -0.04107566177845001, -0.7007967829704285, 0.9275223612785339, 0.1453421413898468, 0.10776686668395996, 0.8436763882637024, 0.6791515946388245, -0.06482398509979248, 0.6860070824623108, 0.3479016125202179, -0.07387156784534454, 0.42583826184272766, -0.5444198846817017, -0.08167032897472382, -0.8867117762565613, -0.22916555404663086, -0.6845735907554626, -0.2551879286766052, -0.8429983854293823, -0.38446494936943054, 0.2849498987197876, -0.2816448509693146, -0.24378111958503723, 0.31855329871177673, -0.8799601793289185, 0.31061306595802307, 0.336996853351593, 0.15963460505008698, 0.020335806533694267, -0.04616158828139305, 0.04812604561448097, -0.10115870833396912, -0.5570893883705139, -0.2755686938762665, 1.397483229637146, 0.3671034872531891, 0.3322702646255493, 0.004023237153887749, 0.7040598392486572, 0.32393744587898254, -0.026004385203123093, -0.3907620906829834, 0.5631005167961121, -0.08697742968797684, -0.6469526886940002, -0.13092978298664093, -0.3490915596485138, -1.042371153831482, -0.1624455451965332, -0.1675240844488144, -0.7283849716186523, 0.6100496053695679, 0.014852951280772686, -0.19506895542144775, 0.18076016008853912, -0.766258955001831, 0.7960323095321655, -0.15885677933692932, -0.5302562117576599, 0.15090787410736084, -1.0934985876083374, 0.3294227719306946, 0.08369669318199158, 0.3525294065475464, 0.00287808058783412, -0.04644687473773956, 1.147404670715332, -0.5978402495384216, 0.9297327399253845, -0.39078250527381897, 0.317594051361084, 0.48007240891456604, -0.3765414357185364, 0.475119024515152, 0.1325116902589798, -0.07646694779396057, 0.5508561730384827, 0.061602216213941574, -0.5617579221725464, -0.2562130391597748, 0.7110100984573364, -0.736027181148529, -0.08987431973218918, -0.7419648766517639, -0.46562933921813965, 0.10512985289096832, 0.4542311429977417, 0.3326505720615387, 0.3705565929412842, -0.06326916813850403, 0.2185882180929184, 0.805919349193573, -0.13862070441246033, 0.2889229953289032, 0.17020219564437866, -0.16775107383728027, -0.7399961352348328, 0.8767554759979248, 0.39228636026382446, -0.03245527297258377, 0.21719951927661896, 0.12345726788043976, -0.3054475784301758, -0.5017730593681335, -0.4061800241470337, 0.4476523995399475, -0.4949805438518524, -0.21127937734127045, -0.7093020677566528, -0.1832471638917923, -0.5518738627433777, -0.03132789954543114, -0.3279779553413391, -0.5897130966186523, -0.36633095145225525, -0.14858877658843994, 0.7147500514984131, 0.30071744322776794, -0.4020348787307739, 0.15213261544704437, -0.566687285900116, 0.23370757699012756, -0.18949738144874573, 0.36905285716056824, -0.11861633509397507, -0.5478202700614929, -0.4071357846260071, 0.05420069396495819, -0.18222224712371826, -0.6462393403053284, 0.3482781648635864, -0.06854216009378433, 0.4303106665611267, -0.15636031329631805, 0.11153916269540787, 0.538528561592102, -0.10800081491470337, 0.988577127456665, -0.04969218373298645, -0.6499118208885193, 0.695899486541748, -0.6447541117668152, 0.4240916669368744, 0.8582128286361694, 0.4375876784324646, -0.15976515412330627, -0.04728592187166214, -0.904118537902832, -1.1245028972625732, 0.6527934074401855, 0.4531998038291931, -0.16472214460372925, 0.12532939016819, 0.4942792057991028, -0.05908774584531784, 0.3275274634361267, -0.5643489956855774, -0.8729101419448853, -0.23066452145576477, -0.19522705674171448, -0.021505657583475113, -0.2417837232351303, -0.40032124519348145, -0.5826182961463928, 0.7672568559646606, -0.03389216586947441, 0.5590558052062988, 0.5306916236877441, 0.0760408416390419, 0.030269913375377655, 0.10757491737604141, 0.7189038991928101, 0.633084237575531, -0.42639315128326416, -0.12125803530216217, -0.0562177337706089, -0.7670122385025024, -0.15567953884601593, 0.6420958638191223, -0.320961058139801, -0.03111661970615387, 0.28478536009788513, 0.6588867902755737, -0.015854060649871826, -0.3274204432964325, 0.4251279830932617, -0.18616193532943726, -0.4805731773376465, -0.4247518479824066, -0.12090864777565002, 0.1284216344356537, -0.05104011297225952, 0.23653829097747803, -0.09722179919481277, 0.13609622418880463, -0.1877397745847702, 0.21690239012241364, 0.07749816030263901, -0.3064796030521393, -0.39843860268592834, 0.5148858428001404, 0.1451699286699295, -0.08212707936763763, 0.3254191279411316, -0.3306310772895813, -0.306423157453537, 0.6010124087333679, 0.12565204501152039, 0.8337551355361938, 0.005773838609457016, 0.07655550539493561, 0.7853323817253113, 0.30848342180252075, 0.059403497725725174, 0.4869108200073242, 0.047790613025426865, -0.32955822348594666, -0.2704102098941803, -0.4624801576137543, -0.2150512933731079, 0.22698330879211426, -0.6188501715660095, 0.47229278087615967, -0.4180396497249603, -0.19570279121398926, 0.32095280289649963, 0.3644586205482483, -0.5961035490036011, 0.0746869295835495, -0.12292260676622391, 0.8787328600883484, -0.9037277698516846, 0.5909965634346008, 0.6739281415939331, -0.762444257736206, -0.5996171832084656, -0.21116085350513458, 0.19219870865345, -0.3635231852531433, 0.16557663679122925, -0.09180919080972672, 0.4528893232345581, -0.056337084621191025, -0.807226836681366, -0.8115857839584351, 1.243765115737915, 0.1931852251291275, -0.45346373319625854, 0.25343409180641174, 0.14236930012702942, 0.6974932551383972, -0.24916259944438934, 0.22139018774032593, 0.5157375931739807, 0.7460880875587463, 0.16633203625679016, -0.6971560120582581, 0.18699032068252563, -0.5059336423873901, -0.24232342839241028, 0.2963562607765198, -0.937285840511322, 0.7035102844238281, -0.009702051058411598, 0.025470057502388954, -0.23043830692768097, 0.5920969843864441, 0.39750149846076965, 0.4769301116466522, 0.19242343306541443, 0.8535645604133606, 0.8759263157844543, -0.28693243861198425, 1.2656666040420532, -0.29958727955818176, 0.4773314595222473, 1.0432018041610718, -0.17830538749694824, 0.48256024718284607, 0.45747077465057373, -0.45304280519485474, 0.3107030689716339, 0.7160863280296326, -0.2601483464241028, 0.4430405795574188, 0.1372581273317337, 0.01853596419095993, 0.060683105140924454, -0.3168533146381378, -0.7163916826248169, 0.18632382154464722, 0.4792461693286896, -0.386254221200943, -0.06960782408714294, -0.08337746560573578, 0.3530718684196472, -0.11334362626075745, -0.17726993560791016, 0.720960795879364, 0.06626812368631363, -0.3093423545360565, 0.5868671536445618, -0.2350601851940155, 0.4540029764175415, -0.6039057374000549, 0.0737946555018425, -0.15402191877365112, 0.09479039907455444, -0.46130499243736267, -1.0401408672332764, 0.5499470829963684, -0.03048345074057579, -0.41096794605255127, -0.03067340888082981, 0.8071656823158264, -0.28678712248802185, -0.7048423886299133, 0.07706772536039352, 0.3691770136356354, 0.2808447778224945, 0.3372533619403839, -1.0018978118896484, 0.409755140542984, 0.0664227157831192, -0.46566447615623474, 0.4618062376976013, 0.2832208573818207, -0.07762772589921951, 0.3879994750022888, 0.6479800939559937, 0.11548564583063126, -0.3679230213165283, -0.06936163455247879, 0.9744876027107239, -0.6238671541213989, -0.3892146944999695, -0.6559759974479675, 0.9080860018730164, -0.45224297046661377, -0.44067665934562683, 0.7028302550315857, 0.9006017446517944, 0.8867539167404175, 0.004877702798694372, 0.9367963075637817, -0.492160826921463, 0.708045482635498, -0.2270030379295349, 0.785270631313324, -0.6247251033782959, 0.05033597722649574, -0.40451815724372864, -0.6688740253448486, -0.562214732170105, 0.3784659802913666, -0.310230553150177, 0.20102892816066742, 0.530753493309021, 0.7522574067115784, 0.011567744426429272, 0.05338434875011444, -0.18758217990398407, 0.4158520996570587, 0.43516871333122253, 0.3275028467178345, -0.013812911696732044, -0.795633852481842, 0.359223872423172, -0.4674743115901947, -0.23361755907535553, -0.21156702935695648, -0.9686357378959656, -0.7655826210975647, -1.000096082687378, -0.702828049659729, -0.714584469795227, 0.064295195043087, 0.8790428638458252, 0.5257298350334167, -0.7623144388198853, -0.252146452665329, -0.07523909211158752, 0.18071068823337555, -0.05335256829857826, -0.2904096245765686, 0.796596348285675, 0.234737828373909, -0.5738009810447693, -0.1553657203912735, 0.1464519500732422, 0.050674907863140106, -0.05286956578493118, -0.015777381137013435, -0.5041745901107788, -0.1718117892742157, 0.5202206969261169, 0.6428943872451782, -0.30000483989715576, 0.0021358767990022898, -0.06241922453045845, -0.09645579010248184, 0.222014382481575, 0.45456662774086, -0.5129181146621704, 0.4739280641078949, 0.7231848239898682, 0.4069959223270416, 0.7330256104469299, -0.09833350777626038, 0.1834879219532013, -0.6570792198181152, 0.15710178017616272, 0.2095910757780075, 0.35832634568214417, 0.38075944781303406, -0.4480878412723541, 0.863050103187561, 0.4717387855052948, -0.7663688063621521, -0.9842436909675598, -0.17585736513137817, -1.4865448474884033, 0.003146097529679537, 1.2148164510726929, 0.02389913983643055, -0.5294348001480103, -0.12582938373088837, -0.2734247148036957, 0.3224130868911743, -0.6697064638137817, 0.49554774165153503, 0.7414370775222778, -0.0688047856092453, -0.017028383910655975, -0.564797580242157, 0.5737767219543457, 0.01534385234117508, -1.0913752317428589, 0.3479081690311432, 0.4883956015110016, 0.07996470481157303, 0.38208428025245667, 0.8411999344825745, -0.43523693084716797, 0.15097343921661377, -0.15481744706630707, 0.2387131303548813, -0.30972012877464294, 0.03893448784947395, -0.46957555413246155, -0.03429746627807617, -0.33553338050842285, -0.10531426966190338 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
monology/pile-uncopyrighted
monology
2023-08-31T03:45:38Z
5,753
24
null
[ "license:other", "arxiv:2101.00027", "region:us" ]
2023-08-31T03:45:38Z
2023-08-30T18:47:58.000Z
2023-08-30T18:47:58
--- license: other --- # Pile Uncopyrighted In response to [authors demanding that LLMs stop using their works](https://tcrn.ch/3rtpIDn), here's a copy of [The Pile](https://huggingface.co/datasets/monology/pile) with all copyrighted content removed. Please consider using this dataset to train your future LLMs, to respect authors and abide by copyright law. Creating an uncopyrighted version of a larger dataset (ie RedPajama) is planned, with no ETA. **Methodology** Cleaning was performed by removing everything from the Books3, BookCorpus2, OpenSubtitles, YTSubtitles, and OWT2 subsets. Based on section 7.1 of [the original paper](https://arxiv.org/abs/2101.00027), these datasets are the only ones which are not explicitly allowed to be used in AI training.
[ -0.37206655740737915, -0.32089951634407043, -0.14587163925170898, 0.24391618371009827, -0.6521211862564087, -0.11228857189416885, 0.012070753611624241, -0.5007016658782959, 0.4405759572982788, 1.3000823259353638, -0.4965830147266388, -0.2944932281970978, -0.8017733097076416, 0.295360803604126, -0.9342159032821655, 1.56501042842865, -0.09390819817781448, 0.0440213680267334, -0.7635587453842163, -0.513174295425415, 0.006704117637127638, -0.35585781931877136, -0.538403332233429, -0.4418552815914154, 0.4490521550178528, 0.6181110739707947, 0.662627100944519, 1.064613699913025, 0.678147554397583, 0.24202145636081696, -0.23204518854618073, 0.04029224440455437, -0.8179883360862732, -0.06769614666700363, 0.1648351401090622, -0.2817594110965729, -0.5391231179237366, 0.3458805978298187, 0.7471264004707336, 0.556297779083252, -0.37578022480010986, 0.3790726065635681, 0.2540825307369232, 0.7934179902076721, -0.5065615177154541, 0.004852234851568937, -0.37953895330429077, 0.299487441778183, -0.43270987272262573, -0.09856351464986801, -0.3603821098804474, -0.2680547535419464, -0.21113282442092896, -0.7332011461257935, 0.1990501880645752, -0.06365087628364563, 0.6804721355438232, 0.7124813199043274, -0.12117791920900345, -0.33877450227737427, -0.5556893944740295, 0.7669509649276733, -0.6836031079292297, -0.19332647323608398, 0.6405764818191528, 0.03607999160885811, -0.14669089019298553, -0.6963589787483215, -0.35504966974258423, 0.19597572088241577, -0.09714669734239578, 0.19721069931983948, -0.052070923149585724, -0.3539943993091583, 0.48750120401382446, 0.4770820736885071, -0.41075530648231506, 0.18944241106510162, -0.9228931069374084, -0.07473176717758179, 0.8424525260925293, 0.0841587483882904, 0.420878142118454, -0.14199648797512054, -0.9388334155082703, 0.0685812458395958, -0.7866731286048889, -0.1902065873146057, 0.027685116976499557, 0.1146860346198082, -0.3056606352329254, 0.9018465280532837, 0.22420378029346466, 0.32968246936798096, -0.2811594307422638, -0.25596532225608826, 0.5020232200622559, -0.18846705555915833, -0.5340351462364197, 0.015961794182658195, 0.9055519104003906, 0.3729963004589081, 0.44792309403419495, -0.22235643863677979, 0.0565497912466526, -0.25588640570640564, 0.413249135017395, -0.4893515706062317, -0.09436291456222534, 0.30266979336738586, -0.47996217012405396, -0.39281877875328064, 0.04073546826839447, -0.7803322076797485, -0.6781563758850098, -0.43223947286605835, -0.1132788434624672, -0.285636842250824, -0.20233654975891113, 0.0593411959707737, -0.2586697041988373, 0.07461316138505936, 0.18000386655330658, -0.5660631656646729, 0.2833244800567627, 0.708473801612854, 0.6332664489746094, -0.17888489365577698, -0.570689857006073, -0.17887623608112335, 0.26075953245162964, -0.12743626534938812, 0.7261291742324829, 0.024372149258852005, -0.5258182883262634, -0.05792032182216644, 0.07656010240316391, 0.03930689021945, -0.904400110244751, 0.5613434314727783, -0.46283966302871704, 0.42232638597488403, -0.09683339297771454, -0.5883444547653198, -0.32619091868400574, 0.1125372052192688, -0.6215492486953735, 0.8072475790977478, 0.020542914047837257, -0.7361490726470947, 0.2892060875892639, -0.6285939812660217, -0.2963111102581024, 0.23454329371452332, -0.03107348643243313, -0.6958138942718506, -0.3259406089782715, -0.07370875775814056, 0.25191929936408997, -0.11289098113775253, 0.14841361343860626, -0.35618263483047485, -0.3941962718963623, -0.235249862074852, 0.0269693024456501, 1.4138355255126953, 0.27560320496559143, -0.22370317578315735, -0.15978218615055084, -0.7573168873786926, -0.2507596015930176, 0.3741198182106018, -0.288186639547348, -0.5281768441200256, -0.02594894729554653, -0.3181944489479065, 0.14375454187393188, 0.2847580909729004, -0.48222702741622925, 0.45388248562812805, 0.13015180826187134, 0.07342129200696945, 0.8802437782287598, -0.09506195783615112, 0.3308515250682831, -1.0093661546707153, 0.7897588014602661, 0.06838104873895645, 0.11380507797002792, 0.2919576168060303, -0.4819115102291107, -0.8014089465141296, -0.9846652150154114, -0.054159972816705704, 0.567364513874054, -0.5348630547523499, 0.54267418384552, -0.17619338631629944, -0.7217283844947815, -0.4575954079627991, 0.3495517373085022, 0.36456298828125, 0.3461213707923889, 0.5267875790596008, -0.3296215236186981, -0.638776421546936, -0.7658646106719971, 0.020780319347977638, -0.02855955809354782, 0.1800873726606369, 0.11534863710403442, 0.6327152252197266, -0.2535291612148285, 0.7825897932052612, -0.22201594710350037, -0.5320267081260681, 0.03472187742590904, 0.14998570084571838, 0.1342775970697403, 0.6260957717895508, 0.5485373735427856, -0.5879552364349365, -0.3469150960445404, -0.4205048382282257, -1.2399826049804688, -0.16644875705242157, -0.06283942610025406, -0.31523361802101135, 0.3533395528793335, 0.387376993894577, -0.5737484097480774, 0.5211041569709778, 0.3893703818321228, -0.31844183802604675, 0.39809921383857727, -0.0003858122800011188, 0.12281114608049393, -1.1333224773406982, 0.2359999716281891, -0.17335380613803864, -0.29539671540260315, -0.23150156438350677, 0.34412235021591187, -0.21130302548408508, 0.031934309750795364, -0.732770562171936, 0.6511065363883972, -0.37451910972595215, -0.18206244707107544, -0.41533705592155457, -0.05606123059988022, -0.25439348816871643, 0.31139037013053894, -0.24716335535049438, 0.5990116000175476, 0.5888224840164185, -0.7899172902107239, 0.369952529668808, 1.003506064414978, -0.2740008234977722, 0.4511592388153076, -0.39280349016189575, 0.07897062599658966, -0.4516076445579529, 0.2355048954486847, -0.4704653322696686, 0.010292377322912216, 0.8567202687263489, -0.386187881231308, 0.13524675369262695, -0.0901665985584259, -0.6712855100631714, -0.13541294634342194, -0.629148006439209, 0.28915607929229736, 0.8502733707427979, -0.639539361000061, 0.15101374685764313, 0.6021274924278259, 0.011391553096473217, -0.9344453811645508, -0.9536103010177612, -0.16089314222335815, -0.4133857190608978, -0.3145393133163452, -0.15700700879096985, -0.2133529782295227, -0.32047712802886963, 0.22721511125564575, -0.00033934865496121347, -0.03261232748627663, 0.08729241043329239, 0.3472343683242798, 0.06889870762825012, 0.27977803349494934, -0.029832152649760246, -0.16946060955524445, -0.13580253720283508, 0.07828960567712784, 0.13087394833564758, 0.3349175453186035, 0.35364997386932373, -0.2702844738960266, -0.20953795313835144, 0.1715954840183258, 0.7376869320869446, 0.005199827253818512, 0.6422511339187622, 0.5621238350868225, -0.5115683674812317, -0.20970524847507477, -0.027651790529489517, 0.01210048794746399, -0.42341357469558716, 0.06232461333274841, 0.14227072894573212, -0.8332081437110901, 0.2936352789402008, 0.2859223783016205, 0.38121792674064636, 0.5824138522148132, 0.49294766783714294, -0.6710444688796997, 0.3954637348651886, 0.3615039885044098, -0.3445218503475189, 0.20397068560123444, -0.6408926844596863, -0.2016216367483139, -0.9885784983634949, -0.44475260376930237, -0.49050477147102356, -0.529920220375061, -0.6474130153656006, -0.2835076153278351, 0.07697095721960068, 0.17506690323352814, -0.2570651173591614, 0.47150203585624695, -0.576766848564148, 0.4464068114757538, 0.640167236328125, 0.1882808357477188, 0.5503357648849487, 0.39983105659484863, 0.36363255977630615, 0.19341611862182617, -0.5251538157463074, -0.6387709379196167, 1.0883764028549194, 0.1565372496843338, 0.6575789451599121, 0.03406374529004097, 0.9086629748344421, 0.6615966558456421, 0.4697563648223877, -0.6036677360534668, 0.8622801899909973, -0.5196034908294678, -0.9136902093887329, -0.4024500548839569, -0.6111599802970886, -1.2568328380584717, 0.29309338331222534, -0.01413747202605009, -0.5159636735916138, -0.25373375415802, -0.10780350118875504, 0.26341819763183594, 0.789304256439209, -0.24781377613544464, 0.6234803795814514, 0.11481919139623642, -0.09217685461044312, -0.27608931064605713, -0.5810340642929077, 0.5538743734359741, -0.291373610496521, 0.34288617968559265, -0.25392279028892517, -0.19799424707889557, 1.1097232103347778, -0.8229727149009705, 0.8992925882339478, -0.11322341114282608, -0.09160493314266205, 0.6284365653991699, -0.014502870850265026, 0.1488049030303955, -0.11451568454504013, -0.1556835025548935, 0.504668116569519, 0.16700726747512817, -0.853501558303833, 0.1194029375910759, 0.524208664894104, -1.0825141668319702, -0.46405357122421265, -0.8312343955039978, -0.4667736887931824, 0.28158867359161377, 0.4085908532142639, 0.509282648563385, 0.44264981150627136, 0.1053432747721672, 0.34335723519325256, 0.3081281781196594, 0.1199432760477066, 0.2671142518520355, 0.4206131100654602, -0.22497424483299255, -0.21830706298351288, 0.8406400680541992, 0.14494635164737701, 0.023993337526917458, 0.07770788669586182, 0.09437908977270126, -0.17926423251628876, -0.7902188897132874, -0.22493967413902283, 0.5080961585044861, -0.7178217172622681, -0.02840111032128334, -0.6284079551696777, -0.2945532500743866, -0.5437959432601929, -0.17815935611724854, -0.11148820072412491, -0.3333474099636078, -0.5963193774223328, 0.00048675149446353316, 0.4048391878604889, 0.8750964999198914, -0.41713571548461914, 0.34252074360847473, -1.1800897121429443, 0.4386957883834839, -0.03644590079784393, 0.3723474442958832, -0.3629981577396393, -0.8914453983306885, -0.36966654658317566, 0.2233777493238449, -0.21530847251415253, -0.18029014766216278, 0.4797489643096924, -0.12791754305362701, 0.5394977927207947, 0.09475590288639069, 0.24339412152767181, 0.38449713587760925, -0.06068090349435806, 0.7218410968780518, 0.047567225992679596, -0.47603148221969604, 0.08973489701747894, -0.4504792392253876, 0.2390591949224472, 0.7315475344657898, 0.7421721816062927, -0.3215427100658417, -0.6192771792411804, -0.9156714677810669, -0.8169000744819641, 0.9618846774101257, 0.25474926829338074, -0.004335386678576469, 0.060247357934713364, 0.4876953959465027, 0.27036920189857483, 0.45439866185188293, -0.7320553660392761, -0.5617765188217163, -0.053339917212724686, -0.3609653115272522, -0.16690918803215027, -0.34443891048431396, -0.47040262818336487, -0.15816758573055267, 0.9428229928016663, 0.1767749935388565, 0.2411624789237976, -0.08212826400995255, -0.23364116251468658, -0.3609071969985962, -0.18731531500816345, 0.40644514560699463, 0.6310176253318787, -0.37095144391059875, -0.07986302673816681, -0.1508939117193222, -0.595264732837677, 0.1996130645275116, -0.02170109935104847, -0.47297242283821106, -0.37178465723991394, 0.5287153124809265, 0.39978039264678955, -0.19794438779354095, -0.6307469606399536, 0.34410321712493896, -0.12111729383468628, -0.34273791313171387, -0.7949215173721313, 0.08434941619634628, -0.12200120091438293, 0.11351856589317322, -0.09766054153442383, 0.44749322533607483, 0.013127206824719906, -0.21272064745426178, 0.5366580486297607, 0.2181706577539444, -0.3015233874320984, -0.05238297954201698, 0.3659506142139435, 0.002901660045608878, -0.21072526276111603, 0.9261876344680786, -0.20352709293365479, -0.2131461501121521, 0.6981462240219116, 0.2556712031364441, 0.6890255808830261, 0.21420323848724365, 0.20472277700901031, 0.4456644058227539, 0.3471502363681793, -0.14134174585342407, 0.19913353025913239, 0.0937444269657135, -0.9173082113265991, -0.2362891137599945, -0.28057149052619934, -0.6565750241279602, 0.2964966595172882, -0.7555307745933533, 0.4073352813720703, -0.774949312210083, 0.34150469303131104, -0.31507277488708496, -0.157329261302948, -0.2713755965232849, 0.35793986916542053, 0.21138784289360046, 0.669091522693634, -0.6516626477241516, 0.4671511650085449, 1.1007226705551147, -0.5623604655265808, -0.43674054741859436, -0.15072904527187347, 0.41428789496421814, -1.031612515449524, -0.017236776649951935, 0.020810740068554878, 0.2014979124069214, 0.04022571071982384, -1.0062154531478882, -0.6841880679130554, 1.1420197486877441, 0.20553985238075256, 0.03307270258665085, 0.16361524164676666, 0.0662330836057663, 0.4188937842845917, -0.03606617823243141, 0.09812045097351074, 0.2929036617279053, 0.2971247434616089, 0.2184288054704666, -0.4855971336364746, -0.13675406575202942, -0.3990713357925415, -0.5931937098503113, 0.2083902209997177, -0.9761656522750854, 0.7572722434997559, -0.052146509289741516, -0.18082019686698914, 0.4033929407596588, 0.3366798162460327, 0.6005328297615051, 0.23002882301807404, 0.5559129118919373, 1.0166850090026855, 0.7877469658851624, -0.043918676674366, 1.1900590658187866, -0.019354771822690964, 0.5378249287605286, 1.1308066844940186, -0.29266491532325745, 0.44826698303222656, 0.42577794194221497, -0.2836819291114807, 0.24614936113357544, 0.6300514936447144, -0.3282937705516815, 0.4525209665298462, 0.35732972621917725, -0.07531891018152237, -0.013221101835370064, -0.22725163400173187, -0.38940924406051636, 0.5773680210113525, -0.010015795938670635, -0.24538929760456085, -0.22769972681999207, -0.22007016837596893, 0.3189972937107086, -0.05027112364768982, -0.0836469754576683, 0.8928617238998413, 0.18995732069015503, -0.5560935735702515, 0.7795861959457397, -0.33681100606918335, 0.7376900315284729, -0.48613354563713074, 0.14723584055900574, -0.3455504775047302, 0.25522157549858093, -0.3312987685203552, -0.7836070656776428, 0.622650146484375, 0.10734059661626816, -0.10933509469032288, -0.5160905122756958, 0.5865721106529236, -0.45759475231170654, -0.4104326069355011, 0.3654710352420807, 0.49705082178115845, 0.7846442461013794, 0.2966327667236328, -0.8552927374839783, -0.14178839325904846, 0.13045239448547363, -0.29289427399635315, 0.5715957880020142, 0.25645145773887634, 0.18645498156547546, 0.9479538202285767, 0.6329893469810486, 0.3728480637073517, -0.15761128067970276, -0.05609019845724106, 0.6119140386581421, -0.7456260323524475, -0.19348496198654175, -0.6446201205253601, 0.46904319524765015, 0.11238167434930801, -0.3944547474384308, 0.5685634016990662, 0.6217666864395142, 0.9542010426521301, -0.149571493268013, 0.8149580359458923, -0.2112305462360382, 0.6757774949073792, -0.43401312828063965, 0.8636025786399841, -1.0251359939575195, 0.14137080311775208, -0.18504230678081512, -0.753271758556366, -0.35839807987213135, 0.4401322901248932, 0.3569384813308716, 0.10120892524719238, 0.71369868516922, 0.4199426770210266, 0.13372911512851715, 0.2802360951900482, 0.2819155752658844, 0.2648111879825592, 0.25555500388145447, 0.22343778610229492, 0.8332735300064087, -0.44091179966926575, 0.49359872937202454, -0.4452177882194519, -0.28991934657096863, -0.1326686143875122, -1.032317876815796, -0.7492711544036865, -0.4521227478981018, -0.6262125968933105, -0.4576108753681183, -0.119899220764637, 1.0077815055847168, 0.46984344720840454, -0.6637821793556213, -0.3653072416782379, 0.1119362935423851, 0.24251210689544678, -0.15044216811656952, -0.1867973804473877, 0.24796326458454132, 0.0018790954491123557, -0.705703854560852, 0.24779914319515228, -0.07495247572660446, 0.3765944242477417, -0.06012669950723648, -0.030015408992767334, -0.39192456007003784, -0.35138261318206787, 0.3772166669368744, 0.5510497093200684, -0.2757835388183594, -0.1258264183998108, -0.3268028795719147, -0.40370067954063416, 0.17867660522460938, 0.5211933255195618, -0.4004104733467102, 0.16761666536331177, 0.5175907015800476, 0.5475589632987976, 0.38991114497184753, 0.18749964237213135, 0.16864261031150818, -0.6328065395355225, 0.37613752484321594, 0.35640209913253784, 0.5814875960350037, 0.2933200001716614, -0.32553619146347046, 0.9889702796936035, 0.6434469819068909, -0.6671984195709229, -0.6099146008491516, -0.1257052719593048, -1.2736268043518066, -0.11814843118190765, 1.2132048606872559, -0.18459106981754303, -0.2583926320075989, -0.054086074233055115, -0.14769285917282104, 0.5576212406158447, -0.3406107723712921, 0.8332986235618591, 0.6748490929603577, -0.16194556653499603, -0.17157211899757385, -0.19867806136608124, 0.27184197306632996, 0.5948837995529175, -1.0091978311538696, 0.004144573118537664, 0.4660501778125763, 0.16198286414146423, 0.046510323882102966, 0.9555607438087463, -0.513897716999054, 0.04140772297978401, -0.28981488943099976, 0.4400661587715149, -0.4290584921836853, -0.22242754697799683, -0.3638017177581787, 0.07982557266950607, 0.002379658166319132, -0.3987760543823242 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
HuggingFaceM4/OBELICS
HuggingFaceM4
2023-08-22T20:50:09Z
5,739
65
null
[ "size_categories:100M<n<1B", "language:en", "license:cc-by-4.0", "arxiv:2306.16527", "region:us" ]
2023-08-22T20:50:09Z
2023-05-30T23:06:14.000Z
2023-05-30T23:06:14
--- language: - en license: cc-by-4.0 size_categories: - 100M<n<1B pretty_name: OBELICS configs: - config_name: default data_files: - split: train path: data/train-* - config_name: opt_out_docs_removed_2023_07_12 data_files: - split: train path: opt_out_docs_removed_2023_07_12/train-* dataset_info: - config_name: default features: - name: images sequence: string - name: metadata dtype: string - name: general_metadata dtype: string - name: texts sequence: string splits: - name: train num_bytes: 715724717192 num_examples: 141047697 download_size: 71520629655 dataset_size: 715724717192 - config_name: opt_out_docs_removed_2023_07_12 features: - name: images sequence: string - name: metadata dtype: string - name: general_metadata dtype: string - name: texts sequence: string splits: - name: train num_bytes: 684638314215 num_examples: 134648855 download_size: 266501092920 dataset_size: 684638314215 --- # Dataset Card for OBELICS ## Dataset Description - **Visualization of OBELICS web documents:** https://huggingface.co/spaces/HuggingFaceM4/obelics_visualization - **Paper:** [OBELICS: An Open Web-Scale Filtered Dataset of Interleaved Image-Text Documents](https://arxiv.org/abs/2306.16527) - **Repository:** https://github.com/huggingface/OBELICS - **Point of Contact: hugo@huggingface.co** `OBELICS` is an open, massive, and curated collection of interleaved image-text web documents, containing 141M English documents, 115B text tokens, and 353M images, extracted from Common Crawl dumps between February 2020 and February 2023. The collection and filtering steps are described in our [paper](https://huggingface.co/papers/2306.16527). Interleaved image-text web documents are a succession of text paragraphs interleaved by images, such as web pages that contain images. Models trained on these web documents outperform vision and language models trained solely on image-text pairs on various benchmarks. They can also generate long and coherent text about a set of multiple images. As an example, we trained [IDEFICS](https://huggingface.co/HuggingFaceM4/idefics-80b), a visual language model that accepts arbitrary sequences of image and text inputs and produces text outputs. We provide an [interactive visualization](https://atlas.nomic.ai/map/f2fba2aa-3647-4f49-a0f3-9347daeee499/ee4a84bd-f125-4bcc-a683-1b4e231cb10f) of OBELICS that allows exploring the content of OBELICS. The map shows a subset of 11M of the 141M documents. [![OBELICS Nomic map](assets/nomic_map.png)](https://atlas.nomic.ai/map/f2fba2aa-3647-4f49-a0f3-9347daeee499/ee4a84bd-f125-4bcc-a683-1b4e231cb10f) ## Data Fields An example of a sample looks as follows: ``` # The example has been cropped { 'images': [ 'https://cdn.motor1.com/images/mgl/oRKO0/s1/lamborghini-urus-original-carbon-fiber-accessories.jpg', None ], 'metadata': '[{"document_url": "https://lamborghinichat.com/forum/news/vw-group-allegedly-receives-offer-to-sell-lamborghini-for-9-2-billion.728/", "unformatted_src": "https://cdn.motor1.com/images/mgl/oRKO0/s1/lamborghini-urus-original-carbon-fiber-accessories.jpg", "src": "https://cdn.motor1.com/images/mgl/oRKO0/s1/lamborghini-urus-original-carbon-fiber-accessories.jpg", "formatted_filename": "lamborghini urus original carbon fiber accessories", "alt_text": "VW Group Allegedly Receives Offer To Sell Lamborghini For $9.2 Billion", "original_width": 1920, "original_height": 1080, "format": "jpeg"}, null]', 'general_metadata': '{"url": "https://lamborghinichat.com/forum/news/vw-group-allegedly-receives-offer-to-sell-lamborghini-for-9-2-billion.728/", "warc_filename": "crawl-data/CC-MAIN-2021-25/segments/1623488528979.69/warc/CC-MAIN-20210623011557-20210623041557-00312.warc.gz", "warc_record_offset": 322560850, "warc_record_length": 17143}', 'texts': [ None, 'The buyer would get everything, including Lambo\'s headquarters.\n\nThe investment groupQuantum Group AG has submitted a€7.5 billion ($9.2 billion at current exchange rates) offer to purchase Lamborghini from Volkswagen Group, Autocar reports. There\'s no info yet about whether VW intends to accept the offer or further negotiate the deal.\n\nQuantum ... Group Chief Executive Herbert Diess said at the time.' ] } ``` Each sample is composed of the same 4 fields: `images`, `texts`, `metadata`, and `general_metadata`. `images` and `texts` are two lists of the same size, where for each index, one element and only one is not `None`. For example, for the interleaved web document `<image_1>text<image_2>`, we would find `[image_1, None, image_2]` in `images` and `[None, text, None]` in `texts`. The images are replaced by their URLs, and the users need to download the images, for instance, with the library [img2dataset](https://github.com/rom1504/img2dataset). `metadata` is the string representation of a list containing information about each of the images. It has the same length as `texts` and `images` and logs for each image relevant information such as original source document, unformatted source, alternative text if present, etc. `general_metadata` is the string representation of a dictionary containing the URL of the document, and information regarding the extraction from Common Crawl snapshots. ## Size and Data Splits There is only one split, `train`, that contains 141,047,697 documents. `OBELICS` with images replaced by their URLs weighs 666.6 GB (😈) in arrow format and 377 GB in the uploaded `parquet` format. ## Considerations for Using the Data ### Discussion of Biases A subset of this dataset `train`, of ~50k was evaluated using the Data Measurements Tool, with a particular focus on the nPMI metric > nPMI scores for a word help to identify potentially problematic associations, ranked by how close the association is. > nPMI bias scores for paired words help to identify how word associations are skewed between the selected selected words (Aka et al., 2021). > You can select from gender and sexual orientation identity terms that appear in the dataset at least 10 times. > The resulting ranked words are those that co-occur with both identity terms. > The more positive the score, the more associated the word is with the first identity term. The more negative the score, the more associated the word is with the second identity term. While there was a positive skew of words relating occupations e.g _`government`_, _`jobs`_ towards she, her, and similar attributions of the masculine and feminine words to they and them, more harmful words attributions such as _`escort`_ and even _`colour`_ presented with greater attributions to she, her and him, his, respectively. ![Data Measurement Tool Associations Eval](assets/DMT_eval.png) We welcome users to explore the [Data Measurements nPMI Visualitons for OBELICS](https://huggingface.co/spaces/HuggingFaceM4/IDEFICS_Data_Measurement_Tool) further and to see the [idefics-9b model card](https://huggingface.co/HuggingFaceM4/idefics-9b) for further Bias considerations. ## Opted-out content To respect the preferences of content creators, we removed from OBELICS all images for which creators explicitly opted out of AI model training. We used the [Spawning API](https://api.spawning.ai/spawning-api) to verify that the images in the dataset respect the original copyright owners’ choices. However, due to an error on our side, we did not remove entire documents (i.e., URLs) that opted out of AI model training. As of July 12, 2023, it represents 4.25% of the totality of OBELICS. The config `opt_out_docs_removed_2023_07_12` applies the correct filtering at the web document level as of July 2023: `ds = load_dataset("HuggingFaceM4/OBELICS", "opt_out_docs_removed_2023_07_12")`. We recommend users of OBELICS to regularly check every document against the API. ## Content warnings Despite our efforts in filtering, OBELICS contains a small proportion of documents that are not suitable for all audiences. For instance, while navigating the interactive map, you might find the cluster named "Sex" which predominantly contains descriptions of pornographic movies along with pornographic images. Other clusters would contain advertising for sex workers or reports of violent shootings. In our experience, these documents represent a small proportion of all the documents. ## Terms of Use By using the dataset, you agree to comply with the original licenses of the source content as well as the dataset license (CC-BY-4.0). Additionally, if you use this dataset to train a Machine Learning model, you agree to disclose your use of the dataset when releasing the model or an ML application using the model. ### Licensing Information License CC-BY-4.0. ### Citation Information If you are using this dataset, please cite ``` @misc{laurencon2023obelics, title={OBELICS: An Open Web-Scale Filtered Dataset of Interleaved Image-Text Documents}, author={Hugo Laurençon and Lucile Saulnier and Léo Tronchon and Stas Bekman and Amanpreet Singh and Anton Lozhkov and Thomas Wang and Siddharth Karamcheti and Alexander M. Rush and Douwe Kiela and Matthieu Cord and Victor Sanh}, year={2023}, eprint={2306.16527}, archivePrefix={arXiv}, primaryClass={cs.IR} } ```
[ -0.6863225102424622, -0.5469597578048706, 0.247939795255661, 0.09664037078619003, -0.38279345631599426, -0.33210647106170654, -0.14925359189510345, -0.6884753704071045, 0.13394711911678314, 0.47713503241539, -0.43757253885269165, -0.6471491456031799, -0.4623335599899292, 0.20813043415546417, -0.2132604867219925, 1.1831833124160767, -0.009751826524734497, 0.054333943873643875, -0.2954244613647461, -0.4600963890552521, -0.05275990813970566, -0.26027795672416687, -0.45667004585266113, 0.05609552189707756, 0.33133354783058167, 0.2120901495218277, 0.5606483817100525, 0.9362255334854126, 0.7407101392745972, 0.3303568363189697, -0.17266541719436646, 0.1301283985376358, -0.5083096027374268, -0.17181815207004547, -0.027083303779363632, -0.25107863545417786, -0.5377551913261414, 0.33309102058410645, 0.596108078956604, 0.3650994896888733, -0.016260383650660515, 0.43654343485832214, 0.07366922497749329, 0.6657383441925049, -0.4389307498931885, 0.128116175532341, -0.5732412934303284, -0.1818399429321289, -0.23103627562522888, -0.14883194863796234, -0.0764179676771164, -0.21493305265903473, -0.09407312422990799, -0.7634868025779724, 0.34211936593055725, 0.24129508435726166, 1.33877694606781, 0.11882730573415756, -0.19457001984119415, -0.26435381174087524, -0.3352505564689636, 0.721493661403656, -0.7138091325759888, 0.43025797605514526, 0.6156330704689026, -0.08396579325199127, -0.15575560927391052, -0.4165225625038147, -0.6254274845123291, -0.17971856892108917, -0.3225254416465759, 0.27195441722869873, -0.38834571838378906, -0.178873673081398, 0.42285001277923584, 0.5397893786430359, -0.6975876092910767, 0.17921048402786255, -0.6048625111579895, -0.1498948037624359, 0.7605797648429871, 0.10163728892803192, 0.3603932559490204, -0.37381359934806824, -0.5546449422836304, -0.3127915561199188, -0.5850558876991272, 0.03273608162999153, 0.6672118902206421, 0.12316622585058212, -0.5025922060012817, 0.6327881813049316, -0.09943453967571259, 0.5154358148574829, 0.02974889613687992, -0.22433800995349884, 0.4120703339576721, -0.5368772745132446, -0.21370193362236023, -0.32883015275001526, 1.1181691884994507, 0.7064539194107056, -0.11067766696214676, -0.024484878405928612, 0.048291921615600586, -0.11622530966997147, -0.020420227199792862, -0.8880055546760559, -0.07796870917081833, 0.24698549509048462, -0.7802008390426636, -0.2792736887931824, 0.12670935690402985, -1.1848316192626953, -0.17823576927185059, -0.005713089369237423, 0.09004750847816467, -0.4759562611579895, -0.21765650808811188, 0.016878001391887665, -0.49560001492500305, 0.33204686641693115, 0.2823001444339752, -0.5049052238464355, 0.26198679208755493, 0.23950594663619995, 0.8281213045120239, -0.06591018289327621, -0.2268248051404953, -0.02148275636136532, 0.18355755507946014, -0.03912177309393883, 0.9191315174102783, -0.3330959677696228, -0.5357905626296997, -0.20165443420410156, 0.16103056073188782, 0.13266398012638092, -0.47597023844718933, 0.6749803423881531, -0.29797279834747314, 0.29609382152557373, -0.28523963689804077, -0.4728386402130127, -0.14651311933994293, 0.3362448811531067, -0.7826498746871948, 1.0764176845550537, -0.06904067099094391, -1.0204967260360718, 0.2548160254955292, -0.5360695123672485, -0.16418413817882538, -0.045582715421915054, -0.2677883505821228, -0.49364158511161804, -0.19562570750713348, 0.25566625595092773, 0.3834399878978729, -0.56233149766922, -0.18285158276557922, -0.5641022324562073, -0.10455849766731262, 0.3223855793476105, -0.17233365774154663, 0.8929110169410706, 0.15464501082897186, -0.20729383826255798, -0.23351983726024628, -0.7921806573867798, -0.10926251858472824, 0.49412664771080017, -0.49387845396995544, -0.531349241733551, -0.11097089946269989, 0.22510981559753418, 0.2339600771665573, 0.3533064126968384, -0.5709571838378906, 0.3339514434337616, -0.26213064789772034, 0.1650772988796234, 0.8511776328086853, -0.06390780955553055, 0.42034152150154114, -0.3946589231491089, 0.508618950843811, 0.0811629444360733, 0.24846294522285461, -0.14475813508033752, -0.6115736365318298, -0.6620233058929443, -0.511347770690918, 0.12873907387256622, 0.4119730591773987, -0.3293747007846832, 0.4600053131580353, -0.3803277909755707, -0.6689556241035461, -0.4502881169319153, 0.06796926259994507, 0.4892180263996124, 0.5374635457992554, 0.29088321328163147, -0.2194509506225586, -0.40412914752960205, -1.0736697912216187, -0.225563645362854, -0.3363456130027771, 0.027461955323815346, 0.6213387250900269, 0.7625197768211365, -0.10731711983680725, 0.6986578106880188, -0.662570595741272, -0.46767303347587585, 0.13761496543884277, 0.23049309849739075, 0.2476043999195099, 0.5696120262145996, 0.9148804545402527, -0.9781903028488159, -0.5003877282142639, 0.08623877912759781, -0.6592748165130615, 0.046214085072278976, 0.05919237062335014, -0.30064666271209717, 0.2755533456802368, 0.343838095664978, -0.6941356062889099, 0.6623038053512573, 0.44718700647354126, -0.3864385187625885, 0.5504772067070007, -0.303963303565979, 0.33082884550094604, -1.0244905948638916, 0.3934316039085388, 0.3687454164028168, -0.07773353904485703, -0.2334001511335373, 0.002996291033923626, -0.1335933655500412, 0.07825076580047607, -0.32249462604522705, 0.7256025671958923, -0.6379401087760925, -0.09170788526535034, -0.0507730171084404, 0.12172602117061615, 0.04519146308302879, 0.6169409155845642, -0.052913349121809006, 0.7245780825614929, 0.4545910656452179, -0.5291199088096619, 0.13162103295326233, 0.5366346836090088, -0.2468155026435852, 0.7066648006439209, -0.5309918522834778, -0.007672287989407778, -0.30465319752693176, 0.2860291302204132, -0.9682676792144775, -0.09171996265649796, 0.39740437269210815, -0.6010540723800659, 0.187366783618927, -0.30670228600502014, -0.5302526950836182, -0.4150281548500061, -0.5311948657035828, 0.31981024146080017, 0.43775641918182373, -0.3028040826320648, 0.41002896428108215, 0.4805311858654022, 0.06944091618061066, -0.5666748881340027, -0.543150782585144, -0.0687284991145134, -0.3050518333911896, -0.5320308208465576, 0.3559780716896057, -0.3031919002532959, -0.22156599164009094, 0.4215240478515625, 0.00542370043694973, -0.19881507754325867, -0.020207103341817856, 0.43046051263809204, 0.46741926670074463, 0.05255505070090294, 0.0009093148983083665, -0.21379795670509338, -0.013622152619063854, -0.12765325605869293, -0.1657918095588684, 0.5043815970420837, -0.18762348592281342, -0.2405293881893158, -0.5718904137611389, 0.48090243339538574, 0.5575296878814697, -0.2056567221879959, 0.7726863026618958, 0.680823028087616, -0.4255099594593048, 0.27618375420570374, -0.4652291536331177, 0.02103622443974018, -0.3948226273059845, 0.18431584537029266, -0.2454328089952469, -0.527779221534729, 0.6979457139968872, 0.11903263628482819, 0.1814306080341339, 0.9738659858703613, 0.44357892870903015, -0.4509887993335724, 1.0902961492538452, 0.6345383524894714, -0.15078195929527283, 0.4776149094104767, -0.7208111882209778, -0.00579675892367959, -0.9558877944946289, -0.44344326853752136, -0.758379340171814, -0.43594658374786377, -0.7806593775749207, -0.4151380956172943, 0.3061768114566803, 0.08181265741586685, -0.1859622746706009, 0.30774471163749695, -0.54128098487854, 0.29032203555107117, 0.6314157247543335, 0.1470240354537964, 0.2029535472393036, 0.21803313493728638, -0.08247597515583038, -0.1254301518201828, -0.39229902625083923, -0.41985782980918884, 1.0820088386535645, 0.10132542997598648, 0.7457530498504639, 0.11569340527057648, 0.3620557487010956, 0.42428499460220337, 0.19951915740966797, -0.6709729433059692, 0.5593940019607544, -0.24277374148368835, -0.8042572140693665, -0.11957220733165741, -0.45625540614128113, -1.0872118473052979, 0.17386966943740845, -0.317150741815567, -0.877708911895752, 0.4065306782722473, 0.11384664475917816, -0.03187344968318939, 0.5193078517913818, -0.42923805117607117, 0.6995311975479126, -0.28112301230430603, -0.372022807598114, -0.20398560166358948, -0.6095532178878784, 0.1784236878156662, 0.1268336921930313, 0.27273380756378174, -0.18421593308448792, -0.11089196056127548, 0.9640563726425171, -0.6191921234130859, 0.6414699554443359, -0.054521773010492325, 0.0729861706495285, 0.12258171290159225, -0.14137494564056396, 0.45169705152511597, -0.016351737082004547, -0.11762066930532455, 0.364872008562088, 0.027523765340447426, -0.341403990983963, -0.29585152864456177, 0.642482578754425, -0.8053954243659973, -0.3447844386100769, -0.5309829711914062, -0.3898243308067322, 0.1306423842906952, 0.3098258376121521, 0.625277042388916, 0.32387545704841614, -0.2866429090499878, 0.29685965180397034, 0.6965904831886292, -0.3961311876773834, 0.17912663519382477, 0.4266746938228607, -0.10692606121301651, -0.5783891081809998, 0.6793884634971619, 0.04212644696235657, -0.0002483209245838225, 0.2254589945077896, 0.16458459198474884, -0.3849044442176819, -0.5088351964950562, -0.4315042495727539, 0.5299510359764099, -0.5917827486991882, -0.4646123945713043, -0.6913092732429504, -0.1145939752459526, -0.6303480267524719, -0.035453666001558304, -0.20417357981204987, -0.2098000943660736, -0.5682796239852905, -0.018253091722726822, 0.6162604093551636, 0.5901656746864319, -0.21126993000507355, 0.337597519159317, -0.6604567170143127, 0.4393974244594574, 0.05738610029220581, 0.4711712598800659, -0.0997319221496582, -0.5300379991531372, -0.12506572902202606, 0.1958702951669693, -0.2858596742153168, -0.9271878600120544, 0.4547610282897949, 0.18251214921474457, 0.5716843605041504, 0.6485903263092041, -0.11979137361049652, 0.856525182723999, -0.3010226786136627, 0.7814187407493591, 0.3018742799758911, -0.5507116317749023, 0.5619392991065979, -0.4811582565307617, 0.06176025792956352, 0.5363311171531677, 0.5594052076339722, -0.5013440847396851, -0.226704403758049, -0.8566293716430664, -0.9171920418739319, 0.8367592692375183, 0.23281805217266083, -0.01959039829671383, 0.15982821583747864, 0.4734145998954773, -0.00893385335803032, 0.16878929734230042, -0.7678802609443665, -0.5646657943725586, -0.022855766117572784, -0.1808428019285202, 0.10345018655061722, -0.23415717482566833, -0.3173328638076782, -0.4843955934047699, 0.9146768450737, -0.0027800111565738916, 0.4109044075012207, 0.323960542678833, -0.07545303553342819, 0.01886148378252983, 0.04465090110898018, 0.4505347013473511, 0.4148445725440979, -0.2396874576807022, -0.07282920926809311, -0.10453584790229797, -0.6699762940406799, -0.08800092339515686, 0.2344369888305664, -0.17894291877746582, -0.13512581586837769, 0.19254066050052643, 0.8890329599380493, -0.16330720484256744, -0.7237343788146973, 0.5277454257011414, -0.2228347659111023, -0.28534960746765137, -0.3141302168369293, -0.21773386001586914, -0.08787686377763748, 0.20339936017990112, 0.28755536675453186, 0.07941115647554398, 0.2854168117046356, -0.4534783661365509, 0.022922474890947342, 0.5161647200584412, -0.2894939184188843, -0.37113818526268005, 0.6154835224151611, -0.05881727114319801, 0.04391268268227577, 0.625785231590271, -0.27193307876586914, -0.4018491208553314, 0.7143972516059875, 0.4637221395969391, 0.6209702491760254, 0.12972760200500488, 0.29425349831581116, 0.5670350790023804, 0.4766307473182678, 0.10288191586732864, 0.27417007088661194, 0.05064184218645096, -0.620303213596344, 0.10265356302261353, -0.7093789577484131, 0.04023906588554382, 0.40659099817276, -0.6314016580581665, 0.25524672865867615, -0.48538967967033386, -0.3061082363128662, 0.056296300143003464, 0.08589313179254532, -0.8433834314346313, 0.2530059516429901, 0.10317816585302353, 0.8508016467094421, -0.898149311542511, 0.44832155108451843, 0.9477704167366028, -0.7465348839759827, -0.6326025128364563, -0.0856010690331459, 0.12623675167560577, -0.7984855771064758, 0.5782638192176819, 0.08374100923538208, 0.12078666687011719, -0.23743145167827606, -0.8167494535446167, -0.9148948788642883, 0.9965312480926514, 0.3009670078754425, -0.20186853408813477, -0.005448854528367519, 0.06735534220933914, 0.4859789311885834, -0.1526505947113037, 0.2236165851354599, 0.21860817074775696, 0.5963383913040161, 0.10354319214820862, -0.6002103686332703, 0.13850660622119904, -0.538292407989502, -0.0658099427819252, 0.2317601442337036, -0.8120362162590027, 0.8187063932418823, -0.03371461108326912, -0.3019373416900635, 0.2766363024711609, 0.4003962278366089, 0.13370242714881897, 0.17891056835651398, 0.5655227899551392, 1.020613431930542, 0.656821608543396, -0.11654737591743469, 1.0731405019760132, -0.057665277272462845, 0.4567662477493286, 0.8471714854240417, 0.08348366618156433, 0.7432824373245239, 0.48302575945854187, -0.2992651164531708, 0.47671204805374146, 0.6747073531150818, -0.4445085823535919, 0.3637596666812897, 0.006613965146243572, 0.09830354899168015, -0.11399148404598236, -0.2525172829627991, -0.36237460374832153, 0.577282190322876, 0.4000393748283386, -0.546045184135437, -0.2582806348800659, -0.06752113252878189, 0.18527667224407196, -0.11481653898954391, -0.16403989493846893, 0.7703840732574463, -0.12163425236940384, -0.29201942682266235, 0.3803149461746216, -0.029443170875310898, 0.664411723613739, -0.5650888085365295, 0.019971758127212524, -0.22505377233028412, 0.006086313631385565, -0.2814826965332031, -0.7588804960250854, 0.10300029814243317, 0.1460207849740982, -0.31783443689346313, -0.17036862671375275, 0.7473680973052979, -0.2892858386039734, -0.601617157459259, 0.2115423083305359, 0.34576576948165894, 0.3898851275444031, 0.09135209023952484, -0.9463579654693604, -0.074359230697155, 0.06579479575157166, -0.32693299651145935, 0.2527817189693451, 0.22799460589885712, -0.06279457360506058, 0.5243867635726929, 0.8067658543586731, 0.26683375239372253, 0.051813025027513504, -0.37731456756591797, 0.8664872646331787, -0.5837491750717163, -0.4324633479118347, -0.6379784941673279, 0.5501598715782166, -0.5391744375228882, -0.4667498469352722, 0.8835919499397278, 0.843258261680603, 0.9032425880432129, 0.11268124729394913, 0.8863780498504639, -0.3759419620037079, 0.24383758008480072, -0.34887412190437317, 0.8155483603477478, -0.9915684461593628, 0.005921035073697567, -0.3023069202899933, -0.7209490537643433, -0.11941636353731155, 0.5010682940483093, -0.15739145874977112, 0.009367666207253933, 0.4535509943962097, 0.7090461254119873, -0.11430636793375015, -0.08572816848754883, 0.009588630869984627, 0.4089425504207611, 0.165304496884346, 0.052608318626880646, 0.6010996103286743, -0.6542665958404541, 0.5965645909309387, -0.3192674517631531, -0.2388242483139038, -0.23988698422908783, -0.7396963238716125, -0.7167268991470337, -0.8470112085342407, -0.3591853082180023, -0.3750006854534149, -0.17667947709560394, 0.5400225520133972, 0.637385904788971, -0.511959433555603, -0.23762449622154236, 0.19408667087554932, 0.11227893084287643, -0.13535508513450623, -0.21808533370494843, 0.4683217704296112, 0.2155265212059021, -0.7852519750595093, -0.1056336835026741, 0.21250708401203156, 0.29730767011642456, -0.11840055137872696, 0.061142534017562866, -0.3969639539718628, -0.0010531889274716377, 0.31666186451911926, 0.4295065104961395, -0.5004557967185974, 0.013155153021216393, -0.05859158933162689, -0.18211036920547485, 0.3190992772579193, 0.5560291409492493, -0.4537225067615509, 0.12868620455265045, 0.6488831043243408, 0.27736642956733704, 0.5832340121269226, 0.06289035826921463, 0.12123801559209824, -0.569098711013794, 0.38169246912002563, -0.045217517763376236, 0.6201435327529907, 0.2472401112318039, -0.5118422508239746, 0.4750683307647705, 0.4546836018562317, -0.42662250995635986, -0.781699001789093, -0.08682165294885635, -1.2236624956130981, -0.3412858843803406, 1.1436673402786255, -0.18423230946063995, -0.3923022449016571, 0.23868981003761292, -0.23740758001804352, 0.2428358793258667, -0.45696282386779785, 0.5873896479606628, 0.5440336465835571, -0.01849636621773243, 0.048017531633377075, -0.5324920415878296, 0.4196639657020569, 0.035236675292253494, -0.8528085350990295, -0.1486046016216278, 0.7106509804725647, 0.3545505404472351, 0.3568074405193329, 0.6209193468093872, -0.34783580899238586, -0.029021169990301132, -0.16716451942920685, 0.2171671986579895, 0.16040226817131042, 0.02446029894053936, -0.20493066310882568, -0.05848879739642143, -0.3056434094905853, -0.3125165104866028 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
brwac
null
2022-11-03T16:16:00Z
5,704
8
brwac
[ "task_categories:text-generation", "task_categories:fill-mask", "task_ids:language-modeling", "task_ids:masked-language-modeling", "annotations_creators:no-annotation", "language_creators:found", "multilinguality:monolingual", "size_categories:1M<n<10M", "source_datasets:original", "language:pt", "license:unknown", "region:us" ]
2022-11-03T16:16:00Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - no-annotation language_creators: - found language: - pt license: - unknown multilinguality: - monolingual size_categories: - 1M<n<10M source_datasets: - original task_categories: - text-generation - fill-mask task_ids: - language-modeling - masked-language-modeling paperswithcode_id: brwac pretty_name: BrWaC dataset_info: features: - name: doc_id dtype: string - name: title dtype: string - name: uri dtype: string - name: text sequence: - name: paragraphs sequence: string splits: - name: train num_bytes: 18828421452 num_examples: 3530796 download_size: 0 dataset_size: 18828421452 --- # Dataset Card for BrWaC ## 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:** [BrWaC homepage](https://www.inf.ufrgs.br/pln/wiki/index.php?title=BrWaC) - **Repository:** [BrWaC repository](https://www.inf.ufrgs.br/pln/wiki/index.php?title=BrWaC) - **Paper:** [The brWaC Corpus: A New Open Resource for Brazilian Portuguese](https://www.aclweb.org/anthology/L18-1686/) - **Point of Contact:** [Jorge A. Wagner Filho](mailto:jawfilho@inf.ufrgs.br) ### Dataset Summary The BrWaC (Brazilian Portuguese Web as Corpus) is a large corpus constructed following the Wacky framework, which was made public for research purposes. The current corpus version, released in January 2017, is composed by 3.53 million documents, 2.68 billion tokens and 5.79 million types. Please note that this resource is available solely for academic research purposes, and you agreed not to use it for any commercial applications. Manually download at https://www.inf.ufrgs.br/pln/wiki/index.php?title=BrWaC ### Supported Tasks and Leaderboards [More Information Needed] ### Languages Portuguese ## Dataset Structure ### Data Instances An example from the BrWaC dataset looks as follows: ``` { "doc_id": "netg-1afc73", "text": { "paragraphs": [ [ "Conteúdo recente" ], [ "ESPUMA MARROM CHAMADA \"NINGUÉM MERECE\"" ], [ "31 de Agosto de 2015, 7:07 , por paulo soavinski - | No one following this article yet." ], [ "Visualizado 202 vezes" ], [ "JORNAL ELETRÔNICO DA ILHA DO MEL" ], [ "Uma espuma marrom escuro tem aparecido com frequência na Praia de Fora.", "Na faixa de areia ela aparece disseminada e não chama muito a atenção.", "No Buraco do Aipo, com muitas pedras, ela aparece concentrada.", "É fácil saber que esta espuma estranha está lá, quando venta.", "Pequenos algodões de espuma começam a flutuar no espaço, pertinho da Praia do Saquinho.", "Quem pode ajudar na coleta deste material, envio a laboratório renomado e pagamento de análises, favor entrar em contato com o site." ] ] }, "title": "ESPUMA MARROM CHAMADA ‟NINGUÉM MERECE‟ - paulo soavinski", "uri": "http://blogoosfero.cc/ilhadomel/pousadasilhadomel.com.br/espuma-marrom-chamada-ninguem-merece" } ``` ### Data Fields - `doc_id`: The document ID - `title`: The document title - `uri`: URI where the document was extracted from - `text`: A list of document paragraphs (with a list of sentences in it as a list of strings) ### Data Splits The data is only split into train set with size of 3530796 samples. ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information ``` @inproceedings{wagner2018brwac, title={The brwac corpus: A new open resource for brazilian portuguese}, author={Wagner Filho, Jorge A and Wilkens, Rodrigo and Idiart, Marco and Villavicencio, Aline}, booktitle={Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018)}, year={2018} } ``` ### Contributions Thanks to [@jonatasgrosman](https://github.com/jonatasgrosman) for adding this dataset.
[ -0.5516741871833801, -0.7524294853210449, 0.05493568629026413, 0.5189507603645325, -0.17969268560409546, -0.03902911767363548, -0.4410920739173889, -0.5568270683288574, 0.32884180545806885, 0.5630650520324707, -0.5075056552886963, -1.017168402671814, -0.5721174478530884, 0.4311768412590027, -0.37006792426109314, 1.0834861993789673, -0.24014876782894135, -0.2588145136833191, -0.32765644788742065, -0.362030029296875, -0.20452338457107544, -0.43831124901771545, -0.5697072148323059, -0.010279223322868347, 0.672205924987793, 0.3495183289051056, 0.5341071486473083, 0.6253939270973206, 0.4307616651058197, 0.3077144920825958, -0.1398366093635559, 0.2751944959163666, -0.5588224530220032, -0.16758407652378082, -0.13264992833137512, -0.29870107769966125, -0.2728511393070221, -0.08111830055713654, 0.662693440914154, 0.5727481245994568, -0.16825401782989502, 0.1540946513414383, 0.30400726199150085, 0.58966064453125, -0.5389159917831421, 0.76973956823349, -0.4080488681793213, -0.10374855995178223, -0.4316295385360718, -0.21164236962795258, -0.358359694480896, -0.5765736103057861, -0.019013786688447, -0.631518542766571, 0.20838944613933563, -0.11136925965547562, 1.2010726928710938, -0.06435590982437134, -0.2868506610393524, -0.3733976185321808, -0.4947379529476166, 0.8170051574707031, -0.7014369368553162, 0.37046927213668823, 0.5903244018554688, 0.172317773103714, -0.22035479545593262, -0.708636999130249, -0.6629034876823425, 0.08097153902053833, -0.2286781370639801, 0.45598483085632324, -0.4950868785381317, -0.19886977970600128, 0.21018578112125397, 0.27089858055114746, -0.43160280585289, 0.06547939777374268, -0.6933965086936951, -0.41089755296707153, 0.7965291142463684, 0.15874499082565308, 0.003991836216300726, -0.12252672016620636, -0.3576640784740448, -0.22828955948352814, -0.5835822820663452, 0.1054023951292038, 0.5358278751373291, 0.3809296190738678, -0.7786967158317566, 0.5221207737922668, -0.20310615003108978, 0.9103226065635681, -0.34950244426727295, -0.30040064454078674, 0.5259809494018555, -0.42979878187179565, -0.050684843212366104, -0.10100842267274857, 1.015516996383667, 0.33952730894088745, 0.1502009481191635, -0.09891384094953537, -0.012862535193562508, -0.09987958520650864, 0.007322240620851517, -0.5930541753768921, 0.06206534430384636, 0.3759303092956543, -0.5323310494422913, -0.31138941645622253, 0.27671292424201965, -1.019777536392212, -0.13568012416362762, -0.17056837677955627, 0.012882552109658718, -0.32437777519226074, -0.01144598051905632, 0.1097201332449913, -0.07666125893592834, 0.38863417506217957, 0.22748038172721863, -0.5770025849342346, 0.2823995053768158, 0.24505627155303955, 0.7160802483558655, -0.2265743911266327, -0.4086821675300598, 0.033309053629636765, 0.2180713415145874, -0.0012100734747946262, 0.8918359279632568, -0.2941659092903137, -0.703903079032898, 0.3762838542461395, 0.36417269706726074, -0.10790815949440002, -0.3382807672023773, 1.0692797899246216, -0.2228976935148239, 0.5108228325843811, -0.5839303731918335, -0.32196229696273804, -0.08619015663862228, 0.17984531819820404, -0.5398414134979248, 1.3494703769683838, 0.33319520950317383, -1.0610839128494263, 0.06560016423463821, -0.8156277537345886, -0.5281298160552979, -0.07594531774520874, -0.11564277112483978, -0.2862882912158966, -0.3705781400203705, 0.3433617949485779, 0.4716631770133972, -0.5365211963653564, -0.04769648239016533, -0.18826894462108612, 0.0334431529045105, 0.34181487560272217, -0.3010808825492859, 1.0996230840682983, 0.5173811316490173, 0.0322163961827755, 0.007494399789720774, -0.870380163192749, -0.3404512405395508, 0.3595327138900757, -0.5844834446907043, -0.17941246926784515, -0.20349255204200745, 0.13019371032714844, 0.32331231236457825, 0.6063051819801331, -0.6600542068481445, 0.09475252032279968, -0.33862632513046265, 0.3214850425720215, 0.6101325750350952, 0.19912290573120117, 0.24876368045806885, -0.43007734417915344, 0.4736948013305664, 0.054569706320762634, 0.48192912340164185, 0.015104535967111588, -0.6929300427436829, -0.769534707069397, -0.37423789501190186, 0.47743868827819824, 0.674579918384552, -0.5732348561286926, 0.8320832252502441, -0.4500907361507416, -0.7990143299102783, -0.617120087146759, -0.09153304994106293, 0.37130996584892273, 0.6423393487930298, 0.5288599729537964, -0.3817787766456604, -0.6741136312484741, -0.8797555565834045, 0.006765578407794237, -0.06922972202301025, 0.010755026713013649, 0.4768970310688019, 0.6512801051139832, -0.17693620920181274, 0.9302072525024414, -0.7218019962310791, -0.3759330213069916, -0.1866416037082672, 0.07935738563537598, 0.3227541446685791, 0.3512285351753235, 0.5751062035560608, -0.788862407207489, -0.4347038269042969, -0.15360118448734283, -0.8375003933906555, -0.40587571263313293, 0.063320092856884, -0.38838961720466614, 0.29887068271636963, 0.18970637023448944, -0.3570898771286011, 0.4565715491771698, 0.5422183275222778, -0.5382517576217651, 0.3713228404521942, -0.3552233576774597, 0.167180597782135, -1.022696614265442, 0.21864093840122223, 0.2412828803062439, 0.2138368785381317, -0.3524024188518524, -0.08095908164978027, -0.2169838547706604, 0.16156959533691406, -0.5794797539710999, 0.6708312034606934, -0.4794403910636902, 0.10792361944913864, 0.152124285697937, 0.25865471363067627, 0.09374964237213135, 0.5649025440216064, 0.11387455463409424, 0.4413948953151703, 0.5021787285804749, -0.49141165614128113, 0.16824202239513397, 0.631678581237793, -0.29588350653648376, 0.5404752492904663, -0.6781953573226929, -0.1470823884010315, -0.21039432287216187, 0.36592942476272583, -0.8394599556922913, -0.09987785667181015, 0.3643544912338257, -0.46895402669906616, 0.19356948137283325, -0.17508035898208618, -0.612862765789032, -0.4892248511314392, -0.36407774686813354, -0.08672167360782623, 0.37338024377822876, -0.3320363461971283, 0.4618864357471466, 0.668484628200531, -0.00006422556180041283, -0.719012439250946, -0.9032285213470459, -0.09430297464132309, -0.07485700398683548, -0.7952329516410828, 0.4911981523036957, -0.16980747878551483, -0.044104162603616714, 0.03680754080414772, 0.11681196093559265, -0.06264714151620865, -0.029785487800836563, 0.32359275221824646, 0.3669898808002472, 0.0008032305631786585, -0.2575022280216217, 0.10123256593942642, 0.13469639420509338, -0.16933606564998627, 0.035925623029470444, 0.7962607741355896, 0.003861646633595228, -0.15455561876296997, -0.14125491678714752, 0.35503923892974854, 0.36693334579467773, -0.49241903424263, 1.0205130577087402, 0.728238046169281, -0.3385118246078491, 0.16723695397377014, -0.5948666334152222, 0.09366893768310547, -0.4099089205265045, -0.08194305002689362, -0.111859031021595, -0.8319222927093506, 0.9926905632019043, 0.350229412317276, 0.30639854073524475, 0.8402064442634583, 0.8149133324623108, -0.08472058176994324, 0.49208906292915344, 0.40162941813468933, -0.0904448851943016, 0.5801785588264465, -0.7108142375946045, -0.11409079283475876, -0.6623356938362122, -0.726568877696991, -1.012095332145691, -0.1256588101387024, -0.7222070693969727, -0.5756356120109558, 0.2026865929365158, 0.028088320046663284, -0.12869924306869507, 0.5448204278945923, -0.5763078331947327, 0.19880007207393646, 0.6312223076820374, 0.06506336480379105, 0.14508776366710663, -0.050541069358587265, -0.3249069154262543, 0.11258876323699951, -0.6888097524642944, -0.6173111796379089, 1.0724953413009644, 0.4134528934955597, 0.47149497270584106, 0.09304815530776978, 0.8911063075065613, 0.347981721162796, 0.16099365055561066, -0.41779187321662903, 0.5457613468170166, -0.0126730315387249, -0.6020153760910034, -0.34668463468551636, -0.288806289434433, -1.4051666259765625, 0.13046155869960785, -0.4874349534511566, -0.7651311755180359, 0.7160056829452515, -0.11213886737823486, -0.20009629428386688, 0.06462673097848892, -0.7145416140556335, 0.959159255027771, 0.006477333605289459, -0.5508432388305664, -0.042089227586984634, -0.7811756134033203, -0.02247096225619316, 0.15907973051071167, 0.5619989037513733, -0.1289472132921219, -0.2548119127750397, 1.0833028554916382, -0.6424799561500549, 0.9611323475837708, -0.1625162959098816, -0.1727508306503296, 0.7929697036743164, -0.2274765968322754, 0.653329610824585, -0.22444014251232147, -0.14102420210838318, 0.600808322429657, -0.015414513647556305, -0.6497535109519958, -0.2661300003528595, 0.7793853282928467, -0.8391276597976685, -0.07354725897312164, -0.5461961030960083, -0.3368350863456726, -0.06143970787525177, 0.29197925329208374, 0.38198012113571167, 0.3867305517196655, -0.33836957812309265, 0.24468082189559937, 0.3347872197628021, -0.3345299959182739, 0.4508804976940155, 0.6667775511741638, 0.08763184398412704, -0.4398331940174103, 0.7657564878463745, 0.5476600527763367, -0.1397550106048584, 0.5426138639450073, 0.15271450579166412, -0.4817274510860443, -0.8402331471443176, -0.207980215549469, 0.34911149740219116, -0.5783027410507202, -0.24309596419334412, -0.8652585744857788, -0.031192317605018616, -0.6983685493469238, -0.17189931869506836, 0.04141978919506073, -0.3963301479816437, -0.3168206810951233, -0.33067643642425537, 0.551552414894104, 0.4018217623233795, -0.29983893036842346, 0.30318760871887207, -0.7535668015480042, 0.06862976402044296, -0.06249045208096504, 0.23321112990379333, -0.07865029573440552, -0.4453943073749542, -0.5096075534820557, 0.09229151159524918, -0.39705219864845276, -0.9354732036590576, 0.5525820255279541, -0.07813210040330887, 0.7751792669296265, 0.2709466516971588, 0.1741141527891159, 0.43050920963287354, -0.027452873066067696, 1.0584886074066162, 0.04419640824198723, -0.4725501239299774, 0.6350290179252625, -0.6950743794441223, 0.19009429216384888, 0.7678712010383606, 0.6521244645118713, -0.5117291212081909, -0.266946017742157, -0.9929950833320618, -1.103097677230835, 0.5983466506004333, 0.40794241428375244, 0.00919888075441122, -0.33665359020233154, -0.04370447248220444, 0.04334583133459091, 0.18566064536571503, -0.6081228256225586, -0.5757672786712646, -0.16956694424152374, -0.29232871532440186, 0.1967402696609497, -0.27806204557418823, -0.35526782274246216, -0.32794609665870667, 0.8551052212715149, 0.06691634654998779, 0.4446462392807007, 0.4052402377128601, 0.029332013800740242, 0.1856532245874405, 0.3512951135635376, 0.4786861538887024, 0.5029036998748779, -0.29324498772621155, -0.0763724073767662, 0.35711246728897095, -0.5274678468704224, -0.4476605951786041, 0.2634294033050537, -0.32034826278686523, -0.024180347099900246, 0.5406014323234558, 0.877445638179779, 0.2982877194881439, -0.56434565782547, 0.6129393577575684, 0.06887263804674149, -0.22189746797084808, -0.5133256912231445, -0.22503656148910522, 0.03115238808095455, -0.00817865040153265, 0.27350035309791565, -0.1098800078034401, 0.03072163462638855, -0.5957090854644775, 0.04372114688158035, 0.0877491757273674, -0.3559251129627228, -0.10639436542987823, 0.482609361410141, 0.3059164583683014, -0.08681239187717438, 0.35535958409309387, -0.11060619354248047, -0.20594905316829681, 0.49002954363822937, 0.45414069294929504, 0.6027206182479858, 0.08495791256427765, 0.2647892236709595, 0.693751335144043, 0.2706681489944458, -0.17596587538719177, 0.6099679470062256, -0.08072467893362045, -0.9317100048065186, -0.1199624165892601, -0.8080837726593018, -0.17282353341579437, -0.006188970524817705, -0.7366281747817993, 0.5094693899154663, -0.4158785939216614, -0.12892895936965942, -0.08423108607530594, 0.17482025921344757, -0.9002270102500916, 0.23842883110046387, 0.07041259855031967, 1.2016981840133667, -0.9665868878364563, 0.8372130393981934, 0.45010191202163696, -1.0401067733764648, -0.8077066540718079, -0.3247244656085968, -0.11101137846708298, -0.7931838631629944, 0.05220586434006691, -0.2895662188529968, 0.17234547436237335, -0.11624588817358017, -0.5745397210121155, -0.6297487020492554, 1.22346031665802, 0.36009225249290466, -0.39330288767814636, -0.07150261849164963, 0.2596246898174286, 0.8242422342300415, -0.41013237833976746, 0.5385155081748962, 0.7075079083442688, 0.9074119925498962, 0.17555202543735504, -0.7709674835205078, 0.0704893097281456, -0.26219168305397034, -0.21949486434459686, -0.10877896845340729, -0.9212923645973206, 0.6175974011421204, -0.06796123087406158, -0.23621681332588196, -0.2572575807571411, 0.726874053478241, 0.1274305284023285, 0.2628309726715088, 0.246057391166687, 0.6856788992881775, 0.8210936784744263, -0.4438727796077728, 1.320062279701233, -0.33815309405326843, 0.39242592453956604, 0.9673431515693665, 0.04980766028165817, 0.8686269521713257, 0.42854103446006775, -0.6123408675193787, 0.7941054701805115, 0.6818500757217407, -0.32133597135543823, 0.45301857590675354, 0.07817472517490387, -0.16962695121765137, 0.09881562739610672, -0.365011602640152, -0.4856111407279968, 0.572504460811615, 0.2806597948074341, -0.5689418911933899, -0.24037985503673553, -0.20331831276416779, 0.5020334720611572, 0.2726720869541168, -0.223735049366951, 0.6646071076393127, -0.025222299620509148, -0.5134020447731018, 0.6890418529510498, 0.06770407408475876, 0.8859701752662659, -0.8370584845542908, 0.12652558088302612, -0.32222050428390503, -0.15900588035583496, -0.5918230414390564, -1.0751545429229736, 0.43427395820617676, 0.0414859876036644, -0.18050189316272736, -0.18982169032096863, 0.6562098860740662, -0.3742484152317047, -0.640940248966217, 0.42679017782211304, 0.5082896947860718, 0.46392229199409485, 0.23722822964191437, -0.9055306911468506, 0.2690851390361786, 0.15242226421833038, -0.252848744392395, 0.3570837080478668, 0.42523932456970215, -0.20630019903182983, 0.3570598363876343, 0.7332893013954163, 0.3091219961643219, 0.15415874123573303, 0.1072196438908577, 0.709420382976532, -0.5788224935531616, -0.4351426959037781, -0.6256589293479919, 0.6556602716445923, -0.4442923069000244, -0.559727668762207, 0.911288857460022, 0.9916039109230042, 1.1639859676361084, -0.09600821882486343, 1.0281569957733154, -0.46570202708244324, 0.5390084981918335, -0.14689381420612335, 0.7601429224014282, -0.40811485052108765, 0.06668425351381302, -0.3668053448200226, -0.7856238484382629, -0.3048163652420044, 0.5848342180252075, -0.36176687479019165, -0.13384948670864105, 0.519034206867218, 0.9945831894874573, 0.3083220422267914, 0.09529498219490051, 0.12701381742954254, 0.44499626755714417, 0.10792393237352371, 0.4241839051246643, 0.3833233416080475, -0.6068934798240662, 0.7320739030838013, -0.5710238218307495, -0.2375524789094925, -0.18255646526813507, -0.9083147048950195, -0.6533458232879639, -0.949500560760498, -0.5314142107963562, -0.7551304697990417, -0.05452386662364006, 0.9311490654945374, 0.2255389243364334, -1.1013752222061157, -0.3728412687778473, 0.21490654349327087, 0.22636111080646515, -0.1975097507238388, -0.24847412109375, 0.5754443407058716, 0.27690914273262024, -0.7706774473190308, 0.1301652193069458, 0.05029739439487457, 0.0749591514468193, -0.1577814668416977, -0.1628502607345581, -0.4262753427028656, 0.1868443787097931, 0.6174401044845581, 0.6423901319503784, -0.36735206842422485, -0.24316897988319397, -0.05316103249788284, -0.2346741408109665, 0.14375603199005127, 0.535024881362915, -0.5519493222236633, 0.17407698929309845, 0.799867570400238, 0.10800368338823318, 0.6452335715293884, -0.2483280897140503, 0.1857006996870041, -0.6591017246246338, 0.4044031798839569, 0.18816453218460083, 0.6565312743186951, 0.3070494830608368, -0.28736671805381775, 0.8069049715995789, 0.3956531584262848, -0.3166642487049103, -0.7833305597305298, -0.2029794156551361, -1.5607069730758667, -0.09653551876544952, 1.3404196500778198, -0.12471210211515427, -0.3725878596305847, -0.21864376962184906, -0.4686238467693329, 0.5518755912780762, -0.7597410678863525, 0.534342348575592, 0.6493391394615173, 0.00017613566888030618, 0.1680828481912613, -0.3948337733745575, 0.2677095830440521, -0.3001616895198822, -0.8656132221221924, 0.1473037749528885, 0.4200494885444641, 0.2658259868621826, 0.17834842205047607, 0.815448522567749, -0.6543375253677368, -0.13931603729724884, 0.029707685112953186, 0.4846642017364502, -0.06327276676893234, 0.05292613059282303, -0.08862876147031784, 0.2522612512111664, -0.16713888943195343, -0.1026260107755661 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
multi_woz_v22
null
2023-01-25T14:41:08Z
5,686
15
multiwoz
[ "task_categories:text-generation", "task_categories:fill-mask", "task_categories:token-classification", "task_categories:text-classification", "task_ids:dialogue-modeling", "task_ids:multi-class-classification", "task_ids:parsing", "annotations_creators:machine-generated", "language_creators:crowdsourced", "language_creators:machine-generated", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:apache-2.0", "arxiv:1810.00278", "region:us" ]
2023-01-25T14:41:08Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - machine-generated language_creators: - crowdsourced - machine-generated language: - en license: - apache-2.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - text-generation - fill-mask - token-classification - text-classification task_ids: - dialogue-modeling - multi-class-classification - parsing paperswithcode_id: multiwoz pretty_name: Multi-domain Wizard-of-Oz dataset_info: - config_name: v2.2 features: - name: dialogue_id dtype: string - name: services sequence: string - name: turns sequence: - name: turn_id dtype: string - name: speaker dtype: class_label: names: '0': USER '1': SYSTEM - name: utterance dtype: string - name: frames sequence: - name: service dtype: string - name: state struct: - name: active_intent dtype: string - name: requested_slots sequence: string - name: slots_values sequence: - name: slots_values_name dtype: string - name: slots_values_list sequence: string - name: slots sequence: - name: slot dtype: string - name: value dtype: string - name: start dtype: int32 - name: exclusive_end dtype: int32 - name: copy_from dtype: string - name: copy_from_value sequence: string - name: dialogue_acts struct: - name: dialog_act sequence: - name: act_type dtype: string - name: act_slots sequence: - name: slot_name dtype: string - name: slot_value dtype: string - name: span_info sequence: - name: act_type dtype: string - name: act_slot_name dtype: string - name: act_slot_value dtype: string - name: span_start dtype: int32 - name: span_end dtype: int32 splits: - name: train num_bytes: 68222649 num_examples: 8437 - name: validation num_bytes: 8990945 num_examples: 1000 - name: test num_bytes: 9027095 num_examples: 1000 download_size: 276592909 dataset_size: 86240689 - config_name: v2.2_active_only features: - name: dialogue_id dtype: string - name: services sequence: string - name: turns sequence: - name: turn_id dtype: string - name: speaker dtype: class_label: names: '0': USER '1': SYSTEM - name: utterance dtype: string - name: frames sequence: - name: service dtype: string - name: state struct: - name: active_intent dtype: string - name: requested_slots sequence: string - name: slots_values sequence: - name: slots_values_name dtype: string - name: slots_values_list sequence: string - name: slots sequence: - name: slot dtype: string - name: value dtype: string - name: start dtype: int32 - name: exclusive_end dtype: int32 - name: copy_from dtype: string - name: copy_from_value sequence: string - name: dialogue_acts struct: - name: dialog_act sequence: - name: act_type dtype: string - name: act_slots sequence: - name: slot_name dtype: string - name: slot_value dtype: string - name: span_info sequence: - name: act_type dtype: string - name: act_slot_name dtype: string - name: act_slot_value dtype: string - name: span_start dtype: int32 - name: span_end dtype: int32 splits: - name: train num_bytes: 40937577 num_examples: 8437 - name: validation num_bytes: 5377939 num_examples: 1000 - name: test num_bytes: 5410819 num_examples: 1000 download_size: 276592909 dataset_size: 51726335 --- # Dataset Card for MultiWOZ ## 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:** [MultiWOZ 2.2 github repository](https://github.com/budzianowski/multiwoz/tree/master/data/MultiWOZ_2.2) - **Paper:** [MultiWOZ v2](https://arxiv.org/abs/1810.00278), and [MultiWOZ v2.2](https://www.aclweb.org/anthology/2020.nlp4convai-1.13.pdf) - **Point of Contact:** [Paweł Budzianowski](pfb30@cam.ac.uk) ### Dataset Summary Multi-Domain Wizard-of-Oz dataset (MultiWOZ), a fully-labeled collection of human-human written conversations spanning over multiple domains and topics. MultiWOZ 2.1 (Eric et al., 2019) identified and fixed many erroneous annotations and user utterances in the original version, resulting in an improved version of the dataset. MultiWOZ 2.2 is a yet another improved version of this dataset, which identifies and fixes dialogue state annotation errors across 17.3% of the utterances on top of MultiWOZ 2.1 and redefines the ontology by disallowing vocabularies of slots with a large number of possible values (e.g., restaurant name, time of booking) and introducing standardized slot span annotations for these slots. ### Supported Tasks and Leaderboards This dataset supports a range of task. - **Generative dialogue modeling** or `dialogue-modeling`: the text of the dialogues can be used to train a sequence model on the utterances. Performance on this task is typically evaluated with delexicalized-[BLEU](https://huggingface.co/metrics/bleu), inform rate and request success. - **Intent state tracking**, a `multi-class-classification` task: predict the belief state of the user side of the conversation, performance is measured by [F1](https://huggingface.co/metrics/f1). - **Dialog act prediction**, a `parsing` task: parse an utterance into the corresponding dialog acts for the system to use. [F1](https://huggingface.co/metrics/f1) is typically reported. ### Languages The text in the dataset is in English (`en`). ## Dataset Structure ### Data Instances A data instance is a full multi-turn dialogue between a `USER` and a `SYSTEM`. Each turn has a single utterance, e.g.: ``` ['What fun places can I visit in the East?', 'We have five spots which include boating, museums and entertainment. Any preferences that you have?'] ``` The utterances of the `USER` are also annotated with frames denoting their intent and believe state: ``` [{'service': ['attraction'], 'slots': [{'copy_from': [], 'copy_from_value': [], 'exclusive_end': [], 'slot': [], 'start': [], 'value': []}], 'state': [{'active_intent': 'find_attraction', 'requested_slots': [], 'slots_values': {'slots_values_list': [['east']], 'slots_values_name': ['attraction-area']}}]}, {'service': [], 'slots': [], 'state': []}] ``` Finally, each of the utterances is annotated with dialog acts which provide a structured representation of what the `USER` or `SYSTEM` is inquiring or giving information about. ``` [{'dialog_act': {'act_slots': [{'slot_name': ['east'], 'slot_value': ['area']}], 'act_type': ['Attraction-Inform']}, 'span_info': {'act_slot_name': ['area'], 'act_slot_value': ['east'], 'act_type': ['Attraction-Inform'], 'span_end': [39], 'span_start': [35]}}, {'dialog_act': {'act_slots': [{'slot_name': ['none'], 'slot_value': ['none']}, {'slot_name': ['boating', 'museums', 'entertainment', 'five'], 'slot_value': ['type', 'type', 'type', 'choice']}], 'act_type': ['Attraction-Select', 'Attraction-Inform']}, 'span_info': {'act_slot_name': ['type', 'type', 'type', 'choice'], 'act_slot_value': ['boating', 'museums', 'entertainment', 'five'], 'act_type': ['Attraction-Inform', 'Attraction-Inform', 'Attraction-Inform', 'Attraction-Inform'], 'span_end': [40, 49, 67, 12], 'span_start': [33, 42, 54, 8]}}] ``` ### Data Fields Each dialogue instance has the following fields: - `dialogue_id`: a unique ID identifying the dialog. The MUL and PMUL names refer to strictly multi domain dialogues (at least 2 main domains are involved) while the SNG, SSNG and WOZ names refer to single domain dialogues with potentially sub-domains like booking. - `services`: a list of services mentioned in the dialog, such as `train` or `hospitals`. - `turns`: the sequence of utterances with their annotations, including: - `turn_id`: a turn identifier, unique per dialog. - `speaker`: either the `USER` or `SYSTEM`. - `utterance`: the text of the utterance. - `dialogue_acts`: The structured parse of the utterance into dialog acts in the system's grammar - `act_type`: Such as e.g. `Attraction-Inform` to seek or provide information about an `attraction` - `act_slots`: provide more details about the action - `span_info`: maps these `act_slots` to the `utterance` text. - `frames`: only for `USER` utterances, track the user's belief state, i.e. a structured representation of what they are trying to achieve in the fialog. This decomposes into: - `service`: the service they are interested in - `state`: their belief state including their `active_intent` and further information expressed in `requested_slots` - `slots`: a mapping of the `requested_slots` to where they are mentioned in the text. It takes one of two forms, detailed next: The first type are span annotations that identify the location where slot values have been mentioned in the utterances for non-categorical slots. These span annotations are represented as follows: ``` { "slots": [ { "slot": String of slot name. "start": Int denoting the index of the starting character in the utterance corresponding to the slot value. "exclusive_end": Int denoting the index of the character just after the last character corresponding to the slot value in the utterance. In python, utterance[start:exclusive_end] gives the slot value. "value": String of value. It equals to utterance[start:exclusive_end], where utterance is the current utterance in string. } ] } ``` There are also some non-categorical slots whose values are carried over from another slot in the dialogue state. Their values don"t explicitly appear in the utterances. For example, a user utterance can be "I also need a taxi from the restaurant to the hotel.", in which the state values of "taxi-departure" and "taxi-destination" are respectively carried over from that of "restaurant-name" and "hotel-name". For these slots, instead of annotating them as spans, a "copy from" annotation identifies the slot it copies the value from. This annotation is formatted as follows, ``` { "slots": [ { "slot": Slot name string. "copy_from": The slot to copy from. "value": A list of slot values being . It corresponds to the state values of the "copy_from" slot. } ] } ``` ### Data Splits The dataset is split into a `train`, `validation`, and `test` split with the following sizes: | | train | validation | test | |---------------------|------:|-----------:|-----:| | Number of dialogues | 8438 | 1000 | 1000 | | Number of turns | 42190 | 5000 | 5000 | ## 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 The initial dataset (Versions 1.0 and 2.0) was created by a team of researchers from the [Cambridge Dialogue Systems Group](https://mi.eng.cam.ac.uk/research/dialogue/corpora/). Version 2.1 was developed on top of v2.0 by a team from Amazon, and v2.2 was developed by a team of Google researchers. ### Licensing Information The dataset is released under the Apache License 2.0. ### Citation Information You can cite the following for the various versions of MultiWOZ: Version 1.0 ``` @inproceedings{ramadan2018large, title={Large-Scale Multi-Domain Belief Tracking with Knowledge Sharing}, author={Ramadan, Osman and Budzianowski, Pawe{\l} and Gasic, Milica}, booktitle={Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics}, volume={2}, pages={432--437}, year={2018} } ``` Version 2.0 ``` @inproceedings{budzianowski2018large, Author = {Budzianowski, Pawe{\l} and Wen, Tsung-Hsien and Tseng, Bo-Hsiang and Casanueva, I{\~n}igo and Ultes Stefan and Ramadan Osman and Ga{\v{s}}i\'c, Milica}, title={MultiWOZ - A Large-Scale Multi-Domain Wizard-of-Oz Dataset for Task-Oriented Dialogue Modelling}, booktitle={Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing (EMNLP)}, year={2018} } ``` Version 2.1 ``` @article{eric2019multiwoz, title={MultiWOZ 2.1: Multi-Domain Dialogue State Corrections and State Tracking Baselines}, author={Eric, Mihail and Goel, Rahul and Paul, Shachi and Sethi, Abhishek and Agarwal, Sanchit and Gao, Shuyag and Hakkani-Tur, Dilek}, journal={arXiv preprint arXiv:1907.01669}, year={2019} } ``` Version 2.2 ``` @inproceedings{zang2020multiwoz, title={MultiWOZ 2.2: A Dialogue Dataset with Additional Annotation Corrections and State Tracking Baselines}, author={Zang, Xiaoxue and Rastogi, Abhinav and Sunkara, Srinivas and Gupta, Raghav and Zhang, Jianguo and Chen, Jindong}, booktitle={Proceedings of the 2nd Workshop on Natural Language Processing for Conversational AI, ACL 2020}, pages={109--117}, year={2020} } ``` ### Contributions Thanks to [@yjernite](https://github.com/yjernite) for adding this dataset.
[ -0.5640712976455688, -0.9652486443519592, 0.17626053094863892, 0.2827138602733612, -0.012720252387225628, -0.05470094457268715, -0.16641096770763397, -0.37164306640625, 0.41654127836227417, 0.6527655124664307, -1.0618852376937866, -0.6505712270736694, -0.3353283405303955, 0.06176652014255524, -0.07287129014730453, 1.1643859148025513, 0.060607634484767914, -0.3619738817214966, -0.19037824869155884, -0.24256975948810577, -0.43947431445121765, -0.5882234573364258, -0.5168201327323914, -0.3077700436115265, 0.3448027968406677, 0.24024340510368347, 0.7461501359939575, 0.40466922521591187, 0.16682560741901398, 0.3620677590370178, -0.20186807215213776, 0.4936312735080719, -0.4995269477367401, -0.02222480997443199, 0.11945652216672897, -0.40465247631073, -0.6133856177330017, 0.09249521791934967, 0.6102109551429749, 0.687544047832489, -0.16262345016002655, 0.13743053376674652, -0.019662456586956978, 0.25418955087661743, -0.22115662693977356, 0.6589760780334473, -0.47955209016799927, 0.11457313597202301, -0.33180609345436096, -0.2709919810295105, -0.2850973308086395, -0.30013561248779297, 0.32356971502304077, -0.9545505046844482, 0.1394190639257431, 0.2848619520664215, 1.1377384662628174, 0.15909136831760406, -0.3060363829135895, -0.3167625665664673, -0.427672803401947, 0.8485837578773499, -0.8104002475738525, 0.10932692140340805, 0.6394001245498657, 0.023179594427347183, -0.37690025568008423, -0.6338826417922974, -0.9157894253730774, 0.04660508781671524, -0.47764530777931213, 0.31488901376724243, -0.16723543405532837, 0.04029392451047897, 0.4042760133743286, 0.3893020451068878, -0.4720470905303955, -0.1855297088623047, -0.3824370801448822, -0.32255038619041443, 0.7757410407066345, 0.4578949809074402, 0.4366743564605713, -0.5621278882026672, -0.5143701434135437, -0.2875220477581024, -0.4442693293094635, 0.27917248010635376, 0.21650774776935577, 0.4604549705982208, -0.3683902621269226, 0.5588665008544922, -0.3445897698402405, 0.7712081670761108, 0.13025882840156555, -0.48816975951194763, 0.7307034730911255, -0.6192100644111633, -0.19878824055194855, -0.08233891427516937, 1.159228801727295, 0.5662743449211121, -0.05335898697376251, 0.1354580819606781, 0.21173784136772156, -0.22223764657974243, 0.18199360370635986, -0.538045346736908, -0.2038104236125946, 0.4891050159931183, -0.5324637293815613, -0.28539663553237915, 0.014752466231584549, -0.8513177037239075, -0.23452913761138916, -0.05584641173481941, 0.39704322814941406, -0.57912677526474, -0.3467167913913727, 0.006964049302041531, -0.2880772352218628, 0.2323862761259079, 0.3051091730594635, -0.9402692317962646, 0.28788819909095764, 0.43936029076576233, 0.7774435877799988, 0.06754270941019058, -0.5264707207679749, -0.1891704946756363, 0.12128011882305145, -0.08664859086275101, 0.8258956670761108, -0.391589492559433, -0.2614930272102356, 0.08828140050172806, 0.2807213366031647, -0.39917364716529846, -0.2995864450931549, 0.6648663282394409, -0.3363799452781677, 0.4536184072494507, -0.3045249581336975, -0.5547314286231995, -0.6263979077339172, 0.22593377530574799, -0.793502151966095, 1.226144790649414, 0.3305879831314087, -0.6809528470039368, 0.32552534341812134, -1.0236366987228394, -0.49029386043548584, 0.005493801552802324, -0.0669025406241417, -0.4408448040485382, -0.20564958453178406, 0.2635091543197632, 0.47609373927116394, -0.1305687576532364, 0.05397781357169151, -0.2819611430168152, -0.14085732400417328, 0.46618202328681946, -0.2835298776626587, 0.9847453236579895, 0.10025545954704285, -0.21436770260334015, 0.16891376674175262, -0.849279522895813, 0.14117005467414856, 0.15880438685417175, -0.2963871359825134, -0.1864352971315384, 0.19733573496341705, 0.06698080152273178, 0.3362632691860199, 0.11948856711387634, -0.4105989933013916, 0.2766854166984558, -0.5197610855102539, 0.58021080493927, 0.5747542381286621, 0.20401552319526672, 0.23043179512023926, -0.29931697249412537, 0.2342831790447235, 0.21169012784957886, 0.34749069809913635, -0.21080543100833893, -0.8253879547119141, -0.9103679060935974, -0.19379696249961853, 0.17672574520111084, 0.7548331022262573, -0.5275449156761169, 0.9538434147834778, -0.24480468034744263, -0.45505839586257935, -0.6895517706871033, 0.0022795400582253933, 0.27062341570854187, 0.42613083124160767, 0.4458662271499634, -0.2813355326652527, -0.4786112904548645, -0.8592705726623535, 0.35650238394737244, -0.2949425280094147, 0.2866956889629364, 0.5158641934394836, 0.562183141708374, -0.21130193769931793, 1.0205434560775757, -0.7092020511627197, -0.44240936636924744, -0.4396994113922119, 0.14745910465717316, 0.34808963537216187, 0.43229737877845764, 0.4897061288356781, -0.9029601812362671, -0.337147057056427, -0.1690160483121872, -0.740149199962616, -0.023143984377384186, -0.2894677519798279, -0.34959676861763, 0.12313220649957657, 0.09804905205965042, -0.8306326866149902, 0.5036838054656982, 0.5149793028831482, -0.5961348414421082, 0.5503423810005188, 0.021092509850859642, 0.34010225534439087, -1.1614614725112915, -0.13357198238372803, -0.10447221249341965, -0.021011659875512123, -0.7963756322860718, -0.33360669016838074, -0.1949262171983719, 0.1525716632604599, -0.13031652569770813, 0.37749239802360535, -0.2303457409143448, 0.04063231498003006, -0.01432486530393362, 0.3279910385608673, 0.20954352617263794, 0.9004037976264954, 0.06589770317077637, 0.7720944285392761, 0.5465987324714661, -0.6979002356529236, 0.5865353345870972, 0.8878816366195679, -0.44814950227737427, 0.5515726208686829, -0.5081381797790527, -0.06709763407707214, -0.056882575154304504, 0.4812614917755127, -1.1779707670211792, -0.33419269323349, 0.6017024517059326, -0.55616295337677, 0.018064254894852638, -0.2643658220767975, -0.5259747505187988, -0.3753848075866699, -0.2706944942474365, 0.014235295355319977, 0.2702792286872864, -0.3743211627006531, 0.7284440994262695, 0.5438416600227356, -0.22887860238552094, -0.5624048113822937, -0.5596385598182678, -0.11777987331151962, -0.27287593483924866, -0.9074415564537048, 0.4857169985771179, -0.13774947822093964, 0.021272383630275726, 0.06312864273786545, 0.12737321853637695, -0.05744815245270729, 0.21948425471782684, 0.45118236541748047, 0.3983449637889862, -0.058926623314619064, 0.03974439576268196, 0.05225672572851181, -0.14932377636432648, -0.06192926689982414, -0.13873650133609772, 0.8486477732658386, -0.14647111296653748, -0.20807263255119324, -0.5731444954872131, 0.5031267404556274, 0.2920233905315399, -0.3609520196914673, 0.9172297716140747, 0.8206455707550049, -0.3541710376739502, -0.03206741809844971, -0.38503825664520264, 0.08844009786844254, -0.45698732137680054, 0.326961487531662, -0.6000173091888428, -0.7718108892440796, 0.6928264498710632, -0.032519109547138214, 0.22470518946647644, 0.7906665205955505, 0.5616118311882019, -0.3580976128578186, 0.9399607181549072, 0.34963458776474, -0.11833560466766357, 0.5045360922813416, -0.5686473250389099, 0.2361382395029068, -0.9289930462837219, -0.5254532098770142, -0.42941513657569885, -0.16442404687404633, -0.5255515575408936, -0.5502873063087463, 0.31711632013320923, 0.2736516296863556, 0.000008099911610770505, 0.485836923122406, -0.37577617168426514, 0.1303587257862091, 0.7449365854263306, -0.12145353853702545, 0.09478609263896942, 0.030722733587026596, -0.02651061676442623, -0.004519029054790735, -0.7248948216438293, -0.5073827505111694, 0.8100005984306335, 0.21272589266300201, 0.6014411449432373, 0.1650756597518921, 0.5623475313186646, 0.3103744387626648, -0.06455770879983902, -0.687404453754425, 0.537194013595581, 0.10292980074882507, -0.7045132517814636, -0.44765129685401917, -0.43018007278442383, -0.9919683337211609, 0.5316935181617737, -0.47291478514671326, -1.0927139520645142, 0.10222063213586807, 0.045090388506650925, -0.6663306355476379, 0.20857176184654236, -0.7125030755996704, 0.9959574341773987, -0.18863359093666077, -0.0347512811422348, -0.13785381615161896, -0.8286454677581787, 0.1274818778038025, 0.28357163071632385, 0.20026589930057526, -0.32258591055870056, 0.3309863805770874, 0.9375211596488953, -0.47965309023857117, 1.0709019899368286, -0.1738722175359726, 0.0326131135225296, 0.588046133518219, -0.21888688206672668, 0.4807247519493103, 0.058593664318323135, 0.0984467938542366, 0.34897950291633606, 0.018307974562048912, -0.11360186338424683, -0.6086461544036865, 0.39991292357444763, -0.8427807688713074, -0.27715355157852173, -0.3631931245326996, -0.4411945641040802, -0.19697149097919464, 0.223586305975914, 0.20893675088882446, 0.6162697076797485, -0.20460475981235504, -0.0063430871814489365, 0.7080689668655396, -0.484708696603775, 0.17842455208301544, 0.3376181125640869, -0.07972387969493866, -0.5699964165687561, 0.7380978465080261, 0.10676266998052597, 0.19930212199687958, 0.48249781131744385, -0.04751498997211456, -0.5492084622383118, -0.2443213015794754, -0.6806104183197021, 0.19383636116981506, -0.5958147048950195, -0.18192900717258453, -0.8399472236633301, -0.35175880789756775, -0.5784578919410706, 0.09608355164527893, -0.19923768937587738, -0.5776785016059875, -0.29150134325027466, -0.31534716486930847, 0.7445343136787415, 0.5583376884460449, -0.10725542902946472, 0.44590136408805847, -0.6634751558303833, 0.3499312698841095, 0.20856380462646484, 0.31177961826324463, -0.1160600557923317, -0.3691653609275818, -0.2627822458744049, 0.09699954092502594, -0.34646356105804443, -0.786923348903656, 0.24352896213531494, 0.22990469634532928, 0.780135452747345, 0.5069060921669006, 0.01085328683257103, 0.9881868958473206, -0.40561482310295105, 1.1196882724761963, 0.23424716293811798, -0.7863720655441284, 0.6974112391471863, -0.21411994099617004, -0.09999562054872513, 0.5569129586219788, 0.23368826508522034, -0.9465658664703369, -0.33336904644966125, -0.765156626701355, -1.0040512084960938, 1.1593308448791504, 0.3404657542705536, 0.22167141735553741, -0.06939572095870972, 0.08441704511642456, 0.09987763315439224, 0.2635083496570587, -0.7931229472160339, -0.7400394082069397, -0.39359062910079956, -0.3791605532169342, -0.017087332904338837, -0.2193218320608139, -0.40549060702323914, -0.27974212169647217, 0.7548274993896484, -0.10174568742513657, 0.6740204095840454, 0.11971470713615417, -0.07334835827350616, 0.11907888203859329, 0.3281305432319641, 0.5819246172904968, 0.4447091817855835, -0.33609744906425476, -0.12801522016525269, 0.17888391017913818, -0.29097333550453186, -0.12947067618370056, 0.21960897743701935, -0.29379674792289734, -0.0994148775935173, 0.5414041876792908, 1.2713004350662231, 0.0807294026017189, -0.5080002546310425, 0.5362215638160706, 0.05637558177113533, -0.19178594648838043, -0.500938892364502, 0.26423388719558716, -0.05109480768442154, 0.32921695709228516, 0.1776406168937683, 0.03547597676515579, 0.1975310742855072, -0.5929694771766663, 0.03890806436538696, 0.24692590534687042, -0.21705859899520874, -0.24932363629341125, 0.4804387390613556, 0.24651940166950226, -0.32347699999809265, 0.65794438123703, -0.3543475270271301, -0.7307479381561279, 0.3092535734176636, 0.4933725595474243, 0.6744444370269775, 0.10976724326610565, 0.3754172921180725, 0.5342317223548889, 0.2899540364742279, 0.07419300079345703, 0.30736762285232544, -0.19539782404899597, -1.0532511472702026, -0.28247010707855225, -0.6507509350776672, -0.18510274589061737, 0.14799927175045013, -0.6489250659942627, -0.09444262832403183, -0.22833290696144104, -0.41768965125083923, 0.09539492428302765, 0.1785375326871872, -0.6771879196166992, 0.13546761870384216, 0.22855521738529205, 0.7901573181152344, -0.8589320182800293, 0.5818606019020081, 0.6038091778755188, -0.6413733959197998, -0.9022391438484192, -0.17781347036361694, 0.13741399347782135, -0.76171875, 0.24139834940433502, 0.13702714443206787, 0.11810850352048874, -0.3529041111469269, -0.47896867990493774, -0.9892135858535767, 1.2623053789138794, -0.27959340810775757, -0.20844165980815887, 0.009445462375879288, 0.23421861231327057, 0.4761825501918793, -0.5005100965499878, 0.39129480719566345, 0.726168155670166, 0.5423977971076965, -0.028034772723913193, -0.951344907283783, 0.04392034932971001, -0.44351688027381897, -0.03988657891750336, 0.0824522003531456, -1.0008244514465332, 0.8605581521987915, -0.08274642378091812, -0.11903215199708939, 0.04372306540608406, 0.6913766860961914, 0.29831990599632263, 0.15066376328468323, 0.6435674428939819, 0.6281753778457642, 1.0215303897857666, -0.4992574453353882, 1.0080486536026, -0.14675182104110718, 0.4874493479728699, 0.9470850229263306, -0.1283188909292221, 0.727637529373169, 0.2764284014701843, -0.32615387439727783, 0.691881537437439, 0.607135534286499, -0.24783170223236084, 0.7213689684867859, 0.03684035688638687, -0.0430946908891201, -0.22638119757175446, -0.011719811707735062, -0.34960341453552246, 0.6072408556938171, 0.6451574563980103, -0.14617443084716797, 0.09294136613607407, -0.02671421878039837, 0.2912839353084564, -0.41363614797592163, -0.04194846749305725, 0.9913598895072937, -0.1795995980501175, -0.7292938232421875, 0.4126865267753601, 0.08703462034463882, 0.7060660719871521, -0.8450758457183838, -0.13032716512680054, -0.0875696912407875, 0.07636013627052307, -0.3460271656513214, -0.9976183176040649, 0.12760238349437714, -0.1666484773159027, -0.2975137531757355, -0.11025378853082657, 0.6000440716743469, -0.5755411386489868, -0.4101949632167816, 0.27886763215065, 0.34953656792640686, 0.2656824290752411, 0.22548897564411163, -0.961348831653595, 0.17822572588920593, 0.2876521050930023, -0.4112666845321655, 0.056672703474760056, 0.40503862500190735, -0.02755013108253479, 0.6480491161346436, 0.566065788269043, 0.010991956107318401, 0.25875699520111084, 0.29894816875457764, 0.761321485042572, -0.8069276809692383, -0.5531154870986938, -0.5680904984474182, 0.6667256951332092, -0.4328280985355377, -0.5980072617530823, 0.7912660241127014, 0.513554036617279, 0.9110313653945923, 0.08844222873449326, 0.9545336961746216, -0.5622667074203491, 0.5232542753219604, -0.5874835848808289, 0.5585205554962158, -0.5515795946121216, 0.05920602008700371, -0.46139630675315857, -0.598425030708313, -0.011603089049458504, 1.079148769378662, -0.11886052787303925, -0.013491231016814709, 0.4609459638595581, 0.8018208742141724, 0.1510317325592041, 0.25217974185943604, -0.06774190813302994, 0.26667580008506775, 0.25241804122924805, 0.6006037592887878, 0.9902303814888, -0.6289392113685608, 0.5666453838348389, -0.3072165250778198, -0.3220069110393524, -0.27568289637565613, -0.4103766977787018, -0.8397172689437866, -0.8679946660995483, -0.3528061807155609, -0.44695279002189636, -0.3368057608604431, 1.0182133913040161, 0.9119578003883362, -0.8645069003105164, -0.2528100311756134, 0.44478246569633484, 0.16245520114898682, -0.6150732040405273, -0.31499433517456055, 0.44626584649086, -0.19241882860660553, -0.5867784023284912, 0.4120122492313385, 0.2507774531841278, -0.014604879543185234, -0.024927210062742233, -0.15344743430614471, -0.28666380047798157, 0.11857037991285324, 0.7969560623168945, 0.11751237511634827, -0.8350693583488464, -0.3464124798774719, -0.21519529819488525, 0.017769020050764084, 0.22165949642658234, 0.4317169189453125, -0.4668043255805969, 0.3138480484485626, 0.31036025285720825, 0.15488870441913605, 0.7223658561706543, 0.10330116003751755, 0.2872483432292938, -0.8144044876098633, 0.08753680437803268, -0.06487035006284714, 0.4570558965206146, 0.21371352672576904, -0.3718244433403015, 0.5323842167854309, 0.20420250296592712, -0.3044579327106476, -0.6036012172698975, 0.06998877972364426, -1.371957540512085, -0.10567563772201538, 1.1203497648239136, -0.21438519656658173, -0.17951838672161102, -0.3031749129295349, -0.36312437057495117, 0.173292875289917, -0.5763451457023621, 0.5781821608543396, 0.8681424856185913, -0.3831132650375366, 0.043903376907110214, -0.4907103478908539, 0.6487246155738831, 0.06992775201797485, -0.9457589387893677, 0.10980299115180969, 0.5584154725074768, 0.4390249252319336, 0.506260871887207, 1.0495871305465698, -0.13074921071529388, -0.00832214206457138, 0.12178948521614075, 0.06126009300351143, 0.055311158299446106, -0.2970746159553528, 0.031234219670295715, 0.1265576034784317, -0.2516518235206604, -0.23459231853485107 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
gmnlp/tico19
gmnlp
2021-10-03T19:00:13Z
5,669
1
null
[ "region:us" ]
2021-10-03T19:00:13Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
The TICO-19 evaluation set provides: * Predefined dev and test splits. We provide English-XX translation files under both the `dev` and `test` directories. * The dev set includes 971 sentences, and the test set includes 2100 sentences. * The corresponding IDs are listed in the `dev.ids` and `test.ids` files. The format of the files is: ~~~ {sourceLang}\t{targetLang}\t{sourceString}\t{targetString}\t{stringID}\t{sourceURL}\t{license}\t{translator_ID} ~~~ Currently available languages: * Amharic (am) * Arabic (ar) * Bengali (bn) * Kurdish Sorani (ckb) * Latin American Spanish (es-LA) * Farsi (fa) * French (fr) * Nigerian Fulfulde (fuv) * Hausa (ha) * Hindi (hi) * Indonesian (id) * Kurdish Kurmanji (ku) * Lingala (ln) * Luganda (lg) * Marathi (mr) * Malay (ms) * Muanmar (my) * Nepali (ne) * Oromo (om) * Dari (prs) * Pashto (ps) * Brazilian Portuguese (pt-BR) * Russian (ru) * Kinyarwanda (rw) * Somali (so) * kiSwahili (sw) * Ethiopian Tigrinya (ti) * Tagalog (tl) * Urdu (ur) * Chinese (Simplified) (zh) * Zulu (zu) All translations are released under a CC-0 license.
[ -0.44134604930877686, -0.4891270399093628, 0.2146977037191391, 0.6697919964790344, -0.5310076475143433, 0.5198093056678772, -0.44076085090637207, -0.38765496015548706, 0.24971771240234375, 0.3693767488002777, -0.4035402834415436, -0.5638712644577026, -0.5689785480499268, 0.8069552779197693, -0.3090050518512726, 1.3569817543029785, -0.14314515888690948, 0.07377362251281738, 0.22505012154579163, -0.2855542302131653, -0.34266096353530884, 0.21280911564826965, -0.5994314551353455, 0.015086473897099495, 0.5766667723655701, 0.6589497327804565, 0.83282870054245, 0.5788283944129944, 0.4852598011493683, 0.36644598841667175, -0.1703166514635086, 0.12268732488155365, -0.06031076982617378, -0.11165804415941238, -0.2011038213968277, -0.274329274892807, -0.4758148193359375, 0.06494671106338501, 0.7323208451271057, 0.2844799757003784, 0.05450436845421791, 0.21820272505283356, -0.2838570773601532, 0.4173426330089569, -0.6474160552024841, 0.04070983827114105, -0.1933727115392685, 0.14321449398994446, -0.24095891416072845, 0.1413234919309616, -0.5271095037460327, -0.4632680118083954, -0.18734945356845856, -0.5879017114639282, -0.12919114530086517, -0.11465323716402054, 1.2434799671173096, -0.03700689226388931, -0.7954782843589783, -0.2742307186126709, -0.36610904335975647, 0.7692151665687561, -0.684485912322998, 0.5442497134208679, 0.5016849040985107, 0.17463268339633942, 0.0047849188558757305, -0.728233814239502, -0.3765123784542084, 0.12970557808876038, -0.08299173414707184, 0.36495667695999146, 0.06522394716739655, 0.11785248667001724, 0.2831174433231354, 1.0486173629760742, -0.5533311367034912, -0.07391559332609177, -0.7435914874076843, -0.24521753191947937, 1.0399070978164673, 0.09566313028335571, 0.7241091132164001, -0.32270365953445435, -0.21203123033046722, -0.2956693768501282, -0.4252968430519104, -0.00932773482054472, 0.5337562561035156, 0.25686389207839966, -0.7434276938438416, 0.7962228059768677, -0.10950691252946854, 0.7223519682884216, 0.014851304702460766, -0.17967240512371063, 0.5488119125366211, -1.0868539810180664, -0.3314216434955597, -0.35164937376976013, 1.2887482643127441, 0.27714160084724426, 0.21805906295776367, -0.2978367805480957, -0.4151885509490967, -0.1240735575556755, 0.14541782438755035, -0.8334811925888062, 0.20265768468379974, 0.35730448365211487, -0.1509750485420227, -0.6074967980384827, 0.0614280179142952, -1.0747215747833252, -0.27509769797325134, 0.14921565353870392, 0.19342747330665588, -0.6483263373374939, -0.36770713329315186, -0.09312128275632858, -0.2048010528087616, 0.7364146113395691, -0.019143570214509964, -0.7438971400260925, 0.4211173951625824, 0.5224588513374329, 0.9048998951911926, -0.4863511323928833, -0.4904446601867676, -0.8463454842567444, -0.3684592843055725, -0.5859023928642273, 0.5914547443389893, -0.58453768491745, -0.8151006698608398, 0.36348435282707214, 0.5576739311218262, -0.04221638664603233, -0.38250866532325745, 1.0635530948638916, -0.27012109756469727, 0.2395549863576889, -0.5388078689575195, 0.16298344731330872, -0.0021493739914149046, 0.2875196933746338, -0.6359397768974304, 1.4963889122009277, 0.3415954113006592, -0.7155824303627014, 0.18272008001804352, -0.8349462747573853, -0.9089286923408508, 0.2407454550266266, -0.2554713487625122, -0.3964308500289917, 0.2297549992799759, 0.037242356687784195, -0.06614108383655548, -0.5030897855758667, 0.33227625489234924, 0.1357794553041458, -0.5537330508232117, -0.057712018489837646, -0.04615074023604393, 1.5192627906799316, 0.6509029269218445, -0.551527738571167, 0.31420159339904785, -0.7469524145126343, 0.11042118817567825, 0.05401812121272087, -0.3113504946231842, -0.02934015542268753, -0.5290639996528625, 0.39277395606040955, 0.3824003338813782, 0.16883914172649384, -0.9784209132194519, 0.25124606490135193, -0.6212102174758911, 0.4902576506137848, 0.6503387689590454, -0.020795481279492378, 0.4295728802680969, -0.07242964953184128, 1.2597695589065552, 0.19648784399032593, 0.4044489562511444, 0.09972604364156723, -0.5576698780059814, -0.9235743284225464, 0.04841333255171776, 0.4348011016845703, 0.7832236289978027, -1.0909265279769897, 0.3404175341129303, -0.36131221055984497, -0.5490342974662781, -0.6791475415229797, -0.0918671265244484, 0.9217578768730164, 0.11211768537759781, 0.034754469990730286, -0.0640830546617508, -0.6024385094642639, -1.0386567115783691, -0.09029699116945267, 0.02018442004919052, 0.4113708734512329, 0.08239594101905823, 1.0136628150939941, -0.23958973586559296, 0.39531511068344116, -0.5484963655471802, -0.20696058869361877, -0.21993573009967804, -0.27563756704330444, 0.12901227176189423, 0.2237206995487213, 0.7650243043899536, -0.8989921808242798, -0.8449053168296814, 0.5860403180122375, -0.4154968559741974, 0.00027593367849476635, 0.22930237650871277, -0.029083508998155594, 0.33788514137268066, 0.15879039466381073, -0.3051873445510864, 0.5808843970298767, 0.9328582286834717, -0.6050261855125427, 0.6111590266227722, -0.40010780096054077, 0.42405951023101807, -1.7899762392044067, -0.13378441333770752, -0.2427702099084854, -0.24609887599945068, -0.07230653613805771, 0.31979116797447205, 0.13429702818393707, -0.18616768717765808, -0.7674498558044434, 0.8213249444961548, -0.6607218384742737, -0.19871953129768372, 0.030364708974957466, 0.3538740873336792, 0.1357809156179428, 0.21465054154396057, -0.30924269556999207, 1.6082345247268677, 0.5325852632522583, -0.44786781072616577, 0.40995246171951294, 0.5047819018363953, -0.30241841077804565, 0.49836215376853943, -0.8530412912368774, 0.2054380178451538, 0.21139203011989594, -0.030330950394272804, -0.7513706088066101, -0.34866464138031006, 0.2550191283226013, -0.5954686403274536, 0.021908540278673172, -0.05443166568875313, -0.557235062122345, -0.23691372573375702, -0.5289784669876099, 0.4067179262638092, 0.4229370653629303, -0.37516510486602783, 0.5655619502067566, 0.33429208397865295, 0.03110066056251526, -0.9722418189048767, -1.196566104888916, 0.26418453454971313, -0.13977614045143127, -0.3527647852897644, 0.23078486323356628, -0.4499523341655731, -0.2541382908821106, 0.12516477704048157, 0.08541543036699295, -0.3094043731689453, 0.13476212322711945, 0.47649458050727844, 0.13675056397914886, -0.05645852908492088, -0.047138504683971405, 0.24583138525485992, 0.2145184427499771, -0.2746536433696747, -0.014765753410756588, 0.623859703540802, -0.5835921168327332, 0.1600196361541748, -0.011555109173059464, 0.37231045961380005, 0.46848681569099426, -1.0186235904693604, 0.6511532068252563, 0.9676306843757629, -0.43124836683273315, -0.10080303996801376, -0.2326299101114273, 0.3573770225048065, -0.49866363406181335, 0.3219808042049408, -0.8718451261520386, -0.7381658554077148, 0.9966328740119934, 0.24621719121932983, 0.15337367355823517, 0.8407689332962036, 0.639462411403656, 0.2721453011035919, 0.6090121269226074, 0.3973953127861023, 0.30391040444374084, 0.5786228775978088, -0.51983243227005, 0.2712896466255188, -1.008244276046753, -0.2893276810646057, -0.7638607621192932, 0.022825580090284348, -1.0416828393936157, -0.20499007403850555, 0.14807440340518951, -0.030424002557992935, -0.16125552356243134, 0.7447551488876343, -0.5710145831108093, 0.9864345192909241, 0.3709279000759125, -0.031196273863315582, 0.36740705370903015, -0.06468763202428818, -0.5532636642456055, 0.11984191089868546, -0.30582135915756226, -0.39276406168937683, 1.2326140403747559, 0.05383947864174843, 0.16566087305545807, 0.44357362389564514, 0.8774639964103699, 0.32672977447509766, 0.22852084040641785, -1.0280710458755493, 0.5780187845230103, -0.5154440402984619, -0.7179552316665649, -0.11302898079156876, -0.16081707179546356, -0.9777683019638062, -0.14115634560585022, 0.1780797392129898, -0.6114650368690491, 0.23281416296958923, -0.5453380942344666, -0.3451995551586151, 0.019852643832564354, -0.965903639793396, 1.185891032218933, -0.2099701464176178, -0.1419762223958969, -0.04813867434859276, -0.5079634189605713, 0.5141288042068481, -0.28461527824401855, 0.1811719834804535, -0.05750560387969017, -0.23483972251415253, 0.8959270715713501, -0.4882793724536896, 0.25314369797706604, 0.05004403367638588, -0.025613727048039436, 0.2048148214817047, 0.06868679076433182, 0.3620683550834656, 0.5045216679573059, -0.4042491316795349, 0.011565367691218853, 0.6101089715957642, -0.4187624454498291, -0.24439343810081482, 0.8674230575561523, -0.9356765151023865, -0.3458673059940338, -1.014962077140808, -0.7434836030006409, 0.028170084580779076, 0.8318707346916199, 0.559171736240387, 0.4254808723926544, -0.1379566788673401, 0.35104307532310486, 0.3756311535835266, -0.4259512722492218, 0.6279794573783875, 0.38439449667930603, -0.512057363986969, -0.8949865102767944, 0.6236958503723145, 0.02357655204832554, 0.2474382370710373, 0.024379311129450798, 0.18688389658927917, -0.43890297412872314, -0.8178123831748962, -0.6119694113731384, 0.35740727186203003, -0.6084054708480835, -0.3628123104572296, -0.29366692900657654, -0.27746427059173584, -0.6200394630432129, 0.006064037326723337, -0.4648720920085907, -0.28459489345550537, 0.14547739923000336, -0.2818277180194855, 0.4641473591327667, 0.8363059759140015, 0.08977091312408447, 0.48172685503959656, -0.693004846572876, 0.2933286726474762, -0.21034516394138336, 0.6674425005912781, -0.6562386155128479, -0.6791895627975464, -0.45296433568000793, 0.21957851946353912, -0.2758033275604248, -1.1177767515182495, 0.3403100073337555, 0.2858153283596039, 0.20093859732151031, 0.20024438202381134, 0.3418561816215515, 0.7735506296157837, -0.4108685851097107, 1.1119741201400757, 0.04344838485121727, -1.011826992034912, 0.8158887624740601, -0.4058716595172882, 0.2624759078025818, 0.9615767002105713, 0.35796964168548584, -0.6620798707008362, -0.2685767412185669, -0.6851956248283386, -0.4544293284416199, 0.8311570882797241, 0.20080770552158356, 0.1597306877374649, -0.43650466203689575, 0.20783275365829468, -0.06392131745815277, -0.10465173423290253, -0.6250460147857666, -0.28316187858581543, 0.07446611672639847, -0.27489912509918213, -0.06668876111507416, -0.19855216145515442, -0.36125150322914124, -0.3877978026866913, 0.7215060591697693, 0.005243953783065081, -0.06409524381160736, 0.3090933859348297, -0.03233335167169571, 0.056689195334911346, 0.48759159445762634, 0.8893461227416992, 0.6071411967277527, -0.4363228976726532, -0.028699131682515144, 0.1114422008395195, -1.0031852722167969, 0.31132930517196655, 0.026731297373771667, -0.2726759910583496, 0.10943564027547836, 0.11565755307674408, 0.8815456032752991, -0.1477012187242508, -0.8936980962753296, 0.6924763917922974, -0.3954940438270569, -0.056773580610752106, -0.8339613080024719, -0.23445013165473938, 0.06031005084514618, 0.12779884040355682, 0.007985427975654602, -0.10100270062685013, 0.11798787862062454, -0.7739332914352417, 0.2010125368833542, 0.138254776597023, -0.4783482849597931, -0.5796352624893188, 0.5065858960151672, 0.362053781747818, -0.4744546115398407, 0.9141023755073547, -0.6862638592720032, -0.4173518121242523, 0.6219664216041565, 0.5341107249259949, 1.3587359189987183, -0.39422041177749634, 0.45766928791999817, 0.5576304197311401, 0.5729583501815796, 0.15536707639694214, 0.8481786251068115, 0.0898854210972786, -0.643048107624054, -0.5493506193161011, -0.8646785616874695, -0.2656969726085663, -0.04772907495498657, -0.7563982605934143, 0.7089672684669495, -0.38672691583633423, -0.16838699579238892, -0.03468477725982666, 0.2835513651371002, -0.7811034917831421, 0.3377940058708191, -0.23801809549331665, 1.0822523832321167, -1.0783482789993286, 1.1794301271438599, 1.0764083862304688, -1.0034003257751465, -0.8621314167976379, -0.15686598420143127, -0.37776708602905273, -0.6734204292297363, 0.6442723274230957, -0.09494836628437042, -0.0163700133562088, 0.08043169230222702, -0.05657406523823738, -0.5940983891487122, 1.0369913578033447, 0.3974495232105255, -0.23440635204315186, 0.005249811802059412, 0.26346078515052795, 0.6057573556900024, -0.5051873922348022, 0.49295130372047424, 0.661235511302948, 0.6192890405654907, -0.07360149919986725, -1.3499723672866821, -0.04126342013478279, -0.7252460718154907, -0.17976082861423492, 0.37343931198120117, -0.7640685439109802, 0.7323805093765259, -0.371330589056015, -0.30916082859039307, 0.0289468951523304, 0.17848153412342072, 0.248636394739151, 0.10836821049451828, 0.5359590649604797, 0.6891027688980103, 0.3903389871120453, -0.5635384917259216, 1.3532085418701172, -0.3274853527545929, 0.321508526802063, 1.1264688968658447, 0.10846543312072754, 0.9321668744087219, 0.5418099761009216, -0.44779935479164124, 0.3209410309791565, 1.0253283977508545, -0.0997757613658905, 0.3252556324005127, -0.10480139404535294, 0.033605288714170456, 0.014981971122324467, -0.9029398560523987, -0.34854981303215027, 0.6307480335235596, 0.19076821208000183, -0.38489285111427307, -0.02430456504225731, 0.04650164768099785, 0.35089507699012756, 0.03838995471596718, -0.02009550668299198, 0.45778778195381165, -0.033898402005434036, -0.828540563583374, 0.7702021598815918, 0.06499027460813522, 0.5489001870155334, -0.5384297370910645, 0.10826917737722397, -0.6852455139160156, -0.052476830780506134, -0.3999442160129547, -1.0462716817855835, 0.6407840251922607, 0.16138480603694916, -0.014259750954806805, -0.3152099847793579, 0.2672968804836273, -0.4365663230419159, -0.66825932264328, 0.4128672778606415, 0.40177586674690247, 0.285733163356781, 0.06258898228406906, -0.5670254230499268, 0.4774973392486572, 0.28016120195388794, -0.01459735818207264, 0.06892260164022446, 0.4017612934112549, -0.3213931620121002, 0.34514710307121277, 0.25390928983688354, 0.2607272267341614, 0.36544695496559143, 0.11318246275186539, 0.6482782959938049, -0.6960505843162537, -0.365293949842453, -0.5251243710517883, 0.656120777130127, -0.13805943727493286, -0.8518864512443542, 0.765796422958374, 1.1471115350723267, 1.0307077169418335, -0.25951477885246277, 0.6299149990081787, -0.4306087791919708, -0.01832146942615509, -0.07723741233348846, 0.5202370882034302, -0.8644469976425171, -0.13231191039085388, -0.021679425612092018, -1.0225274562835693, -0.17423680424690247, 0.08215057104825974, -0.4013589024543762, -0.14326083660125732, 1.0940238237380981, 0.36996951699256897, -0.04462480917572975, -0.23836442828178406, 0.3209754526615143, 0.10597220808267593, 0.2652091085910797, 0.7320276498794556, 0.5082178711891174, -1.221695065498352, 0.8484485149383545, -0.7913995385169983, 0.016436144709587097, 0.26106032729148865, -0.6801084280014038, -0.8748981356620789, -0.8323928713798523, -0.5019873380661011, -0.5742238163948059, -0.050446443259716034, 0.9117260575294495, 0.3559792935848236, -0.913917601108551, -0.2924339175224304, 0.0645378828048706, 0.22616811096668243, -0.11463256925344467, -0.16738279163837433, 0.6062591671943665, -0.12652534246444702, -1.268614411354065, 0.5770094990730286, 0.27469831705093384, -0.0956854447722435, -0.13879212737083435, -0.4220231771469116, -0.46530425548553467, -0.09508141130208969, 0.5082798600196838, 0.23039360344409943, -0.9126622080802917, -0.10040589421987534, 0.21807031333446503, -0.149165540933609, 0.11353599280118942, 0.3046083152294159, -0.32270121574401855, 0.6345642805099487, 0.8221043944358826, 0.602141261100769, 0.2679334580898285, -0.1544867604970932, 0.4966622292995453, -0.7036194801330566, 0.737314760684967, 0.3354669511318207, 0.2549668252468109, 0.13186129927635193, -0.0896233320236206, 1.099922776222229, 0.17736434936523438, -0.32404422760009766, -1.2266765832901, 0.11176101863384247, -1.4147334098815918, 0.356471985578537, 1.382393717765808, -0.3555509150028229, -0.41223785281181335, 0.1339903175830841, -0.1132265031337738, 0.42836523056030273, -0.28749099373817444, 0.37959548830986023, 0.944083034992218, 0.42264047265052795, -0.3585011661052704, -0.8046364784240723, 0.559187114238739, 0.35749974846839905, -1.1634211540222168, -0.20509617030620575, 0.16861961781978607, 0.2913578450679779, 0.31050246953964233, 0.6050567626953125, -0.6618769764900208, 0.5256703495979309, -0.016931425780057907, 0.31230729818344116, -0.16963393986225128, -0.20204637944698334, -0.34923529624938965, -0.39598435163497925, 0.23220834136009216, -0.5987908840179443 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
PolyAI/minds14
PolyAI
2023-04-12T12:08:02Z
5,627
35
null
[ "task_categories:automatic-speech-recognition", "task_ids:keyword-spotting", "annotations_creators:expert-generated", "annotations_creators:crowdsourced", "annotations_creators:machine-generated", "language_creators:crowdsourced", "language_creators:expert-generated", "multilinguality:multilingual", "size_categories:10K<n<100K", "language:en", "language:fr", "language:it", "language:es", "language:pt", "language:de", "language:nl", "language:ru", "language:pl", "language:cs", "language:ko", "language:zh", "license:cc-by-4.0", "arxiv:2104.08524", "region:us" ]
2023-04-12T12:08:02Z
2022-04-05T07:46:13.000Z
2022-04-05T07:46:13
--- annotations_creators: - expert-generated - crowdsourced - machine-generated language_creators: - crowdsourced - expert-generated language: - en - fr - it - es - pt - de - nl - ru - pl - cs - ko - zh language_bcp47: - en - en-GB - en-US - en-AU - fr - it - es - pt - de - nl - ru - pl - cs - ko - zh license: - cc-by-4.0 multilinguality: - multilingual pretty_name: 'MInDS-14' size_categories: - 10K<n<100K task_categories: - automatic-speech-recognition - speech-processing task_ids: - speech-recognition - keyword-spotting --- # MInDS-14 ## Dataset Description - **Fine-Tuning script:** [pytorch/audio-classification](https://github.com/huggingface/transformers/tree/main/examples/pytorch/audio-classification) - **Paper:** [Multilingual and Cross-Lingual Intent Detection from Spoken Data](https://arxiv.org/abs/2104.08524) - **Total amount of disk used:** ca. 500 MB MINDS-14 is training and evaluation resource for intent detection task with spoken data. It covers 14 intents extracted from a commercial system in the e-banking domain, associated with spoken examples in 14 diverse language varieties. ## Example MInDS-14 can be downloaded and used as follows: ```py from datasets import load_dataset minds_14 = load_dataset("PolyAI/minds14", "fr-FR") # for French # to download all data for multi-lingual fine-tuning uncomment following line # minds_14 = load_dataset("PolyAI/all", "all") # see structure print(minds_14) # load audio sample on the fly audio_input = minds_14["train"][0]["audio"] # first decoded audio sample intent_class = minds_14["train"][0]["intent_class"] # first transcription intent = minds_14["train"].features["intent_class"].names[intent_class] # use audio_input and language_class to fine-tune your model for audio classification ``` ## Dataset Structure We show detailed information the example configurations `fr-FR` of the dataset. All other configurations have the same structure. ### Data Instances **fr-FR** - Size of downloaded dataset files: 471 MB - Size of the generated dataset: 300 KB - Total amount of disk used: 471 MB An example of a datainstance of the config `fr-FR` looks as follows: ``` { "path": "/home/patrick/.cache/huggingface/datasets/downloads/extracted/3ebe2265b2f102203be5e64fa8e533e0c6742e72268772c8ac1834c5a1a921e3/fr-FR~ADDRESS/response_4.wav", "audio": { "path": "/home/patrick/.cache/huggingface/datasets/downloads/extracted/3ebe2265b2f102203be5e64fa8e533e0c6742e72268772c8ac1834c5a1a921e3/fr-FR~ADDRESS/response_4.wav", "array": array( [0.0, 0.0, 0.0, ..., 0.0, 0.00048828, -0.00024414], dtype=float32 ), "sampling_rate": 8000, }, "transcription": "je souhaite changer mon adresse", "english_transcription": "I want to change my address", "intent_class": 1, "lang_id": 6, } ``` ### Data Fields The data fields are the same among all splits. - **path** (str): Path to the audio file - **audio** (dict): Audio object including loaded audio array, sampling rate and path ot audio - **transcription** (str): Transcription of the audio file - **english_transcription** (str): English transcription of the audio file - **intent_class** (int): Class id of intent - **lang_id** (int): Id of language ### Data Splits Every config only has the `"train"` split containing of *ca.* 600 examples. ## Dataset Creation [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information All datasets are licensed under the [Creative Commons license (CC-BY)](https://creativecommons.org/licenses/). ### Citation Information ``` @article{DBLP:journals/corr/abs-2104-08524, author = {Daniela Gerz and Pei{-}Hao Su and Razvan Kusztos and Avishek Mondal and Michal Lis and Eshan Singhal and Nikola Mrksic and Tsung{-}Hsien Wen and Ivan Vulic}, title = {Multilingual and Cross-Lingual Intent Detection from Spoken Data}, journal = {CoRR}, volume = {abs/2104.08524}, year = {2021}, url = {https://arxiv.org/abs/2104.08524}, eprinttype = {arXiv}, eprint = {2104.08524}, timestamp = {Mon, 26 Apr 2021 17:25:10 +0200}, biburl = {https://dblp.org/rec/journals/corr/abs-2104-08524.bib}, bibsource = {dblp computer science bibliography, https://dblp.org} } ``` ### Contributions Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten) for adding this dataset
[ -0.46738189458847046, -0.5980510711669922, 0.36973637342453003, 0.2669966518878937, -0.12211816012859344, -0.34158211946487427, -0.5432058572769165, -0.3907387852668762, 0.32248517870903015, 0.45334866642951965, -0.7834721803665161, -0.9560456871986389, -0.5506324172019958, 0.09728632122278214, -0.031688425689935684, 1.0298489332199097, 0.07343360781669617, -0.051349490880966187, -0.08145434409379959, -0.3467664122581482, -0.4866773188114166, -0.25456100702285767, -0.7218309044837952, -0.12550950050354004, 0.17980322241783142, 0.590265691280365, 0.2779315710067749, 0.5764219760894775, 0.4304225742816925, 0.3320138156414032, -0.0688147321343422, -0.0502401702105999, -0.24174770712852478, 0.02704535610973835, 0.07931075990200043, -0.4043106436729431, -0.5925926566123962, 0.08428905159235, 0.6103527545928955, 0.4370274543762207, -0.179024338722229, 0.4072629511356354, -0.1545833945274353, 0.7514227628707886, -0.2465585619211197, 0.3210493326187134, -0.3789907693862915, -0.18384182453155518, -0.34397128224372864, -0.2905353009700775, -0.28089675307273865, -0.360521137714386, 0.28002965450286865, -0.6115665435791016, 0.2791115939617157, 0.09023184329271317, 0.9083728790283203, 0.22182215750217438, -0.11296922713518143, -0.4502142667770386, -0.5148854851722717, 0.8451808094978333, -0.8501988649368286, 0.4572695195674896, 0.607663094997406, 0.16166722774505615, -0.17360572516918182, -0.5022289752960205, -0.6144219040870667, 0.10788051038980484, -0.013747269287705421, 0.11106354743242264, -0.06943047791719437, -0.0875268206000328, 0.40952959656715393, 0.5434391498565674, -0.6592279076576233, -0.2800111174583435, -0.4958488345146179, -0.40415504574775696, 1.0646612644195557, -0.033408354967832565, 0.47429946064949036, -0.2507812976837158, -0.017986822873353958, -0.5667175650596619, -0.27330681681632996, 0.4071738123893738, 0.7024990916252136, 0.5175545811653137, -0.7323384881019592, 0.4576379060745239, -0.21345911920070648, 0.574624240398407, 0.2595592737197876, -0.33805927634239197, 0.9009144306182861, -0.35313576459884644, -0.20131804049015045, 0.3967440128326416, 1.1077907085418701, 0.3601859509944916, 0.029601451009511948, 0.21738305687904358, 0.15712431073188782, 0.016505734995007515, -0.11365950852632523, -0.7070614695549011, -0.31847336888313293, 0.7198736667633057, -0.5145803093910217, -0.17389370501041412, 0.0411706380546093, -0.7833555340766907, -0.07926749438047409, -0.3425067663192749, 0.243438720703125, -0.5625741481781006, -0.42635273933410645, 0.6188819408416748, -0.16713713109493256, 0.24724560976028442, 0.10087109357118607, -0.8037759065628052, 0.23291398584842682, 0.4781586527824402, 0.7092834711074829, 0.012875082902610302, -0.31890344619750977, -0.27361515164375305, -0.005735646467655897, 0.11351049691438675, 0.6973990797996521, -0.26695942878723145, -0.38850417733192444, -0.23737598955631256, 0.29086798429489136, -0.20222866535186768, -0.4101417660713196, 1.0613090991973877, -0.0687306672334671, 0.5547813177108765, -0.3383100926876068, -0.4041374623775482, -0.33770644664764404, 0.10590168088674545, -0.7444421052932739, 1.1183255910873413, 0.040955185890197754, -0.7165093421936035, 0.4138607084751129, -0.9080520868301392, -0.5447918772697449, -0.04753286391496658, -0.10825683176517487, -0.7255027890205383, -0.35472095012664795, 0.23101645708084106, 0.5366638898849487, -0.2049947828054428, 0.3181297481060028, -0.27140292525291443, -0.15659856796264648, 0.2875458300113678, -0.2367883026599884, 1.310003399848938, 0.015446027740836143, -0.41470280289649963, 0.17733442783355713, -1.0078896284103394, -0.14185678958892822, 0.19312383234500885, -0.4943801164627075, -0.3204268515110016, -0.17598283290863037, 0.25783708691596985, 0.341979444026947, 0.12461662292480469, -0.7867662906646729, 0.15301384031772614, -0.26534783840179443, 0.19730961322784424, 0.6779961585998535, -0.07322603464126587, 0.4501148462295532, -0.5404459834098816, 0.17165304720401764, 0.0500284805893898, 0.2708267867565155, 0.08440758287906647, -0.5922391414642334, -0.49709537625312805, -0.3973691463470459, 0.21358393132686615, 0.6012272238731384, -0.2589039206504822, 0.7238293886184692, -0.5978392958641052, -0.5484166741371155, -0.9140757322311401, 0.07572029531002045, 0.2596370577812195, 0.42966580390930176, 0.4987534284591675, -0.3696308732032776, -0.6640326976776123, -0.6484626531600952, -0.2543294131755829, -0.10224830359220505, 0.05975734442472458, 0.8290466070175171, 0.44018009305000305, -0.29184842109680176, 0.801171064376831, -0.4945966899394989, -0.6299915909767151, -0.25386592745780945, -0.06200321763753891, 0.436697393655777, 0.6904686093330383, 0.5730113983154297, -0.9815280437469482, -0.5156485438346863, -0.17402438819408417, -0.5725395083427429, -0.1853194385766983, -0.1715354174375534, -0.21382130682468414, 0.1290605366230011, 0.2592531442642212, -0.6683633327484131, 0.3900434672832489, 0.4396798014640808, -0.5688561797142029, 0.5032030344009399, 0.04193238914012909, 0.26458755135536194, -1.012136697769165, 0.011246096342802048, 0.05517258495092392, 0.06903662532567978, -0.5649099946022034, -0.6758460402488708, -0.20626091957092285, 0.2402125746011734, -0.4578920900821686, 0.5872069001197815, -0.4008471965789795, -0.07400206476449966, 0.13004961609840393, 0.07452640682458878, -0.07816997170448303, 0.7279765605926514, 0.16022491455078125, 0.48964354395866394, 0.8400863409042358, -0.7834340929985046, 0.5031335949897766, 0.6432424783706665, -0.44032615423202515, 0.6231474876403809, -0.5409147143363953, 0.1294037401676178, -0.0434427373111248, 0.3859187960624695, -0.961641788482666, -0.3374423682689667, 0.6893429160118103, -0.7311888933181763, 0.22682300209999084, -0.3956885039806366, -0.3649488091468811, -0.3295974135398865, -0.31901559233665466, 0.38021573424339294, 0.2532157003879547, -0.401348352432251, 0.7731544971466064, 0.5797955393791199, -0.15067853033542633, -0.45078974962234497, -0.8209898471832275, -0.23512472212314606, -0.315041184425354, -0.7710866928100586, 0.47306767106056213, -0.31588974595069885, -0.03260502219200134, 0.029660802334547043, -0.08800569921731949, 0.1545163094997406, -0.2749519348144531, 0.24275827407836914, 0.2023930549621582, -0.03339163959026337, 0.016110828146338463, 0.003331936663016677, -0.13845974206924438, 0.09772878885269165, -0.28767120838165283, 0.5859575271606445, -0.21991024911403656, -0.31802088022232056, -0.6039718389511108, 0.17443065345287323, 0.6209860444068909, -0.2510731816291809, 0.5345747470855713, 0.9800676703453064, -0.11186432093381882, 0.08650761842727661, -0.5160613059997559, -0.04526707902550697, -0.4723886251449585, 0.2580445408821106, -0.33453118801116943, -0.6479584574699402, 0.7064121961593628, 0.1596502661705017, 0.3042832911014557, 0.4761321246623993, 0.4473125636577606, 0.06993597745895386, 0.6981361508369446, 0.2043529450893402, -0.025615345686674118, 0.6328148245811462, -0.5704416632652283, -0.013230742886662483, -1.0275001525878906, -0.43146899342536926, -0.46038705110549927, -0.4081089198589325, -0.763691782951355, -0.3383215665817261, 0.2224293351173401, -0.4148200452327728, -0.13907967507839203, 0.5358463525772095, -0.7363075613975525, 0.15597747266292572, 0.6033012866973877, 0.2835145592689514, 0.041472841054201126, 0.012877381406724453, 0.030149098485708237, 0.1674073338508606, -0.4704075753688812, -0.2422119528055191, 1.351640224456787, 0.3656780421733856, 0.5988940596580505, 0.33268973231315613, 0.7573022246360779, 0.05999356880784035, -0.18055588006973267, -0.787868857383728, 0.5874624252319336, -0.10217839479446411, -0.579525887966156, -0.4611338675022125, -0.4059053957462311, -1.0116755962371826, 0.10823898017406464, -0.12790906429290771, -0.773851752281189, 0.5429176688194275, 0.011055597104132175, -0.28924793004989624, 0.3222106397151947, -0.6746562719345093, 0.9934465289115906, -0.30349618196487427, -0.33417820930480957, 0.0942472442984581, -0.8319094181060791, 0.08795760571956635, 0.29653167724609375, 0.34077176451683044, -0.4289604127407074, 0.27591079473495483, 1.142149567604065, -0.2213822603225708, 0.7550376653671265, -0.46093446016311646, -0.18869422376155853, 0.3673068881034851, -0.23953500390052795, 0.41611841320991516, 0.16650600731372833, -0.10722992569208145, 0.40005195140838623, 0.008570985868573189, -0.2626805603504181, -0.2968299388885498, 0.718539834022522, -0.7471824288368225, -0.17514540255069733, -0.2620771527290344, -0.7728477120399475, -0.08429741114377975, 0.2742738723754883, 0.45665982365608215, 0.5163902044296265, -0.02536517195403576, 0.31137949228286743, 0.9713225364685059, -0.42368003726005554, 0.29386717081069946, 0.4375619888305664, 0.02850200980901718, -0.4457022547721863, 0.8420053720474243, -0.023088984191417694, -0.02301625721156597, 0.3009707033634186, 0.3647803068161011, -0.5256564617156982, -0.37400907278060913, -0.4532359540462494, 0.29510581493377686, -0.5476983189582825, -0.019271504133939743, -0.8862727880477905, 0.08969592303037643, -0.8239679336547852, 0.06806552410125732, -0.42902520298957825, -0.25856226682662964, -0.26755180954933167, -0.09345676004886627, 0.7587005496025085, 0.2089875489473343, -0.34537503123283386, 0.3461020290851593, -0.5723787546157837, 0.49191051721572876, 0.0778060033917427, 0.5663156509399414, -0.36362892389297485, -0.6464663743972778, -0.2595773935317993, 0.1582825481891632, -0.005108061712235212, -0.6766695380210876, 0.34750261902809143, 0.15171661972999573, 0.5389096736907959, 0.12800055742263794, 0.05258629471063614, 0.5523481965065002, -0.20045070350170135, 0.6645016074180603, -0.06083058938384056, -0.7635642886161804, 0.7328606843948364, -0.5351141095161438, 0.3900114893913269, 0.7950474619865417, 0.22967524826526642, -0.6873457431793213, -0.05401948094367981, -0.8336248993873596, -1.012219786643982, 1.1981273889541626, 0.16011396050453186, 0.009934131056070328, 0.2515811622142792, 0.12055830657482147, 0.03558121994137764, 0.06467855721712112, -0.8316944241523743, -0.7419436573982239, -0.1945548802614212, -0.5075616836547852, 0.051277898252010345, -0.056964993476867676, -0.1675248146057129, -0.5355108380317688, 1.0586295127868652, 0.11483249813318253, 0.4782189726829529, 0.46221354603767395, -0.10833505541086197, -0.06001100689172745, 0.3160471022129059, 0.644528329372406, 0.10422395169734955, -0.4884584844112396, -0.2806013524532318, -0.007590024266391993, -0.9256806373596191, 0.12520690262317657, 0.22594308853149414, -0.16983170807361603, 0.17632101476192474, 0.2060500532388687, 1.0451217889785767, 0.17094722390174866, -0.42538973689079285, 0.5581220984458923, -0.38731905817985535, -0.3743784725666046, -0.5160868763923645, 0.08220051974058151, -0.1021835133433342, 0.0879240557551384, 0.24031731486320496, 0.15322357416152954, 0.23390965163707733, -0.3397059738636017, 0.30041125416755676, 0.11153803020715714, -0.29110586643218994, -0.286641925573349, 0.34631475806236267, 0.02634609118103981, -0.18067505955696106, 0.49111926555633545, -0.2181157022714615, -0.45406830310821533, 0.6003090143203735, 0.30289724469184875, 1.0297610759735107, -0.3217651844024658, 0.03507755324244499, 0.7191150188446045, 0.3082256019115448, -0.070372574031353, 0.5133907794952393, -0.21493540704250336, -0.8978114128112793, -0.2678976058959961, -0.6424916386604309, -0.15922799706459045, 0.4507167935371399, -0.7414116859436035, 0.37836214900016785, -0.293578565120697, -0.14408399164676666, 0.15185700356960297, 0.08388129621744156, -0.8163309097290039, 0.19602395594120026, 0.035976916551589966, 0.7843595743179321, -0.9517520070075989, 0.6557924151420593, 0.7820917367935181, -0.33304911851882935, -1.0115467309951782, -0.07044979184865952, 0.22812867164611816, -0.43518057465553284, 0.32397469878196716, 0.10255087167024612, 0.02612781524658203, -0.04497601464390755, -0.5731237530708313, -0.8898426294326782, 1.0785276889801025, 0.11208132654428482, -0.571562647819519, 0.2854156196117401, 0.12643864750862122, 0.3834346532821655, -0.30658841133117676, 0.15696032345294952, 0.7845315933227539, 0.7547242641448975, 0.029510974884033203, -0.8430277109146118, 0.10957649350166321, -0.36842209100723267, -0.45338138937950134, 0.10601488500833511, -0.69405198097229, 0.6721643805503845, -0.16505491733551025, -0.13864050805568695, -0.3118949830532074, 0.5067422389984131, 0.34798502922058105, 0.46976572275161743, 0.5040958523750305, 0.7491798996925354, 0.7478916645050049, -0.3310934901237488, 0.8829540014266968, -0.21912544965744019, 0.40949738025665283, 1.1410688161849976, -0.059738900512456894, 0.47519779205322266, 0.3698270618915558, -0.3537365198135376, 0.6194905042648315, 0.6076810359954834, -0.15853406488895416, 0.598332941532135, 0.022715235128998756, -0.2293897569179535, 0.014103462919592857, 0.07206190377473831, -0.3298598527908325, 0.5909745097160339, 0.49427810311317444, -0.17194251716136932, 0.21611826121807098, 0.13545767962932587, 0.01908048242330551, -0.2816275954246521, -0.09671468287706375, 0.8312168121337891, -0.14511363208293915, -0.4624025821685791, 0.4528583586215973, -0.27624550461769104, 0.969482421875, -0.5982068777084351, 0.10413501411676407, 0.038533926010131836, 0.20598751306533813, -0.49873754382133484, -0.8949748873710632, 0.27266258001327515, -0.1728486567735672, -0.33262506127357483, -0.18879157304763794, 0.6777461171150208, -0.7959490418434143, -0.33688998222351074, 0.3966858386993408, 0.11057592928409576, 0.4398721754550934, 0.11127620190382004, -1.1067695617675781, 0.3896484375, 0.30338266491889954, -0.40359339118003845, 0.09213274717330933, 0.5272225141525269, 0.10148985683917999, 0.5516819357872009, 0.8874661326408386, 0.2384883612394333, 0.005387022625654936, 0.2426670640707016, 0.5764967203140259, -0.6423949003219604, -0.5995482206344604, -0.6070729494094849, 0.5915629863739014, -0.14098979532718658, -0.37900495529174805, 0.728926956653595, 0.7677271962165833, 1.2494615316390991, -0.12657484412193298, 0.961272656917572, -0.5501783490180969, 0.5810140371322632, -0.3770730793476105, 0.6750447154045105, -0.5000542998313904, 0.2972973883152008, -0.6056125164031982, -0.6341798305511475, -0.2258819192647934, 0.7311137914657593, -0.5338444709777832, 0.18908582627773285, 0.4058285355567932, 0.911744236946106, -0.19097281992435455, 0.004002372734248638, -0.03287983685731888, 0.20727375149726868, 0.2516913115978241, 0.5651540756225586, 0.24616408348083496, -0.9465576410293579, 0.6027346253395081, -0.528145968914032, -0.15736347436904907, -0.20508089661598206, -0.6106278896331787, -0.6825979948043823, -0.8648136258125305, -0.6104211211204529, -0.4001837372779846, -0.22698822617530823, 0.9886366128921509, 0.7147880792617798, -0.995476484298706, -0.39992809295654297, -0.008624223992228508, 0.19649603962898254, -0.3320991098880768, -0.3409773111343384, 0.7087098956108093, 0.15463568270206451, -0.8571300506591797, 0.29331377148628235, 0.1395307332277298, 0.19926168024539948, 0.18627752363681793, -0.30389848351478577, -0.5441656708717346, -0.1654605269432068, 0.41013476252555847, 0.37161847949028015, -0.5816543698310852, -0.0631093755364418, -0.0926276445388794, -0.09045173227787018, 0.3148166537284851, 0.46840283274650574, -0.4150015711784363, 0.3487900197505951, 0.5977745652198792, 0.3445633053779602, 0.5696923136711121, -0.16014224290847778, 0.19078485667705536, -0.8098400831222534, 0.249031662940979, 0.07218640297651291, 0.40593960881233215, 0.5858123898506165, -0.6275501251220703, 0.5813039541244507, 0.28440630435943604, -0.5776850581169128, -0.7284228801727295, -0.19180192053318024, -1.4247653484344482, -0.019126391038298607, 1.3288142681121826, 0.0993136391043663, -0.35141512751579285, -0.36097845435142517, -0.5325455665588379, 0.45745038986206055, -0.806145429611206, 0.5375545024871826, 0.6374377012252808, -0.26158469915390015, -0.11492142081260681, -0.5224059820175171, 0.8422409892082214, 0.2529495358467102, -0.748201847076416, 0.22365634143352509, 0.4390469193458557, 0.46969202160835266, 0.3121837079524994, 0.8793825507164001, -0.328767329454422, 0.3740777373313904, -0.12336869537830353, 0.4780532717704773, -0.09440618753433228, -0.16580992937088013, -0.3478110134601593, -0.26694145798683167, -0.4666531980037689, -0.37726446986198425 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
covost2
null
2022-11-18T19:46:56Z
5,580
8
null
[ "task_categories:automatic-speech-recognition", "annotations_creators:expert-generated", "language_creators:crowdsourced", "language_creators:expert-generated", "multilinguality:multilingual", "size_categories:100K<n<1M", "source_datasets:extended|other-common-voice", "language:ar", "language:ca", "language:cy", "language:de", "language:es", "language:et", "language:fa", "language:fr", "language:id", "language:it", "language:ja", "language:lv", "language:mn", "language:nl", "language:pt", "language:ru", "language:sl", "language:sv", "language:ta", "language:tr", "language:zh", "license:cc-by-nc-4.0", "arxiv:2007.10310", "region:us" ]
2022-11-18T19:46:56Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - crowdsourced - expert-generated language: - ar - ca - cy - de - es - et - fa - fr - id - it - ja - lv - mn - nl - pt - ru - sl - sv - ta - tr - zh language_bcp47: - sv-SE - zh-CN license: - cc-by-nc-4.0 multilinguality: - multilingual size_categories: - 100K<n<1M source_datasets: - extended|other-common-voice task_categories: - automatic-speech-recognition task_ids: [] paperswithcode_id: null pretty_name: CoVoST 2 dataset_info: - config_name: en_de features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 110716293 num_examples: 289430 - name: validation num_bytes: 5971731 num_examples: 15531 - name: test num_bytes: 5689684 num_examples: 15531 download_size: 25779505 dataset_size: 122377708 - config_name: en_tr features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 109474265 num_examples: 289430 - name: validation num_bytes: 5914622 num_examples: 15531 - name: test num_bytes: 5619271 num_examples: 15531 download_size: 23659131 dataset_size: 121008158 - config_name: en_fa features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 119490720 num_examples: 289430 - name: validation num_bytes: 6423535 num_examples: 15531 - name: test num_bytes: 6103617 num_examples: 15531 download_size: 26148420 dataset_size: 132017872 - config_name: en_sv-SE features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 108557530 num_examples: 289430 - name: validation num_bytes: 5845918 num_examples: 15531 - name: test num_bytes: 5580039 num_examples: 15531 download_size: 23671482 dataset_size: 119983487 - config_name: en_mn features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 123950136 num_examples: 289430 - name: validation num_bytes: 6693044 num_examples: 15531 - name: test num_bytes: 6293633 num_examples: 15531 download_size: 27527436 dataset_size: 136936813 - config_name: en_zh-CN features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 106490939 num_examples: 289430 - name: validation num_bytes: 5735331 num_examples: 15531 - name: test num_bytes: 5487808 num_examples: 15531 download_size: 24280932 dataset_size: 117714078 - config_name: en_cy features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 109317182 num_examples: 289430 - name: validation num_bytes: 5894579 num_examples: 15531 - name: test num_bytes: 5626428 num_examples: 15531 download_size: 24224499 dataset_size: 120838189 - config_name: en_ca features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 109922455 num_examples: 289430 - name: validation num_bytes: 5924345 num_examples: 15531 - name: test num_bytes: 5623227 num_examples: 15531 download_size: 24167201 dataset_size: 121470027 - config_name: en_sl features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 107987860 num_examples: 289430 - name: validation num_bytes: 5838299 num_examples: 15531 - name: test num_bytes: 5537805 num_examples: 15531 download_size: 23421999 dataset_size: 119363964 - config_name: en_et features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 107707024 num_examples: 289430 - name: validation num_bytes: 5810185 num_examples: 15531 - name: test num_bytes: 5543309 num_examples: 15531 download_size: 23223843 dataset_size: 119060518 - config_name: en_id features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 109456930 num_examples: 289430 - name: validation num_bytes: 5896953 num_examples: 15531 - name: test num_bytes: 5634939 num_examples: 15531 download_size: 22904065 dataset_size: 120988822 - config_name: en_ar features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 116732296 num_examples: 289430 - name: validation num_bytes: 6280190 num_examples: 15531 - name: test num_bytes: 5947069 num_examples: 15531 download_size: 25301304 dataset_size: 128959555 - config_name: en_ta features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 146318684 num_examples: 289430 - name: validation num_bytes: 7944020 num_examples: 15531 - name: test num_bytes: 7411400 num_examples: 15531 download_size: 30037790 dataset_size: 161674104 - config_name: en_lv features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 109532576 num_examples: 289430 - name: validation num_bytes: 5905197 num_examples: 15531 - name: test num_bytes: 5625189 num_examples: 15531 download_size: 24573927 dataset_size: 121062962 - config_name: en_ja features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 114741253 num_examples: 289430 - name: validation num_bytes: 6161930 num_examples: 15531 - name: test num_bytes: 5883608 num_examples: 15531 download_size: 26664247 dataset_size: 126786791 - config_name: fr_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 75792665 num_examples: 207374 - name: validation num_bytes: 5487082 num_examples: 14760 - name: test num_bytes: 5525498 num_examples: 14760 download_size: 7282129 dataset_size: 86805245 - config_name: de_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 47678171 num_examples: 127834 - name: validation num_bytes: 5106253 num_examples: 13511 - name: test num_bytes: 5066500 num_examples: 13511 download_size: 9926797 dataset_size: 57850924 - config_name: es_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 29152515 num_examples: 79015 - name: validation num_bytes: 4974593 num_examples: 13221 - name: test num_bytes: 4983920 num_examples: 13221 download_size: 3202080 dataset_size: 39111028 - config_name: ca_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 35902579 num_examples: 95854 - name: validation num_bytes: 4798435 num_examples: 12730 - name: test num_bytes: 4804941 num_examples: 12730 download_size: 5021926 dataset_size: 45505955 - config_name: it_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 11952709 num_examples: 31698 - name: validation num_bytes: 3393315 num_examples: 8940 - name: test num_bytes: 3412207 num_examples: 8951 download_size: 1691247 dataset_size: 18758231 - config_name: ru_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 5610194 num_examples: 12112 - name: validation num_bytes: 2819414 num_examples: 6110 - name: test num_bytes: 2923961 num_examples: 6300 download_size: 1443078 dataset_size: 11353569 - config_name: zh-CN_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 2791288 num_examples: 7085 - name: validation num_bytes: 1918796 num_examples: 4843 - name: test num_bytes: 1908633 num_examples: 4898 download_size: 587550 dataset_size: 6618717 - config_name: pt_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 3095722 num_examples: 9158 - name: validation num_bytes: 1133404 num_examples: 3318 - name: test num_bytes: 1384251 num_examples: 4023 download_size: 476419 dataset_size: 5613377 - config_name: fa_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 18015738 num_examples: 53949 - name: validation num_bytes: 1241531 num_examples: 3445 - name: test num_bytes: 1263271 num_examples: 3445 download_size: 3864623 dataset_size: 20520540 - config_name: et_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 808508 num_examples: 1782 - name: validation num_bytes: 690694 num_examples: 1576 - name: test num_bytes: 685375 num_examples: 1571 download_size: 246569 dataset_size: 2184577 - config_name: mn_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 900588 num_examples: 2067 - name: validation num_bytes: 765543 num_examples: 1761 - name: test num_bytes: 762577 num_examples: 1759 download_size: 189710 dataset_size: 2428708 - config_name: nl_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 2468140 num_examples: 7108 - name: validation num_bytes: 594458 num_examples: 1699 - name: test num_bytes: 594979 num_examples: 1699 download_size: 543795 dataset_size: 3657577 - config_name: tr_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 1391148 num_examples: 3966 - name: validation num_bytes: 566458 num_examples: 1624 - name: test num_bytes: 570760 num_examples: 1629 download_size: 280904 dataset_size: 2528366 - config_name: ar_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 743065 num_examples: 2283 - name: validation num_bytes: 575077 num_examples: 1758 - name: test num_bytes: 552356 num_examples: 1695 download_size: 109802 dataset_size: 1870498 - config_name: sv-SE_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 698800 num_examples: 2160 - name: validation num_bytes: 438319 num_examples: 1349 - name: test num_bytes: 517738 num_examples: 1595 download_size: 96161 dataset_size: 1654857 - config_name: lv_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 747290 num_examples: 2337 - name: validation num_bytes: 360941 num_examples: 1125 - name: test num_bytes: 519183 num_examples: 1629 download_size: 88836 dataset_size: 1627414 - config_name: sl_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 602420 num_examples: 1843 - name: validation num_bytes: 165977 num_examples: 509 - name: test num_bytes: 115414 num_examples: 360 download_size: 58445 dataset_size: 883811 - config_name: ta_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 534564 num_examples: 1358 - name: validation num_bytes: 150428 num_examples: 384 - name: test num_bytes: 303843 num_examples: 786 download_size: 55659 dataset_size: 988835 - config_name: ja_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 396334 num_examples: 1119 - name: validation num_bytes: 226054 num_examples: 635 - name: test num_bytes: 241310 num_examples: 684 download_size: 54666 dataset_size: 863698 - config_name: id_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 406989 num_examples: 1243 - name: validation num_bytes: 259134 num_examples: 792 - name: test num_bytes: 277053 num_examples: 844 download_size: 51755 dataset_size: 943176 - config_name: cy_en features: - name: client_id dtype: string - name: file dtype: string - name: sentence dtype: string - name: translation dtype: string - name: id dtype: string splits: - name: train num_bytes: 432071 num_examples: 1241 - name: validation num_bytes: 236107 num_examples: 690 - name: test num_bytes: 236713 num_examples: 690 download_size: 875557 dataset_size: 904891 --- # Dataset Card for covost2 ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** https://github.com/facebookresearch/covost - **Repository:** https://github.com/facebookresearch/covost - **Paper:** https://arxiv.org/abs/2007.10310 - **Leaderboard:** [Needs More Information] - **Point of Contact:** Changhan Wang (changhan@fb.com), Juan Miguel Pino (juancarabina@fb.com), Jiatao Gu (jgu@fb.com) ### Dataset Summary CoVoST 2 is a large-scale multilingual speech translation corpus covering translations from 21 languages into English \ and from English into 15 languages. The dataset is created using Mozillas open-source Common Voice database of \ crowdsourced voice recordings. There are 2,900 hours of speech represented in the corpus. ### Supported Tasks and Leaderboards `speech-translation`: The dataset can be used for Speech-to-text translation (ST). The model is presented with an audio file in one language and asked to transcribe the audio file to written text in another language. The most common evaluation metric is the BLEU score. Examples can be found at https://github.com/pytorch/fairseq/blob/master/examples/speech_to_text/docs/covost_example.md . ### Languages The dataset contains the audio, transcriptions, and translations in the following languages, French, German, Dutch, Russian, Spanish, Italian, Turkish, Persian, Swedish, Mongolian, Chinese, Welsh, Catalan, Slovenian, Estonian, Indonesian, Arabic, Tamil, Portuguese, Latvian, and Japanese. ## Dataset Structure ### Data Instances A typical data point comprises the path to the audio file, usually called `file`, its transcription, called `sentence`, and the translation in target language called `translation`. ``` {'client_id': 'd277a1f3904ae00b09b73122b87674e7c2c78e08120721f37b5577013ead08d1ea0c053ca5b5c2fb948df2c81f27179aef2c741057a17249205d251a8fe0e658', 'file': '/home/suraj/projects/fairseq_s2t/covst/dataset/en/clips/common_voice_en_18540003.mp3', 'audio': {'path': '/home/suraj/projects/fairseq_s2t/covst/dataset/en/clips/common_voice_en_18540003.mp3', 'array': array([-0.00048828, -0.00018311, -0.00137329, ..., 0.00079346, 0.00091553, 0.00085449], dtype=float32), 'sampling_rate': 48000}, 'id': 'common_voice_en_18540003', 'sentence': 'When water is scarce, avoid wasting it.', 'translation': 'Wenn Wasser knapp ist, verschwenden Sie es nicht.'} ``` ### Data Fields - file: A path to the downloaded audio file in .mp3 format. - 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]`. - sentence: The transcription of the audio file in source language. - translation: The transcription of the audio file in the target language. - id: unique id of the data sample. ### Data Splits | config | train | validation | test | |----------|--------|------------|-------| | en_de | 289430 | 15531 | 15531 | | en_tr | 289430 | 15531 | 15531 | | en_fa | 289430 | 15531 | 15531 | | en_sv-SE | 289430 | 15531 | 15531 | | en_mn | 289430 | 15531 | 15531 | | en_zh-CN | 289430 | 15531 | 15531 | | en_cy | 289430 | 15531 | 15531 | | en_ca | 289430 | 15531 | 15531 | | en_sl | 289430 | 15531 | 15531 | | en_et | 289430 | 15531 | 15531 | | en_id | 289430 | 15531 | 15531 | | en_ar | 289430 | 15531 | 15531 | | en_ta | 289430 | 15531 | 15531 | | en_lv | 289430 | 15531 | 15531 | | en_ja | 289430 | 15531 | 15531 | | fr_en | 207374 | 14760 | 14760 | | de_en | 127834 | 13511 | 13511 | | es_en | 79015 | 13221 | 13221 | | ca_en | 95854 | 12730 | 12730 | | it_en | 31698 | 8940 | 8951 | | ru_en | 12112 | 6110 | 6300 | | zh-CN_en | 7085 | 4843 | 4898 | | pt_en | 9158 | 3318 | 4023 | | fa_en | 53949 | 3445 | 3445 | | et_en | 1782 | 1576 | 1571 | | mn_en | 2067 | 1761 | 1759 | | nl_en | 7108 | 1699 | 1699 | | tr_en | 3966 | 1624 | 1629 | | ar_en | 2283 | 1758 | 1695 | | sv-SE_en | 2160 | 1349 | 1595 | | lv_en | 2337 | 1125 | 1629 | | sl_en | 1843 | 509 | 360 | | ta_en | 1358 | 384 | 786 | | ja_en | 1119 | 635 | 684 | | id_en | 1243 | 792 | 844 | | cy_en | 1241 | 690 | 690 | ## Dataset Creation ### Curation Rationale [Needs More Information] ### Source Data #### Initial Data Collection and Normalization [Needs More Information] #### Who are the source language producers? [Needs More Information] ### Annotations #### Annotation process [Needs More Information] #### Who are the annotators? [Needs More Information] ### Personal and Sensitive Information The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in this dataset. ## Considerations for Using the Data ### Social Impact of Dataset [Needs More Information] ### Discussion of Biases [Needs More Information] ### Other Known Limitations [Needs More Information] ## Additional Information ### Dataset Curators [Needs More Information] ### Licensing Information [CC BY-NC 4.0](https://github.com/facebookresearch/covost/blob/main/LICENSE) ### Citation Information ``` @misc{wang2020covost, title={CoVoST 2: A Massively Multilingual Speech-to-Text Translation Corpus}, author={Changhan Wang and Anne Wu and Juan Pino}, year={2020}, eprint={2007.10310}, archivePrefix={arXiv}, primaryClass={cs.CL} ``` ### Contributions Thanks to [@patil-suraj](https://github.com/patil-suraj) for adding this dataset.
[ -0.5700845718383789, -0.5126702189445496, 0.08012625575065613, 0.2751622498035431, -0.24145175516605377, -0.07061135768890381, -0.34967395663261414, -0.19837981462478638, 0.4570312798023224, 0.40290677547454834, -0.8182852268218994, -0.8970245122909546, -0.6504746079444885, 0.06166200712323189, -0.3090299367904663, 0.9612979888916016, 0.08506514877080917, -0.02379550039768219, 0.058842916041612625, -0.1393233686685562, -0.4055808484554291, -0.21464724838733673, -0.6858253479003906, -0.02972191572189331, 0.0885981097817421, 0.6526163220405579, 0.5490170121192932, 0.652258038520813, 0.379742294549942, 0.26490074396133423, -0.13153113424777985, 0.04243497550487518, -0.5590855479240417, 0.07667168974876404, -0.1492784470319748, -0.3460601568222046, -0.46652230620384216, -0.08340372890233994, 0.6056035757064819, 0.6069950461387634, -0.13802853226661682, 0.5728093385696411, 0.14013445377349854, 0.7070349454879761, -0.1123722493648529, 0.30132392048835754, -0.35505786538124084, -0.058600228279829025, -0.4039994776248932, -0.24987423419952393, -0.04968839883804321, -0.38807037472724915, 0.08426044881343842, -0.6228030920028687, 0.22712759673595428, 0.17103934288024902, 1.1504160165786743, 0.16782398521900177, -0.259103000164032, -0.30703210830688477, -0.5416937470436096, 1.016706943511963, -0.6220829486846924, 0.3755454123020172, 0.698960542678833, 0.3162463307380676, -0.3065887987613678, -0.6841315031051636, -0.707037627696991, 0.2773778736591339, -0.11961740255355835, 0.38453930616378784, -0.2757185101509094, -0.3868972361087799, 0.24002933502197266, 0.36824434995651245, -0.7019265294075012, -0.12397594004869461, -0.6636726260185242, -0.30861935019493103, 0.8574277758598328, -0.018941432237625122, 0.4880755841732025, -0.46229979395866394, -0.25102007389068604, -0.394934743642807, -0.44771450757980347, 0.40222036838531494, 0.5989405512809753, 0.5419142842292786, -0.6177602410316467, 0.5313034653663635, -0.17934636771678925, 0.440045028924942, 0.10991698503494263, -0.1387346088886261, 0.8056202530860901, -0.7223426103591919, -0.09738267958164215, 0.04457450658082962, 1.1238784790039062, 0.39713582396507263, -0.08504661172628403, 0.12006699293851852, 0.037653371691703796, -0.23948915302753448, -0.15373311936855316, -0.8690477609634399, -0.13931022584438324, 0.6095127463340759, -0.4905301034450531, -0.027255484834313393, 0.006713492795825005, -1.1484404802322388, 0.09050951898097992, -0.30440840125083923, 0.19314926862716675, -0.30854615569114685, -0.4515303373336792, 0.05782967805862427, -0.17747966945171356, 0.23486284911632538, 0.09074340760707855, -0.8361353278160095, 0.48593267798423767, 0.5172889232635498, 1.0216058492660522, -0.1918698400259018, -0.1449277251958847, -0.48237988352775574, 0.031100837513804436, -0.31304019689559937, 0.6854468584060669, -0.10511481016874313, -0.46591916680336, -0.0968744084239006, 0.42725837230682373, -0.05638076364994049, -0.40800222754478455, 0.9332888722419739, -0.20899808406829834, 0.32809165120124817, -0.6811733245849609, -0.24743516743183136, -0.2220858782529831, 0.19687995314598083, -0.8028795719146729, 1.3523061275482178, 0.22842273116111755, -0.9105822443962097, 0.2527867257595062, -0.666229248046875, -0.3989114761352539, -0.045398931950330734, -0.25122714042663574, -0.5689502954483032, -0.453599214553833, 0.3343592584133148, 0.44983306527137756, -0.5774191617965698, 0.3978123664855957, -0.009495869278907776, -0.38678210973739624, -0.02646781876683235, -0.16307812929153442, 1.2978609800338745, 0.421299010515213, -0.47220876812934875, -0.15188317000865936, -0.9503405094146729, -0.08511503040790558, 0.14203858375549316, -0.5099936723709106, -0.07674901187419891, 0.022813545539975166, 0.3428480625152588, 0.39346185326576233, 0.12595073878765106, -0.5429491996765137, -0.02919800579547882, -0.6261016726493835, 0.3574741780757904, 0.5878850817680359, 0.18138062953948975, 0.3525228798389435, -0.49218618869781494, 0.4852735996246338, 0.011626663617789745, 0.023873526602983475, 0.15744808316230774, -0.4509626626968384, -0.6781886219978333, -0.3874485194683075, 0.22593005001544952, 0.6781765818595886, -0.6489599943161011, 0.803577721118927, -0.6133413910865784, -0.6866661310195923, -0.776811957359314, -0.015028626658022404, 0.356970876455307, 0.39074617624282837, 0.5993094444274902, -0.23039808869361877, -0.7606629133224487, -0.9399928450584412, -0.08817347139120102, 0.07826749980449677, 0.1033191978931427, 0.4547480642795563, 0.7471185326576233, -0.2624911367893219, 0.9244438409805298, -0.3774328827857971, -0.48770272731781006, -0.43606993556022644, -0.11867702752351761, 0.6357073783874512, 0.7089886665344238, 0.6632640361785889, -0.8617808818817139, -0.8040373921394348, -0.029801975935697556, -0.45089420676231384, -0.18029510974884033, 0.00021714401373174042, -0.35431763529777527, -0.025188542902469635, 0.33416348695755005, -0.3224108815193176, 0.2802164554595947, 0.8341162800788879, -0.41382578015327454, 0.4666043519973755, -0.06127658858895302, 0.3794044852256775, -1.4837521314620972, 0.22605940699577332, -0.04608454182744026, -0.1135067567229271, -0.6111633777618408, -0.44556671380996704, -0.3104742467403412, 0.019401665776968002, -0.41384002566337585, 0.5624114274978638, -0.4902133643627167, -0.10962901264429092, 0.20203833281993866, 0.22236908972263336, 0.03126957640051842, 0.6689608693122864, -0.11181487143039703, 1.0237176418304443, 0.6594431400299072, -0.5428038239479065, 0.4136687219142914, 0.6713948845863342, -0.7911430597305298, 0.4720931053161621, -0.7332851886749268, 0.14102187752723694, -0.11340712010860443, 0.22244183719158173, -1.19403874874115, -0.21273291110992432, 0.46005111932754517, -0.6949822902679443, 0.17570674419403076, -0.2914600372314453, -0.602940022945404, -0.4254995286464691, -0.38578152656555176, 0.19812491536140442, 0.3419029414653778, -0.3375067114830017, 0.4056689441204071, 0.6042057275772095, -0.3874691128730774, -0.5472763180732727, -0.9783923625946045, -0.020283473655581474, -0.0739433541893959, -0.7691855430603027, 0.4890722930431366, -0.16225560009479523, -0.07102519273757935, 0.04318536818027496, -0.0005984008312225342, -0.06661567836999893, -0.11162116378545761, 0.17916467785835266, 0.004036667291074991, 0.114531509578228, -0.1349254548549652, 0.25144025683403015, -0.1361769586801529, -0.2182191014289856, -0.17709746956825256, 0.9059175848960876, -0.07565293461084366, -0.2372785359621048, -0.6113284826278687, 0.4485260248184204, 0.4613554775714874, -0.4314974546432495, 0.7868789434432983, 0.7888382077217102, -0.22734233736991882, 0.06848418712615967, -0.35478144884109497, 0.10712352395057678, -0.43229159712791443, 0.6122092604637146, -0.3047865033149719, -0.7816909551620483, 0.7744255661964417, 0.12139450013637543, 0.08771288394927979, 0.8316525816917419, 0.7626098990440369, -0.126185804605484, 0.8274762630462646, 0.16401474177837372, -0.07383285462856293, 0.44679781794548035, -0.8689684271812439, -0.016719071194529533, -0.8604670763015747, -0.5363023281097412, -0.8854228854179382, -0.36026009917259216, -0.771543025970459, -0.5772507786750793, 0.3142697215080261, -0.14994899928569794, -0.312365859746933, 0.6320669651031494, -0.5457102656364441, 0.07608549296855927, 0.7475934624671936, 0.018615800887346268, 0.01472198124974966, 0.20723511278629303, -0.1729431301355362, -0.08202391862869263, -0.5234326720237732, -0.38642728328704834, 1.1219515800476074, 0.30907392501831055, 0.4014661908149719, 0.41123166680336, 0.6876486539840698, 0.35673317313194275, -0.32592058181762695, -0.6630060076713562, 0.4053800702095032, -0.21145443618297577, -0.8278113007545471, -0.45665282011032104, -0.3364109694957733, -1.1351487636566162, 0.28386467695236206, -0.2875795066356659, -0.7565860152244568, 0.7661415338516235, -0.01670212671160698, -0.32694700360298157, 0.0885816439986229, -0.5487276911735535, 0.8764097690582275, -0.26983174681663513, -0.4049915671348572, -0.12305334210395813, -0.8053601980209351, -0.04870694875717163, -0.015704844146966934, 0.6800445318222046, -0.32776978611946106, 0.1316647082567215, 1.2094511985778809, -0.5506517291069031, 0.6459434032440186, -0.25545427203178406, 0.06548243761062622, 0.45889124274253845, -0.0972474068403244, 0.7514873147010803, -0.02991216443479061, -0.3081531822681427, 0.2563338875770569, 0.449739545583725, -0.43030181527137756, -0.2712234854698181, 0.6172446012496948, -1.030932903289795, -0.2675241529941559, -0.44638803601264954, -0.49718403816223145, 0.07330851256847382, 0.3959732949733734, 0.4891272187232971, 0.48950138688087463, -0.12221334874629974, 0.3787984251976013, 0.5262903571128845, -0.4137762784957886, 0.27970725297927856, 0.3502064347267151, -0.042829032987356186, -0.8559831976890564, 0.7881564497947693, 0.40939220786094666, 0.26925766468048096, 0.279998779296875, 0.2486930936574936, -0.43716514110565186, -0.6126184463500977, -0.33058735728263855, 0.19321514666080475, -0.48220616579055786, -0.09242252260446548, -0.7020544409751892, 0.08192747831344604, -0.8612563610076904, 0.03909841552376747, -0.41794413328170776, -0.4204612374305725, -0.14404179155826569, -0.2389955371618271, 0.5367674231529236, 0.2132282704114914, -0.24550241231918335, 0.41187652945518494, -0.6403542160987854, 0.35307255387306213, -0.020699067041277885, 0.22036337852478027, -0.192551851272583, -0.72569340467453, -0.5835076570510864, 0.24064984917640686, -0.12000825256109238, -0.8834412693977356, 0.6503913402557373, 0.22348925471305847, 0.6132843494415283, 0.23970426619052887, 0.03643650561571121, 0.7854751944541931, -0.33428919315338135, 1.0101653337478638, 0.1308877319097519, -0.8232391476631165, 0.7210108041763306, -0.553524911403656, 0.17486509680747986, 0.9737145304679871, 0.3935505151748657, -0.8905659914016724, -0.1636868566274643, -0.6722290515899658, -1.118455410003662, 1.0140855312347412, 0.43516820669174194, 0.06754641234874725, 0.023358087986707687, 0.14344422519207, -0.052277952432632446, 0.24064002931118011, -0.749285876750946, -0.7329268455505371, -0.2552618682384491, -0.2700709402561188, -0.07999464869499207, -0.24666845798492432, -0.2688572406768799, -0.6306893825531006, 0.9976786971092224, 0.25501999258995056, 0.4367785155773163, 0.41090330481529236, 0.03256082907319069, -0.10724980384111404, 0.3957562744617462, 0.4861196279525757, 0.33830156922340393, -0.4170333743095398, -0.020987972617149353, 0.1375827193260193, -0.7059646248817444, 0.10497935116291046, 0.10732239484786987, -0.3560122549533844, 0.1032651737332344, 0.37825897336006165, 0.8811160922050476, -0.028241241350769997, -0.3833063542842865, 0.6847309470176697, 0.027229521423578262, -0.49146053194999695, -0.573177695274353, -0.16432295739650726, 0.08140527456998825, 0.3767207860946655, 0.3217228651046753, 0.11939466744661331, 0.24158722162246704, -0.6851319670677185, 0.220061793923378, 0.16182179749011993, -0.42325130105018616, -0.3111024498939514, 0.5914108157157898, 0.10968204587697983, -0.22394859790802002, 0.46127939224243164, -0.2722614109516144, -0.5458765029907227, 0.741978108882904, 0.40919187664985657, 0.829572856426239, -0.22676460444927216, 0.07227250933647156, 0.9174487590789795, 0.4268220067024231, -0.2414676696062088, 0.618169367313385, -0.06651416420936584, -0.7353699207305908, -0.31138694286346436, -0.713309109210968, -0.08807670325040817, 0.17549876868724823, -0.8249676823616028, 0.44577136635780334, -0.15356436371803284, -0.28355708718299866, -0.2760004699230194, 0.33075767755508423, -0.8144240379333496, 0.2222481071949005, -0.16742603480815887, 0.9559260010719299, -1.1259832382202148, 0.9342297911643982, 0.44772475957870483, -0.7332305312156677, -1.0827701091766357, -0.16059282422065735, -0.04174908250570297, -0.5789130926132202, 0.4438473582267761, -0.057802531868219376, 0.031083330512046814, 0.056770555675029755, -0.6303749680519104, -1.1700419187545776, 1.3589680194854736, 0.2770775556564331, -0.7631297707557678, 0.1641717106103897, 0.24018949270248413, 0.5649803280830383, -0.1649671345949173, 0.08588912338018417, 0.8205797672271729, 0.6691584587097168, 0.1856716424226761, -0.8568500876426697, 0.0979730412364006, -0.5246515274047852, -0.1389424353837967, 0.025016305968165398, -0.8182886838912964, 0.8461467027664185, -0.01615256257355213, -0.2027551531791687, -0.11297827214002609, 0.5265510678291321, 0.21783648431301117, 0.2690259516239166, 0.4451451897621155, 0.662554144859314, 0.8460739254951477, -0.3135237693786621, 1.0145812034606934, -0.3113378584384918, 0.6794708371162415, 1.1652158498764038, 0.16720296442508698, 0.8384771943092346, 0.5045438408851624, -0.5848110914230347, 0.375607967376709, 0.7497692704200745, -0.28823837637901306, 0.8179177641868591, 0.05247679725289345, -0.08421702682971954, -0.023120105266571045, -0.11097617447376251, -0.6267600655555725, 0.4267321825027466, 0.3211062252521515, -0.2544700801372528, 0.06859692186117172, -0.023192010819911957, 0.28207582235336304, -0.026197439059615135, -0.09173715114593506, 0.6113330721855164, -0.03564300760626793, -0.4844057559967041, 0.5086061954498291, -0.017655283212661743, 0.7151548862457275, -0.6163349747657776, 0.08979876339435577, -0.09297853708267212, -0.004506681580096483, -0.49917012453079224, -0.9111142754554749, 0.42982304096221924, -0.04533049091696739, -0.2904931902885437, -0.17603690922260284, 0.31595468521118164, -0.7612245678901672, -0.6459797024726868, 0.472694456577301, 0.3471510112285614, 0.40124544501304626, 0.19560232758522034, -0.827584981918335, 0.1349545270204544, 0.26950153708457947, -0.4290143847465515, -0.00880448054522276, 0.4328758716583252, 0.06046782806515694, 0.419887900352478, 0.8512565493583679, 0.40800467133522034, 0.10105963051319122, 0.12384872883558273, 0.7725004553794861, -0.5658013820648193, -0.5553944110870361, -0.7260251641273499, 0.5392469167709351, -0.14030210673809052, -0.15738292038440704, 0.9296132922172546, 0.9859933853149414, 0.9132934212684631, 0.08121805638074875, 1.0344008207321167, -0.5015162825584412, 0.9215319752693176, -0.32470306754112244, 0.727491557598114, -0.7077355980873108, 0.19699713587760925, -0.44569337368011475, -0.6794507503509521, -0.23649899661540985, 0.7235067486763, -0.476889044046402, -0.09503297507762909, 0.48549333214759827, 1.0462579727172852, 0.11516011506319046, -0.2688888907432556, 0.09186926484107971, 0.40052828192710876, 0.4739048182964325, 0.5143239498138428, 0.3464525640010834, -0.8731924891471863, 0.7280147075653076, -0.388510525226593, -0.029745405539870262, -0.12179350852966309, -0.6635793447494507, -0.6514440178871155, -0.8506832122802734, -0.3001346290111542, -0.660555362701416, -0.08424127101898193, 1.3741384744644165, 0.5588914155960083, -1.0490000247955322, -0.4881364703178406, 0.025494566187262535, 0.01090468280017376, -0.3738422989845276, -0.19555652141571045, 0.8936823010444641, 0.23051826655864716, -0.970649778842926, 0.2585795223712921, 0.014955193735659122, 0.049212921410799026, 0.11793792247772217, -0.319717139005661, -0.4955606460571289, -0.062184177339076996, 0.41730818152427673, 0.26366186141967773, -0.5093825459480286, -0.07828587293624878, -0.12421713024377823, -0.10801387578248978, 0.31724825501441956, 0.24612845480442047, -0.23446917533874512, 0.5649765729904175, 0.7920472621917725, 0.24014601111412048, 0.8402026891708374, -0.047799304127693176, 0.23932290077209473, -0.6306926608085632, 0.36339378356933594, 0.03562377765774727, 0.3729610741138458, 0.2958276867866516, -0.33735108375549316, 0.5840135812759399, 0.3410104811191559, -0.4819246828556061, -0.7265094518661499, -0.23423929512500763, -1.3591996431350708, 0.05822945386171341, 1.446663498878479, 0.008065194822847843, -0.2558352053165436, -0.259548157453537, -0.4203607738018036, 0.6105239987373352, -0.7274174690246582, 0.41302725672721863, 0.7519271373748779, 0.11095888912677765, -0.004439030773937702, -0.9342570900917053, 0.6544825434684753, 0.003284011734649539, -0.7035272717475891, -0.10421918332576752, 0.2922028601169586, 0.4645192325115204, 0.16370345652103424, 1.0155389308929443, -0.3831027150154114, 0.0837474912405014, -0.02771584689617157, 0.3561108112335205, -0.05094170570373535, -0.032644011080265045, -0.1573278307914734, -0.040837593376636505, -0.1394500881433487, -0.3436376750469208 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
ashraq/esc50
ashraq
2023-01-07T08:35:28Z
5,573
6
null
[ "region:us" ]
2023-01-07T08:35:28Z
2022-09-24T19:51:49.000Z
2022-09-24T19:51:49
https://github.com/karolpiczak/ESC-50 The dataset is available under the terms of the Creative Commons Attribution Non-Commercial license. K. J. Piczak. ESC: Dataset for Environmental Sound Classification. Proceedings of the 23rd Annual ACM Conference on Multimedia, Brisbane, Australia, 2015. [DOI: http://dx.doi.org/10.1145/2733373.2806390]
[ -0.831135094165802, -0.12407658994197845, 0.39839428663253784, 0.18505896627902985, 0.026007909327745438, -0.05934274196624756, -0.47675615549087524, -0.4709451496601105, 0.041988447308540344, 0.5238373875617981, -0.932285726070404, -1.2085996866226196, -0.3464866876602173, 0.1296720653772354, -0.7435206174850464, 0.850453794002533, 0.20046362280845642, 0.05245542153716087, -0.2522769570350647, -0.40638262033462524, 0.030185790732502937, -0.10303834825754166, -0.6243714094161987, 0.03291044384241104, 0.523455023765564, 0.6503891348838806, 0.16401934623718262, 0.1558542251586914, 0.6011000871658325, 0.31427061557769775, -0.5541890263557434, -0.19606663286685944, 0.06648058444261551, 0.3285678029060364, -0.040612343698740005, -0.044913604855537415, -0.08044537156820297, 0.009142243303358555, 0.6497446298599243, 0.24195320904254913, -0.8346296548843384, 0.45873120427131653, -0.1535157412290573, 0.5338103175163269, -0.9514909386634827, 0.6385977864265442, -0.39121195673942566, 0.30174005031585693, -0.31677448749542236, -0.5090450048446655, -0.6703168153762817, -0.007983129471540451, -0.1912703514099121, -0.9655672311782837, 0.2759830057621002, -0.09756770730018616, 0.7628189325332642, 0.34995973110198975, -0.4066751301288605, -0.6463417410850525, -0.49426937103271484, 0.6778677701950073, -0.5511935949325562, 0.574100136756897, 0.47284841537475586, 0.6900649666786194, 0.0683053731918335, -0.7762278318405151, -0.3608689308166504, 0.24426834285259247, 0.42929261922836304, 0.481946736574173, -0.2551114559173584, 0.1885184943675995, 0.5248744487762451, 0.7232843041419983, -0.46891048550605774, -0.11736217141151428, -0.8898425698280334, -0.3989015817642212, 0.7896220088005066, 0.2842424213886261, 0.23815570771694183, -0.2857170104980469, 0.05108519643545151, -0.2436574548482895, -0.362575888633728, 0.24358272552490234, 0.7862935662269592, 0.576222836971283, -0.6009780168533325, 0.6016271114349365, -0.37177351117134094, 0.4354081153869629, -0.31269124150276184, -0.14194391667842865, 0.6040223836898804, -0.3638332188129425, 0.23049941658973694, 0.376853346824646, 0.41686517000198364, 0.33366483449935913, -0.21688684821128845, 0.48683133721351624, -0.32052916288375854, 0.17417828738689423, 0.08590669184923172, -0.6058849096298218, -0.690059244632721, 0.26962465047836304, -0.5088838338851929, -0.37608659267425537, 0.42002934217453003, -0.7178076505661011, -0.1926111876964569, -0.8868828415870667, 0.12755918502807617, -0.00588606484234333, -0.26466047763824463, 0.2932785153388977, -0.3883252739906311, 0.17898596823215485, 0.026058604940772057, -0.6171842217445374, 0.7626380920410156, 0.3213947117328644, 1.0284310579299927, 0.04275324568152428, 0.11467080563306808, -0.19127438962459564, 0.21625885367393494, 0.14528365433216095, 1.2001056671142578, -0.4171869456768036, -0.922798216342926, -0.205696240067482, 0.5796750783920288, 0.4407314956188202, -0.6741469502449036, 0.7959851622581482, -0.31715643405914307, 0.2549520432949066, -0.021480510011315346, -0.2208598405122757, -0.07210906594991684, -0.48116397857666016, -1.0733879804611206, 1.1635210514068604, -0.18490475416183472, -0.9891294240951538, 0.4151516556739807, -0.9801905155181885, -0.2893052399158478, -0.00024023537116590887, -0.04652741923928261, -0.9450486302375793, -0.25632244348526, 0.07806479930877686, 0.23531848192214966, -0.03440713882446289, 0.04300065338611603, -0.6840620636940002, -0.5414883494377136, 0.08138856291770935, -0.25662899017333984, 1.3255964517593384, 1.1186860799789429, -0.08376620709896088, -0.12472385913133621, -0.9501838684082031, -0.10229857265949249, -0.16390617191791534, -0.5734344720840454, 0.05172012373805046, -0.027299683541059494, 0.6702293753623962, 0.19440904259681702, -0.2635778784751892, -0.7412347197532654, -0.3738142251968384, 0.47039133310317993, 0.3308613896369934, 0.7350350022315979, 0.23858126997947693, 0.19466319680213928, -0.3174569308757782, 0.5595096349716187, -0.003958066925406456, 0.3251813054084778, -0.10613679140806198, -0.4777548015117645, -0.4386546015739441, -0.7757828235626221, 0.1738877296447754, 0.3480454683303833, -0.22236420214176178, 0.5148389935493469, -0.04007735475897789, -0.7624083757400513, -0.39982911944389343, -0.35607683658599854, -0.2557740807533264, -0.1469186395406723, 0.3052193224430084, -0.24185580015182495, -0.9084061980247498, -0.8508065938949585, 0.04905950650572777, -0.10906977206468582, -0.3481638729572296, 1.052785038948059, 0.5113657712936401, -0.039679985493421555, 0.846792459487915, -0.7079839110374451, -0.23784898221492767, 0.3140401542186737, 0.2421475052833557, 0.3174663186073303, 0.24833457171916962, 0.6738585233688354, -0.7332026958465576, -0.47703224420547485, -0.2016146034002304, -0.47730574011802673, -0.7358042001724243, 0.32283326983451843, 0.2848159074783325, -0.004043645691126585, 0.733989417552948, -0.05536188557744026, 0.49734145402908325, 1.029414415359497, -0.33514124155044556, 0.5994154214859009, 0.29407626390457153, 0.5686761736869812, -0.8361648917198181, 0.47007158398628235, 0.20005372166633606, 0.015917258337140083, 0.1276940554380417, -0.27980878949165344, -0.20906099677085876, -0.535816490650177, -0.7941074371337891, -0.07518186420202255, -0.23023350536823273, -0.4090694785118103, -0.058485012501478195, -0.1001337319612503, -0.30368050932884216, 0.2655741572380066, 0.3060983419418335, 0.656334638595581, 0.6992352604866028, -0.5684552788734436, 0.5367174744606018, 0.17798808217048645, -0.5548664331436157, 0.7224664092063904, -0.4917306900024414, 0.3376329243183136, -0.28123739361763, 0.5761865377426147, -0.7181711792945862, -0.34525835514068604, 0.06500300019979477, -0.557245135307312, -0.20900215208530426, -0.34962961077690125, -0.6722618937492371, -0.27673810720443726, -0.17311429977416992, 0.2872760593891144, 0.3067781925201416, -0.7268689274787903, 0.5254132747650146, 0.8615983724594116, -0.3569006621837616, -0.20303429663181305, -0.9876011610031128, -0.23401880264282227, -0.4688132703304291, -0.09049459546804428, 0.08453994244337082, -0.289524108171463, -0.38766157627105713, 0.22665350139141083, 0.05190911516547203, -0.1890110969543457, -0.07380060106515884, 0.8067125082015991, 0.08500460535287857, -0.020492542535066605, 0.26339614391326904, -0.05109981447458267, -0.057293668389320374, 0.14637380838394165, -0.1196189671754837, 0.15806907415390015, -0.25704556703567505, -0.31888577342033386, -0.584954559803009, 0.3550039529800415, 0.7270090579986572, 0.06858368963003159, 0.398305743932724, 0.4895080029964447, -0.5990173816680908, -0.549862265586853, 0.00703065562993288, -0.26877719163894653, -0.5776509046554565, 0.24660423398017883, -0.33067256212234497, -0.573696494102478, 0.6986281275749207, -0.23553627729415894, 0.16150681674480438, 0.7193475961685181, 0.3981478810310364, -0.46510452032089233, 0.7082712650299072, 0.24930299818515778, 0.1164453849196434, 0.6396306753158569, -0.4913592040538788, -0.25295180082321167, -0.4836341440677643, -0.626068115234375, -1.0691653490066528, -0.31319788098335266, -0.630752682685852, 0.1405886709690094, -0.04940187931060791, -0.5857549905776978, -0.5469691753387451, 0.679834246635437, -0.5130960941314697, 0.697110116481781, 0.2221461832523346, 0.3145993947982788, 0.489993155002594, 0.257851243019104, 0.11834907531738281, -0.20930363237857819, -0.4692368805408478, -0.21296776831150055, 0.8009746074676514, 0.5956467986106873, 0.8003677725791931, 0.30917200446128845, 0.5804729461669922, 0.7107809782028198, 0.14410437643527985, -0.840920090675354, 0.35858580470085144, -0.3156132996082306, -1.2453776597976685, -0.4258158504962921, -0.3912521004676819, -0.6185170412063599, -0.20116549730300903, -0.17947553098201752, -0.44943952560424805, 0.33663812279701233, -0.22938841581344604, -0.30327659845352173, 0.5125750303268433, -0.5602822303771973, 0.35848379135131836, 0.14661456644535065, 0.2922113537788391, -0.3780166208744049, -0.4147396683692932, 0.018116544932127, -0.13425862789154053, 0.564631462097168, -0.5474647879600525, -0.06212854012846947, 0.9925072193145752, -0.1292259246110916, 0.6811538338661194, -0.5635195374488831, 0.008423123508691788, 0.9742180705070496, -0.39425939321517944, 0.2032962143421173, 0.17096485197544098, 0.1949552595615387, 0.3210259675979614, 0.1258668750524521, -0.34594422578811646, -0.2533873915672302, 0.7153644561767578, -1.0253149271011353, 0.35495656728744507, -0.44131702184677124, -0.3507652282714844, -0.09171629697084427, -0.05582255497574806, 0.3810076117515564, 0.4507264792919159, -0.12165053188800812, 0.6954773664474487, 0.5867108106613159, -0.33433181047439575, 0.2710168659687042, 0.9815987944602966, -0.00015427745529450476, -0.6537376642227173, 0.7367610335350037, 0.22074171900749207, -0.13657037913799286, 0.046366773545742035, -0.05878729000687599, -0.4356629252433777, -0.4981018304824829, 0.22325727343559265, -0.0795648992061615, -1.1037909984588623, -0.29826658964157104, -0.7470170259475708, -0.2811325788497925, -0.19439616799354553, -0.0037887280341237783, -0.5935541987419128, -0.28663724660873413, -0.33403223752975464, -0.505679190158844, 0.534409761428833, 0.9926056265830994, -0.5835135579109192, 0.3417593836784363, -0.3763121962547302, 0.21794074773788452, 0.17348612844944, 0.5766331553459167, -0.47256821393966675, -0.5300250053405762, -0.2431759536266327, -0.22679679095745087, -0.438895046710968, -0.5601121783256531, 0.34213685989379883, 0.29276242852211, 0.6800212860107422, 0.27044427394866943, 0.11876289546489716, 0.3753708302974701, 0.10979903489351273, 0.9447329640388489, 0.2200632393360138, -1.1172692775726318, 0.7172388434410095, -0.43791434168815613, 0.4778321087360382, 0.9110265970230103, 0.3392643630504608, -0.8493252992630005, -0.4162297546863556, -0.842289388179779, -1.0482474565505981, 0.8126859664916992, 0.06749334931373596, -0.4377899765968323, 0.06424500048160553, -0.22041994333267212, 0.15030711889266968, -0.05612491816282272, -0.5685161352157593, -0.28874799609184265, -0.4105410873889923, -0.5263286232948303, -0.045202985405921936, 0.3432711362838745, -0.2237490564584732, -0.3631807565689087, 0.8498678803443909, -0.026011278852820396, 0.5115370750427246, 0.12506674230098724, 0.07564994692802429, -0.21320344507694244, 0.33924558758735657, 0.6195213794708252, -0.0595795139670372, -0.36714842915534973, 0.35532858967781067, 0.5544216632843018, -0.7203831076622009, 0.16795338690280914, -0.3318380117416382, 0.20556631684303284, 0.07126270979642868, 0.20507921278476715, 0.33021146059036255, 0.4175187349319458, -0.7006590962409973, 0.5501066446304321, -0.30835622549057007, -0.7172684073448181, -0.6049208641052246, -0.14832566678524017, 0.28027021884918213, 0.25355932116508484, 0.46956726908683777, 0.17407052218914032, 0.7459180355072021, -0.3253237009048462, 0.5359374284744263, -0.4516649842262268, -0.6647474765777588, -0.27869319915771484, 0.6131436824798584, 0.2677779495716095, 0.16500809788703918, 1.1141512393951416, -0.061716701835393906, -0.1318759173154831, 0.886813223361969, 0.1675407588481903, 0.8561661839485168, 0.01184701919555664, 0.16437533497810364, 0.9850186705589294, 0.000486211123643443, 0.11279098689556122, 0.7295196056365967, -0.29739782214164734, -0.4896201491355896, -0.26427000761032104, -0.2736090421676636, -0.6366104483604431, 0.2243885099887848, -0.952459454536438, 0.6141977906227112, -0.5709712505340576, -0.4116401672363281, -0.0244767889380455, 0.041775815188884735, -0.6828302145004272, 0.25224432349205017, 0.631356954574585, 1.1111786365509033, -1.5019785165786743, 0.39250585436820984, 0.6842567920684814, -0.2002149522304535, -0.7766940593719482, -0.5737237334251404, 0.5786975622177124, -0.10191068053245544, 0.2445204108953476, -0.00316658616065979, -0.4263707995414734, -0.1420576572418213, -1.1077122688293457, -0.8104534149169922, 1.6570969820022583, 0.306732177734375, -0.8653236031532288, 0.7329120635986328, -0.17505010962486267, 0.35295185446739197, -0.23453813791275024, 0.1544649302959442, 0.3261682689189911, 0.8450214862823486, 0.18054991960525513, -0.9036325216293335, -0.4622584581375122, -0.596380889415741, -0.35241782665252686, -0.10522198677062988, -0.5336307287216187, 0.13834987580776215, -0.27342551946640015, -0.8615356683731079, 0.06623497605323792, 0.5032968521118164, 0.5469692945480347, 0.5477879643440247, 0.8745144605636597, 0.8603801727294922, 0.9128809571266174, -0.39262834191322327, 0.6384499073028564, -0.040540989488363266, 0.8954116106033325, 1.0888969898223877, 0.20857638120651245, 0.7357758283615112, 0.5166518092155457, -0.7366078495979309, 0.49351152777671814, 1.2350544929504395, -0.4652827978134155, 1.1350429058074951, 0.21106861531734467, -0.6934528946876526, 0.21628941595554352, -0.513685941696167, -0.3418923020362854, 0.5970510840415955, 0.3685269355773926, -0.2460004687309265, 0.1652730107307434, -0.07697351276874542, -0.6434144377708435, -0.1679488867521286, -0.3914391100406647, 0.8739640116691589, 0.07863661646842957, 0.22401927411556244, -0.1037181094288826, -0.3217814564704895, 0.879439115524292, -0.31966033577919006, -0.0753265917301178, 0.38461488485336304, -0.09179238975048065, -0.7655289173126221, -1.2326366901397705, 0.5181083083152771, -0.1215616911649704, -0.1033456027507782, 0.07842712104320526, 0.42639490962028503, -0.3339845538139343, -0.14099977910518646, 0.28817227482795715, -0.0906749814748764, 0.533737063407898, 0.37124067544937134, -0.5460455417633057, 0.29485610127449036, -0.20037688314914703, -0.24145588278770447, -0.34326252341270447, 0.291849821805954, 0.37327054142951965, 0.6236082911491394, 0.5595971345901489, 0.46358081698417664, -0.006610867101699114, 0.4244229197502136, 0.5812160968780518, -0.7527537941932678, -0.7336362600326538, -0.0027502006851136684, 0.5910122990608215, -0.15560181438922882, -0.34003016352653503, 0.45796436071395874, 0.935042142868042, 1.1270668506622314, -0.40783512592315674, 0.9971317648887634, -0.14237530529499054, 0.33603140711784363, -0.29102373123168945, 0.7060096263885498, -0.2055111676454544, 0.11804923415184021, -0.14003585278987885, -0.7060177326202393, -0.4050646424293518, 0.36021944880485535, 0.11009911447763443, 0.12491755932569504, 0.5725095272064209, 1.025454044342041, -0.14531797170639038, 0.7178705930709839, 0.282619833946228, -0.16239133477210999, 0.12874212861061096, 0.2801934480667114, 1.1639339923858643, -0.19020555913448334, 0.7130289673805237, -0.5363340377807617, 0.051560577005147934, 0.1742415577173233, -0.6830009818077087, -0.2862769663333893, -0.8593127131462097, -0.5866689085960388, 0.003879592986777425, 0.09589191526174545, 1.0361526012420654, 0.9738892316818237, -1.508805751800537, -0.1865207403898239, -0.07590439170598984, -0.38582056760787964, -0.23408089578151703, -0.23706302046775818, 0.30257388949394226, 0.35670268535614014, -0.8587256073951721, 0.2429349273443222, 0.03640129044651985, 0.11346407979726791, -0.047977760434150696, -0.5489254593849182, 0.08593980967998505, -0.0583747997879982, 0.07956099510192871, 0.4677893817424774, -0.5513366460800171, -0.2606334686279297, -0.21451766788959503, -0.2148360311985016, -0.024585096165537834, 0.837692379951477, -0.2993876338005066, 0.3494904935359955, 0.6972557902336121, 0.12820376455783844, 0.7298577427864075, -0.29706871509552, 0.06139710173010826, -0.8370419144630432, 0.2166527956724167, 0.13030144572257996, 0.5471032857894897, 0.2642296552658081, -0.19077414274215698, 0.6045042872428894, 0.36646968126296997, -0.627854585647583, -0.6131058931350708, -0.36832743883132935, -1.2891596555709839, -0.3028465807437897, 1.07863450050354, -0.0848354771733284, -0.04597499594092369, -0.28774699568748474, -0.4403117299079895, 0.3255119323730469, -0.8695479035377502, 0.5265956521034241, 0.8587206602096558, 0.06881865859031677, -0.5138760209083557, -0.5396984815597534, 0.2113431990146637, -0.41370755434036255, -0.8271812796592712, -0.07778625935316086, 0.4600687623023987, 0.4361526072025299, 0.29528647661209106, 0.36865535378456116, -0.9230765104293823, 0.4687800407409668, 0.5408756732940674, 0.4818919003009796, -0.1858649104833603, -0.6997362375259399, -0.6841402053833008, 0.22819463908672333, 0.04679172486066818, -0.2361108660697937 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
stsb_multi_mt
null
2022-11-18T21:48:48Z
5,536
34
null
[ "task_categories:text-classification", "task_ids:text-scoring", "task_ids:semantic-similarity-scoring", "annotations_creators:crowdsourced", "language_creators:crowdsourced", "language_creators:found", "language_creators:machine-generated", "multilinguality:multilingual", "size_categories:10K<n<100K", "source_datasets:extended|other-sts-b", "language:de", "language:en", "language:es", "language:fr", "language:it", "language:nl", "language:pl", "language:pt", "language:ru", "language:zh", "license:other", "arxiv:1708.00055", "region:us" ]
2022-11-18T21:48:48Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced language_creators: - crowdsourced - found - machine-generated language: - de - en - es - fr - it - nl - pl - pt - ru - zh license: - other multilinguality: - multilingual size_categories: - 10K<n<100K source_datasets: - extended|other-sts-b task_categories: - text-classification task_ids: - text-scoring - semantic-similarity-scoring paperswithcode_id: null pretty_name: STSb Multi MT dataset_info: - config_name: en features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 731803 num_examples: 5749 - name: test num_bytes: 164466 num_examples: 1379 - name: dev num_bytes: 210072 num_examples: 1500 download_size: 1072429 dataset_size: 1106341 - config_name: de features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 867473 num_examples: 5749 - name: test num_bytes: 193333 num_examples: 1379 - name: dev num_bytes: 247077 num_examples: 1500 download_size: 1279173 dataset_size: 1307883 - config_name: es features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 887101 num_examples: 5749 - name: test num_bytes: 194616 num_examples: 1379 - name: dev num_bytes: 245250 num_examples: 1500 download_size: 1294160 dataset_size: 1326967 - config_name: fr features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 910195 num_examples: 5749 - name: test num_bytes: 200446 num_examples: 1379 - name: dev num_bytes: 254083 num_examples: 1500 download_size: 1332515 dataset_size: 1364724 - config_name: it features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 871526 num_examples: 5749 - name: test num_bytes: 191647 num_examples: 1379 - name: dev num_bytes: 243144 num_examples: 1500 download_size: 1273630 dataset_size: 1306317 - config_name: nl features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 833667 num_examples: 5749 - name: test num_bytes: 182904 num_examples: 1379 - name: dev num_bytes: 234887 num_examples: 1500 download_size: 1217753 dataset_size: 1251458 - config_name: pl features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 828433 num_examples: 5749 - name: test num_bytes: 181266 num_examples: 1379 - name: dev num_bytes: 231758 num_examples: 1500 download_size: 1212336 dataset_size: 1241457 - config_name: pt features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 854356 num_examples: 5749 - name: test num_bytes: 189163 num_examples: 1379 - name: dev num_bytes: 240559 num_examples: 1500 download_size: 1251508 dataset_size: 1284078 - config_name: ru features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 1391674 num_examples: 5749 - name: test num_bytes: 300007 num_examples: 1379 - name: dev num_bytes: 386268 num_examples: 1500 download_size: 2051645 dataset_size: 2077949 - config_name: zh features: - name: sentence1 dtype: string - name: sentence2 dtype: string - name: similarity_score dtype: float32 splits: - name: train num_bytes: 694424 num_examples: 5749 - name: test num_bytes: 154834 num_examples: 1379 - name: dev num_bytes: 195821 num_examples: 1500 download_size: 1006892 dataset_size: 1045079 --- # Dataset Card for STSb Multi MT ## 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/PhilipMay/stsb-multi-mt - **Homepage (original dataset):** https://ixa2.si.ehu.es/stswiki/index.php/STSbenchmark - **Paper about original dataset:** https://arxiv.org/abs/1708.00055 - **Leaderboard:** https://ixa2.si.ehu.eus/stswiki/index.php/STSbenchmark#Results - **Point of Contact:** [Open an issue on GitHub](https://github.com/PhilipMay/stsb-multi-mt/issues/new) ### Dataset Summary > STS Benchmark comprises a selection of the English datasets used in the STS tasks organized > in the context of SemEval between 2012 and 2017. The selection of datasets include text from > image captions, news headlines and user forums. ([source](https://ixa2.si.ehu.es/stswiki/index.php/STSbenchmark)) These are different multilingual translations and the English original of the [STSbenchmark dataset](https://ixa2.si.ehu.es/stswiki/index.php/STSbenchmark). Translation has been done with [deepl.com](https://www.deepl.com/). It can be used to train [sentence embeddings](https://github.com/UKPLab/sentence-transformers) like [T-Systems-onsite/cross-en-de-roberta-sentence-transformer](https://huggingface.co/T-Systems-onsite/cross-en-de-roberta-sentence-transformer). **Examples of Use** Load German dev Dataset: ```python from datasets import load_dataset dataset = load_dataset("stsb_multi_mt", name="de", split="dev") ``` Load English train Dataset: ```python from datasets import load_dataset dataset = load_dataset("stsb_multi_mt", name="en", split="train") ``` ### Supported Tasks and Leaderboards [More Information Needed] ### Languages Available languages are: de, en, es, fr, it, nl, pl, pt, ru, zh ## Dataset Structure ### Data Instances This dataset provides pairs of sentences and a score of their similarity. score | 2 example sentences | explanation ------|---------|------------ 5 | *The bird is bathing in the sink.<br/>Birdie is washing itself in the water basin.* | The two sentences are completely equivalent, as they mean the same thing. 4 | *Two boys on a couch are playing video games.<br/>Two boys are playing a video game.* | The two sentences are mostly equivalent, but some unimportant details differ. 3 | *John said he is considered a witness but not a suspect.<br/>“He is not a suspect anymore.” John said.* | The two sentences are roughly equivalent, but some important information differs/missing. 2 | *They flew out of the nest in groups.<br/>They flew into the nest together.* | The two sentences are not equivalent, but share some details. 1 | *The woman is playing the violin.<br/>The young lady enjoys listening to the guitar.* | The two sentences are not equivalent, but are on the same topic. 0 | *The black dog is running through the snow.<br/>A race car driver is driving his car through the mud.* | The two sentences are completely dissimilar. An example: ``` { "sentence1": "A man is playing a large flute.", "sentence2": "A man is playing a flute.", "similarity_score": 3.8 } ``` ### Data Fields - `sentence1`: The 1st sentence as a `str`. - `sentence2`: The 2nd sentence as a `str`. - `similarity_score`: The similarity score as a `float` which is `<= 5.0` and `>= 0.0`. ### Data Splits - train with 5749 samples - dev with 1500 samples - test with 1379 sampples ## 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 See [LICENSE](https://github.com/PhilipMay/stsb-multi-mt/blob/main/LICENSE) and [download at original dataset](https://ixa2.si.ehu.eus/stswiki/index.php/STSbenchmark). ### Citation Information ``` @InProceedings{huggingface:dataset:stsb_multi_mt, title = {Machine translated multilingual STS benchmark dataset.}, author={Philip May}, year={2021}, url={https://github.com/PhilipMay/stsb-multi-mt} } ``` ### Contributions Thanks to [@PhilipMay](https://github.com/PhilipMay) for adding this dataset.
[ -0.3001619279384613, -0.7435988187789917, 0.3705913722515106, 0.28692758083343506, -0.3820558488368988, 0.028170514851808548, -0.40941670536994934, -0.3188658654689789, 0.3340045213699341, 0.349874883890152, -0.6866892576217651, -0.6712510585784912, -0.5483822822570801, 0.25420573353767395, -0.21926794946193695, 0.8726031184196472, -0.28910836577415466, 0.17621861398220062, -0.23267938196659088, -0.3293556272983551, -0.43314194679260254, -0.4832214117050171, -0.5021829605102539, -0.0092046819627285, 0.2821118235588074, 0.4218417704105377, 0.38831639289855957, 0.6414130926132202, 0.6001449227333069, 0.3423077464103699, -0.0019293418154120445, 0.19752317667007446, -0.3693937361240387, 0.016194874420762062, -0.044046323746442795, -0.38410577178001404, -0.14428012073040009, 0.11731677502393723, 0.6801222562789917, 0.6049344539642334, 0.0696539655327797, 0.428329199552536, 0.26273640990257263, 0.5053876638412476, -0.15518423914909363, 0.3912550210952759, -0.344571053981781, 0.00034396510454826057, -0.3265109062194824, -0.1857515275478363, -0.3445409834384918, -0.27348169684410095, -0.22397728264331818, -0.5317789316177368, 0.12907584011554718, 0.18845094740390778, 1.0364726781845093, 0.20031636953353882, -0.3836170732975006, -0.14912234246730804, -0.3136636018753052, 0.813078761100769, -0.6019791960716248, 0.16480685770511627, 0.2370075285434723, 0.19516393542289734, -0.05316225439310074, -0.5682372450828552, -0.5905536413192749, -0.024369945749640465, -0.43677470088005066, 0.44408634305000305, -0.09752480685710907, -0.42912518978118896, 0.4088844656944275, 0.3304576575756073, -0.7234437465667725, -0.018062276765704155, -0.6217955350875854, -0.0971657931804657, 0.7095255255699158, 0.184884175658226, 0.14819204807281494, -0.6662476658821106, -0.5596587657928467, -0.4365454912185669, -0.6037761569023132, 0.08207802474498749, 0.47670140862464905, 0.6941094398498535, -0.6159705519676208, 0.7277581095695496, 0.06586328893899918, 0.36283525824546814, -0.15092900395393372, 0.0019608931615948677, 0.8801293969154358, -0.6500062346458435, 0.03046775981783867, -0.16223950684070587, 0.9226149916648865, 0.5732129216194153, 0.1473502218723297, 0.07904887199401855, 0.08141672611236572, 0.21915452182292938, 0.01483515277504921, -0.5204125642776489, -0.07364366948604584, 0.31131088733673096, -0.596341609954834, -0.12867648899555206, 0.2886139154434204, -0.8356546759605408, -0.04503488168120384, -0.3313242793083191, 0.31657981872558594, -0.4374487102031708, -0.2222781628370285, -0.05741553381085396, -0.412411093711853, 0.1133996844291687, -0.17308828234672546, -0.3177463710308075, 0.25445082783699036, 0.5335950255393982, 0.8339141607284546, -0.22241030633449554, -0.49685046076774597, -0.32765108346939087, 0.11878428608179092, -0.0551997646689415, 0.6396272778511047, -0.4182014465332031, -0.35513830184936523, 0.012620281428098679, 0.548590362071991, -0.2173890322446823, -0.36782947182655334, 0.8614017963409424, -0.052027639001607895, 0.6320576071739197, -0.34786364436149597, -0.48655587434768677, -0.052589770406484604, 0.22196830809116364, -0.6556946635246277, 1.4293712377548218, 0.09751898050308228, -0.8605196475982666, 0.2670118510723114, -0.8241278529167175, -0.6173770427703857, -0.10385718941688538, -0.04053483530879021, -0.39463889598846436, -0.07305491715669632, 0.16363976895809174, 0.5904390811920166, -0.17574527859687805, 0.20209968090057373, -0.27017658948898315, -0.26649531722068787, 0.03083464503288269, -0.0767292007803917, 1.028462290763855, 0.16969139873981476, -0.28630945086479187, -0.022496560588479042, -0.8638541102409363, 0.030816886574029922, 0.40520477294921875, -0.34858208894729614, -0.3365756571292877, -0.036328982561826706, 0.4168858826160431, 0.3586178719997406, 0.2804710865020752, -0.5045201778411865, -0.0050650667399168015, -0.34072521328926086, 0.5579105019569397, 0.7200807332992554, 0.052681975066661835, 0.17197637259960175, -0.4530850052833557, 0.3782314956188202, 0.22975647449493408, 0.1738363653421402, -0.1902124136686325, -0.5070295929908752, -0.6520341634750366, -0.18181201815605164, 0.31872841715812683, 0.6780359148979187, -0.7307254076004028, 0.7209136486053467, -0.6131383776664734, -0.5788877010345459, -0.7344166040420532, -0.04950127378106117, 0.46666350960731506, 0.27214768528938293, 0.7169498801231384, -0.2999741733074188, -0.8662130236625671, -0.9506767392158508, -0.18525569140911102, -0.04616710543632507, 0.14580804109573364, 0.39240729808807373, 0.7740249037742615, 0.06220138818025589, 0.4851425886154175, -0.6425755620002747, -0.34158453345298767, -0.4284168779850006, -0.08132434636354446, 0.35865941643714905, 0.680720329284668, 0.6598373055458069, -0.8379583954811096, -0.6353914141654968, -0.35129979252815247, -0.7057315111160278, -0.038454700261354446, -0.15139049291610718, -0.16404113173484802, 0.19129590690135956, 0.4268769323825836, -0.5017848610877991, 0.28005915880203247, 0.49506282806396484, -0.4175049960613251, 0.38789981603622437, -0.12265746295452118, 0.4286454916000366, -1.5983407497406006, 0.19755598902702332, 0.12538860738277435, 0.020082563161849976, -0.45055091381073, 0.17373855412006378, -0.031778912991285324, 0.06406518071889877, -0.4606735110282898, 0.43240663409233093, -0.43415752053260803, 0.007075361907482147, 0.16103334724903107, 0.4471219778060913, 0.05482963100075722, 0.4912119209766388, -0.07055685669183731, 0.6219666004180908, 0.5786421298980713, -0.4031543731689453, 0.2943381369113922, 0.607520580291748, -0.45842304825782776, 0.7426190972328186, -0.6531822085380554, -0.14327745139598846, -0.22110454738140106, 0.26279306411743164, -0.9877721071243286, -0.02318427339196205, 0.3893228769302368, -0.5029738545417786, 0.1394619643688202, -0.08225778490304947, -0.8854531645774841, -0.6669986844062805, -0.5193907618522644, -0.06896611303091049, 0.4359343647956848, -0.3877611458301544, 0.39737725257873535, 0.3485390841960907, -0.05233444646000862, -0.512404203414917, -1.0745198726654053, 0.09832621365785599, -0.41718223690986633, -0.5187790989875793, 0.38243257999420166, -0.2810992896556854, -0.06749085336923599, 0.24293948709964752, 0.0332108698785305, 0.022240009158849716, 0.07587062567472458, 0.3511296808719635, 0.38290154933929443, -0.24738182127475739, 0.1510080248117447, -0.01706572249531746, -0.12108296900987625, -0.10386806726455688, 0.024700690060853958, 0.5399010181427002, -0.04335691034793854, -0.2651040852069855, -0.38798049092292786, 0.5577110648155212, 0.2885451018810272, -0.13985414803028107, 0.7803157567977905, 0.8584168553352356, -0.17361485958099365, 0.2228185534477234, -0.47086620330810547, -0.11797842383384705, -0.4217830002307892, 0.29680028557777405, -0.6064523458480835, -0.7815450429916382, 0.5627105832099915, 0.1097954511642456, 0.0973735824227333, 0.7692734599113464, 0.4151311218738556, -0.23339159786701202, 0.6936505436897278, 0.32650133967399597, -0.09253949671983719, 0.40441808104515076, -0.3632565438747406, 0.025583801791071892, -0.9133071899414062, -0.22287143766880035, -0.7980419397354126, -0.4482474625110626, -0.7971464991569519, -0.4183230698108673, 0.11987096071243286, -0.040956761687994, -0.30786389112472534, 0.8367308974266052, -0.5477466583251953, 0.3565116226673126, 0.7481222748756409, 0.11907705664634705, 0.08666574954986572, 0.08247507363557816, -0.1938389539718628, -0.22674822807312012, -0.6298201084136963, -0.5097500681877136, 1.1424355506896973, 0.12117686867713928, 0.3394613564014435, 0.17688041925430298, 0.6794715523719788, 0.15190456807613373, -0.07998444885015488, -0.28605079650878906, 0.6393932104110718, -0.38665932416915894, -0.6574075222015381, -0.07029712200164795, -0.4901382625102997, -1.0554534196853638, 0.2310369908809662, -0.40235424041748047, -0.6076083779335022, 0.056746114045381546, -0.12145800143480301, -0.09860139340162277, 0.25344571471214294, -0.874491274356842, 0.9989738464355469, -0.20301750302314758, -0.2744544744491577, -0.27562156319618225, -0.9913464784622192, 0.036576785147190094, 0.08993466198444366, 0.4513404071331024, -0.09991886466741562, 0.04172191768884659, 0.8295547366142273, -0.18096964061260223, 0.8449026346206665, -0.23678360879421234, 0.2782140076160431, 0.2877260446548462, -0.35070863366127014, 0.45854219794273376, -0.1924988031387329, -0.12429829686880112, 0.31973689794540405, 0.1386277675628662, -0.414058119058609, -0.2390095740556717, 0.728701651096344, -0.7900164723396301, -0.3525209426879883, -0.4449809193611145, -0.4121056795120239, -0.018485134467482567, 0.32871702313423157, 0.1466825008392334, 0.3669520318508148, -0.2319791316986084, 0.3453372120857239, 0.2599882185459137, -0.2581080496311188, 0.3680165410041809, 0.5339384078979492, 0.16951951384544373, -0.5432484149932861, 0.543422281742096, 0.17535355687141418, 0.09142307192087173, 0.5566575527191162, 0.1042199581861496, -0.4351150691509247, -0.2555524706840515, -0.4036671817302704, 0.371535062789917, -0.629971444606781, -0.16154295206069946, -0.7218095064163208, -0.12716898322105408, -0.6446591019630432, -0.02458229847252369, -0.021035173907876015, -0.621096670627594, -0.32834112644195557, -0.39042508602142334, 0.45691585540771484, 0.419943630695343, -0.3006039261817932, 0.2327648103237152, -0.653728187084198, 0.3421822786331177, -0.28561630845069885, 0.2550088167190552, -0.18717928230762482, -0.5874289274215698, -0.306095689535141, 0.11807283014059067, -0.3019094467163086, -0.7336931228637695, 0.18230856955051422, 0.15373578667640686, 0.7650405168533325, 0.12922753393650055, 0.006028032395988703, 0.9161258339881897, -0.5995817184448242, 1.1023736000061035, 0.19456727802753448, -0.8343557119369507, 0.6824828386306763, -0.10583154112100601, 0.22534359991550446, 0.8014485239982605, 0.45229101181030273, -0.6634014248847961, -0.4367886781692505, -0.8601944446563721, -0.9652432799339294, 0.80156409740448, 0.1883215606212616, 0.2548986077308655, -0.1284223049879074, 0.10318043828010559, 0.148037388920784, 0.2499653846025467, -0.9149172902107239, -0.7100861072540283, -0.2665191888809204, -0.40537092089653015, -0.3683866262435913, -0.11217141151428223, -0.28320395946502686, -0.30848199129104614, 0.8702263832092285, 0.12720640003681183, 0.32224249839782715, 0.05572602525353432, -0.1789957582950592, 0.06128963828086853, 0.3585246503353119, 0.41630059480667114, 0.2755288779735565, -0.0843772292137146, 0.16836310923099518, 0.2872319519519806, -0.3943386971950531, -0.023885386064648628, 0.3300268352031708, -0.1138138696551323, 0.0746367871761322, 0.46355578303337097, 0.7676500678062439, 0.30465614795684814, -0.5855433344841003, 0.6217555403709412, 0.15877757966518402, -0.2912217676639557, -0.4801090955734253, -0.15874150395393372, 0.16991111636161804, 0.4060390889644623, 0.1499338001012802, 0.11545199900865555, -0.0176406092941761, -0.6511310338973999, 0.25631290674209595, 0.12209834903478622, -0.2736416161060333, -0.25842976570129395, 0.7086971998214722, 0.09788933396339417, -0.11218741536140442, 0.5366886258125305, -0.31772732734680176, -0.45622384548187256, 0.5696770548820496, 0.5011876225471497, 0.6448267698287964, -0.04202244430780411, 0.27645379304885864, 0.7570157051086426, 0.5244986414909363, -0.1540001630783081, 0.5957697629928589, 0.10755090415477753, -0.6600537896156311, -0.3549575209617615, -0.39227715134620667, 0.009458503685891628, 0.11478809267282486, -0.8156651854515076, 0.3579891324043274, -0.11576591432094574, -0.08267028629779816, 0.030335133895277977, 0.24543915688991547, -0.8202016949653625, 0.021269656717777252, -0.047386568039655685, 0.8740460872650146, -1.159576416015625, 0.6266605257987976, 0.8192379474639893, -0.6949322819709778, -0.7402079105377197, -0.20640014111995697, -0.002532221842557192, -0.7664859890937805, 0.45456498861312866, 0.2484537959098816, 0.41851645708084106, -0.21229085326194763, -0.4111097455024719, -0.8089316487312317, 1.194693922996521, 0.08042894303798676, -0.33591175079345703, 0.26039907336235046, 0.29944026470184326, 0.7465323805809021, -0.36555466055870056, 0.2224140465259552, 0.3989776074886322, 0.7984038591384888, 0.029947996139526367, -0.7497063875198364, 0.3134949803352356, -0.4985993504524231, -0.07156449556350708, 0.09283190965652466, -0.8098214864730835, 0.7634560465812683, -0.0602133683860302, -0.3775554895401001, 0.044533029198646545, 0.42784735560417175, 0.2355131059885025, 0.2761228084564209, 0.49078601598739624, 0.7969922423362732, 0.6152378916740417, -0.37317153811454773, 0.8567979335784912, -0.3934842348098755, 0.4578777253627777, 1.1798391342163086, -0.18558232486248016, 0.9432627558708191, 0.45540937781333923, -0.4714207351207733, 0.6456739902496338, 0.6356337070465088, -0.6025516390800476, 0.5254774689674377, 0.0726068839430809, 0.27063044905662537, -0.09218292683362961, -0.03414838761091232, -0.5684205293655396, 0.35562247037887573, 0.11005900055170059, -0.4595679044723511, -0.127040833234787, 0.026131510734558105, 0.2456478327512741, 0.1960010677576065, 0.019776303321123123, 0.5999922752380371, 0.0035258138086646795, -0.571945309638977, 0.33112800121307373, 0.04294358193874359, 0.6755433082580566, -0.5739555358886719, 0.1826101392507553, -0.06230485439300537, 0.006349771749228239, -0.26928091049194336, -1.0332379341125488, 0.39430299401283264, 0.02319202944636345, -0.22766080498695374, -0.341137170791626, 0.35082539916038513, -0.5539188981056213, -0.605256974697113, 0.33140668272972107, 0.6868670582771301, 0.4311123788356781, 0.2851153314113617, -1.1139575242996216, 0.03613855317234993, 0.13225515186786652, -0.21778351068496704, 0.08178365975618362, 0.39817529916763306, 0.10801789164543152, 0.38235175609588623, 0.5785500407218933, 0.10404933243989944, 0.017812440171837807, 0.24786430597305298, 0.7288467884063721, -0.6777916550636292, -0.4463096261024475, -0.6703846454620361, 0.6056029796600342, -0.4980696737766266, -0.4421818256378174, 1.0550928115844727, 1.029120922088623, 1.025807499885559, -0.16464300453662872, 0.8916831612586975, -0.4922836124897003, 0.8335117101669312, -0.331531286239624, 0.324960857629776, -0.8040593266487122, -0.0036774263717234135, -0.40571704506874084, -0.7932682037353516, -0.38264015316963196, 0.5327383279800415, -0.25735610723495483, 0.0013904672814533114, 0.9897511005401611, 0.8368898034095764, -0.09403464198112488, -0.022894863039255142, -0.047257810831069946, 0.41221001744270325, 0.042191509157419205, 0.6073033213615417, 0.5620827674865723, -0.8380855917930603, 0.7455185651779175, -0.25564318895339966, 0.0005340382340364158, -0.12138428539037704, -0.724118709564209, -0.9818944334983826, -0.9804844260215759, -0.48069965839385986, -0.46820327639579773, 0.0046120681799948215, 0.9604873657226562, 0.3963477611541748, -0.9461007714271545, -0.14176738262176514, 0.21732863783836365, 0.10794679075479507, -0.5124713778495789, -0.26837602257728577, 0.6888653039932251, -0.009577026590704918, -0.8181571960449219, 0.24673043191432953, 0.03181169182062149, 0.08429775387048721, 0.034862417727708817, 0.10605994611978531, -0.43280932307243347, -0.15281637012958527, 0.5836701989173889, -0.055808451026678085, -0.5872889161109924, -0.4096962511539459, -0.009724942035973072, -0.11565641313791275, 0.23242181539535522, 0.3720235526561737, -0.414599746465683, 0.08999508619308472, 0.5571350455284119, 0.2915463447570801, 0.5736492872238159, 0.03417866677045822, -0.024605274200439453, -0.8820668458938599, 0.14493441581726074, -0.05087500438094139, 0.5885780453681946, 0.4242701530456543, -0.19920478761196136, 0.9115089774131775, 0.4233003258705139, -0.33952638506889343, -0.8594962358474731, -0.006665950175374746, -1.2407662868499756, -0.3146129548549652, 1.2597278356552124, -0.18304888904094696, -0.09900210797786713, -0.08312682807445526, -0.17519409954547882, 0.312245637178421, -0.44848382472991943, 0.62257981300354, 0.8848297595977783, 0.22717900574207306, -0.02931535243988037, -0.4386183023452759, 0.12074394524097443, 0.19258034229278564, -0.8619096279144287, -0.14315839111804962, 0.3837190270423889, 0.3956984579563141, 0.29101496934890747, 0.43961572647094727, -0.21524733304977417, -0.11044667661190033, 0.06282630562782288, 0.2071363627910614, -0.040623489767313004, 0.015755752101540565, -0.0981503427028656, 0.230322003364563, -0.4846750795841217, -0.25806760787963867 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
swag
null
2023-01-25T14:45:08Z
5,476
12
swag
[ "task_categories:text-classification", "task_ids:natural-language-inference", "annotations_creators:crowdsourced", "annotations_creators:machine-generated", "language_creators:found", "multilinguality:monolingual", "size_categories:100K<n<1M", "source_datasets:original", "language:en", "license:unknown", "arxiv:1808.05326", "region:us" ]
2023-01-25T14:45:08Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced - machine-generated language_creators: - found language: - en license: - unknown multilinguality: - monolingual size_categories: - 100K<n<1M source_datasets: - original task_categories: - text-classification task_ids: - natural-language-inference paperswithcode_id: swag pretty_name: Situations With Adversarial Generations dataset_info: - config_name: regular features: - name: video-id dtype: string - name: fold-ind dtype: string - name: startphrase dtype: string - name: sent1 dtype: string - name: sent2 dtype: string - name: gold-source dtype: string - name: ending0 dtype: string - name: ending1 dtype: string - name: ending2 dtype: string - name: ending3 dtype: string - name: label dtype: class_label: names: '0': '0' '1': '1' '2': '2' '3': '3' splits: - name: train num_bytes: 30274672 num_examples: 73546 - name: validation num_bytes: 8451771 num_examples: 20006 - name: test num_bytes: 8417644 num_examples: 20005 download_size: 43954806 dataset_size: 47144087 - config_name: full features: - name: video-id dtype: string - name: fold-ind dtype: string - name: startphrase dtype: string - name: gold-ending dtype: string - name: distractor-0 dtype: string - name: distractor-1 dtype: string - name: distractor-2 dtype: string - name: distractor-3 dtype: string - name: gold-source dtype: string - name: gold-type dtype: string - name: distractor-0-type dtype: string - name: distractor-1-type dtype: string - name: distractor-2-type dtype: string - name: distractor-3-type dtype: string - name: sent1 dtype: string - name: sent2 dtype: string splits: - name: train num_bytes: 34941649 num_examples: 73546 - name: validation num_bytes: 9832603 num_examples: 20006 download_size: 40537624 dataset_size: 44774252 --- # Dataset Card for Situations With Adversarial Generations ## 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:** [SWAG AF](https://rowanzellers.com/swag/) - **Repository:** [Github repository](https://github.com/rowanz/swagaf/tree/master/data) - **Paper:** [SWAG: A Large-Scale Adversarial Dataset for Grounded Commonsense Inference](https://arxiv.org/abs/1808.05326) - **Leaderboard:** [SWAG Leaderboard](https://leaderboard.allenai.org/swag) - **Point of Contact:** [Rowan Zellers](https://rowanzellers.com/#contact) ### Dataset Summary Given a partial description like "she opened the hood of the car," humans can reason about the situation and anticipate what might come next ("then, she examined the engine"). SWAG (Situations With Adversarial Generations) is a large-scale dataset for this task of grounded commonsense inference, unifying natural language inference and physically grounded reasoning. The dataset consists of 113k multiple choice questions about grounded situations (73k training, 20k validation, 20k test). Each question is a video caption from LSMDC or ActivityNet Captions, with four answer choices about what might happen next in the scene. The correct answer is the (real) video caption for the next event in the video; the three incorrect answers are adversarially generated and human verified, so as to fool machines but not humans. SWAG aims to be a benchmark for evaluating grounded commonsense NLI and for learning representations. ### Supported Tasks and Leaderboards The dataset introduces the task of grounded commonsense inference, unifying natural language inference and commonsense reasoning. ### Languages The text in the dataset is in English. The associated BCP-47 code is `en`. ## Dataset Structure ### Data Instances The `regular` configuration should be used for modeling. An example looks like this: ``` { "video-id": "anetv_dm5WXFiQZUQ", "fold-ind": "18419", "startphrase", "He rides the motorcycle down the hall and into the elevator. He", "sent1": "He rides the motorcycle down the hall and into the elevator." "sent2": "He", "gold-source": "gold", "ending0": "looks at a mirror in the mirror as he watches someone walk through a door.", "ending1": "stops, listening to a cup of coffee with the seated woman, who's standing.", "ending2": "exits the building and rides the motorcycle into a casino where he performs several tricks as people watch.", "ending3": "pulls the bag out of his pocket and hands it to someone's grandma.", "label": 2, } ``` Note that the test are reseved for blind submission on the leaderboard. The full train and validation sets provide more information regarding the collection process. ### Data Fields - `video-id`: identification - `fold-ind`: identification - `startphrase`: the context to be filled - `sent1`: the first sentence - `sent2`: the start of the second sentence (to be filled) - `gold-source`: generated or comes from the found completion - `ending0`: first proposition - `ending1`: second proposition - `ending2`: third proposition - `ending3`: fourth proposition - `label`: the correct proposition More info concerning the fields can be found [on the original repo](https://github.com/rowanz/swagaf/tree/master/data). ### Data Splits The dataset consists of 113k multiple choice questions about grounded situations: 73k for training, 20k for validation, and 20k for (blind) test. ## Dataset Creation ### Curation Rationale The authors seek dataset diversity while minimizing annotation artifacts, conditional stylistic patterns such as length and word-preference biases. To avoid introducing easily “gamed” patterns, they introduce Adversarial Filtering (AF), a generally- applicable treatment involving the iterative refinement of a set of assignments to increase the entropy under a chosen model family. The dataset is then human verified by paid crowdsourcers. ### Source Data This section describes the source data (e.g. news text and headlines, social media posts, translated sentences,...) #### Initial Data Collection and Normalization The dataset is derived from pairs of consecutive video captions from [ActivityNet Captions](https://cs.stanford.edu/people/ranjaykrishna/densevid/) and the [Large Scale Movie Description Challenge](https://sites.google.com/site/describingmovies/). The two datasets are slightly different in nature and allow us to achieve broader coverage: ActivityNet contains 20k YouTube clips containing one of 203 activity types (such as doing gymnastics or playing guitar); LSMDC consists of 128k movie captions (audio descriptions and scripts). #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process Annotations are first machine generated and then adversarially filtered. Finally, the remaining examples are human-verified by paid crowdsourcers. #### 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 Unknown ### Citation Information ``` @inproceedings{zellers2018swagaf, title={SWAG: A Large-Scale Adversarial Dataset for Grounded Commonsense Inference}, author={Zellers, Rowan and Bisk, Yonatan and Schwartz, Roy and Choi, Yejin}, booktitle = "Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing (EMNLP)", year={2018} } ``` ### Contributions Thanks to [@VictorSanh](https://github.com/VictorSanh) for adding this dataset.
[ -0.5577742457389832, -0.9284745454788208, -0.010127230547368526, 0.07887793332338333, -0.2656039893627167, -0.13675765693187714, -0.2539265751838684, -0.1993214339017868, 0.1478772759437561, 0.3417663872241974, -0.83203125, -0.6400218605995178, -0.5823538899421692, -0.029072878882288933, -0.3212450444698334, 1.1656337976455688, 0.16262485086917877, -0.08696853369474411, -0.20361588895320892, -0.24560311436653137, -0.2815447151660919, -0.46451038122177124, -0.4226837456226349, -0.19140596687793732, 0.35499900579452515, 0.3364851474761963, 0.8504042625427246, 0.5669366717338562, 0.3294762074947357, 0.2790454030036926, -0.39230743050575256, 0.10415887832641602, -0.6942920684814453, -0.08170264959335327, -0.35368168354034424, -0.03628493472933769, -0.3262978494167328, 0.26186662912368774, 0.4084143042564392, 0.5078988075256348, -0.08099085092544556, 0.3563570976257324, 0.05158215016126633, 0.4665921628475189, -0.5981601476669312, -0.0034499140456318855, -0.6279895901679993, 0.07885779440402985, -0.14025810360908508, -0.13060897588729858, -0.15659047663211823, -0.055969081819057465, 0.03612136095762253, -0.7105238437652588, 0.5396249890327454, 0.1279532015323639, 1.0395647287368774, 0.11112327128648758, -0.4084465503692627, -0.2109927237033844, -0.21530169248580933, 0.6864982843399048, -0.7029668688774109, 0.04879748821258545, 0.5403956770896912, 0.15023599565029144, -0.2549285292625427, -0.6695170998573303, -0.664101779460907, 0.048089999705553055, -0.13109901547431946, 0.20241639018058777, -0.12844373285770416, 0.09862444549798965, 0.3953576385974884, 0.4128905236721039, -0.6796517372131348, -0.09041589498519897, -0.5292720794677734, -0.10707550495862961, 0.9032107591629028, 0.055345650762319565, 0.2279573678970337, -0.3787926137447357, -0.45943793654441833, -0.20680570602416992, -0.4744761288166046, -0.0802459567785263, 0.4639093577861786, 0.23652392625808716, -0.28210723400115967, 0.6835760474205017, -0.29842057824134827, 0.593558669090271, -0.03905672952532768, -0.08177953213453293, 0.531604528427124, -0.49449703097343445, -0.41655316948890686, -0.04002070054411888, 0.641906201839447, 0.4958212077617645, 0.15190154314041138, 0.1900034099817276, -0.044068921357393265, -0.10654129087924957, 0.18131519854068756, -0.7474278211593628, -0.3303859829902649, 0.35893040895462036, -0.5562280416488647, -0.6512106657028198, 0.1835632175207138, -1.0236952304840088, -0.6178039312362671, -0.20557884871959686, 0.3457736074924469, -0.2548634707927704, -0.33609461784362793, 0.0321316234767437, -0.5608556866645813, 0.3869045376777649, 0.18366855382919312, -0.5350986123085022, 0.11910746991634369, 0.6344774961471558, 0.7566655278205872, -0.032865382730960846, -0.37306898832321167, -0.41244614124298096, -0.08789648115634918, -0.06440700590610504, 0.3718123435974121, -0.2785951495170593, -0.2569947838783264, 0.1201365739107132, 0.2783958911895752, -0.04628024250268936, -0.18634918332099915, 0.6973646283149719, -0.5249009728431702, 0.3150852620601654, -0.37902936339378357, -0.29799747467041016, -0.22751645743846893, 0.5054686665534973, -0.6046109199523926, 1.0062990188598633, -0.17358288168907166, -0.9094303250312805, 0.4487183392047882, -0.7127377390861511, -0.5861510038375854, 0.031919341534376144, -0.0338207446038723, -0.36651161313056946, -0.1255207359790802, 0.22465938329696655, 0.6181329488754272, -0.252313494682312, 0.6225628852844238, -0.4972926080226898, -0.28848201036453247, 0.24240408837795258, -0.6980823278427124, 1.2121471166610718, 0.2505206763744354, -0.6325501203536987, -0.04477953165769577, -0.9396348595619202, -0.1599964201450348, 0.39765700697898865, -0.06142920255661011, -0.25211939215660095, -0.08942108601331711, 0.2545601427555084, 0.4159371852874756, 0.17493577301502228, -0.30059096217155457, -0.03305712342262268, -0.23678451776504517, 0.3522755205631256, 0.8850140571594238, 0.20050495862960815, 0.27620095014572144, -0.14588366448879242, 0.4570704996585846, -0.023577306419610977, 0.3215332627296448, 0.022149262949824333, -0.6355724930763245, -0.6432867646217346, -0.28847578167915344, 0.0800565555691719, 0.5995815396308899, -0.7942068576812744, 0.7306575775146484, -0.2934381365776062, -0.4427294135093689, -0.3451351225376129, 0.13348521292209625, 0.5542708039283752, 0.4805983603000641, 0.4440855383872986, -0.05462798848748207, -0.49457305669784546, -0.7560491561889648, -0.008286346681416035, -0.1401275396347046, 0.09205366671085358, 0.5249802470207214, 0.84309983253479, -0.0423712283372879, 0.6925848126411438, -0.6503517627716064, -0.38482245802879333, -0.3744525611400604, 0.11670950055122375, 0.15795186161994934, 0.5417354106903076, 0.3528665006160736, -1.1611690521240234, -0.05826355516910553, -0.23015780746936798, -0.8328547477722168, -0.017275094985961914, -0.22291097044944763, -0.20060445368289948, -0.035570040345191956, 0.35749849677085876, -0.4580463171005249, 0.5614789128303528, 0.5911361575126648, -0.7586891651153564, 0.43459179997444153, -0.045125119388103485, 0.1999036967754364, -1.0934441089630127, 0.3248951733112335, 0.05400177091360092, 0.12079804390668869, -0.6197487115859985, 0.13587968051433563, -0.25673335790634155, -0.15467528998851776, -0.5951396822929382, 0.5793153047561646, -0.439715713262558, -0.04428507387638092, 0.09089484065771103, 0.32605934143066406, 0.13079231977462769, 0.6530186533927917, -0.13260893523693085, 0.7232586741447449, 0.5909347534179688, -0.5322135090827942, 0.39701786637306213, 0.3795478343963623, -0.34549400210380554, 0.7226383686065674, -0.7346328496932983, -0.23317433893680573, -0.29365429282188416, 0.2646085321903229, -1.0049598217010498, -0.4790572226047516, 0.332950234413147, -0.680398166179657, 0.1170780286192894, -0.22763673961162567, -0.5900125503540039, -0.3322472870349884, -0.4640767574310303, 0.2192200869321823, 0.39022284746170044, -0.652070164680481, 0.4561103284358978, 0.3685588240623474, 0.18731224536895752, -0.820768415927887, -0.8810958862304688, 0.21006634831428528, -0.41469117999076843, -0.6775781512260437, 0.20079395174980164, -0.060580767691135406, -0.271770715713501, 0.08027175068855286, 0.06798727810382843, -0.08028031140565872, 0.3911515176296234, 0.3546273112297058, 0.256986528635025, 0.0194537416100502, 0.003967234864830971, -0.08203370124101639, 0.20919325947761536, 0.023181810975074768, -0.00594785250723362, 0.3258083164691925, -0.2332618683576584, -0.3279365003108978, -0.2335328906774521, 0.4012261629104614, 0.4317725896835327, -0.06591034680604935, 0.8669190406799316, 0.9632988572120667, -0.4069702625274658, -0.14318418502807617, -0.4309212565422058, -0.06243656203150749, -0.48865237832069397, 0.3705695569515228, -0.21494410932064056, -0.6265844106674194, 0.6214903593063354, 0.38370391726493835, 0.1485937237739563, 0.6063703298568726, 0.3664892315864563, 0.0985407903790474, 1.0203639268875122, 0.12852004170417786, -0.06009513512253761, 0.3541945517063141, -0.590103805065155, 0.015291886404156685, -0.7545508742332458, -0.4218461215496063, -0.27699530124664307, -0.4524375796318054, -0.5086056590080261, -0.39010733366012573, 0.1184113398194313, 0.19133789837360382, -0.39829912781715393, 0.3306749165058136, -0.5149571299552917, 0.4343474209308624, 0.6861921548843384, 0.03172789514064789, -0.05792234465479851, 0.000769148173276335, -0.06319110095500946, -0.09419873356819153, -0.7964681386947632, -0.23484843969345093, 0.9226832985877991, 0.3754418194293976, 0.47641855478286743, 0.2632305324077606, 0.528359055519104, 0.4394042491912842, 0.23869511485099792, -0.5211394429206848, 0.7579156160354614, -0.15004684031009674, -0.8864583373069763, -0.2554610073566437, -0.3497704863548279, -0.9865451455116272, 0.36592262983322144, -0.2660026550292969, -0.5009046792984009, 0.4043354392051697, -0.0594562329351902, -0.09751861542463303, 0.25855377316474915, -0.7092840671539307, 1.01557195186615, -0.30458158254623413, -0.501641571521759, -0.07295063138008118, -1.0143107175827026, 0.5251268744468689, 0.40336546301841736, 0.32268208265304565, -0.027998659759759903, 0.11588830500841141, 0.9386329650878906, -0.3531147241592407, 1.0917160511016846, -0.37849661707878113, 0.17841626703739166, 0.32482069730758667, -0.2885494530200958, 0.5049805641174316, 0.30280551314353943, 0.0811089426279068, 0.20081299543380737, -0.3107326328754425, -0.3847270607948303, -0.4945143461227417, 0.8532100319862366, -0.7259420156478882, -0.5265872478485107, -0.6023915410041809, -0.2352110892534256, 0.11727022379636765, 0.45888763666152954, 0.3654042184352875, 0.5645583271980286, -0.3434253931045532, 0.47032690048217773, 0.8388970494270325, -0.3338897228240967, 0.26085320115089417, 0.187895730137825, 0.2602955996990204, -0.8242701888084412, 0.7996237277984619, 0.06032340228557587, 0.16257452964782715, 0.06842252612113953, 0.09986883401870728, -0.2810532748699188, -0.4579065442085266, -0.5053850412368774, 0.20743384957313538, -0.9819647669792175, -0.28506162762641907, -0.5733097791671753, -0.2677649259567261, -0.5739814043045044, -0.3530769646167755, -0.10689833760261536, -0.32711559534072876, -0.6108146905899048, -0.39380529522895813, 0.4466906189918518, 0.3245074450969696, -0.04281174764037132, 0.044811464846134186, -0.2898224890232086, 0.46280190348625183, 0.24638278782367706, 0.24075134098529816, -0.016963183879852295, -0.6199315190315247, -0.07549092918634415, 0.1596970558166504, -0.18341559171676636, -0.7121662497520447, 0.3417842388153076, 0.3006478548049927, 0.669950008392334, 0.5672889351844788, 0.3728603720664978, 0.8224077224731445, -0.1817425936460495, 1.2727636098861694, 0.07229326665401459, -0.5869132876396179, 0.5602639317512512, -0.3596228063106537, 0.17496876418590546, 0.8238906264305115, 0.16506654024124146, -0.38637447357177734, -0.28039222955703735, -1.107808232307434, -1.167685627937317, 0.6571047902107239, 0.38520869612693787, 0.18442897498607635, -0.228550985455513, -0.006287036929279566, -0.23197221755981445, 0.2665666341781616, -0.7814799547195435, -0.6998502612113953, -0.48088058829307556, -0.18241222202777863, -0.16235889494419098, -0.15739761292934418, -0.5833339095115662, -0.21607661247253418, 0.8838673233985901, -0.02943083830177784, 0.24570631980895996, 0.3042377829551697, -0.13253538310527802, 0.27116531133651733, 0.252716988325119, 0.7831346392631531, 0.37926575541496277, -0.23244363069534302, 0.2137838900089264, 0.1953127384185791, -0.6599429845809937, -0.05452412739396095, 0.2993745505809784, -0.23001663386821747, -0.002924892585724592, 0.45448926091194153, 0.8801118731498718, 0.19265665113925934, -0.9099003672599792, 0.9695356488227844, 0.08036753535270691, -0.4989989697933197, -0.6328126192092896, -0.009263337589800358, -0.2969076335430145, 0.2147136628627777, 0.4385915696620941, 0.15513744950294495, 0.2784607410430908, -0.4318884015083313, 0.38389191031455994, 0.4827842712402344, -0.2783276438713074, -0.24266250431537628, 0.7837502956390381, 0.19662952423095703, -0.19615112245082855, 0.4688309133052826, -0.4965205788612366, -0.561682403087616, 0.664056122303009, 0.3105946481227875, 1.0026646852493286, 0.22800587117671967, 0.44025763869285583, 0.5311024188995361, 0.4352676570415497, -0.23610006272792816, 0.12746784090995789, -0.17698656022548676, -0.6664230227470398, -0.1551910638809204, -0.31775397062301636, -0.051850855350494385, 0.3834587335586548, -0.7787943482398987, 0.3286375105381012, -0.5263453722000122, 0.051346249878406525, -0.28263622522354126, 0.12458241730928421, -0.7086325287818909, 0.422832727432251, 0.08612567186355591, 0.8785553574562073, -1.0969475507736206, 0.5521960258483887, 0.5716257095336914, -0.4981212615966797, -0.5227976441383362, -0.0526844784617424, 0.22016490995883942, -0.7498448491096497, 0.5201750993728638, 0.21394282579421997, 0.1765754371881485, -0.2240772694349289, -0.6779228448867798, -0.7634792923927307, 1.3406821489334106, -0.14843542873859406, 0.052502892911434174, 0.04061681032180786, -0.20759181678295135, 0.6559194326400757, -0.2489137202501297, 0.016075734049081802, 0.49959254264831543, 0.4626556634902954, 0.33946239948272705, -0.3493724465370178, 0.24136318266391754, -0.638252317905426, -0.10204654932022095, -0.14259488880634308, -0.5914577841758728, 0.5933168530464172, -0.17520484328269958, -0.24137279391288757, -0.15476462244987488, 0.6096770763397217, 0.5217618346214294, 0.6124479174613953, 0.54757159948349, 0.6809720993041992, 0.6948566436767578, 0.041514746844768524, 0.9416372776031494, -0.05557228624820709, 0.23883262276649475, 1.0866445302963257, 0.051238082349300385, 0.6912233233451843, 0.46394380927085876, -0.06427612900733948, 0.2935338318347931, 0.5546364784240723, -0.38930392265319824, 0.6334937810897827, 0.1833307445049286, -0.030880367383360863, -0.003876932431012392, -0.11311298608779907, -0.42475777864456177, 0.2675228416919708, 0.4123547375202179, -0.5057182908058167, -0.05169016867876053, 0.10137458145618439, 0.19579456746578217, 0.006151530891656876, -0.2596553564071655, 0.6590948104858398, -0.23258134722709656, -0.6784871220588684, 0.6661701798439026, 0.019765159115195274, 0.7645375728607178, -0.4823112189769745, 0.06423041224479675, -0.20580913126468658, 0.03468428552150726, -0.28909730911254883, -0.8444137573242188, 0.15023839473724365, 0.06727036088705063, -0.024774877354502678, -0.3235722482204437, 0.6949191689491272, -0.4677914083003998, -0.4615021347999573, 0.09133988618850708, 0.12282171100378036, 0.13725149631500244, 0.1503898948431015, -1.020620346069336, -0.10647137463092804, 0.11395859718322754, -0.5414882898330688, 0.3354916572570801, 0.459107369184494, 0.011662782169878483, 0.6138266324996948, 0.7483674883842468, 0.1423684060573578, -0.01160042267292738, 0.14435838162899017, 0.8828057050704956, -0.6150677800178528, -0.4996549189090729, -0.5596343278884888, 0.7418543696403503, -0.6207503080368042, -0.6562455892562866, 0.9508165717124939, 0.5726168155670166, 0.8279281854629517, 0.025161566212773323, 0.8235916495323181, -0.4349600374698639, 0.20083454251289368, -0.4595080018043518, 0.595845103263855, -0.6779003143310547, 0.36016520857810974, -0.36051103472709656, -0.5483571887016296, -0.3497781753540039, 0.5820778608322144, -0.13180896639823914, 0.025296760722994804, 0.433194637298584, 0.9394254088401794, -0.05595899373292923, -0.03613484650850296, 0.19489140808582306, 0.11483694612979889, 0.32537731528282166, 0.36637502908706665, 0.46429479122161865, -0.7297572493553162, 0.7904205918312073, -0.3003963530063629, -0.21214717626571655, -0.3615571856498718, -0.8110977411270142, -1.1007869243621826, -0.7021795511245728, -0.4219326078891754, -0.6875025629997253, -0.005293708760291338, 0.784095823764801, 0.44972458481788635, -0.778764545917511, 0.10482587665319443, -0.22216852009296417, 0.27348026633262634, -0.4479439854621887, -0.3429523706436157, 0.40349116921424866, 0.07088574767112732, -0.4790813624858856, 0.289155513048172, -0.06993698328733444, 0.0000677195203024894, -0.29598572850227356, -0.14041130244731903, -0.4760490655899048, -0.04963824898004532, 0.48395079374313354, 0.32636022567749023, -0.7398535013198853, -0.30116719007492065, 0.08750610798597336, -0.00031049660174176097, -0.29093098640441895, 0.6222920417785645, -0.5134177207946777, 0.38429468870162964, 0.623445451259613, 0.5606090426445007, 0.32327839732170105, 0.2767904996871948, 0.2512460947036743, -0.9596244692802429, 0.24036729335784912, 0.20195372402668, 0.3144548833370209, 0.4209120571613312, -0.5685744285583496, 0.6270527839660645, 0.5438940525054932, -0.48066073656082153, -1.033158302307129, 0.026728302240371704, -1.0701457262039185, -0.3525891900062561, 1.644675612449646, -0.1330559104681015, -0.09185697883367538, -0.36392495036125183, -0.15242210030555725, 0.09533622115850449, -0.43360915780067444, 0.5729665756225586, 0.8559229969978333, 0.3441212475299835, -0.18987226486206055, -0.5771559476852417, 0.5209194421768188, 0.18767228722572327, -0.5283011794090271, 0.19571872055530548, 0.6139366626739502, 0.21856093406677246, 0.1250154823064804, 0.5136869549751282, -0.04385770857334137, 0.3171873986721039, 0.09495309740304947, -0.02610747329890728, -0.2632552683353424, -0.20559155941009521, -0.5333380103111267, 0.35224562883377075, -0.32834896445274353, -0.1877925544977188 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
bigheiniuJ/JimmyLu
bigheiniuJ
2023-10-11T02:09:38Z
5,474
0
null
[ "region:us" ]
2023-10-11T02:09:38Z
2023-10-03T17:24:12.000Z
2023-10-03T17:24:12
--- dataset_info: features: - name: output dtype: string - name: input dtype: string - name: seed dtype: string - name: split dtype: string - name: task dtype: string - name: options sequence: string - name: id dtype: int64 splits: - name: dev num_bytes: 772928 num_examples: 3150 - name: test num_bytes: 25323226 num_examples: 87430 - name: train num_bytes: 793610 num_examples: 3150 download_size: 9003720 dataset_size: 26889764 configs: - config_name: default data_files: - split: dev path: data/dev-* - split: test path: data/test-* - split: train path: data/train-* --- # Dataset Card for "JimmyLu" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
[ -0.526093602180481, -0.2688675820827484, 0.13315731287002563, -0.059639137238264084, -0.24816416203975677, 0.12138348072767258, 0.19604039192199707, -0.342404305934906, 1.0541553497314453, 0.4197399318218231, -0.8362488150596619, -0.707707941532135, -0.6028302907943726, -0.26261627674102783, -0.2318221479654312, 1.5952215194702148, 0.21670733392238617, 0.025899365544319153, -0.49447354674339294, -0.07987524569034576, -0.304573655128479, -0.35606157779693604, -0.6041463017463684, -0.5696858167648315, 1.1187344789505005, 0.6687703728675842, 0.5905174612998962, 0.15538953244686127, 0.6126856803894043, 0.11634145677089691, 0.08505641669034958, -0.2675256133079529, -0.6904042363166809, 0.06363154947757721, -0.15237551927566528, -0.531792402267456, -1.2511537075042725, 0.15279407799243927, 0.4249577224254608, 0.67962646484375, -0.04847496375441551, 0.8551617860794067, -0.07183250039815903, 0.7631397843360901, -0.3965587019920349, 0.6870760917663574, -0.29863372445106506, 0.027009395882487297, -0.7594518065452576, -0.056004635989665985, 0.2626053988933563, -0.7887672781944275, 0.04021520912647247, -1.133322834968567, 0.22355607151985168, -0.03709723427891731, 0.8783758878707886, -0.05886280909180641, 0.1521836370229721, -0.29456818103790283, -0.3500611186027527, 0.14275586605072021, -0.39750269055366516, 0.24735473096370697, 0.8800402879714966, 0.4647480249404907, -0.16246075928211212, -0.6488146781921387, -0.30651676654815674, -0.12109868228435516, -0.018059229478240013, 0.534018337726593, 0.6224457621574402, -0.037090834230184555, 0.7417458891868591, 0.6543503999710083, -0.4241848886013031, -0.5560346245765686, -0.7582139372825623, -0.30451878905296326, 1.0470198392868042, 0.1465805470943451, 0.4039774537086487, -0.10887015610933304, 0.17788024246692657, -0.12981222569942474, -0.4160318970680237, 0.21707852184772491, 0.6009517312049866, 0.3077836036682129, -1.115443229675293, 0.6396573781967163, -0.00909409299492836, 0.3455815017223358, 0.06584729999303818, 0.1144634410738945, 0.613966703414917, -0.32665225863456726, -0.316124826669693, 0.16434182226657867, 0.4509696960449219, 0.3598676323890686, 0.2105889469385147, -0.07189474254846573, 0.21078836917877197, -0.17675606906414032, 0.3489776849746704, -0.8716204166412354, -1.0929487943649292, 0.23593191802501678, -0.7068300247192383, -0.40630537271499634, 0.41086545586586, -1.046714186668396, -0.6355647444725037, -0.26746800541877747, 0.0877511128783226, -0.011401631869375706, -0.6157630085945129, -0.4190588891506195, -0.7284795045852661, 0.4550233483314514, 0.4017352759838104, -0.9781801104545593, 0.21619011461734772, 0.6914033889770508, 0.5112006068229675, 0.5576407313346863, -0.20411767065525055, -0.6382191181182861, 0.32892996072769165, -0.22536912560462952, 0.5789530277252197, -0.6420561075210571, -0.37032556533813477, -0.00397949805483222, 0.5370261073112488, 0.24096286296844482, -0.054809752851724625, 0.8480985164642334, -0.28988417983055115, -0.187229186296463, -0.914082407951355, -0.6179377436637878, -0.13590660691261292, 0.309424489736557, -1.045290231704712, 0.7442224621772766, 0.4353255033493042, -0.8643531799316406, 0.5050081610679626, -0.9362675547599792, -0.32780691981315613, 0.8875703811645508, -0.13426494598388672, -0.4807484447956085, 0.44883987307548523, -0.2107638716697693, 0.4653002917766571, -0.3268127739429474, 0.3802960515022278, -1.0443090200424194, -0.12963607907295227, 0.09687667340040207, 0.3765440583229065, 1.0093586444854736, 0.22927549481391907, 0.43035322427749634, -0.1409873366355896, -0.8772550821304321, -0.11324988305568695, 0.4546598792076111, -0.007194533012807369, -0.5011526942253113, -0.3476601243019104, 0.20999865233898163, -0.2966066002845764, 0.35028862953186035, -0.4103633165359497, 0.6754909157752991, 0.20114538073539734, -0.2963171601295471, 0.5467597842216492, -0.18102701008319855, 0.29712677001953125, -0.4759431481361389, 0.7001200318336487, -0.30130743980407715, 0.6272381544113159, 0.0728197991847992, -0.7509452700614929, -0.6018249988555908, 0.2481028288602829, 0.7462618947029114, 0.576496422290802, -0.7204285860061646, 0.6293950080871582, 0.20377250015735626, -0.654799222946167, -0.4942474663257599, 0.013298281468451023, 0.12452681362628937, 0.3930947184562683, 0.12148866802453995, -0.800064206123352, -0.6644602417945862, -0.7239181995391846, 0.4937981963157654, -0.17559045553207397, 0.062101565301418304, 0.5747960209846497, 0.7378659248352051, -0.25252270698547363, 0.6240918040275574, -0.7219651937484741, -0.2526153028011322, 0.045750588178634644, -0.18218883872032166, 0.3789634108543396, 0.6296364665031433, 0.9579032063484192, -0.6643187999725342, -0.5087778568267822, -0.28732413053512573, -0.8190104961395264, -0.08012096583843231, 0.21421930193901062, -0.46119585633277893, -0.45370838046073914, -0.044992897659540176, -0.3354535400867462, 0.8899624943733215, 0.9502297639846802, -0.35676664113998413, 0.3781152069568634, 0.051106467843055725, 0.28852203488349915, -1.3595869541168213, 0.47361406683921814, -0.1685124635696411, -0.2786523997783661, -0.7033701539039612, 0.1368771642446518, 0.11459042131900787, -0.34226763248443604, 0.10146823525428772, 0.26896288990974426, -0.4016825258731842, -0.2966075837612152, -0.06644957512617111, 0.22754257917404175, -0.006928833667188883, 0.10250405222177505, -0.19345137476921082, 0.510216236114502, 1.3876190185546875, -0.3412567973136902, 1.2131978273391724, 0.5419249534606934, 0.0035041519440710545, 0.9387683272361755, -0.8236806988716125, 0.24511776864528656, -0.23079726099967957, 0.47722944617271423, -0.6748864054679871, -0.7875658273696899, 0.876169741153717, -0.5481569766998291, 0.5602332353591919, -0.8783925175666809, -0.32303741574287415, -0.7826140522956848, -0.5586647391319275, 0.6970433592796326, 0.5138200521469116, -0.6081228256225586, 0.3241315484046936, 0.9860895276069641, -0.12569980323314667, -0.11242299526929855, -0.8276849985122681, 0.11347667127847672, -0.2634753882884979, -0.131253182888031, 0.3553372025489807, -0.5532656908035278, 0.11893622577190399, -0.20452548563480377, 0.43870681524276733, -0.2687094807624817, -0.03902509808540344, 0.5956224203109741, 0.35136112570762634, -0.034629181027412415, 0.3896442651748657, -0.15274810791015625, -0.5183634161949158, 0.132335364818573, -0.21002715826034546, 0.36719954013824463, 0.08817475289106369, 0.06769871711730957, -0.5251625776290894, 0.3996756672859192, 0.22852075099945068, -0.01846681535243988, 0.5299059152603149, 1.0185577869415283, -0.7119002938270569, 0.12778140604496002, -0.3075968325138092, -0.028570588678121567, -0.42769190669059753, -0.12046767771244049, -0.46460673213005066, -0.3681670129299164, 0.7619583606719971, 0.07188953459262848, 0.13722893595695496, 0.6196107864379883, 0.5629087090492249, -0.17029128968715668, 0.7088246941566467, 0.48032820224761963, -0.5599083304405212, 0.2630979120731354, -0.3961724042892456, -0.044431064277887344, -1.018656849861145, -0.5449150204658508, -0.5826676487922668, -0.4638487696647644, -0.8696073293685913, -0.29861360788345337, -0.19742268323898315, 0.30601832270622253, 0.2859981656074524, 0.7808306217193604, -0.6069868803024292, 0.3607257902622223, 0.5806623697280884, 0.12463676184415817, -0.18860766291618347, -0.25200363993644714, 0.2253926396369934, 0.26652607321739197, -0.573008120059967, -0.014673679135739803, 1.2490720748901367, 0.47754889726638794, 1.3160237073898315, 0.2663746178150177, 0.8720004558563232, 0.2384715974330902, 0.20110133290290833, -0.515825629234314, 0.3613959848880768, -0.010477119125425816, -0.6005315780639648, -0.16338661313056946, -0.16304001212120056, -0.9328497052192688, -0.6534117460250854, -0.37550464272499084, -0.563408613204956, 0.25858187675476074, 0.516714334487915, -0.06357203423976898, 0.28674161434173584, -0.557952344417572, 0.6432452201843262, -0.11090032756328583, -0.04946642369031906, -0.1834239661693573, -0.5748341679573059, 0.3618793189525604, 0.1573226898908615, -0.02767675742506981, -0.5663812756538391, 0.18526236712932587, 0.8605486154556274, -0.39323699474334717, 0.9001231789588928, -0.6194481253623962, -0.190279021859169, -0.044154077768325806, -0.26824304461479187, 0.4084217846393585, 0.9732659459114075, -0.0015949112130329013, 0.16020813584327698, 0.02883884496986866, -0.572451114654541, -0.3555600345134735, 1.030653953552246, -0.6245483756065369, 0.05569969117641449, -0.44328248500823975, -0.6544870734214783, 0.02051326259970665, 0.1530754566192627, 0.2854923903942108, 0.837047278881073, -0.18626494705677032, 0.01508023589849472, 0.6533827781677246, 0.12218077480792999, 0.22962459921836853, -0.09509849548339844, -0.44169169664382935, -0.4727398455142975, 0.9688971638679504, 0.1917559802532196, -0.4961075186729431, -0.010623042471706867, 0.43792080879211426, -0.25066760182380676, -0.5225115418434143, -0.6377045512199402, 0.30233144760131836, -0.349515438079834, -0.3701072931289673, -0.3107222020626068, -0.4983772337436676, -0.7291699647903442, -0.2976153790950775, -0.3398052752017975, -0.5331969261169434, -0.7250156998634338, -0.18279433250427246, 0.9126054048538208, 0.7723900675773621, -0.29124075174331665, 0.15153242647647858, -0.7651811242103577, 0.6575727462768555, 0.33418041467666626, 1.1136704683303833, -0.20344308018684387, -0.3762192726135254, -0.4968125820159912, 0.014690362848341465, 0.106438547372818, -0.7204375863075256, -0.06929045170545578, 0.31630927324295044, 0.8037647604942322, 0.2570491433143616, 0.11365323513746262, 0.9492936134338379, -0.06190351024270058, 0.811772346496582, 0.3815154433250427, -0.6961843371391296, 0.9016815423965454, -0.21533726155757904, 0.5308578610420227, 1.0303833484649658, 0.6251568794250488, -0.4232679605484009, -0.32597655057907104, -1.0346863269805908, -0.4848548173904419, 0.7835621237754822, 0.18371520936489105, 0.35605213046073914, 0.34002625942230225, 0.6293900012969971, 0.19050703942775726, 0.25501465797424316, -0.8730455040931702, -0.9627981781959534, -0.27955859899520874, -0.23175953328609467, 0.15020041167736053, -0.5352869033813477, -0.4569685459136963, -0.7004998326301575, 0.8091139793395996, -0.24361445009708405, 0.3958549201488495, 0.05719757825136185, 0.044961538165807724, -0.19655905663967133, -0.26469486951828003, 0.504327118396759, 0.8306840062141418, -0.6049606204032898, -0.3272784650325775, -0.036040693521499634, -0.621130108833313, -0.4678477346897125, 0.6383052468299866, -0.23067258298397064, -0.16120268404483795, 0.5391183495521545, 0.8508781790733337, -0.44925186038017273, -0.0484665222465992, 0.2759339511394501, -0.5639347434043884, -0.4665285646915436, -0.5991787910461426, 0.40668609738349915, 0.15209460258483887, 0.22401925921440125, 0.1944442093372345, -0.4028630554676056, 0.36383217573165894, -0.6134644746780396, 0.41187551617622375, 0.2314186841249466, -0.7618584632873535, -0.6912752389907837, 0.45373257994651794, 0.5803663730621338, -0.5166784524917603, 0.7400596737861633, -0.2897549271583557, -0.38774049282073975, 0.6342093348503113, 0.3670746684074402, 0.8096125721931458, -0.42646321654319763, 0.5669410824775696, 0.661106288433075, -0.023823240771889687, 0.5095396041870117, 0.6093115210533142, -0.43066269159317017, -0.4694574773311615, 0.07805930823087692, -0.3490076959133148, -0.36283260583877563, 0.14624355733394623, -1.1278458833694458, 0.2703821361064911, -0.7928658723831177, -0.3502722382545471, 0.23154348134994507, 0.35587161779403687, -0.7792215943336487, 0.11657275259494781, 0.41391733288764954, 1.1264153718948364, -0.8255862593650818, 1.140630841255188, 0.885617196559906, -0.19815215468406677, -0.6645285487174988, 0.09447503834962845, 0.13425806164741516, -0.6420028209686279, 0.028719238936901093, 0.12896427512168884, 0.5421580672264099, -0.3509383201599121, -0.6882426738739014, -0.7873005270957947, 1.267222285270691, 0.09934978932142258, -0.97301185131073, 0.40260255336761475, -0.3805095851421356, 0.3704025149345398, -0.3649912178516388, 0.4791489839553833, 0.6193909645080566, 0.718734860420227, 0.341213583946228, -0.8079197406768799, -0.12219676375389099, -0.44546616077423096, -0.13138100504875183, 0.4939580261707306, -0.691070556640625, 0.17858941853046417, -0.12194184213876724, 0.0998358502984047, -0.0021353657357394695, 0.6089677810668945, 0.11069462448358536, 0.49084219336509705, 0.47257906198501587, 0.5661231875419617, 1.2147018909454346, -0.26401230692863464, 1.1037732362747192, -0.04671453684568405, 0.7993191480636597, 1.2867412567138672, -0.3342425525188446, -0.2552332878112793, 0.30724892020225525, -0.18070770800113678, 0.20677688717842102, 0.6397485733032227, -0.6150667667388916, 0.5804198384284973, 0.35768672823905945, -0.20117390155792236, 0.048498306423425674, -0.3987492024898529, -0.7990016341209412, 0.24457252025604248, 0.4142192304134369, -0.4215334355831146, 0.04225321486592293, -0.05033509060740471, 0.0987827256321907, -0.4022209346294403, -0.5366095304489136, 0.8142995834350586, -0.05125376954674721, -0.23078776895999908, 0.06912187486886978, -0.35489997267723083, 0.2497856318950653, -0.8123196363449097, -0.2850078046321869, -0.19740784168243408, -0.2391393929719925, -0.516404390335083, -1.1125990152359009, 0.6022720336914062, -0.31237921118736267, -0.22635866701602936, 0.22643393278121948, 0.9065614938735962, -0.6444803476333618, -0.9232781529426575, 0.35880646109580994, -0.10614823549985886, 0.20498314499855042, 0.6209376454353333, -1.5626134872436523, 0.22289371490478516, 0.03741499036550522, 0.002310007344931364, 0.19146274030208588, -0.14632834494113922, 0.21572549641132355, 0.60152268409729, 0.6608651280403137, 0.23860527575016022, -0.48643043637275696, 0.6908365488052368, 0.9687555432319641, -0.6449398994445801, -0.45303189754486084, -0.5028265714645386, 0.6069034934043884, -0.5932358503341675, -0.5006693005561829, 0.7269026637077332, 0.8338755965232849, 0.8450741171836853, -0.13718369603157043, 0.8826857805252075, -0.6952371001243591, 0.41361889243125916, -0.43938788771629333, 0.6717606782913208, -0.5233911275863647, -0.3172452747821808, -0.4140913486480713, -0.8109843134880066, -0.6761404871940613, 0.6673591732978821, 0.355143278837204, -0.1293574869632721, 0.40621522068977356, 0.842052161693573, -0.2814759314060211, 0.2132442146539688, 0.3051260709762573, 0.0336892269551754, 0.3798714280128479, 0.4835607707500458, 0.4731913208961487, -0.688086986541748, 0.022277839481830597, -0.49123868346214294, -0.48633792996406555, -0.1771087944507599, -1.068341612815857, -1.1811875104904175, -0.7610292434692383, -0.7871983647346497, -0.5114383101463318, 0.03898569941520691, 0.9229035377502441, 1.2217355966567993, -1.0717004537582397, -0.23325543105602264, 0.16165940463542938, 0.36368000507354736, 0.1101134866476059, -0.1473097950220108, 0.48609647154808044, 0.19055920839309692, -0.6807599663734436, -0.10824615508317947, 0.22285640239715576, 0.24533675611019135, -0.07745961844921112, -0.16574464738368988, -0.006544686853885651, -0.16363295912742615, 0.2656163275241852, 0.5687777996063232, -0.28354987502098083, -0.42506784200668335, -0.8136624097824097, 0.059258949011564255, 0.07263168692588806, 1.2264071702957153, -0.44687172770500183, 0.4921605587005615, 0.6904004812240601, 0.30089569091796875, 0.7493006587028503, 0.1348392367362976, 0.6246547102928162, -0.6501588225364685, 0.20007863640785217, -0.1013515293598175, 0.4524666368961334, 0.06343136727809906, -0.727813720703125, 0.7828715443611145, 0.31878921389579773, -0.6773273944854736, -0.4575270414352417, 0.11552426964044571, -1.3889281749725342, 0.30113986134529114, 0.6199479699134827, -0.2000764012336731, -0.36416032910346985, -0.35272088646888733, -0.29058265686035156, 0.2777954638004303, -0.8172091245651245, 0.6344098448753357, 0.5611128211021423, 0.12415234744548798, -0.5367963910102844, -0.5147834420204163, 0.7581698894500732, -0.434876948595047, -1.2919727563858032, 0.16781149804592133, 0.4158867597579956, 0.05490223318338394, 0.2444905936717987, 0.7905181646347046, -0.058229461312294006, 0.43683889508247375, 0.07966798543930054, 0.22472989559173584, -0.2612017095088959, -0.7508173584938049, -0.2526063024997711, -0.166389599442482, -0.13464470207691193, -0.39489006996154785 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mc_taco
null
2023-01-25T14:40:09Z
5,465
1
mc-taco
[ "task_categories:question-answering", "task_ids:multiple-choice-qa", "annotations_creators:crowdsourced", "annotations_creators:machine-generated", "language_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:unknown", "arxiv:1909.03065", "region:us" ]
2023-01-25T14:40:09Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - crowdsourced - machine-generated language_creators: - crowdsourced - found language: - en license: - unknown multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - question-answering task_ids: - multiple-choice-qa paperswithcode_id: mc-taco pretty_name: MC-TACO dataset_info: features: - name: sentence dtype: string - name: question dtype: string - name: answer dtype: string - name: label dtype: class_label: names: '0': 'no' '1': 'yes' - name: category dtype: class_label: names: '0': Event Duration '1': Event Ordering '2': Frequency '3': Typical Time '4': Stationarity config_name: plain_text splits: - name: test num_bytes: 1785553 num_examples: 9442 - name: validation num_bytes: 713023 num_examples: 3783 download_size: 2385137 dataset_size: 2498576 --- # Dataset Card for MC-TACO ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [Dataset Structure](#dataset-structure) - [Data Instances](#data-instances) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [Contributions](#contributions) ## Dataset Description - **Homepage:** [MC-TACO](https://cogcomp.seas.upenn.edu/page/resource_view/125) - **Repository:** [Github repository](https://github.com/CogComp/MCTACO) - **Paper:** ["Going on a vacation" takes longer than "Going for a walk": A Study of Temporal Commonsense Understanding](https://arxiv.org/abs/1909.03065) - **Leaderboard:** [AI2 Leaderboard](https://leaderboard.allenai.org/mctaco) ### Dataset Summary MC-TACO (Multiple Choice TemporAl COmmonsense) is a dataset of 13k question-answer pairs that require temporal commonsense comprehension. A system receives a sentence providing context information, a question designed to require temporal commonsense knowledge, and multiple candidate answers. More than one candidate answer can be plausible. ### Supported Tasks and Leaderboards The task is framed as binary classification: givent he context, the question, and the candidate answer, the task is to determine whether the candidate answer is plausible ("yes") or not ("no"). Performance is measured using two metrics: - Exact Match -- the average number of questions for which all the candidate answers are predicted correctly. - F1 -- is slightly more relaxed than EM. It measures the overlap between one’s predictions and the ground truth, by computing the geometric mean of Precision and Recall. ### Languages The text in the dataset is in English. The associated BCP-47 code is `en`. ## Dataset Structure ### Data Instances An example looks like this: ``` { "sentence": "However, more recently, it has been suggested that it may date from earlier than Abdalonymus' death.", "question": "How often did Abdalonymus die?", "answer": "every two years", "label": "no", "category": "Frequency", } ``` ### Data Fields All fields are strings: - `sentence`: a sentence (or context) on which the question is based - `question`: a question querying some temporal commonsense knowledge - `answer`: a potential answer to the question (all lowercased) - `label`: whether the answer is a correct. "yes" indicates the answer is correct/plaussible, "no" otherwise - `category`: the temporal category the question belongs to (among "Event Ordering", "Event Duration", "Frequency", "Stationarity", and "Typical Time") ### Data Splits The development set contains 561 questions and 3,783 candidate answers. The test set contains 1,332 questions and 9,442 candidate answers. From the original repository: *Note that there is no training data, and we provide the dev set as the only source of supervision. The rationale is that we believe a successful system has to bring in a huge amount of world knowledge and derive commonsense understandings prior to the current task evaluation. We therefore believe that it is not reasonable to expect a system to be trained solely on this data, and we think of the development data as only providing a definition of the task.* ## Dataset Creation ### Curation Rationale MC-TACO is used as a testbed to study the temporal commonsense understanding on NLP systems. ### Source Data From the original paper: *The context sentences are randomly selected from [MultiRC](https://www.aclweb.org/anthology/N18-1023/) (from each of its 9 domains). For each sentence, we use crowdsourcing on Amazon Mechanical Turk to collect questions and candidate answers (both correct and wrong ones).* #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations From the original paper: *To ensure the quality of the results, we limit the annotations to native speakers and use qualification tryouts.* #### Annotation process The crowdsourced construction/annotation of the dataset follows 4 steps described in Section 3 of the [paper](https://arxiv.org/abs/1909.03065): question generation, question verification, candidate answer expansion and answer labeling. #### Who are the annotators? Paid crowdsourcers. ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information Unknwon ### Citation Information ``` @inproceedings{ZKNR19, author = {Ben Zhou, Daniel Khashabi, Qiang Ning and Dan Roth}, title = {“Going on a vacation” takes longer than “Going for a walk”: A Study of Temporal Commonsense Understanding }, booktitle = {EMNLP}, year = {2019}, } ``` ### Contributions Thanks to [@VictorSanh](https://github.com/VictorSanh) for adding this dataset.
[ -0.4468950927257538, -0.7218209505081177, 0.31960612535476685, 0.17179541289806366, -0.16266056895256042, -0.07181481271982193, -0.19895388185977936, -0.4144558906555176, 0.297494113445282, 0.298238068819046, -0.6203054785728455, -0.6056601405143738, -0.483380526304245, 0.26971691846847534, 0.053735315799713135, 1.1443214416503906, 0.05828852951526642, -0.22279028594493866, -0.2724582850933075, -0.25988683104515076, -0.21212956309318542, -0.2896697521209717, -0.8511379957199097, -0.12206560373306274, 0.6832589507102966, 0.5650126934051514, 0.5998026728630066, 0.9078378081321716, 0.2111995369195938, 0.1846967339515686, -0.19664213061332703, 0.18349702656269073, -0.37015414237976074, -0.3022211790084839, -0.47007685899734497, -0.1371181607246399, -0.41003620624542236, 0.040913403034210205, 0.4400362968444824, 0.679034411907196, -0.09299313277006149, 0.5650299191474915, -0.004295405000448227, 0.4736274778842926, -0.6412641406059265, 0.37282437086105347, -0.5113389492034912, 0.10100586712360382, -0.24153564870357513, -0.2631239891052246, -0.09936413913965225, -0.4454210102558136, -0.13645322620868683, -0.8849865198135376, 0.14462178945541382, 0.05831924453377724, 0.8568437695503235, 0.11970023810863495, -0.6393842697143555, -0.29455769062042236, -0.28704971075057983, 0.8567861914634705, -0.7105554938316345, 0.24376623332500458, 0.6383642554283142, 0.26928168535232544, 0.09934733062982559, -0.8299729824066162, -0.9678489565849304, -0.12634684145450592, -0.07416690140962601, 0.3152596354484558, 0.1270950585603714, -0.24775677919387817, 0.39821985363960266, 0.1957072764635086, -0.5096601843833923, 0.1569841504096985, -0.481699138879776, -0.08396285772323608, 0.6539068222045898, 0.3301096260547638, 0.270866334438324, -0.508403480052948, -0.5201990008354187, -0.10706482082605362, -0.2770478129386902, 0.1952378898859024, 0.3358917534351349, 0.23509125411510468, -0.4539283812046051, 0.6204838156700134, -0.3891967833042145, 0.45851781964302063, -0.1844010204076767, -0.08386388421058655, 0.3499385714530945, -0.7179296612739563, -0.07737860083580017, -0.11679530888795853, 0.7679614424705505, 0.6796801090240479, 0.3025008738040924, -0.07788638025522232, -0.026681233197450638, -0.1296934336423874, -0.10465741902589798, -0.5315552949905396, -0.17035576701164246, 0.4859091341495514, -0.2911038398742676, -0.3645067512989044, 0.15048848092556, -0.8430135846138, -0.0514569915831089, -0.27357447147369385, 0.08946549147367477, -0.17869335412979126, -0.5329328775405884, -0.02993815578520298, -0.2968745231628418, 0.1858794391155243, 0.10588039457798004, -0.6805171966552734, 0.4607698619365692, 0.5783351063728333, 0.9497874975204468, -0.2184540331363678, -0.48864802718162537, -0.30436185002326965, 0.32635053992271423, -0.14887921512126923, 0.5589917898178101, -0.34873682260513306, -0.44091886281967163, -0.21998107433319092, 0.36435383558273315, -0.18681827187538147, -0.27402886748313904, 0.6281737685203552, -0.37936994433403015, 0.3376198410987854, -0.7369689345359802, -0.2785206735134125, 0.060874491930007935, 0.48058077692985535, -0.6887124180793762, 1.1718610525131226, 0.04704444482922554, -0.8338562846183777, 0.5428418517112732, -1.051600694656372, -0.29116618633270264, -0.003211741801351309, 0.017204102128744125, -0.1570132076740265, -0.4178234040737152, 0.35265418887138367, 0.5270796418190002, -0.1987471729516983, 0.49541983008384705, -0.24014854431152344, -0.12722094357013702, 0.4400588870048523, -0.24731718003749847, 1.218616247177124, 0.4818098843097687, -0.36386924982070923, -0.2775820791721344, -0.5551741123199463, -0.03227650001645088, 0.2521357536315918, -0.2018398642539978, -0.24715730547904968, -0.08636351674795151, 0.14506681263446808, 0.338145911693573, 0.28092262148857117, -0.5609263181686401, 0.08929343521595001, -0.18061067163944244, 0.4903187155723572, 0.7892413139343262, 0.30155444145202637, 0.3153627812862396, -0.535982608795166, 0.3396749198436737, 0.21765080094337463, 0.4383431375026703, 0.0686948224902153, -0.4863671064376831, -0.4776187241077423, 0.16299043595790863, 0.22345727682113647, 0.5717599987983704, -0.8685489296913147, 0.4338603913784027, -0.5888762474060059, -0.43103358149528503, -0.04159422963857651, -0.08535294234752655, 0.5292429327964783, 0.7896717190742493, 0.509854793548584, -0.22472430765628815, -0.4758969843387604, -0.6858769655227661, -0.0008620824664831161, -0.16852055490016937, 0.133164182305336, 0.47477027773857117, 0.9426336288452148, 0.07000888884067535, 0.7457918524742126, -0.5486207008361816, -0.05946742743253708, -0.08723717927932739, -0.12764263153076172, 0.1852194368839264, 0.6460106372833252, 0.375841349363327, -0.8874280452728271, -0.23361803591251373, -0.06482329964637756, -0.6834360361099243, -0.05818454921245575, -0.08487965166568756, -0.0006778790266253054, 0.23074620962142944, 0.46211475133895874, -0.25044503808021545, 0.2713128924369812, 0.49720823764801025, -0.580202579498291, 0.5963253974914551, 0.08077730983495712, 0.41182392835617065, -1.2486714124679565, 0.403341144323349, -0.025033971294760704, 0.06918370723724365, -0.36397355794906616, -0.11264152824878693, -0.10311394929885864, -0.03807198628783226, -0.6350794434547424, 0.9606508612632751, -0.2967197597026825, 0.03280174732208252, 0.21973975002765656, 0.2572285830974579, 0.05363549292087555, 0.7645581960678101, 0.01937440037727356, 0.665780246257782, 0.18722467124462128, -0.867631196975708, 0.18465656042099, 0.12660984694957733, -0.3222818672657013, 0.554693877696991, -0.8128463625907898, 0.0864245593547821, -0.09574684500694275, 0.26160159707069397, -0.9149994850158691, -0.27338576316833496, 0.44109487533569336, -0.7036426067352295, -0.19690324366092682, -0.2470930963754654, -0.7734729647636414, -0.35517171025276184, -0.20170491933822632, 0.4320177733898163, 0.10228633880615234, -0.36096668243408203, 0.20764626562595367, 0.44332805275917053, 0.006543987430632114, -0.7327252626419067, -1.0853749513626099, -0.06299994885921478, -0.10407373309135437, -0.4615136981010437, 0.3355270028114319, -0.005358556751161814, -0.3693973124027252, 0.17576953768730164, -0.04285209998488426, -0.2358243465423584, 0.025259440764784813, 0.10544582456350327, 0.03871520981192589, -0.021618371829390526, 0.28554680943489075, 0.14525608718395233, -0.04129975289106369, -0.021656591445207596, -0.15869128704071045, 0.4867390990257263, -0.027676507830619812, -0.07995149493217468, -0.4880317449569702, 0.25907695293426514, 0.40260347723960876, -0.1686762124300003, 0.7806703448295593, 0.7683722376823425, -0.41035521030426025, 0.14903803169727325, -0.5517299771308899, -0.07434344291687012, -0.43797144293785095, 0.14304250478744507, -0.2031266838312149, -0.6864379048347473, 0.7550367116928101, 0.3904787302017212, 0.20536071062088013, 0.7838832139968872, 0.41515299677848816, -0.04274735972285271, 0.488589882850647, 0.04112217575311661, 0.2352360039949417, 0.48040246963500977, -0.5779710412025452, -0.4202820658683777, -0.7695233821868896, -0.7170419692993164, -0.5272323489189148, -0.44707173109054565, -0.7155973315238953, -0.5210506319999695, 0.19249814748764038, -0.2160402089357376, -0.5223661661148071, 0.29701822996139526, -0.4683975279331207, 0.560099184513092, 0.5999948978424072, 0.24332721531391144, 0.256199449300766, -0.33158430457115173, -0.2051619440317154, -0.01848316751420498, -0.7272106409072876, -0.5264778137207031, 1.0580037832260132, 0.26597413420677185, 0.1932702213525772, 0.24561254680156708, 0.5784293413162231, 0.33518528938293457, 0.00825074128806591, -0.405127614736557, 0.5940117835998535, -0.05215885490179062, -0.8216925263404846, -0.5086153745651245, -0.6263218522071838, -1.0294793844223022, -0.08635249733924866, -0.16958394646644592, -0.6062211394309998, 0.42418575286865234, 0.016755394637584686, -0.3371402621269226, 0.45680493116378784, -1.0103201866149902, 1.0139962434768677, -0.30257096886634827, -0.44492921233177185, 0.058528706431388855, -0.8977951407432556, 0.3080466687679291, 0.2981894612312317, 0.39292362332344055, -0.24716803431510925, -0.45690086483955383, 1.1957212686538696, -0.46588078141212463, 1.0190895795822144, -0.3900814652442932, 0.3002750277519226, 0.41375720500946045, -0.1443631947040558, 0.4433642625808716, 0.500228762626648, -0.03433035686612129, 0.22663690149784088, 0.42995065450668335, -0.6594030857086182, -0.6080698370933533, 0.8120741248130798, -0.7213939428329468, -0.13092948496341705, -0.512519896030426, -0.42680615186691284, -0.027804166078567505, 0.3234579265117645, 0.2681635618209839, 0.506555438041687, -0.08562801033258438, 0.07631514221429825, 0.6091918349266052, -0.2867594361305237, 0.5759929418563843, 0.3671858608722687, 0.02822195366024971, -0.6913434863090515, 0.6185976266860962, 0.36640918254852295, 0.21744820475578308, 0.6006373167037964, 0.37492048740386963, -0.5351022481918335, -0.24059335887432098, -0.22791169583797455, 0.20939670503139496, -0.49820399284362793, -0.10422655940055847, -0.8560401797294617, 0.07495374977588654, -0.7331008315086365, -0.01174477394670248, -0.18698421120643616, -0.7534703612327576, -0.36217156052589417, -0.2803876996040344, 0.5067346692085266, 0.3662140369415283, -0.3132190406322479, 0.17866107821464539, -0.41060173511505127, 0.3130701780319214, 0.3480619192123413, 0.41191455721855164, 0.18611444532871246, -0.36017224192619324, -0.30001378059387207, 0.2521984577178955, -0.21860118210315704, -0.7241567373275757, 0.10376188158988953, 0.021774547174572945, 0.6898040175437927, 0.2929508090019226, 0.2601560354232788, 0.5939900875091553, 0.009014868177473545, 1.1350055932998657, 0.12136030942201614, -0.6360896229743958, 0.6914146542549133, -0.5063331723213196, 0.4906531870365143, 0.8344736099243164, 0.5024177432060242, -0.7500824928283691, -0.15272359549999237, -0.9822584390640259, -0.8089758157730103, 0.5589880347251892, 0.25930550694465637, 0.08169467002153397, -0.45814523100852966, 0.173762246966362, 0.06600873172283173, 0.11051110923290253, -0.8934506177902222, -0.48329105973243713, -0.3518814742565155, 0.042210422456264496, -0.0955280140042305, -0.1420026272535324, -0.20577450096607208, -0.389254629611969, 0.42819949984550476, 0.1066616028547287, 0.42707622051239014, 0.33902159333229065, -0.005966033786535263, 0.21725285053253174, 0.37171700596809387, 0.7796084880828857, 0.8677911758422852, -0.25589895248413086, 0.19101582467556, 0.4012874662876129, -0.5976802706718445, -0.1674959361553192, 0.0031363856978714466, 0.00836957711726427, -0.08875235915184021, 0.36521223187446594, 0.5025748014450073, 0.1493777334690094, -0.5211021304130554, 0.5200271010398865, 0.1436241716146469, -0.2193538397550583, -0.6096817255020142, -0.07213807851076126, -0.09951253235340118, 0.08580200374126434, 0.376771479845047, -0.07898243516683578, 0.02955946885049343, -0.5615202188491821, 0.3071877360343933, -0.043497879058122635, -0.19504357874393463, -0.22341719269752502, 0.6210140585899353, 0.2312461882829666, -0.2027679979801178, 0.5265840888023376, -0.44342300295829773, -0.263363778591156, 0.8394830822944641, 0.27613136172294617, 0.6556527614593506, 0.0035074984189122915, 0.36601316928863525, 0.8119761347770691, 0.4406201243400574, -0.10688303411006927, 0.41301295161247253, -0.35820072889328003, -0.6905646920204163, -0.4120809733867645, -0.3256992697715759, -0.27150067687034607, 0.023701654747128487, -0.7440082430839539, 0.17786246538162231, -0.59110426902771, -0.304107666015625, -0.32515376806259155, 0.3185703456401825, -0.891248881816864, 0.3951604962348938, -0.3433660566806793, 0.9588807225227356, -0.9177070260047913, 0.5933464169502258, 0.525533139705658, -0.7463940978050232, -0.6431301832199097, -0.08114684373140335, 0.0026883443351835012, -0.8714627027511597, 0.5997191667556763, -0.09518131613731384, 0.21322043240070343, -0.007288992404937744, -0.6686089634895325, -0.6522919535636902, 1.3720768690109253, -0.07173548638820648, -0.26009923219680786, -0.1412421464920044, 0.05332387611269951, 0.49602946639060974, -0.19746926426887512, 0.27437448501586914, 0.39838138222694397, 0.5878450274467468, 0.17530904710292816, -0.8837985992431641, 0.23503446578979492, -0.3512051999568939, -0.13116241991519928, 0.02929825149476528, -0.7619361281394958, 0.5693299770355225, -0.4063904583454132, -0.3653028905391693, -0.2792277932167053, 0.505865216255188, 0.31240594387054443, 0.8626739978790283, 0.47625279426574707, 0.7436614632606506, 0.7821876406669617, -0.14274962246418, 1.0478886365890503, -0.10645831376314163, 0.2950109541416168, 1.3500992059707642, 0.301868200302124, 0.7047037482261658, 0.6461897492408752, -0.25818464159965515, 0.40367138385772705, 0.7057568430900574, 0.0061279404908418655, 0.4772985875606537, 0.053045451641082764, 0.0810486450791359, 0.07449860870838165, -0.4000452160835266, -0.5592569708824158, 0.3550510108470917, 0.26213932037353516, -0.42972299456596375, -0.05828551575541496, -0.024452807381749153, 0.3439875543117523, 0.026142999529838562, -0.3404099643230438, 0.6444225907325745, -0.11819048970937729, -0.5896799564361572, 0.41891855001449585, -0.12181282788515091, 0.6660274267196655, -0.34638711810112, 0.15415747463703156, -0.3598005473613739, -0.2893282473087311, -0.34903591871261597, -1.0625370740890503, 0.4983576536178589, -0.06481724232435226, -0.18363098800182343, -0.2682759463787079, 0.18037593364715576, -0.17741233110427856, -0.5053222179412842, -0.10222147405147552, 0.5404014587402344, 0.2697266936302185, 0.2491227686405182, -0.8341861367225647, -0.06674396991729736, -0.1507023721933365, -0.09620082378387451, 0.004037410952150822, 0.6613847017288208, 0.09437087178230286, 0.6347718238830566, 0.5902884006500244, 0.1244918629527092, 0.026644399389624596, -0.025873908773064613, 0.6789479851722717, -0.7941516637802124, -0.5841026902198792, -0.6573421359062195, 0.6545925140380859, -0.33752477169036865, -0.8331820368766785, 0.5834019184112549, 0.7618140578269958, 1.2065067291259766, 0.07836062461137772, 0.6059091687202454, -0.4943515658378601, 0.590715765953064, -0.6561336517333984, 0.6168345212936401, -0.5984220504760742, 0.3023146390914917, -0.36290302872657776, -0.6647677421569824, -0.16176877915859222, 0.16418077051639557, -0.5493215918540955, 0.31413033604621887, 0.7585235238075256, 0.8804454207420349, -0.026540935039520264, -0.08911694586277008, 0.1210366040468216, -0.025607386603951454, 0.10896334052085876, 0.7090137004852295, 0.564034640789032, -0.5186414122581482, 0.731829822063446, -0.5633700489997864, -0.12696154415607452, 0.03445565700531006, -0.8893994688987732, -0.7477573156356812, -1.003786325454712, -0.4587366580963135, -0.5021542906761169, 0.16501657664775848, 0.893286943435669, 0.3642767369747162, -0.7018243670463562, -0.3092888593673706, 0.06544262170791626, 0.27234992384910583, -0.5240793228149414, -0.35305526852607727, 0.4685472846031189, 0.031318701803684235, -0.6363911032676697, -0.16160015761852264, -0.1426887959241867, 0.04173372685909271, 0.10467907786369324, -0.11593945324420929, -0.5561012029647827, -0.2886746823787689, 0.5251166224479675, 0.5429314374923706, -0.6364119648933411, -0.26776811480522156, 0.2542544901371002, -0.07923965901136398, -0.06898602098226547, 0.6931121945381165, -0.5541733503341675, 0.44863200187683105, 0.40200772881507874, 0.3125571608543396, 0.5639594793319702, -0.0648500919342041, 0.05738326907157898, -0.7289265990257263, 0.025398945435881615, 0.3169218897819519, 0.11831170320510864, 0.2118036299943924, -0.3949142396450043, 0.7512941360473633, 0.4995669722557068, -0.5392261743545532, -0.7330185770988464, 0.07194195687770844, -1.3794035911560059, -0.1384834349155426, 1.4919521808624268, 0.18681667745113373, -0.23049002885818481, -0.4403804540634155, 0.08363920450210571, 0.4887636601924896, -0.6391122937202454, 0.7317397594451904, 0.5492140054702759, -0.02153133973479271, -0.3032740354537964, -0.6199356317520142, 0.3447391092777252, -0.0976933166384697, -0.7662271857261658, -0.1077897846698761, 0.28397539258003235, 0.4557149112224579, 0.13550591468811035, 0.8910245895385742, -0.31830811500549316, 0.3734951317310333, 0.08477628976106644, -0.03461366146802902, -0.4873647391796112, -0.014271392486989498, 0.10406607389450073, 0.10992348939180374, -0.23827874660491943, -0.42343229055404663 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
hf-internal-testing/fixtures_docvqa
hf-internal-testing
2023-09-18T17:39:07Z
5,452
0
null
[ "region:us" ]
2023-09-18T17:39:07Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
This dataset includes 2 document images of the [DocVQA](https://docvqa.org/) dataset. They are used for testing the LayoutLMv2FeatureExtractor + LayoutLMv2Processor inside the HuggingFace Transformers library. More specifically, they are used in `tests/test_feature_extraction_layoutlmv2.py` and `tests/test_processor_layoutlmv2.py`.
[ -0.7226923108100891, -0.5143514275550842, 0.05152011662721634, 0.15988685190677643, -0.0194668211042881, -0.19181405007839203, 0.617414116859436, 0.11162089556455612, -0.1336183398962021, 0.8978773951530457, -0.962378203868866, -0.16953299939632416, -0.19089166820049286, -0.21624085307121277, -0.4573042392730713, 0.8803716897964478, -0.43952617049217224, -0.016984760761260986, -0.5865787863731384, -0.13368342816829681, -0.31773653626441956, 0.016039570793509483, -0.3206326365470886, -0.5686793923377991, 0.3706640899181366, 0.6508116722106934, 0.9601123929023743, 0.5425623655319214, 0.5546952486038208, 0.28256070613861084, 0.3415771722793579, -0.1378180831670761, -0.20293974876403809, -0.03334331512451172, -0.027717603370547295, -0.10505515336990356, -0.5276319980621338, 0.583452045917511, 0.7663313746452332, 0.5642529726028442, 0.06579118221998215, 0.36387330293655396, -0.20582231879234314, 0.6040249466896057, -0.4325844943523407, 0.22002267837524414, 0.1082666665315628, 0.3733743727207184, -0.25751861929893494, 0.1762288510799408, -0.146017923951149, -0.3166338801383972, 0.002610126743093133, -1.0367721319198608, 0.4177214503288269, 0.2028769701719284, 1.1995011568069458, 0.23942312598228455, -0.6144545078277588, -0.18155443668365479, -0.17969323694705963, 0.5004541277885437, 0.01476666796952486, 0.4965623915195465, 0.4647391736507416, 0.5347543358802795, -0.496365487575531, -1.1059750318527222, -0.6174634099006653, 0.3335925340652466, -0.36048784852027893, 0.2901267111301422, -0.24929587543010712, -0.00636686384677887, 0.6763507723808289, 0.5994296669960022, -0.9767141938209534, 0.152526393532753, -0.7905197739601135, -0.5941268801689148, 0.6048282980918884, 0.11328335851430893, 0.4312959313392639, -0.2612658739089966, -0.4532741904258728, -0.5783830285072327, -0.4882536232471466, 0.0319528728723526, 0.29331526160240173, -0.3999421298503876, -0.49486082792282104, 0.6846449971199036, -0.023160794749855995, 0.8268134593963623, -0.19846555590629578, -0.13733570277690887, 0.8563783764839172, -0.28880131244659424, -0.48454737663269043, -0.24002841114997864, 0.5155295133590698, 0.5311904549598694, 0.2596317529678345, 0.053923625499010086, -0.19628416001796722, -0.18839144706726074, 0.4008482098579407, -0.9699833989143372, -0.6772821545600891, 0.6442940831184387, -0.730358898639679, -0.30299070477485657, 0.2621021568775177, -0.7443867921829224, -0.3987894058227539, -0.26417431235313416, 0.09851137548685074, -0.6693664789199829, -0.6087157130241394, -0.2617590129375458, -1.0368878841400146, 1.001931071281433, 0.10548161715269089, -0.6692636013031006, 0.5066345930099487, 0.9501131176948547, 0.7218729257583618, 0.04652535915374756, -0.39581263065338135, -0.7747116684913635, -0.17766191065311432, -0.689589262008667, 1.1022529602050781, -0.27492794394493103, -0.5882940292358398, 0.24373222887516022, 0.6729532480239868, 0.08256768435239792, -0.6174644827842712, 1.042190432548523, -0.4123869240283966, 0.4730149507522583, -0.39670637249946594, -0.5504165291786194, -0.37300562858581543, 0.1426534503698349, -1.039843201637268, 1.7857338190078735, 0.8623690605163574, -0.7499327659606934, 0.3464605212211609, -0.662831723690033, -0.41294780373573303, 0.17117856442928314, -0.13993193209171295, -0.64952552318573, 0.01978396624326706, -0.15307748317718506, 0.39313724637031555, 0.12467776983976364, -0.638411819934845, -0.1886843889951706, -0.4918802082538605, 0.22441530227661133, 0.15620896220207214, 0.8771316409111023, 0.36774399876594543, -0.1389700323343277, -0.07222021371126175, -0.8667245507240295, 0.19038598239421844, 0.3590579330921173, -0.17066103219985962, -0.4329405426979065, -0.5332245230674744, 0.6193965673446655, 0.4215017557144165, -0.031620629131793976, -0.6868734955787659, 0.4978334307670593, -0.2770077884197235, 0.05618114024400711, 0.5759205222129822, 0.09083807468414307, 0.47818586230278015, -0.47575733065605164, 0.47857755422592163, 0.03618720546364784, 0.2672497034072876, -0.035146232694387436, -0.799953043460846, -0.5900070667266846, -0.39625105261802673, 0.16322609782218933, 0.5021739602088928, -0.767275333404541, 0.3042513430118561, 0.10163487493991852, -0.8225088715553284, -0.4376801550388336, -0.12777024507522583, 0.48979413509368896, 0.5749810338020325, -0.05224720388650894, -0.19562308490276337, -0.587512731552124, -1.255940318107605, 0.3082450032234192, 0.031090088188648224, -0.3774692714214325, 0.13935522735118866, 0.7379172444343567, -0.08811453729867935, 0.6668363213539124, -0.467540442943573, 0.04648410156369209, 0.3401344120502472, -0.08456217497587204, 0.40899989008903503, 0.5001574754714966, 1.0778541564941406, -1.171748161315918, -0.11914820224046707, -0.37213268876075745, -0.6709213852882385, -0.21394392848014832, -0.10994918644428253, -0.563784122467041, 0.2229946106672287, 0.06054345890879631, -0.7749024629592896, 0.44519221782684326, 0.7549057602882385, -0.7796408534049988, 0.8597115874290466, -0.1790103316307068, 0.2285831719636917, -1.1304179430007935, 0.002068385249003768, 0.17191225290298462, -0.46862170100212097, -0.5113547444343567, 0.26484715938568115, 0.6891353726387024, 0.018361475318670273, -0.511460542678833, 0.7096030712127686, -0.5660803318023682, -0.515180766582489, -0.09999232739210129, -0.08845238387584686, 0.6179841160774231, -0.11308079212903976, -0.05566444620490074, 1.0179930925369263, 0.8067535161972046, -0.3350401222705841, 0.8108990788459778, 0.9205560684204102, -0.2066311538219452, 0.8123909831047058, -0.4398617744445801, 0.3901274502277374, -0.001386660966090858, 0.2892676293849945, -1.0228890180587769, -0.5420154929161072, 0.4775354266166687, -0.38754695653915405, 0.2528369128704071, -0.15389889478683472, -0.5941731929779053, -0.7266374826431274, -0.7324798107147217, 0.043745387345552444, 0.8301233649253845, -0.7981731295585632, 0.6001834273338318, 0.7167922854423523, 0.025856416672468185, -0.3125239908695221, -0.9615427851676941, -0.31275227665901184, -0.1751561164855957, -0.5673500895500183, 0.31324124336242676, 0.21781791746616364, -0.3689853250980377, 0.07396571338176727, 0.08392983675003052, -0.13531982898712158, 0.059271570295095444, 1.2598122358322144, 0.586256742477417, -0.21128416061401367, 0.14489221572875977, 0.05318369343876839, -0.12471652776002884, 0.2819613814353943, -0.436115562915802, 0.5428646206855774, -0.11931229382753372, -0.04809712618589401, -0.381970077753067, 0.3206280767917633, 0.24215562641620636, -0.08407413959503174, 0.38621601462364197, 1.002109169960022, -0.5810625553131104, -0.012524738907814026, -0.361327201128006, 0.11552318185567856, -0.513001024723053, 0.36536961793899536, -0.7168204188346863, -0.3556216061115265, 0.6357572078704834, -0.26311373710632324, 0.09534815698862076, 0.7563909292221069, 0.5876585841178894, -0.36705172061920166, 0.4650174379348755, 0.0950368121266365, -0.15401014685630798, 0.21841512620449066, -0.5356195569038391, -0.3771339952945709, -1.3142824172973633, -0.6009553074836731, -0.7258370518684387, -0.025902187451720238, -0.557750940322876, -0.6088911890983582, -0.05991557985544205, -0.14331799745559692, -0.461347758769989, 0.3901527225971222, -0.7900294065475464, 0.5636855363845825, 0.8391427397727966, -0.061473846435546875, -0.10079578310251236, 0.18554894626140594, -0.2843285799026489, -0.14392991364002228, -0.2603033781051636, -0.3974079489707947, 1.0900280475616455, 0.37720945477485657, 0.4927123785018921, -0.05204164609313011, 0.09940014034509659, 0.44995468854904175, 0.1304318606853485, -1.0081865787506104, 0.18148711323738098, -0.24229460954666138, -0.747016191482544, -0.053927943110466, -0.14008848369121552, -1.0752357244491577, 0.049425944685935974, -0.0410858653485775, -0.6641196012496948, -0.09479613602161407, -0.3087516129016876, 0.06533822417259216, 0.11211565881967545, -0.6993505954742432, 0.9257746338844299, -0.07121788710355759, 0.0514628030359745, -0.04304906353354454, -0.4148702025413513, 0.1773095428943634, 0.08173150569200516, 0.04259977117180824, 0.11119426041841507, 0.23536862432956696, 1.0475246906280518, -0.2673659324645996, 0.25694629549980164, -0.42973461747169495, -0.11151570826768875, 0.27234891057014465, 0.20230430364608765, 0.35930949449539185, 0.11503195762634277, -0.16389243304729462, 0.13508939743041992, 0.2254696637392044, -0.5683243274688721, -0.21248763799667358, 0.6148338317871094, -0.7641122937202454, -0.0744781643152237, -0.6694089770317078, -0.6371426582336426, 0.04409278184175491, 0.22913241386413574, 0.03296197950839996, 0.8881545066833496, -0.2484484761953354, 0.20504717528820038, 0.8702207207679749, -0.14071905612945557, 0.18915124237537384, 0.22183677554130554, -0.3575422167778015, 0.05251051113009453, 0.7011075615882874, -0.1458202451467514, -0.021546943113207817, -0.019173989072442055, -0.0016244753496721387, -0.43727079033851624, -0.35839220881462097, -0.27522504329681396, 0.09557365626096725, -0.8385463356971741, -0.11001726984977722, -0.3975004553794861, -0.6575348377227783, -0.6845253705978394, 0.05919250100851059, -0.28349268436431885, -0.6237059831619263, -0.11907688528299332, -0.26010197401046753, 0.41911712288856506, 0.7703673839569092, -0.15240652859210968, 0.11330470442771912, -0.5996555685997009, 0.6080859899520874, 0.2655404508113861, 0.14572831988334656, -0.6767250895500183, -0.47470492124557495, -0.018202047795057297, -0.3589720129966736, -0.5307444334030151, -0.6704296469688416, 0.07889954745769501, 0.10958591103553772, 0.8372398018836975, 0.1911671906709671, -0.3782048225402832, 0.15438272058963776, -0.35767704248428345, 0.8993405699729919, 0.03011683188378811, -0.526473879814148, 0.5305793881416321, -0.21680757403373718, 0.2607278823852539, 0.20731842517852783, 0.5004433393478394, -0.6766856908798218, 0.08400649577379227, -0.7186217904090881, -0.407563179731369, 0.7372636795043945, 0.2269006073474884, -0.04447393864393234, 0.6708090305328369, 0.7120711207389832, 0.44125333428382874, -0.15831677615642548, 0.14950479567050934, -0.6061808466911316, -0.507106363773346, -0.2922677993774414, 0.3570280373096466, -0.267955482006073, -0.5834639668464661, -0.25667804479599, 0.6983266472816467, -0.3110801875591278, 0.3008948862552643, 0.22253866493701935, -0.003843695856630802, -0.0077229877933859825, -0.26341089606285095, 0.21589934825897217, 0.3807719349861145, -0.41122835874557495, -0.05153021216392517, -0.11524338275194168, -0.9303192496299744, -0.04079875349998474, 0.46471983194351196, -0.013294760137796402, 0.11077278852462769, 0.5099636316299438, 0.8567442893981934, -0.1678522676229477, -0.28366902470588684, 0.4752829372882843, -0.47781702876091003, -0.7071210145950317, -0.8795302510261536, 0.2011854350566864, 0.22521620988845825, 0.47243982553482056, 0.2489059716463089, 0.028398655354976654, 0.5844345092773438, -0.3560316264629364, 0.6603702902793884, 0.2870957851409912, -0.4139559864997864, -0.14086097478866577, 0.4195884168148041, 0.04123951494693756, -0.2537851929664612, 1.097746729850769, -0.41293856501579285, -0.47590211033821106, 0.915243923664093, 0.39123713970184326, 0.44646579027175903, 0.06540577858686447, 0.8713159561157227, 0.3801548480987549, 0.25254926085472107, 0.18168236315250397, 0.49459153413772583, 0.011218670755624771, -0.7677872180938721, 0.12427336722612381, -0.5977849960327148, -0.6668915152549744, 0.33484065532684326, -0.9110607504844666, 0.3669624626636505, -0.2944340109825134, 0.05833156406879425, 0.2245941460132599, 0.2925100028514862, -0.980605959892273, 0.41184309124946594, 0.43017059564590454, 1.3701118230819702, -0.8846747875213623, 0.9100847244262695, 0.9929108023643494, -0.06835104525089264, -0.9312446117401123, -0.2062806487083435, 0.43309688568115234, -1.1434688568115234, 0.5141792893409729, 0.19638502597808838, 0.4570264220237732, -0.35112741589546204, -0.38257837295532227, -0.5987045168876648, 1.28754723072052, 0.020681580528616905, -0.19257210195064545, 0.3016355633735657, 0.19187796115875244, 0.22804762423038483, -0.3909597396850586, 0.44829270243644714, 0.8849285244941711, 0.7091085910797119, 0.14886854588985443, -0.6251869797706604, 0.4102177321910858, -0.512836217880249, -0.07339677214622498, 0.12046695500612259, -0.6419399976730347, 0.9936996698379517, 0.034870684146881104, 0.04063320904970169, 0.1853923201560974, 0.3055892586708069, 0.6792227625846863, 0.26962897181510925, 0.5748079419136047, 0.5991120934486389, 0.8879013657569885, -0.5779123306274414, 1.4931395053863525, 0.2616138160228729, 0.5993027687072754, 1.036264181137085, -0.26861584186553955, 0.4459640085697174, 0.4029221832752228, -0.23708336055278778, 0.499488890171051, 1.27480947971344, -0.5917752981185913, 0.5829427242279053, 0.218086376786232, 0.2290930300951004, 0.008940039202570915, -0.03393140435218811, -0.5512045621871948, 0.34876540303230286, 0.6983004212379456, -0.27384504675865173, -0.28758683800697327, -0.012304463423788548, 0.32815617322921753, -0.3679531514644623, -0.11950650066137314, 0.5209869742393494, 0.017753539606928825, -0.41798266768455505, 0.2890983819961548, -0.26123639941215515, 0.29666852951049805, -0.49160829186439514, -0.2537040412425995, -0.2026824802160263, 0.1387052983045578, -0.3259772062301636, -1.538149356842041, 0.23803429305553436, -0.3655262887477875, 0.05155780166387558, -0.2165105938911438, 1.2442742586135864, -0.005437367595732212, -0.6703634858131409, 0.21794012188911438, 0.22642333805561066, 0.4077576696872711, -0.1528533399105072, -0.975577175617218, -0.05759681761264801, -0.34634914994239807, -0.8486939668655396, 0.24164262413978577, 0.3546840250492096, 0.020087510347366333, 0.20550420880317688, 0.3393811285495758, -0.030669663101434708, -0.035843994468450546, 0.3779771327972412, 1.1936794519424438, -0.43203943967819214, -0.22018347680568695, -0.17376260459423065, 0.7310242056846619, -0.6681259274482727, -0.7181947827339172, 0.6703221797943115, 1.0434213876724243, 0.6525838971138, -0.1603698432445526, 1.0793743133544922, -0.36377134919166565, 0.26235100626945496, -0.7608509063720703, 0.7260503768920898, -0.6761214733123779, -0.6373594999313354, 0.1281566619873047, -0.6424161195755005, -0.08462773263454437, 0.5121328234672546, 0.2465314418077469, -0.27433380484580994, 0.9564770460128784, 0.7556309103965759, -0.253829687833786, 0.04730230197310448, 0.05980709195137024, 0.11897747963666916, 0.34052038192749023, 0.4052157402038574, 0.7356069684028625, -1.0608110427856445, 0.34867414832115173, -0.6586446166038513, -0.44428694248199463, 0.061039287596940994, -0.41179656982421875, -1.1138288974761963, -0.9731234908103943, -0.3894926607608795, -1.006278157234192, -0.2982301115989685, 0.4055778384208679, 0.9480493068695068, -0.8130356669425964, 0.20709088444709778, 0.3176105320453644, 0.0038994632195681334, -0.0014357751933857799, -0.2645764946937561, 0.501842737197876, 0.16007836163043976, -0.7281880974769592, 0.19997787475585938, 0.30506274104118347, 0.08695809543132782, -0.23501360416412354, -0.3634916841983795, 0.13311228156089783, -0.21138319373130798, 0.05074203386902809, 0.2696631848812103, -0.16162271797657013, -0.3404742479324341, -0.03633014112710953, -0.24964208900928497, 0.21020753681659698, 0.6993196606636047, -0.6247885823249817, 0.31225019693374634, 0.7688869833946228, 0.1917952001094818, 0.7695431709289551, 0.055132705718278885, 0.3369818329811096, -0.8818109035491943, 0.8246139883995056, -0.1409534513950348, 0.6277646422386169, 0.45940709114074707, -0.46432116627693176, 0.7775707840919495, 0.18421676754951477, -0.6078342795372009, -0.6953734159469604, 0.06762270629405975, -1.3089416027069092, -0.050625260919332504, 1.2601557970046997, -0.22145813703536987, -0.8505017757415771, -0.18425950407981873, -0.42328640818595886, 0.4196528494358063, -0.2582126259803772, 0.5297043919563293, 0.7793401479721069, 0.012224863283336163, -0.4178317189216614, -0.79446941614151, 0.5125107765197754, -0.14485205709934235, -1.1096720695495605, -0.44506534934043884, 0.24898920953273773, 0.509698212146759, 0.3540545105934143, 0.2379063367843628, -0.591623067855835, 0.4765966236591339, 0.4936524033546448, 0.2197449654340744, -0.21787942945957184, 0.016118258237838745, -0.20180059969425201, -0.10442299395799637, -0.4343240261077881, -0.5929608345031738 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mteb/amazon_massive_scenario
mteb
2022-05-19T08:00:44Z
5,447
0
null
[ "region:us" ]
2022-05-19T08:00:44Z
2022-05-15T20:30:23.000Z
2022-05-15T20:30:23
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
explodinggradients/fiqa
explodinggradients
2023-06-08T16:54:14Z
5,415
5
null
[ "task_categories:question-answering", "size_categories:10K<n<100K", "language:en", "license:cc-by-sa-4.0", "region:us" ]
2023-06-08T16:54:14Z
2023-06-07T23:56:42.000Z
2023-06-07T23:56:42
--- license: cc-by-sa-4.0 task_categories: - question-answering language: - en size_categories: - 10K<n<100K ---
[ -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
huggan/smithsonian_butterflies_subset
huggan
2022-04-16T08:02:36Z
5,383
27
null
[ "region:us" ]
2022-04-16T08:02:36Z
2022-04-13T11:36:00.000Z
2022-04-13T11:36:00
This a subset of "ceyda/smithsonian_butterflies" dataset with additional processing done to train the "ceyda/butterfly_gan" model. The preprocessing includes: - Adding "sim_score" to images with CLIP model using "pretty butterfly","one butterfly","butterfly with open wings","colorful butterfly" - Removing butterflies with the same name(species) - Limiting only to the top 1000 images - Removing the background (doing another sim_scoring after bg removal did visually worse so didn't do it) - Detecting contours - Cropping to the bounding box of the contour with the largest area - Converting back to RGB
[ -0.9476003646850586, -0.7062802314758301, 0.10343790054321289, 0.2473825365304947, -0.3332820534706116, -0.024781689047813416, 0.12959899008274078, -0.2680385708808899, 0.4765646159648895, 0.7194514274597168, -1.117714285850525, -0.6813012361526489, -0.1763521432876587, 0.2107527256011963, -0.4853873550891876, 0.8784177303314209, 0.15443021059036255, 0.07092244178056717, -0.09007322788238525, 0.0524061843752861, -0.23628197610378265, -0.3345443606376648, -0.49551713466644287, 0.00420989328995347, 0.6155046224594116, 0.4823482036590576, 0.7149114012718201, 1.1238629817962646, 0.8313480615615845, 0.23869860172271729, -0.26162734627723694, 0.05087650567293167, -0.5422306656837463, -0.3505486845970154, -0.34478023648262024, -0.4548722803592682, -0.4890974462032318, 0.1950746774673462, 0.4445154666900635, 0.4420118033885956, 0.05420837178826332, 0.3737793564796448, -0.00027963705360889435, 0.6184530854225159, -0.7208080291748047, -0.054901108145713806, -0.37834247946739197, 0.16965237259864807, -0.5573068857192993, -0.25868529081344604, -0.020380130037665367, -0.27215084433555603, -0.042925816029310226, -1.1067564487457275, 0.4375409185886383, -0.3625688850879669, 1.1669820547103882, 0.3037666082382202, -0.39408352971076965, -0.19204123318195343, -0.3220479488372803, 0.6758008003234863, -0.16453881561756134, 0.21695904433727264, 0.21545778214931488, 0.46133601665496826, -0.1700025349855423, -0.8715591430664062, -0.39539527893066406, 0.3437597453594208, 0.1824416071176529, 0.24627967178821564, -0.0967496708035469, 0.022907838225364685, 0.7175419330596924, 0.3766933083534241, -0.5543676018714905, -0.14343488216400146, -0.9107300043106079, -0.035056911408901215, 0.684104323387146, 0.05751253291964531, 0.2955610454082489, -0.0015270956791937351, -0.01188644953072071, -0.44982320070266724, -0.7695968151092529, 0.04199740290641785, 0.3559909164905548, 0.048560597002506256, -0.2737879455089569, 0.6073887348175049, -0.2705894708633423, 0.831490159034729, -0.02089216746389866, -0.09262966364622116, 0.29075711965560913, 0.2085133194923401, -0.3889090418815613, -0.5413991212844849, 0.35030487179756165, 0.6377620100975037, 0.5262085795402527, 0.05164679139852524, -0.17679917812347412, 0.02169346995651722, 0.03350575640797615, -0.8027903437614441, -0.7901856303215027, 0.09841597825288773, -0.9517278075218201, -0.258222371339798, 0.16581961512565613, -1.0844875574111938, -0.18041042983531952, -0.6338773369789124, 0.3803291320800781, -0.2276773601770401, -0.1956712156534195, -0.2398226261138916, -0.47118881344795227, 0.10633324831724167, 0.04141770675778389, -0.9769644737243652, 0.47461652755737305, 0.7439919114112854, 1.0092430114746094, -0.23424997925758362, -0.2916831076145172, -0.37993475794792175, 0.08883344382047653, -0.5476464629173279, 0.9623451232910156, -0.49969515204429626, -0.9942617416381836, -0.3016195595264435, 0.5716888904571533, -0.047711897641420364, -0.6823812127113342, 0.670997679233551, -0.5574105381965637, -0.1894204169511795, -0.933357834815979, -0.3224859833717346, -0.5363538265228271, 0.5496169924736023, -0.9246030449867249, 0.2759380042552948, 0.4813116788864136, -0.5939207077026367, 0.5976514220237732, -0.47597065567970276, -0.30937814712524414, -0.04263531416654587, -0.21978092193603516, -0.3661041259765625, -0.06658067554235458, 0.7277092933654785, 0.28117266297340393, 0.03537983074784279, -0.26734188199043274, -0.7810702323913574, -0.6822012066841125, 0.0025148182176053524, -0.05832112580537796, 1.0025184154510498, 0.3303917348384857, 0.2745002508163452, 0.1888124644756317, -0.9634723663330078, 0.09902583807706833, -0.10484452545642853, -0.4071313142776489, 0.0025707483291625977, -0.5765214562416077, 0.40975043177604675, 0.14719638228416443, 0.19349798560142517, -0.4081641137599945, 0.6824789047241211, -0.0641171783208847, 0.07595710456371307, 0.8145240545272827, 0.5967221260070801, 0.21561864018440247, -0.46974417567253113, 0.7800242304801941, -0.13818353414535522, 0.7772142291069031, -0.04532106965780258, -0.39631080627441406, -0.7366533875465393, -0.7731470465660095, 0.460477739572525, 0.392037957906723, -0.7823085188865662, 0.540745198726654, -0.16867567598819733, -0.5872508883476257, -0.30775049328804016, -0.11062197387218475, 0.04999222233891487, 0.2598658800125122, 0.24988600611686707, -0.17880043387413025, -0.9724209308624268, -1.0277323722839355, 0.42856889963150024, 0.5310378670692444, 0.03713862970471382, -0.33725103735923767, 0.9146754741668701, -0.16564883291721344, 0.8266175389289856, -0.9206256866455078, -0.503357470035553, 0.36580944061279297, -0.05184660851955414, 0.6105577945709229, 0.6717104911804199, 1.0729271173477173, -0.9201973676681519, -0.6018145084381104, -0.2141341120004654, -0.46031463146209717, 0.14831484854221344, 0.18644170463085175, -0.24462877213954926, -0.25312861800193787, 0.5485022664070129, -0.5496012568473816, 0.709584653377533, 0.6701797246932983, 0.36073800921440125, 0.617935061454773, -0.3006179928779602, 0.46611642837524414, -0.8294593095779419, 0.3722299039363861, 0.1326623260974884, 0.11939603835344315, -0.30638644099235535, 0.3170049786567688, 0.14199699461460114, -0.19669005274772644, -0.20337456464767456, 0.3141936659812927, -0.7160109281539917, -0.19766934216022491, -0.37637656927108765, -0.6372832655906677, 0.0036765788681805134, 0.6901133060455322, 0.2740952968597412, 0.57993084192276, 0.938247561454773, -0.6601455211639404, 0.6580982804298401, 0.15198762714862823, -0.33629703521728516, 0.5130060911178589, -0.5943883657455444, 0.029661718755960464, 0.010824923403561115, -0.05707122012972832, -0.7169251441955566, -0.3909566104412079, 0.3896584212779999, -0.24406708776950836, 0.12600058317184448, -0.5082618594169617, -0.3056841194629669, -0.601112961769104, -0.785304605960846, 0.18370331823825836, 0.5015382766723633, -0.7482815384864807, 0.4044014513492584, 0.386540949344635, 0.09769784659147263, -0.2749631106853485, -0.7963182330131531, -0.1972334235906601, -0.1242997795343399, -0.02940363995730877, 0.4325788915157318, -0.08453662693500519, -0.17866140604019165, 0.20044322311878204, 0.29101690649986267, -0.07371962815523148, 0.03496561199426651, 0.4315316677093506, 0.3796374499797821, 0.09507589042186737, -0.15581496059894562, 0.16806180775165558, 0.11819026619195938, -0.013155337423086166, 0.18627431988716125, 0.6347820162773132, 0.4744056463241577, -0.5877454280853271, -0.3245778977870941, 0.20264631509780884, 0.512071430683136, -0.15217339992523193, 0.46377983689308167, 0.7173241972923279, -0.7619642019271851, -0.29784539341926575, 0.07823090255260468, -0.16415894031524658, -0.48016995191574097, 0.3466433882713318, -0.8123553991317749, 0.11864933371543884, 0.706696093082428, 0.24407553672790527, 0.1653115451335907, 0.5518360137939453, 0.13369536399841309, -0.13295796513557434, 1.18118155002594, 0.5025208592414856, -0.25140076875686646, 0.7311959862709045, -0.863148033618927, -0.2587814927101135, -1.137160301208496, -0.4671318829059601, -0.5983729958534241, -0.3398180902004242, -0.6786951422691345, -0.3715888261795044, 0.43777936697006226, 0.4398985803127289, -0.18466004729270935, 0.203044593334198, -0.8048692345619202, 0.5924633145332336, 0.7348693013191223, 0.5971828103065491, 0.018859071657061577, 0.08100525289773941, 0.1875116229057312, -0.1418791115283966, -0.20610912144184113, -0.19996324181556702, 1.388311505317688, 0.01020335778594017, 0.7057405114173889, -0.1873548924922943, 0.5364856719970703, 0.4886022210121155, 0.6493268013000488, -0.5043814778327942, 0.5784778594970703, -0.5640497803688049, -0.6373881101608276, 0.05837641656398773, -0.22683784365653992, -0.6733647584915161, 0.18327300250530243, -0.43187522888183594, -0.7695164084434509, 0.37245625257492065, 0.03828549385070801, -0.5478308796882629, 0.21008048951625824, -0.44390857219696045, 0.6653002500534058, -0.20168492197990417, 0.026368943974375725, -0.0806092917919159, -0.17362330853939056, 0.7189104557037354, 0.003107852768152952, -0.039325304329395294, -0.042417965829372406, 0.006173127330839634, 1.0646806955337524, -0.32455313205718994, 0.31369924545288086, -0.2995143532752991, 0.24390998482704163, 0.30188441276550293, -0.113312266767025, 0.24162892997264862, -0.09101802110671997, -0.08275633305311203, -0.12151515483856201, 0.32930320501327515, -0.19682250916957855, -0.4768397808074951, 0.7676793336868286, -0.7581542730331421, -0.34350141882896423, -0.4193630814552307, -0.45708343386650085, -0.08734066039323807, -0.006039160769432783, 0.6926313638687134, 0.5397197008132935, -0.22051352262496948, 0.15910851955413818, 0.48295751214027405, -0.020277904346585274, 0.1943436563014984, 0.14790399372577667, -0.8745219111442566, -0.948218822479248, 0.8892419338226318, 0.6344323754310608, -0.3277653753757477, 0.2608872950077057, -0.21172696352005005, -0.2811972200870514, -0.8241884112358093, -0.2662937343120575, 0.3389256000518799, -0.8693793416023254, -0.05616878718137741, -0.5136561989784241, -0.42686522006988525, -0.8463452458381653, -0.1939288228750229, 0.14757686853408813, -0.2465362548828125, -0.7902233600616455, -0.002666751155629754, 0.30871862173080444, 0.7248349785804749, -0.4555162191390991, 0.8001636266708374, -0.8318387866020203, 0.5964934229850769, 0.5656507611274719, -0.010538309812545776, -0.1519341617822647, -0.3930336833000183, -0.19299426674842834, 0.1791238635778427, -0.5416032671928406, -0.9096011519432068, 0.40187299251556396, 0.06591908633708954, 0.8406568169593811, 0.8064811825752258, -0.4483973979949951, 1.3427855968475342, 0.15631064772605896, 0.6475053429603577, 0.3132246434688568, -0.9330529570579529, 0.5550987720489502, -0.5229116678237915, 0.21314649283885956, 0.4372042119503021, 0.32462289929389954, -0.44263967871665955, 0.22342678904533386, -0.6419078707695007, -0.4934042692184448, 0.6917075514793396, 0.09990210831165314, -0.43253448605537415, 0.2638741433620453, 0.648915708065033, -0.1367962807416916, 0.18454164266586304, -0.5016746520996094, -0.18308025598526, -0.033706534653902054, -0.34466540813446045, -0.2554931044578552, -0.051392581313848495, -0.2495831698179245, -0.6779417395591736, 0.8170654773712158, -0.12098396569490433, -0.2438722848892212, -0.10192417353391647, 0.05155876278877258, -0.25796425342559814, -0.462789386510849, 0.4181700050830841, 0.7980296611785889, -0.5351511836051941, -0.250690221786499, -0.013833589851856232, -0.44825029373168945, -0.36410287022590637, 0.2051718533039093, -0.46146270632743835, -0.23828671872615814, 0.7961775064468384, 0.23791980743408203, -0.24424056708812714, -0.33429259061813354, 0.20778852701187134, 0.022548949345946312, -0.14805389940738678, 0.08863474428653717, 0.4515171945095062, -0.07845733314752579, 0.08876746892929077, 0.5524706244468689, 0.287311315536499, 0.5240280628204346, -0.7588862180709839, 0.43049824237823486, 0.4663112759590149, -0.10725502669811249, -0.4594312012195587, 0.46683812141418457, 0.14026221632957458, -0.18958474695682526, 0.772556722164154, -0.33192718029022217, -0.7014346122741699, 1.2950878143310547, 0.15127350389957428, 0.5462123155593872, -0.3379316031932831, 0.3484683334827423, 0.832695484161377, 0.2737632393836975, -0.05503947660326958, 0.8604664206504822, -0.1572861671447754, -0.46881839632987976, 0.09463024139404297, -0.41517016291618347, -0.5900759696960449, 0.47806286811828613, -1.0266870260238647, 0.8070392608642578, -0.7302173972129822, -0.30342897772789, 0.07225821912288666, 0.21752847731113434, -0.6667009592056274, 0.7032696604728699, 0.2204166054725647, 1.1463245153427124, -1.146050214767456, 0.862838089466095, 0.5107515454292297, -0.5494623184204102, -0.8073829412460327, -0.048198774456977844, -0.0483471117913723, -0.46967193484306335, 0.2243262529373169, 0.3643673062324524, 0.24153468012809753, 0.008671083487570286, -0.7041606903076172, -0.7561105489730835, 0.9063323736190796, 0.3040279448032379, -0.8019072413444519, 0.1167735904455185, -0.2434260994195938, 0.5007114410400391, -0.28384920954704285, 0.18178211152553558, 0.8253388404846191, 0.33473142981529236, 0.30330711603164673, -0.48282837867736816, -0.353954017162323, -0.40668192505836487, 0.06652702391147614, -0.21984107792377472, -0.6495213508605957, 1.4188653230667114, -0.08209147304296494, -0.2887004017829895, 0.4189979135990143, 0.608512282371521, 0.6580013036727905, 0.09553823620080948, 0.7492008805274963, 0.6051733493804932, 0.7722790241241455, -0.2460877001285553, 0.5164303779602051, -0.12665969133377075, 0.4700668752193451, 0.9506949782371521, -0.27120518684387207, 0.450857549905777, 0.39339104294776917, -0.2048148512840271, 0.09315965324640274, 1.4059059619903564, -0.5490395426750183, 1.1903395652770996, 0.30561450123786926, 0.10559442639350891, 0.048050135374069214, -0.04634365066885948, -0.5979293584823608, 0.3593445122241974, 0.5089122653007507, -0.12045210599899292, -0.27949902415275574, 0.5564236640930176, -0.16165019571781158, -0.02626485750079155, -0.8020554184913635, 0.45253854990005493, -0.07720047235488892, -0.8820948004722595, 0.15757936239242554, -0.1410386711359024, 0.6606743931770325, -0.47848764061927795, -0.41882210969924927, -0.20586121082305908, 0.32814377546310425, -0.41813114285469055, -1.1261519193649292, 0.4015214443206787, 0.041226569563150406, -0.13902591168880463, 0.007129530888050795, 0.5407670140266418, -0.23053263127803802, -0.8218360543251038, 0.2975383996963501, -0.05573594942688942, 0.32806432247161865, -0.16782055795192719, -0.8376932144165039, 0.3431924879550934, 0.12256251275539398, -0.6075069308280945, -0.2872607409954071, 0.31485605239868164, -0.01543353870511055, 0.6530113220214844, 0.7322632670402527, 0.5063266158103943, -0.005840559024363756, 0.24730081856250763, 1.0255560874938965, -0.4750756621360779, -0.6222139596939087, -0.617604672908783, 0.23982849717140198, -0.5767536163330078, -0.49101290106773376, 0.6579143404960632, 1.0622011423110962, 0.6275898814201355, -0.43283727765083313, 0.7666366100311279, -0.09455187618732452, 0.23319712281227112, -0.7160409092903137, 0.6015095710754395, -0.45116060972213745, -0.10606485605239868, -0.3618238866329193, -0.9190589785575867, -0.2921890318393707, 0.45274847745895386, -0.11316981911659241, 0.09686671942472458, 0.34558579325675964, 0.956412672996521, -0.194815531373024, 0.06352747231721878, 0.30258458852767944, -0.1589919924736023, 0.4780253469944, 0.4489172697067261, 0.8784620761871338, -0.3285185992717743, 0.5015448331832886, -0.8052014708518982, -0.24075396358966827, -0.15662240982055664, -0.641613245010376, -0.9792759418487549, -0.614361047744751, -0.5019083023071289, -0.08842333406209946, -0.09394336491823196, 0.6081107258796692, 1.16228449344635, -0.9396381378173828, 0.042715832591056824, 0.022266283631324768, 0.07344917953014374, -0.3938281536102295, -0.2061568647623062, 0.7205224633216858, 0.3870235085487366, -0.9032206535339355, 0.21956656873226166, 0.1581190675497055, 0.5145179033279419, -0.31907954812049866, 0.01662317104637623, -0.00796938594430685, -0.1556590050458908, -0.1261337697505951, 0.22463655471801758, -0.17795002460479736, -0.2469826340675354, -0.06438222527503967, 0.03692476823925972, -0.01473432220518589, 0.6955609321594238, -0.5899688005447388, 0.3217555284500122, 0.5678735971450806, -0.16267110407352448, 0.7319942116737366, 0.16271790862083435, 0.155551940202713, -0.5062429308891296, 0.21845003962516785, -0.0706891193985939, 0.6816923022270203, 0.29774680733680725, -0.45229119062423706, 0.47667384147644043, 0.39470598101615906, -0.30908212065696716, -0.9053409695625305, -0.08403757214546204, -1.2866976261138916, -0.24372050166130066, 0.6537989974021912, -0.2114267200231552, -0.8983733057975769, 0.11636026203632355, -0.43022269010543823, 0.4053535759449005, 0.09968133270740509, 0.5891344547271729, 0.6029602289199829, 0.09890696406364441, -0.46155911684036255, 0.2481725811958313, 0.5763272047042847, -0.5595858097076416, -1.1892001628875732, -0.43964916467666626, 0.36369970440864563, 0.6477411985397339, 0.25071147084236145, 0.6197799444198608, -0.12445644289255142, 0.5406976342201233, 0.2749393880367279, 0.29983556270599365, -0.2171836644411087, -0.5081730484962463, -0.2917541265487671, 0.40786799788475037, -0.33997318148612976, -1.0240477323532104 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
mteb/sts17-crosslingual-sts
mteb
2022-09-27T19:09:43Z
5,378
2
null
[ "language:ar", "language:de", "language:en", "language:es", "language:fr", "language:it", "language:nl", "language:ko", "language:tr", "region:us" ]
2022-09-27T19:09:43Z
2022-05-19T12:59:56.000Z
2022-05-19T12:59:56
--- language: - ar - de - en - es - fr - it - nl - ko - tr ---
[ -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
banking77
null
2023-04-17T13:46:23Z
5,345
26
null
[ "task_categories:text-classification", "task_ids:intent-classification", "task_ids:multi-class-classification", "annotations_creators:expert-generated", "language_creators:expert-generated", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:original", "language:en", "license:cc-by-4.0", "arxiv:2003.04807", "region:us" ]
2023-04-17T13:46:23Z
2022-03-02T23:29:22.000Z
2022-03-02T23:29:22
--- annotations_creators: - expert-generated language_creators: - expert-generated language: - en license: - cc-by-4.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - text-classification task_ids: - intent-classification - multi-class-classification pretty_name: BANKING77 dataset_info: features: - name: text dtype: string - name: label dtype: class_label: names: '0': activate_my_card '1': age_limit '2': apple_pay_or_google_pay '3': atm_support '4': automatic_top_up '5': balance_not_updated_after_bank_transfer '6': balance_not_updated_after_cheque_or_cash_deposit '7': beneficiary_not_allowed '8': cancel_transfer '9': card_about_to_expire '10': card_acceptance '11': card_arrival '12': card_delivery_estimate '13': card_linking '14': card_not_working '15': card_payment_fee_charged '16': card_payment_not_recognised '17': card_payment_wrong_exchange_rate '18': card_swallowed '19': cash_withdrawal_charge '20': cash_withdrawal_not_recognised '21': change_pin '22': compromised_card '23': contactless_not_working '24': country_support '25': declined_card_payment '26': declined_cash_withdrawal '27': declined_transfer '28': direct_debit_payment_not_recognised '29': disposable_card_limits '30': edit_personal_details '31': exchange_charge '32': exchange_rate '33': exchange_via_app '34': extra_charge_on_statement '35': failed_transfer '36': fiat_currency_support '37': get_disposable_virtual_card '38': get_physical_card '39': getting_spare_card '40': getting_virtual_card '41': lost_or_stolen_card '42': lost_or_stolen_phone '43': order_physical_card '44': passcode_forgotten '45': pending_card_payment '46': pending_cash_withdrawal '47': pending_top_up '48': pending_transfer '49': pin_blocked '50': receiving_money '51': Refund_not_showing_up '52': request_refund '53': reverted_card_payment? '54': supported_cards_and_currencies '55': terminate_account '56': top_up_by_bank_transfer_charge '57': top_up_by_card_charge '58': top_up_by_cash_or_cheque '59': top_up_failed '60': top_up_limits '61': top_up_reverted '62': topping_up_by_card '63': transaction_charged_twice '64': transfer_fee_charged '65': transfer_into_account '66': transfer_not_received_by_recipient '67': transfer_timing '68': unable_to_verify_identity '69': verify_my_identity '70': verify_source_of_funds '71': verify_top_up '72': virtual_card_not_working '73': visa_or_mastercard '74': why_verify_identity '75': wrong_amount_of_cash_received '76': wrong_exchange_rate_for_cash_withdrawal splits: - name: train num_bytes: 715036 num_examples: 10003 - name: test num_bytes: 204014 num_examples: 3080 download_size: 1079034 dataset_size: 919050 train-eval-index: - config: default task: text-classification task_id: multi_class_classification splits: train_split: train eval_split: test col_mapping: text: text label: target metrics: - type: accuracy name: Accuracy - type: f1 name: F1 macro args: average: macro - type: f1 name: F1 micro args: average: micro - type: f1 name: F1 weighted args: average: weighted - type: precision name: Precision macro args: average: macro - type: precision name: Precision micro args: average: micro - type: precision name: Precision weighted args: average: weighted - type: recall name: Recall macro args: average: macro - type: recall name: Recall micro args: average: micro - type: recall name: Recall weighted args: average: weighted --- # Dataset Card for BANKING77 ## 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:** [Github](https://github.com/PolyAI-LDN/task-specific-datasets) - **Repository:** [Github](https://github.com/PolyAI-LDN/task-specific-datasets) - **Paper:** [ArXiv](https://arxiv.org/abs/2003.04807) - **Leaderboard:** - **Point of Contact:** ### Dataset Summary <div class="course-tip course-tip-orange bg-gradient-to-br dark:bg-gradient-to-r before:border-orange-500 dark:before:border-orange-800 from-orange-50 dark:from-gray-900 to-white dark:to-gray-950 border border-orange-50 text-orange-700 dark:text-gray-400"> <p><b>Deprecated:</b> Dataset "banking77" is deprecated and will be deleted. Use "<a href="https://huggingface.co/datasets/PolyAI/banking77">PolyAI/banking77</a>" instead.</p> </div> Dataset composed of online banking queries annotated with their corresponding intents. BANKING77 dataset provides a very fine-grained set of intents in a banking domain. It comprises 13,083 customer service queries labeled with 77 intents. It focuses on fine-grained single-domain intent detection. ### Supported Tasks and Leaderboards Intent classification, intent detection ### Languages English ## Dataset Structure ### Data Instances An example of 'train' looks as follows: ``` { 'label': 11, # integer label corresponding to "card_arrival" intent 'text': 'I am still waiting on my card?' } ``` ### Data Fields - `text`: a string feature. - `label`: One of classification labels (0-76) corresponding to unique intents. Intent names are mapped to `label` in the following way: | label | intent (category) | |---:|:-------------------------------------------------| | 0 | activate_my_card | | 1 | age_limit | | 2 | apple_pay_or_google_pay | | 3 | atm_support | | 4 | automatic_top_up | | 5 | balance_not_updated_after_bank_transfer | | 6 | balance_not_updated_after_cheque_or_cash_deposit | | 7 | beneficiary_not_allowed | | 8 | cancel_transfer | | 9 | card_about_to_expire | | 10 | card_acceptance | | 11 | card_arrival | | 12 | card_delivery_estimate | | 13 | card_linking | | 14 | card_not_working | | 15 | card_payment_fee_charged | | 16 | card_payment_not_recognised | | 17 | card_payment_wrong_exchange_rate | | 18 | card_swallowed | | 19 | cash_withdrawal_charge | | 20 | cash_withdrawal_not_recognised | | 21 | change_pin | | 22 | compromised_card | | 23 | contactless_not_working | | 24 | country_support | | 25 | declined_card_payment | | 26 | declined_cash_withdrawal | | 27 | declined_transfer | | 28 | direct_debit_payment_not_recognised | | 29 | disposable_card_limits | | 30 | edit_personal_details | | 31 | exchange_charge | | 32 | exchange_rate | | 33 | exchange_via_app | | 34 | extra_charge_on_statement | | 35 | failed_transfer | | 36 | fiat_currency_support | | 37 | get_disposable_virtual_card | | 38 | get_physical_card | | 39 | getting_spare_card | | 40 | getting_virtual_card | | 41 | lost_or_stolen_card | | 42 | lost_or_stolen_phone | | 43 | order_physical_card | | 44 | passcode_forgotten | | 45 | pending_card_payment | | 46 | pending_cash_withdrawal | | 47 | pending_top_up | | 48 | pending_transfer | | 49 | pin_blocked | | 50 | receiving_money | | 51 | Refund_not_showing_up | | 52 | request_refund | | 53 | reverted_card_payment? | | 54 | supported_cards_and_currencies | | 55 | terminate_account | | 56 | top_up_by_bank_transfer_charge | | 57 | top_up_by_card_charge | | 58 | top_up_by_cash_or_cheque | | 59 | top_up_failed | | 60 | top_up_limits | | 61 | top_up_reverted | | 62 | topping_up_by_card | | 63 | transaction_charged_twice | | 64 | transfer_fee_charged | | 65 | transfer_into_account | | 66 | transfer_not_received_by_recipient | | 67 | transfer_timing | | 68 | unable_to_verify_identity | | 69 | verify_my_identity | | 70 | verify_source_of_funds | | 71 | verify_top_up | | 72 | virtual_card_not_working | | 73 | visa_or_mastercard | | 74 | why_verify_identity | | 75 | wrong_amount_of_cash_received | | 76 | wrong_exchange_rate_for_cash_withdrawal | ### Data Splits | Dataset statistics | Train | Test | | --- | --- | --- | | Number of examples | 10 003 | 3 080 | | Average character length | 59.5 | 54.2 | | Number of intents | 77 | 77 | | Number of domains | 1 | 1 | ## Dataset Creation ### Curation Rationale Previous intent detection datasets such as Web Apps, Ask Ubuntu, the Chatbot Corpus or SNIPS are limited to small number of classes (<10), which oversimplifies the intent detection task and does not emulate the true environment of commercial systems. Although there exist large scale *multi-domain* datasets ([HWU64](https://github.com/xliuhw/NLU-Evaluation-Data) and [CLINC150](https://github.com/clinc/oos-eval)), the examples per each domain may not sufficiently capture the full complexity of each domain as encountered "in the wild". This dataset tries to fill the gap and provides a very fine-grained set of intents in a *single-domain* i.e. **banking**. Its focus on fine-grained single-domain intent detection makes it complementary to the other two multi-domain datasets. ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process The dataset does not contain any additional annotations. #### Who are the annotators? [N/A] ### Personal and Sensitive Information [N/A] ## Considerations for Using the Data ### Social Impact of Dataset The purpose of this dataset it to help develop better intent detection systems. Any comprehensive intent detection evaluation should involve both coarser-grained multi-domain datasets and a fine-grained single-domain dataset such as BANKING77. ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [PolyAI](https://github.com/PolyAI-LDN) ### Licensing Information Creative Commons Attribution 4.0 International ### Citation Information ``` @inproceedings{Casanueva2020, author = {I{\~{n}}igo Casanueva and Tadas Temcinas and Daniela Gerz and Matthew Henderson and Ivan Vulic}, title = {Efficient Intent Detection with Dual Sentence Encoders}, year = {2020}, month = {mar}, note = {Data available at https://github.com/PolyAI-LDN/task-specific-datasets}, url = {https://arxiv.org/abs/2003.04807}, booktitle = {Proceedings of the 2nd Workshop on NLP for ConvAI - ACL 2020} } ``` ### Contributions Thanks to [@dkajtoch](https://github.com/dkajtoch) for adding this dataset.
[ -0.5936118364334106, -0.5763672590255737, 0.1155889481306076, 0.1641724407672882, -0.29118889570236206, 0.007538823876529932, -0.1713361293077469, -0.4755968451499939, 0.4935745894908905, 0.6265295743942261, -0.7752488851547241, -0.9460028409957886, -0.4961843192577362, 0.01557969395071268, -0.005336923990398645, 1.0001804828643799, 0.1727331429719925, -0.4661804735660553, -0.08023349940776825, -0.06960196793079376, -0.586470901966095, -0.42553308606147766, -0.6204665303230286, -0.15197986364364624, 0.3246239125728607, 0.6466801762580872, 0.416537880897522, 0.39027777314186096, 0.7802011966705322, 0.3807796835899353, -0.10840954631567001, 0.11525513231754303, -0.43447616696357727, -0.26191502809524536, 0.02947259321808815, -0.41135650873184204, -0.8459555506706238, -0.13040906190872192, 0.38097327947616577, 0.3288682699203491, 0.05188867822289467, 0.42463594675064087, 0.16196797788143158, 1.0478397607803345, -0.4935636520385742, 0.6011255383491516, -0.3479102551937103, -0.14418578147888184, -0.2758080065250397, -0.239494189620018, -0.08406727761030197, -0.44598516821861267, 0.20422790944576263, -0.6570184230804443, 0.09111613035202026, 0.16191989183425903, 0.9629899263381958, -0.015687404200434685, -0.18746082484722137, -0.6340279579162598, -0.6124946475028992, 0.6621021628379822, -0.6991187930107117, 0.07467788457870483, 0.6903743147850037, 0.3984033167362213, -0.07858561724424362, -0.5013285875320435, -0.5207744240760803, 0.19027185440063477, -0.6143162250518799, 0.3128534257411957, -0.12163353711366653, -0.06446217745542526, 0.5485473275184631, 0.46476900577545166, -0.6669747233390808, -0.37993323802948, -0.7670878767967224, -0.19416670501232147, 0.9211772680282593, 0.2830215096473694, 0.09937278926372528, -0.4563850164413452, -0.27599966526031494, -0.1630142480134964, -0.21136289834976196, 0.69252610206604, 0.5294127464294434, 0.37649402022361755, -0.5684458613395691, 0.39949578046798706, -0.4348889887332916, 0.7326224446296692, 0.18250176310539246, -0.3222615420818329, 0.6767327189445496, -0.384701669216156, -0.29211077094078064, 0.39391180872917175, 0.7831575870513916, 0.4590962827205658, -0.10854719579219818, 0.2314513921737671, -0.1342669278383255, 0.10607925057411194, -0.010262003168463707, -0.5386785864830017, -0.20231695473194122, 0.8807118535041809, -0.7313036918640137, -0.4506284296512604, 0.34549981355667114, -1.0159733295440674, -0.16056853532791138, -0.280445396900177, 0.15141409635543823, -0.46961531043052673, -0.19822050631046295, 0.2291785329580307, -0.2849530577659607, 0.48336637020111084, 0.04703402891755104, -0.868942379951477, 0.28706297278404236, 0.6023868322372437, 0.6531420350074768, -0.2395510971546173, -0.1342250555753708, -0.08761146664619446, 0.26680469512939453, -0.029923439025878906, 0.9746452569961548, -0.49768131971359253, -0.551940381526947, 0.0901627466082573, 0.3787861466407776, -0.31216299533843994, -0.5113110542297363, 0.9021261930465698, -0.16675357520580292, 0.1603797972202301, -0.5138497948646545, -0.3645802140235901, -0.2402784526348114, 0.4385145902633667, -0.843481719493866, 1.156557321548462, 0.18276624381542206, -0.85445237159729, 0.43531370162963867, -1.0803852081298828, -0.4160294830799103, 0.07414250820875168, 0.0712459534406662, -0.7439243197441101, -0.29090577363967896, 0.05009448528289795, 0.5190469622612, -0.3369726240634918, 0.19358491897583008, -0.2570030689239502, -0.4164550304412842, 0.14077429473400116, -0.24255773425102234, 1.1970388889312744, 0.25902172923088074, -0.4202292561531067, 0.12371484935283661, -1.1417714357376099, -0.15180008113384247, 0.31982094049453735, -0.42411720752716064, -0.2534196972846985, -0.2736237645149231, 0.0061551835387945175, 0.18193498253822327, 0.4018036723136902, -0.5958428978919983, 0.2035871148109436, -0.1961975246667862, 0.31943053007125854, 0.6219756603240967, -0.048008743673563004, 0.3443501591682434, -0.828557550907135, 0.38292038440704346, 0.29800546169281006, 0.7053990960121155, -0.10491152852773666, -0.7443784475326538, -0.6437236666679382, -0.31225642561912537, 0.06450769305229187, 0.7802324295043945, -0.267577201128006, 0.9064876437187195, -0.4417423903942108, -0.6451321840286255, -0.3602696657180786, 0.2536284923553467, 0.3324902653694153, 0.4570610225200653, 0.4587591290473938, -0.3650687038898468, -0.5032392144203186, -0.9025672674179077, -0.08584369719028473, -0.10979688912630081, 0.3998335897922516, 0.8117567896842957, 0.6993588805198669, -0.25172021985054016, 0.8309646248817444, -0.7328788638114929, -0.6462593674659729, -0.6299656629562378, -0.18968941271305084, 0.5693073868751526, 0.5657960176467896, 0.7548898458480835, -1.0870201587677002, -0.6317800879478455, -0.17302463948726654, -0.6032422780990601, 0.15944060683250427, -0.2823955714702606, -0.34569302201271057, 0.08238404244184494, 0.1517704427242279, -0.6102009415626526, 0.9208430647850037, 0.45382368564605713, -0.6884191036224365, 0.5150622725486755, -0.20093001425266266, 0.29304414987564087, -1.2874362468719482, 0.30974406003952026, 0.011822649277746677, 0.017661776393651962, -0.6607570648193359, -0.6205381751060486, 0.02250542864203453, 0.06606122106313705, -0.40656721591949463, 0.4953697621822357, -0.37927713990211487, -0.007171923760324717, 0.15025557577610016, -0.15942290425300598, -0.005652555730193853, 0.7513114809989929, 0.001986187417060137, 0.6473826766014099, 0.8774320483207703, -0.7612218856811523, 0.3312799632549286, 0.5253559947013855, -0.4521225094795227, 0.6519137024879456, -0.5565012097358704, -0.22500644624233246, -0.08305203914642334, 0.376435786485672, -1.3099905252456665, -0.5545603632926941, 0.5921033620834351, -0.5436438322067261, 0.18998125195503235, -0.3317851424217224, -0.19904549419879913, -0.751179039478302, -0.4046192765235901, 0.3248363137245178, 0.531630277633667, -0.4357742667198181, 0.8858137726783752, 0.4342348575592041, 0.09087132662534714, -0.5222482085227966, -0.7566003203392029, -0.2404649257659912, -0.3579166531562805, -0.6899626851081848, 0.37041744589805603, -0.001144714537076652, -0.04725944995880127, 0.05528387427330017, 0.043903931975364685, -0.04749444127082825, -0.03210709989070892, 0.3593875467777252, 0.5723779201507568, 0.03724953532218933, -0.2018756866455078, -0.11527097225189209, -0.1479717642068863, -0.029806051403284073, -0.13722483813762665, 0.8066692352294922, 0.002487651538103819, -0.3047402799129486, -0.5357878804206848, 0.37549370527267456, 0.5225890278816223, -0.3627776801586151, 0.8233210444450378, 0.6254916787147522, -0.26068758964538574, 0.04100124165415764, -0.5015987753868103, -0.009673324413597584, -0.5447371602058411, -0.1563701331615448, -0.4493486285209656, -0.6459288001060486, 1.0219529867172241, -0.05918612331151962, 0.3701276183128357, 0.7895912528038025, 0.4747622013092041, 0.06353995949029922, 0.6938996911048889, 0.2689010500907898, -0.040417350828647614, 0.5801525115966797, -0.651250958442688, 0.28794917464256287, -0.7710557579994202, -0.6646205186843872, -0.5669068694114685, -0.310324490070343, -0.763007640838623, -0.23201382160186768, 0.04251667484641075, -0.10941821336746216, -0.25619181990623474, 0.6411670446395874, -0.7887628674507141, 0.3375542461872101, 0.7346906065940857, 0.19864793121814728, -0.039521679282188416, -0.020281264558434486, -0.08809155225753784, 0.44665518403053284, -0.6438971757888794, -0.4195040762424469, 1.3371014595031738, 0.048822347074747086, 0.640073835849762, 0.2732027471065521, 0.8621610403060913, 0.4748808741569519, 0.10249896347522736, -0.6557024717330933, 0.508782148361206, -0.22396445274353027, -0.8627156615257263, -0.15702712535858154, -0.3770732283592224, -1.2640106678009033, -0.12089337408542633, -0.24534860253334045, -1.059125304222107, 0.7917128205299377, 0.33823034167289734, -0.5155631303787231, 0.4381265342235565, -0.9072898626327515, 1.0644773244857788, -0.31628918647766113, -0.3942350447177887, 0.14278565347194672, -0.6990136504173279, 0.44095611572265625, 0.07538020610809326, 0.2931012213230133, -0.3746848702430725, 0.28574201464653015, 0.8518680930137634, -0.5341699123382568, 0.7810388803482056, -0.19782818853855133, 0.10008514672517776, 0.8464897274971008, -0.29316964745521545, 0.6674142479896545, 0.06260360032320023, 0.1857544630765915, 0.13686679303646088, 0.13051626086235046, -0.5783349871635437, -0.263974130153656, 0.839154064655304, -0.6779400110244751, -0.2634469270706177, -0.6026821732521057, -0.37821972370147705, -0.024235635995864868, 0.394888699054718, 0.27487242221832275, 0.42576515674591064, 0.09673363715410233, 0.36422809958457947, 0.8590297698974609, -0.45374614000320435, 0.36048856377601624, 0.20403556525707245, 0.039935432374477386, -0.47659340500831604, 1.0099384784698486, 0.005511764902621508, 0.19493639469146729, 0.2921103835105896, 0.22422541677951813, -0.6512297987937927, -0.20612956583499908, -0.3820228576660156, 0.13922232389450073, -0.548319935798645, -0.24073389172554016, -0.6604653596878052, 0.08237142860889435, -1.025614619255066, -0.21789370477199554, -0.27124714851379395, -0.22838713228702545, -0.30098122358322144, -0.1189151331782341, 0.7411349415779114, 0.5523331761360168, -0.27234748005867004, 0.34236255288124084, -0.7209617495536804, 0.5284750461578369, 0.1060037761926651, 0.5737035274505615, -0.18928495049476624, -0.3641379177570343, -0.04541981965303421, 0.002443188801407814, -0.09264066815376282, -0.8479465246200562, 0.4478060305118561, -0.03987853601574898, 0.6708549857139587, 0.4674966335296631, 0.09313889592885971, 0.7280979156494141, 0.07181978970766068, 0.9088073372840881, 0.20491233468055725, -0.5597510933876038, 0.7359738349914551, -0.4860370457172394, 0.3178819417953491, 0.9414873719215393, 0.5135706067085266, -0.5455668568611145, 0.04885032773017883, -0.8805446624755859, -1.1079894304275513, 0.9178552627563477, 0.33665499091148376, -0.15331976115703583, 0.07282421737909317, 0.26665356755256653, -0.12013395130634308, 0.16061538457870483, -0.5843239426612854, -0.8912845849990845, -0.24373264610767365, -0.38673433661460876, 0.010454324074089527, -0.23867060244083405, -0.11910682171583176, -0.45464396476745605, 0.7359684705734253, 0.20266732573509216, 0.564487636089325, 0.4157659113407135, 0.06852942705154419, 0.17866189777851105, 0.3019649386405945, 0.6896733641624451, 0.7134644985198975, -0.5507436990737915, -0.2546537220478058, 0.007863616570830345, -0.7658018469810486, -0.011494569480419159, 0.19929184019565582, -0.3637312650680542, -0.10476436465978622, 0.1271592527627945, 0.7227125763893127, -0.07887038588523865, -0.5185362696647644, 0.471971720457077, -0.25901198387145996, -0.4714702367782593, -0.7090803384780884, 0.17314089834690094, -0.1322270631790161, 0.1665187031030655, 0.3650292158126831, 0.11347124725580215, 0.30851277709007263, -0.773135781288147, 0.23337990045547485, 0.20208032429218292, -0.5580766201019287, -0.03468675538897514, 0.535358726978302, 0.02456420101225376, -0.40372806787490845, 0.41402798891067505, -0.34546345472335815, -0.5936519503593445, 0.8291312456130981, 0.33355918526649475, 0.849320113658905, -0.0937039777636528, 0.04117425158619881, 0.787466824054718, 0.28713783621788025, -0.13771089911460876, 0.857826292514801, -0.029257843270897865, -0.4932621419429779, -0.04252017289400101, -0.6869615912437439, -0.16766516864299774, 0.16320762038230896, -0.93226158618927, 0.38335153460502625, -0.489308625459671, -0.2872897982597351, 0.12419874966144562, 0.0620231106877327, -1.022937297821045, 0.267314076423645, 0.09635694324970245, 0.939059853553772, -0.8444053530693054, 0.7650960087776184, 0.7494480609893799, -0.4988171458244324, -1.0007414817810059, -0.40630921721458435, -0.04158478602766991, -0.7083539962768555, 0.19838914275169373, 0.2817796468734741, 0.21646612882614136, -0.22726188600063324, -0.4171511232852936, -0.8380997180938721, 1.4072458744049072, -0.19895866513252258, -0.6633638739585876, 0.2578452229499817, 0.4692938029766083, 0.28650104999542236, -0.34260252118110657, 0.25981032848358154, 1.0612084865570068, 0.6958779692649841, 0.22498932480812073, -0.8117000460624695, 0.1242000162601471, -0.4212864637374878, -0.5533376932144165, 0.20142459869384766, -0.9855988621711731, 0.9431192278862, 0.028127605095505714, 0.11067317426204681, -0.4099590480327606, 0.32223692536354065, 0.35876378417015076, 0.42426881194114685, 0.6647847890853882, 0.7464647889137268, 0.8459703922271729, -0.3593248724937439, 1.2161450386047363, -0.5802332758903503, 0.520563006401062, 0.9919131398200989, 0.08607388287782669, 0.6117653846740723, 0.27842003107070923, -0.23830127716064453, 0.4114292562007904, 0.7521992325782776, -0.15478086471557617, 0.415855348110199, 0.04821101948618889, -0.17738978564739227, -0.2625555694103241, 0.01333798747509718, -0.3691213130950928, 0.41163942217826843, 0.5672058463096619, -0.42004337906837463, 0.011044935323297977, -0.23195797204971313, -0.1746690422296524, -0.47569727897644043, -0.47029465436935425, 0.7912552952766418, -0.17518596351146698, -0.5219365954399109, 0.3995533883571625, -0.35064443945884705, 0.9113227725028992, -0.8343990445137024, -0.029459569603204727, -0.2902919352054596, 0.3482196033000946, -0.5159710049629211, -0.9465748071670532, 0.2718825042247772, -0.06367051601409912, -0.06441256403923035, 0.004068134352564812, 0.9509778022766113, -0.23003529012203217, -0.6796859502792358, 0.24548876285552979, 0.1703743040561676, 0.36854445934295654, 0.05758422613143921, -1.131029725074768, 0.2242300808429718, 0.24224425852298737, -0.40180280804634094, 0.179120272397995, 0.5094667673110962, 0.100068598985672, 0.5981999039649963, 0.8698925971984863, 0.12607286870479584, 0.2093854546546936, -0.015593505464494228, 0.983909547328949, -0.8802325129508972, -0.6544008851051331, -0.7371736168861389, 0.5636043548583984, -0.49278566241264343, -0.6098601222038269, 0.7922887802124023, 1.0306875705718994, 1.005397915840149, 0.05011145770549774, 1.0698165893554688, -0.5503934025764465, 0.5487349629402161, -0.191049724817276, 0.5249605774879456, -0.6654893755912781, 0.1630876511335373, -0.39123815298080444, -0.7513939738273621, -0.24062515795230865, 0.7878590822219849, -0.5486761331558228, 0.020365741103887558, 0.304969847202301, 0.8185502886772156, -0.15358896553516388, 0.07883208245038986, 0.1511133313179016, -0.10225118696689606, 0.2834639549255371, 0.6824038028717041, 0.48492231965065, -0.7226825952529907, 0.9235718846321106, -0.6861801147460938, -0.015303795225918293, -0.37125638127326965, -0.5847328305244446, -1.0396815538406372, -0.49709293246269226, -0.3430473506450653, -0.6044807434082031, -0.20884068310260773, 1.0361312627792358, 0.49555230140686035, -1.132813811302185, -0.3995329737663269, 0.002663485938683152, 0.030478090047836304, -0.20737974345684052, -0.2497127801179886, 0.7620086669921875, -0.07813266664743423, -0.6554983854293823, -0.134410098195076, 0.19015547633171082, 0.22859059274196625, -0.014749935828149319, -0.039415422827005386, -0.23704484105110168, 0.1314859241247177, 0.536125898361206, 0.4016551375389099, -0.42225632071495056, -0.04599235579371452, -0.023130260407924652, -0.08004271984100342, 0.3809564709663391, 0.7029666304588318, -0.22224225103855133, 0.23917460441589355, 0.7391406893730164, 0.30094587802886963, 0.5455512404441833, 0.24018099904060364, -0.11049380898475647, -0.22280269861221313, 0.1800796389579773, 0.09216387569904327, 0.4450368285179138, 0.04722556471824646, -0.687542200088501, 0.4541744291782379, 0.2615830600261688, -0.46622928977012634, -0.609755277633667, -0.22212181985378265, -1.5496195554733276, -0.202651247382164, 1.3228000402450562, -0.1260373443365097, -0.8128842711448669, -0.501793622970581, -0.42788657546043396, 0.07484852522611618, -0.8529730439186096, 0.5966653823852539, 0.5244043469429016, -0.2629711627960205, 0.20446793735027313, -0.7461926341056824, 0.8580806851387024, 0.024290550500154495, -0.9758830666542053, 0.16838711500167847, 0.3580653667449951, 0.26236575841903687, 0.3109741806983948, 0.9331379532814026, -0.1652584969997406, 0.3454568386077881, 0.12375334650278091, 0.04172484949231148, 0.026263078674674034, -0.16334280371665955, 0.16116909682750702, 0.03717128932476044, -0.342659592628479, -0.32453230023384094 ]
null
null
null
null
null
null
null
null
null
null
null
null
null
yangwang825/marc-ja
yangwang825
2023-05-19T02:08:33Z
5,338
2
null
[ "task_categories:text-classification", "language:ja", "region:us" ]
2023-05-19T02:08:33Z
2023-05-17T18:46:59.000Z
2023-05-17T18:46:59
--- task_categories: - text-classification language: - ja dataset_info: features: - name: text dtype: string - name: label dtype: class_label: names: '0': positive '1': negative ---
[ -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